[
  {
    "path": ".cirrus.yml",
    "content": "env:\n    CIRRUS_CLONE_DEPTH: 1\n\ncontainer:\n    dockerfile: .cirrus_Dockerfile\n    cpu: 8\n    memory: 32G\n    use_in_memory_disk: true\n\ncode_check_task:\n    pip_cache:\n        folder: /usr/local/lib/python3.10/site-packages\n        fingerprint_script: cat .cirrus_requirements.txt\n        populate_script: pip install -r .cirrus_requirements.txt\n    utils_script:\n        - python3 -m yapf --style '.style.yapf' -e '*/third_party/*' -rpd utils\n        - ./devutils/run_utils_pylint.py --hide-fixme\n        - ./devutils/run_utils_tests.sh\n    devutils_script:\n        - python3 -m yapf --style '.style.yapf' -e '*/third_party/*' -rpd devutils\n        - ./devutils/run_devutils_pylint.py --hide-fixme\n        - ./devutils/run_devutils_tests.sh\n\nvalidate_config_task:\n    validate_config_script: ./devutils/validate_config.py\n\nvalidate_with_source_task:\n    pip_cache:\n        folder: /usr/local/lib/python3.10/site-packages\n        fingerprint_script: cat .cirrus_requirements.txt\n        populate_script: pip install -r .cirrus_requirements.txt\n    chromium_download_script: |\n        # These directories will not exist when this is called, unless cache retrieval\n        # fails and leaves partially-complete files around.\n        rm -rf chromium_src\n        rm -rf chromium_download_cache\n        mkdir chromium_download_cache\n        # Attempt to download tarball\n        if ! ./utils/downloads.py retrieve -i downloads.ini -c chromium_download_cache ; then\n          # If tarball is not available, attempt a clone\n          ./utils/clone.py -o chromium_src\n          rm -rf chromium_src/uc_staging\n          find chromium_src -type d -name '.git' -exec rm -rf \"{}\" \\; -prune\n          tar cf chromium_download_cache/chromium-$(cat chromium_version.txt)-lite.tar.xz \\\n            --transform s/chromium_src/chromium-$(cat chromium_version.txt)/ chromium_src\n        fi\n    unpack_source_script: |\n        if [ ! -d chromium_src ]; then\n          ./utils/downloads.py unpack -i downloads.ini -c chromium_download_cache chromium_src\n        fi\n    validate_patches_script:\n        - ./devutils/validate_patches.py -l chromium_src -v\n    validate_lists_script:\n        # NOTE: This check is prone to false positives, but not false negatives.\n        - ./devutils/check_files_exist.py chromium_src pruning.list domain_substitution.list\n\n# vim: set expandtab shiftwidth=4 softtabstop=4:\n"
  },
  {
    "path": ".cirrus_Dockerfile",
    "content": "# Dockerfile for Python 3 with xz-utils (for tar.xz unpacking)\n\nFROM python:3.10-slim-bookworm\n\nRUN apt update && apt install -y xz-utils patch axel curl git\n"
  },
  {
    "path": ".cirrus_requirements.txt",
    "content": "# Based on Python package versions in Debian bookworm\n# https://packages.debian.org/bookworm/python/\nastroid==2.14.2 # via pylint\npylint==2.16.2\npytest-cov==4.0.0\npytest==7.2.1\nhttplib2==0.20.4\nrequests==2.28.1\nyapf==0.32.0\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bugreport.yml",
    "content": "name: Bug Report\ndescription: Report a bug building or running ungoogled-chromium\nlabels: [\"bug\"]\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Before submitting this issue, please confirm if you should submit it to a [platform-specific issue tracker instead](https://github.com/ungoogled-software/ungoogled-chromium/blob/master/SUPPORT.md#platform-specific-support)\n\n        Otherwise, your issue may not be noticed. In addition, please read through the [SUPPORT.md](https://github.com/ungoogled-software/ungoogled-chromium/blob/master/SUPPORT.md) first\n  - type: dropdown\n    id: os\n    attributes:\n      label: OS/Platform\n      description: OS/Platform you are running ungoogled-chromium on\n      options:\n          - Android\n          - Arch Linux\n          - Debian, Ubuntu, and derivatives\n          - Fedora and CentOS\n          - Gentoo\n          - GNU Guix\n          - macOS\n          - NixOS\n          - Other Linux (please specify)\n          - Portable Linux\n          - Slackware\n          - Windows\n    validations:\n        required: true\n  - type: dropdown\n    id: install\n    attributes:\n      label: Installed\n      description: How was ungoogled-chromium installed on your OS/Platform\n      options:\n          - Compiled from source\n          - OS/Platform's package manager\n          - Flatpak\n          - https://ungoogled-software.github.io/ungoogled-chromium-binaries/\n          - Other (please use 'Additional context' field below to mention how exactly)\n    validations:\n        required: true\n  - type: input\n    id: version\n    attributes:\n      label: Version\n      description: ungoogled-chromium version. Could be copied from chrome://settings/help\n    validations:\n      required: true\n  - type: checkboxes\n    attributes:\n      label: Have you tested that this is not an upstream issue or an issue with your configuration?\n      options:\n        - label: I have tried reproducing this issue in Chrome and it could not be reproduced there\n        - label: I have tried reproducing this issue in vanilla Chromium and it could not be reproduced there\n        - label: I have tried reproducing this issue in ungoogled-chromium with a new and empty profile using `--user-data-dir` command line argument and it could not be reproduced there\n  - type: input\n    id: description\n    attributes:\n      label: Description\n      description: A clear and concise description (in one line) of what the bug is\n    validations:\n      required: true\n  - type: textarea\n    id: repro\n    attributes:\n      label: How to Reproduce?\n      description: Steps to reproduce the behaviour\n      placeholder: |\n        1. Go to '...'\n        2. Click on '....'\n        3. Scroll down to '....'\n        4. See error\n    validations:\n      required: true\n  - type: textarea\n    id: actual\n    attributes:\n      label: Actual behaviour\n      description: A clear and concise description of what happens\n    validations:\n      required: true\n  - type: textarea\n    id: expected\n    attributes:\n      label: Expected behaviour\n      description: A clear and concise description of what you expected to happen\n    validations:\n      required: true\n  - type: textarea\n    id: logs\n    attributes:\n      label: Relevant log output\n      description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.\n      render: sh\n  - type: textarea\n    id: additional\n    attributes:\n      label: Additional context\n      description: Add any other context about the problem here. If applicable, add screenshots to help explain your problem.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md",
    "content": "---\nname: Create an \"Updating to Chromium x.x.x.x\"\nabout: For letting the community track progress to a new stable Chromium\ntitle: Updating to Chromium {{ env.VERSION }} on {{ env.PLATFORM }}\nlabels: update\nassignees: ''\n\n---\n\nChromium stable channel for {{ env.PLATFORM }} has been updated to a newer version: {{ env.VERSION }}.\n\nIf you are willing to work on updating the patches and lists, please leave a comment in this issue in order to facilitate better coordination and avoid wasted/duplicated efforts.\n\nIf you'd like to increase visibility of your progress or get early feedback/advice, consider creating a [Draft Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests#draft-pull-requests). Finally, make sure to reference this issue in your PR. Please make sure to read [/docs/developing.md](https://github.com/ungoogled-software/ungoogled-chromium/blob/master/docs/developing.md#updating-patches) for guidance.\n\nFeel free to raise issues or questions throughout the process here. However, please refrain from asking for ETAs unless no visible progress has been made here or in the developer's PR for a while (e.g. 2 weeks).\n\n{{ env.NOTIFY_MAINTAINERS }}\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.yml",
    "content": "name: Feature request\ndescription: Suggest an idea\nlabels: [\"enhancement\", \"help wanted\"]\nbody:\n  - type: markdown\n    attributes:\n      value: |\n        Before submitting this feature request, please confirm if you should submit it to a [platform-specific issue tracker instead](https://github.com/ungoogled-software/ungoogled-chromium/blob/master/SUPPORT.md#platform-specific-support)\n\n        Otherwise, your issue may not be noticed. In addition, please read through the [SUPPORT.md](https://github.com/ungoogled-software/ungoogled-chromium/blob/master/SUPPORT.md) first\n  - type: input\n    id: description\n    attributes:\n      label: Description\n      description: A clear and concise description (in one line) of what your suggestion is\n    validations:\n      required: true\n  - type: checkboxes\n    attributes:\n      label: Who's implementing?\n      options:\n        - label: I'm willing to implement this feature myself\n  - type: textarea\n    id: prob\n    attributes:\n      label: The problem\n      description: Please describe the problem you are solving or new feature you're suggesting\n      placeholder: I'm always frustrated when [...] happens\n    validations:\n      required: true\n  - type: textarea\n    id: sol\n    attributes:\n      label: Possible solutions\n      description: Please describe possible solution(-s) to The Problem\n    validations:\n      required: true\n  - type: textarea\n    id: alt\n    attributes:\n      label: Alternatives\n      description: Please describe alternatives you've considered, if any\n  - type: textarea\n    id: additional\n    attributes:\n      label: Additional context\n      description: Add any other context about the feature request here\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "*(Please ensure you have read SUPPORT.md and docs/contributing.md before submitting the Pull Request)*\n"
  },
  {
    "path": ".github/workflows/new_version_check.yml",
    "content": "name: New version check\n\non:\n  # enabling manual trigger\n  workflow_dispatch:\n  # running every hour\n  schedule:\n    - cron: '48 * * * *'\n\njobs:\n  check:\n    # do not run in forks\n    if: github.repository == 'ungoogled-software/ungoogled-chromium'\n    runs-on: ubuntu-latest\n    steps:\n      - name: Set maintainer groups\n        id: maintainers\n        run: |\n          echo \"all=@networkException\" >> $GITHUB_OUTPUT\n          echo \"linux=@rany2 @clickot @emilylange\" >> $GITHUB_OUTPUT\n          echo \"windows=\" >> $GITHUB_OUTPUT\n          echo \"macos=\" >> $GITHUB_OUTPUT\n      - name: Get the latest Chromium version\n        id: latest-version\n        run: |\n          set -eo pipefail\n          BASE_URL=\"https://versionhistory.googleapis.com/v1/chrome/platforms\"\n          END_URL=\"channels/stable/versions/all/releases?filter=endtime%3Dnone%2Cfraction%3E%3D0.5&order_by=version%20desc\"\n          JQ_FILTER='if .releases | select(type==\"array\") | length > 0 then .releases | first | .version else \"null\" end'\n          for platform in linux win mac; do\n            printf %s \"${platform}_version=\" >> $GITHUB_OUTPUT\n            curl -sf \"${BASE_URL}/${platform}/${END_URL}\" | jq -re \"${JQ_FILTER}\" >> $GITHUB_OUTPUT\n          done\n      - uses: actions/checkout@v3\n      - name: Create Issue for all platforms\n        if: |\n          contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) &&\n          contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version) &&\n          !contains(steps.latest-version.outputs.linux_version, 'null')\n        uses: dblock/create-a-github-issue@v3\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          VERSION: ${{ steps.latest-version.outputs.linux_version }}\n          PLATFORM: all platforms\n          NOTIFY_MAINTAINERS: \"${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.linux }} ${{ steps.maintainers.outputs.windows }} ${{ steps.maintainers.outputs.macos }}\"\n        with:\n          update_existing: false\n          search_existing: all\n          filename:  .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md\n      - name: Create Issue for Linux\n        if: |\n          (\n            !contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) ||\n            !contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version)\n          ) && !contains(steps.latest-version.outputs.linux_version, 'null')\n        uses: dblock/create-a-github-issue@v3\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          VERSION: ${{ steps.latest-version.outputs.linux_version }}\n          PLATFORM: Linux\n          NOTIFY_MAINTAINERS: \"${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.linux }}\"\n        with:\n          update_existing: false\n          search_existing: all\n          filename:  .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md\n      - name: Create Issue for macOS\n        if: |\n          (\n            !contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) ||\n            !contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version)\n          ) && !contains(steps.latest-version.outputs.mac_version, 'null')\n        uses: dblock/create-a-github-issue@v3\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          VERSION: ${{ steps.latest-version.outputs.mac_version }}\n          PLATFORM: macOS\n          NOTIFY_MAINTAINERS: \"${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.macos }}\"\n        with:\n          update_existing: false\n          search_existing: all\n          filename:  .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md\n      - name: Create Issue for Windows\n        if: |\n          (\n            !contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) ||\n            !contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version)\n          ) && !contains(steps.latest-version.outputs.win_version, 'null')\n        uses: dblock/create-a-github-issue@v3\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          VERSION: ${{ steps.latest-version.outputs.win_version }}\n          PLATFORM: Windows\n          NOTIFY_MAINTAINERS: \"${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.windows }}\"\n        with:\n          update_existing: false\n          search_existing: all\n          filename:  .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md\n"
  },
  {
    "path": ".github/workflows/release-on-tag.yml",
    "content": "name: Create new empty release\n\non:\n  push:\n    tags:\n      - '*'\n\njobs:\n  build:\n    name: Create Release\n    runs-on: ubuntu-latest\n    steps:\n      - name: Create Release\n        id: create_release\n        uses: actions/create-release@latest\n        env:\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n        with:\n          tag_name: ${{ github.ref }}\n          release_name: ${{ github.ref }}\n          draft: false\n          prerelease: false\n"
  },
  {
    "path": ".github/workflows/stale.yml",
    "content": "name: 'Close stale issues and PRs'\n\non:\n    schedule:\n        - cron: '30 1 * * *'\n\npermissions:\n    issues: write\n    pull-requests: write\n\njobs:\n    stale:\n        runs-on: ubuntu-latest\n        steps:\n          - uses: actions/stale@v6\n            with:\n                exempt-all-milestones: true\n                any-of-labels: 'need info'\n                days-before-stale: 30\n                days-before-close: 7\n                stale-issue-message: \"This issue has been automatically marked as stale as there has been no recent activity in response to our request for more information. Please respond so that we can proceed with this issue.\"\n                close-issue-message: \"This issue has been automatically closed as sufficient information hasn't been provided on the issue for further actions to be taken. Feel free to add more information.\"\n"
  },
  {
    "path": ".gitignore",
    "content": "# Python files\n__pycache__/\n*.py[cod]\n\n# Python testing files\n.coverage\n\n# Ignore macOS Finder meta\n.DS_Store\n.tm_properties\n\n# Ignore optional build / cache directory\n/build\n"
  },
  {
    "path": ".style.yapf",
    "content": "[style]\nbased_on_style = pep8\nallow_split_before_dict_value = false\ncoalesce_brackets = true\ncolumn_limit = 100\nindent_width = 4\njoin_multiple_lines = true\nspaces_before_comment = 1\n"
  },
  {
    "path": "CODEOWNERS",
    "content": "* @ungoogled-software/core\n"
  },
  {
    "path": "LICENSE",
    "content": "BSD 3-Clause License\n\nCopyright (c) 2015-2026, The ungoogled-chromium Authors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n   list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n   this list of conditions and the following disclaimer in the documentation\n   and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n   contributors may be used to endorse or promote products derived from\n   this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
  },
  {
    "path": "README.md",
    "content": "# ungoogled-chromium\n\n*A lightweight approach to removing Google web service dependency*\n\n**Help is welcome!** See the [docs/contributing.md](docs/contributing.md) document for more information.\n\n## Objectives\n\nIn descending order of significance (i.e. most important objective first):\n\n1. **ungoogled-chromium is Google Chromium, sans dependency on Google web services**.\n2. **ungoogled-chromium retains the default Chromium experience as closely as possible**. Unlike other Chromium forks that have their own visions of a web browser, ungoogled-chromium is essentially a drop-in replacement for Chromium.\n3. **ungoogled-chromium features tweaks to enhance privacy, control, and transparency**. However, almost all of these features must be manually activated or enabled. For more details, see [Feature Overview](#feature-overview).\n\nIn scenarios where the objectives conflict, the objective of higher significance should take precedence.\n\n## Content Overview\n\n* [Objectives](#objectives)\n* [Motivation and Philosophy](#motivation-and-philosophy)\n* [Feature Overview](#feature-overview)\n* [**Downloads**](#downloads)\n* [Source Code](#source-code)\n* [**FAQ**](#faq)\n* [Building Instructions](#building-instructions)\n* [Design Documentation](#design-documentation)\n* [**Contributing, Reporting, Contacting**](#contributing-reporting-contacting)\n* [Credits](#credits)\n* [Related Projects](#related-projects)\n* [License](#license)\n\n## Motivation and Philosophy\n\nWithout signing in to a Google Account, Chromium does pretty well in terms of security and privacy. However, Chromium still has some dependency on Google web services and binaries. In addition, Google designed Chromium to be easy and intuitive for users, which means they compromise on transparency and control of internal operations.\n\nungoogled-chromium addresses these issues in the following ways:\n\n1. Remove all remaining background requests to any web services while building and running the browser\n2. Remove all code specific to Google web services\n3. Remove all uses of pre-made binaries from the source code, and replace them with user-provided alternatives when possible.\n4. Disable features that inhibit control and transparency, and add or modify features that promote them (these changes will almost always require manual activation or enabling).\n\nThese features are implemented as configuration flags, patches, and custom scripts. For more details, consult the [Design Documentation](docs/design.md).\n\n## Feature Overview\n\n*This section overviews the features of ungoogled-chromium. For more detailed information, it is best to consult the source code.*\n\nContents of this section:\n\n* [Key Features](#key-features)\n* [Enhancing Features](#enhancing-features)\n* [Borrowed Features](#borrowed-features)\n* [Supported Platforms and Distributions](#supported-platforms-and-distributions)\n\n### Key Features\n\n*These are the core features introduced by ungoogled-chromium.*\n\n* Disable functionality specific to Google domains (e.g. Google Host Detector, Google URL Tracker, Google Cloud Messaging, Google Hotwording, etc.)\n    * This includes disabling [Safe Browsing](https://en.wikipedia.org/wiki/Google_Safe_Browsing). Consult [the FAQ for the rationale](https://ungoogled-software.github.io/ungoogled-chromium-wiki/faq#why-is-safe-browsing-disabled).\n* Block internal requests to Google at runtime. This feature is a fail-safe measure for the above, in case Google changes or introduces new components that our patches do not disable. This feature is implemented by replacing many Google web domains in the source code with non-existent alternatives ending in `qjz9zk` (known as domain substitution; [see docs/design.md](docs/design.md#source-file-processors) for details), then [modifying Chromium to block its own requests with such domains](patches/core/ungoogled-chromium/block-trk-and-subdomains.patch). In other words, no connections are attempted to the `qjz9zk` domain.\n* Strip binaries from the source code (known as binary pruning; [see docs/design.md](docs/design.md#source-file-processors) for details)\n\n### Enhancing Features\n\n*These are the non-essential features introduced by ungoogled-chromium.*\n\n* Add many new command-line switches and `chrome://flags` entries to configure new features (which are disabled by default). See [docs/flags.md](docs/flags.md) for the exhaustive list.\n* Add *Suggestions URL* text field in the search engine editor (`chrome://settings/searchEngines`) for customizing search engine suggestions.\n* Add more URL schemes allowed to save page schemes.\n* Add Omnibox search provider \"No Search\" to allow disabling of searching\n* Add a custom cross-platform build configuration and packaging wrapper for Chromium. It currently supports many Linux distributions, macOS, and Windows. (See [docs/design.md](docs/design.md) for details on the system.)\n* Force all pop-ups into tabs\n* Disable automatic formatting of URLs in Omnibox (e.g. stripping `http://`, hiding certain parameters)\n* Disable intranet redirect detector (extraneous DNS requests)\n    * This breaks captive portal detection, but captive portals still work.\n* (Iridium Browser feature change) Prevent URLs with the `trk:` scheme from connecting to the Internet\n    * Also prevents any URLs with the top-level domain `qjz9zk` (as used in domain substitution) from attempting a connection.\n* (Windows-specific) Do not set the Zone Identifier on downloaded files\n\n### Borrowed Features\n\nIn addition to the features introduced by ungoogled-chromium, ungoogled-chromium selectively borrows many features from the following projects (in approximate order of significance):\n\n* [Inox patchset](https://github.com/gcarq/inox-patchset)\n* [Bromite](https://github.com/bromite/bromite)\n* [Debian](https://tracker.debian.org/pkg/chromium)\n* [Iridium Browser](https://iridiumbrowser.de/)\n\n### Supported Platforms and Distributions\n\n[See docs/platforms.md for a list of supported platforms](docs/platforms.md).\n\nOther platforms are discussed and tracked in this repository's Issue Tracker. Learn more about using the Issue Tracker under the section [Contributing, Reporting, Contacting](#contributing-reporting-contacting).\n\n## Downloads\n\n### Automated or maintained builds\n\nungoogled-chromium is available in the following **software repositories**:\n\n* Arch: Available in the AUR, [see instructions in ungoogled-chromium-archlinux](https://github.com/ungoogled-software/ungoogled-chromium-archlinux)\n* Debian: Available in OBS, find your [distribution specific instructions](https://github.com/ungoogled-software/ungoogled-chromium-debian) in the Installing section\n* Ubuntu: Available in the [XtraDeb PPA](https://xtradeb.net/) as [ungoogled-chromium](https://xtradeb.net/apps/ungoogled-chromium/).\n* Fedora: Available in [COPR](https://copr.fedorainfracloud.org/coprs/) as [`wojnilowicz/ungoogled-chromium`](https://copr.fedorainfracloud.org/coprs/wojnilowicz/ungoogled-chromium/). Also available in [RPM Fusion](https://rpmfusion.org/Configuration) as `chromium-browser-privacy` (outdated).\n* Gentoo: Available in [`::pf4public`](https://github.com/PF4Public/gentoo-overlay) overlay as [`ungoogled-chromium`](https://github.com/PF4Public/gentoo-overlay/tree/master/www-client/ungoogled-chromium) and [`ungoogled-chromium-bin`](https://github.com/PF4Public/gentoo-overlay/tree/master/www-client/ungoogled-chromium-bin) ebuilds\n* [OpenMandriva](https://openmandriva.org/) includes ungoogled-chromium as its main browser. The `chromium` package includes all ungoogling patches.\n* macOS: Available in [Homebrew](https://brew.sh/) as [`ungoogled-chromium`](https://formulae.brew.sh/cask/ungoogled-chromium). Just run `brew install --cask ungoogled-chromium`. Chromium will appear in your `/Applications` directory.\n* FreeBSD: Available in pkg as [`www/ungoogled-chromium`](https://www.freshports.org/www/ungoogled-chromium/).\n* [openSUSE](https://www.opensuse.org/): Available as [`ungoogled-chromium`](https://software.opensuse.org//download.html?project=network%3Achromium&package=ungoogled-chromium). \n\nIf your GNU/Linux distribution is not listed, there are distro-independent builds available via the following **package managers**:\n\n* Flatpak: Available [in the Flathub repo](https://flathub.org/apps/details/io.github.ungoogled_software.ungoogled_chromium) as `io.github.ungoogled_software.ungoogled_chromium`\n* GNU Guix: Available as `ungoogled-chromium`\n* NixOS/nixpkgs: Available as `ungoogled-chromium`\n\n### Third-party binaries\n\nIf your operating system is not listed above, you can also try to [**Download binaries from here**](https://ungoogled-software.github.io/ungoogled-chromium-binaries/)\n\n*NOTE: These binaries are provided by anyone who are willing to build and submit them. Because these binaries are not necessarily [reproducible](https://reproducible-builds.org/), authenticity cannot be guaranteed; In other words, there is always a non-zero probability that these binaries may have been tampered with. In the unlikely event that this has happened to you, please [report it in a new issue](#contributing-reporting-contacting).*\n\nThese binaries are known as **contributor binaries**.\n\n## Source Code\n\nThis repository only contains the common code for all platforms; it does not contain all the configuration and scripts necessary to build ungoogled-chromium. Most users will want to use platform-specific repos, where all the remaining configuration and scripts are provided for specific platforms:\n\n[**Find the repo for a specific platform here**](docs/platforms.md).\n\nIf you wish to include ungoogled-chromium code in your own build process, consider using [the tags in this repo](https://github.com/ungoogled-software/ungoogled-chromium/tags). These tags follow the format `{chromium_version}-{revision}` where\n\n* `chromium_version` is the version of Chromium used in `x.x.x.x` format, and\n* `revision` is a number indicating the version of ungoogled-chromium for the corresponding Chromium version.\n\nAdditionally, most platform-specific repos extend their tag scheme upon this one.\n\n**Building the source code**: [See docs/building.md](docs/building.md)\n\n### Mirrors\n\nList of mirrors:\n\n* [Codeberg](https://codeberg.org): [main repo](https://codeberg.org/ungoogled-software/ungoogled-chromium) and [ungoogled-software](https://codeberg.org/ungoogled-software)\n\n## FAQ\n\n[See the frequently-asked questions (FAQ) on the Wiki](https://ungoogled-software.github.io/ungoogled-chromium-wiki/faq)\n\n## Building Instructions\n\n[See docs/building.md](docs/building.md)\n\n## Design Documentation\n\n[See docs/design.md](docs/design.md)\n\n## Contributing, Reporting, Contacting\n\n* For reporting and contacting, see [SUPPORT.md](SUPPORT.md)\n* If you're willing to help, check out the [Issue Tracker](https://github.com/ungoogled-software/ungoogled-chromium/issues) and especially issues, which [need help](https://github.com/ungoogled-software/ungoogled-chromium/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22)\n* For contributing (e.g. how to help, submitting changes, criteria for new features), see [docs/contributing.md](docs/contributing.md)\n* If you have some small contributions that don't fit our criteria, consider adding them to [ungoogled-software/contrib](https://github.com/ungoogled-software/contrib) or [our Wiki](https://github.com/ungoogled-software/ungoogled-chromium-wiki) instead.\n\n## Credits\n\n* [The Chromium Project](https://www.chromium.org/)\n* [Inox patchset](https://github.com/gcarq/inox-patchset)\n* [Debian](https://tracker.debian.org/pkg/chromium-browser)\n* [Bromite](https://github.com/bromite/bromite)\n* [Iridium Browser](https://iridiumbrowser.de/)\n* The users for testing and debugging, [contributing code](https://github.com/ungoogled-software/ungoogled-chromium/graphs/contributors), providing feedback, or simply using ungoogled-chromium in some capacity.\n\n## Related Projects\n\nList of known projects that fork or use changes from ungoogled-chromium:\n\n* [Bromite](https://github.com/bromite/bromite) (Borrows some patches. Features builds for Android)\n* [ppc64le fork](https://github.com/leo-lb/ungoogled-chromium) (Fork with changes to build for ppc64le CPUs)\n\n## License\n\nBSD-3-clause. See [LICENSE](LICENSE)\n"
  },
  {
    "path": "SUPPORT.md",
    "content": "# Support\n\n**Before you submit feedback, please ensure you have tried the following**: \n\n* Read the [FAQ](https://ungoogled-software.github.io/ungoogled-chromium-wiki/faq)\n* If you are using a build for an officially-supported platform ([see the list here](docs/platforms.md)), then please refer to the [Platform-specific Support](#platform-specific-support) section first.\n* Check if your feedback already exists in the [Issue Tracker](https://github.com/ungoogled-software/ungoogled-chromium/issues) (make sure to search closed issues and use search filters, as applicable)\n* If this is a problem, ensure it does *not* occur with regular Chromium or Google Chrome. If it does, then this is *not* a problem with ungoogled-chromium. Instead, please submit your feedback to the [Chromium bug tracker](https://bugs.chromium.org/p/chromium/issues/list) or Google.\n* Read the documentation under [docs/](docs/)\n\nThere are a few channels for support:\n\n* An issue tracker. Issue trackers are the main hubs for discussions and development activity, and thus the primary means of support. They includes problems, suggestions, and questions. If you are using a build for an officially-supported platform ([see the list here](docs/platforms.md)), then please refer to the [Platform-specific Support](#platform-specific-support) section to find its issue tracker. Otherwise, please use [the main issue tracker](https://github.com/ungoogled-software/ungoogled-chromium/issues). \n* A chat room. There are two options available:\n    * [Gitter](https://gitter.im/ungoogled-software/Lobby). It can use your GitHub account as an identity.\n    * Matrix.org at [#ungoogled-chromium:matrix.org](https://matrix.to/#/#ungoogled-chromium:matrix.org). It has a bidirectional connection with Gitter.\n\n## Platform-specific Support\n\nFor officially-supported platforms, **please visit their issue trackers before using the issue tracker in this repository**:\n\n* Android: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-android/issues)\n* Arch Linux and derivatives (e.g. Manjaro): [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-archlinux/issues)\n* Debian & Ubuntu: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-debian/issues)\n* Fedora & CentOS: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-fedora/issues)\n* Flatpak: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-flatpak/issues)\n* Gentoo ([@PF4Public](https://github.com/PF4Public)'s overlay): [Issue tracker](https://github.com/PF4Public/gentoo-overlay/issues?q=is%3Aissue++ungoogled-chromium+)\n* macOS: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-macos/issues)\n* Portable Linux: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-portablelinux/issues)\n* Windows: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-windows/issues)\n"
  },
  {
    "path": "chromium_version.txt",
    "content": "146.0.7680.153\n"
  },
  {
    "path": "devutils/.coveragerc",
    "content": "[run]\nbranch = True\nparallel = True\nomit = tests/*\n\n[report]\n# Regexes for lines to exclude from consideration\nexclude_lines =\n    # Have to re-enable the standard pragma\n    pragma: no cover\n\n    # Don't complain about missing debug-only code:\n    def __repr__\n    if self\\.debug\n\n    # Don't complain if tests don't hit defensive assertion code:\n    raise AssertionError\n    raise NotImplementedError\n\n    # Don't complain if non-runnable code isn't run:\n    if 0:\n    if __name__ == .__main__.:\n"
  },
  {
    "path": "devutils/README.md",
    "content": "# Developer utilities for ungoogled-chromium\n\nThis is a collection of scripts written for developing on ungoogled-chromium. See the descriptions at the top of each script for more information.\n"
  },
  {
    "path": "devutils/__init__.py",
    "content": ""
  },
  {
    "path": "devutils/check_all_code.sh",
    "content": "#!/bin/bash\n\n# Wrapper for devutils and utils formatter, linter, and tester\n\nset -eu\n\n_root_dir=$(dirname $(dirname $(readlink -f $0)))\ncd ${_root_dir}/devutils\n\nprintf '###### utils yapf ######\\n'\n./run_utils_yapf.sh\nprintf '###### utils pylint ######\\n'\n./run_utils_pylint.py || ./run_utils_pylint.py --hide-fixme\nprintf '###### utils tests ######\\n'\n./run_utils_tests.sh\n\nprintf '### devutils yapf ######\\n'\n./run_devutils_yapf.sh\nprintf '###### devutils pylint ######\\n'\n./run_devutils_pylint.py || ./run_devutils_pylint.py --hide-fixme\nprintf '###### devutils tests ######\\n'\n./run_devutils_tests.sh\n"
  },
  {
    "path": "devutils/check_downloads_ini.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Run sanity checking algorithms over downloads.ini files\n\nIt checks the following:\n\n    * downloads.ini has the correct format (i.e. conforms to its schema)\n\nExit codes:\n    * 0 if no problems detected\n    * 1 if warnings or errors occur\n\"\"\"\n\nimport argparse\nimport sys\nfrom pathlib import Path\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils'))\nfrom downloads import DownloadInfo, schema\n\nsys.path.pop(0)\n\n\ndef check_downloads_ini(downloads_ini_iter):\n    \"\"\"\n    Combines and checks if the the downloads.ini files provided are valid.\n\n    downloads_ini_iter must be an iterable of strings to downloads.ini files.\n\n    Returns True if errors occured, False otherwise.\n    \"\"\"\n    try:\n        DownloadInfo(downloads_ini_iter)\n    except schema.SchemaError:\n        return True\n    return False\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n\n    root_dir = Path(__file__).resolve().parent.parent\n    default_downloads_ini = [str(root_dir / 'downloads.ini')]\n\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('-d',\n                        '--downloads-ini',\n                        type=Path,\n                        nargs='*',\n                        default=default_downloads_ini,\n                        help='List of downloads.ini files to check. Default: %(default)s')\n    args = parser.parse_args()\n\n    if check_downloads_ini(args.downloads_ini):\n        sys.exit(1)\n    sys.exit(0)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "devutils/check_files_exist.py",
    "content": "#!/usr/bin/env python3\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nChecks if files in a list exist.\n\nUsed for quick validation of lists in CI checks.\n\"\"\"\n\nimport argparse\nimport sys\nfrom pathlib import Path\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('root_dir', type=Path, help='The directory to check from')\n    parser.add_argument('input_files', type=Path, nargs='+', help='The files lists to check')\n    args = parser.parse_args()\n\n    for input_name in args.input_files:\n        file_iter = filter(\n            len, map(str.strip,\n                     Path(input_name).read_text(encoding='UTF-8').splitlines()))\n        for file_name in file_iter:\n            if not Path(args.root_dir, file_name).exists():\n                print(f'ERROR: Path \"{file_name}\" from file \"{input_name}\" does not exist.',\n                      file=sys.stderr)\n                sys.exit(1)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "devutils/check_gn_flags.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Run sanity checking algorithms over GN flags\n\nIt checks the following:\n\n    * GN flags in flags.gn are sorted and not duplicated\n\nExit codes:\n    * 0 if no problems detected\n    * 1 if warnings or errors occur\n\"\"\"\n\nimport argparse\nimport sys\nfrom pathlib import Path\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils'))\nfrom _common import ENCODING, get_logger\n\nsys.path.pop(0)\n\n\ndef check_gn_flags(gn_flags_path):\n    \"\"\"\n    Checks if GN flags are sorted and not duplicated.\n\n    gn_flags_path is a pathlib.Path to the GN flags file to check\n\n    Returns True if warnings were logged; False otherwise\n    \"\"\"\n    keys_seen = set()\n    warnings = False\n    with gn_flags_path.open(encoding=ENCODING) as file_obj:\n        iterator = iter(file_obj.read().splitlines())\n    try:\n        previous = next(iterator)\n    except StopIteration:\n        return warnings\n    for current in iterator:\n        gn_key = current.split('=')[0]\n        if gn_key in keys_seen:\n            get_logger().warning('In GN flags %s, \"%s\" appears at least twice', gn_flags_path,\n                                 gn_key)\n            warnings = True\n        else:\n            keys_seen.add(gn_key)\n        if current < previous:\n            get_logger().warning('In GN flags %s, \"%s\" should be sorted before \"%s\"', gn_flags_path,\n                                 current, previous)\n            warnings = True\n        previous = current\n    return warnings\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n\n    root_dir = Path(__file__).resolve().parent.parent\n    default_flags_gn = root_dir / 'flags.gn'\n\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('-f',\n                        '--flags-gn',\n                        type=Path,\n                        default=default_flags_gn,\n                        help='Path to the GN flags to use. Default: %(default)s')\n    args = parser.parse_args()\n\n    if check_gn_flags(args.flags_gn):\n        sys.exit(1)\n    sys.exit(0)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "devutils/check_patch_files.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Run sanity checking algorithms over ungoogled-chromium's patch files\n\nIt checks the following:\n\n    * All patches exist\n    * All patches are referenced by the patch order\n\nExit codes:\n    * 0 if no problems detected\n    * 1 if warnings or errors occur\n\"\"\"\n\nimport argparse\nimport sys\nfrom pathlib import Path\n\nfrom third_party import unidiff\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils'))\nfrom _common import ENCODING, get_logger, parse_series # pylint: disable=wrong-import-order\n\nsys.path.pop(0)\n\n# File suffixes to ignore for checking unused patches\n_PATCHES_IGNORE_SUFFIXES = {'.md'}\n\n\ndef _read_series_file(patches_dir, series_file, join_dir=False):\n    \"\"\"\n    Returns a generator over the entries in the series file\n\n    patches_dir is a pathlib.Path to the directory of patches\n    series_file is a pathlib.Path relative to patches_dir\n\n    join_dir indicates if the patches_dir should be joined with the series entries\n    \"\"\"\n    for entry in parse_series(patches_dir / series_file):\n        if join_dir:\n            yield patches_dir / entry\n        else:\n            yield entry\n\n\ndef check_patch_readability(patches_dir, series_path=Path('series')):\n    \"\"\"\n    Check if the patches from iterable patch_path_iter are readable.\n        Patches that are not are logged to stdout.\n\n    Returns True if warnings occured, False otherwise.\n    \"\"\"\n    warnings = False\n    for patch_path in _read_series_file(patches_dir, series_path, join_dir=True):\n        if patch_path.exists():\n            with patch_path.open(encoding=ENCODING) as file_obj:\n                try:\n                    unidiff.PatchSet(file_obj.read())\n                except unidiff.errors.UnidiffParseError:\n                    get_logger().exception('Could not parse patch: %s', patch_path)\n                    warnings = True\n                    continue\n        else:\n            get_logger().warning('Patch not found: %s', patch_path)\n            warnings = True\n    return warnings\n\n\ndef check_unused_patches(patches_dir, series_path=Path('series')):\n    \"\"\"\n    Checks if there are unused patches in patch_dir from series file series_path.\n        Unused patches are logged to stdout.\n\n    patches_dir is a pathlib.Path to the directory of patches\n    series_path is a pathlib.Path to the series file relative to the patches_dir\n\n    Returns True if there are unused patches; False otherwise.\n    \"\"\"\n    unused_patches = set()\n    for path in patches_dir.rglob('*'):\n        if path.is_dir():\n            continue\n        if path.suffix in _PATCHES_IGNORE_SUFFIXES:\n            continue\n        unused_patches.add(str(path.relative_to(patches_dir)))\n    unused_patches -= set(_read_series_file(patches_dir, series_path))\n    unused_patches.remove(str(series_path))\n    logger = get_logger()\n    for entry in sorted(unused_patches):\n        logger.warning('Unused patch: %s', entry)\n    return bool(unused_patches)\n\n\ndef check_series_duplicates(patches_dir, series_path=Path('series')):\n    \"\"\"\n    Checks if there are duplicate entries in the series file\n\n    series_path is a pathlib.Path to the series file relative to the patches_dir\n\n    returns True if there are duplicate entries; False otherwise.\n    \"\"\"\n    entries_seen = set()\n    for entry in _read_series_file(patches_dir, series_path):\n        if entry in entries_seen:\n            get_logger().warning('Patch appears more than once in series: %s', entry)\n            return True\n        entries_seen.add(entry)\n    return False\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n\n    root_dir = Path(__file__).resolve().parent.parent\n    default_patches_dir = root_dir / 'patches'\n\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('-p',\n                        '--patches',\n                        type=Path,\n                        default=default_patches_dir,\n                        help='Path to the patches directory to use. Default: %(default)s')\n    args = parser.parse_args()\n\n    warnings = False\n    warnings |= check_patch_readability(args.patches)\n    warnings |= check_series_duplicates(args.patches)\n    warnings |= check_unused_patches(args.patches)\n\n    if warnings:\n        sys.exit(1)\n    sys.exit(0)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "devutils/print_tag_version.sh",
    "content": "_root_dir=$(dirname $(dirname $(readlink -f $0)))\nprintf '%s-%s' $(cat $_root_dir/chromium_version.txt) $(cat $_root_dir/revision.txt)\n"
  },
  {
    "path": "devutils/pytest.ini",
    "content": "[pytest]\ntestpaths = tests\n#filterwarnings =\n#\terror\n#\tignore::DeprecationWarning\n#addopts = --cov-report term-missing --hypothesis-show-statistics -p no:warnings\n# Live logging\n#log_cli=true\n#log_level=DEBUG\naddopts = -capture=all --cov=. --cov-config=.coveragerc --cov-report term-missing -p no:warnings\n"
  },
  {
    "path": "devutils/run_devutils_pylint.py",
    "content": "#!/usr/bin/env python3\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Run Pylint over devutils\"\"\"\n\nimport argparse\nimport sys\nfrom pathlib import Path\n\nfrom run_other_pylint import ChangeDir, run_pylint\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n    parser = argparse.ArgumentParser(description='Run Pylint over devutils')\n    parser.add_argument('--hide-fixme', action='store_true', help='Hide \"fixme\" Pylint warnings.')\n    parser.add_argument('--show-locally-disabled',\n                        action='store_true',\n                        help='Show \"locally-disabled\" Pylint warnings.')\n    args = parser.parse_args()\n\n    disables = [\n        'wrong-import-position',\n        'duplicate-code',\n    ]\n\n    if args.hide_fixme:\n        disables.append('fixme')\n    if not args.show_locally_disabled:\n        disables.append('locally-disabled')\n\n    pylint_options = [\n        f\"--disable={','.join(disables)}\",\n        '--jobs=4',\n        '--score=n',\n        '--persistent=n',\n    ]\n\n    ignore_prefixes = [\n        ('third_party', ),\n    ]\n\n    sys.path.insert(1, str(Path(__file__).resolve().parent.parent / 'utils'))\n    sys.path.insert(2, str(Path(__file__).resolve().parent.parent / 'devutils' / 'third_party'))\n    with ChangeDir(Path(__file__).parent):\n        result = run_pylint(\n            Path(),\n            pylint_options,\n            ignore_prefixes=ignore_prefixes,\n        )\n    sys.path.pop(2)\n    sys.path.pop(1)\n    if not result:\n        sys.exit(1)\n    sys.exit(0)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "devutils/run_devutils_tests.sh",
    "content": "#!/bin/bash\n\nset -eu\n\n_root_dir=$(dirname $(dirname $(readlink -f $0)))\ncd ${_root_dir}/devutils\npython3 -m pytest -c ${_root_dir}/devutils/pytest.ini\n"
  },
  {
    "path": "devutils/run_devutils_yapf.sh",
    "content": "#!/bin/bash\n\nset -eu\n\n_current_dir=$(dirname $(readlink -f $0))\n_root_dir=$(dirname $_current_dir)\npython3 -m yapf --style \"$_root_dir/.style.yapf\" -e '*/third_party/*' -rpi \"$_current_dir\"\n"
  },
  {
    "path": "devutils/run_other_pylint.py",
    "content": "#!/usr/bin/env python3\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Run Pylint over any module\"\"\"\n\nimport argparse\nimport os\nimport shutil\nimport sys\nfrom pathlib import Path\n\nfrom pylint import lint\n\n\nclass ChangeDir:\n    \"\"\"\n    Changes directory to path in with statement\n    \"\"\"\n\n    def __init__(self, path):\n        self._path = path\n        self._orig_path = os.getcwd()\n\n    def __enter__(self):\n        os.chdir(str(self._path))\n\n    def __exit__(self, *_):\n        os.chdir(self._orig_path)\n\n\ndef run_pylint(module_path, pylint_options, ignore_prefixes=tuple()):\n    \"\"\"Runs Pylint. Returns a boolean indicating success\"\"\"\n    pylint_stats = Path(f'/run/user/{os.getuid()}/pylint_stats')\n    if not pylint_stats.parent.is_dir(): #pylint: disable=no-member\n        pylint_stats = Path('/run/shm/pylint_stats')\n    os.environ['PYLINTHOME'] = str(pylint_stats)\n\n    input_paths = []\n    if not module_path.exists():\n        print('ERROR: Cannot find', module_path)\n        sys.exit(1)\n    if module_path.is_dir():\n        for path in module_path.rglob('*.py'):\n            ignore_matched = False\n            for prefix in ignore_prefixes:\n                if path.parts[:len(prefix)] == prefix:\n                    ignore_matched = True\n                    break\n            if ignore_matched:\n                continue\n            input_paths.append(str(path))\n    else:\n        input_paths.append(str(module_path))\n    runner = lint.Run((*input_paths, *pylint_options), do_exit=False)\n\n    if pylint_stats.is_dir():\n        shutil.rmtree(str(pylint_stats))\n\n    if runner.linter.msg_status != 0:\n        print('WARNING: Non-zero exit status:', runner.linter.msg_status)\n        return False\n    return True\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n\n    parser = argparse.ArgumentParser(description='Run Pylint over arbitrary module')\n    parser.add_argument('--hide-fixme', action='store_true', help='Hide \"fixme\" Pylint warnings.')\n    parser.add_argument('--show-locally-disabled',\n                        action='store_true',\n                        help='Show \"locally-disabled\" Pylint warnings.')\n    parser.add_argument('module_path', type=Path, help='Path to the module to check')\n    args = parser.parse_args()\n\n    if not args.module_path.exists():\n        print(f'ERROR: Module path \"{args.module_path}\" does not exist')\n        sys.exit(1)\n\n    disables = [\n        'wrong-import-position',\n    ]\n\n    if args.hide_fixme:\n        disables.append('fixme')\n    if not args.show_locally_disabled:\n        disables.append('locally-disabled')\n\n    pylint_options = [\n        f\"--disable={','.join(disables)}\",\n        '--jobs=4',\n        '--score=n',\n        '--persistent=n',\n    ]\n\n    if not run_pylint(args.module_path, pylint_options):\n        sys.exit(1)\n    sys.exit(0)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "devutils/run_other_yapf.sh",
    "content": "#!/bin/bash\n\nset -eu\n\npython3 -m yapf --style \"$(dirname $(readlink -f $0))/.style.yapf\" -rpi $@\n"
  },
  {
    "path": "devutils/run_utils_pylint.py",
    "content": "#!/usr/bin/env python3\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Run Pylint over utils\"\"\"\n\nimport argparse\nimport sys\nfrom pathlib import Path\n\nfrom run_other_pylint import ChangeDir, run_pylint\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n    parser = argparse.ArgumentParser(description='Run Pylint over utils')\n    parser.add_argument('--hide-fixme', action='store_true', help='Hide \"fixme\" Pylint warnings.')\n    parser.add_argument('--show-locally-disabled',\n                        action='store_true',\n                        help='Show \"locally-disabled\" Pylint warnings.')\n    args = parser.parse_args()\n\n    pylint_options = [\n        '--jobs=4',\n        '--max-args=7',\n        '--score=n',\n        '--persistent=n',\n    ]\n\n    if args.hide_fixme:\n        pylint_options.append('--disable=fixme')\n    if not args.show_locally_disabled:\n        pylint_options.append('--disable=locally-disabled')\n\n    ignore_prefixes = [\n        ('third_party', ),\n        ('tests', ),\n    ]\n\n    sys.path.insert(1, str(Path(__file__).resolve().parent.parent / 'utils' / 'third_party'))\n    sys.path.append(Path(__file__).resolve().parent.parent / 'utils')\n    with ChangeDir(Path(__file__).resolve().parent.parent / 'utils'):\n        result = run_pylint(\n            Path(),\n            pylint_options,\n            ignore_prefixes=ignore_prefixes,\n        )\n    sys.path.pop(1)\n    if not result:\n        sys.exit(1)\n    sys.exit(0)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "devutils/run_utils_tests.sh",
    "content": "#!/bin/bash\n\nset -eu\n\n_root_dir=$(dirname $(dirname $(readlink -f $0)))\ncd ${_root_dir}/utils\npython3 -m pytest -c ${_root_dir}/utils/pytest.ini\n"
  },
  {
    "path": "devutils/run_utils_yapf.sh",
    "content": "#!/bin/bash\n\nset -eu\n\n_root_dir=$(dirname $(dirname $(readlink -f $0)))\npython3 -m yapf --style \"$_root_dir/.style.yapf\" -e '*/third_party/*' -rpi \"$_root_dir/utils\"\n"
  },
  {
    "path": "devutils/set_quilt_vars.fish",
    "content": "#!/bin/fish\n\n# Fish variant of set_quilt_vars.sh\n\nalias quilt='quilt --quiltrc -'\n\nset REPO_ROOT (dirname (dirname (readlink -f (status current-filename))))\n\nset -gx QUILT_PATCHES \"$REPO_ROOT/patches\"\n\nset -gx QUILT_PUSH_ARGS \"--color=auto\"\nset -gx QUILT_DIFF_OPTS \"--show-c-function\"\nset -gx QUILT_PATCH_OPTS \"--unified --reject-format=unified\"\nset -gx QUILT_DIFF_ARGS \"-p ab --no-timestamps --no-index --color=auto --sort\"\nset -gx QUILT_REFRESH_ARGS \"-p ab --no-timestamps --no-index --sort --strip-trailing-whitespace\"\nset -gx QUILT_COLORS \"diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33\"\nset -gx QUILT_SERIES_ARGS \"--color=auto\"\nset -gx QUILT_PATCHES_ARGS \"--color=auto\"\n\nset -gx LC_ALL C\n"
  },
  {
    "path": "devutils/set_quilt_vars.sh",
    "content": "# Sets quilt variables for updating the patches\n# Make sure to run this with the shell command \"source\" in order to inherit the variables into the interactive environment\n\n# There is some problem with the absolute paths in QUILT_PATCHES and QUILT_SERIES breaking quilt\n# (refresh and diff don't read QUILT_*_ARGS, and series displays absolute paths instead of relative)\n# Specifying a quiltrc file fixes this, so \"--quiltrc -\" fixes this too.\n# One side effect of '--quiltrc -' is that we lose default settings from /etc/quilt.quiltrc, so they are redefined below.\nalias quilt='quilt --quiltrc -'\n\n# Assume this script lives within the repository\nREPO_ROOT=$(dirname \"$(dirname \"$(readlink -f \"${BASH_SOURCE[0]:-${(%):-%x}}\")\")\")\n\nexport QUILT_PATCHES=\"$REPO_ROOT/patches\"\n#export QUILT_SERIES=$(readlink -f \"$REPO_ROOT/patches/series\")\n\n# Options below borrowed from Debian and default quilt options (from /etc/quilt.quiltrc on Debian)\nexport QUILT_PUSH_ARGS=\"--color=auto\"\nexport QUILT_DIFF_OPTS=\"--show-c-function\"\nexport QUILT_PATCH_OPTS=\"--unified --reject-format=unified\"\nexport QUILT_DIFF_ARGS=\"-p ab --no-timestamps --no-index --color=auto --sort\"\nexport QUILT_REFRESH_ARGS=\"-p ab --no-timestamps --no-index --sort --strip-trailing-whitespace\"\nexport QUILT_COLORS=\"diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33\"\nexport QUILT_SERIES_ARGS=\"--color=auto\"\nexport QUILT_PATCHES_ARGS=\"--color=auto\"\n\nexport LC_ALL=C\n# When non-default less options are used, add the -R option so that less outputs\n# ANSI color escape codes \"raw\".\n[ -n \"$LESS\" -a -z \"${QUILT_PAGER+x}\" ] && export QUILT_PAGER=\"less -FRX\"\n"
  },
  {
    "path": "devutils/tests/__init__.py",
    "content": ""
  },
  {
    "path": "devutils/tests/test_check_patch_files.py",
    "content": "# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Test check_patch_files.py\"\"\"\n\nimport logging\nimport tempfile\nimport sys\nfrom pathlib import Path\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent.parent / 'utils'))\nfrom _common import ENCODING, get_logger, set_logging_level\n\nsys.path.pop(0)\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent))\nfrom check_patch_files import check_series_duplicates\n\nsys.path.pop(0)\n\n\ndef test_check_series_duplicates():\n    \"\"\"Test check_series_duplicates\"\"\"\n\n    set_logging_level(logging.DEBUG)\n\n    with tempfile.TemporaryDirectory() as tmpdirname:\n        patches_dir = Path(tmpdirname)\n        series_path = Path(tmpdirname, 'series')\n\n        get_logger().info('Check no duplicates')\n        series_path.write_text('\\n'.join([\n            'a.patch',\n            'b.patch',\n            'c.patch',\n        ]), encoding=ENCODING)\n        assert not check_series_duplicates(patches_dir)\n\n        get_logger().info('Check duplicates')\n        series_path.write_text('\\n'.join([\n            'a.patch',\n            'b.patch',\n            'c.patch',\n            'a.patch',\n        ]),\n                               encoding=ENCODING)\n        assert check_series_duplicates(patches_dir)\n\n\nif __name__ == '__main__':\n    test_check_series_duplicates()\n"
  },
  {
    "path": "devutils/tests/test_validate_patches.py",
    "content": "# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Test validate_patches.py\"\"\"\n\nimport logging\nimport tempfile\nimport sys\nfrom pathlib import Path\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent.parent / 'utils'))\nfrom _common import ENCODING, get_logger, set_logging_level\n\nsys.path.pop(0)\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent))\nimport validate_patches\n\nsys.path.pop(0)\n\n\ndef test_test_patches():\n    \"\"\"Test _dry_check_patched_file\"\"\"\n\n    #pylint: disable=protected-access\n    set_logging_level(logging.DEBUG)\n\n    orig_file_content = \"\"\"bye world\"\"\"\n    series_iter = ['test.patch']\n\n    def _run_test_patches(patch_content):\n        with tempfile.TemporaryDirectory() as tmpdirname:\n            Path(tmpdirname, 'foobar.txt').write_text(orig_file_content, encoding=ENCODING)\n            Path(tmpdirname, 'test.patch').write_text(patch_content, encoding=ENCODING)\n            _, patch_cache = validate_patches._load_all_patches(series_iter, Path(tmpdirname))\n            required_files = validate_patches._get_required_files(patch_cache)\n            files_under_test = validate_patches._retrieve_local_files(required_files,\n                                                                      Path(tmpdirname))\n            return validate_patches._test_patches(series_iter, patch_cache, files_under_test)\n\n    get_logger().info('Check valid modification')\n    patch_content = \"\"\"--- a/foobar.txt\n+++ b/foobar.txt\n@@ -1 +1 @@\n-bye world\n+hello world\n\"\"\"\n    assert not _run_test_patches(patch_content)\n\n    get_logger().info('Check invalid modification')\n    patch_content = \"\"\"--- a/foobar.txt\n+++ b/foobar.txt\n@@ -1 +1 @@\n-hello world\n+olleh world\n\"\"\"\n    assert _run_test_patches(patch_content)\n\n    get_logger().info('Check correct removal')\n    patch_content = \"\"\"--- a/foobar.txt\n+++ /dev/null\n@@ -1 +0,0 @@\n-bye world\n\"\"\"\n    assert not _run_test_patches(patch_content)\n\n    get_logger().info('Check incorrect removal')\n    patch_content = \"\"\"--- a/foobar.txt\n+++ /dev/null\n@@ -1 +0,0 @@\n-this line does not exist in foobar\n\"\"\"\n    assert _run_test_patches(patch_content)\n\n\nif __name__ == '__main__':\n    test_test_patches()\n"
  },
  {
    "path": "devutils/third_party/README.md",
    "content": "This directory contains third-party libraries used by devutils.\n\nContents:\n\n* [python-unidiff](https://github.com/matiasb/python-unidiff)\n    * For parsing and modifying unified diffs.\n"
  },
  {
    "path": "devutils/third_party/__init__.py",
    "content": ""
  },
  {
    "path": "devutils/third_party/unidiff/__init__.py",
    "content": "# -*- coding: utf-8 -*-\n\n# The MIT License (MIT)\n# Copyright (c) 2014-2017 Matias Bordese\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\n# OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n\"\"\"Unidiff parsing library.\"\"\"\n\nfrom __future__ import unicode_literals\n\nfrom . import __version__\nfrom .patch import (\n    DEFAULT_ENCODING,\n    LINE_TYPE_ADDED,\n    LINE_TYPE_CONTEXT,\n    LINE_TYPE_REMOVED,\n    Hunk,\n    PatchedFile,\n    PatchSet,\n    UnidiffParseError,\n)\n\nVERSION = __version__.__version__\n"
  },
  {
    "path": "devutils/third_party/unidiff/__version__.py",
    "content": "# -*- coding: utf-8 -*-\n\n# The MIT License (MIT)\n# Copyright (c) 2014-2017 Matias Bordese\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\n# OR OTHER DEALINGS IN THE SOFTWARE.\n\n__version__ = '0.5.5'\n"
  },
  {
    "path": "devutils/third_party/unidiff/constants.py",
    "content": "# -*- coding: utf-8 -*-\n\n# The MIT License (MIT)\n# Copyright (c) 2014-2017 Matias Bordese\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\n# OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n\"\"\"Useful constants and regexes used by the package.\"\"\"\n\nfrom __future__ import unicode_literals\n\nimport re\n\n\nRE_SOURCE_FILENAME = re.compile(\n    r'^--- (?P<filename>[^\\t\\n]+)(?:\\t(?P<timestamp>[^\\n]+))?')\nRE_TARGET_FILENAME = re.compile(\n    r'^\\+\\+\\+ (?P<filename>[^\\t\\n]+)(?:\\t(?P<timestamp>[^\\n]+))?')\n\n# @@ (source offset, length) (target offset, length) @@ (section header)\nRE_HUNK_HEADER = re.compile(\n    r\"^@@ -(\\d+)(?:,(\\d+))? \\+(\\d+)(?:,(\\d+))?\\ @@[ ]?(.*)\")\n\n#    kept line (context)\n# \\n empty line (treat like context)\n# +  added line\n# -  deleted line\n# \\  No newline case\nRE_HUNK_BODY_LINE = re.compile(\n    r'^(?P<line_type>[- \\+\\\\])(?P<value>.*)', re.DOTALL)\nRE_HUNK_EMPTY_BODY_LINE = re.compile(\n    r'^(?P<line_type>[- \\+\\\\]?)(?P<value>[\\r\\n]{1,2})', re.DOTALL)\n\nRE_NO_NEWLINE_MARKER = re.compile(r'^\\\\ No newline at end of file')\n\nDEFAULT_ENCODING = 'UTF-8'\n\nLINE_TYPE_ADDED = '+'\nLINE_TYPE_REMOVED = '-'\nLINE_TYPE_CONTEXT = ' '\nLINE_TYPE_EMPTY = ''\nLINE_TYPE_NO_NEWLINE = '\\\\'\nLINE_VALUE_NO_NEWLINE = ' No newline at end of file'\n"
  },
  {
    "path": "devutils/third_party/unidiff/errors.py",
    "content": "# -*- coding: utf-8 -*-\n\n# The MIT License (MIT)\n# Copyright (c) 2014-2017 Matias Bordese\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\n# OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n\"\"\"Errors and exceptions raised by the package.\"\"\"\n\nfrom __future__ import unicode_literals\n\n\nclass UnidiffParseError(Exception):\n    \"\"\"Exception when parsing the unified diff data.\"\"\"\n"
  },
  {
    "path": "devutils/third_party/unidiff/patch.py",
    "content": "# -*- coding: utf-8 -*-\n\n# The MIT License (MIT)\n# Copyright (c) 2014-2017 Matias Bordese\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\n# OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n\"\"\"Classes used by the unified diff parser to keep the diff data.\"\"\"\n\nfrom __future__ import unicode_literals\n\nimport codecs\nimport sys\n\nfrom .constants import (\n    DEFAULT_ENCODING,\n    LINE_TYPE_ADDED,\n    LINE_TYPE_CONTEXT,\n    LINE_TYPE_EMPTY,\n    LINE_TYPE_REMOVED,\n    LINE_TYPE_NO_NEWLINE,\n    LINE_VALUE_NO_NEWLINE,\n    RE_HUNK_BODY_LINE,\n    RE_HUNK_EMPTY_BODY_LINE,\n    RE_HUNK_HEADER,\n    RE_SOURCE_FILENAME,\n    RE_TARGET_FILENAME,\n    RE_NO_NEWLINE_MARKER,\n)\nfrom .errors import UnidiffParseError\n\n\nPY2 = sys.version_info[0] == 2\nif PY2:\n    from StringIO import StringIO\n    open_file = codecs.open\n    make_str = lambda x: x.encode(DEFAULT_ENCODING)\n\n    def implements_to_string(cls):\n        cls.__unicode__ = cls.__str__\n        cls.__str__ = lambda x: x.__unicode__().encode(DEFAULT_ENCODING)\n        return cls\nelse:\n    from io import StringIO\n    open_file = open\n    make_str = str\n    implements_to_string = lambda x: x\n    unicode = str\n    basestring = str\n\n\n@implements_to_string\nclass Line(object):\n    \"\"\"A diff line.\"\"\"\n\n    def __init__(self, value, line_type,\n                 source_line_no=None, target_line_no=None, diff_line_no=None):\n        super(Line, self).__init__()\n        self.source_line_no = source_line_no\n        self.target_line_no = target_line_no\n        self.diff_line_no = diff_line_no\n        self.line_type = line_type\n        self.value = value\n\n    def __repr__(self):\n        return make_str(\"<Line: %s%s>\") % (self.line_type, self.value)\n\n    def __str__(self):\n        return \"%s%s\" % (self.line_type, self.value)\n\n    def __eq__(self, other):\n        return (self.source_line_no == other.source_line_no and\n                self.target_line_no == other.target_line_no and\n                self.diff_line_no == other.diff_line_no and\n                self.line_type == other.line_type and\n                self.value == other.value)\n\n    @property\n    def is_added(self):\n        return self.line_type == LINE_TYPE_ADDED\n\n    @property\n    def is_removed(self):\n        return self.line_type == LINE_TYPE_REMOVED\n\n    @property\n    def is_context(self):\n        return self.line_type == LINE_TYPE_CONTEXT\n\n\n@implements_to_string\nclass PatchInfo(list):\n    \"\"\"Lines with extended patch info.\n\n    Format of this info is not documented and it very much depends on\n    patch producer.\n\n    \"\"\"\n\n    def __repr__(self):\n        value = \"<PatchInfo: %s>\" % self[0].strip()\n        return make_str(value)\n\n    def __str__(self):\n        return ''.join(unicode(line) for line in self)\n\n\n@implements_to_string\nclass Hunk(list):\n    \"\"\"Each of the modified blocks of a file.\"\"\"\n\n    def __init__(self, src_start=0, src_len=0, tgt_start=0, tgt_len=0,\n                 section_header=''):\n        if src_len is None:\n            src_len = 1\n        if tgt_len is None:\n            tgt_len = 1\n        self.added = 0  # number of added lines\n        self.removed = 0  # number of removed lines\n        self.source = []\n        self.source_start = int(src_start)\n        self.source_length = int(src_len)\n        self.target = []\n        self.target_start = int(tgt_start)\n        self.target_length = int(tgt_len)\n        self.section_header = section_header\n\n    def __repr__(self):\n        value = \"<Hunk: @@ %d,%d %d,%d @@ %s>\" % (self.source_start,\n                                                  self.source_length,\n                                                  self.target_start,\n                                                  self.target_length,\n                                                  self.section_header)\n        return make_str(value)\n\n    def __str__(self):\n        # section header is optional and thus we output it only if it's present\n        head = \"@@ -%d,%d +%d,%d @@%s\\n\" % (\n            self.source_start, self.source_length,\n            self.target_start, self.target_length,\n            ' ' + self.section_header if self.section_header else '')\n        content = ''.join(unicode(line) for line in self)\n        return head + content\n\n    def append(self, line):\n        \"\"\"Append the line to hunk, and keep track of source/target lines.\"\"\"\n        super(Hunk, self).append(line)\n        s = str(line)\n        if line.is_added:\n            self.added += 1\n            self.target.append(s)\n        elif line.is_removed:\n            self.removed += 1\n            self.source.append(s)\n        elif line.is_context:\n            self.target.append(s)\n            self.source.append(s)\n\n    def is_valid(self):\n        \"\"\"Check hunk header data matches entered lines info.\"\"\"\n        return (len(self.source) == self.source_length and\n                len(self.target) == self.target_length)\n\n    def source_lines(self):\n        \"\"\"Hunk lines from source file (generator).\"\"\"\n        return (l for l in self if l.is_context or l.is_removed)\n\n    def target_lines(self):\n        \"\"\"Hunk lines from target file (generator).\"\"\"\n        return (l for l in self if l.is_context or l.is_added)\n\n\nclass PatchedFile(list):\n    \"\"\"Patch updated file, it is a list of Hunks.\"\"\"\n\n    def __init__(self, patch_info=None, source='', target='',\n                 source_timestamp=None, target_timestamp=None):\n        super(PatchedFile, self).__init__()\n        self.patch_info = patch_info\n        self.source_file = source\n        self.source_timestamp = source_timestamp\n        self.target_file = target\n        self.target_timestamp = target_timestamp\n\n    def __repr__(self):\n        return make_str(\"<PatchedFile: %s>\") % make_str(self.path)\n\n    def __str__(self):\n        # patch info is optional\n        info = '' if self.patch_info is None else str(self.patch_info)\n        source = \"--- %s%s\\n\" % (\n            self.source_file,\n            '\\t' + self.source_timestamp if self.source_timestamp else '')\n        target = \"+++ %s%s\\n\" % (\n            self.target_file,\n            '\\t' + self.target_timestamp if self.target_timestamp else '')\n        hunks = ''.join(unicode(hunk) for hunk in self)\n        return info + source + target + hunks\n\n    def _parse_hunk(self, header, diff, encoding):\n        \"\"\"Parse hunk details.\"\"\"\n        header_info = RE_HUNK_HEADER.match(header)\n        hunk_info = header_info.groups()\n        hunk = Hunk(*hunk_info)\n\n        source_line_no = hunk.source_start\n        target_line_no = hunk.target_start\n        expected_source_end = source_line_no + hunk.source_length\n        expected_target_end = target_line_no + hunk.target_length\n\n        for diff_line_no, line in diff:\n            if encoding is not None:\n                line = line.decode(encoding)\n\n            valid_line = RE_HUNK_EMPTY_BODY_LINE.match(line)\n            if not valid_line:\n                valid_line = RE_HUNK_BODY_LINE.match(line)\n\n            if not valid_line:\n                raise UnidiffParseError('Hunk diff line expected: %s' % line)\n\n            line_type = valid_line.group('line_type')\n            if line_type == LINE_TYPE_EMPTY:\n                line_type = LINE_TYPE_CONTEXT\n            value = valid_line.group('value')\n            original_line = Line(value, line_type=line_type)\n            if line_type == LINE_TYPE_ADDED:\n                original_line.target_line_no = target_line_no\n                target_line_no += 1\n            elif line_type == LINE_TYPE_REMOVED:\n                original_line.source_line_no = source_line_no\n                source_line_no += 1\n            elif line_type == LINE_TYPE_CONTEXT:\n                original_line.target_line_no = target_line_no\n                target_line_no += 1\n                original_line.source_line_no = source_line_no\n                source_line_no += 1\n            elif line_type == LINE_TYPE_NO_NEWLINE:\n                pass\n            else:\n                original_line = None\n\n            # stop parsing if we got past expected number of lines\n            if (source_line_no > expected_source_end or\n                    target_line_no > expected_target_end):\n                raise UnidiffParseError('Hunk is longer than expected')\n\n            if original_line:\n                original_line.diff_line_no = diff_line_no\n                hunk.append(original_line)\n\n            # if hunk source/target lengths are ok, hunk is complete\n            if (source_line_no == expected_source_end and\n                    target_line_no == expected_target_end):\n                break\n\n        # report an error if we haven't got expected number of lines\n        if (source_line_no < expected_source_end or\n                target_line_no < expected_target_end):\n            raise UnidiffParseError('Hunk is shorter than expected')\n\n        self.append(hunk)\n\n    def _add_no_newline_marker_to_last_hunk(self):\n        if not self:\n            raise UnidiffParseError(\n                'Unexpected marker:' + LINE_VALUE_NO_NEWLINE)\n        last_hunk = self[-1]\n        last_hunk.append(\n            Line(LINE_VALUE_NO_NEWLINE + '\\n', line_type=LINE_TYPE_NO_NEWLINE))\n\n    def _append_trailing_empty_line(self):\n        if not self:\n            raise UnidiffParseError('Unexpected trailing newline character')\n        last_hunk = self[-1]\n        last_hunk.append(Line('\\n', line_type=LINE_TYPE_EMPTY))\n\n    @property\n    def path(self):\n        \"\"\"Return the file path abstracted from VCS.\"\"\"\n        if (self.source_file.startswith('a/') and\n                self.target_file.startswith('b/')):\n            filepath = self.source_file[2:]\n        elif (self.source_file.startswith('a/') and\n              self.target_file == '/dev/null'):\n            filepath = self.source_file[2:]\n        elif (self.target_file.startswith('b/') and\n              self.source_file == '/dev/null'):\n            filepath = self.target_file[2:]\n        else:\n            filepath = self.source_file\n        return filepath\n\n    @property\n    def added(self):\n        \"\"\"Return the file total added lines.\"\"\"\n        return sum([hunk.added for hunk in self])\n\n    @property\n    def removed(self):\n        \"\"\"Return the file total removed lines.\"\"\"\n        return sum([hunk.removed for hunk in self])\n\n    @property\n    def is_added_file(self):\n        \"\"\"Return True if this patch adds the file.\"\"\"\n        return (len(self) == 1 and self[0].source_start == 0 and\n                self[0].source_length == 0)\n\n    @property\n    def is_removed_file(self):\n        \"\"\"Return True if this patch removes the file.\"\"\"\n        return (len(self) == 1 and self[0].target_start == 0 and\n                self[0].target_length == 0)\n\n    @property\n    def is_modified_file(self):\n        \"\"\"Return True if this patch modifies the file.\"\"\"\n        return not (self.is_added_file or self.is_removed_file)\n\n\n@implements_to_string\nclass PatchSet(list):\n    \"\"\"A list of PatchedFiles.\"\"\"\n\n    def __init__(self, f, encoding=None):\n        super(PatchSet, self).__init__()\n\n        # convert string inputs to StringIO objects\n        if isinstance(f, basestring):\n            f = self._convert_string(f, encoding)\n\n        # make sure we pass an iterator object to parse\n        data = iter(f)\n        # if encoding is None, assume we are reading unicode data\n        self._parse(data, encoding=encoding)\n\n    def __repr__(self):\n        return make_str('<PatchSet: %s>') % super(PatchSet, self).__repr__()\n\n    def __str__(self):\n        return ''.join(unicode(patched_file) for patched_file in self)\n\n    def _parse(self, diff, encoding):\n        current_file = None\n        patch_info = None\n\n        diff = enumerate(diff, 1)\n        for unused_diff_line_no, line in diff:\n            if encoding is not None:\n                line = line.decode(encoding)\n\n            # check for source file header\n            is_source_filename = RE_SOURCE_FILENAME.match(line)\n            if is_source_filename:\n                source_file = is_source_filename.group('filename')\n                source_timestamp = is_source_filename.group('timestamp')\n                # reset current file\n                current_file = None\n                continue\n\n            # check for target file header\n            is_target_filename = RE_TARGET_FILENAME.match(line)\n            if is_target_filename:\n                if current_file is not None:\n                    raise UnidiffParseError('Target without source: %s' % line)\n                target_file = is_target_filename.group('filename')\n                target_timestamp = is_target_filename.group('timestamp')\n                # add current file to PatchSet\n                current_file = PatchedFile(\n                    patch_info, source_file, target_file,\n                    source_timestamp, target_timestamp)\n                self.append(current_file)\n                patch_info = None\n                continue\n\n            # check for hunk header\n            is_hunk_header = RE_HUNK_HEADER.match(line)\n            if is_hunk_header:\n                if current_file is None:\n                    raise UnidiffParseError('Unexpected hunk found: %s' % line)\n                current_file._parse_hunk(line, diff, encoding)\n                continue\n\n            # check for no newline marker\n            is_no_newline = RE_NO_NEWLINE_MARKER.match(line)\n            if is_no_newline:\n                if current_file is None:\n                    raise UnidiffParseError('Unexpected marker: %s' % line)\n                current_file._add_no_newline_marker_to_last_hunk()\n                continue\n\n            # sometimes hunks can be followed by empty lines\n            if line == '\\n' and current_file is not None:\n                current_file._append_trailing_empty_line()\n                continue\n\n            # if nothing has matched above then this line is a patch info\n            if patch_info is None:\n                current_file = None\n                patch_info = PatchInfo()\n            patch_info.append(line)\n\n    @classmethod\n    def from_filename(cls, filename, encoding=DEFAULT_ENCODING, errors=None):\n        \"\"\"Return a PatchSet instance given a diff filename.\"\"\"\n        with open_file(filename, 'r', encoding=encoding, errors=errors) as f:\n            instance = cls(f)\n        return instance\n\n    @staticmethod\n    def _convert_string(data, encoding=None, errors='strict'):\n        if encoding is not None:\n            # if encoding is given, assume bytes and decode\n            data = unicode(data, encoding=encoding, errors=errors)\n        return StringIO(data)\n\n    @classmethod\n    def from_string(cls, data, encoding=None, errors='strict'):\n        \"\"\"Return a PatchSet instance given a diff string.\"\"\"\n        return cls(cls._convert_string(data, encoding, errors))\n\n    @property\n    def added_files(self):\n        \"\"\"Return patch added files as a list.\"\"\"\n        return [f for f in self if f.is_added_file]\n\n    @property\n    def removed_files(self):\n        \"\"\"Return patch removed files as a list.\"\"\"\n        return [f for f in self if f.is_removed_file]\n\n    @property\n    def modified_files(self):\n        \"\"\"Return patch modified files as a list.\"\"\"\n        return [f for f in self if f.is_modified_file]\n\n    @property\n    def added(self):\n        \"\"\"Return the patch total added lines.\"\"\"\n        return sum([f.added for f in self])\n\n    @property\n    def removed(self):\n        \"\"\"Return the patch total removed lines.\"\"\"\n        return sum([f.removed for f in self])\n"
  },
  {
    "path": "devutils/update_lists.py",
    "content": "#!/usr/bin/env python3\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nUpdate binary pruning and domain substitution lists automatically.\n\nIt will download and unpack into the source tree as necessary.\nNo binary pruning or domain substitution will be applied to the source tree after\nthe process has finished.\n\"\"\"\n\nimport argparse\nimport os\nimport sys\n\nfrom itertools import repeat\nfrom multiprocessing import Pool\nfrom pathlib import Path, PurePosixPath\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils'))\nfrom _common import get_logger\nfrom domain_substitution import DomainRegexList, TREE_ENCODINGS\nfrom prune_binaries import CONTINGENT_PATHS\n\nsys.path.pop(0)\n\n# Encoding for output files\n_ENCODING = 'UTF-8'\n\n# pylint: disable=line-too-long\n\n# NOTE: Include patterns have precedence over exclude patterns\n# pathlib.Path.match() paths to include in binary pruning\nPRUNING_INCLUDE_PATTERNS = [\n    'components/domain_reliability/baked_in_configs/*',\n    # Removals for patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch\n    'components/safe_browsing/core/common/safe_browsing_prefs.cc',\n    'components/safe_browsing/core/common/safe_browsing_prefs.h',\n    'components/signin/public/base/signin_pref_names.cc',\n    'components/signin/public/base/signin_pref_names.h',\n]\n\n# pathlib.Path.match() paths to exclude from binary pruning\nPRUNING_EXCLUDE_PATTERNS = [\n    'chrome/common/win/eventlog_messages.mc', # TODO: False positive textfile\n    # Exclusions for DOM distiller (contains model data only)\n    'components/dom_distiller/core/data/distillable_page_model_new.bin',\n    'components/dom_distiller/core/data/long_page_model.bin',\n    # Exclusions for GeoLanguage data\n    # Details: https://docs.google.com/document/d/18WqVHz5F9vaUiE32E8Ge6QHmku2QSJKvlqB9JjnIM-g/edit\n    # Introduced with: https://chromium.googlesource.com/chromium/src/+/6647da61\n    'components/language/content/browser/ulp_language_code_locator/geolanguage-data_rank0.bin',\n    'components/language/content/browser/ulp_language_code_locator/geolanguage-data_rank1.bin',\n    'components/language/content/browser/ulp_language_code_locator/geolanguage-data_rank2.bin',\n    # Exclusion for required prebuilt object for Windows arm64 builds\n    'third_party/crashpad/crashpad/util/misc/capture_context_win_arm64.obj',\n    'third_party/icu/common/icudtl.dat', # Exclusion for ICU data\n    # Exclusion for Android\n    'build/android/chromium-debug.keystore',\n    'third_party/icu/android/icudtl.dat',\n    'third_party/icu/common/icudtb.dat',\n    # Exclusion for rollup v4.0+\n    'third_party/node/node_modules/@rollup/wasm-node/dist/wasm-node/bindings_wasm_bg.wasm',\n    # Exclusion for performance tracing\n    'third_party/perfetto/src/trace_processor/importers/proto/atoms.descriptor',\n    # Exclusion for zoneinfo64\n    'third_party/rust/chromium_crates_io/vendor/zoneinfo64-v0_2/src/data/zoneinfo64.res',\n    # Exclusions for safe file extensions\n    '*.avif',\n    '*.ttf',\n    '*.png',\n    '*.jpg',\n    '*.webp',\n    '*.gif',\n    '*.ico',\n    '*.mp3',\n    '*.wav',\n    '*.flac',\n    '*.car',\n    '*.icns',\n    '*.woff',\n    '*.woff2',\n    '*makefile',\n    '*.profdata',\n    '*.xcf',\n    '*.cur',\n    '*.pdf',\n    '*.ai',\n    '*.h',\n    '*.c',\n    '*.cpp',\n    '*.cc',\n    '*.mk',\n    '*.bmp',\n    '*.py',\n    '*.xml',\n    '*.html',\n    '*.js',\n    '*.json',\n    '*.txt',\n    '*.binarypb',\n    '*.xtb'\n]\n\n# NOTE: Domain substitution path prefix exclusion has precedence over inclusion patterns\n# Paths to exclude by prefixes of the POSIX representation for domain substitution\nDOMAIN_EXCLUDE_PREFIXES = [\n    'components/test/',\n    'net/http/transport_security_state_static.json',\n    'net/http/transport_security_state_static_pins.json',\n    # Exclusions for Visual Studio Project generation with GN (PR #445)\n    'tools/gn/',\n    # Exclusions for files covered with other patches/unnecessary\n    'third_party/search_engines_data/resources/definitions/prepopulated_engines.json',\n    'third_party/blink/renderer/core/dom/document.cc',\n    # Exclusion to allow download of sysroots\n    'build/linux/sysroot_scripts/sysroots.json',\n    # Licenses and credits\n    'tools/licenses/licenses.py',\n]\n\n# pylint: enable=line-too-long\n\n# pathlib.Path.match() patterns to include in domain substitution\nDOMAIN_INCLUDE_PATTERNS = [\n    '*.h', '*.hh', '*.hpp', '*.hxx', '*.cc', '*.cpp', '*.cxx', '*.c', '*.h', '*.json', '*.js',\n    '*.html', '*.htm', '*.css', '*.py*', '*.grd*', '*.sql', '*.idl', '*.mk', '*.gyp*', 'makefile',\n    '*.ts', '*.txt', '*.xml', '*.mm', '*.jinja*', '*.gn', '*.gni'\n]\n\n# Binary-detection constant\n_TEXTCHARS = bytearray({7, 8, 9, 10, 12, 13, 27} | set(range(0x20, 0x100)) - {0x7f})\n\n\nclass UnusedPatterns: #pylint: disable=too-few-public-methods\n    \"\"\"Tracks unused prefixes and patterns\"\"\"\n\n    _all_names = ('pruning_include_patterns', 'pruning_exclude_patterns', 'domain_include_patterns',\n                  'domain_exclude_prefixes')\n\n    def __init__(self):\n        # Initialize all tracked patterns and prefixes in sets\n        # Users will discard elements that are used\n        for name in self._all_names:\n            setattr(self, name, set(globals()[name.upper()]))\n\n    def log_unused(self, error=True):\n        \"\"\"\n        Logs unused patterns and prefixes\n\n        Returns True if there are unused patterns or prefixes; False otherwise\n        \"\"\"\n        have_unused = False\n        log = get_logger().error if error else get_logger().info\n        for name in self._all_names:\n            current_set = getattr(self, name, None)\n            if current_set:\n                log('Unused from %s: %s', name.upper(), current_set)\n                have_unused = True\n        return have_unused\n\n\ndef _is_binary(bytes_data):\n    \"\"\"\n    Returns True if the data seems to be binary data (i.e. not human readable); False otherwise\n    \"\"\"\n    # From: https://stackoverflow.com/a/7392391\n    return bool(bytes_data.translate(None, _TEXTCHARS))\n\n\ndef _dir_empty(path):\n    \"\"\"\n    Returns True if the directory is empty; False otherwise\n\n    path is a pathlib.Path or string to a directory to test.\n    \"\"\"\n    try:\n        next(os.scandir(str(path)))\n    except StopIteration:\n        return True\n    return False\n\n\ndef should_prune(path, relative_path, used_pep_set, used_pip_set):\n    \"\"\"\n    Returns True if a path should be pruned from the source tree; False otherwise\n\n    path is the pathlib.Path to the file from the current working directory.\n    relative_path is the pathlib.Path to the file from the source tree\n    used_pep_set is a list of PRUNING_EXCLUDE_PATTERNS that have been matched\n    used_pip_set is a list of PRUNING_INCLUDE_PATTERNS that have been matched\n    \"\"\"\n    # Match against include patterns\n    for pattern in filter(relative_path.match, PRUNING_INCLUDE_PATTERNS):\n        used_pip_set.add(pattern)\n        return True\n\n    # Match against exclude patterns\n    for pattern in filter(Path(str(relative_path).lower()).match, PRUNING_EXCLUDE_PATTERNS):\n        used_pep_set.add(pattern)\n        return False\n\n    # Do binary data detection\n    with path.open('rb') as file_obj:\n        if _is_binary(file_obj.read()):\n            return True\n\n    # Passed all filtering; do not prune\n    return False\n\n\ndef _check_regex_match(file_path, search_regex):\n    \"\"\"\n    Returns True if a regex pattern matches a file; False otherwise\n\n    file_path is a pathlib.Path to the file to test\n    search_regex is a compiled regex object to search for domain names\n    \"\"\"\n    with file_path.open(\"rb\") as file_obj:\n        file_bytes = file_obj.read()\n        content = None\n        for encoding in TREE_ENCODINGS:\n            try:\n                content = file_bytes.decode(encoding)\n                break\n            except UnicodeDecodeError:\n                continue\n        if not search_regex.search(content) is None:\n            return True\n    return False\n\n\ndef should_domain_substitute(path, relative_path, search_regex, used_dep_set, used_dip_set):\n    \"\"\"\n    Returns True if a path should be domain substituted in the source tree; False otherwise\n\n    path is the pathlib.Path to the file from the current working directory.\n    relative_path is the pathlib.Path to the file from the source tree.\n    used_dep_set is a list of DOMAIN_EXCLUDE_PREFIXES that have been matched\n    used_dip_set is a list of DOMAIN_INCLUDE_PATTERNS that have been matched\n    \"\"\"\n    relative_path_posix = relative_path.as_posix().lower()\n    for include_pattern in DOMAIN_INCLUDE_PATTERNS:\n        if PurePosixPath(relative_path_posix).match(include_pattern):\n            used_dip_set.add(include_pattern)\n            for exclude_prefix in DOMAIN_EXCLUDE_PREFIXES:\n                if relative_path_posix.startswith(exclude_prefix):\n                    used_dep_set.add(exclude_prefix)\n                    return False\n            # Skip LICENSE.* files so that they remain untouched.\n            for license_path in ['license', 'license.txt', 'license.html']:\n                if relative_path_posix.endswith('/' + license_path):\n                    return False\n            return _check_regex_match(path, search_regex)\n    return False\n\n\ndef compute_lists_proc(path, source_tree, search_regex):\n    \"\"\"\n    Adds the path to appropriate lists to be used by compute_lists.\n\n    path is the pathlib.Path to the file from the current working directory.\n    source_tree is a pathlib.Path to the source tree\n    search_regex is a compiled regex object to search for domain names\n    \"\"\"\n    used_pep_set = set() # PRUNING_EXCLUDE_PATTERNS\n    used_pip_set = set() # PRUNING_INCLUDE_PATTERNS\n    used_dep_set = set() # DOMAIN_EXCLUDE_PREFIXES\n    used_dip_set = set() # DOMAIN_INCLUDE_PATTERNS\n    pruning_set = set()\n    domain_substitution_set = set()\n    symlink_set = set()\n    if path.is_file():\n        relative_path = path.relative_to(source_tree)\n        if not any(str(relative_path.as_posix()).startswith(cpath) for cpath in CONTINGENT_PATHS):\n            if path.is_symlink():\n                try:\n                    resolved_relative_posix = path.resolve().relative_to(source_tree).as_posix()\n                    symlink_set.add((resolved_relative_posix, relative_path.as_posix()))\n                except ValueError:\n                    # Symlink leads out of the source tree\n                    pass\n            elif not any(skip in ('.git', '__pycache__', 'uc_staging') for skip in path.parts):\n                try:\n                    if should_prune(path, relative_path, used_pep_set, used_pip_set):\n                        pruning_set.add(relative_path.as_posix())\n                    elif should_domain_substitute(path, relative_path, search_regex, used_dep_set,\n                                                  used_dip_set):\n                        domain_substitution_set.add(relative_path.as_posix())\n                except: #pylint: disable=bare-except\n                    get_logger().exception('Unhandled exception while processing %s', relative_path)\n    return (used_pep_set, used_pip_set, used_dep_set, used_dip_set, pruning_set,\n            domain_substitution_set, symlink_set)\n\n\ndef compute_lists(source_tree, search_regex, processes): # pylint: disable=too-many-locals\n    \"\"\"\n    Compute the binary pruning and domain substitution lists of the source tree.\n    Returns a tuple of three items in the following order:\n    1. The sorted binary pruning list\n    2. The sorted domain substitution list\n    3. An UnusedPatterns object\n\n    source_tree is a pathlib.Path to the source tree\n    search_regex is a compiled regex object to search for domain names\n    processes is the maximum number of worker processes to create\n    \"\"\"\n    pruning_set = set()\n    domain_substitution_set = set()\n    symlink_set = set() # POSIX resolved path -> set of POSIX symlink paths\n    source_tree = source_tree.resolve()\n    unused_patterns = UnusedPatterns()\n\n    # Launch multiple processes iterating over the source tree\n    with Pool(processes) as procpool:\n        returned_data = procpool.starmap(\n            compute_lists_proc,\n            zip(source_tree.rglob('*'), repeat(source_tree), repeat(search_regex)))\n\n    # Handle the returned data\n    for (used_pep_set, used_pip_set, used_dep_set, used_dip_set, returned_pruning_set,\n         returned_domain_sub_set, returned_symlink_set) in returned_data:\n        # pragma pylint: disable=no-member\n        unused_patterns.pruning_exclude_patterns.difference_update(used_pep_set)\n        unused_patterns.pruning_include_patterns.difference_update(used_pip_set)\n        unused_patterns.domain_exclude_prefixes.difference_update(used_dep_set)\n        unused_patterns.domain_include_patterns.difference_update(used_dip_set)\n        # pragma pylint: enable=no-member\n        pruning_set.update(returned_pruning_set)\n        domain_substitution_set.update(returned_domain_sub_set)\n        symlink_set.update(returned_symlink_set)\n\n    # Prune symlinks for pruned files\n    for (resolved, symlink) in symlink_set:\n        if resolved in pruning_set:\n            pruning_set.add(symlink)\n\n    return sorted(pruning_set), sorted(domain_substitution_set), unused_patterns\n\n\ndef main(args_list=None):\n    \"\"\"CLI entrypoint\"\"\"\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('--pruning',\n                        metavar='PATH',\n                        type=Path,\n                        default='pruning.list',\n                        help='The path to store pruning.list. Default: %(default)s')\n    parser.add_argument('--domain-substitution',\n                        metavar='PATH',\n                        type=Path,\n                        default='domain_substitution.list',\n                        help='The path to store domain_substitution.list. Default: %(default)s')\n    parser.add_argument('--domain-regex',\n                        metavar='PATH',\n                        type=Path,\n                        default='domain_regex.list',\n                        help='The path to domain_regex.list. Default: %(default)s')\n    parser.add_argument('-t',\n                        '--tree',\n                        metavar='PATH',\n                        type=Path,\n                        required=True,\n                        help='The path to the source tree to use.')\n    parser.add_argument(\n        '--processes',\n        metavar='NUM',\n        type=int,\n        default=None,\n        help=\n        'The maximum number of worker processes to create. Defaults to the number of system CPUs.')\n    parser.add_argument('--domain-exclude-prefix',\n                        metavar='PREFIX',\n                        type=str,\n                        action='append',\n                        help='Additional exclusion for domain_substitution.list.')\n    parser.add_argument('--no-error-unused',\n                        action='store_false',\n                        dest='error_unused',\n                        help='Do not treat unused patterns/prefixes as an error.')\n    args = parser.parse_args(args_list)\n    if args.domain_exclude_prefix is not None:\n        DOMAIN_EXCLUDE_PREFIXES.extend(args.domain_exclude_prefix)\n    if args.tree.exists() and not _dir_empty(args.tree):\n        get_logger().info('Using existing source tree at %s', args.tree)\n    else:\n        get_logger().error('No source tree found. Aborting.')\n        sys.exit(1)\n    get_logger().info('Computing lists...')\n    pruning_set, domain_substitution_set, unused_patterns = compute_lists(\n        args.tree,\n        DomainRegexList(args.domain_regex).search_regex, args.processes)\n    with args.pruning.open('w', encoding=_ENCODING) as file_obj:\n        file_obj.writelines(f'{line}\\n' for line in pruning_set)\n    with args.domain_substitution.open('w', encoding=_ENCODING) as file_obj:\n        file_obj.writelines(f'{line}\\n' for line in domain_substitution_set)\n    if unused_patterns.log_unused(args.error_unused) and args.error_unused:\n        get_logger().error('Please update or remove unused patterns and/or prefixes. '\n                           'The lists have still been updated with the remaining valid entries.')\n        sys.exit(1)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "devutils/update_platform_patches.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nUtility to ease the updating of platform patches against ungoogled-chromium's patches\n\"\"\"\n\nimport argparse\nimport os\nimport shutil\nimport sys\nfrom pathlib import Path\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils'))\nfrom _common import ENCODING, get_logger\nfrom patches import merge_patches\n\nsys.path.pop(0)\n\n_SERIES = 'series'\n_SERIES_ORIG = 'series.orig'\n_SERIES_PREPEND = 'series.prepend'\n_SERIES_MERGED = 'series.merged'\n\n\ndef merge_platform_patches(platform_patches_dir, prepend_patches_dir):\n    '''\n    Prepends prepend_patches_dir into platform_patches_dir\n\n    Returns True if successful, False otherwise\n    '''\n    if not (platform_patches_dir / _SERIES).exists():\n        get_logger().error('Unable to find platform series file: %s',\n                           platform_patches_dir / _SERIES)\n        return False\n\n    # Make series.orig file\n    shutil.copyfile(str(platform_patches_dir / _SERIES), str(platform_patches_dir / _SERIES_ORIG))\n\n    # Make series.prepend\n    shutil.copyfile(str(prepend_patches_dir / _SERIES), str(platform_patches_dir / _SERIES_PREPEND))\n\n    # Merge patches\n    merge_patches([prepend_patches_dir], platform_patches_dir, prepend=True)\n    (platform_patches_dir / _SERIES).replace(platform_patches_dir / _SERIES_MERGED)\n\n    return True\n\n\ndef _dir_empty(path):\n    '''\n    Returns True if the directory exists and is empty; False otherwise\n    '''\n    try:\n        next(os.scandir(str(path)))\n    except StopIteration:\n        return True\n    except FileNotFoundError:\n        pass\n    return False\n\n\ndef _rename_files_with_dirs(root_dir, source_dir, sorted_file_iter):\n    '''\n    Moves a list of sorted files back to their original location,\n    removing empty directories along the way\n    '''\n    past_parent = None\n    for partial_path in sorted_file_iter:\n        complete_path = Path(root_dir, partial_path)\n        complete_source_path = Path(source_dir, partial_path)\n        try:\n            complete_path.rename(complete_source_path)\n        except FileNotFoundError:\n            get_logger().warning('Could not move prepended patch: %s', complete_path)\n        if past_parent != complete_path.parent:\n            while past_parent and _dir_empty(past_parent):\n                past_parent.rmdir()\n                past_parent = past_parent.parent\n            past_parent = complete_path.parent\n    # Handle last path's directory\n    while _dir_empty(complete_path.parent):\n        complete_path.parent.rmdir()\n        complete_path = complete_path.parent\n\n\ndef unmerge_platform_patches(platform_patches_dir, prepend_patches_dir):\n    '''\n    Undo merge_platform_patches(), adding any new patches from series.merged as necessary\n\n    Returns True if successful, False otherwise\n    '''\n    if not (platform_patches_dir / _SERIES_PREPEND).exists():\n        get_logger().error('Unable to find series.prepend at: %s',\n                           platform_patches_dir / _SERIES_PREPEND)\n        return False\n    prepend_series = set(\n        filter(len,\n               (platform_patches_dir / _SERIES_PREPEND).read_text(encoding=ENCODING).splitlines()))\n\n    # Move prepended files back to original location, preserving changes\n    _rename_files_with_dirs(platform_patches_dir, prepend_patches_dir, sorted(prepend_series))\n\n    # Determine positions of blank spaces in series.orig\n    if not (platform_patches_dir / _SERIES_ORIG).exists():\n        get_logger().error('Unable to find series.orig at: %s', platform_patches_dir / _SERIES_ORIG)\n        return False\n    orig_series = (platform_patches_dir / _SERIES_ORIG).read_text(encoding=ENCODING).splitlines()\n    # patch path -> list of lines after patch path and before next patch path\n    path_comments = {}\n    # patch path -> inline comment for patch\n    path_inline_comments = {}\n    previous_path = None\n    for partial_path in orig_series:\n        if not partial_path or partial_path.startswith('#'):\n            if partial_path not in path_comments:\n                path_comments[previous_path] = []\n            path_comments[previous_path].append(partial_path)\n        else:\n            path_parts = partial_path.split(' #', maxsplit=1)\n            previous_path = path_parts[0]\n            if len(path_parts) == 2:\n                path_inline_comments[path_parts[0]] = path_parts[1]\n\n    # Apply changes on series.merged into a modified version of series.orig\n    if not (platform_patches_dir / _SERIES_MERGED).exists():\n        get_logger().error('Unable to find series.merged at: %s',\n                           platform_patches_dir / _SERIES_MERGED)\n        return False\n    new_series = filter(len, (platform_patches_dir /\n                              _SERIES_MERGED).read_text(encoding=ENCODING).splitlines())\n    new_series = filter((lambda x: x not in prepend_series), new_series)\n    new_series = list(new_series)\n    series_index = 0\n    while series_index < len(new_series):\n        current_path = new_series[series_index]\n        if current_path in path_inline_comments:\n            new_series[series_index] = current_path + ' #' + path_inline_comments[current_path]\n        if current_path in path_comments:\n            new_series.insert(series_index + 1, '\\n'.join(path_comments[current_path]))\n            series_index += 1\n        series_index += 1\n\n    # Write series file\n    with (platform_patches_dir / _SERIES).open('w', encoding=ENCODING) as series_file:\n        series_file.write('\\n'.join(new_series))\n        series_file.write('\\n')\n\n    # All other operations are successful; remove merging intermediates\n    (platform_patches_dir / _SERIES_MERGED).unlink()\n    (platform_patches_dir / _SERIES_ORIG).unlink()\n    (platform_patches_dir / _SERIES_PREPEND).unlink()\n\n    return True\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('command',\n                        choices=('merge', 'unmerge'),\n                        help='Merge or unmerge ungoogled-chromium patches with platform patches')\n    parser.add_argument('platform_patches',\n                        type=Path,\n                        help='The path to the platform patches in GNU Quilt format to merge into')\n    args = parser.parse_args()\n\n    repo_dir = Path(__file__).resolve().parent.parent\n\n    success = False\n    prepend_patches_dir = repo_dir / 'patches'\n    if args.command == 'merge':\n        success = merge_platform_patches(args.platform_patches, prepend_patches_dir)\n    elif args.command == 'unmerge':\n        success = unmerge_platform_patches(args.platform_patches, prepend_patches_dir)\n    else:\n        raise NotImplementedError(args.command)\n\n    if success:\n        return 0\n    return 1\n\n\nif __name__ == '__main__':\n    sys.exit(main())\n"
  },
  {
    "path": "devutils/validate_config.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Run sanity checking algorithms over ungoogled-chromium's config files\n\nNOTE: This script is hardcoded to run over ungoogled-chromium's config files only.\nTo check other files, use the other scripts imported by this script.\n\nIt checks the following:\n\n    * All patches exist\n    * All patches are referenced by the patch order\n    * Each patch is used only once\n    * GN flags in flags.gn are sorted and not duplicated\n    * downloads.ini has the correct format (i.e. conforms to its schema)\n\nExit codes:\n    * 0 if no problems detected\n    * 1 if warnings or errors occur\n\"\"\"\n\nimport sys\nfrom pathlib import Path\n\nfrom check_downloads_ini import check_downloads_ini\nfrom check_gn_flags import check_gn_flags\nfrom check_patch_files import (check_patch_readability, check_series_duplicates,\n                               check_unused_patches)\n\n\ndef main():\n    \"\"\"CLI entrypoint\"\"\"\n\n    warnings = False\n    root_dir = Path(__file__).resolve().parent.parent\n    patches_dir = root_dir / 'patches'\n\n    # Check patches\n    warnings |= check_patch_readability(patches_dir)\n    warnings |= check_series_duplicates(patches_dir)\n    warnings |= check_unused_patches(patches_dir)\n\n    # Check GN flags\n    warnings |= check_gn_flags(root_dir / 'flags.gn')\n\n    # Check downloads.ini\n    warnings |= check_downloads_ini([root_dir / 'downloads.ini'])\n\n    if warnings:\n        sys.exit(1)\n    sys.exit(0)\n\n\nif __name__ == '__main__':\n    if sys.argv[1:]:\n        print(__doc__)\n    else:\n        main()\n"
  },
  {
    "path": "devutils/validate_patches.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n\n# Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nValidates that all patches apply cleanly against the source tree.\n\nThe required source tree files can be retrieved from Google directly.\n\"\"\"\n\nimport argparse\nimport ast\nimport base64\nimport email.utils\nimport json\nimport logging\nimport sys\nimport tempfile\nfrom pathlib import Path\n\nsys.path.insert(0, str(Path(__file__).resolve().parent / 'third_party'))\nimport unidiff\nfrom unidiff.constants import LINE_TYPE_EMPTY, LINE_TYPE_NO_NEWLINE\n\nsys.path.pop(0)\n\nsys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils'))\nfrom domain_substitution import TREE_ENCODINGS\nfrom _common import ENCODING, get_logger, get_chromium_version, parse_series, add_common_params\nfrom patches import dry_run_check\n\nsys.path.pop(0)\n\ntry:\n    import requests\n    import requests.adapters\n    import urllib3.util\n\n    class _VerboseRetry(urllib3.util.Retry):\n        \"\"\"A more verbose version of HTTP Adatper about retries\"\"\"\n\n        def sleep_for_retry(self, response=None):\n            \"\"\"Sleeps for Retry-After, and logs the sleep time\"\"\"\n            if response:\n                retry_after = self.get_retry_after(response)\n                if retry_after:\n                    get_logger().info(\n                        'Got HTTP status %s with Retry-After header. Retrying after %s seconds...',\n                        response.status, retry_after)\n                else:\n                    get_logger().info(\n                        'Could not find Retry-After header for HTTP response %s. Status reason: %s',\n                        response.status, response.reason)\n            return super().sleep_for_retry(response)\n\n        def _sleep_backoff(self):\n            \"\"\"Log info about backoff sleep\"\"\"\n            get_logger().info('Running HTTP request sleep backoff')\n            super()._sleep_backoff()\n\n    def _get_requests_session():\n        session = requests.Session()\n        http_adapter = requests.adapters.HTTPAdapter(\n            max_retries=_VerboseRetry(total=10,\n                                      read=10,\n                                      connect=10,\n                                      backoff_factor=8,\n                                      status_forcelist=urllib3.Retry.RETRY_AFTER_STATUS_CODES,\n                                      raise_on_status=False))\n        session.mount('http://', http_adapter)\n        session.mount('https://', http_adapter)\n        return session\nexcept ImportError:\n\n    def _get_requests_session():\n        raise RuntimeError('The Python module \"requests\" is required for remote'\n                           'file downloading. It can be installed from PyPI.')\n\n\n_ROOT_DIR = Path(__file__).resolve().parent.parent\n_SRC_PATH = Path('src')\n\n\nclass _PatchValidationError(Exception):\n    \"\"\"Raised when patch validation fails\"\"\"\n\n\nclass _UnexpectedSyntaxError(RuntimeError):\n    \"\"\"Raised when unexpected syntax is used in DEPS\"\"\"\n\n\nclass _NotInRepoError(RuntimeError):\n    \"\"\"Raised when the remote file is not present in the given repo\"\"\"\n\n\nclass _DepsNodeVisitor(ast.NodeVisitor):\n    _valid_syntax_types = (ast.mod, ast.expr_context, ast.boolop, ast.Assign, ast.Add, ast.Name,\n                           ast.Dict, ast.Constant, ast.List, ast.BinOp)\n    _allowed_callables = ('Var', )\n\n    def visit_Call(self, node): #pylint: disable=invalid-name\n        \"\"\"Override Call syntax handling\"\"\"\n        if node.func.id not in self._allowed_callables:\n            raise _UnexpectedSyntaxError(f'Unexpected call of \"{node.func.id}\" '\n                                         f'at line {node.lineno}, column {node.col_offset}')\n\n    def generic_visit(self, node):\n        for ast_type in self._valid_syntax_types:\n            if isinstance(node, ast_type):\n                super().generic_visit(node)\n                return\n        raise _UnexpectedSyntaxError(f'Unexpected {type(node).__name__} '\n                                     f'at line {node.lineno}, column {node.col_offset}')\n\n\ndef _validate_deps(deps_text):\n    \"\"\"Returns True if the DEPS file passes validation; False otherwise\"\"\"\n    try:\n        _DepsNodeVisitor().visit(ast.parse(deps_text))\n    except _UnexpectedSyntaxError as exc:\n        get_logger().error('%s', exc)\n        return False\n    return True\n\n\ndef _deps_var(deps_globals):\n    \"\"\"Return a function that implements DEPS's Var() function\"\"\"\n\n    def _var_impl(var_name):\n        \"\"\"Implementation of Var() in DEPS\"\"\"\n        return deps_globals['vars'][var_name]\n\n    return _var_impl\n\n\ndef _parse_deps(deps_text):\n    \"\"\"Returns a dict of parsed DEPS data\"\"\"\n    deps_globals = {'__builtins__': None}\n    deps_globals['Var'] = _deps_var(deps_globals)\n    exec(deps_text, deps_globals) #pylint: disable=exec-used\n    return deps_globals\n\n\ndef _download_googlesource_file(download_session, repo_url, version, relative_path):\n    \"\"\"\n    Returns the contents of the text file with path within the given\n    googlesource.com repo as a string.\n    \"\"\"\n    if 'googlesource.com' not in repo_url:\n        raise ValueError(f'Repository URL is not a googlesource.com URL: {repo_url}')\n    full_url = repo_url + f'/+/{version}/{str(relative_path)}?format=TEXT'\n    get_logger().debug('Downloading: %s', full_url)\n    response = download_session.get(full_url)\n    if response.status_code == 404:\n        raise _NotInRepoError()\n    response.raise_for_status()\n    # Assume all files that need patching are compatible with UTF-8\n    return base64.b64decode(response.text, validate=True).decode('UTF-8')\n\n\ndef _get_dep_value_url(deps_globals, dep_value):\n    \"\"\"Helper for _process_deps_entries\"\"\"\n    if isinstance(dep_value, str):\n        url = dep_value\n    elif isinstance(dep_value, dict):\n        if 'url' not in dep_value:\n            # Ignore other types like CIPD since\n            # it probably isn't necessary\n            return None\n        url = dep_value['url']\n    else:\n        raise NotImplementedError()\n    if '{' in url:\n        # Probably a Python format string\n        url = url.format(**deps_globals['vars'])\n    if url.count('@') != 1:\n        raise _PatchValidationError(f'Invalid number of @ symbols in URL: {url}')\n    return url\n\n\ndef _process_deps_entries(deps_globals, child_deps_tree, child_path, deps_use_relative_paths):\n    \"\"\"Helper for _get_child_deps_tree\"\"\"\n    for dep_path_str, dep_value in deps_globals.get('deps', {}).items():\n        url = _get_dep_value_url(deps_globals, dep_value)\n        if url is None:\n            continue\n        dep_path = Path(dep_path_str)\n        if not deps_use_relative_paths:\n            try:\n                dep_path = Path(dep_path_str).relative_to(child_path)\n            except ValueError:\n                # Not applicable to the current DEPS tree path\n                continue\n        grandchild_deps_tree = None # Delaying creation of dict() until it's needed\n        for recursedeps_item in deps_globals.get('recursedeps', tuple()):\n            if isinstance(recursedeps_item, str):\n                if recursedeps_item == str(dep_path):\n                    grandchild_deps_tree = 'DEPS'\n            else: # Some sort of iterable\n                recursedeps_item_path, recursedeps_item_depsfile = recursedeps_item\n                if recursedeps_item_path == str(dep_path):\n                    grandchild_deps_tree = recursedeps_item_depsfile\n        if grandchild_deps_tree is None:\n            # This dep is not recursive; i.e. it is fully loaded\n            grandchild_deps_tree = {}\n        child_deps_tree[dep_path] = (*url.split('@'), grandchild_deps_tree)\n\n\ndef _get_child_deps_tree(download_session, current_deps_tree, child_path, deps_use_relative_paths):\n    \"\"\"Helper for _download_source_file\"\"\"\n    repo_url, version, child_deps_tree = current_deps_tree[child_path]\n    if isinstance(child_deps_tree, str):\n        # Load unloaded DEPS\n        deps_globals = _parse_deps(\n            _download_googlesource_file(download_session, repo_url, version, child_deps_tree))\n        child_deps_tree = {}\n        current_deps_tree[child_path] = (repo_url, version, child_deps_tree)\n        deps_use_relative_paths = deps_globals.get('use_relative_paths', False)\n        _process_deps_entries(deps_globals, child_deps_tree, child_path, deps_use_relative_paths)\n    return child_deps_tree, deps_use_relative_paths\n\n\ndef _get_last_chromium_modification():\n    \"\"\"Returns the last modification date of the chromium-browser-official tar file\"\"\"\n    with _get_requests_session() as session:\n        response = session.head('https://storage.googleapis.com/chromium-browser-official/'\n                                f'chromium-{get_chromium_version()}.tar.xz')\n        response.raise_for_status()\n        return email.utils.parsedate_to_datetime(response.headers['Last-Modified'])\n\n\ndef _get_gitiles_git_log_date(log_entry):\n    \"\"\"Helper for _get_gitiles_git_log_date\"\"\"\n    return email.utils.parsedate_to_datetime(log_entry['committer']['time'])\n\n\ndef _get_gitiles_commit_before_date(repo_url, target_branch, target_datetime):\n    \"\"\"Returns the hexadecimal hash of the closest commit before target_datetime\"\"\"\n    json_log_url = f'{repo_url}/+log/{target_branch}?format=JSON'\n    with _get_requests_session() as session:\n        response = session.get(json_log_url)\n        response.raise_for_status()\n        git_log = json.loads(response.text[5:]) # Trim closing delimiters for various structures\n    assert len(git_log) == 2 # 'log' and 'next' entries\n    assert 'log' in git_log\n    assert git_log['log']\n    git_log = git_log['log']\n    # Check boundary conditions\n    if _get_gitiles_git_log_date(git_log[0]) < target_datetime:\n        # Newest commit is older than target datetime\n        return git_log[0]['commit']\n    if _get_gitiles_git_log_date(git_log[-1]) > target_datetime:\n        # Oldest commit is newer than the target datetime; assume oldest is close enough.\n        get_logger().warning('Oldest entry in gitiles log for repo \"%s\" is newer than target; '\n                             'continuing with oldest entry...')\n        return git_log[-1]['commit']\n    # Do binary search\n    low_index = 0\n    high_index = len(git_log) - 1\n    mid_index = high_index\n    while low_index != high_index:\n        mid_index = low_index + (high_index - low_index) // 2\n        if _get_gitiles_git_log_date(git_log[mid_index]) > target_datetime:\n            low_index = mid_index + 1\n        else:\n            high_index = mid_index\n    return git_log[mid_index]['commit']\n\n\nclass _FallbackRepoManager:\n    \"\"\"Retrieves fallback repos and caches data needed for determining repos\"\"\"\n\n    _GN_REPO_URL = 'https://gn.googlesource.com/gn.git'\n\n    def __init__(self):\n        self._cache_gn_version = None\n\n    @property\n    def gn_version(self):\n        \"\"\"\n        Returns the version of the GN repo for the Chromium version used by this code\n        \"\"\"\n        if not self._cache_gn_version:\n            # Because there seems to be no reference to the logic for generating the\n            # chromium-browser-official tar file, it's possible that it is being generated\n            # by an internal script that manually injects the GN repository files.\n            # Therefore, assume that the GN version used in the chromium-browser-official tar\n            # files correspond to the latest commit in the master branch of the GN repository\n            # at the time of the tar file's generation. We can get an approximation for the\n            # generation time by using the last modification date of the tar file on\n            # Google's file server.\n            self._cache_gn_version = _get_gitiles_commit_before_date(\n                self._GN_REPO_URL, 'master', _get_last_chromium_modification())\n        return self._cache_gn_version\n\n    def get_fallback(self, current_relative_path, current_node, root_deps_tree):\n        \"\"\"\n        Helper for _download_source_file\n\n        It returns a new (repo_url, version, new_relative_path) to attempt a file download with\n        \"\"\"\n        assert len(current_node) == 3\n        # GN special processing\n        try:\n            new_relative_path = current_relative_path.relative_to('tools/gn')\n        except ValueError:\n            pass\n        else:\n            if current_node is root_deps_tree[_SRC_PATH]:\n                get_logger().info('Redirecting to GN repo version %s for path: %s', self.gn_version,\n                                  current_relative_path)\n                return (self._GN_REPO_URL, self.gn_version, new_relative_path)\n        return None, None, None\n\n\ndef _get_target_file_deps_node(download_session, root_deps_tree, target_file):\n    \"\"\"\n    Helper for _download_source_file\n\n    Returns the corresponding repo containing target_file based on the DEPS tree\n    \"\"\"\n    # The \"deps\" from the current DEPS file\n    current_deps_tree = root_deps_tree\n    current_node = None\n    # Path relative to the current node (i.e. DEPS file)\n    current_relative_path = Path('src', target_file)\n    previous_relative_path = None\n    deps_use_relative_paths = False\n    child_path = None\n    while current_relative_path != previous_relative_path:\n        previous_relative_path = current_relative_path\n        for child_path in current_deps_tree:\n            try:\n                current_relative_path = previous_relative_path.relative_to(child_path)\n            except ValueError:\n                # previous_relative_path does not start with child_path\n                continue\n            current_node = current_deps_tree[child_path]\n            # current_node will match with current_deps_tree after the following statement\n            current_deps_tree, deps_use_relative_paths = _get_child_deps_tree(\n                download_session, current_deps_tree, child_path, deps_use_relative_paths)\n            break\n    assert not current_node is None\n    return current_node, current_relative_path\n\n\ndef _download_source_file(download_session, root_deps_tree, fallback_repo_manager, target_file):\n    \"\"\"\n    Downloads the source tree file from googlesource.com\n\n    download_session is an active requests.Session() object\n    deps_dir is a pathlib.Path to the directory containing a DEPS file.\n    \"\"\"\n    current_node, current_relative_path = _get_target_file_deps_node(download_session,\n                                                                     root_deps_tree, target_file)\n    # Attempt download with potential fallback logic\n    repo_url, version, _ = current_node\n    try:\n        # Download with DEPS-provided repo\n        return _download_googlesource_file(download_session, repo_url, version,\n                                           current_relative_path)\n    except _NotInRepoError:\n        pass\n    get_logger().debug(\n        'Path \"%s\" (relative: \"%s\") not found using DEPS tree; finding fallback repo...',\n        target_file, current_relative_path)\n    repo_url, version, current_relative_path = fallback_repo_manager.get_fallback(\n        current_relative_path, current_node, root_deps_tree)\n    if not repo_url:\n        get_logger().error('No fallback repo found for \"%s\" (relative: \"%s\")', target_file,\n                           current_relative_path)\n        raise _NotInRepoError()\n    try:\n        # Download with fallback repo\n        return _download_googlesource_file(download_session, repo_url, version,\n                                           current_relative_path)\n    except _NotInRepoError:\n        pass\n    get_logger().error('File \"%s\" (relative: \"%s\") not found in fallback repo \"%s\", version \"%s\"',\n                       target_file, current_relative_path, repo_url, version)\n    raise _NotInRepoError()\n\n\ndef _initialize_deps_tree():\n    \"\"\"\n    Initializes and returns a dependency tree for DEPS files\n\n    The DEPS tree is a dict has the following format:\n    key - pathlib.Path relative to the DEPS file's path\n    value - tuple(repo_url, version, recursive dict here)\n        repo_url is the URL to the dependency's repository root\n        If the recursive dict is a string, then it is a string to the DEPS file to load\n            if needed\n\n    download_session is an active requests.Session() object\n    \"\"\"\n    root_deps_tree = {\n        _SRC_PATH: ('https://chromium.googlesource.com/chromium/src.git', get_chromium_version(),\n                    'DEPS')\n    }\n    return root_deps_tree\n\n\ndef _retrieve_remote_files(file_iter):\n    \"\"\"\n    Retrieves all file paths in file_iter from Google\n\n    file_iter is an iterable of strings that are relative UNIX paths to\n        files in the Chromium source.\n\n    Returns a dict of relative UNIX path strings to a list of lines in the file as strings\n    \"\"\"\n\n    files = {}\n\n    root_deps_tree = _initialize_deps_tree()\n\n    try:\n        total_files = len(file_iter)\n    except TypeError:\n        total_files = None\n\n    logger = get_logger()\n    if total_files is None:\n        logger.info('Downloading remote files...')\n    else:\n        logger.info('Downloading %d remote files...', total_files)\n    last_progress = 0\n    file_count = 0\n    fallback_repo_manager = _FallbackRepoManager()\n    with _get_requests_session() as download_session:\n        download_session.stream = False # To ensure connection to Google can be reused\n        for file_path in file_iter:\n            if total_files:\n                file_count += 1\n                current_progress = file_count * 100 // total_files // 5 * 5\n                if current_progress != last_progress:\n                    last_progress = current_progress\n                    logger.info('%d%% downloaded', current_progress)\n            else:\n                current_progress = file_count // 20 * 20\n                if current_progress != last_progress:\n                    last_progress = current_progress\n                    logger.info('%d files downloaded', current_progress)\n            try:\n                files[file_path] = _download_source_file(download_session, root_deps_tree,\n                                                         fallback_repo_manager,\n                                                         file_path).split('\\n')\n            except _NotInRepoError:\n                get_logger().warning('Could not find \"%s\" remotely. Skipping...', file_path)\n    return files\n\n\ndef _retrieve_local_files(file_iter, source_dir):\n    \"\"\"\n    Retrieves all file paths in file_iter from the local source tree\n\n    file_iter is an iterable of strings that are relative UNIX paths to\n        files in the Chromium source.\n\n    Returns a dict of relative UNIX path strings to a list of lines in the file as strings\n    \"\"\"\n    files = {}\n    for file_path in file_iter:\n        try:\n            raw_content = (source_dir / file_path).read_bytes()\n        except FileNotFoundError:\n            get_logger().warning('Missing file from patches: %s', file_path)\n            continue\n        for encoding in TREE_ENCODINGS:\n            try:\n                content = raw_content.decode(encoding)\n                break\n            except UnicodeDecodeError:\n                continue\n        if not content:\n            raise UnicodeDecodeError(f'Unable to decode with any encoding: {file_path}')\n        files[file_path] = content.split('\\n')\n    if not files:\n        get_logger().error('All files used by patches are missing!')\n    return files\n\n\ndef _modify_file_lines(patched_file, file_lines):\n    \"\"\"Helper for _apply_file_unidiff\"\"\"\n    # Cursor for keeping track of the current line during hunk application\n    # NOTE: The cursor is based on the line list index, not the line number!\n    line_cursor = None\n    for hunk in patched_file:\n        # Validate hunk will match\n        if not hunk.is_valid():\n            raise _PatchValidationError(f'Hunk is not valid: {repr(hunk)}')\n        line_cursor = hunk.target_start - 1\n        for line in hunk:\n            normalized_line = line.value.rstrip('\\n')\n            if line.is_added:\n                file_lines[line_cursor:line_cursor] = (normalized_line, )\n                line_cursor += 1\n            elif line.is_removed:\n                if normalized_line != file_lines[line_cursor]:\n                    raise _PatchValidationError(f\"Line '{file_lines[line_cursor]}' does not match \"\n                                                f\"removal line '{normalized_line}' from patch\")\n                del file_lines[line_cursor]\n            elif line.is_context:\n                if not normalized_line and line_cursor == len(file_lines):\n                    # We reached the end of the file\n                    break\n                if normalized_line != file_lines[line_cursor]:\n                    raise _PatchValidationError(f\"Line '{file_lines[line_cursor]}' does not match \"\n                                                f\"context line '{normalized_line}' from patch\")\n                line_cursor += 1\n            else:\n                assert line.line_type in (LINE_TYPE_EMPTY, LINE_TYPE_NO_NEWLINE)\n\n\ndef _apply_file_unidiff(patched_file, files_under_test):\n    \"\"\"Applies the unidiff.PatchedFile to the source files under testing\"\"\"\n    patched_file_path = Path(patched_file.path)\n    if patched_file.is_added_file:\n        if patched_file_path in files_under_test:\n            assert files_under_test[patched_file_path] is None\n        assert len(patched_file) == 1 # Should be only one hunk\n        assert patched_file[0].removed == 0\n        assert patched_file[0].target_start == 1\n        files_under_test[patched_file_path] = [x.value.rstrip('\\n') for x in patched_file[0]]\n    elif patched_file.is_removed_file:\n        # Remove lines to see if file to be removed matches patch\n        _modify_file_lines(patched_file, files_under_test[patched_file_path])\n        files_under_test[patched_file_path] = None\n    else: # Patching an existing file\n        assert patched_file.is_modified_file\n        _modify_file_lines(patched_file, files_under_test[patched_file_path])\n\n\ndef _dry_check_patched_file(patched_file, orig_file_content):\n    \"\"\"Run \"patch --dry-check\" on a unidiff.PatchedFile for diagnostics\"\"\"\n    with tempfile.TemporaryDirectory() as tmpdirname:\n        tmp_dir = Path(tmpdirname)\n        # Write file to patch\n        patched_file_path = tmp_dir / patched_file.path\n        patched_file_path.parent.mkdir(parents=True, exist_ok=True)\n        patched_file_path.write_text(orig_file_content)\n        # Write patch\n        patch_path = tmp_dir / 'broken_file.patch'\n        patch_path.write_text(str(patched_file))\n        # Dry run\n        _, dry_stdout, _ = dry_run_check(patch_path, tmp_dir)\n        return dry_stdout\n\n\ndef _test_patches(series_iter, patch_cache, files_under_test):\n    \"\"\"\n    Tests the patches specified in the iterable series_iter\n\n    Returns a boolean indicating if any of the patches have failed\n    \"\"\"\n    for patch_path_str in series_iter:\n        for patched_file in patch_cache[patch_path_str]:\n            orig_file_content = None\n            if get_logger().isEnabledFor(logging.DEBUG):\n                orig_file_content = files_under_test.get(Path(patched_file.path))\n                if orig_file_content:\n                    orig_file_content = ' '.join(orig_file_content)\n            try:\n                _apply_file_unidiff(patched_file, files_under_test)\n            except _PatchValidationError as exc:\n                get_logger().warning('Patch failed validation: %s', patch_path_str)\n                get_logger().debug('Specifically, file \"%s\" failed validation: %s',\n                                   patched_file.path, exc)\n                if get_logger().isEnabledFor(logging.DEBUG):\n                    # _PatchValidationError cannot be thrown when a file is added\n                    assert patched_file.is_modified_file or patched_file.is_removed_file\n                    assert orig_file_content is not None\n                    get_logger().debug(\n                        'Output of \"patch --dry-run\" for this patch on this file:\\n%s',\n                        _dry_check_patched_file(patched_file, orig_file_content))\n                return True\n            except: #pylint: disable=bare-except\n                get_logger().warning('Patch failed validation: %s', patch_path_str)\n                get_logger().debug('Specifically, file \"%s\" caused exception while applying:',\n                                   patched_file.path,\n                                   exc_info=True)\n                return True\n    return False\n\n\ndef _load_all_patches(series_iter, patches_dir):\n    \"\"\"\n    Returns a tuple of the following:\n    - boolean indicating success or failure of reading files\n    - dict of relative UNIX path strings to unidiff.PatchSet\n    \"\"\"\n    had_failure = False\n    unidiff_dict = {}\n    for relative_path in series_iter:\n        if relative_path in unidiff_dict:\n            continue\n        unidiff_dict[relative_path] = unidiff.PatchSet.from_filename(str(patches_dir /\n                                                                         relative_path),\n                                                                     encoding=ENCODING)\n        if not (patches_dir / relative_path).read_text(encoding=ENCODING).endswith('\\n'):\n            had_failure = True\n            get_logger().warning('Patch file does not end with newline: %s',\n                                 str(patches_dir / relative_path))\n    return had_failure, unidiff_dict\n\n\ndef _get_required_files(patch_cache):\n    \"\"\"Returns an iterable of pathlib.Path files needed from the source tree for patching\"\"\"\n    new_files = set() # Files introduced by patches\n    file_set = set()\n    for patch_set in patch_cache.values():\n        for patched_file in patch_set:\n            if patched_file.is_added_file:\n                new_files.add(patched_file.path)\n            elif patched_file.path not in new_files:\n                file_set.add(Path(patched_file.path))\n    return file_set\n\n\ndef _get_files_under_test(args, required_files, parser):\n    \"\"\"\n    Helper for main to get files_under_test\n\n    Exits the program if --cache-remote debugging option is used\n    \"\"\"\n    if args.local:\n        files_under_test = _retrieve_local_files(required_files, args.local)\n    else: # --remote and --cache-remote\n        files_under_test = _retrieve_remote_files(required_files)\n        if args.cache_remote:\n            for file_path, file_content in files_under_test.items():\n                if not (args.cache_remote / file_path).parent.exists():\n                    (args.cache_remote / file_path).parent.mkdir(parents=True)\n                with (args.cache_remote / file_path).open('w', encoding=ENCODING) as cache_file:\n                    cache_file.write('\\n'.join(file_content))\n            parser.exit()\n    return files_under_test\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser(description=__doc__)\n    parser.add_argument('-s',\n                        '--series',\n                        type=Path,\n                        metavar='FILE',\n                        default=str(Path('patches', 'series')),\n                        help='The series file listing patches to apply. Default: %(default)s')\n    parser.add_argument('-p',\n                        '--patches',\n                        type=Path,\n                        metavar='DIRECTORY',\n                        default='patches',\n                        help='The patches directory to read from. Default: %(default)s')\n    add_common_params(parser)\n\n    file_source_group = parser.add_mutually_exclusive_group(required=True)\n    file_source_group.add_argument(\n        '-l',\n        '--local',\n        type=Path,\n        metavar='DIRECTORY',\n        help=\n        'Use a local source tree. It must be UNMODIFIED, otherwise the results will not be valid.')\n    file_source_group.add_argument(\n        '-r',\n        '--remote',\n        action='store_true',\n        help=('Download the required source tree files from Google. '\n              'This feature requires the Python module \"requests\". If you do not want to '\n              'install this, consider using --local instead.'))\n    file_source_group.add_argument(\n        '-c',\n        '--cache-remote',\n        type=Path,\n        metavar='DIRECTORY',\n        help='(For debugging) Store the required remote files in an empty local directory')\n    args = parser.parse_args()\n    if args.cache_remote and not args.cache_remote.exists():\n        if args.cache_remote.parent.exists():\n            args.cache_remote.mkdir()\n        else:\n            parser.error(f'Parent of cache path {args.cache_remote} does not exist')\n\n    if not args.series.is_file():\n        parser.error(f'--series path is not a file or not found: {args.series}')\n    if not args.patches.is_dir():\n        parser.error(f'--patches path is not a directory or not found: {args.patches}')\n\n    series_iterable = tuple(parse_series(args.series))\n    had_failure, patch_cache = _load_all_patches(series_iterable, args.patches)\n    required_files = _get_required_files(patch_cache)\n    files_under_test = _get_files_under_test(args, required_files, parser)\n    had_failure |= _test_patches(series_iterable, patch_cache, files_under_test)\n    if had_failure:\n        get_logger().error('***FAILED VALIDATION; SEE ABOVE***')\n        if not args.verbose:\n            get_logger().info('(For more error details, re-run with the \"-v\" flag)')\n        parser.exit(status=1)\n    else:\n        get_logger().info('Passed validation (%d patches total)', len(series_iterable))\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "docs/building.md",
    "content": "# Building ungoogled-chromium\n\nThe recommended way to build ungoogled-chromium is by consulting [the repository for your supported platform (links here)](platforms.md).\n\n* *Linux users*: If your distribution is not listed, you will need to use Portable Linux.\n\nIf you want to add ungoogled-chromium to your existing Chromium build process, see the next section. Additionally, you may reference the repositories for supported platforms for inspiration.\n\n## Integrating ungoogled-chromium into your Chromium build process\n\nTypically, ungoogled-chromium is built from [code in platform-specific repositories](platforms.md). However, ungoogled-chromium can also be included in part or in whole into any custom Chromium build. In this section, **we will assume you already have a process to make your own Chromium builds**.\n\n**NOTE**: You may need additional patches and/or build configuration for [your supported platform](platforms.md) because this repository does not contain all the code necessary for all platforms.\n\nBefore continuing, you may find it helpful to have a look through [the design documentation](design.md).\n\nThe following procedure outline the essential steps to build Chromium will all of ungoogled-chromium's features. **They are not sufficient to build ungoogled-chromium on their own**.\n\n1. Ensure Chromium is downloaded, such as by `depot_tools`. In most of our supported platforms, we instead use a custom tool to do this.\n\n```sh\nmkdir -p build/download_cache\n./utils/downloads.py retrieve -c build/download_cache -i downloads.ini\n./utils/downloads.py unpack -c build/download_cache -i downloads.ini -- build/src\n```\n\n2. Prune binaries\n\n```sh\n./utils/prune_binaries.py build/src pruning.list\n```\n\n3. Apply patches\n\n```sh\n./utils/patches.py apply build/src patches\n```\n\n4. Substitute domains\n\n```sh\n./utils/domain_substitution.py apply -r domain_regex.list -f domain_substitution.list -c build/domsubcache.tar.gz build/src\n```\n\n5. Build GN. If you are using `depot_tools` to checkout Chromium or you already have a GN binary, you should skip this step.\n\n```sh\nmkdir -p build/src/out/Default\ncd build/src\n./tools/gn/bootstrap/bootstrap.py --skip-generate-buildfiles -j4 -o out/Default/\n```\n\n6. Invoke the build:\n\n```\nmkdir -p build/src/out/Default\n# NOTE: flags.gn contains only a subset of what is needed to run the build.\ncp flags.gn build/src/out/Default/args.gn\ncd build/src\n# If you have additional GN flags to add, make sure to add them now.\n./out/Default/gn gen out/Default --fail-on-unused-args\nninja -C out/Default chrome chromedriver chrome_sandbox\n```\n\n## Building FAQ\n\n### My build keeps crashing because I run out of RAM! How can I fix it?\n\nHere are several ways to address this, in decreasing order of preference:\n\n1. Decrease the number of parallel threads to Ninja (the `-j` flag)\n2. Add swap space\n"
  },
  {
    "path": "docs/contributing.md",
    "content": "# Contributing\n\nThis document contains our criteria and guidelines for contributing to ungoogled-chromium.\n\nIf you have **small contributions that don't fit our criteria**, consider adding them to [ungoogled-software/contrib](https://github.com/ungoogled-software/contrib) or [our Wiki](https://github.com/ungoogled-software/ungoogled-chromium-wiki) instead.\n\nIf you are a developer of an **officially-supported platform**, be sure to check out the [Platform Repository Standards and Guidelines](repo_management.md).\n\nList of contents:\n\n* [How to help](#how-to-help)\n* [Submitting changes](#submitting-changes)\n* [Criteria for new features](#criteria-for-new-features)\n\n### How to help\n\nGenerally, ungoogled-chromium needs contributors to help:\n\n* Keep up-to-date with the latest stable Chromium, and any problematic changes in the new version that needs modification.\n* Help with issues marked with the `help wanted` tag (usually either questions for other users, or request for help from other developers)\n* Review Pull Requests from other contributors\n* Implement feature requests (\"enhancements\" in the Issue Tracker), large or small.\n* Implement issues marked with the `backlog` tag (that are closed).\n\t* If it requires new code, please read through the [Submitting changes](#submitting-changes) section below.\n\nIn addition, anyone is free to help others in need of support in the Issue Tracker.\n\nIf there are fixes, tweaks, or additions you want to make, continue onto the following section.\n\n### Submitting changes\n\nPlease submit all changes via Pull Requests.\n\nGuidelines:\n\n* You are welcome to submit minor changes, such as bug fixes, documentation fixes, and tweaks.\n* If your change has an associated issue, please let others know that you are working on it.\n* If you want to submit a new feature, please read through the [Criteria for new features](#criteria-for-new-features) below.\n* When in doubt about the acceptance of a change, you are welcome to ask via an issue first.\n\n### Criteria for new features\n\n1. New features should not detract from the default Chromium experience, unless it falls under the project's main objectives (i.e. removing Google integration and enhancing privacy).\n\n    * For larger features, please propose them via an issue first.\n\n2. New features should live behind a setting that is **off by default**.\n\n    * Settings are usually added via a command-line flag and `chrome://flags` entries. See [the relevant section in docs/developing.md](developing.md#adding-command-line-flags-and-chromeflags-options) for more information.\n    * Unless there are significant benefits, adding the setting to `chrome://settings` is *not recommended* due to the additional maintenance required (caused by the infrastructure that backs preferences).\n\n**NOTE**: In the event that the codebase changes significantly for a non-essential patch (i.e. a patch that does not contribute to the main objectives of ungoogled-chromium), it will be removed until someone updates it.\n"
  },
  {
    "path": "docs/default_settings.md",
    "content": "# Default Settings\n\nVanilla Chromium settings are not often changed by ungoogled-chromium, however there are some exceptions.  \nBelow is a list of the documented changes to the default Chromium settings.\n\nSetting | New State | Location\n-- | -- | --\nAllow sites to check if you have payment methods saved | Disabled | chrome://settings/payments\nAsk where to save each file before downloading | Enabled | chrome://settings/downloads\nAuto sign-in | Disabled | chrome://settings/passwords\nBlock third-party cookies | Enabled | chrome://settings/cookies\nContinue running background apps when Chromium is closed | Disabled | chrome://settings/system\nHyperlink auditing (\\<a ping>) | Disabled | NA\nLink Doctor | Disabled | NA\nOffer to save passwords | Disabled | chrome://settings/passwords\nPayment autofill | Disabled | chrome://settings/payments\nPreload pages | Disabled | chrome://settings/performance\nSearch suggestions | Disabled | chrome://settings/syncSetup\nShow bookmark bar | Enabled | chrome://settings/appearance\nThird-party sign-in | Disabled | `--enable-features=FedCm`\nWebRTC IP handling policy | Disable Non-Proxied UDP | `--webrtc-ip-handling-policy`\n"
  },
  {
    "path": "docs/design.md",
    "content": "# Design\n\nThis document contains a high-level technical description of ungoogled-chromium and its components.\n\n## Overview\n\nungoogled-chromium consists of the following major components:\n\n* [Configuration](#configuration)\n    * [Configuration files](#configuration-files)\n    * [Source file processors](#source-file-processors)\n    * [Patches](#patches)\n* [Packaging](#packaging)\n\nThe following sections describe each component.\n\n## Configuration\n\nConfiguration is a broad term that refers to patches, build flags, and metadata about Chromium source code. It consists of the following components:\n\n* [Configuration files](#configuration-files)\n* [Source file processors](#source-file-processors)\n* [Patches](#patches)\n\nThe following sections describe each component in more depth.\n\n### Configuration Files\n\nConfiguration files (or config files) are files that store build configuration and source code changes for a build.\n\n**IMPORTANT**: For consistency, all config files must be encoded in UTF-8.\n\nList of configuration files:\n\n* `chromium_version.txt` - The Chromium version used by ungoogled-chromium\n* `revision.txt` - The revision of the changes on top of the given Chromium version.\n* `pruning.list` - [See the Source File Processors section](#source-file-processors)\n* `domain_regex.list` - [See the Source File Processors section](#source-file-processors)\n* `domain_substitution.list` - [See the Source File Processors section](#source-file-processors)\n* `downloads.ini` - Archives to download and unpack into the buildspace tree. This includes code not bundled in the Chromium source code archive that is specific to a non-Linux platform. On platforms such as macOS, this also includes a pre-built LLVM toolchain for convenience (which can be removed and built from source if desired).\n* `flags.gn` - GN arguments to set before building.\n\n### Source File Processors\n\nSource file processors are utilities that directly manipulate the Chromium source tree before building. Currently, there are two such utilities: binary pruning, and domain substitution.\n\n**Binary Pruning**: Strips binaries from the source code. This includes pre-built executables, shared libraries, and other forms of machine code. Most are substituted with system or user-provided equivalents, or are built from source; those binaries that cannot be removed do not contain machine code.\n\nThe list of files to remove are determined by the config file `pruning.list`. This config file is generated by `devutils/update_lists.py`.\n\n**Domain Substitution**: Replaces Google and several other web domain names in the Chromium source code with non-existent alternatives ending in `qjz9zk`. These changes are mainly used as a backup measure to detect potentially unpatched requests to Google. Note that domain substitution is a crude process, and *may not be easily undone*.\n\nWith a few patches from ungoogled-chromium, any requests with these domain names sent via `net::URLRequest` in the Chromium code are blocked and notify the user via a info bar.\n\nSimilar to binary pruning, the list of files to modify are listed in `domain_substitution.list`; it is also updated with `devutils/update_lists.py`.\n\nThe regular expressions to use are listed in `domain_regex.list`; the search and replacement expressions are delimited with a pound (`#`) symbol. The restrictions for the entries are as follows:\n* All replacement expressions must end in the TLD `qjz9zk`.\n* The search and replacement expressions must have a one-to-one correspondence: no two search expressions can match the same string, and no two replacement expressions can result in the same string.\n\n### Patches\n\nAll of ungoogled-chromium's patches for the Chromium source code are located in `patches/`. This directory conforms to the default GNU Quilt format. That is:\n\n* All patches must reside inside `patches/`\n* There is a `patches/series` text file that defines the order to apply all the patches. These patches are listed as a relative path from the `patches` directory.\n    * Lines starting with the pound symbol (`#`) are ignored\n    * For lines with patch paths: If there is a space followed by a pound symbol, the text after the patch path will be ignored.\n\nAll patch files in ungoogled-chromium must satisfy these formatting requirements:\n\n* Patch filenames must end with the extension `.patch`\n* The content must be in [unified format](https://en.wikipedia.org/wiki/Diff_utility#Unified_format).\n* All paths in the hunk headers must begin after the first slash (which corresponds to the argument `-p1` for GNU patch).\n* All patches must apply cleanly (i.e. no fuzz).\n* It is recommended that hunk paths have the `a/` and `b/` prefixes, and a context of 3 (like the git default).\n* All patches must be encoded in UTF-8 (i.e. same encoding as config files).\n\nPatches are categorized into two directories directly under `patches/`:\n\n1. **core**: Changes regarding background requests, code specific to Google web services, or code using pre-made binaries. They must be kept up-to-date with all of the changes in Chromium.\n2. **extra**: Changes to features regarding control and transparency. They are not guaranteed to persist across updates to Chromium.\n\nWithin each category, patches are grouped by the following:\n\n* `debian/` - Patches from Debian's Chromium\n    * Patches are not modified unless they conflict with Inox's patches\n    * These patches are not Debian-specific. For those, see the `debian/patches` directory\n* `inox-patchset/` - Contains a modified subset of patches from Inox patchset.\n    * Some patches such as those that change branding are omitted\n    * Patches are not modified unless they do not apply cleanly onto the version of Chromium being built\n    * Patches are from [inox-patchset's GitHub](https://github.com/gcarq/inox-patchset)\n    * [Inox patchset's license](https://github.com/gcarq/inox-patchset/blob/master/LICENSE)\n* `bromite/` - Patches from [Bromite](https://github.com/bromite/bromite)\n* `iridium-browser/` - Contains a modified subset of patches from Iridium Browser.\n    * Some patches such as those that change branding or URLs to point to Iridium's own servers are omitted\n    * Patches are not modified unless they conflict with Debian's or Inox's patches\n    * Patches are from the `patchview` branch of Iridium's Git repository. [Git webview of the patchview branch](https://git.iridiumbrowser.de/cgit.cgi/iridium-browser/?h=patchview)\n* `opensuse/` - Patches from openSUSE's Chromium\n* `ubuntu/` -  Patches from Ubuntu's Chromium\n* `ungoogled-chromium/` - Patches by ungoogled-chromium developers\n\n## Packaging\n\nPackaging is the process of downloading, building, and producing a distributable package of ungoogled-chromium.\n\nPackaging files use the code from this repository to build ungoogled-chromium. Each platform and configuration has an associated packaging repository under the [ungoogled-software](https://github.com/ungoogled-software) organization. For more information about each packaging repository, see the [building documentation](building.md).\n\nPackaging generally consists of the major steps:\n\n1. Download and unpack the source tree\n2. Prune binaries\n3. Apply patches\n4. Substitute domains\n5. Build GN via `tools/gn/bootstrap/bootstrap.py`\n6. Run `gn gen` with the GN flags\n7. Build Chromium via `ninja`\n8. Create package(s) of build output (usually in `out/Default`)\n"
  },
  {
    "path": "docs/developing.md",
    "content": "# Development notes and procedures\n\nThis document contains an assortment of information for those who want to develop ungoogled-chromium.\n\nInformation targeted towards developers *and* other users live in [the Wiki](https://ungoogled-software.github.io/ungoogled-chromium-wiki/).\n\nContents:\n\n* [Branches](#branches)\n* [Adding command-line flags and chrome://flags options](#adding-command-line-flags-and-chromeflags-options)\n* [Workflow of updating to a new Chromium version](#workflow-of-updating-to-a-new-chromium-version)\n\n## Branches\n\nDevelopment is focused on `master`, and any changes in there should not break anything unless platforms break during a Chromium version rebase.\n\nLarger feature changes or hotfixes must be done in a separate branch. Once they are ready, then a Pull Request can be made onto `master` (for contributors with write access, merging directly via a git client is fine). After the branch is merged, it should be removed.\n\n## Adding command-line flags and `chrome://flags` options\n\nSee `docs/how_to_add_your_feature_flag.md` in the Chromium source tree for the steps needed. Note that updating `tools/metrics/histograms/enums.xml` is not required.\n\nFor new flags, first add a constant to `third_party/ungoogled/ungoogled_switches.cc` (by modifying patch `resources/patches/ungoogled-chromium/add-third-party-ungoogled.patch`). Then, use this constant in the steps outlined above.\n\n## Workflow of updating to a new Chromium version\n\nTested on Debian 12 (bookworm). Exact instructions should work on any other Linux or macOS system with the proper dependencies.\n\nTo gain a deeper understanding of this updating process, have a read through [docs/design.md](design.md).\n\n### Dependencies\n\n* [`quilt`](http://savannah.nongnu.org/projects/quilt)\n    * This is available in most (if not all) Linux distributions, and also Homebrew on macOS.\n    * This utility facilitates most of the updating process, so it is important to learn how to use this. The manpage for quilt (as of early 2017) lacks an example of a workflow. There are multiple guides online, but [this guide from Debian](https://wiki.debian.org/UsingQuilt) and [the referenced guide on that page](https://raphaelhertzog.com/2012/08/08/how-to-use-quilt-to-manage-patches-in-debian-packages/) are the ones referenced in developing the current workflow.\n* Python 3.10 or newer\n    * `httplib2` and `six` are also required if you wish to utilize a source clone instead of the source tarball. `pysocks` is required for versions of `httplib2` v0.30.0 or later.\n\n### Downloading the source code\n\n#### Source tarball download (recommended):\n```sh\nmkdir -p build/download_cache\n./utils/downloads.py retrieve -i downloads.ini -c build/download_cache\n./utils/downloads.py unpack -i downloads.ini -c build/download_cache build/src\n```\n\n#### Source clone:\n```sh\n./utils/clone.py -o build/src\n```\n\n### Updating lists\n\nThe utility `devutils/update_lists.py` automates this process. By default, it will update the files in the local repo. Pass in `-h` or `--help` for available options.\n\n```sh\n./devutils/update_lists.py -t build/src\n```\n\nThe resulting source tree in `build/src` *will not* have binaries pruned or domains substituted.\n\n### Updating patches\n\n**IMPORTANT**: Make sure domain substitution has not been applied before updating patches.\n\n1. Run `source devutils/set_quilt_vars.sh` (or `source devutils/set_quilt_vars.fish` if you are using the fish shell)\n    * This will setup quilt to modify patches directly in `patches/`\n2. Go into the source tree: `cd build/src`\n3. Use `quilt` to refresh all patches: `quilt push -a --refresh`\n\t* If an error occurs, go to the next step. Otherwise, skip to Step 5.\n4. Use `quilt` to fix the broken patch:\n    1. Run `quilt push -f`\n    2. Edit the broken files as necessary by adding (`quilt edit ...` or `quilt add ...`) or removing (`quilt remove ...`) files as necessary\n        * When removing large chunks of code, remove each line instead of using language features to hide or remove the code. This makes the patches less susceptible to breakages when using quilt's refresh command (e.g. quilt refresh updates the line numbers based on the patch context, so it's possible for new but desirable code in the middle of the block comment to be excluded.). It also helps with readability when someone wants to see the changes made based on the patch alone.\n    3. Refresh the patch: `quilt refresh`\n    4. Go back to Step 3.\n5. Run `quilt pop -a`\n6. Go back to ungoogled-chromium repo: `cd ../..`\n7. Run `devutils/validate_config.py`. If any warnings are printed, address them; otherwise, continue to Step 8.\n8. Run `devutils/validate_patches.py -l build/src`. If errors occur, go back to Step 3.\n\nThis should leave unstaged changes in the git repository to be reviewed, added, and committed.\n\n### Steps for fixing patches after a failed build attempt\n\nIf domain substitution is not applied, then the steps from the previous section will work for revising patches.\n\nIf domain substitution is applied, then the steps for the initial update will not apply since that would create patches which depend on domain substitution. Here is a method of dealing with this:\n\n1. Revert domain substitution: `./utils/domain_substitution.py revert -c CACHE_PATH_HERE build/src`\n2. Follow the patch updating section above\n3. Reapply domain substitution: `./utils/domain_substitution.py apply -r domain_regex.list -f domain_substitution.list -c CACHE_PATH_HERE build/src`\n4. Reattempt build. Repeat steps as necessary.\n\n### Next steps\n\n* Submit a Pull Request of these changes to the ungoogled-chromium repo.\n* Once the PR is merged, update the repositories of each platform repository that you are maintaining under the `ungoogled-software` organization.\n"
  },
  {
    "path": "docs/flags.md",
    "content": "# List of flags and switches\n\nThis is an exhaustive list of command-line switches and flags introduced by ungoogled-chromium.\nEach switch has a corresponding entry on the `chrome://flags` page which can be filtered by searching for `ungoogled-chromium`.\n\nIf a switch requires a value, you must specify it with an `=` sign; e.g. flag `--foo` with value `bar` should be written as `--foo=bar`.\n\n> **NOTE**: If you add a command-line argument that is also in `chrome://flags`, the flag's state will not be indicated in `chrome://flags`. There is no universal way to ensure command-line flags are taking effect, but you can find if they're being seen by checking `chrome://version`.\n\n- ### Available on all platforms\n\n  <code>Switch&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code> | Description\n  -- | --\n  `--disable-beforeunload` | Disables JavaScript dialog boxes triggered by `beforeunload`\n  `--disable-grease-tls` | Disables GREASE for TLS. Combined with `--http-accept-header` allows browser to look more like a tor-browser. See https://github.com/ungoogled-software/ungoogled-chromium/issues/783 for more details.\n  `--disable-search-engine-collection` | Disable automatic search engine scraping from webpages.\n  `--extension-mime-request-handling` | Change how extension MIME types (CRX and user scripts) are handled. Acceptable values are `download-as-regular-file` or `always-prompt-for-install`. Leave unset to use normal behavior.\n  `--fingerprinting-canvas-image-data-noise` | (Added flag to Bromite feature) Implements fingerprinting deception for Canvas image data retrieved via JS APIs. In the data, at most 10 pixels are slightly modified.\n  `--fingerprinting-canvas-measuretext-noise` | (Added flag to Bromite feature) Scale the output values of Canvas::measureText() with a randomly selected factor in the range -0.0003% to 0.0003%, which are recomputed on every document initialization.\n  `--fingerprinting-client-rects-noise` | (Added flag to Bromite feature) Implements fingerprinting deception of JS APIs `getClientRects()` and `getBoundingClientRect()` by scaling their output values with a random factor in the range -0.0003% to 0.0003%, which are recomputed for every document instantiation.\n  `--force-punycode-hostnames` | Convert all Internationalized Domain Names to punycode (ASCII representation of Unicode). See https://github.com/ungoogled-software/ungoogled-chromium/issues/370 for more details.\n  `--hide-crashed-bubble` | Hides the bubble box with the message \"Restore Pages? Chromium didn't shut down correctly.\" that shows on startup after the browser did not exit cleanly.\n  `--http-accept-header` | Changes the default value of the `Accept` HTTP header sent with HTTP requests. Combined with `--disable-grease-tls` allows browser to look more like a tor-browser. See https://github.com/ungoogled-software/ungoogled-chromium/issues/783 for more details.\n  `--keep-old-history` | Disables deletion of local browser history after 90 days\n  `--max-connections-per-host` | (from Bromite) Configure the maximum allowed connections per host. Valid values are `6` and `15`\n  `--omnibox-autocomplete-filtering` | Restrict omnibox autocomplete results to a combination of search suggestions (if enabled), bookmarks, and internal chrome pages. Accepts `search`, `search-bookmarks`, `search-chrome`, and `search-bookmarks-chrome`.\n  `--popups-to-tabs` | Makes popups open in new tabs.\n\n- ### Available only on desktop\n\n  <code>Switch&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code> | Description\n  -- | --\n  `--bookmark-bar-ntp` | Sets the visibility of the bookmark bar on the New Tab Page. Only takes the value `never`.\n  `--close-confirmation` | Show a warning prompt when closing the browser window. Accepts `last` (prompt when closing the last window with several tabs) and `multiple` (prompt only if more than one window is open). \n  `--close-window-with-last-tab` | Determines whether a window should close once the last tab is closed. Only takes the value `never`.\n  `--custom-ntp` | Allows setting a custom URL for the new tab page. Value can be internal (e.g. `about:blank` or `chrome://new-tab-page`), external (e.g. `example.com`), or local (e.g. `file:///tmp/startpage.html`). This applies for incognito windows as well when not set to a `chrome://` internal page.\n  `--disable-sharing-hub` | Disables the sharing hub button.\n  `--enable-incognito-themes` | Allows themes to change the appearance of Incognito windows.\n  `--hide-extensions-menu` | Hides the extensions container. This includes the puzzle piece icon as well as any pinned extensions.\n  `--hide-fullscreen-exit-ui` | Hides the \"X\" that appears when the mouse cursor is moved towards the top of the window in fullscreen mode. Additionally, this hides the \"Press F11 to exit full screen\" popup.\n  `--hide-tab-close-buttons` | Hides the close buttons on tabs.\n  `--remove-grab-handle` | Removes the reserved empty space in the tabstrip for moving the window.\n  `--remove-tabsearch-button` | Removes the tabsearch button from the tabstrip.\n  `--scroll-tabs` | Determines if scrolling will cause a switch to a neighboring tab if the cursor hovers over the tabs, or the empty space beside the tabs. The flag requires one the values: `always`, `never`, `incognito-and-guest`. When omitted, the default is to use platform-specific behavior, which is currently enabled only on desktop Linux.\n  `--show-avatar-button` | Sets visibility of the avatar button. The flag requires one of the values: `always`, `incognito-and-guest` (only show Incognito or Guest modes), or `never`.\n  `--tab-hover-cards` | Allows removing the tab hover cards or using a tooltip as a replacement. This can be set with the values `none` or `tooltip`.\n\n  - #### Available only on Windows\n\n    <code>Switch&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code> | Description\n    -- | --\n    `--disable-encryption` | Disable encryption of cookies, passwords, and settings which uses a generated machine-specific encryption key. This is used to enable portable user data directories.\n    `--disable-machine-id` | Disables use of a generated machine-specific ID to lock the user data directory to that machine. This is used to enable portable user data directories.\n\n\n## Feature flags\n\nFeature flags are similar to switches with the difference being that they are passed as values for the `--enable-features` switch. Multiple features can be passed at the same time by separating them with a comma, e.g. `--enable-features=flag1,flag2,flag3`.\nThese are also available on the `chrome://flags` page.\n\n- ### Available on all platforms\n\n  Feature | Description\n  -- | --\n  `MinimalReferrers` | Removes all cross-origin referrers and strips same-origin referrers down to the origin. Has lower precedence than `NoCrossOriginReferrers`.\n  `NoCrossOriginReferrers` | Removes all cross-origin referrers. Has lower precedence than `NoReferrers`.\n  `NoReferrers` | Removes all referrers.\n  `ReducedSystemInfo` | Reduces the amount of system information obatainable through headers and javascript, also causes hardwareConcurrency to respond with two cores.\n  `RemoveClientHints` | Removes client hints (information sent to servers about your system, similar to a user agent).\n  `SetIpv6ProbeFalse` | Forces the result of the browser's IPv6 probing (i.e. IPv6 connectivity test) to be unsuccessful. This causes IPv4 addresses to be prioritized over IPv6 addresses. Without this flag, the probing result is set to be successful, which causes IPv6 to be used over IPv4 when possible.\n  `SpoofWebGLInfo` | Return generic values for WebGLDebugRendererInfo to remove a potential data leak while preventing potential website breakage.\n  `IncreaseIncognitoStorageQuota` | Makes Incognito and Guest profiles compute the storage quota with the same algorithm that regular profiles use. This makes it harder for websites to detect Incognito mode, but may allow sites to induce heavy memory pressure.\n\n- ### Available only on desktop\n\n  Feature | Description\n  -- | --\n  `ClearDataOnExit` | Clears all browsing data on exit.\n  `DisableLinkDrag` | Prevents dragging of links and selected text. Allows selecting text from a middle of a link. Also allows starting selection without first clearing the existing one. This behaviour is similar to the one from older Opera. See https://github.com/ungoogled-software/ungoogled-chromium/pull/2080 and https://github.com/ungoogled-software/ungoogled-chromium/discussions/2055 for more information.\n  `DisableQRGenerator` | Disables the QR generator for sharing page links.\n\n\n## Flags for existing switches\n\nChromium contains switches that do no have corresponding entries in `chrome://flags`. For convenience, ungoogled-chromium has created entries for some of the commonly-used switches.\n\n- ### Available on all platforms\n  <code>Switch&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code> | Description\n  -- | --\n  `--disable-top-sites` | Disables the top sites and most visited entries on the new tab page.\n  `--disable-webgl` | Disable all versions of WebGL.\n  `--enable-low-end-device-mode` | Force low-end device mode when set.\n  `--force-dark-mode` | Forces dark mode in UI for platforms that support it.\n  `--no-default-browser-check` | Disables the default browser check.\n  `--no-pings` | Don't send hyperlink auditing pings.\n  `--webrtc-ip-handling-policy` | Restrict which IP addresses and interfaces WebRTC uses.\n- ### Available only on desktop\n  <code>Switch&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code> | Description\n  -- | --\n  `--incognito` | Start in Incognito.\n  `--start-maximized` | Starts the browser maximized, regardless of any previous settings.\n"
  },
  {
    "path": "docs/platforms.md",
    "content": "# Supported Platforms\n\nThis page lists platforms officially supported by ungoogled-chromium, and their associated repositories.\n\n* Android: [ungoogled-chromium-android](https://github.com/ungoogled-software/ungoogled-chromium-android)\n* Arch Linux: [ungoogled-chromium-archlinux](https://github.com/ungoogled-software/ungoogled-chromium-archlinux)\n* Debian, Ubuntu, and derivatives: [ungoogled-chromium-debian](https://github.com/ungoogled-software/ungoogled-chromium-debian)\n* Fedora and CentOS: [ungoogled-chromium-fedora](https://github.com/ungoogled-software/ungoogled-chromium-fedora)\n* Portable Linux (for any Linux distro): [ungoogled-chromium-portablelinux](https://github.com/ungoogled-software/ungoogled-chromium-portablelinux)\n* Windows: [ungoogled-chromium-windows](https://github.com/ungoogled-software/ungoogled-chromium-windows)\n* macOS: [ungoogled-chromium-macos](https://github.com/ungoogled-software/ungoogled-chromium-macos)\n"
  },
  {
    "path": "docs/repo_management.md",
    "content": "# Platform Repository Standards and Guidelines\n\n*This document is new, and its structure and content may change. If you have suggestions, please create an issue!*\n\nungoogled-chromium is comprised of anonymous developers who volunteer their efforts. Some of these developers may choose to provide long-term support for [an officially-supported platform](platforms.md), or bring support to a new platform. For such developers, this document consists of standards and management guidelines for platform repos.\n\nWe will refer to this git repository as \"the main repo\", and refer to repositories that add platform-specific code to build ungoogled-chromium as \"platform repos\". An \"officially-supported platform\" is a platform with a platform repo in [the ungoogled-software organization](https://github.com/ungoogled-software) and noted in [docs/platforms.md](platforms.md).\n\n## Standards\n\nAn officially-supported platform repo:\n\n* Must not modify or remove existing patches, GN flags, domain substitution, or binary pruning in the main repo. Instead, you can add new patches or add more files/rules to domain substitution or binary pruning. (If you think a change is needed in the main repo, please make an issue!)\n* Must have a tagging/versioning scheme that includes the ungoogled-chromium version.\n* Must not require an Internet connection during compilation (before compilation is OK).\n* Should allow the user to download all build requirements before building.\n* Must not require external services to build, aside from repos in the ungoogled-software organization and repos provided by or used by Chromium.\n* Should have a reproducible build for all versions (currently, there is no formal process to enforce/verify reproducibility of binaries)\n\nEach deviation must be clearly noted in the platform repo's documentation (such as the repo's README), and have an associated issue in the platform repo. \n\n## Teams in the ungoogled-software organization\n\nEach officially-supported platform has one or more teams in the ungoogled-software organization. These teams provide additional means for collaborating with other developers, such as issue triaging and private discussions (see section \"How to communicate\" below).\n\nIf you are a regular contributor and would like to provide long-term support for a platform, you can request to be included in the ungoogled-software organization team for your platform. Since the number of developers is low, there is no formal process to do this; just ask in an issue.\n\n## How to communicate\n\nIn the interest of transparency, it is recommended to discuss work in public spaces like issues or PRs. If a discussion should not involve outsiders, you can lock the issue or PR to collaborators only.\n\nYou must use team discussions if you are discussing or sharing information that can affect the security of the repository. Otherwise, you may use team discussions at your discretion.\n\n## Issues\n\nEach platform repo should have a team in ungoogled-software with the Triage permission level. All members should feel free to manage issues.\n\nTODO: More details?\n\n## Pull Requests\n\nTODO\n\n## Repository Settings and Shared Resources\n\nShared resources includes:\n\n* CI services like CirrusCI, GitHub Actions, etc.\n* Build services like OpenSUSE Build Service (OBS)\n\nThese need to be handled with care, as they can cause a wide variety of issues from security and privacy leaks all the way to data loss.\n\nThere are several ways to handle shared resources:\n\n* Assign one person to manage a certain set of settings (i.e. grant them \"ownership\" of those settings). If you want to change a setting, you should request a change in a team discussion.\n* TODO: More ways to manage settings?\n"
  },
  {
    "path": "domain_regex.list",
    "content": "fonts(\\\\*?)\\.googleapis(\\\\*?)\\.com#f0ntz\\g<1>.9oo91e8p1\\g<2>.qjz9zk\ngoogle([A-Za-z\\-]*?\\\\*?)\\.com(?!mon)#9oo91e\\g<1>.qjz9zk\ngstatic([A-Za-z\\-]*?\\\\*?)\\.com#95tat1c\\g<1>.qjz9zk\nchrome([A-Za-z\\-]*?\\\\*?)\\.com(?!ponent)#ch40me\\g<1>.qjz9zk\nchromium([A-Za-z\\-]*?\\\\*?)\\.org#ch40m1um\\g<1>.qjz9zk\nmozilla([A-Za-z\\-]*?\\\\*?)\\.org#m0z111a\\g<1>.qjz9zk\nfacebook([A-Za-z\\-]*?\\\\*?)\\.com#f8c3b00k\\g<1>.qjz9zk\nappspot([A-Za-z\\-]*?\\\\*?)\\.com#8pp2p8t\\g<1>.qjz9zk\nyoutube([A-Za-z\\-]*?\\\\*?)\\.com#y0u1ub3\\g<1>.qjz9zk\nytimg([A-Za-z\\-]*?\\\\*?)\\.com#yt1mg\\g<1>.qjz9zk\ngmail([A-Za-z\\-]*?\\\\*?)\\.com#9ma1l\\g<1>.qjz9zk\ndoubleclick([A-Za-z\\-]*?\\\\*?)\\.net#60u613cl1c4\\g<1>.n3t.qjz9zk\ndoubleclick([A-Za-z\\-]*?\\\\*?)\\.com#60u613cl1c4\\g<1>.c0m.qjz9zk\ngooglezip(\\\\*?)\\.net#9oo91e21p\\g<1>.qjz9zk\nbeacons([1-9]?\\\\*?)\\.gvt([1-9]?\\\\*?)\\.com#b3ac0n2\\g<1>.9vt\\g<2>.qjz9zk\nggpht(\\\\*?)\\.com#99pht\\g<1>.qjz9zk\nmicrosoft(\\\\*?)\\.com#m1cr050ft\\g<1>.qjz9zk\n1e100(\\\\*?)\\.net#l3lOO\\g<1>.qjz9zk\n(?<!http://schemas.)android(\\\\*?)\\.com#8n6r01d\\g<1>.qjz9zk\ngoo\\.gl(e?)#goo.gl\\g<1>.qjz9zk\nprivacysandbox([A-Za-z\\-]*?\\\\*?)\\.com#pr1v4cy54ndb0x\\g<1>.qjz9zk\n"
  },
  {
    "path": "domain_substitution.list",
    "content": ".gemini/commands/PRESUBMIT.py\nBUILD.gn\nPRESUBMIT.py\nPRESUBMIT_test.py\nagents/PRESUBMIT.py\nagents/extensions/PRESUBMIT.py\nagents/extensions/perf/gemini-extension.json\nagents/prompts/PRESUBMIT.py\nagents/testing/PRESUBMIT.py\nagents/testing/skia_perf.py\nagents/testing/skia_perf_unittest.py\nash/accelerators/accelerator_notifications.cc\nash/accelerators/ash_accelerator_configuration_unittest.cc\nash/ambient/ambient_controller.cc\nash/ambient/ambient_controller_unittest.cc\nash/ambient/backdrop/ambient_backend_controller_impl.cc\nash/ambient/managed/screensaver_image_downloader.cc\nash/ambient/metrics/ambient_metrics.cc\nash/api/tasks/fake_tasks_client.cc\nash/api/tasks/tasks_types.h\nash/app_list/PRESUBMIT.py\nash/app_list/app_list_controller_impl_unittest.cc\nash/app_list/app_list_feature_usage_metrics_unittest.cc\nash/app_list/views/app_list_nudge_controller_unittest.cc\nash/app_list/views/app_list_view_pixeltest.cc\nash/ash_strings.grd\nash/auth/views/auth_header_view_pixeltest.cc\nash/birch/birch_item.cc\nash/birch/birch_item_unittest.cc\nash/birch/birch_model_unittest.cc\nash/capture_mode/capture_mode_camera_unittest.cc\nash/capture_mode/capture_mode_controller.cc\nash/capture_mode/sunfish_unittest.cc\nash/capture_mode/test_capture_mode_delegate.cc\nash/child_accounts/parent_access_controller_impl_unittest.cc\nash/clipboard/clipboard_history_controller_unittest.cc\nash/clipboard/clipboard_history_menu_model_adapter_unittest.cc\nash/constants/ash_features.cc\nash/constants/ash_switches.cc\nash/constants/url_constants.cc\nash/constants/url_constants.h\nash/constants/web_app_id_constants.h\nash/controls/contextual_nudge.cc\nash/fast_ink/laser/laser_pointer_view.cc\nash/game_dashboard/game_dashboard_main_menu_view.cc\nash/glanceables/classroom/fake_glanceables_classroom_client.cc\nash/glanceables/classroom/glanceables_classroom_item_view_unittest.cc\nash/glanceables/classroom/glanceables_classroom_student_view.cc\nash/glanceables/classroom/glanceables_classroom_student_view_unittest.cc\nash/glanceables/classroom/glanceables_classroom_types.h\nash/glanceables/glanceables_pixeltest.cc\nash/glanceables/glanceables_unittest.cc\nash/glanceables/tasks/glanceables_task_view.cc\nash/glanceables/tasks/glanceables_tasks_view.cc\nash/glanceables/tasks/glanceables_tasks_view_unittest.cc\nash/glanceables/tasks/test/glanceables_tasks_test_util.cc\nash/login/ui/auth_icon_view.cc\nash/login/ui/login_remove_account_dialog_unittest.cc\nash/metrics/demo_session_metrics_recorder_unittest.cc\nash/projector/projector_metadata_model.cc\nash/public/cpp/system_notification_builder_unittest.cc\nash/quick_insert/model/quick_insert_link_suggester.cc\nash/quick_insert/model/quick_insert_link_suggester_unittest.cc\nash/quick_insert/quick_insert_asset_fetcher_impl.cc\nash/quick_insert/quick_insert_controller.cc\nash/quick_insert/quick_insert_controller_unittest.cc\nash/quick_insert/quick_insert_insert_media.cc\nash/quick_insert/search/quick_insert_search_aggregator_unittest.cc\nash/quick_insert/search/quick_insert_search_controller.cc\nash/quick_insert/search/quick_insert_search_controller_unittest.cc\nash/quick_insert/search/quick_insert_search_request.cc\nash/quick_insert/search/quick_insert_search_request_unittest.cc\nash/quick_pair/companion_app/companion_app_broker_impl_unittest.cc\nash/quick_pair/fast_pair_handshake/fast_pair_data_encryptor.h\nash/quick_pair/fast_pair_handshake/fast_pair_data_encryptor_impl_unittest.cc\nash/quick_pair/fast_pair_handshake/fast_pair_encryption.h\nash/quick_pair/fast_pair_handshake/fast_pair_encryption_unittest.cc\nash/quick_pair/fast_pair_handshake/fast_pair_gatt_service_client_impl.cc\nash/quick_pair/fast_pair_handshake/fast_pair_handshake.h\nash/quick_pair/keyed_service/quick_pair_mediator.cc\nash/quick_pair/message_stream/message_stream.h\nash/quick_pair/pairing/retroactive_pairing_detector_impl.cc\nash/quick_pair/repository/fake_device_metadata_http_fetcher.cc\nash/quick_pair/repository/fast_pair/device_metadata_fetcher.cc\nash/quick_pair/repository/fast_pair/device_metadata_fetcher_unittest.cc\nash/quick_pair/repository/fast_pair/footprints_fetcher_impl.cc\nash/quick_pair/scanning/fast_pair/fast_pair_discoverable_scanner.h\nash/quick_pair/scanning/fast_pair/fast_pair_not_discoverable_scanner.h\nash/quick_pair/scanning/fast_pair/fast_pair_not_discoverable_scanner_impl.h\nash/quick_pair/ui/fast_pair/fast_pair_notification_controller_unittest.cc\nash/quick_pair/ui/fast_pair/fast_pair_presenter_impl.cc\nash/resources/PRESUBMIT.py\nash/scanner/scanner_action_handler.cc\nash/scanner/scanner_action_handler_unittest.cc\nash/scanner/scanner_controller_unittest.cc\nash/session/fullscreen_controller_unittest.cc\nash/shelf/home_to_overview_nudge_controller_unittest.cc\nash/shelf/launcher_nudge_controller_unittest.cc\nash/shelf/scrollable_shelf_view_pixeltest.cc\nash/shelf/shelf_controller_unittest.cc\nash/shelf/shelf_layout_manager_unittest.cc\nash/style/color_palette_controller_unittest.cc\nash/system/audio/audio_effects_controller_unittest.cc\nash/system/camera/camera_effects_controller_unittest.cc\nash/system/diagnostics/diagnostics_log_controller_unittest.cc\nash/system/eche/eche_tray.cc\nash/system/eche/eche_tray_unittest.cc\nash/system/focus_mode/focus_mode_controller.cc\nash/system/focus_mode/focus_mode_countdown_view_unittest.cc\nash/system/focus_mode/focus_mode_feature_pod_controller_unittest.cc\nash/system/focus_mode/focus_mode_util.cc\nash/system/focus_mode/focus_mode_util_unittest.cc\nash/system/focus_mode/sounds/focus_mode_sounds_controller.cc\nash/system/focus_mode/sounds/soundscape/soundscapes_downloader.cc\nash/system/focus_mode/sounds/youtube_music/youtube_music_client.cc\nash/system/focus_mode/sounds/youtube_music/youtube_music_types.h\nash/system/human_presence/snooping_protection_controller_unittest.cc\nash/system/input_device_settings/device_image_downloader.cc\nash/system/input_device_settings/device_image_downloader_unittest.cc\nash/system/input_device_settings/input_device_settings_metrics_manager_unittest.cc\nash/system/input_device_settings/input_device_settings_notification_controller.cc\nash/system/input_device_settings/input_device_settings_notification_controller_unittest.cc\nash/system/mahi/mahi_content_source_button_unittest.cc\nash/system/mahi/mahi_panel_view_unittest.cc\nash/system/notification_center/message_center_test_util.cc\nash/system/notification_center/notification_grouping_controller_unittest.cc\nash/system/notification_center/views/ash_notification_view_unittest.cc\nash/system/pcie_peripheral/pcie_peripheral_notification_controller.cc\nash/system/pcie_peripheral/pcie_peripheral_notification_controller_unittest.cc\nash/system/phonehub/phone_hub_tray_unittest.cc\nash/system/phonehub/phone_hub_ui_controller_unittest.cc\nash/system/power/power_event_observer_unittest.cc\nash/system/privacy_hub/privacy_hub_notification_controller.cc\nash/system/status_area_widget_unittest.cc\nash/system/time/calendar_event_fetch_unittest.cc\nash/system/time/calendar_event_list_item_view_unittest.cc\nash/system/time/calendar_list_model_unittest.cc\nash/system/time/calendar_up_next_pixeltest.cc\nash/system/time/calendar_up_next_view_unittest.cc\nash/system/time/calendar_view_pixeltest.cc\nash/system/unified/date_tray_unittest.cc\nash/system/unified/notification_icons_controller_unittest.cc\nash/system/unified/power_button_unittest.cc\nash/system/unified/quick_settings_footer_pixeltest.cc\nash/system/unified/quick_settings_header_unittest.cc\nash/system/unified/user_chooser_detailed_view_controller_unittest.cc\nash/system/usb_peripheral/usb_peripheral_notification_controller.cc\nash/system/video_conference/bubble/bubble_view_pixeltest.cc\nash/system/video_conference/bubble/return_to_app_panel_unittest.cc\nash/system/video_conference/fake_video_conference_tray_controller.cc\nash/system/video_conference/video_conference_tray_unittest.cc\nash/wallpaper/test_wallpaper_controller_client.cc\nash/wallpaper/wallpaper_image_downloader.cc\nash/webui/boca_ui/boca_app_page_handler_unittest.cc\nash/webui/boca_ui/provider/classroom_page_handler_impl.cc\nash/webui/boca_ui/webview_auth_handler_unittest.cc\nash/webui/camera_app_ui/camera_app_untrusted_ui.cc\nash/webui/camera_app_ui/resources/js/externs/types.d.ts\nash/webui/camera_app_ui/resources/js/geometry.ts\nash/webui/camera_app_ui/resources/js/i18n_string.ts\nash/webui/camera_app_ui/resources/js/metrics.ts\nash/webui/camera_app_ui/resources/js/untrusted_ga_helper.ts\nash/webui/camera_app_ui/resources/js/views/camera_intent.ts\nash/webui/camera_app_ui/resources/js/views/document_fix_mode.ts\nash/webui/camera_app_ui/resources/js/views/settings/primary.ts\nash/webui/camera_app_ui/resources/strings/camera_strings.grd\nash/webui/camera_app_ui/resources/utils/cca/commands/check_color_tokens.py\nash/webui/camera_app_ui/resources/utils/cca/commands/upload.py\nash/webui/common/resources/PRESUBMIT.py\nash/webui/common/resources/cr_picture/png.js\nash/webui/common/resources/keyboard_layouts.js\nash/webui/common/resources/quick_unlock/pin_keyboard_icons.html\nash/webui/common/resources/sea_pen/constants.ts\nash/webui/common/resources/sea_pen/constants_generated.ts\nash/webui/common/resources/sea_pen/surface_effects/sparkle.ts\nash/webui/diagnostics_ui/backend/input/input_data_provider_keyboard_unittest.cc\nash/webui/diagnostics_ui/diagnostics_ui.cc\nash/webui/diagnostics_ui/resources/PRESUBMIT.py\nash/webui/diagnostics_ui/resources/network_card.ts\nash/webui/diagnostics_ui/resources/routine_section.ts\nash/webui/diagnostics_ui/resources/touchpad_tester.ts\nash/webui/eche_app_ui/eche_alert_generator.cc\nash/webui/eche_app_ui/eche_tray_stream_status_observer_unittest.cc\nash/webui/firmware_update_ui/resources/PRESUBMIT.py\nash/webui/graduation/graduation_ui_handler_unittest.cc\nash/webui/graduation/resources/js/graduation_takeout_ui.ts\nash/webui/graduation/url_constants.cc\nash/webui/graduation/webview_auth_handler_unittest.cc\nash/webui/help_app_ui/help_app_kids_magazine_untrusted_ui.cc\nash/webui/help_app_ui/resources/js/help_app.d.ts\nash/webui/media_app_ui/media_app_guest_ui.cc\nash/webui/media_app_ui/media_app_page_handler.cc\nash/webui/media_app_ui/resources/js/launch.ts\nash/webui/media_app_ui/resources/js/media_app.d.ts\nash/webui/os_feedback_ui/backend/feedback_service_provider_unittest.cc\nash/webui/os_feedback_ui/backend/help_content_provider.cc\nash/webui/os_feedback_ui/backend/help_content_provider_unittest.cc\nash/webui/os_feedback_ui/resources/confirmation_page.ts\nash/webui/os_feedback_ui/resources/fake_data.ts\nash/webui/os_feedback_ui/resources/feedback_constants.ts\nash/webui/os_feedback_ui/resources/search_page.ts\nash/webui/personalization_app/personalization_app_ui.cc\nash/webui/personalization_app/personalization_app_url_constants.cc\nash/webui/personalization_app/resources/PRESUBMIT.py\nash/webui/personalization_app/resources/js/ambient/ambient_preview_large_element.html\nash/webui/personalization_app/resources/js/wallpaper/google_photos_zero_state_element.ts\nash/webui/print_management/resources/PRESUBMIT.py\nash/webui/projector_app/projector_xhr_sender.cc\nash/webui/projector_app/projector_xhr_sender.h\nash/webui/projector_app/test/mock_app_client.cc\nash/webui/projector_app/test/projector_oauth_token_fetcher_unittest.cc\nash/webui/projector_app/test/projector_xhr_sender_unittest.cc\nash/webui/projector_app/test/untrusted_projector_page_handler_impl_unittest.cc\nash/webui/projector_app/untrusted_projector_ui.cc\nash/webui/recorder_app_ui/resources/components/unescapable-dialog.ts\nash/webui/recorder_app_ui/resources/core/externs.d.ts\nash/webui/recorder_app_ui/resources/core/platform_handler.ts\nash/webui/recorder_app_ui/resources/core/recording_session.ts\nash/webui/recorder_app_ui/resources/core/url_constants.ts\nash/webui/recorder_app_ui/resources/pages/record-page.ts\nash/webui/recorder_app_ui/resources/platforms/dev/handler.ts\nash/webui/recorder_app_ui/resources/static/audio_worklet.js\nash/webui/recorder_app_ui/resources/static/style.css\nash/webui/scanning/resources/PRESUBMIT.py\nash/webui/scanning/resources/scanning_app.html\nash/webui/scanning/resources/scanning_app.ts\nash/webui/shimless_rma/resources/onboarding_enter_rsu_wp_disable_code_page.ts\nash/webui/shortcut_customization_ui/resources/PRESUBMIT.py\nash/webui/shortcut_customization_ui/url_constants.cc\nash/webui/system_apps/public/system_web_app_type.h\nash/wm/coral/coral_controller_unittest.cc\nash/wm/desks/templates/admin_template_unittest.cc\nash/wm/desks/templates/saved_desk_unittest.cc\nash/wm/overview/birch/birch_bar_unittest.cc\nash/wm/overview/birch/birch_chip_context_menu_model.cc\nash/wm/screen_pinning_controller.h\nash/wm/window_restore/informed_restore_controller.cc\nbase/BUILD.gn\nbase/PRESUBMIT.py\nbase/allocator/partition_alloc_support.cc\nbase/allocator/partition_allocator/PRESUBMIT.py\nbase/allocator/partition_allocator/partition_alloc.gni\nbase/allocator/partition_allocator/src/partition_alloc/BUILD.gn\nbase/allocator/partition_allocator/src/partition_alloc/address_space_randomization.h\nbase/allocator/partition_allocator/src/partition_alloc/bucket_lookup.h\nbase/allocator/partition_allocator/src/partition_alloc/build_config.h\nbase/allocator/partition_allocator/src/partition_alloc/in_slot_metadata.h\nbase/allocator/partition_allocator/src/partition_alloc/oom.cc\nbase/allocator/partition_allocator/src/partition_alloc/oom.h\nbase/allocator/partition_allocator/src/partition_alloc/page_allocator.h\nbase/allocator/partition_allocator/src/partition_alloc/page_allocator_constants.h\nbase/allocator/partition_allocator/src/partition_alloc/page_allocator_internals_win.h\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/compiler_specific.h\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/debug/stack_trace.cc\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/logging.h\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/memory/scoped_refptr.h\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/rand_util_posix.cc\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/rand_util_win.cc\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/threading/platform_thread_win_for_testing.cc\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/time/time.h\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/time/time_win.cc\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/win/windows_handle_util.h\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_config.h\nbase/allocator/partition_allocator/src/partition_alloc/partition_alloc_unittest.cc\nbase/allocator/partition_allocator/src/partition_alloc/partition_tls.h\nbase/allocator/partition_allocator/src/partition_alloc/pointers/raw_ptr.h\nbase/allocator/partition_allocator/src/partition_alloc/shim/allocator_shim_default_dispatch_to_partition_alloc.cc\nbase/allocator/partition_allocator/src/partition_alloc/stack/asm/x64/push_registers_asm.cc\nbase/allocator/partition_allocator/src/partition_alloc/stack/stack.cc\nbase/allocator/partition_allocator/src/partition_alloc/tagging.h\nbase/allocator/partition_allocator/src/partition_alloc/use_death_tests.h\nbase/android/jni_android.cc\nbase/android/jni_string.cc\nbase/android/linker/ashmem.cc\nbase/android/meminfo_dump_provider.cc\nbase/android/requires_api.h\nbase/android/resource_exclusions.gni\nbase/android/virtual_document_path.h\nbase/apple/foundation_util_unittest.mm\nbase/apple/owned_objc.h\nbase/apple/owned_objc_types.h\nbase/barrier_callback.h\nbase/base_paths_win.cc\nbase/base_switches.cc\nbase/command_line.cc\nbase/command_line.h\nbase/compiler_specific.h\nbase/containers/auto_spanification_helper.h\nbase/containers/checked_iterators_unittest.cc\nbase/debug/debugger_posix.cc\nbase/debug/stack_trace.cc\nbase/debug/stack_trace_fuchsia.cc\nbase/debug/stack_trace_posix.cc\nbase/debug/stack_trace_win.cc\nbase/file_version_info.h\nbase/files/file_enumerator_posix.cc\nbase/files/file_path.cc\nbase/files/file_path_watcher_unittest.cc\nbase/files/file_path_watcher_win.cc\nbase/files/file_unittest.cc\nbase/files/file_util_posix.cc\nbase/files/file_util_unittest.cc\nbase/files/file_util_win.cc\nbase/files/file_win.cc\nbase/functional/bind_internal.h\nbase/functional/callback.h\nbase/hash/hash.cc\nbase/i18n/break_iterator_unittest.cc\nbase/i18n/file_util_icu.cc\nbase/i18n/rtl_unittest.cc\nbase/i18n/timezone_unittest.cc\nbase/ios/device_util.mm\nbase/lazy_instance_helpers.h\nbase/logging.cc\nbase/logging.h\nbase/mac/close_nocancel.cc\nbase/memory/aligned_memory.cc\nbase/memory/discardable_shared_memory.cc\nbase/memory/platform_shared_memory_mapper_android.cc\nbase/memory/raw_ptr_asan_service.cc\nbase/memory/scoped_refptr.h\nbase/memory/weak_ptr.h\nbase/message_loop/message_pump_android.h\nbase/message_loop/message_pump_win.cc\nbase/metrics/field_trial_list_including_low_anonymity.h\nbase/metrics/histogram_functions.h\nbase/metrics/histogram_functions_internal_overloads.h\nbase/metrics/histogram_macros.h\nbase/metrics/statistics_recorder.cc\nbase/metrics/user_metrics.h\nbase/observer_list.h\nbase/power_monitor/battery_level_provider_win.cc\nbase/power_monitor/cpu_frequency_utils.cc\nbase/power_monitor/energy_monitor_android.h\nbase/power_monitor/power_monitor_device_source_android.cc\nbase/power_monitor/speed_limit_observer_win.cc\nbase/process/launch.h\nbase/process/launch_mac.cc\nbase/process/launch_posix.cc\nbase/process/process_handle_win.cc\nbase/process/process_info.h\nbase/process/process_metrics.h\nbase/profiler/chrome_unwind_info_android_32.h\nbase/profiler/libunwindstack_unwinder_android.cc\nbase/profiler/libunwindstack_unwinder_android_unittest.cc\nbase/profiler/metadata_recorder.h\nbase/rand_util_win.cc\nbase/strings/pattern_unittest.cc\nbase/strings/string_number_conversions_unittest.cc\nbase/synchronization/lock_impl_posix.cc\nbase/system/sys_info.h\nbase/task/sequence_manager/sequence_manager_impl.cc\nbase/task/sequenced_task_runner.h\nbase/task/single_thread_task_executor_unittest.cc\nbase/task/single_thread_task_runner.h\nbase/task/task_traits.h\nbase/task/thread_type.h\nbase/test/file_path_reparse_point_win.cc\nbase/test/gtest_links_unittest.cc\nbase/test/gtest_xml_unittest_result_printer_unittest.cc\nbase/test/launcher/test_launcher.cc\nbase/test/launcher/test_results_tracker_unittest.cc\nbase/test/metrics/action_variants_reader.h\nbase/test/metrics/action_variants_reader_unittest.cc\nbase/test/sequenced_task_runner_test_template.h\nbase/test/task_environment_unittest.cc\nbase/test/test_file_util.h\nbase/test/test_file_util_win.cc\nbase/test/test_suite.cc\nbase/third_party/cityhash/city.h\nbase/third_party/nspr/prtime.cc\nbase/third_party/nspr/prtime.h\nbase/third_party/symbolize/symbolize.cc\nbase/threading/platform_thread_android.cc\nbase/threading/platform_thread_unittest.cc\nbase/threading/platform_thread_win.cc\nbase/threading/sequence_local_storage_slot_unittest.cc\nbase/time/time_delta_from_string.cc\nbase/time/time_delta_from_string_unittest.cc\nbase/time/time_win.cc\nbase/trace_event/etw_interceptor_win.cc\nbase/trace_event/malloc_dump_provider.cc\nbase/trace_event/process_memory_dump.h\nbase/trace_event/trace_logging_minimal_win.h\nbase/tracing/stdlib/chrome/page_loads.sql\nbase/tracing/stdlib/chrome/scroll_jank_v4.sql\nbase/tracing/test/test_data.py\nbase/values_unittest.cc\nbase/win/delayload_helpers.h\nbase/win/elevation_util.cc\nbase/win/event_trace_consumer.h\nbase/win/object_watcher.cc\nbase/win/pdh_shim.h\nbase/win/pe_image.h\nbase/win/registry.cc\nbase/win/registry.h\nbase/win/registry_unittest.cc\nbase/win/scoped_com_initializer.cc\nbase/win/scoped_pdh_query.h\nbase/win/scoped_variant.cc\nbase/win/shortcut.cc\nbase/win/win_util.cc\nbase/win/win_util.h\nbase/win/wincrypt_shim.h\nbase/win/windows_handle_util.h\nbase/win/windows_version.h\nbase/win/windows_version_unittest.cc\nbase/win/wmi.cc\nbase/win/wmi.h\nbuild/3pp_common/common.py\nbuild/3pp_common/maven.py\nbuild/BUILD.gn\nbuild/android/BUILD.gn\nbuild/android/PRESUBMIT.py\nbuild/android/apk_operations.py\nbuild/android/dump_apk_resource_strings.py\nbuild/android/fast_local_dev_server.py\nbuild/android/generate_wrap_sh.py\nbuild/android/gradle/generate_gradle.py\nbuild/android/gyp/assert_static_initializers.py\nbuild/android/gyp/bundletool.py\nbuild/android/gyp/create_app_bundle.py\nbuild/android/gyp/create_java_binary_script.py\nbuild/android/gyp/dex.py\nbuild/android/gyp/errorprone.py\nbuild/android/gyp/lint.py\nbuild/android/gyp/merge_manifest.py\nbuild/android/gyp/util/build_utils.py\nbuild/android/gyp/util/diff_utils.py\nbuild/android/gyp/util/protoresources.py\nbuild/android/gyp/util/resources_parser.py\nbuild/android/gyp/write_build_config.py\nbuild/android/incremental_install/generate_android_manifest.py\nbuild/android/method_count.py\nbuild/android/pylib/constants/__init__.py\nbuild/android/pylib/device_settings.py\nbuild/android/pylib/dex/dex_parser.py\nbuild/android/pylib/instrumentation/instrumentation_parser.py\nbuild/android/pylib/instrumentation/instrumentation_test_instance.py\nbuild/android/pylib/instrumentation/render_test.html.jinja\nbuild/android/pylib/local/device/local_device_environment.py\nbuild/android/pylib/local/device/local_device_gtest_run.py\nbuild/android/pylib/local/device/local_device_monkey_test_run.py\nbuild/android/pylib/local/emulator/avd.py\nbuild/android/pylib/results/flakiness_dashboard/json_results_generator.py\nbuild/android/pylib/results/presentation/test_results_presentation.py\nbuild/android/pylib/utils/maven_downloader.py\nbuild/android/pylib/utils/simpleperf.py\nbuild/android/resource_sizes.py\nbuild/android/test_runner.py\nbuild/android/test_wrapper/logdog_wrapper.py\nbuild/apple/tweak_info_plist.py\nbuild/autoroll/fetch_util.py\nbuild/bench/compare_autoninja.py\nbuild/build_config.h\nbuild/chromeos/PRESUBMIT.py\nbuild/chromeos/test_runner.py\nbuild/config/BUILDCONFIG.gn\nbuild/config/android/BUILD.gn\nbuild/config/android/config.gni\nbuild/config/android/internal_rules.gni\nbuild/config/android/rules.gni\nbuild/config/arm.gni\nbuild/config/c++/c++.gni\nbuild/config/c++/modules.gni\nbuild/config/chrome_build.gni\nbuild/config/chromeos/args.gni\nbuild/config/chromeos/rules.gni\nbuild/config/compiler/BUILD.gn\nbuild/config/compiler/compiler.gni\nbuild/config/cronet/config.gni\nbuild/config/freetype/freetype.gni\nbuild/config/fuchsia/BUILD.gn\nbuild/config/linux/pkg_config.gni\nbuild/config/locales.gni\nbuild/config/ozone.gni\nbuild/config/sanitizers/sanitizers.gni\nbuild/config/siso/configure_siso.py\nbuild/config/win/BUILD.gn\nbuild/config/win/control_flow_guard.gni\nbuild/fuchsia/PRESUBMIT.py\nbuild/fuchsia/binary_size_differ.py\nbuild/fuchsia/binary_sizes.py\nbuild/fuchsia/gen_build_defs.py\nbuild/fuchsia/get_auth_token.py\nbuild/fuchsia/test/PRESUBMIT.py\nbuild/gn_ast/gn_ast.py\nbuild/gn_ast/json_gn_editor.py\nbuild/install-build-deps.py\nbuild/ios/presubmit_support.py\nbuild/linux/install-chromeos-fonts.py\nbuild/linux/unbundle/remove_bundled_libraries.py\nbuild/mac_toolchain.py\nbuild/mcp_servers/PRESUBMIT.py\nbuild/nocompile.gni\nbuild/rust/gni_impl/rustc_wrapper.py\nbuild/rust/std/rules/BUILD.gn\nbuild/sanitizers/lsan_suppressions.cc\nbuild/sanitizers/tsan_suppressions.cc\nbuild/skia_gold_common/PRESUBMIT.py\nbuild/toolchain/check_rewrapper_cfg.py\nbuild/toolchain/cros_toolchain.gni\nbuild/toolchain/gcc_toolchain.gni\nbuild/toolchain/kythe.gni\nbuild/toolchain/win/midl.py\nbuild/toolchain/win/rc/rc.py\nbuild/util/lib/common/google_storage_helper.py\nbuild/util/lib/common/google_storage_helper_test.py\nbuild/util/lib/proto/PRESUBMIT.py\nbuild/util/lib/results/result_sink.py\nbuild/vs_toolchain.py\nbuild/whitespace_file.txt\nbuildtools/README.txt\nbuildtools/clang_format/README.txt\nbuildtools/reclient_cfgs/configure_reclient_cfgs.py\ncc/PRESUBMIT.py\ncc/input/browser_controls_offset_manager.cc\ncc/input/scroll_state.h\ncc/input/scrollbar_controller.h\ncc/metrics/average_lag_tracker.h\ncc/metrics/scroll_jank_v4_decider.cc\ncc/metrics/scroll_jank_v4_decider.h\ncc/metrics/scroll_jank_v4_decision_queue.h\ncc/metrics/scroll_jank_v4_processor.h\ncc/metrics/scroll_jank_v4_result.h\ncc/paint/paint_image.h\ncc/scheduler/scheduler_state_machine.cc\ncc/tiles/gpu_image_decode_cache.h\ncc/trees/layer_tree_host_impl.cc\ncc/trees/layer_tree_host_unittest_animation.cc\ncc/trees/proxy_main.cc\nchrome/BUILD.gn\nchrome/PRESUBMIT.py\nchrome/app/PRESUBMIT.py\nchrome/app/app_management_strings.grdp\nchrome/app/chrome_command_ids.h\nchrome/app/chromeos_strings.grdp\nchrome/app/chromium_strings.grd\nchrome/app/delay_load_failure_hook_win.cc\nchrome/app/extensions_strings.grdp\nchrome/app/generated_resources.grd\nchrome/app/glic_strings.grdp\nchrome/app/google_chrome_strings.grd\nchrome/app/media_router_strings.grdp\nchrome/app/nearby_share_strings.grdp\nchrome/app/os_settings_strings.grdp\nchrome/app/password_manager_ui_strings.grdp\nchrome/app/profiles_strings.grdp\nchrome/app/resources/locale_settings.grd\nchrome/app/settings_chromium_strings.grdp\nchrome/app/settings_google_chrome_strings.grdp\nchrome/app/settings_strings.grdp\nchrome/app/shared_settings_strings.grdp\nchrome/app/theme/PRESUBMIT.py\nchrome/browser/PRESUBMIT.py\nchrome/browser/about_flags.cc\nchrome/browser/accessibility/live_caption/live_caption_speech_recognition_host_browsertest.cc\nchrome/browser/actor/safety_list_manager.cc\nchrome/browser/actor/safety_list_manager_unittest.cc\nchrome/browser/actor/site_policy_browsertest.cc\nchrome/browser/ai/ai_data_keyed_service.cc\nchrome/browser/ai/ai_language_model.cc\nchrome/browser/ai/ai_on_device_interactive_uitest.cc\nchrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc\nchrome/browser/android/cookies/cookies_fetcher_restore_util_browsertest.cc\nchrome/browser/android/customtabs/custom_tabs_browsertest.cc\nchrome/browser/android/customtabs/detached_resource_request_unittest.cc\nchrome/browser/android/examples/custom_tabs_client/src/res/values/strings.xml\nchrome/browser/android/examples/partner_browser_customizations_provider/res/values/strings.xml\nchrome/browser/android/history/history_deletion_bridge_unittest.cc\nchrome/browser/android/omnibox/chrome_omnibox_navigation_observer_android_unittest.cc\nchrome/browser/android/recently_closed_tabs_bridge_unittest.cc\nchrome/browser/android/search_permissions/search_permissions_service.h\nchrome/browser/android/search_permissions/search_permissions_service_unittest.cc\nchrome/browser/android/tab_android.cc\nchrome/browser/android/vr/PRESUBMIT.py\nchrome/browser/android/webapk/webapk_helpers_unittest.cc\nchrome/browser/android/webapk/webapk_installer.cc\nchrome/browser/apps/almanac_api_client/almanac_api_util.cc\nchrome/browser/apps/almanac_api_client/almanac_api_util_unittest.cc\nchrome/browser/apps/almanac_api_client/almanac_icon_cache.cc\nchrome/browser/apps/almanac_api_client/device_info_manager.cc\nchrome/browser/apps/app_discovery_service/app_discovery_service_unittest.cc\nchrome/browser/apps/app_discovery_service/launcher_app_almanac_endpoint.cc\nchrome/browser/apps/app_discovery_service/recommended_arc_app_fetcher_unittest.cc\nchrome/browser/apps/app_discovery_service/recommended_arc_apps/recommend_apps_fetcher_impl.cc\nchrome/browser/apps/app_discovery_service/recommended_arc_apps/recommend_apps_fetcher_impl_unittest.cc\nchrome/browser/apps/app_preload_service/app_preload_almanac_endpoint.cc\nchrome/browser/apps/app_preload_service/app_preload_service_browsertest.cc\nchrome/browser/apps/app_preload_service/preload_app_definition_unittest.cc\nchrome/browser/apps/app_service/app_icon/app_icon_loader.cc\nchrome/browser/apps/app_service/app_install/app_install_almanac_endpoint.cc\nchrome/browser/apps/app_service/app_install/app_install_almanac_endpoint_unittest.cc\nchrome/browser/apps/app_service/app_install/app_install_service_ash_browsertest.cc\nchrome/browser/apps/app_service/app_install/app_install_service_ash_unittest.cc\nchrome/browser/apps/app_service/app_install/app_install_types_unittest.cc\nchrome/browser/apps/app_service/app_install/web_app_installer.cc\nchrome/browser/apps/app_service/app_install/web_app_installer_browsertest.cc\nchrome/browser/apps/app_service/app_service_proxy_unittest.cc\nchrome/browser/apps/app_service/intent_util_unittest.cc\nchrome/browser/apps/app_service/metrics/app_service_metrics.h\nchrome/browser/apps/app_service/promise_apps/promise_app_almanac_connector.cc\nchrome/browser/apps/app_service/promise_apps/promise_app_service.cc\nchrome/browser/apps/app_service/publishers/arc_apps.cc\nchrome/browser/apps/app_service/publishers/arc_apps_unittest.cc\nchrome/browser/apps/app_service/publishers/publisher_unittest.cc\nchrome/browser/apps/app_service/web_contents_app_id_utils.h\nchrome/browser/apps/digital_goods/digital_goods_factory_impl.cc\nchrome/browser/apps/guest_view/web_view_browsertest.cc\nchrome/browser/apps/intent_helper/intent_chip_display_prefs_unittest.cc\nchrome/browser/apps/link_capturing/link_capturing_navigation_throttle_browsertest.cc\nchrome/browser/apps/link_capturing/link_capturing_navigation_throttle_unittest.cc\nchrome/browser/apps/platform_apps/app_browsertest.cc\nchrome/browser/apps/platform_apps/app_window_browsertest.cc\nchrome/browser/apps/platform_apps/install_chrome_app.cc\nchrome/browser/ash/accessibility/accessibility_live_site_browsertest.cc\nchrome/browser/ash/accessibility/accessibility_manager_browsertest.cc\nchrome/browser/ash/accessibility/dictation_browsertest.cc\nchrome/browser/ash/accessibility/spoken_feedback_browsertest.cc\nchrome/browser/ash/account_manager/account_apps_availability_unittest.cc\nchrome/browser/ash/account_manager/account_manager_edu_coexistence_controller_unittest.cc\nchrome/browser/ash/ambient/ambient_client_impl.cc\nchrome/browser/ash/ambient/ambient_client_impl_unittest.cc\nchrome/browser/ash/android_sms/android_sms_urls.cc\nchrome/browser/ash/android_sms/android_sms_urls.h\nchrome/browser/ash/api/tasks/chrome_tasks_delegate.cc\nchrome/browser/ash/api/tasks/tasks_client_impl.cc\nchrome/browser/ash/api/tasks/tasks_client_impl_unittest.cc\nchrome/browser/ash/app_list/app_context_menu_unittest.cc\nchrome/browser/ash/app_list/app_list_sort_browsertest.cc\nchrome/browser/ash/app_list/app_list_syncable_service_unittest.cc\nchrome/browser/ash/app_list/app_list_test_util.cc\nchrome/browser/ash/app_list/app_service/app_service_app_model_builder_unittest.cc\nchrome/browser/ash/app_list/chrome_app_list_model_updater_browsertest.cc\nchrome/browser/ash/app_list/search/arc/arc_recommend_apps_fetcher_impl_unittest.cc\nchrome/browser/ash/app_list/search/arc/recommend_apps_fetcher_impl.cc\nchrome/browser/ash/app_list/search/common/string_util.cc\nchrome/browser/ash/app_list/search/common/string_util.h\nchrome/browser/ash/app_list/search/common/string_util_unittest.cc\nchrome/browser/ash/app_list/search/essential_search/essential_search_manager.h\nchrome/browser/ash/app_list/search/essential_search/essential_search_manager_unittest.cc\nchrome/browser/ash/app_list/search/essential_search/socs_cookie_fetcher.cc\nchrome/browser/ash/app_list/search/essential_search/socs_cookie_fetcher_unittest.cc\nchrome/browser/ash/app_list/search/local_image_search/image_annotation_worker.cc\nchrome/browser/ash/app_list/search/omnibox/omnibox_provider_unittest.cc\nchrome/browser/ash/app_list/search/omnibox/omnibox_util.cc\nchrome/browser/ash/app_mode/auto_sleep/device_weekly_scheduled_suspend_controller.cc\nchrome/browser/ash/app_mode/fake_cws.cc\nchrome/browser/ash/app_mode/kiosk_troubleshooting_tools_browsertest.cc\nchrome/browser/ash/app_mode/test/kiosk_identity_browsertest.cc\nchrome/browser/ash/app_restore/arc_app_single_restore_handler_unittest.cc\nchrome/browser/ash/app_restore/arc_ghost_window_view_unittest.cc\nchrome/browser/ash/app_restore/full_restore_service_unittest.cc\nchrome/browser/ash/app_restore/informed_restore_browsertest.cc\nchrome/browser/ash/apps/apk_web_app_installer_browsertest.cc\nchrome/browser/ash/apps/apk_web_app_installer_unittest.cc\nchrome/browser/ash/apps/webapk/webapk_install_task.cc\nchrome/browser/ash/arc/adbd/arc_adbd_monitor_bridge_unittest.cc\nchrome/browser/ash/arc/arc_util_unittest.cc\nchrome/browser/ash/arc/auth/arc_auth_service_browsertest.cc\nchrome/browser/ash/arc/auth/arc_background_auth_code_fetcher.cc\nchrome/browser/ash/arc/auth/arc_robot_auth_code_fetcher.cc\nchrome/browser/ash/arc/bluetooth/arc_bluetooth_bridge.cc\nchrome/browser/ash/arc/bluetooth/arc_bluetooth_bridge.h\nchrome/browser/ash/arc/enterprise/arc_enterprise_reporting_service_unittest.cc\nchrome/browser/ash/arc/extensions/arc_support_message_host.cc\nchrome/browser/ash/arc/file_system_watcher/file_system_scanner.h\nchrome/browser/ash/arc/input_overlay/ui/editing_list.cc\nchrome/browser/ash/arc/intent_helper/arc_settings_service.cc\nchrome/browser/ash/arc/notification/arc_vm_data_migration_notifier_unittest.cc\nchrome/browser/ash/arc/policy/arc_android_management_checker_unittest.cc\nchrome/browser/ash/arc/policy/arc_policy_bridge_unittest.cc\nchrome/browser/ash/arc/policy/arc_policy_util.h\nchrome/browser/ash/arc/session/arc_play_store_enabled_preference_handler_unittest.cc\nchrome/browser/ash/arc/session/arc_session_manager_browsertest.cc\nchrome/browser/ash/arc/session/arc_session_manager_unittest.cc\nchrome/browser/ash/arc/tracing/arc_app_performance_tracing.cc\nchrome/browser/ash/arc/tracing/overview_tracing_handler.cc\nchrome/browser/ash/attestation/attestation_ca_client.cc\nchrome/browser/ash/attestation/attestation_ca_client_unittest.cc\nchrome/browser/ash/attestation/platform_verification_flow_unittest.cc\nchrome/browser/ash/attestation/soft_bind_attestation_flow_impl_unittest.cc\nchrome/browser/ash/attestation/tpm_challenge_key_subtle_unittest.cc\nchrome/browser/ash/bluetooth/bluetooth_log_controller_unittest.cc\nchrome/browser/ash/bluetooth/debug_logs_manager_unittest.cc\nchrome/browser/ash/boca/on_task/locked_quiz_session_manager_browsertest.cc\nchrome/browser/ash/boca/on_task/on_task_locked_session_navigation_throttle_interactive_ui_test.cc\nchrome/browser/ash/boca/on_task/on_task_locked_session_window_tracker_browsertest.cc\nchrome/browser/ash/boca/spotlight/spotlight_crd_manager_impl_browsertest.cc\nchrome/browser/ash/boca/spotlight/spotlight_oauth_token_fetcher_impl.cc\nchrome/browser/ash/bruschetta/bruschetta_download.cc\nchrome/browser/ash/calendar/calendar_client_impl.cc\nchrome/browser/ash/calendar/calendar_client_impl_unittest.cc\nchrome/browser/ash/calendar/calendar_keyed_service.cc\nchrome/browser/ash/calendar/calendar_keyed_service_unittest.cc\nchrome/browser/ash/cert_provisioning/cert_provisioning_test_helpers.cc\nchrome/browser/ash/certs/system_token_cert_db_initializer.h\nchrome/browser/ash/child_accounts/constants/child_account_constants.h\nchrome/browser/ash/child_accounts/parent_access_code/parent_access_service_browsertest.cc\nchrome/browser/ash/child_accounts/time_limits/app_time_limit_utils_unittest.cc\nchrome/browser/ash/child_accounts/website_approval_notifier_unittest.cc\nchrome/browser/ash/crosapi/local_printer_ash_unittest.cc\nchrome/browser/ash/crostini/baguette_download.cc\nchrome/browser/ash/crostini/crostini_installer.h\nchrome/browser/ash/crostini/crostini_manager.cc\nchrome/browser/ash/crostini/crostini_simple_types.h\nchrome/browser/ash/crostini/crostini_util.h\nchrome/browser/ash/customization/customization_document.h\nchrome/browser/ash/dbus/arc_crosh_service_provider_unittest.cc\nchrome/browser/ash/dbus/proxy_resolution_service_provider.h\nchrome/browser/ash/dbus/proxy_resolution_service_provider_browsertest.cc\nchrome/browser/ash/dbus/proxy_resolution_service_provider_unittest.cc\nchrome/browser/ash/drive/drivefs_test_support.cc\nchrome/browser/ash/drive/file_system_util_unittest.cc\nchrome/browser/ash/extensions/file_manager/system_notification_manager_unittest.cc\nchrome/browser/ash/extensions/users_private/users_private_apitest.cc\nchrome/browser/ash/file_manager/external_filesystem_apitest.cc\nchrome/browser/ash/file_manager/file_browser_handlers.h\nchrome/browser/ash/file_manager/file_manager_browsertest_base.cc\nchrome/browser/ash/file_manager/file_manager_policy_browsertest.cc\nchrome/browser/ash/file_manager/file_manager_string_util.cc\nchrome/browser/ash/file_manager/file_manager_test_util.h\nchrome/browser/ash/file_manager/file_tasks.h\nchrome/browser/ash/file_manager/file_tasks_browsertest.cc\nchrome/browser/ash/file_manager/open_with_browser_browsertest.cc\nchrome/browser/ash/file_manager/path_util_unittest.cc\nchrome/browser/ash/file_suggest/item_suggest_cache.h\nchrome/browser/ash/file_suggest/item_suggest_cache_unittest.cc\nchrome/browser/ash/file_system_provider/fileapi/provider_async_file_util.h\nchrome/browser/ash/floating_sso/floating_sso_browsertest.cc\nchrome/browser/ash/floating_workspace/floating_workspace_service_unittest.cc\nchrome/browser/ash/growth/campaigns_manager_interactive_uitest.cc\nchrome/browser/ash/growth/install_web_app_action_unittest.cc\nchrome/browser/ash/growth/open_url_action_performer_unittest.cc\nchrome/browser/ash/hats/hats_dialog.cc\nchrome/browser/ash/input_device_settings/peripherals_app_delegate_impl.cc\nchrome/browser/ash/input_method/assistive_input_denylist.cc\nchrome/browser/ash/input_method/assistive_input_denylist_unittest.cc\nchrome/browser/ash/input_method/assistive_suggester_client_filter.cc\nchrome/browser/ash/input_method/assistive_suggester_client_filter_unittest.cc\nchrome/browser/ash/input_method/editor_feedback_unittest.cc\nchrome/browser/ash/input_method/editor_switch_unittest.cc\nchrome/browser/ash/input_method/ime_service_connector.cc\nchrome/browser/ash/integration_tests/featured_integration_test.cc\nchrome/browser/ash/kerberos/kerberos_credentials_manager_unittest.cc\nchrome/browser/ash/lobster/lobster_feedback_unittest.cc\nchrome/browser/ash/lobster/lobster_image_provider_from_snapper.cc\nchrome/browser/ash/lobster/lobster_system_state_provider_impl_unittest.cc\nchrome/browser/ash/login/app_mode/kiosk_launch_controller_unittest.cc\nchrome/browser/ash/login/ash_hud_login_browsertest.cc\nchrome/browser/ash/login/demo_mode/demo_login_controller.cc\nchrome/browser/ash/login/demo_mode/demo_login_controller_unittest.cc\nchrome/browser/ash/login/demo_mode/demo_mode_idle_handler.cc\nchrome/browser/ash/login/demo_mode/demo_mode_idle_handler_unittest.cc\nchrome/browser/ash/login/device_family_link_allowed_policy_browsertest.cc\nchrome/browser/ash/login/encryption_migration_browsertest.cc\nchrome/browser/ash/login/existing_user_controller_browsertest.cc\nchrome/browser/ash/login/help_app_launcher.h\nchrome/browser/ash/login/lock/lock_screen_integration_test.cc\nchrome/browser/ash/login/login_browsertest.cc\nchrome/browser/ash/login/login_ui_browsertest.cc\nchrome/browser/ash/login/login_ui_keyboard_browsertest.cc\nchrome/browser/ash/login/login_ui_shelf_visibility_browsertest.cc\nchrome/browser/ash/login/marketing_backend_connector.cc\nchrome/browser/ash/login/misconfigured_user_browsertest.cc\nchrome/browser/ash/login/oobe_apps_service/oobe_apps_almanac_endpoint.cc\nchrome/browser/ash/login/oobe_quick_start/connectivity/account_transfer_client_data.h\nchrome/browser/ash/login/oobe_quick_start/connectivity/connection_unittest.cc\nchrome/browser/ash/login/oobe_quick_start/second_device_auth_broker.cc\nchrome/browser/ash/login/oobe_quick_start/second_device_auth_broker_unittest.cc\nchrome/browser/ash/login/password_change_browsertest.cc\nchrome/browser/ash/login/post_login_deferred_task_browsertest.cc\nchrome/browser/ash/login/profile_auth_data_unittest.cc\nchrome/browser/ash/login/reset_browsertest.cc\nchrome/browser/ash/login/saml/password_sync_token_fetcher.cc\nchrome/browser/ash/login/saml/saml_browsertest.cc\nchrome/browser/ash/login/saml/saml_lockscreen_browsertest.cc\nchrome/browser/ash/login/screens/arc_vm_data_migration_screen_unittest.cc\nchrome/browser/ash/login/screens/categories_selection_screen_browsertest.cc\nchrome/browser/ash/login/screens/locale_switch_screen.cc\nchrome/browser/ash/login/screens/locale_switch_screen_browsertest.cc\nchrome/browser/ash/login/screens/perks_discovery_screen_browsertest.cc\nchrome/browser/ash/login/screens/personalized_recommend_apps_screen_browsertest.cc\nchrome/browser/ash/login/screens/quick_start_screen_browsertest.cc\nchrome/browser/ash/login/screens/recommend_apps_screen_browsertest.cc\nchrome/browser/ash/login/screens/user_selection_screen_browsertest.cc\nchrome/browser/ash/login/shill_profile_loading_browsertest.cc\nchrome/browser/ash/login/signin/device_id_browsertest.cc\nchrome/browser/ash/login/signin/oauth2_browsertest.cc\nchrome/browser/ash/login/test/logged_in_user_mixin.cc\nchrome/browser/ash/login/test/logged_in_user_mixin.h\nchrome/browser/ash/login/test/login_manager_mixin.cc\nchrome/browser/ash/login/test/login_manager_mixin.h\nchrome/browser/ash/login/users/default_user_image/default_user_images.cc\nchrome/browser/ash/login/users/multi_user_sign_in_policy_controller_unittest.cc\nchrome/browser/ash/login/webview_login_browsertest.cc\nchrome/browser/ash/login/wizard_controller_browsertest.cc\nchrome/browser/ash/magic_boost/magic_boost_controller.cc\nchrome/browser/ash/magic_boost/magic_boost_controller_unittest.cc\nchrome/browser/ash/mahi/web_contents/mahi_web_contents_manager_impl.cc\nchrome/browser/ash/net/network_diagnostics/arc_dns_resolution_routine.cc\nchrome/browser/ash/net/network_diagnostics/dns_latency_routine.cc\nchrome/browser/ash/net/network_diagnostics/dns_resolution_routine.cc\nchrome/browser/ash/net/network_diagnostics/gateway_can_be_pinged_routine.cc\nchrome/browser/ash/net/network_diagnostics/gateway_can_be_pinged_routine_unittest.cc\nchrome/browser/ash/net/network_diagnostics/google_services_connectivity_routine.cc\nchrome/browser/ash/net/network_diagnostics/google_services_connectivity_routine_unittest.cc\nchrome/browser/ash/net/network_diagnostics/http_request_manager.h\nchrome/browser/ash/net/network_diagnostics/http_request_manager_unittest.cc\nchrome/browser/ash/net/network_diagnostics/network_diagnostics_unittest.cc\nchrome/browser/ash/net/network_diagnostics/network_diagnostics_util.cc\nchrome/browser/ash/net/network_diagnostics/network_diagnostics_util.h\nchrome/browser/ash/net/network_diagnostics/video_conferencing_routine.cc\nchrome/browser/ash/os_feedback/chrome_os_feedback_delegate_browsertest.cc\nchrome/browser/ash/plugin_vm/plugin_vm_diagnostics.cc\nchrome/browser/ash/plugin_vm/plugin_vm_installer_unittest.cc\nchrome/browser/ash/plugin_vm/plugin_vm_license_checker.cc\nchrome/browser/ash/plugin_vm/plugin_vm_util.cc\nchrome/browser/ash/plugin_vm/plugin_vm_util_unittest.cc\nchrome/browser/ash/policy/arc/android_management_client_unittest.cc\nchrome/browser/ash/policy/core/device_local_account_browsertest.cc\nchrome/browser/ash/policy/core/device_local_account_policy_service_unittest.cc\nchrome/browser/ash/policy/core/user_cloud_policy_manager_ash_browsertest.cc\nchrome/browser/ash/policy/core/user_cloud_policy_manager_ash_unittest.cc\nchrome/browser/ash/policy/core/user_cloud_policy_store_ash_unittest.cc\nchrome/browser/ash/policy/core/user_cloud_policy_token_forwarder_unittest.cc\nchrome/browser/ash/policy/dlp/data_transfer_dlp_controller_ash_browsertest.cc\nchrome/browser/ash/policy/dlp/dlp_content_manager_ash_browsertest.cc\nchrome/browser/ash/policy/dlp/dlp_content_manager_ash_unittest.cc\nchrome/browser/ash/policy/dlp/dlp_files_controller_ash_unittest.cc\nchrome/browser/ash/policy/enrollment/account_status_check_fetcher_unittest.cc\nchrome/browser/ash/policy/handlers/multi_screen_capture_policy_handler_unittest.cc\nchrome/browser/ash/policy/login/login_policy_test_base.cc\nchrome/browser/ash/policy/networking/network_policy_application_browsertest.cc\nchrome/browser/ash/policy/remote_commands/crd/crd_oauth_token_fetcher.cc\nchrome/browser/ash/policy/remote_commands/device_command_fetch_support_packet_job_browsertest.cc\nchrome/browser/ash/policy/reporting/metrics_reporting/network/https_latency_events_unittest.cc\nchrome/browser/ash/policy/skyvault/drive_skyvault_uploader_browsertest.cc\nchrome/browser/ash/policy/skyvault/migration_coordinator_browsertest.cc\nchrome/browser/ash/policy/status_collector/child_status_collector_unittest.cc\nchrome/browser/ash/policy/status_collector/device_status_collector_unittest.cc\nchrome/browser/ash/policy/status_collector/status_collector.h\nchrome/browser/ash/policy/uploading/heartbeat_scheduler.cc\nchrome/browser/ash/policy/uploading/status_uploader_unittest.cc\nchrome/browser/ash/power/auto_screen_brightness/adapter_unittest.cc\nchrome/browser/ash/power/auto_screen_brightness/modeller_impl_unittest.cc\nchrome/browser/ash/power/ml/smart_dim/ml_agent_unittest.cc\nchrome/browser/ash/printing/specifics_translation_unittest.cc\nchrome/browser/ash/printing/synced_printers_manager_unittest.cc\nchrome/browser/ash/release_notes/release_notes_notification_unittest.cc\nchrome/browser/ash/release_notes/release_notes_storage_unittest.cc\nchrome/browser/ash/scanner/scanner_keyed_service.cc\nchrome/browser/ash/scanning/chrome_scanning_app_delegate_unittest.cc\nchrome/browser/ash/settings/cros_settings_unittest.cc\nchrome/browser/ash/settings/device_settings_provider_unittest.cc\nchrome/browser/ash/smb_client/smb_service_helper.h\nchrome/browser/ash/system_web_apps/apps/camera_app/camera_app_integration_browsertest.cc\nchrome/browser/ash/system_web_apps/apps/files_internals_ui_delegate.cc\nchrome/browser/ash/system_web_apps/apps/help_app/help_app_notification_controller_unittest.cc\nchrome/browser/ash/system_web_apps/apps/personalization_app/personalization_app_sea_pen_provider_impl_unittest.cc\nchrome/browser/ash/system_web_apps/apps/personalization_app/personalization_app_utils_unittest.cc\nchrome/browser/ash/tpm/tpm_firmware_update.h\nchrome/browser/ash/wallpaper_handlers/google_photos_wallpaper_handlers.cc\nchrome/browser/ash/wallpaper_handlers/google_photos_wallpaper_handlers_unittest.cc\nchrome/browser/ash/wallpaper_handlers/sea_pen_fetcher.cc\nchrome/browser/ash/wallpaper_handlers/wallpaper_handlers.cc\nchrome/browser/autocomplete/aim_eligibility_refresh_navigation_throttle_unittest.cc\nchrome/browser/autocomplete/autocomplete_browsertest.cc\nchrome/browser/autocomplete/chrome_aim_eligibility_service_browsertest.cc\nchrome/browser/autocomplete/chrome_autocomplete_provider_client_browsertest.cc\nchrome/browser/autocomplete/chrome_autocomplete_scheme_classifier_unittest.cc\nchrome/browser/autocomplete/search_provider_unittest.cc\nchrome/browser/autocomplete/tab_matcher_desktop_browsertest.cc\nchrome/browser/autofill/android/save_update_address_profile_prompt_controller_unittest.cc\nchrome/browser/autofill/autofill_browsertest.cc\nchrome/browser/autofill/autofill_captured_sites_interactive_uitest.cc\nchrome/browser/autofill/autofill_interactive_uitest.cc\nchrome/browser/autofill/autofill_server_browsertest.cc\nchrome/browser/autofill/automated_tests/cache_replayer.cc\nchrome/browser/autofill/automated_tests/cache_replayer.h\nchrome/browser/autofill/automated_tests/cache_replayer_unittest.cc\nchrome/browser/autofill/captured_sites_test_utils.cc\nchrome/browser/background/background_contents_service.cc\nchrome/browser/background_sync/periodic_background_sync_permission_context.cc\nchrome/browser/bluetooth/web_bluetooth_browsertest.cc\nchrome/browser/bookmarks/bookmark_merged_surface_service_unittest.cc\nchrome/browser/bookmarks/bookmark_test_utils.cc\nchrome/browser/bookmarks/managed_bookmark_service_unittest.cc\nchrome/browser/breadcrumbs/breadcrumb_manager_tab_helper_unittest.cc\nchrome/browser/browser_about_handler_unittest.cc\nchrome/browser/browser_commands_unittest.cc\nchrome/browser/browser_features.cc\nchrome/browser/browser_switcher/browser_switcher_browsertest.cc\nchrome/browser/browser_switcher/browser_switcher_service.cc\nchrome/browser/browser_switcher/browser_switcher_service_browsertest.cc\nchrome/browser/browser_switcher/browser_switcher_sitelist_unittest.cc\nchrome/browser/browser_switcher/ieem_sitelist_parser.cc\nchrome/browser/browser_switcher/ieem_sitelist_parser_unittest.cc\nchrome/browser/browsing_data/browsing_data_remover_browsertest.cc\nchrome/browser/browsing_data/chrome_browsing_data_model_delegate_unittest.cc\nchrome/browser/browsing_data/chrome_browsing_data_remover_delegate_unittest.cc\nchrome/browser/browsing_data/counters/bookmark_counter_unittest.cc\nchrome/browser/browsing_data/counters/browsing_data_counter_utils_unittest.cc\nchrome/browser/browsing_data/counters/history_counter_browsertest.cc\nchrome/browser/browsing_data/counters/passwords_counter_browsertest.cc\nchrome/browser/browsing_data/counters/site_data_counting_helper_unittest.cc\nchrome/browser/browsing_data/counters/site_settings_counter_unittest.cc\nchrome/browser/browsing_topics/browsing_topics_service_browsertest.cc\nchrome/browser/browsing_topics/browsing_topics_service_factory.cc\nchrome/browser/btm/btm_browser_signin_detector.cc\nchrome/browser/btm/btm_browser_signin_detector_unittest.cc\nchrome/browser/chrome_browser_application_mac.mm\nchrome/browser/chrome_browser_main_win.cc\nchrome/browser/chrome_browser_main_win_unittest.cc\nchrome/browser/chrome_content_browser_client.cc\nchrome/browser/chrome_content_browser_client_browsertest.cc\nchrome/browser/chrome_content_browser_client_unittest.cc\nchrome/browser/chrome_for_testing/tools/generate_about_file.py\nchrome/browser/chrome_main_process_singleton_browsertest.cc\nchrome/browser/chrome_navigation_browsertest.cc\nchrome/browser/chrome_security_exploit_browsertest.cc\nchrome/browser/chrome_web_platform_security_metrics_browsertest.cc\nchrome/browser/chromeos/arc/arc_external_protocol_dialog_unittest.cc\nchrome/browser/chromeos/enterprise/cloud_storage/one_drive_pref_observer_browsertest.cc\nchrome/browser/chromeos/extensions/desk_api/desk_api_extension_manager.cc\nchrome/browser/chromeos/extensions/desk_api/desk_api_extension_manager.h\nchrome/browser/chromeos/extensions/odfs_config_private/odfs_config_private_api_unittest.cc\nchrome/browser/chromeos/extensions/telemetry/api/common/api_guard_delegate_unittest.cc\nchrome/browser/chromeos/network/network_portal_signin_window_ash_browsertest.cc\nchrome/browser/chromeos/policy/default_notifications_setting_browsertest.cc\nchrome/browser/chromeos/policy/dino_easter_egg_browsertest.cc\nchrome/browser/chromeos/policy/dlp/data_transfer_dlp_controller_browsertest.cc\nchrome/browser/chromeos/policy/dlp/dlp_content_tab_helper_unittest.cc\nchrome/browser/chromeos/policy/dlp/dlp_policy_constants.h\nchrome/browser/chromeos/policy/dlp/dlp_rules_manager_impl.cc\nchrome/browser/chromeos/policy/dlp/dlp_rules_manager_impl_unittest.cc\nchrome/browser/chromeos/policy/dlp/dlp_scoped_file_access_delegate_unittest.cc\nchrome/browser/chromeos/printing/print_preview/print_settings_converter_unittest.cc\nchrome/browser/chromeos/reporting/metric_reporting_prefs_unittest.cc\nchrome/browser/chromeos/tablet_mode/chrome_content_browser_client_tablet_mode_part_unittest.cc\nchrome/browser/complex_tasks/task_tab_helper_unittest.cc\nchrome/browser/component_updater/translate_kit_component_installer.cc\nchrome/browser/compose/chrome_compose_client_unittest.cc\nchrome/browser/compose/compose_enabling_unittest.cc\nchrome/browser/compose/compose_session.cc\nchrome/browser/content_settings/content_settings_default_provider_unittest.cc\nchrome/browser/content_settings/content_settings_origin_value_map_unittest.cc\nchrome/browser/content_settings/content_settings_policy_provider_unittest.cc\nchrome/browser/content_settings/content_settings_pref_provider_unittest.cc\nchrome/browser/content_settings/host_content_settings_map_unittest.cc\nchrome/browser/content_settings/javascript_optimizer_provider_android_unittest.cc\nchrome/browser/content_settings/sound_content_setting_observer_unittest.cc\nchrome/browser/contextual_cueing/caching_zero_state_suggestions_manager_unittest.cc\nchrome/browser/contextual_cueing/zero_state_suggestions_browsertest.cc\nchrome/browser/contextual_tasks/contextual_tasks_composebox_handler_unittest.cc\nchrome/browser/contextual_tasks/contextual_tasks_cookie_synchronizer_unittest.cc\nchrome/browser/contextual_tasks/contextual_tasks_page_handler.cc\nchrome/browser/contextual_tasks/contextual_tasks_page_handler_unittest.cc\nchrome/browser/contextual_tasks/contextual_tasks_ui.cc\nchrome/browser/contextual_tasks/contextual_tasks_ui_service.cc\nchrome/browser/contextual_tasks/contextual_tasks_ui_service_interactive_uitest.cc\nchrome/browser/contextual_tasks/contextual_tasks_ui_service_unittest.cc\nchrome/browser/contextual_tasks/contextual_tasks_ui_unittest.cc\nchrome/browser/contextual_tasks/contextual_tasks_url_loader_factory_interceptor.cc\nchrome/browser/contextual_tasks/contextual_tasks_url_loader_factory_interceptor_browsertest.cc\nchrome/browser/contextual_tasks/tab_strip_context_decorator_unittest.cc\nchrome/browser/custom_handlers/protocol_handler_registry_browsertest.cc\nchrome/browser/data_sharing/desktop/data_sharing_conversion_utils_unittest.cc\nchrome/browser/data_sharing/desktop/data_sharing_service_browsertest.cc\nchrome/browser/device_identity/device_oauth2_token_service_unittest.cc\nchrome/browser/device_notifications/device_connection_tracker_unittest.cc\nchrome/browser/devtools/aida_client.h\nchrome/browser/devtools/aida_service_handler.cc\nchrome/browser/devtools/device/adb/adb_client_socket_browsertest.cc\nchrome/browser/devtools/device/adb/mock_adb_server.cc\nchrome/browser/devtools/device/usb/android_rsa.cc\nchrome/browser/devtools/devtools_browsertest.cc\nchrome/browser/devtools/devtools_http_service_handler_unittest.cc\nchrome/browser/devtools/devtools_ui_bindings.cc\nchrome/browser/devtools/devtools_ui_bindings_unittest.cc\nchrome/browser/devtools/features.cc\nchrome/browser/devtools/gdp_service_handler.cc\nchrome/browser/devtools/process_sharing_infobar_delegate.cc\nchrome/browser/devtools/protocol/devtools_protocol_browsertest.cc\nchrome/browser/devtools/protocol/devtools_pwa_browsertest.cc\nchrome/browser/devtools/url_constants.cc\nchrome/browser/download/chrome_download_manager_delegate_unittest.cc\nchrome/browser/download/download_browsertest.cc\nchrome/browser/download/insecure_download_blocking.cc\nchrome/browser/download/save_page_browsertest.cc\nchrome/browser/engagement/important_sites_util_browsertest.cc\nchrome/browser/engagement/important_sites_util_unittest.cc\nchrome/browser/engagement/site_engagement_service_unittest.cc\nchrome/browser/enterprise/client_certificates/client_certificates_browsertest.cc\nchrome/browser/enterprise/connectors/analysis/clipboard_request_handler_unittest.cc\nchrome/browser/enterprise/connectors/analysis/content_analysis_delegate_browsertest.cc\nchrome/browser/enterprise/connectors/analysis/content_analysis_delegate_unittest.cc\nchrome/browser/enterprise/connectors/analysis/content_analysis_dialog_browsertest.cc\nchrome/browser/enterprise/connectors/analysis/content_analysis_downloads_delegate_unittest.cc\nchrome/browser/enterprise/connectors/analysis/content_analysis_info_browsertest.cc\nchrome/browser/enterprise/connectors/analysis/file_transfer_analysis_delegate_unittest.cc\nchrome/browser/enterprise/connectors/analysis/page_print_request_handler_unittest.cc\nchrome/browser/enterprise/connectors/device_trust/attestation/ash/ash_attestation_cleanup_manager_unittest.cc\nchrome/browser/enterprise/connectors/device_trust/attestation/ash/ash_attestation_service_impl_unittest.cc\nchrome/browser/enterprise/connectors/device_trust/attestation/browser/google_keys.cc\nchrome/browser/enterprise/connectors/device_trust/key_management/core/network/win_key_network_delegate_unittest.cc\nchrome/browser/enterprise/connectors/device_trust/key_management/installer/management_service/rotate_util.cc\nchrome/browser/enterprise/connectors/device_trust/key_management/installer/management_service/rotate_util_unittest.cc\nchrome/browser/enterprise/connectors/device_trust/signals/decorators/ash/ash_signals_decorator_browsertest.cc\nchrome/browser/enterprise/connectors/device_trust/signals/decorators/browser/browser_signals_decorator_unittest.cc\nchrome/browser/enterprise/connectors/device_trust/test/test_constants.cc\nchrome/browser/enterprise/connectors/reporting/extension_telemetry_event_router_unittest.cc\nchrome/browser/enterprise/connectors/reporting/reporting_event_router_unittest.cc\nchrome/browser/enterprise/connectors/test/active_user_test_mixin.cc\nchrome/browser/enterprise/connectors/test/deep_scanning_test_utils.cc\nchrome/browser/enterprise/data_controls/chrome_rules_service_unittest.cc\nchrome/browser/enterprise/data_controls/reporting_unittest.cc\nchrome/browser/enterprise/data_protection/clipboard_browsertest.cc\nchrome/browser/enterprise/data_protection/data_protection_clipboard_utils_browsertest.cc\nchrome/browser/enterprise/data_protection/data_protection_navigation_observer_unittest.cc\nchrome/browser/enterprise/data_protection/paste_allowed_request_unittest.cc\nchrome/browser/enterprise/data_protection/print_utils_unittest.cc\nchrome/browser/enterprise/platform_auth/cloud_ap_provider_win.cc\nchrome/browser/enterprise/profile_management/profile_management_navigation_throttle.cc\nchrome/browser/enterprise/profile_management/profile_management_navigation_throttle_unittest.cc\nchrome/browser/enterprise/reporting/extension_request/extension_request_notification.cc\nchrome/browser/enterprise/reporting/extension_request/extension_request_notification_browsertest.cc\nchrome/browser/enterprise/reporting/extension_request/extension_request_observer_unittest.cc\nchrome/browser/enterprise/reporting/security_reporting_browsertest.cc\nchrome/browser/enterprise/signals/profile_signals_collector_browsertest.cc\nchrome/browser/enterprise/signin/enterprise_signin_service_browsertest.cc\nchrome/browser/enterprise/signin/token_managed_profile_creation_delegate_unittest.cc\nchrome/browser/enterprise/util/managed_browser_utils.cc\nchrome/browser/enterprise/util/managed_browser_utils.h\nchrome/browser/enterprise/webstore/chrome_web_store_navigation_throttle_unittest.cc\nchrome/browser/error_reporting/chrome_js_error_report_processor_nonchromeos.cc\nchrome/browser/error_reporting/chrome_js_error_report_processor_unittest.cc\nchrome/browser/extensions/activity_log/activity_log_policy_unittest.cc\nchrome/browser/extensions/activity_log/activity_log_unittest.cc\nchrome/browser/extensions/activity_log/counting_policy_unittest.cc\nchrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc\nchrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc\nchrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api_unittest.cc\nchrome/browser/extensions/api/bookmarks/bookmarks_apitest.cc\nchrome/browser/extensions/api/braille_display_private/braille_display_private_apitest.cc\nchrome/browser/extensions/api/certificate_provider/certificate_provider_apitest.cc\nchrome/browser/extensions/api/content_settings/content_settings_apitest.cc\nchrome/browser/extensions/api/context_menus/extension_context_menu_browsertest.cc\nchrome/browser/extensions/api/debugger/debugger_apitest.cc\nchrome/browser/extensions/api/debugger/extension_dev_tools_infobar_delegate.cc\nchrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h\nchrome/browser/extensions/api/declarative_content/content_action.h\nchrome/browser/extensions/api/declarative_content/content_condition.h\nchrome/browser/extensions/api/declarative_content/content_predicate.h\nchrome/browser/extensions/api/declarative_content/content_predicate_evaluator.h\nchrome/browser/extensions/api/declarative_content/declarative_content_page_url_condition_tracker_unittest.cc\nchrome/browser/extensions/api/declarative_net_request/declarative_net_request_browsertest.cc\nchrome/browser/extensions/api/declarative_net_request/declarative_net_request_unittest.cc\nchrome/browser/extensions/api/declarative_net_request/ruleset_manager_unittest.cc\nchrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc\nchrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry_unittest.cc\nchrome/browser/extensions/api/developer_private/developer_private_api_unittest.cc\nchrome/browser/extensions/api/developer_private/extension_info_generator_unittest.cc\nchrome/browser/extensions/api/downloads/downloads_api.h\nchrome/browser/extensions/api/downloads/downloads_api_browsertest.cc\nchrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api_unittest.cc\nchrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api_unittest.cc\nchrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_apitest.cc\nchrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_unittest.cc\nchrome/browser/extensions/api/experimental_ai_data/experimental_ai_data_api.cc\nchrome/browser/extensions/api/extension_action/browser_action_interactive_test.cc\nchrome/browser/extensions/api/extension_action/extension_action_apitest.cc\nchrome/browser/extensions/api/feedback_private/feedback_browsertest.cc\nchrome/browser/extensions/api/identity/identity_apitest.cc\nchrome/browser/extensions/api/identity/identity_launch_web_auth_flow_function.cc\nchrome/browser/extensions/api/image_writer_private/removable_storage_provider.cc\nchrome/browser/extensions/api/image_writer_private/removable_storage_provider_linux.cc\nchrome/browser/extensions/api/messaging/externally_connectable_messaging_apitest.cc\nchrome/browser/extensions/api/page_capture/page_capture_api_unittest.cc\nchrome/browser/extensions/api/passwords_private/password_check_delegate_unittest.cc\nchrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl_unittest.cc\nchrome/browser/extensions/api/passwords_private/passwords_private_utils_unittest.cc\nchrome/browser/extensions/api/permissions/permissions_api_helpers.cc\nchrome/browser/extensions/api/permissions/permissions_api_unittest.cc\nchrome/browser/extensions/api/preference/preference_api_prefs_unittest.cc\nchrome/browser/extensions/api/printing/printing_api_utils.h\nchrome/browser/extensions/api/protocol_handlers/protocol_handlers_manager_browsertest.cc\nchrome/browser/extensions/api/proxy/proxy_api_helpers_unittest.cc\nchrome/browser/extensions/api/proxy_override_rules_private_apitest.cc\nchrome/browser/extensions/api/quick_unlock_private/quick_unlock_private_api_unittest.cc\nchrome/browser/extensions/api/runtime/runtime_apitest.cc\nchrome/browser/extensions/api/scripting/scripting_apitest.cc\nchrome/browser/extensions/api/settings_overrides/settings_overrides_browsertest.cc\nchrome/browser/extensions/api/tab_capture/tab_capture_performance_test_base.cc\nchrome/browser/extensions/api/tabs/tabs_api.cc\nchrome/browser/extensions/api/tabs/tabs_api_unittest.cc\nchrome/browser/extensions/api/tabs/tabs_test.cc\nchrome/browser/extensions/api/tabs/windows_util_unittest.cc\nchrome/browser/extensions/api/web_navigation/frame_navigation_state_unittest.cc\nchrome/browser/extensions/api/web_request/web_request_api_unittest.cc\nchrome/browser/extensions/api/web_request/web_request_apitest.cc\nchrome/browser/extensions/api/web_request/web_request_permissions_unittest.cc\nchrome/browser/extensions/api/webrtc_audio_private/webrtc_audio_private_browsertest.cc\nchrome/browser/extensions/api/webstore_private/extension_install_status_unittest.cc\nchrome/browser/extensions/background_xhr_browsertest.cc\nchrome/browser/extensions/bookmarks/bookmarks_helpers_unittest.cc\nchrome/browser/extensions/chrome_extension_function_details.cc\nchrome/browser/extensions/component_extensions_allowlist/allowlist.h\nchrome/browser/extensions/content_script_apitest.cc\nchrome/browser/extensions/crx_installer_browsertest.cc\nchrome/browser/extensions/cws_info_service.cc\nchrome/browser/extensions/desktop_android_extensions_browsertest.cc\nchrome/browser/extensions/extension_action_runner_unittest.cc\nchrome/browser/extensions/extension_browser_window_helper.cc\nchrome/browser/extensions/extension_browsertest.cc\nchrome/browser/extensions/extension_context_menu_model_browsertest.cc\nchrome/browser/extensions/extension_keybinding_browsertest.cc\nchrome/browser/extensions/extension_loading_browsertest.cc\nchrome/browser/extensions/extension_management.cc\nchrome/browser/extensions/extension_management_unittest.cc\nchrome/browser/extensions/extension_override_apitest.cc\nchrome/browser/extensions/extension_prefs_unittest.cc\nchrome/browser/extensions/extension_service_test_base.cc\nchrome/browser/extensions/extension_service_unittest.cc\nchrome/browser/extensions/extension_tab_util_browsertest.cc\nchrome/browser/extensions/extension_tab_util_unittest.cc\nchrome/browser/extensions/extension_unload_browsertest.cc\nchrome/browser/extensions/extension_user_script_loader_unittest.cc\nchrome/browser/extensions/extension_util_unittest.cc\nchrome/browser/extensions/external_policy_loader_unittest.cc\nchrome/browser/extensions/external_pref_loader.cc\nchrome/browser/extensions/external_provider_impl_chromeos_unittest.cc\nchrome/browser/extensions/file_handlers/web_file_handlers_permission_handler.cc\nchrome/browser/extensions/forced_extensions/force_installed_test_base.cc\nchrome/browser/extensions/installed_loader_unittest.cc\nchrome/browser/extensions/lazy_background_page_apitest.cc\nchrome/browser/extensions/menu_manager_unittest.cc\nchrome/browser/extensions/native_bindings_apitest.cc\nchrome/browser/extensions/navigation_extension_enabler.cc\nchrome/browser/extensions/navigation_extension_enabler_browsertest.cc\nchrome/browser/extensions/open_tab_helper.cc\nchrome/browser/extensions/orb_and_cors_extension_browsertest.cc\nchrome/browser/extensions/permission_message_combinations_unittest.cc\nchrome/browser/extensions/permissions/active_tab_apitest.cc\nchrome/browser/extensions/permissions/active_tab_unittest.cc\nchrome/browser/extensions/permissions/permissions_updater_unittest.cc\nchrome/browser/extensions/permissions/scripting_permissions_modifier_unittest.cc\nchrome/browser/extensions/permissions_url_constants.cc\nchrome/browser/extensions/policy_handlers_unittest.cc\nchrome/browser/extensions/process_management_browsertest.cc\nchrome/browser/extensions/script_injection_tracker_browsertest.cc\nchrome/browser/extensions/sync/extension_sync_data_unittest.cc\nchrome/browser/extensions/sync/extension_sync_service_unittest.cc\nchrome/browser/extensions/updater/chrome_extension_downloader_factory.cc\nchrome/browser/extensions/updater/chrome_update_client_config.cc\nchrome/browser/extensions/updater/extension_updater_unittest.cc\nchrome/browser/extensions/user_script_extension_browsertest.cc\nchrome/browser/extensions/user_script_listener_unittest.cc\nchrome/browser/extensions/webstore_domain_browsertest.cc\nchrome/browser/extensions/webstore_installer_browsertest.cc\nchrome/browser/extensions/webstore_reinstaller_browsertest.cc\nchrome/browser/external_protocol/external_protocol_handler.cc\nchrome/browser/external_protocol/external_protocol_handler_browsertest.cc\nchrome/browser/favicon/favicon_utils_unittest.cc\nchrome/browser/feed/android/feed_reliability_logging_bridge.cc\nchrome/browser/feedback/android/family_info_feedback_source_unittest.cc\nchrome/browser/feedback/show_feedback_page.cc\nchrome/browser/feedback/system_logs/log_sources/chrome_root_store_log_source.cc\nchrome/browser/feedback/system_logs/log_sources/crash_ids_source.cc\nchrome/browser/feedback/system_logs/log_sources/family_info_log_source_unittest.cc\nchrome/browser/file_system_access/cloud_identifier/cloud_identifier_util_ash.cc\nchrome/browser/file_system_access/cloud_identifier/cloud_identifier_util_ash_browsertest.cc\nchrome/browser/first_run/bookmark_importer_unittest.cc\nchrome/browser/first_run/first_run_unittest.cc\nchrome/browser/flag-metadata.json\nchrome/browser/flag_descriptions.h\nchrome/browser/flags/android/chrome_session_state.h\nchrome/browser/font_prewarmer_tab_helper_browsertest.cc\nchrome/browser/glic/e2e_test/glic_e2e_test.cc\nchrome/browser/glic/fre/glic_fre_controller.cc\nchrome/browser/glic/fre/glic_fre_controller_interactive_uitest.cc\nchrome/browser/glic/fre/glic_fre_controller_unittest.cc\nchrome/browser/glic/fre/glic_fre_page_handler.cc\nchrome/browser/glic/glic_metrics_unittest.cc\nchrome/browser/glic/glic_navigation_throttle.h\nchrome/browser/glic/glic_navigation_throttle_browsertest.cc\nchrome/browser/glic/glic_user_status_browsertest.cc\nchrome/browser/glic/host/glic_annotation_manager_interactive_uitest.cc\nchrome/browser/glic/host/glic_api_browsertest.cc\nchrome/browser/glic/host/glic_cookie_synchronizer.cc\nchrome/browser/glic/host/glic_cookie_synchronizer_unittest.cc\nchrome/browser/glic/host/glic_page_handler.cc\nchrome/browser/glic/host/glic_ui.cc\nchrome/browser/glic/host/glic_ui_interactive_uitest.cc\nchrome/browser/glic/host/guest_util_unittest.cc\nchrome/browser/glic/media/glic_media_integration.cc\nchrome/browser/glic/media/glic_media_integration_unittest.cc\nchrome/browser/glic/media/glic_media_link_helper.cc\nchrome/browser/glic/media/glic_media_link_helper_unittest.cc\nchrome/browser/google/google_update_win.cc\nchrome/browser/guest_view/web_view/context_menu_content_type_web_view.cc\nchrome/browser/hid/chrome_hid_delegate_unittest.cc\nchrome/browser/hid/hid_browsertest.cc\nchrome/browser/hid/hid_chooser_context_unittest.cc\nchrome/browser/history/redirect_browsertest.cc\nchrome/browser/history_clusters/history_clusters_metrics_browsertest.cc\nchrome/browser/history_clusters/history_clusters_tab_helper_unittest.cc\nchrome/browser/importer/edge_importer_browsertest_win.cc\nchrome/browser/importer/firefox_profile_lock.cc\nchrome/browser/importer/firefox_profile_lock.h\nchrome/browser/importer/firefox_profile_lock_posix.cc\nchrome/browser/importer/firefox_profile_lock_win.cc\nchrome/browser/importer/ie_importer_browsertest_win.cc\nchrome/browser/importer/profile_writer_unittest.cc\nchrome/browser/keyboard_accessory/android/address_accessory_controller_impl_unittest.cc\nchrome/browser/legion/connection_factory_impl_browsertest.cc\nchrome/browser/lifetime/switch_utils_unittest.cc\nchrome/browser/loader/from_gws_navigation_and_keep_alive_request_observer_unittest.cc\nchrome/browser/loader/keep_alive_request_browsertest_util.h\nchrome/browser/loader/keep_alive_request_tracker.h\nchrome/browser/loader/keep_alive_url_browsertest.cc\nchrome/browser/local_discovery/service_discovery_client_mac.mm\nchrome/browser/long_screenshots/long_screenshots_tab_service.cc\nchrome/browser/long_screenshots/long_screenshots_tab_service_unittest.cc\nchrome/browser/lookalikes/lookalike_url_navigation_throttle.cc\nchrome/browser/lookalikes/lookalike_url_navigation_throttle_browsertest.cc\nchrome/browser/lookalikes/safety_tip_message_delegate_android_unittest.cc\nchrome/browser/mac/code_sign_clone_manager_unittest.mm\nchrome/browser/media/media_engagement_contents_observer_unittest.cc\nchrome/browser/media/media_engagement_preloaded_list_unittest.cc\nchrome/browser/media/media_engagement_score_unittest.cc\nchrome/browser/media/media_engagement_service_unittest.cc\nchrome/browser/media/media_engagement_session_unittest.cc\nchrome/browser/media/router/BUILD.gn\nchrome/browser/media/router/discovery/access_code/access_code_cast_constants.cc\nchrome/browser/media/router/discovery/access_code/access_code_cast_discovery_interface_unittest.cc\nchrome/browser/media/router/discovery/dial/safe_dial_device_description_parser_unittest.cc\nchrome/browser/media/router/discovery/discovery_network_list_win.cc\nchrome/browser/media/router/discovery/discovery_network_list_win.h\nchrome/browser/media/router/mojo/media_router_desktop_unittest.cc\nchrome/browser/media/router/providers/cast/cast_activity_manager_unittest.cc\nchrome/browser/media/router/providers/cast/cast_media_route_provider.cc\nchrome/browser/media/router/providers/cast/cast_media_route_provider_unittest.cc\nchrome/browser/media/router/providers/dial/dial_activity_manager_unittest.cc\nchrome/browser/media/router/providers/dial/dial_media_route_provider.cc\nchrome/browser/media/router/providers/dial/dial_media_route_provider_unittest.cc\nchrome/browser/media/webrtc/desktop_capture_devices_util_win.cc\nchrome/browser/media/webrtc/display_media_access_handler_unittest.cc\nchrome/browser/media/webrtc/webrtc_browsertest_common.cc\nchrome/browser/media/webrtc/webrtc_event_log_uploader.cc\nchrome/browser/media/webrtc/webrtc_log_uploader.cc\nchrome/browser/media_galleries/fileapi/media_path_filter.cc\nchrome/browser/metrics/chrome_metrics_service_client.cc\nchrome/browser/metrics/chrome_metrics_service_client_ash_unittest.cc\nchrome/browser/metrics/family_link_user_metrics_provider_unittest.cc\nchrome/browser/metrics/family_user_metrics_provider_browsertest.cc\nchrome/browser/metrics/per_user_state_manager_chromeos_browsertest.cc\nchrome/browser/metrics/system_pdh_metrics_provider_win.h\nchrome/browser/metrics/usage_scenario/tab_usage_scenario_tracker.cc\nchrome/browser/metrics/usage_scenario/tab_usage_scenario_tracker_unittest.cc\nchrome/browser/metrics/variations/variations_http_headers_browsertest.cc\nchrome/browser/navigation_predictor/anchor_element_preloader_browsertest.cc\nchrome/browser/navigation_predictor/navigation_predictor_browsertest.cc\nchrome/browser/navigation_predictor/navigation_predictor_preconnect_client_browsertest.cc\nchrome/browser/navigation_predictor/navigation_predictor_unittest.cc\nchrome/browser/navigation_predictor/search_engine_preconnector_browsertest.cc\nchrome/browser/nearby_sharing/certificates/nearby_share_certificate_manager_impl_unittest.cc\nchrome/browser/nearby_sharing/certificates/test_util.cc\nchrome/browser/nearby_sharing/client/nearby_share_client_impl.cc\nchrome/browser/nearby_sharing/client/nearby_share_client_impl_unittest.cc\nchrome/browser/nearby_sharing/common/nearby_share_switches.cc\nchrome/browser/nearby_sharing/contacts/nearby_share_contact_manager_impl_unittest.cc\nchrome/browser/nearby_sharing/contacts/nearby_share_contacts_sorter_unittest.cc\nchrome/browser/nearby_sharing/instantmessaging/constants.h\nchrome/browser/nearby_sharing/instantmessaging/stream_parser.cc\nchrome/browser/nearby_sharing/local_device_data/nearby_share_device_data_updater_impl_unittest.cc\nchrome/browser/nearby_sharing/local_device_data/nearby_share_local_device_data_manager_impl_unittest.cc\nchrome/browser/nearby_sharing/nearby_notification_manager_unittest.cc\nchrome/browser/nearby_sharing/network_traversal_ice_config_fetcher.cc\nchrome/browser/nearby_sharing/network_traversal_ice_config_fetcher_unittest.cc\nchrome/browser/nearby_sharing/sharesheet/nearby_share_action_unittest.cc\nchrome/browser/nearby_sharing/tachyon_ice_config_fetcher.cc\nchrome/browser/nearby_sharing/tachyon_ice_config_fetcher_unittest.cc\nchrome/browser/nearby_sharing/text_attachment_unittest.cc\nchrome/browser/net/cert_verify_proc_browsertest.cc\nchrome/browser/net/dns_probe_runner.cc\nchrome/browser/net/dns_probe_runner.h\nchrome/browser/net/http_auth_cache_status_unittest.cc\nchrome/browser/net/profile_network_context_service.cc\nchrome/browser/net/proxy_browsertest.cc\nchrome/browser/net/qwac_web_contents_observer.cc\nchrome/browser/net/sandboxed_network_change_notifier_win_browsertest.cc\nchrome/browser/net/service_providers_win.cc\nchrome/browser/net/stub_resolver_config_reader_browsertest.cc\nchrome/browser/net/system_network_context_manager_browsertest.cc\nchrome/browser/new_tab_page/modules/file_suggestion/drive_service.cc\nchrome/browser/new_tab_page/modules/file_suggestion/drive_service_unittest.cc\nchrome/browser/new_tab_page/modules/file_suggestion/microsoft_files_page_handler.cc\nchrome/browser/new_tab_page/modules/file_suggestion/microsoft_files_page_handler_unittest.cc\nchrome/browser/new_tab_page/modules/new_tab_page_modules_interactive_uitest.cc\nchrome/browser/new_tab_page/modules/new_tab_page_modules_unittest.cc\nchrome/browser/new_tab_page/modules/v2/calendar/calendar_fake_data_helper.cc\nchrome/browser/new_tab_page/modules/v2/calendar/google_calendar_page_handler.cc\nchrome/browser/new_tab_page/modules/v2/calendar/google_calendar_page_handler_unittest.cc\nchrome/browser/new_tab_page/modules/v2/calendar/outlook_calendar_page_handler.cc\nchrome/browser/new_tab_page/modules/v2/calendar/outlook_calendar_page_handler_unittest.cc\nchrome/browser/new_tab_page/modules/v2/most_relevant_tab_resumption/most_relevant_tab_resumption_page_handler.cc\nchrome/browser/new_tab_page/modules/v2/most_relevant_tab_resumption/most_relevant_tab_resumption_page_handler_unittest.cc\nchrome/browser/new_tab_page/modules/v2/tab_groups/tab_groups_page_handler.cc\nchrome/browser/new_tab_page/modules/v2/tab_groups/tab_groups_page_handler_unittest.cc\nchrome/browser/new_tab_page/new_tab_page_realbox_interactive_uitest.cc\nchrome/browser/new_tab_page/new_tab_page_util_browsertest.cc\nchrome/browser/new_tab_page/ntp_promo/ntp_promo_interactive_uitest.cc\nchrome/browser/new_tab_page/one_google_bar/one_google_bar_loader_impl.cc\nchrome/browser/new_tab_page/promos/promo_service_unittest.cc\nchrome/browser/no_best_effort_tasks_browsertest.cc\nchrome/browser/notifications/chrome_ash_message_center_client_unittest.cc\nchrome/browser/notifications/mac/notification_platform_bridge_mac_unittest.cc\nchrome/browser/notifications/notification_channels_provider_android_unittest.cc\nchrome/browser/notifications/notification_permission_context.h\nchrome/browser/notifications/notification_permission_context_unittest.cc\nchrome/browser/notifications/notification_platform_bridge_linux_unittest.cc\nchrome/browser/notifications/notification_platform_bridge_win_unittest.cc\nchrome/browser/notifications/platform_notification_service_unittest.cc\nchrome/browser/notifications/win/notification_template_builder.cc\nchrome/browser/ntp_tiles/ntp_tiles_browsertest.cc\nchrome/browser/obsolete_system/obsolete_system_linux.cc\nchrome/browser/optimization_guide/chrome_hints_manager_unittest.cc\nchrome/browser/optimization_guide/hints_fetcher_browsertest.cc\nchrome/browser/optimization_guide/model_execution/model_execution_browsertest.cc\nchrome/browser/optimization_guide/model_execution/model_execution_validation_browsertest.cc\nchrome/browser/optimization_guide/optimization_guide_keyed_service_browsertest.cc\nchrome/browser/origin_trials/origin_trials_browsertest.cc\nchrome/browser/os_crypt/app_bound_encryption_win.cc\nchrome/browser/page_content_annotations/page_content_annotations_service_browsertest.cc\nchrome/browser/page_image_service/android/image_service_bridge_unittest.cc\nchrome/browser/page_load_metrics/integration_tests/soft_navigation_metrics_browsertest.cc\nchrome/browser/page_load_metrics/observers/core/amp_page_load_metrics_observer.h\nchrome/browser/page_load_metrics/observers/core/amp_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/core/ukm_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/document_write_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/from_gws_abandoned_page_load_metrics_observer_browsertest.cc\nchrome/browser/page_load_metrics/observers/from_gws_page_load_metrics_observer.cc\nchrome/browser/page_load_metrics/observers/from_gws_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/gws_abandoned_page_load_metrics_observer_browsertest.cc\nchrome/browser/page_load_metrics/observers/gws_hp_page_load_metrics_observer_browsertest.cc\nchrome/browser/page_load_metrics/observers/gws_page_load_metrics_observer_browsertest.cc\nchrome/browser/page_load_metrics/observers/gws_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/initial_webui_page_load_metrics_observer.h\nchrome/browser/page_load_metrics/observers/loading_predictor_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/multi_tab_loading_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/omnibox_suggestion_used_page_load_metrics_observer.cc\nchrome/browser/page_load_metrics/observers/page_anchors_metrics_observer_browsertest.cc\nchrome/browser/page_load_metrics/observers/page_anchors_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/page_load_metrics_observer_test_harness.cc\nchrome/browser/page_load_metrics/observers/prefetch_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/protocol_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/scheme_page_load_metrics_observer_unittest.cc\nchrome/browser/page_load_metrics/observers/security_state_page_load_metrics_observer_browsertest.cc\nchrome/browser/partnerbookmarks/partner_bookmarks_reader.cc\nchrome/browser/password_manager/actor_login/internal/actor_login_federated_credentials_fetcher.cc\nchrome/browser/password_manager/actor_login/internal/siwg_button_finder.cc\nchrome/browser/password_manager/actor_login/internal/siwg_button_finder_unittest.cc\nchrome/browser/password_manager/android/all_passwords_bottom_sheet_controller_unittest.cc\nchrome/browser/password_manager/android/chromesync_status_code.h\nchrome/browser/password_manager/android/credential_leak_controller_android_unittest.cc\nchrome/browser/password_manager/android/password_manager_settings_service_android_impl_unittest.cc\nchrome/browser/password_manager/android/password_settings_updater_android_bridge_helper_impl_unittest.cc\nchrome/browser/password_manager/android/password_store_android_account_backend_unittest.cc\nchrome/browser/password_manager/android/password_store_android_backend_bridge_helper_impl_unittest.cc\nchrome/browser/password_manager/android/unified_password_manager_proto_utils_unittest.cc\nchrome/browser/password_manager/chrome_password_manager_client_unittest.cc\nchrome/browser/password_manager/password_change_delegate_impl_unittest.cc\nchrome/browser/password_manager/password_manager_browsertest.cc\nchrome/browser/password_manager/password_manager_captured_sites_interactive_uitest.cc\nchrome/browser/password_manager/password_manager_signin_intercept_test_helper.cc\nchrome/browser/password_manager/password_manager_util_win.cc\nchrome/browser/payments/android_payment_app_factory_browsertest.cc\nchrome/browser/payments/journey_logger_browsertest.cc\nchrome/browser/payments/manifest_verifier_browsertest.cc\nchrome/browser/payments/payment_request_app_store_billing_browsertest.cc\nchrome/browser/payments/service_worker_payment_app_finder_browsertest.cc\nchrome/browser/performance_manager/mechanisms/termination_target_setter.h\nchrome/browser/performance_manager/policies/discard_eligibility_policy_unittest.cc\nchrome/browser/performance_manager/policies/priority_boost_helpers.cc\nchrome/browser/performance_manager/policies/report_page_processes_policy.cc\nchrome/browser/permissions/notifications_engagement_service_unittest.cc\nchrome/browser/permissions/permission_context_base_permissions_policy_unittest.cc\nchrome/browser/permissions/permission_element_origin_trial_browsertest.cc\nchrome/browser/permissions/permission_manager_unittest.cc\nchrome/browser/permissions/permission_request_manager_unittest.cc\nchrome/browser/permissions/permissions_security_model_interactive_uitest.cc\nchrome/browser/permissions/prediction_service/prediction_service_browsertest.cc\nchrome/browser/permissions/quiet_permission_prompt_model_android.cc\nchrome/browser/policy/cloud/cloud_policy_browsertest.cc\nchrome/browser/policy/cloud/device_management_service_browsertest.cc\nchrome/browser/policy/cloud/policy_invalidator.h\nchrome/browser/policy/cloud/user_policy_signin_service_unittest.cc\nchrome/browser/policy/developer_tools_policy_checker_unittest.cc\nchrome/browser/policy/extension_policy_browsertest.cc\nchrome/browser/policy/messaging_layer/upload/file_upload_impl.cc\nchrome/browser/policy/policy_prefs_browsertest.cc\nchrome/browser/policy/safe_search_policy_test.cc\nchrome/browser/policy/safe_search_policy_test.h\nchrome/browser/policy/serial_allow_usb_devices_for_urls_policy_handler_unittest.cc\nchrome/browser/policy/test/autofill_ai_policy_browsertest.cc\nchrome/browser/policy/test/force_google_safe_search_policy_browsertest.cc\nchrome/browser/policy/test/policy_statistics_collector_browsertest.cc\nchrome/browser/policy/test/policy_test_google_browsertest.cc\nchrome/browser/policy/test/safe_browsing_policy_browsertest.cc\nchrome/browser/policy/test/sharing_policy_browsertest.cc\nchrome/browser/policy/test/system_features_policy_browsertest.cc\nchrome/browser/policy/webhid_device_policy_handler_unittest.cc\nchrome/browser/policy/webusb_allow_devices_for_urls_policy_handler_unittest.cc\nchrome/browser/predictors/autocomplete_action_predictor_table_unittest.cc\nchrome/browser/predictors/lcp_critical_path_predictor/lcp_critical_path_predictor_util.cc\nchrome/browser/predictors/lcp_critical_path_predictor/lcp_critical_path_predictor_util.h\nchrome/browser/predictors/lcp_critical_path_predictor/lcp_critical_path_predictor_util_unittest.cc\nchrome/browser/predictors/lcp_critical_path_predictor/prewarm_http_disk_cache_manager.cc\nchrome/browser/predictors/loading_data_collector_unittest.cc\nchrome/browser/predictors/loading_predictor_browsertest.cc\nchrome/browser/predictors/loading_predictor_config.h\nchrome/browser/predictors/loading_predictor_unittest.cc\nchrome/browser/predictors/loading_stats_collector_unittest.cc\nchrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc\nchrome/browser/predictors/resource_prefetch_predictor_unittest.cc\nchrome/browser/prefetch/prefetch_browsertest.cc\nchrome/browser/prefs/chrome_command_line_pref_store_proxy_unittest.cc\nchrome/browser/prefs/pref_functional_browsertest.cc\nchrome/browser/prefs/pref_metrics_service.cc\nchrome/browser/prefs/session_startup_pref_unittest.cc\nchrome/browser/preloading/new_tab_page_preload/new_tab_page_preload_browsertest.cc\nchrome/browser/preloading/prefetch/no_state_prefetch/no_state_prefetch_unittest.cc\nchrome/browser/preloading/prefetch/no_state_prefetch/prerender_nostate_prefetch_browsertest.cc\nchrome/browser/preloading/prefetch/no_state_prefetch/tools/prerender_test_server/index.html\nchrome/browser/preloading/prefetch/no_state_prefetch/tools/prerender_test_server/prerender_test_server.py\nchrome/browser/preloading/prefetch/prefetch_service/chrome_prefetch_service_delegate.cc\nchrome/browser/preloading/prefetch/zero_suggest_prefetch/zero_suggest_prefetch_tab_helper_browsertest.cc\nchrome/browser/preloading/preview/preview_navigation_throttle.h\nchrome/browser/preloading/preview/preview_zoom_controller.h\nchrome/browser/preloading/search_preload/search_preload_browsertest.cc\nchrome/browser/preloading/search_preload/search_preload_features.h\nchrome/browser/preloading/search_preload/search_preload_pipeline_manager.cc\nchrome/browser/printing/print_preview_dialog_controller_unittest.cc\nchrome/browser/privacy/secure_dns_bridge.cc\nchrome/browser/privacy_sandbox/PRESUBMIT.py\nchrome/browser/privacy_sandbox/privacy_sandbox_activity_types_service.h\nchrome/browser/privacy_sandbox/privacy_sandbox_service_impl_unittest.cc\nchrome/browser/privacy_sandbox/privacy_sandbox_utils_unittest.cc\nchrome/browser/process_singleton_posix.cc\nchrome/browser/process_singleton_posix_unittest.cc\nchrome/browser/process_singleton_win.cc\nchrome/browser/profile_resetter/profile_resetter.cc\nchrome/browser/profile_resetter/profile_resetter_unittest.cc\nchrome/browser/profile_resetter/reset_report_uploader.cc\nchrome/browser/profiles/batch_upload/batch_upload_browsertest.cc\nchrome/browser/profiles/batch_upload/batch_upload_service_unittest.cc\nchrome/browser/profiles/gaia_info_update_service_unittest.cc\nchrome/browser/profiles/profile.h\nchrome/browser/profiles/profile_attributes_entry.h\nchrome/browser/profiles/profile_attributes_storage_unittest.cc\nchrome/browser/profiles/profile_avatar_downloader.cc\nchrome/browser/profiles/profile_downloader_unittest.cc\nchrome/browser/profiles/profile_impl.cc\nchrome/browser/profiles/profile_impl.h\nchrome/browser/profiles/profile_manager.h\nchrome/browser/profiles/profile_manager_browsertest.cc\nchrome/browser/profiles/profile_manager_unittest.cc\nchrome/browser/profiles/profile_shortcut_manager_browsertest_win.cc\nchrome/browser/profiles/profile_shortcut_manager_win.cc\nchrome/browser/profiles/profiles_state_unittest.cc\nchrome/browser/push_messaging/push_messaging_notification_manager.h\nchrome/browser/push_messaging/push_messaging_notification_manager_unittest.cc\nchrome/browser/push_messaging/push_messaging_service_impl.cc\nchrome/browser/push_notification/server_client/push_notification_desktop_api_call_flow_impl_unittest.cc\nchrome/browser/push_notification/server_client/push_notification_server_client_desktop_impl.cc\nchrome/browser/push_notification/server_client/push_notification_server_client_desktop_impl_unittest.cc\nchrome/browser/reading_list/android/reading_list_manager_impl_unittest.cc\nchrome/browser/renderer_context_menu/link_to_text_menu_observer_interactive_uitest.cc\nchrome/browser/renderer_context_menu/render_view_context_menu_browsertest.cc\nchrome/browser/renderer_context_menu/render_view_context_menu_interactive_uitest.cc\nchrome/browser/renderer_context_menu/render_view_context_menu_unittest.cc\nchrome/browser/renderer_host/chrome_navigation_ui_data.h\nchrome/browser/renderer_preferences_util_unittest.cc\nchrome/browser/resource_coordinator/tab_load_tracker_unittest.cc\nchrome/browser/resources/PRESUBMIT.py\nchrome/browser/resources/accessibility/chromevox_helper_manifest.json.jinja2\nchrome/browser/resources/accessibility/embedded_a11y_helper/service_worker.ts\nchrome/browser/resources/accessibility/embedded_a11y_helper_manifest.json.jinja2\nchrome/browser/resources/accessibility/reading_mode_gdocs_helper_manifest.json.jinja2\nchrome/browser/resources/actor_internals/actor_internals.ts\nchrome/browser/resources/app_home/app_home_empty_page.html.ts\nchrome/browser/resources/app_settings/icons.html\nchrome/browser/resources/ash/print_preview/data/destination_store.ts\nchrome/browser/resources/ash/print_preview/ui/icons.html\nchrome/browser/resources/ash/settings/app_management_icons.html\nchrome/browser/resources/ash/settings/controls/v2/settings_row.ts\nchrome/browser/resources/ash/settings/crostini_page/crostini_disk_resize_dialog.html\nchrome/browser/resources/ash/settings/device_page/stylus.ts\nchrome/browser/resources/ash/settings/internal/storybook/settings_dropdown_row_storybook.html\nchrome/browser/resources/ash/settings/internal/storybook/settings_row_storybook.html\nchrome/browser/resources/ash/settings/os_a11y_page/bluetooth_braille_display_manager.ts\nchrome/browser/resources/ash/settings/os_a11y_page/captions_subpage.ts\nchrome/browser/resources/ash/settings/os_a11y_page/keyboard_and_text_input_page.ts\nchrome/browser/resources/ash/settings/os_a11y_page/os_a11y_page.ts\nchrome/browser/resources/ash/settings/os_about_page/channel_switcher_dialog.html\nchrome/browser/resources/ash/settings/os_about_page/os_about_page.html\nchrome/browser/resources/ash/settings/os_apps_page/android_apps_subpage.ts\nchrome/browser/resources/ash/settings/os_languages_page/input_method_util.ts\nchrome/browser/resources/ash/settings/os_people_page/account_manager_settings_card.ts\nchrome/browser/resources/ash/settings/os_people_page/add_user_dialog.ts\nchrome/browser/resources/ash/settings/os_privacy_page/os_privacy_page.ts\nchrome/browser/resources/ash/settings/os_settings_icons.html\nchrome/browser/resources/ash/settings/settings_shared.css\nchrome/browser/resources/bookmarks/command_manager.ts\nchrome/browser/resources/browsing_topics/browsing_topics_internals.html\nchrome/browser/resources/certificate_manager/certificate_manager_icons.html\nchrome/browser/resources/chromeos/about_os_credits.html\nchrome/browser/resources/chromeos/accessibility/accessibility_common/dictation/macros/list_commands_macro.ts\nchrome/browser/resources/chromeos/accessibility/accessibility_common/facegaze/mouse_controller.ts\nchrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/background_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/braille/braille_input_handler_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/editing/editable_text_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/input/command_handler.ts\nchrome/browser/resources/chromeos/accessibility/chromevox/mv2/common/locale_output_helper_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv2/common/spannable_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv2/panel/tutorial_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/background_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/braille/braille_input_handler_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/editing/editable_text_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/input/command_handler.ts\nchrome/browser/resources/chromeos/accessibility/chromevox/mv3/common/locale_output_helper_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv3/common/spannable_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox/mv3/panel/tutorial_test.js\nchrome/browser/resources/chromeos/accessibility/chromevox_manifest.json.jinja2\nchrome/browser/resources/chromeos/accessibility/common/cursors/cursors_test.js\nchrome/browser/resources/chromeos/accessibility/common/cursors/recovery_strategy_test.js\nchrome/browser/resources/chromeos/accessibility/common/flags.ts\nchrome/browser/resources/chromeos/accessibility/common/node_navigation_utils.ts\nchrome/browser/resources/chromeos/accessibility/common/node_utils.ts\nchrome/browser/resources/chromeos/accessibility/common/paragraph_utils.ts\nchrome/browser/resources/chromeos/accessibility/common/paragraph_utils_unittest.js\nchrome/browser/resources/chromeos/accessibility/common/testing/mock_tts.js\nchrome/browser/resources/chromeos/accessibility/common/tutorial/chromevox_tutorial.js\nchrome/browser/resources/chromeos/accessibility/definitions/command_line_private.d.ts\nchrome/browser/resources/chromeos/accessibility/select_to_speak/select_to_speak.ts\nchrome/browser/resources/chromeos/accessibility/select_to_speak/select_to_speak_navigation_control_test.js\nchrome/browser/resources/chromeos/accessibility/select_to_speak/select_to_speak_unittest.js\nchrome/browser/resources/chromeos/accessibility/select_to_speak_manifest.json.jinja2\nchrome/browser/resources/chromeos/accessibility/strings/chromevox_strings.grdp\nchrome/browser/resources/chromeos/accessibility/switch_access/mv3/item_scan_manager_test.js\nchrome/browser/resources/chromeos/accessibility/switch_access/mv3/switch_access_predicate_test.js\nchrome/browser/resources/chromeos/accessibility/switch_access_manifest.json.jinja2\nchrome/browser/resources/chromeos/add_supervision/add_supervision_ui.ts\nchrome/browser/resources/chromeos/app_install/app_install_dialog.html\nchrome/browser/resources/chromeos/arc_support/background.js\nchrome/browser/resources/chromeos/arc_support/bubble.js\nchrome/browser/resources/chromeos/arc_support/playstore.js\nchrome/browser/resources/chromeos/borealis_installer/borealis_installer_icons.html\nchrome/browser/resources/chromeos/borealis_installer/error_dialog.ts\nchrome/browser/resources/chromeos/echo/manifest.json\nchrome/browser/resources/chromeos/edu_coexistence/edu_coexistence_controller.ts\nchrome/browser/resources/chromeos/edu_coexistence/edu_coexistence_ui.ts\nchrome/browser/resources/chromeos/emoji_picker/emoji_button.ts\nchrome/browser/resources/chromeos/emoji_picker/emoji_picker_api_proxy.ts\nchrome/browser/resources/chromeos/emoji_picker/icons.html\nchrome/browser/resources/chromeos/emoji_picker/prefix_search.ts\nchrome/browser/resources/chromeos/emulator/icons.html\nchrome/browser/resources/chromeos/input_method/google_xkb_manifest.json\nchrome/browser/resources/chromeos/login/components/web_view_loader.ts\nchrome/browser/resources/chromeos/login/debug/debug.ts\nchrome/browser/resources/chromeos/login/debug/quick_start_debugger.ts\nchrome/browser/resources/chromeos/login/screens/common/marketing_opt_in.html\nchrome/browser/resources/chromeos/login/screens/login/encryption_migration.ts\nchrome/browser/resources/chromeos/login/screens/login/offline_login.html\nchrome/browser/resources/chromeos/login/screens/login/offline_login.ts\nchrome/browser/resources/chromeos/login/screens/oobe/fjord_station_setup.ts\nchrome/browser/resources/chromeos/multidevice_internals/browser_tabs_metadata_form.js\nchrome/browser/resources/chromeos/nearby_share/shared/nearby_shared_icons.html\nchrome/browser/resources/chromeos/nearby_share/shared/nearby_shared_share_type_icons.html\nchrome/browser/resources/chromeos/parent_access/parent_access_ui.ts\nchrome/browser/resources/contextual_tasks/internals/app.ts\nchrome/browser/resources/data_sharing/dummy_data_sharing_sdk.ts\nchrome/browser/resources/default_apps/external_extensions.json\nchrome/browser/resources/downloads/icons.html\nchrome/browser/resources/extensions/detail_view.ts\nchrome/browser/resources/extensions/mv2_deprecation_panel.ts\nchrome/browser/resources/extensions_zero_state_promo/zero_state_promo_app.html.ts\nchrome/browser/resources/feedback/js/feedback_util.ts\nchrome/browser/resources/gaia_auth_host/PRESUBMIT.py\nchrome/browser/resources/gaia_auth_host/authenticator.js\nchrome/browser/resources/gaia_auth_host/saml_handler.js\nchrome/browser/resources/gaia_auth_host/saml_password_attributes.js\nchrome/browser/resources/glic/fre/fre_app_controller.ts\nchrome/browser/resources/glic/glic_api_impl/client/image_utils.ts\nchrome/browser/resources/glic/url_pattern.d.ts\nchrome/browser/resources/glic/webview.ts\nchrome/browser/resources/hangout_services/manifest_v2.json\nchrome/browser/resources/hangout_services/manifest_v3.json\nchrome/browser/resources/inspect/inspect.html\nchrome/browser/resources/key_value_pair_viewer_shared/key_value_pair_entry.ts\nchrome/browser/resources/management/promotion_banner.ts\nchrome/browser/resources/media/mei_preload/manifest.json\nchrome/browser/resources/media/webrtc_logs.ts\nchrome/browser/resources/media_router/cast_feedback/cast_feedback_ui.ts\nchrome/browser/resources/net_internals/domain_security_policy_view.js\nchrome/browser/resources/net_internals/index.html\nchrome/browser/resources/network_speech_synthesis/manifest.json\nchrome/browser/resources/network_speech_synthesis/mv3/manifest.json\nchrome/browser/resources/network_speech_synthesis/mv3/tts_extension.js\nchrome/browser/resources/network_speech_synthesis/tts_extension.js\nchrome/browser/resources/new_tab_page/app.ts\nchrome/browser/resources/new_tab_page/doodle_share_dialog.ts\nchrome/browser/resources/new_tab_page/lens_form.html\nchrome/browser/resources/new_tab_page/lens_form.ts\nchrome/browser/resources/new_tab_page/modules/calendar/google_calendar_module.html\nchrome/browser/resources/new_tab_page/transparency.ts\nchrome/browser/resources/new_tab_page/voice_search_overlay.ts\nchrome/browser/resources/omnibox/logging/logs_app.ts\nchrome/browser/resources/omnibox/omnibox.html\nchrome/browser/resources/omnibox/omnibox.ts\nchrome/browser/resources/omnibox/omnibox_output.ts\nchrome/browser/resources/omnibox/omnibox_util.ts\nchrome/browser/resources/on_device_internals/event_log.ts\nchrome/browser/resources/pdf/pdf_viewer_utils.ts\nchrome/browser/resources/print_preview/data/destination_store.ts\nchrome/browser/resources/print_preview/ui/icons.html\nchrome/browser/resources/privacy_sandbox/internals/private_state_tokens/list_container.html.ts\nchrome/browser/resources/privacy_sandbox/internals/related_website_sets/list_container.html.ts\nchrome/browser/resources/reading_mode_gdocs_helper/manifest.json\nchrome/browser/resources/reset_password/reset_password.html\nchrome/browser/resources/segmentation_internals/segmentation_survey.ts\nchrome/browser/resources/settings/a11y_page/a11y_page.ts\nchrome/browser/resources/settings/a11y_page/captions_page.ts\nchrome/browser/resources/settings/about_page/about_page.html\nchrome/browser/resources/settings/about_page/about_page.ts\nchrome/browser/resources/settings/appearance_page/appearance_page.ts\nchrome/browser/resources/settings/icons.html\nchrome/browser/resources/settings/languages_page/edit_dictionary_page.ts\nchrome/browser/resources/settings/settings_shared.css\nchrome/browser/resources/side_panel/read_anything/app/read_anything_toolbar.ts\nchrome/browser/resources/side_panel/read_anything/read_aloud/voice_language_conversions.ts\nchrome/browser/resources/suggest_internals/request.ts\nchrome/browser/resources/usb_internals/descriptor_panel.ts\nchrome/browser/resources/webstore_app/manifest.json\nchrome/browser/resources/webui_gallery/demos/card/card_demo.ts\nchrome/browser/resources/webui_gallery/demos/cr_input/cr_input_demo.html.ts\nchrome/browser/resources/webui_gallery/demos/cr_url_list_item/cr_url_list_item_demo.html.ts\nchrome/browser/resources/webui_gallery/demos/side_panel/sp_components_demo.ts\nchrome/browser/rlz/chrome_rlz_tracker_web_contents_observer_unittest.cc\nchrome/browser/safe_browsing/chrome_enterprise_url_lookup_service_unittest.cc\nchrome/browser/safe_browsing/chrome_password_protection_service.cc\nchrome/browser/safe_browsing/chrome_password_protection_service_browsertest.cc\nchrome/browser/safe_browsing/chrome_password_protection_service_unittest.cc\nchrome/browser/safe_browsing/chrome_password_reuse_detection_manager_client_unittest.cc\nchrome/browser/safe_browsing/chrome_ping_manager_factory_unittest.cc\nchrome/browser/safe_browsing/client_side_detection_host_unittest.cc\nchrome/browser/safe_browsing/cloud_content_scanning/cloud_binary_upload_service.cc\nchrome/browser/safe_browsing/cloud_content_scanning/cloud_binary_upload_service_unittest.cc\nchrome/browser/safe_browsing/cloud_content_scanning/multipart_uploader_unittest.cc\nchrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc\nchrome/browser/safe_browsing/download_protection/deep_scanning_browsertest.cc\nchrome/browser/safe_browsing/download_protection/deep_scanning_request_unittest.cc\nchrome/browser/safe_browsing/download_protection/download_feedback.cc\nchrome/browser/safe_browsing/download_protection/download_protection_delegate_android.cc\nchrome/browser/safe_browsing/download_protection/download_protection_delegate_desktop.cc\nchrome/browser/safe_browsing/download_protection/download_protection_service_unittest.cc\nchrome/browser/safe_browsing/extension_telemetry/extension_telemetry_service_browsertest.cc\nchrome/browser/safe_browsing/extension_telemetry/extension_telemetry_service_unittest.cc\nchrome/browser/safe_browsing/extension_telemetry/extension_telemetry_uploader.cc\nchrome/browser/safe_browsing/extension_telemetry/potential_password_theft_signal_processor_unittest.cc\nchrome/browser/safe_browsing/extension_telemetry/remote_host_contacted_signal_processor_unittest.cc\nchrome/browser/safe_browsing/gemini_antiscam_protection/gemini_antiscam_protection_service_browsertest.cc\nchrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc\nchrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc\nchrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc\nchrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc\nchrome/browser/safe_browsing/metrics/bundled_settings_metrics_provider_unittest.cc\nchrome/browser/safe_browsing/notification_content_detection/notification_content_detection_service_browsertest.cc\nchrome/browser/safe_browsing/notification_telemetry/notification_telemetry_service.cc\nchrome/browser/safe_browsing/notification_telemetry/notification_telemetry_service_unittest.cc\nchrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc\nchrome/browser/safe_browsing/tailored_security/chrome_tailored_security_service_unittest.cc\nchrome/browser/safe_browsing/tailored_security/tailored_security_url_observer_unittest.cc\nchrome/browser/save_to_drive/drive_uploader.cc\nchrome/browser/save_to_drive/drive_uploader_unittest.cc\nchrome/browser/save_to_drive/multipart_drive_uploader.cc\nchrome/browser/save_to_drive/multipart_drive_uploader_unittest.cc\nchrome/browser/save_to_drive/resumable_drive_uploader.cc\nchrome/browser/save_to_drive/resumable_drive_uploader_unittest.cc\nchrome/browser/save_to_drive/save_to_drive_flow_browsertest.cc\nchrome/browser/search/background/ntp_custom_background_service.cc\nchrome/browser/search/search.h\nchrome/browser/search_engine_choice/search_engine_choice_dialog_browsertest.cc\nchrome/browser/search_engines/template_url_parser_unittest.cc\nchrome/browser/search_engines/template_url_service_sync_unittest.cc\nchrome/browser/search_engines/template_url_service_test_util.cc\nchrome/browser/search_engines/template_url_service_unittest.cc\nchrome/browser/segmentation_platform/segmentation_platform_service_factory_unittest.cc\nchrome/browser/segmentation_platform/service_browsertest.cc\nchrome/browser/send_tab_to_self/desktop_notification_handler_browsertest.cc\nchrome/browser/serial/chrome_serial_browsertest.cc\nchrome/browser/serial/serial_chooser_context_unittest.cc\nchrome/browser/serial/serial_policy_allowed_ports_unittest.cc\nchrome/browser/sessions/app_session_service_unittest.cc\nchrome/browser/sessions/session_restore_browsertest.cc\nchrome/browser/sessions/session_restore_observer_unittest.cc\nchrome/browser/sessions/session_service.h\nchrome/browser/sessions/session_service_base.cc\nchrome/browser/sessions/session_service_unittest.cc\nchrome/browser/sessions/tab_restore_browsertest.cc\nchrome/browser/sessions/tab_restore_service_unittest.cc\nchrome/browser/share/default_ranking_android.cc\nchrome/browser/sharing/click_to_call/click_to_call_utils_unittest.cc\nchrome/browser/sharing/shared_clipboard/remote_copy_message_handler.cc\nchrome/browser/sharing_hub/sharing_hub_model_unittest.cc\nchrome/browser/shell_integration_linux_unittest.cc\nchrome/browser/signin/account_id_from_account_info_unittest.cc\nchrome/browser/signin/accounts_policy_manager_unittest.cc\nchrome/browser/signin/binding_key_registration_token_helper_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_cookie_controller_impl_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_cookie_observer_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_cookie_refresh_service_impl_browsertest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_cookie_refresh_service_impl_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_oauth_multilogin_delegate_impl.cc\nchrome/browser/signin/bound_session_credentials/bound_session_oauth_multilogin_delegate_impl_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_params_storage_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_params_util_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_debug_report_fetcher_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_fetcher.cc\nchrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_fetcher_impl_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_registration_fetcher_impl.cc\nchrome/browser/signin/bound_session_credentials/bound_session_registration_fetcher_impl_unittest.cc\nchrome/browser/signin/bound_session_credentials/bound_session_registration_fetcher_param_unittest.cc\nchrome/browser/signin/bound_session_credentials/dice_bound_session_cookie_service_unittest.cc\nchrome/browser/signin/bound_session_credentials/session_binding_helper_unittest.cc\nchrome/browser/signin/bound_session_credentials/throttled_gaia_auth_fetcher_unittest.cc\nchrome/browser/signin/bound_session_oauth_multilogin_browsertest.cc\nchrome/browser/signin/chrome_signin_client_browsertest.cc\nchrome/browser/signin/chrome_signin_helper_unittest.cc\nchrome/browser/signin/chrome_signin_proxying_url_loader_factory.h\nchrome/browser/signin/chrome_signin_proxying_url_loader_factory_unittest.cc\nchrome/browser/signin/chrome_signin_url_loader_throttle_unittest.cc\nchrome/browser/signin/chromeos_mirror_account_consistency_browsertest.cc\nchrome/browser/signin/dice_browsertest.cc\nchrome/browser/signin/dice_response_handler.cc\nchrome/browser/signin/dice_response_handler_unittest.cc\nchrome/browser/signin/dice_signed_in_profile_creator_unittest.cc\nchrome/browser/signin/dice_tab_helper_unittest.cc\nchrome/browser/signin/dice_web_signin_interceptor_browsertest.cc\nchrome/browser/signin/dice_web_signin_interceptor_unittest.cc\nchrome/browser/signin/e2e_tests/live_test.cc\nchrome/browser/signin/header_modification_delegate_impl.cc\nchrome/browser/signin/header_modification_delegate_impl_unittest.cc\nchrome/browser/signin/mirror_browsertest.cc\nchrome/browser/signin/mirror_interactive_uitest.cc\nchrome/browser/signin/process_dice_header_delegate_impl_unittest.cc\nchrome/browser/signin/signin_promo_unittest.cc\nchrome/browser/signin/signin_ui_util.cc\nchrome/browser/signin/signin_ui_util_browsertest.cc\nchrome/browser/signin/signin_util.cc\nchrome/browser/signin/signin_util_unittest.cc\nchrome/browser/signin/signin_util_win_browsertest.cc\nchrome/browser/skills/skills_update_observer_unittest.cc\nchrome/browser/smart_card/smart_card_reader_tracker_impl.h\nchrome/browser/ssl/ask_before_http_dialog_controller.cc\nchrome/browser/ssl/cert_verifier_platform_browser_test.h\nchrome/browser/ssl/connection_help_tab_helper.cc\nchrome/browser/ssl/https_first_mode_settings_tracker_unittest.cc\nchrome/browser/ssl/https_upgrades_browsertest.cc\nchrome/browser/ssl/sct_reporting_service.cc\nchrome/browser/ssl/ssl_browsertest.cc\nchrome/browser/ssl/stateful_ssl_host_state_delegate_test.cc\nchrome/browser/ssl/typed_navigation_upgrade_throttle_interactive_uitest.cc\nchrome/browser/startup_data.h\nchrome/browser/storage/persistent_storage_permission_context_unittest.cc\nchrome/browser/storage/shared_storage_browsertest.cc\nchrome/browser/subresource_filter/subresource_filter_browsertest.cc\nchrome/browser/subresource_filter/subresource_filter_fenced_frame_browsertest.cc\nchrome/browser/supervised_user/android/java/res/drawable/ic_family_link.xml\nchrome/browser/supervised_user/kids_profile_interactive_uitest.cc\nchrome/browser/supervised_user/linux_mac_windows/parent_access_dialog_result_observer_browsertest.cc\nchrome/browser/supervised_user/linux_mac_windows/supervised_user_web_content_handler_impl_browsertest.cc\nchrome/browser/supervised_user/metrics_service_accessor_delegate.h\nchrome/browser/supervised_user/supervised_user_browser_utils.cc\nchrome/browser/supervised_user/supervised_user_browser_utils_unittest.cc\nchrome/browser/supervised_user/supervised_user_google_auth_navigation_throttle.cc\nchrome/browser/supervised_user/supervised_user_google_auth_navigation_throttle_unittest.cc\nchrome/browser/supervised_user/supervised_user_navigation_observer_android_browsertest.cc\nchrome/browser/supervised_user/supervised_user_navigation_throttle_browsertest.cc\nchrome/browser/supervised_user/supervised_user_pending_state_navigation_browsertest.cc\nchrome/browser/supervised_user/supervised_user_service_android_browsertest.cc\nchrome/browser/supervised_user/supervised_user_service_browsertest.cc\nchrome/browser/supervised_user/supervised_user_test_util.cc\nchrome/browser/supervised_user/supervised_user_url_filter_extensions_unittest.cc\nchrome/browser/supervised_user/url_filter_interactive_uitest.cc\nchrome/browser/support_tool/ash/system_state_data_collector.cc\nchrome/browser/sync/android/fake_server_helper_android.cc\nchrome/browser/sync/sessions/sync_sessions_router_tab_helper.h\nchrome/browser/sync/sync_ui_util.cc\nchrome/browser/sync/test/integration/cookie_helper.cc\nchrome/browser/sync/test/integration/fake_sync_signin_delegate_android.cc\nchrome/browser/sync/test/integration/fake_sync_signin_delegate_desktop.cc\nchrome/browser/sync/test/integration/password_manager_sync_test.cc\nchrome/browser/sync/test/integration/password_sharing_invitation_helper.cc\nchrome/browser/sync/test/integration/passwords_helper.cc\nchrome/browser/sync/test/integration/single_client_bookmarks_sync_test.cc\nchrome/browser/sync/test/integration/single_client_custom_passphrase_sync_test.cc\nchrome/browser/sync/test/integration/single_client_extension_apps_sync_test.cc\nchrome/browser/sync/test/integration/single_client_nigori_sync_test.cc\nchrome/browser/sync/test/integration/single_client_passwords_sync_test.cc\nchrome/browser/sync/test/integration/single_client_preferences_sync_test.cc\nchrome/browser/sync/test/integration/single_client_send_tab_to_self_sync_test.cc\nchrome/browser/sync/test/integration/single_client_shared_tab_group_data_sync_test.cc\nchrome/browser/sync/test/integration/single_client_wallet_credential_sync_test.cc\nchrome/browser/sync/test/integration/sync_auth_test.cc\nchrome/browser/sync/test/integration/sync_errors_test.cc\nchrome/browser/sync/test/integration/sync_service_impl_harness.cc\nchrome/browser/sync/test/integration/sync_service_impl_harness.h\nchrome/browser/sync/test/integration/sync_test.cc\nchrome/browser/sync/test/integration/sync_test.h\nchrome/browser/sync/test/integration/two_client_bookmarks_sync_test.cc\nchrome/browser/sync/test/integration/two_client_custom_passphrase_sync_test.cc\nchrome/browser/sync/test/integration/two_client_history_sync_test.cc\nchrome/browser/sync/test/integration/two_client_preferences_sync_test.cc\nchrome/browser/sync/test/integration/two_client_shared_tab_group_data_sync_test.cc\nchrome/browser/sync/test/integration/two_client_user_events_sync_test.cc\nchrome/browser/sync/test/integration/web_apps/two_client_web_apps_bmo_sync_test.cc\nchrome/browser/sync/test/integration/web_apps/two_client_web_apps_sync_test.cc\nchrome/browser/sync_file_system/local/local_file_sync_context_unittest.cc\nchrome/browser/sync_file_system/sync_file_system_service.h\nchrome/browser/tab_contents/navigation_metrics_recorder_browsertest.cc\nchrome/browser/tab_list/tab_list_interface_observer.h\nchrome/browser/tab_ui/android/java/strings/android_tab_ui_strings.grd\nchrome/browser/themes/theme_syncable_service.cc\nchrome/browser/translate/translate_manager_browsertest.cc\nchrome/browser/trusted_vault/trusted_vault_encryption_keys_tab_helper_browsertest.cc\nchrome/browser/ui/accelerator_table.cc\nchrome/browser/ui/android/extensions/extension_action_popup_contents.cc\nchrome/browser/ui/android/extensions/windowing/test/test_extension/default_popup.html\nchrome/browser/ui/android/strings/android_chrome_strings.grd\nchrome/browser/ui/ash/app_list/app_list_interactive_uitest.cc\nchrome/browser/ui/ash/arc/arc_open_url_delegate_impl_browsertest.cc\nchrome/browser/ui/ash/birch/birch_browsertest.cc\nchrome/browser/ui/ash/birch/birch_calendar_fetcher.cc\nchrome/browser/ui/ash/birch/birch_calendar_fetcher_unittest.cc\nchrome/browser/ui/ash/birch/birch_coral_provider_browsertest.cc\nchrome/browser/ui/ash/birch/birch_keyed_service_unittest.cc\nchrome/browser/ui/ash/birch/birch_lost_media_provider.cc\nchrome/browser/ui/ash/birch/refresh_token_waiter_unittest.cc\nchrome/browser/ui/ash/capture_mode/chrome_capture_mode_delegate.cc\nchrome/browser/ui/ash/capture_mode/sunfish_browsertest.cc\nchrome/browser/ui/ash/desks/desks_client_browsertest.cc\nchrome/browser/ui/ash/focus_mode/certificate_manager.cc\nchrome/browser/ui/ash/focus_mode/certificate_manager_unittest.cc\nchrome/browser/ui/ash/focus_mode/signature_builder.h\nchrome/browser/ui/ash/glanceables/glanceables_browsertest.cc\nchrome/browser/ui/ash/glanceables/glanceables_classroom_client_impl.cc\nchrome/browser/ui/ash/glanceables/glanceables_classroom_client_impl_unittest.cc\nchrome/browser/ui/ash/glanceables/glanceables_keyed_service.cc\nchrome/browser/ui/ash/google_one/google_one_offer_iph_tab_helper.cc\nchrome/browser/ui/ash/google_one/google_one_offer_iph_tab_helper_browsertest.cc\nchrome/browser/ui/ash/google_one/google_one_offer_iph_tab_helper_constants.h\nchrome/browser/ui/ash/holding_space/holding_space_keyed_service_unittest.cc\nchrome/browser/ui/ash/in_session_auth/in_session_auth_dialog_client.cc\nchrome/browser/ui/ash/login/captive_portal_view.cc\nchrome/browser/ui/ash/network/network_portal_signin_controller_unittest.cc\nchrome/browser/ui/ash/projector/pending_screencast_manager.cc\nchrome/browser/ui/ash/projector/pending_screencast_manager_browsertest.cc\nchrome/browser/ui/ash/projector/projector_navigation_throttle_browsertest.cc\nchrome/browser/ui/ash/quick_answers/quick_answers_state_ash_unittest.cc\nchrome/browser/ui/ash/quick_answers/ui/quick_answers_util.cc\nchrome/browser/ui/ash/quick_answers/ui/quick_answers_view_unittest.cc\nchrome/browser/ui/ash/quick_insert/quick_insert_interactive_uitest.cc\nchrome/browser/ui/ash/session/session_controller_client_impl_unittest.cc\nchrome/browser/ui/ash/shelf/app_shortcut_shelf_item_controller.cc\nchrome/browser/ui/ash/shelf/browser_shortcut_shelf_item_controller.cc\nchrome/browser/ui/ash/shelf/chrome_shelf_controller_unittest.cc\nchrome/browser/ui/ash/shelf/chrome_shelf_prefs_unittest.cc\nchrome/browser/ui/ash/shell_delegate/chrome_shell_delegate.cc\nchrome/browser/ui/ash/system/system_tray_client_impl.cc\nchrome/browser/ui/ash/system/system_tray_client_impl_browsertest.cc\nchrome/browser/ui/ash/wallpaper/wallpaper_controller_client_impl.cc\nchrome/browser/ui/ash/web_view/ash_web_view_impl_browsertest.cc\nchrome/browser/ui/ash/wm/coral_browsertest.cc\nchrome/browser/ui/autofill/address_editor_controller_unittest.cc\nchrome/browser/ui/autofill/autofill_keyboard_accessory_controller_impl.cc\nchrome/browser/ui/autofill/chrome_autofill_client.cc\nchrome/browser/ui/autofill/delete_address_profile_dialog_controller_impl_browsertest.cc\nchrome/browser/ui/autofill/payments/offer_notification_bubble_controller_impl_unittest.cc\nchrome/browser/ui/autofill/payments/save_card_bubble_controller_impl.cc\nchrome/browser/ui/blocked_content/popup_blocker_browsertest.cc\nchrome/browser/ui/blocked_content/tab_under_navigation_throttle.h\nchrome/browser/ui/bookmarks/bookmark_browsertest.cc\nchrome/browser/ui/bookmarks/bookmark_context_menu_controller_unittest.cc\nchrome/browser/ui/bookmarks/bookmark_ui_operations_helper_unittest.cc\nchrome/browser/ui/bookmarks/bookmark_ui_utils_desktop_unittest.cc\nchrome/browser/ui/bookmarks/bookmark_utils_unittest.cc\nchrome/browser/ui/browser_browsertest.cc\nchrome/browser/ui/browser_command_controller.cc\nchrome/browser/ui/browser_command_controller_unittest.cc\nchrome/browser/ui/browser_content_setting_bubble_model_delegate.cc\nchrome/browser/ui/browser_finder.h\nchrome/browser/ui/browser_finder_unittest.cc\nchrome/browser/ui/browser_focus_interactive_uitest.cc\nchrome/browser/ui/browser_instant_controller_browsertest.cc\nchrome/browser/ui/browser_navigator_browsertest.cc\nchrome/browser/ui/browser_navigator_browsertest_chromeos.cc\nchrome/browser/ui/browser_navigator_params.h\nchrome/browser/ui/browser_tabstrip_browsertest_chromeos.cc\nchrome/browser/ui/browser_window/test/android/browser_window_android_browsertest_base.cc\nchrome/browser/ui/chrome_pages.cc\nchrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_browsertest.mm\nchrome/browser/ui/cocoa/applescript/tab_applescript.mm\nchrome/browser/ui/cocoa/applescript/window_applescript_browsertest.mm\nchrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge_unittest.mm\nchrome/browser/ui/cocoa/browser_window_mac_browsertest.mm\nchrome/browser/ui/cocoa/history_menu_bridge_unittest.mm\nchrome/browser/ui/cocoa/history_menu_cocoa_controller_unittest.mm\nchrome/browser/ui/cocoa/share_menu_controller.mm\nchrome/browser/ui/cocoa/share_menu_controller_browsertest.mm\nchrome/browser/ui/commerce/price_tracking_page_action_controller.cc\nchrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc\nchrome/browser/ui/content_settings/content_setting_image_model_unittest.cc\nchrome/browser/ui/crypto_module_password_dialog_nss.cc\nchrome/browser/ui/dialogs/outdated_upgrade_bubble.cc\nchrome/browser/ui/extensions/controlled_home_dialog_controller_unittest.cc\nchrome/browser/ui/extensions/extension_action_view_model_browsertest.cc\nchrome/browser/ui/extensions/extension_uninstall_dialog_impl_browsertest.cc\nchrome/browser/ui/extensions/hosted_app_browsertest.cc\nchrome/browser/ui/extensions/installation_error_infobar_delegate.cc\nchrome/browser/ui/file_system_access/file_system_access_permission_dialog_browsertest.cc\nchrome/browser/ui/global_media_controls/presentation_request_notification_producer_unittest.cc\nchrome/browser/ui/hid/hid_chooser_controller_unittest.cc\nchrome/browser/ui/intent_picker_tab_helper_unittest.cc\nchrome/browser/ui/lens/lens_media_link_handler.cc\nchrome/browser/ui/lens/lens_media_link_handler_unittest.cc\nchrome/browser/ui/lens/lens_overlay_controller_browsertest.cc\nchrome/browser/ui/lens/lens_overlay_gen204_controller.cc\nchrome/browser/ui/lens/lens_overlay_languages_controller.cc\nchrome/browser/ui/lens/lens_overlay_live_test.cc\nchrome/browser/ui/lens/lens_overlay_query_controller.cc\nchrome/browser/ui/lens/lens_overlay_query_controller_unittest.cc\nchrome/browser/ui/lens/lens_overlay_side_panel_coordinator.cc\nchrome/browser/ui/lens/lens_overlay_side_panel_navigation_throttle_unittest.cc\nchrome/browser/ui/lens/lens_overlay_untrusted_ui.cc\nchrome/browser/ui/lens/lens_overlay_url_builder.cc\nchrome/browser/ui/lens/lens_overlay_url_builder_unittest.cc\nchrome/browser/ui/lens/lens_query_flow_router_unittest.cc\nchrome/browser/ui/lens/lens_search_controller_contextual_tasks_browsertest.cc\nchrome/browser/ui/lens/lens_side_panel_untrusted_ui.cc\nchrome/browser/ui/login/http_auth_coordinator.h\nchrome/browser/ui/managed_ui_browsertest.cc\nchrome/browser/ui/media_router/media_router_ui_helper_unittest.cc\nchrome/browser/ui/media_router/media_router_ui_unittest.cc\nchrome/browser/ui/media_router/query_result_manager.h\nchrome/browser/ui/omnibox/omnibox_edit_model.cc\nchrome/browser/ui/omnibox/omnibox_edit_model.h\nchrome/browser/ui/omnibox/omnibox_edit_model_unittest.cc\nchrome/browser/ui/omnibox/omnibox_metrics_browsertest.cc\nchrome/browser/ui/omnibox/omnibox_pedal_implementations.cc\nchrome/browser/ui/omnibox/omnibox_view_browsertest.cc\nchrome/browser/ui/omnibox/omnibox_view_unittest.cc\nchrome/browser/ui/page_info/chrome_page_info_ui_delegate.cc\nchrome/browser/ui/passwords/bubble_controllers/move_to_account_store_bubble_controller_unittest.cc\nchrome/browser/ui/passwords/bubble_controllers/save_update_bubble_controller_unittest.cc\nchrome/browser/ui/passwords/display_account_info_unittest.cc\nchrome/browser/ui/passwords/manage_passwords_state_unittest.cc\nchrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc\nchrome/browser/ui/passwords/password_cross_domain_confirmation_popup_controller_impl_unittest.cc\nchrome/browser/ui/passwords/password_manager_navigation_throttle_unittest.cc\nchrome/browser/ui/passwords/well_known_change_password_navigation_throttle.cc\nchrome/browser/ui/passwords/well_known_change_password_navigation_throttle_browsertest.cc\nchrome/browser/ui/passwords/well_known_change_password_navigation_throttle_unittest.cc\nchrome/browser/ui/plus_addresses/android/all_plus_addresses_bottom_sheet_view_browsertest.cc\nchrome/browser/ui/plus_addresses/plus_address_menu_model_unittest.cc\nchrome/browser/ui/profiles/profile_picker_unittest.cc\nchrome/browser/ui/read_anything/read_anything_entry_point_controller.cc\nchrome/browser/ui/read_anything/read_anything_entry_point_controller_browsertest.cc\nchrome/browser/ui/safety_hub/disruptive_notification_permissions_manager_unittest.cc\nchrome/browser/ui/safety_hub/notification_permission_review_service_unittest.cc\nchrome/browser/ui/safety_hub/password_status_check_service_unittest.cc\nchrome/browser/ui/search/ntp_user_data_logger_unittest.cc\nchrome/browser/ui/search/search_tab_helper.h\nchrome/browser/ui/search/third_party_ntp_browsertest.cc\nchrome/browser/ui/search_engines/template_url_table_model_unittest.cc\nchrome/browser/ui/signin/account_settings_page_pixel_browsertest.cc\nchrome/browser/ui/signin/dice_migration_service.cc\nchrome/browser/ui/signin/dice_migration_service_browsertest.cc\nchrome/browser/ui/signin/dice_migration_service_interactive_uitest.cc\nchrome/browser/ui/signin/dice_migration_service_pixel_browsertest.cc\nchrome/browser/ui/signin/promos/signin_promo_tab_helper_browsertest.cc\nchrome/browser/ui/signin/signin_view_controller.cc\nchrome/browser/ui/signin/signin_view_controller_browsertest.cc\nchrome/browser/ui/signin/signin_view_controller_interactive_uitest.cc\nchrome/browser/ui/singleton_tabs_browsertest.cc\nchrome/browser/ui/startup/chrome_for_testing_infobar_delegate.cc\nchrome/browser/ui/startup/credential_provider_signin_dialog_win_test_data.cc\nchrome/browser/ui/startup/first_run_service_unittest.cc\nchrome/browser/ui/startup/google_chrome_scheme_util_unittest.cc\nchrome/browser/ui/startup/launch_mode_recorder_unittest.cc\nchrome/browser/ui/startup/startup_browser_creator_browsertest.cc\nchrome/browser/ui/startup/startup_tab_provider_unittest.cc\nchrome/browser/ui/tab_helpers.cc\nchrome/browser/ui/tab_helpers.h\nchrome/browser/ui/tab_sharing/tab_sharing_infobar_delegate_unittest.cc\nchrome/browser/ui/tabs/pinned_tab_codec_browsertest.cc\nchrome/browser/ui/tabs/pinned_tab_service_browsertest.cc\nchrome/browser/ui/tabs/recent_tabs_sub_menu_model_browsertest.cc\nchrome/browser/ui/tabs/saved_tab_groups/collaboration_messaging_page_action_controller_unittest.cc\nchrome/browser/ui/tabs/saved_tab_groups/collaboration_messaging_tab_data_unittest.cc\nchrome/browser/ui/tabs/saved_tab_groups/instant_message_queue_processor_unittest.cc\nchrome/browser/ui/tabs/saved_tab_groups/tab_group_menu_utils_unittest.cc\nchrome/browser/ui/tabs/saved_tab_groups/tab_group_sync_delegate_browsertest.cc\nchrome/browser/ui/tabs/tab_strip_api/tab_strip_service_impl_browsertest.cc\nchrome/browser/ui/tabs/tab_strip_model_unittest.cc\nchrome/browser/ui/test/popup_browsertest.cc\nchrome/browser/ui/toolbar/app_menu_model_interactive_uitest.cc\nchrome/browser/ui/toolbar/cast/cast_toolbar_button_util.cc\nchrome/browser/ui/toolbar/location_bar_model_unittest.cc\nchrome/browser/ui/url_identity_unittest.cc\nchrome/browser/ui/views/apps/app_dialog/app_uninstall_dialog_view.cc\nchrome/browser/ui/views/autofill/autofill_ai/autofill_ai_import_data_bubble_view_browsertest.cc\nchrome/browser/ui/views/autofill/payments/filled_card_information_bubble_views_interactive_uitest.cc\nchrome/browser/ui/views/autofill/payments/iban_bubble_view_interactive_uitest.cc\nchrome/browser/ui/views/autofill/payments/offer_notification_bubble_views_test_base.cc\nchrome/browser/ui/views/autofill/payments/save_card_bubble_views_browsertest.cc\nchrome/browser/ui/views/autofill/popup/password_favicon_loader_unittest.cc\nchrome/browser/ui/views/autofill/popup/popup_row_factory_utils_browsertest.cc\nchrome/browser/ui/views/autofill/popup/popup_separator_view.h\nchrome/browser/ui/views/autofill/popup/popup_view_views_browsertest.cc\nchrome/browser/ui/views/autofill/popup/popup_view_views_unittest.cc\nchrome/browser/ui/views/bookmarks/bookmark_account_storage_move_dialog_interactive_uitest.cc\nchrome/browser/ui/views/bookmarks/bookmark_bar_view_browsertest.cc\nchrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc\nchrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc\nchrome/browser/ui/views/bookmarks/bookmark_bubble_view_browsertest.cc\nchrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc\nchrome/browser/ui/views/bookmarks/bookmark_context_menu_unittest.cc\nchrome/browser/ui/views/bookmarks/bookmark_editor_view_browsertest.cc\nchrome/browser/ui/views/bookmarks/bookmark_menu_delegate_browsertest.cc\nchrome/browser/ui/views/bookmarks/bookmark_test_utils.cc\nchrome/browser/ui/views/bookmarks/saved_tab_groups/shared_tab_group_interactive_uitest.cc\nchrome/browser/ui/views/borealis/borealis_disallowed_dialog.cc\nchrome/browser/ui/views/commerce/price_tracking_bubble_dialog_view_browsertest.cc\nchrome/browser/ui/views/commerce/price_tracking_bubble_dialog_view_unittest.cc\nchrome/browser/ui/views/commerce/price_tracking_email_dialog_view.cc\nchrome/browser/ui/views/commerce/price_tracking_icon_view_integration_test.cc\nchrome/browser/ui/views/data_sharing/data_sharing_live_browsertest.cc\nchrome/browser/ui/views/download/bubble/download_bubble_contents_view_unittest.cc\nchrome/browser/ui/views/download/bubble/download_bubble_security_view_unittest.cc\nchrome/browser/ui/views/extensions/device_chooser_extension_browsertest.cc\nchrome/browser/ui/views/extensions/extension_install_dialog_view_browsertest.cc\nchrome/browser/ui/views/file_system_access/file_system_access_usage_bubble_view_browsertest.cc\nchrome/browser/ui/views/frame/browser_root_view_browsertest.cc\nchrome/browser/ui/views/frame/browser_view.h\nchrome/browser/ui/views/frame/browser_view_browsertest.cc\nchrome/browser/ui/views/frame/multi_contents_drop_target_view_unittest.cc\nchrome/browser/ui/views/frame/multi_contents_view_browsertest.cc\nchrome/browser/ui/views/frame/multi_contents_view_drop_target_controller_unittest.cc\nchrome/browser/ui/views/frame/webui_tab_strip_interactive_uitest.cc\nchrome/browser/ui/views/intent_picker_bubble_view_browsertest.cc\nchrome/browser/ui/views/intent_picker_bubble_view_unittest.cc\nchrome/browser/ui/views/location_bar/selected_keyword_view.h\nchrome/browser/ui/views/network_profile_bubble_view.cc\nchrome/browser/ui/views/new_tab_footer/footer_controller_browsertest.cc\nchrome/browser/ui/views/new_tab_footer/footer_interactive_uitest.cc\nchrome/browser/ui/views/omnibox/omnibox_popup_view_views_browsertest.cc\nchrome/browser/ui/views/omnibox/omnibox_result_view_unittest.cc\nchrome/browser/ui/views/omnibox/omnibox_view_views.cc\nchrome/browser/ui/views/omnibox/omnibox_view_views.h\nchrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.cc\nchrome/browser/ui/views/omnibox/omnibox_view_views_unittest.cc\nchrome/browser/ui/views/overlay/video_overlay_window_views_unittest.cc\nchrome/browser/ui/views/page_info/about_this_site_side_panel_coordinator.cc\nchrome/browser/ui/views/page_info/about_this_site_side_panel_coordinator_browsertest.cc\nchrome/browser/ui/views/page_info/merchant_trust_side_panel_coordinator.cc\nchrome/browser/ui/views/page_info/page_info_bubble_view_browsertest.cc\nchrome/browser/ui/views/page_info/page_info_bubble_view_sync_browsertest.cc\nchrome/browser/ui/views/page_info/safety_tip_page_info_bubble_view_browsertest.cc\nchrome/browser/ui/views/passwords/password_bubble_browsertest.cc\nchrome/browser/ui/views/passwords/password_bubble_interactive_uitest.cc\nchrome/browser/ui/views/passwords/password_change/successful_password_change_view_unittest.cc\nchrome/browser/ui/views/passwords/password_dialog_view_browsertest.cc\nchrome/browser/ui/views/passwords/password_generation_popup_view_views_browsertest.cc\nchrome/browser/ui/views/payments/payment_method_view_controller_browsertest.cc\nchrome/browser/ui/views/plugin_vm/plugin_vm_installer_view.cc\nchrome/browser/ui/views/profiles/avatar_toolbar_button_browsertest.cc\nchrome/browser/ui/views/profiles/batch_upload_dialog_view_browsertest.cc\nchrome/browser/ui/views/profiles/batch_upload_dialog_view_pixel_browsertest.cc\nchrome/browser/ui/views/profiles/dice_web_signin_interception_bubble_view_browsertest.cc\nchrome/browser/ui/views/profiles/dice_web_signin_interception_bubble_view_unittest.cc\nchrome/browser/ui/views/profiles/first_run_interactive_uitest.cc\nchrome/browser/ui/views/profiles/profile_menu_view_browsertest.cc\nchrome/browser/ui/views/profiles/profile_picker_sign_in_provider_browsertest.cc\nchrome/browser/ui/views/profiles/profile_picker_ui_browsertest.cc\nchrome/browser/ui/views/profiles/profile_picker_view_browsertest.cc\nchrome/browser/ui/views/profiles/profiles_pixel_test_utils.cc\nchrome/browser/ui/views/profiles/sync_confirmation_ui_browsertest.cc\nchrome/browser/ui/views/promos/ios_promo_constants.h\nchrome/browser/ui/views/qrcode_generator/qrcode_generator_bubble_unittest.cc\nchrome/browser/ui/views/search_engines/dse_reset_dialog.cc\nchrome/browser/ui/views/search_engines/dse_reset_dialog_view_browsertest.cc\nchrome/browser/ui/views/select_file_dialog_extension/select_file_dialog_extension_browsertest.cc\nchrome/browser/ui/views/session_crashed_bubble_view.cc\nchrome/browser/ui/views/sharing/click_to_call_browsertest.cc\nchrome/browser/ui/views/sharing/sharing_dialog_view_unittest.cc\nchrome/browser/ui/views/sharing_hub/preview_view_unittest.cc\nchrome/browser/ui/views/sharing_hub/sharing_hub_bubble_view_impl_unittest.cc\nchrome/browser/ui/views/site_data/page_specific_site_data_dialog_unittest.cc\nchrome/browser/ui/views/sync/inline_login_ui_browsertest.cc\nchrome/browser/ui/views/tabs/recent_activity_bubble_dialog_view_browsertest.cc\nchrome/browser/ui/views/tabs/recent_activity_bubble_dialog_view_interactive_uitest.cc\nchrome/browser/ui/views/tabs/tab_hover_card_controller_interactive_uitest.cc\nchrome/browser/ui/views/translate/translate_bubble_view_interactive_uitest.cc\nchrome/browser/ui/views/user_education/browser_ntp_promos.cc\nchrome/browser/ui/views/user_education/browser_user_education_service.cc\nchrome/browser/ui/views/user_education/ios_promo_bubble_view_unittest.cc\nchrome/browser/ui/views/web_apps/force_installed_preinstalled_deprecated_app_dialog_view.cc\nchrome/browser/ui/views/web_apps/frame_toolbar/web_app_frame_toolbar_browsertest.cc\nchrome/browser/ui/views/webauthn/passkey_upgrade_bubble_view.cc\nchrome/browser/ui/views/webid/fedcm_account_selection_view_desktop_browsertest.cc\nchrome/browser/ui/wallet/walletable_pass_save_bubble_view_browsertest.cc\nchrome/browser/ui/web_applications/web_app_browsertest.cc\nchrome/browser/ui/web_applications/web_app_navigate_browsertest.cc\nchrome/browser/ui/web_applications/web_app_profile_deletion_browsertest.cc\nchrome/browser/ui/webauthn/authenticator_dialog_browsertest.cc\nchrome/browser/ui/webauthn/authenticator_request_window.cc\nchrome/browser/ui/webui/PRESUBMIT.py\nchrome/browser/ui/webui/access_code_cast/access_code_cast_handler_unittest.cc\nchrome/browser/ui/webui/app_home/app_home_page_handler.cc\nchrome/browser/ui/webui/app_management/app_management_page_handler_base.cc\nchrome/browser/ui/webui/app_management/app_management_page_handler_chromeos.cc\nchrome/browser/ui/webui/app_management/app_management_page_handler_unittest.cc\nchrome/browser/ui/webui/ash/add_supervision/add_supervision_ui.cc\nchrome/browser/ui/webui/ash/add_supervision/add_supervision_ui_browsertest.cc\nchrome/browser/ui/webui/ash/cloud_upload/cloud_upload_dialog.cc\nchrome/browser/ui/webui/ash/cloud_upload/cloud_upload_dialog_browsertest.cc\nchrome/browser/ui/webui/ash/cloud_upload/drive_upload_handler.cc\nchrome/browser/ui/webui/ash/cloud_upload/drive_upload_handler_browsertest.cc\nchrome/browser/ui/webui/ash/edu_coexistence/edu_coexistence_login_handler.cc\nchrome/browser/ui/webui/ash/login/consolidated_consent_screen_handler.h\nchrome/browser/ui/webui/ash/login/gaia_screen_handler.h\nchrome/browser/ui/webui/ash/login/l10n_util_unittest.cc\nchrome/browser/ui/webui/ash/login/signin_userlist_unittest.cc\nchrome/browser/ui/webui/ash/notification_tester/notification_tester_handler.cc\nchrome/browser/ui/webui/ash/parent_access/parent_access_ui_handler_impl.cc\nchrome/browser/ui/webui/ash/parent_access/parent_access_ui_handler_impl_unittest.cc\nchrome/browser/ui/webui/ash/settings/pages/a11y/accessibility_handler_browsertest.cc\nchrome/browser/ui/webui/ash/settings/pages/people/os_sync_handler_unittest.cc\nchrome/browser/ui/webui/ash/settings/pages/people/parental_controls_handler.cc\nchrome/browser/ui/webui/ash/settings/pages/power/power_section.cc\nchrome/browser/ui/webui/ash/settings/services/metrics/per_session_settings_user_action_tracker_unittest.cc\nchrome/browser/ui/webui/ash/settings/services/metrics/settings_user_action_tracker_unittest.cc\nchrome/browser/ui/webui/autofill_and_password_manager_internals/internals_ui_handler.cc\nchrome/browser/ui/webui/certificate_manager/certificate_manager_ui.cc\nchrome/browser/ui/webui/commerce/shopping_ui_handler_delegate_browsertest.cc\nchrome/browser/ui/webui/components/components_handler.cc\nchrome/browser/ui/webui/cr_components/history_embeddings/history_embeddings_handler_unittest.cc\nchrome/browser/ui/webui/cr_components/most_visited/most_visited_handler_unittest.cc\nchrome/browser/ui/webui/cr_components/searchbox/searchbox_handler.cc\nchrome/browser/ui/webui/data_sharing/data_sharing_ui.cc\nchrome/browser/ui/webui/devtools/devtools_ui_data_source.cc\nchrome/browser/ui/webui/devtools/devtools_ui_data_source_unittest.cc\nchrome/browser/ui/webui/discards/graph_dump_impl_unittest.cc\nchrome/browser/ui/webui/extensions/extensions_internals_unittest.cc\nchrome/browser/ui/webui/extensions_zero_state_promo/extensions_zero_state_promo_interactive_uitest.cc\nchrome/browser/ui/webui/favicon_source.cc\nchrome/browser/ui/webui/favicon_source_unittest.cc\nchrome/browser/ui/webui/history/browsing_history_handler_unittest.cc\nchrome/browser/ui/webui/interstitials/interstitial_ui.cc\nchrome/browser/ui/webui/log_web_ui_url_unittest.cc\nchrome/browser/ui/webui/management/management_ui_handler_unittest.cc\nchrome/browser/ui/webui/media_router/cast_feedback_ui.cc\nchrome/browser/ui/webui/nearby_internals/quick_pair/quick_pair_handler.cc\nchrome/browser/ui/webui/new_tab_footer/new_tab_footer_handler_browsertest.cc\nchrome/browser/ui/webui/new_tab_page/action_chips/action_chips_generator_unittest.cc\nchrome/browser/ui/webui/new_tab_page/action_chips/action_chips_handler_unittest.cc\nchrome/browser/ui/webui/new_tab_page/foo/foo_handler.cc\nchrome/browser/ui/webui/new_tab_page/new_tab_page_handler_unittest.cc\nchrome/browser/ui/webui/new_tab_page/new_tab_page_ui.cc\nchrome/browser/ui/webui/new_tab_page/untrusted_source.cc\nchrome/browser/ui/webui/new_tab_page/untrusted_source.h\nchrome/browser/ui/webui/ntp/new_tab_ui.cc\nchrome/browser/ui/webui/ntp/ntp_resource_cache.cc\nchrome/browser/ui/webui/password_manager/promo_cards/access_on_any_device_promo.cc\nchrome/browser/ui/webui/password_manager/sync_handler_unittest.cc\nchrome/browser/ui/webui/policy/policy_ui_browsertest.cc\nchrome/browser/ui/webui/print_preview/pdf_printer_handler_unittest.cc\nchrome/browser/ui/webui/privacy_sandbox/privacy_sandbox_dialog_untrusted_ui.cc\nchrome/browser/ui/webui/privacy_sandbox/privacy_sandbox_internals_handler_browsertest.cc\nchrome/browser/ui/webui/privacy_sandbox/private_state_tokens/private_state_tokens_handler.cc\nchrome/browser/ui/webui/sanitized_image_source.cc\nchrome/browser/ui/webui/sanitized_image_source_unittest.cc\nchrome/browser/ui/webui/searchbox/contextual_searchbox_handler_unittest.cc\nchrome/browser/ui/webui/searchbox/contextual_searchbox_test_utils.cc\nchrome/browser/ui/webui/searchbox/webui_omnibox_interactive_uitest.cc\nchrome/browser/ui/webui/settings/about_handler_unittest.cc\nchrome/browser/ui/webui/settings/on_startup_handler_unittest.cc\nchrome/browser/ui/webui/settings/people_handler_unittest.cc\nchrome/browser/ui/webui/settings/profile_info_handler_unittest.cc\nchrome/browser/ui/webui/settings/settings_localized_strings_provider.cc\nchrome/browser/ui/webui/settings/settings_manage_profile_handler_unittest.cc\nchrome/browser/ui/webui/settings/settings_utils_unittest.cc\nchrome/browser/ui/webui/settings/settings_utils_win.cc\nchrome/browser/ui/webui/settings/site_settings_handler_unittest.cc\nchrome/browser/ui/webui/settings/site_settings_helper_unittest.cc\nchrome/browser/ui/webui/settings/sync_settings_interactive_uitest.cc\nchrome/browser/ui/webui/side_panel/bookmarks/bookmarks_page_handler_unittest.cc\nchrome/browser/ui/webui/side_panel/customize_chrome/customize_chrome_page_handler.cc\nchrome/browser/ui/webui/side_panel/customize_chrome/customize_chrome_page_handler_unittest.cc\nchrome/browser/ui/webui/side_panel/customize_chrome/wallpaper_search/wallpaper_search_handler.cc\nchrome/browser/ui/webui/side_panel/customize_chrome/wallpaper_search/wallpaper_search_handler_unittest.cc\nchrome/browser/ui/webui/side_panel/customize_chrome/wallpaper_search/wallpaper_search_interactive_uitest.cc\nchrome/browser/ui/webui/side_panel/read_anything/read_anything_untrusted_ui.cc\nchrome/browser/ui/webui/side_panel/reading_list/reading_list_page_handler_unittest.cc\nchrome/browser/ui/webui/signin/ash/edu_account_login_handler_unittest.cc\nchrome/browser/ui/webui/signin/ash/inline_login_handler_impl_browsertest.cc\nchrome/browser/ui/webui/signin/ash/signin_helper_browsertest.cc\nchrome/browser/ui/webui/signin/ash/user_cloud_signin_restriction_policy_fetcher.cc\nchrome/browser/ui/webui/signin/ash/user_cloud_signin_restriction_policy_fetcher.h\nchrome/browser/ui/webui/signin/ash/user_cloud_signin_restriction_policy_fetcher_unittest.cc\nchrome/browser/ui/webui/signin/batch_upload_ui.cc\nchrome/browser/ui/webui/signin/history_sync_optin/history_sync_optin_handler_unittest.cc\nchrome/browser/ui/webui/signin/history_sync_optin_service_unittest.cc\nchrome/browser/ui/webui/signin/signin_error_handler_browsertest.cc\nchrome/browser/ui/webui/signin/signin_utils_desktop_unittest.cc\nchrome/browser/ui/webui/signin/sync_confirmation_handler_unittest.cc\nchrome/browser/ui/webui/signin/sync_confirmation_ui.cc\nchrome/browser/ui/webui/signin/turn_sync_on_helper_browsertest.cc\nchrome/browser/ui/webui/signin/turn_sync_on_helper_unittest.cc\nchrome/browser/ui/webui/skills/skills_dialog_handler_unittest.cc\nchrome/browser/ui/webui/theme_source_unittest.cc\nchrome/browser/ui/webui/webui_allowlist_provider_unittest.cc\nchrome/browser/ui/webui/whats_new/whats_new_fetcher.cc\nchrome/browser/ui/webui/whats_new/whats_new_fetcher_browsertest.cc\nchrome/browser/ui/webui/whats_new/whats_new_handler_unittest.cc\nchrome/browser/ui/webui/whats_new/whats_new_registrar.cc\nchrome/browser/ui/webui/whats_new/whats_new_registrar_unittest.cc\nchrome/browser/ui/webui/whats_new/whats_new_ui.cc\nchrome/browser/ui/window_sizer/window_sizer_chromeos.cc\nchrome/browser/unified_consent/unified_consent_sync_to_signin_browsertest.cc\nchrome/browser/updates/announcement_notification/announcement_notification_service_unittest.cc\nchrome/browser/upgrade_detector/version_history_client.cc\nchrome/browser/upgrade_detector/version_history_client_unittest.cc\nchrome/browser/usb/chrome_usb_browsertest.cc\nchrome/browser/usb/chrome_usb_delegate_unittest.cc\nchrome/browser/usb/usb_chooser_context_unittest.cc\nchrome/browser/usb/usb_chooser_controller_unittest.cc\nchrome/browser/usb/usb_policy_allowed_devices_unittest.cc\nchrome/browser/usb/web_usb_detector_browsertest.cc\nchrome/browser/visited_url_ranking/desktop_tab_model_url_visit_data_fetcher_browsertest.cc\nchrome/browser/vr/PRESUBMIT.py\nchrome/browser/vr/test/gl_test_environment_unittest.cc\nchrome/browser/wallet/android/boarding_pass_detector_unittest.cc\nchrome/browser/web_applications/commands/fetch_manifest_and_install_command.cc\nchrome/browser/web_applications/commands/install_app_from_verified_manifest_command.cc\nchrome/browser/web_applications/commands/install_app_from_verified_manifest_command_browsertest.cc\nchrome/browser/web_applications/isolated_web_apps/browser_navigator_iwa_browsertest.cc\nchrome/browser/web_applications/isolated_web_apps/isolated_web_app_throttle_browsertest.cc\nchrome/browser/web_applications/isolated_web_apps/iwa_permissions_policy_cache.cc\nchrome/browser/web_applications/os_integration/web_app_handler_registration_utils_win.cc\nchrome/browser/web_applications/os_integration/web_app_handler_registration_utils_win.h\nchrome/browser/web_applications/os_integration/web_app_handler_registration_utils_win_unittest.cc\nchrome/browser/web_applications/preinstalled_web_app_manager_unittest.cc\nchrome/browser/web_applications/preinstalled_web_apps/gemini.cc\nchrome/browser/web_applications/preinstalled_web_apps/gmail.cc\nchrome/browser/web_applications/preinstalled_web_apps/google_calendar.cc\nchrome/browser/web_applications/preinstalled_web_apps/google_chat.cc\nchrome/browser/web_applications/preinstalled_web_apps/google_docs.cc\nchrome/browser/web_applications/preinstalled_web_apps/google_drive.cc\nchrome/browser/web_applications/preinstalled_web_apps/google_meet.cc\nchrome/browser/web_applications/preinstalled_web_apps/google_sheets.cc\nchrome/browser/web_applications/preinstalled_web_apps/google_slides.cc\nchrome/browser/web_applications/preinstalled_web_apps/messages_dogfood.cc\nchrome/browser/web_applications/preinstalled_web_apps/notebook_lm.cc\nchrome/browser/web_applications/preinstalled_web_apps/preinstalled_web_apps.cc\nchrome/browser/web_applications/preinstalled_web_apps/vids.cc\nchrome/browser/web_applications/preinstalled_web_apps/youtube.cc\nchrome/browser/web_applications/preinstalled_web_apps_browsertest.cc\nchrome/browser/web_applications/sub_apps_admin_policy_browsertest.cc\nchrome/browser/web_applications/web_app_command_scheduler.cc\nchrome/browser/web_applications/web_app_helpers_unittest.cc\nchrome/browser/web_applications/web_app_install_utils_unittest.cc\nchrome/browser/web_applications/web_contents/web_app_icon_downloader_unittest.cc\nchrome/browser/web_applications/web_install_browsertest.cc\nchrome/browser/webapps/installable/installable_manager_browsertest.cc\nchrome/browser/webauthn/authenticator_request_dialog_controller.cc\nchrome/browser/webauthn/cablev2_devices.h\nchrome/browser/webauthn/challenge_url_fetcher.cc\nchrome/browser/webauthn/chrome_authenticator_request_delegate.cc\nchrome/browser/webauthn/chrome_authenticator_request_delegate_unittest.cc\nchrome/browser/webauthn/chrome_web_authentication_delegate.cc\nchrome/browser/webauthn/chrome_web_authentication_delegate_base.cc\nchrome/browser/webauthn/chrome_web_authentication_delegate_base_unittest.cc\nchrome/browser/webauthn/chrome_web_authentication_delegate_unittest.cc\nchrome/browser/webauthn/chrome_webauthn_autofill_interactive_uitest.cc\nchrome/browser/webauthn/enclave_authenticator_browsertest.cc\nchrome/browser/webauthn/enclave_manager.cc\nchrome/browser/webauthn/enclave_manager.h\nchrome/browser/webauthn/enclave_manager_unittest.cc\nchrome/browser/webauthn/fake_magic_arch.h\nchrome/browser/webauthn/fake_recovery_key_store.h\nchrome/browser/webauthn/fake_security_domain_service.cc\nchrome/browser/webauthn/gpm_enclave_controller.h\nchrome/browser/webauthn/passkey_unlock_manager_browsertest.cc\nchrome/browser/webauthn/passkey_unlock_manager_unittest.cc\nchrome/browser/webauthn/test_util.h\nchrome/browser/webid/identity_provider_service.h\nchrome/browser/webshare/win/fake_random_access_stream.cc\nchrome/browser/webshare/win/share_operation.cc\nchrome/browser/win/chrome_process_finder.cc\nchrome/browser/win/conflicts/enumerate_shell_extensions.cc\nchrome/browser/win/installer_downloader/installer_downloader_controller.cc\nchrome/browser/win/installer_downloader/installer_downloader_feature.h\nchrome/browser/win/jumplist.cc\nchrome/browser/win/jumplist_update_util_unittest.cc\nchrome/browser/win/parental_controls.cc\nchrome/browser/window_management/window_management_browsertest.cc\nchrome/chrome_elf/chrome_elf_main.cc\nchrome/chrome_elf/nt_registry/nt_registry.cc\nchrome/chrome_elf/nt_registry/nt_registry.h\nchrome/chrome_elf/nt_registry/nt_registry_unittest.cc\nchrome/chrome_elf/pe_image_safe/pe_image_safe.h\nchrome/chrome_elf/third_party_dlls/hardcoded_blocklist.cc\nchrome/chrome_elf/third_party_dlls/main.h\nchrome/common/apps/platform_apps/api/PRESUBMIT.py\nchrome/common/chrome_features.cc\nchrome/common/chrome_switches.cc\nchrome/common/conflicts/module_watcher_win.cc\nchrome/common/extensions/PRESUBMIT.py\nchrome/common/extensions/api/PRESUBMIT.py\nchrome/common/extensions/api/_api_features.json\nchrome/common/extensions/api/common_extension_api_unittest.cc\nchrome/common/extensions/api/content_settings.json\nchrome/common/extensions/api/cookies.json\nchrome/common/extensions/api/debugger.json\nchrome/common/extensions/api/declarative_content.json\nchrome/common/extensions/api/dom.json\nchrome/common/extensions/api/enterprise_device_attributes.idl\nchrome/common/extensions/api/file_system_provider.idl\nchrome/common/extensions/api/gcm.json\nchrome/common/extensions/api/generated_externs_list.txt\nchrome/common/extensions/api/identity.idl\nchrome/common/extensions/api/instance_id.json\nchrome/common/extensions/api/printing.idl\nchrome/common/extensions/api/privacy.json\nchrome/common/extensions/api/scripting.idl\nchrome/common/extensions/api/tabs.json\nchrome/common/extensions/api/tts.json\nchrome/common/extensions/api/url_handlers/url_handlers_parser.h\nchrome/common/extensions/api/webrtc_audio_private.idl\nchrome/common/extensions/api/webview_tag.json\nchrome/common/extensions/api/windows.json\nchrome/common/extensions/chrome_extensions_client.cc\nchrome/common/extensions/manifest_handlers/automation_unittest.cc\nchrome/common/extensions/manifest_tests/extension_manifests_default_extent_path_unittest.cc\nchrome/common/extensions/manifest_tests/extension_manifests_launch_unittest.cc\nchrome/common/extensions/manifest_tests/extension_manifests_platformapp_unittest.cc\nchrome/common/extensions/manifest_tests/extension_manifests_validapp_unittest.cc\nchrome/common/extensions/manifest_tests/extension_manifests_web_accessible_resources_unittest.cc\nchrome/common/extensions/manifest_tests/extension_manifests_web_unittest.cc\nchrome/common/extensions/manifest_tests/permissions_parser_unittest.cc\nchrome/common/extensions/permissions/permission_set_unittest.cc\nchrome/common/extensions/permissions/permissions_data_unittest.cc\nchrome/common/extensions/permissions/settings_override_permission_unittest.cc\nchrome/common/extensions/sync_type_unittest.cc\nchrome/common/google_url_loader_throttle.cc\nchrome/common/google_url_loader_throttle_unittest.cc\nchrome/common/importer/firefox_importer_utils.cc\nchrome/common/net/x509_certificate_model_unittest.cc\nchrome/common/pref_names.h\nchrome/common/request_header_integrity/request_header_integrity_url_loader_throttle_browsertest.cc\nchrome/common/request_header_integrity/request_header_integrity_url_loader_throttle_unittest.cc\nchrome/common/url_constants.h\nchrome/common/webui_url_constants.h\nchrome/common/win/delay_load_failure_hook.cc\nchrome/common/win/delay_load_notify_hook.cc\nchrome/common/win/delay_load_notify_hook.h\nchrome/credential_provider/extension/os_service_manager.h\nchrome/credential_provider/extension/service.h\nchrome/credential_provider/extension/task_manager_unittest.cc\nchrome/credential_provider/gaiacp/associated_user_validator.cc\nchrome/credential_provider/gaiacp/associated_user_validator_unittest.cc\nchrome/credential_provider/gaiacp/auth_utils.cc\nchrome/credential_provider/gaiacp/dllmain.cc\nchrome/credential_provider/gaiacp/gaia_credential_base.cc\nchrome/credential_provider/gaiacp/gaia_credential_base_unittest.cc\nchrome/credential_provider/gaiacp/gaia_credential_provider_unittest.cc\nchrome/credential_provider/gaiacp/gaia_credential_unittest.cc\nchrome/credential_provider/gaiacp/gcp_utils.cc\nchrome/credential_provider/gaiacp/gcp_utils.h\nchrome/credential_provider/gaiacp/gcp_utils_unittest.cc\nchrome/credential_provider/gaiacp/gcpw_strings.cc\nchrome/credential_provider/gaiacp/internet_availability_checker.cc\nchrome/credential_provider/gaiacp/mdm_utils.cc\nchrome/credential_provider/gaiacp/reauth_credential_unittest.cc\nchrome/credential_provider/gaiacp/reg_utils.cc\nchrome/credential_provider/gaiacp/win_http_url_fetcher_unittest.cc\nchrome/credential_provider/test/gcp_fakes.cc\nchrome/credential_provider/test/gcp_gls_output_unittest.cc\nchrome/credential_provider/test/gls_runner_test_base.cc\nchrome/docs/devtools-pillar.html\nchrome/docs/index.html\nchrome/docs/platform-pillar.html\nchrome/elevation_service/caller_validation.cc\nchrome/enterprise_companion/branding.gni\nchrome/enterprise_companion/crash_client.cc\nchrome/enterprise_companion/event_logger.cc\nchrome/enterprise_companion/proxy_config_service.cc\nchrome/install_static/install_constants.h\nchrome/install_static/install_details.h\nchrome/install_static/install_modes_unittest.cc\nchrome/install_static/install_util.cc\nchrome/install_static/install_util.h\nchrome/install_static/install_util_unittest.cc\nchrome/install_static/user_data_dir.cc\nchrome/installer/gcapi/gcapi.cc\nchrome/installer/gcapi/gcapi_dll.cc\nchrome/installer/linux/common/installer.py\nchrome/installer/mini_installer/mini_installer.cc\nchrome/installer/mini_installer/path_string.h\nchrome/installer/setup/eula/oem_ar.html\nchrome/installer/setup/eula/oem_bg.html\nchrome/installer/setup/eula/oem_ca.html\nchrome/installer/setup/eula/oem_cs.html\nchrome/installer/setup/eula/oem_da.html\nchrome/installer/setup/eula/oem_de.html\nchrome/installer/setup/eula/oem_el.html\nchrome/installer/setup/eula/oem_en-GB.html\nchrome/installer/setup/eula/oem_en.html\nchrome/installer/setup/eula/oem_es-419.html\nchrome/installer/setup/eula/oem_es.html\nchrome/installer/setup/eula/oem_et.html\nchrome/installer/setup/eula/oem_fi.html\nchrome/installer/setup/eula/oem_fil.html\nchrome/installer/setup/eula/oem_fr.html\nchrome/installer/setup/eula/oem_hi.html\nchrome/installer/setup/eula/oem_hr.html\nchrome/installer/setup/eula/oem_hu.html\nchrome/installer/setup/eula/oem_id.html\nchrome/installer/setup/eula/oem_it.html\nchrome/installer/setup/eula/oem_iw.html\nchrome/installer/setup/eula/oem_ja.html\nchrome/installer/setup/eula/oem_ko.html\nchrome/installer/setup/eula/oem_lt.html\nchrome/installer/setup/eula/oem_lv.html\nchrome/installer/setup/eula/oem_nl.html\nchrome/installer/setup/eula/oem_no.html\nchrome/installer/setup/eula/oem_pl.html\nchrome/installer/setup/eula/oem_pt-BR.html\nchrome/installer/setup/eula/oem_pt-PT.html\nchrome/installer/setup/eula/oem_ro.html\nchrome/installer/setup/eula/oem_ru.html\nchrome/installer/setup/eula/oem_sk.html\nchrome/installer/setup/eula/oem_sl.html\nchrome/installer/setup/eula/oem_sr.html\nchrome/installer/setup/eula/oem_sv.html\nchrome/installer/setup/eula/oem_th.html\nchrome/installer/setup/eula/oem_tr.html\nchrome/installer/setup/eula/oem_uk.html\nchrome/installer/setup/eula/oem_vi.html\nchrome/installer/setup/eula/oem_zh-CN.html\nchrome/installer/setup/eula/oem_zh-TW.html\nchrome/installer/setup/google_chrome_behaviors.cc\nchrome/installer/setup/uninstall.cc\nchrome/installer/util/delete_after_reboot_helper.cc\nchrome/installer/util/delete_after_reboot_helper.h\nchrome/installer/util/initial_preferences.h\nchrome/installer/util/initial_preferences_unittest.cc\nchrome/installer/util/l10n_string_util.cc\nchrome/installer/util/shell_util.cc\nchrome/installer/util/shell_util.h\nchrome/installer/util/unbuffered_file_writer.h\nchrome/installer/util/work_item.h\nchrome/notification_helper/notification_activator.h\nchrome/notification_helper/notification_helper.cc\nchrome/renderer/accessibility/read_anything/read_aloud_traversal_utils.cc\nchrome/renderer/accessibility/read_anything/read_anything_app_controller_browsertest.cc\nchrome/renderer/accessibility/read_anything/read_anything_app_model.cc\nchrome/renderer/accessibility/read_anything/read_anything_app_model_browsertest.cc\nchrome/renderer/accessibility/read_anything/read_anything_node_utils.cc\nchrome/renderer/app_categorizer_unittest.cc\nchrome/renderer/ash_merge_session_loader_throttle_unittest.cc\nchrome/renderer/autofill/autofill_renderer_browsertest.cc\nchrome/renderer/autofill/form_autofill_browsertest.cc\nchrome/renderer/autofill/page_passwords_analyser_browsertest.cc\nchrome/renderer/autofill/password_autofill_agent_browsertest.cc\nchrome/renderer/bound_session_credentials/bound_session_request_throttled_in_renderer_manager_unittest.cc\nchrome/renderer/chrome_content_renderer_client_browsertest.cc\nchrome/renderer/extensions/api/extension_hooks_delegate_unittest.cc\nchrome/renderer/google_accounts_private_api_extension.h\nchrome/renderer/media/flash_embed_rewrite.cc\nchrome/renderer/media/flash_embed_rewrite_unittest.cc\nchrome/renderer/resources/extensions/identity_custom_bindings.js\nchrome/renderer/searchbox/searchbox.h\nchrome/renderer/searchbox/searchbox_extension.cc\nchrome/renderer/searchbox/searchbox_extension.h\nchrome/renderer/searchbox/searchbox_unittest.cc\nchrome/renderer/translate/translate_agent_browsertest.cc\nchrome/services/mac_notifications/mac_notification_service_ns.mm\nchrome/services/mac_notifications/mac_notification_service_ns_unittest.mm\nchrome/services/mac_notifications/mac_notification_service_un_unittest.mm\nchrome/services/sharing/nearby/nearby_presence_unittest.cc\nchrome/services/sharing/nearby/platform/wifi_direct_socket.cc\nchrome/services/sharing/nearby/quick_start_decoder/quick_start_decoder_unittest.cc\nchrome/services/util_win/av_products.cc\nchrome/test/android/browsertests_apk/AndroidManifest.xml.jinja2\nchrome/test/base/android/android_browser_test.h\nchrome/test/base/ash/interactive/interactive_ash_test.cc\nchrome/test/base/ash/js2gtest.js\nchrome/test/base/chromeos/crosier/chromeos_integration_login_mixin.cc\nchrome/test/base/chromeos/crosier/chromeos_integration_login_mixin.h\nchrome/test/base/chromeos/crosier/demo_integration_test.cc\nchrome/test/base/chromeos/crosier/helper/reset_dut.py\nchrome/test/base/fake_gaia_mixin.cc\nchrome/test/base/fake_gaia_mixin.h\nchrome/test/base/in_process_browser_test_browsertest.cc\nchrome/test/base/platform_browser_test.h\nchrome/test/chromedriver/capabilities_unittest.cc\nchrome/test/chromedriver/chrome/chrome_finder.cc\nchrome/test/chromedriver/chrome/chrome_impl.cc\nchrome/test/chromedriver/chrome/devtools_client_impl.cc\nchrome/test/chromedriver/chrome/mobile_device.cc\nchrome/test/chromedriver/chrome/web_view_impl.cc\nchrome/test/chromedriver/client/chromedriver.py\nchrome/test/chromedriver/command_listener_proxy.h\nchrome/test/chromedriver/key_converter.cc\nchrome/test/chromedriver/logging.cc\nchrome/test/chromedriver/logging.h\nchrome/test/chromedriver/net/pipe_builder.cc\nchrome/test/chromedriver/net/websocket.cc\nchrome/test/chromedriver/server/chromedriver_server.cc\nchrome/test/chromedriver/session_commands.cc\nchrome/test/chromedriver/test/run_py_tests.py\nchrome/test/chromedriver/window_commands.cc\nchrome/test/chromedriver/window_commands_unittest.cc\nchrome/test/enterprise/e2e/PRESUBMIT.py\nchrome/test/enterprise/e2e/connector/chrome_reporting_connector_test_case.py\nchrome/test/enterprise/e2e/connector/client_certs/client_certs_test.py\nchrome/test/enterprise/e2e/connector/common/realtime_reporting_ui_test.py\nchrome/test/enterprise/e2e/connector/identity_connector/managed_profile_test.py\nchrome/test/enterprise/e2e/connector/local_content_analysis_connector/local_content_analysis_connector_test.py\nchrome/test/enterprise/e2e/connector/realtime_reporting_bce/reporting_server.py\nchrome/test/enterprise/e2e/connector/reporting_connector_chronicle/chronicle_api_service.py\nchrome/test/enterprise/e2e/connector/reporting_connector_pan/pan_api_service.py\nchrome/test/enterprise/e2e/infra/test_binary_downloader.py\nchrome/test/enterprise/e2e/omaha/rollback_to_target_version/google_update_policy_cbcm.py\nchrome/test/enterprise/e2e/policy/allow_deleting_browser_history/allow_deleting_browser_history.py\nchrome/test/enterprise/e2e/policy/allow_deleting_browser_history/allow_deleting_browser_history_webdriver_test.py\nchrome/test/enterprise/e2e/policy/apps_shortcut/apps_shortcut.py\nchrome/test/enterprise/e2e/policy/bookmarkbar_enabled/bookmarkbar_enabled.py\nchrome/test/enterprise/e2e/policy/chrome_data_region_setting/chrome_data_region_setting.py\nchrome/test/enterprise/e2e/policy/cloud_management_enrollment_token/cloud_management_enrollment_token.py\nchrome/test/enterprise/e2e/policy/cloud_reporting_enabled/cloud_reporting_enabled.py\nchrome/test/enterprise/e2e/policy/default_search_provider/default_search_provider.py\nchrome/test/enterprise/e2e/policy/encrypted_reporting/report_cbcm_events.py\nchrome/test/enterprise/e2e/policy/extension_allowlist/extension_allowlist.py\nchrome/test/enterprise/e2e/policy/extension_blocklist/extension_blocklist.py\nchrome/test/enterprise/e2e/policy/extension_forcelist/extension_forcelist.py\nchrome/test/enterprise/e2e/policy/force_google_safe_search/force_google_safe_search_webdriver_test.py\nchrome/test/enterprise/e2e/policy/fullscreen_allowed/fullscreen_allowed.py\nchrome/test/enterprise/e2e/policy/gemini_settings/gemini_settings.py\nchrome/test/enterprise/e2e/policy/homepage/homepage.py\nchrome/test/enterprise/e2e/policy/install_extension.py\nchrome/test/enterprise/e2e/policy/mergelist/mergelist.py\nchrome/test/enterprise/e2e/policy/password_manager_enabled/password_manager_enabled.py\nchrome/test/enterprise/e2e/policy/popups_allowed/popups_allowed.py\nchrome/test/enterprise/e2e/policy/restore_on_startup/restore_on_startup.py\nchrome/test/enterprise/e2e/policy/safe_browsing/safe_browsing.py\nchrome/test/enterprise/e2e/policy/safe_browsing/safe_browsing_ui_test.py\nchrome/test/enterprise/e2e/policy/translate_enabled/translate_enabled.py\nchrome/test/enterprise/e2e/policy/url_allowlist/url_allowlist.py\nchrome/test/enterprise/e2e/policy/url_blocklist/url_blocklist.py\nchrome/test/enterprise/e2e/policy/user_data_dir/user_data_dir.py\nchrome/test/enterprise/e2e/policy/webprotect_file_download/webprotect_file_download_webdriver.py\nchrome/test/enterprise/e2e/policy/youtube_restrict/youtube_restrict.py\nchrome/test/enterprise/e2e/webstore/enterprise_cws/enterprise_cws_webdriver.py\nchrome/test/fuzzing/atspi_in_process_fuzzer.cc\nchrome/test/fuzzing/in_process_fuzzer.cc\nchrome/test/interaction/interactive_browser_test_interactive_uitest.cc\nchrome/test/media_router/media_router_gmc_ui_for_test.cc\nchrome/test/mini_installer/PRESUBMIT.py\nchrome/test/mini_installer/create_zip.py\nchrome/test/mini_installer/installer_test.py\nchrome/test/mini_installer/update_lastrun.py\nchrome/test/payments/payment_request_platform_browsertest_base.h\nchrome/test/supervised_user/api_mock_setup_mixin.cc\nchrome/test/supervised_user/supervision_mixin.cc\nchrome/test/supervised_user/supervision_mixin.h\nchrome/test/variations/fixtures/cipd.py\nchrome/test/variations/fixtures/driver.py\nchrome/test/variations/fixtures/skia_gold.py\nchrome/test/variations/test_utils/downloader.py\nchrome/tools/build/PRESUBMIT.py\nchrome/tools/build/win/makecab.py\nchrome/tools/check_ownership.py\nchrome/tools/webforms_aggregator_tests.py\nchrome/tools/weburl_links.txt\nchrome/updater/branding.gni\nchrome/updater/certificate_tag.cc\nchrome/updater/certificate_tag_internal.h\nchrome/updater/certificate_tag_unittest.cc\nchrome/updater/crash_reporter.cc\nchrome/updater/enterprise/win/google/build_group_policy_template_unittest.py\nchrome/updater/enterprise/win/google/public_apps.py\nchrome/updater/event_logger_unittest.cc\nchrome/updater/fix_licenses.py\nchrome/updater/mac/launcher_main.c\nchrome/updater/mac/setup/ks_tickets.mm\nchrome/updater/mac/setup/ks_tickets_unittest.mm\nchrome/updater/policy/dm_policy_manager_unittest.cc\nchrome/updater/test/service/win/ui.py\nchrome/updater/test/test_installer/test_installer.wxs.xml\nchrome/updater/tools/PRESUBMIT.py\nchrome/updater/tools/file_inspector/parser.js\nchrome/updater/tools/keystone_ticketstore_tool.mm\nchrome/updater/util/util_unittest.cc\nchrome/updater/util/util_win_unittest.cc\nchrome/updater/util/win_util.cc\nchrome/updater/util/win_util.h\nchrome/updater/win/installer/installer_main.cc\nchrome/updater/win/protocol_parser_xml_unittest.cc\nchrome/updater/win/signing/PRESUBMIT.py\nchrome/updater/win/signing/enterprise_standalone_installer.wxs.xml\nchrome/updater/win/signing/msi_from_standalone.py\nchrome/updater/win/task_scheduler.cc\nchrome/utility/importer/bookmarks_file_importer_unittest.cc\nchrome/utility/importer/firefox_importer.h\nchrome/utility/importer/firefox_importer_unittest.cc\nchrome/utility/importer/ie_importer_win.cc\nchrome/utility/importer/nss_decryptor.cc\nchrome/utility/importer/nss_decryptor_system_nss.cc\nchrome/utility/importer/nss_decryptor_win.h\nchrome/version.gni\nchrome/windows_services/service_program/crash_reporting.cc\nchrome/windows_services/service_program/service.cc\nchromeos/BUILD.gn\nchromeos/ash/components/attestation/attestation_flow_adaptive_unittest.cc\nchromeos/ash/components/attestation/attestation_flow_integrated_unittest.cc\nchromeos/ash/components/boca/babelorca/babel_orca_consumer.cc\nchromeos/ash/components/boca/babelorca/tachyon_constants.h\nchromeos/ash/components/boca/babelorca/tachyon_registrar.cc\nchromeos/ash/components/boca/babelorca/transcript_receiver.cc\nchromeos/ash/components/boca/babelorca/transcript_sender_impl.cc\nchromeos/ash/components/boca/boca_metrics_manager_unittest.cc\nchromeos/ash/components/boca/boca_request_unittest.cc\nchromeos/ash/components/boca/boca_role_util_unittest.cc\nchromeos/ash/components/boca/boca_session_manager_unittest.cc\nchromeos/ash/components/boca/receiver/get_kiosk_receiver_request.h\nchromeos/ash/components/boca/receiver/get_receiver_connection_info_request.h\nchromeos/ash/components/boca/receiver/register_receiver_request.h\nchromeos/ash/components/boca/receiver/start_kiosk_receiver_request.h\nchromeos/ash/components/boca/receiver/start_kiosk_receiver_request_unittest.cc\nchromeos/ash/components/boca/receiver/update_kiosk_receiver_state_request.h\nchromeos/ash/components/boca/retriable_request_sender_unittest.cc\nchromeos/ash/components/boca/session_api/add_students_request_unittest.cc\nchromeos/ash/components/boca/session_api/constants.h\nchromeos/ash/components/boca/session_api/create_session_request_unittest.cc\nchromeos/ash/components/boca/session_api/get_session_request_unittest.cc\nchromeos/ash/components/boca/session_api/join_session_request_unittest.cc\nchromeos/ash/components/boca/session_api/session_parser_unittest.cc\nchromeos/ash/components/boca/session_api/update_session_config_request_unittest.cc\nchromeos/ash/components/boca/session_api/update_session_request_unittest.cc\nchromeos/ash/components/boca/session_api/update_student_activities_request_unittest.cc\nchromeos/ash/components/boca/spotlight/remoting_client_io_proxy_unittest.cc\nchromeos/ash/components/boca/spotlight/spotlight_service_unittest.cc\nchromeos/ash/components/boca/spotlight/spotlight_session_manager_unittest.cc\nchromeos/ash/components/boca/util.cc\nchromeos/ash/components/carrier_lock/fcm_topic_subscriber_unittest.cc\nchromeos/ash/components/carrier_lock/provisioning_config_fetcher_impl.cc\nchromeos/ash/components/carrier_lock/provisioning_config_fetcher_unittest.cc\nchromeos/ash/components/carrier_lock/psm_claim_verifier_impl.cc\nchromeos/ash/components/carrier_lock/psm_claim_verifier_unittest.cc\nchromeos/ash/components/carrier_lock/topic_subscription_request.cc\nchromeos/ash/components/carrier_lock/topic_subscription_request_unittest.cc\nchromeos/ash/components/chaps_util/chaps_util_impl.cc\nchromeos/ash/components/cryptohome/userdataauth_util.cc\nchromeos/ash/components/data_migration/data_migration.cc\nchromeos/ash/components/dbus/arc/arc_obb_mounter_client.h\nchromeos/ash/components/dbus/biod/fake_biod_client_unittest.cc\nchromeos/ash/components/dbus/debug_daemon/debug_daemon_client.h\nchromeos/ash/components/dbus/debug_daemon/fake_debug_daemon_client.cc\nchromeos/ash/components/dbus/dlcservice/dlcservice_client.h\nchromeos/ash/components/dbus/fwupd/fwupd_client.cc\nchromeos/ash/components/dbus/fwupd/fwupd_client_unittest.cc\nchromeos/ash/components/dbus/rmad/fake_rmad_client.cc\nchromeos/ash/components/drivefs/drivefs_http_client_unittest.cc\nchromeos/ash/components/emoji/gif_tenor_api_fetcher.cc\nchromeos/ash/components/enhanced_network_tts/enhanced_network_tts_constants.h\nchromeos/ash/components/enhanced_network_tts/enhanced_network_tts_impl.cc\nchromeos/ash/components/enhanced_network_tts/enhanced_network_tts_test_utils.h\nchromeos/ash/components/enhanced_network_tts/enhanced_network_tts_utils.cc\nchromeos/ash/components/fwupd/firmware_update_manager.cc\nchromeos/ash/components/fwupd/firmware_update_manager_unittest.cc\nchromeos/ash/components/geolocation/location_fetcher.h\nchromeos/ash/components/growth/campaigns_manager_unittest.cc\nchromeos/ash/components/growth/campaigns_model.h\nchromeos/ash/components/growth/campaigns_utils.cc\nchromeos/ash/components/http_auth_dialog/http_auth_dialog.h\nchromeos/ash/components/local_search_service/content_extraction_utils_unittest.cc\nchromeos/ash/components/login/auth/recovery/service_constants.cc\nchromeos/ash/components/multidevice/remote_device_test_util.cc\nchromeos/ash/components/multidevice/stub_multidevice_util.cc\nchromeos/ash/components/nearby/common/client/nearby_api_call_flow_impl_unittest.cc\nchromeos/ash/components/nearby/presence/credentials/local_device_data_provider_impl_unittest.cc\nchromeos/ash/components/nearby/presence/credentials/nearby_presence_server_client_impl.cc\nchromeos/ash/components/nearby/presence/credentials/nearby_presence_server_client_impl_unittest.cc\nchromeos/ash/components/network/geolocation_handler_impl.cc\nchromeos/ash/components/network/network_cert_loader.cc\nchromeos/ash/components/network/network_util.h\nchromeos/ash/components/network/onc/network_onc_utils.cc\nchromeos/ash/components/network/profile_policies.h\nchromeos/ash/components/network/proxy/proxy_config_service_impl_unittest.cc\nchromeos/ash/components/network/system_token_cert_db_storage.h\nchromeos/ash/components/phonehub/notification.h\nchromeos/ash/components/phonehub/url_constants.cc\nchromeos/ash/components/policy/policy_blocklist_service/ash_policy_blocklist_service_factory.h\nchromeos/ash/components/proximity_auth/proximity_auth_system_unittest.cc\nchromeos/ash/components/proximity_auth/proximity_monitor_impl_unittest.cc\nchromeos/ash/components/quick_start/quick_start_requests.cc\nchromeos/ash/components/quick_start/quick_start_requests_unittest.cc\nchromeos/ash/components/report/device_metrics/use_case/use_case.cc\nchromeos/ash/components/report/utils/network_utils.cc\nchromeos/ash/components/report/utils/network_utils_unittest.cc\nchromeos/ash/components/scheduler_config/scheduler_configuration_manager.h\nchromeos/ash/components/specialized_features/feature_access_checker_unittest.cc\nchromeos/ash/components/string_matching/tokenized_string_unittest.cc\nchromeos/ash/components/timezone/timezone_request.cc\nchromeos/ash/components/tpm/tpm_token_info_getter_unittest.cc\nchromeos/ash/components/trial_group/trial_group_checker.cc\nchromeos/ash/experiences/arc/arc_util.h\nchromeos/ash/experiences/arc/intent_helper/arc_intent_helper_bridge_unittest.cc\nchromeos/ash/experiences/arc/intent_helper/link_handler_model_unittest.cc\nchromeos/ash/experiences/arc/net/arc_net_host_impl_unittest.cc\nchromeos/ash/experiences/arc/net/passpoint_dialog_view.cc\nchromeos/ash/experiences/arc/session/arc_upgrade_params.h\nchromeos/ash/experiences/arc/session/serial_number_util_unittest.cc\nchromeos/ash/experiences/arc/volume_mounter/arc_volume_mounter_bridge_unittest.cc\nchromeos/ash/experiences/guest_os/borealis/motd/borealis_motd_ui.cc\nchromeos/ash/services/device_sync/cryptauth_api_call_flow_unittest.cc\nchromeos/ash/services/device_sync/cryptauth_client_impl.cc\nchromeos/ash/services/device_sync/cryptauth_client_impl_unittest.cc\nchromeos/ash/services/device_sync/device_sync_service_unittest.cc\nchromeos/ash/services/device_sync/public/cpp/device_sync_client_impl_unittest.cc\nchromeos/ash/services/device_sync/remote_device_loader_unittest.cc\nchromeos/ash/services/device_sync/remote_device_provider_impl_unittest.cc\nchromeos/ash/services/device_sync/remote_device_v2_loader_impl_unittest.cc\nchromeos/ash/services/device_sync/switches.cc\nchromeos/ash/services/ime/input_method_user_data_service_impl_unittest.cc\nchromeos/ash/services/quick_pair/fast_pair_data_parser.cc\nchromeos/ash/services/quick_pair/fast_pair_decryption.cc\nchromeos/ash/services/quick_pair/public/cpp/account_key_filter.cc\nchromeos/ash/services/quick_pair/public/cpp/account_key_filter.h\nchromeos/ash/services/quick_pair/public/cpp/battery_notification.h\nchromeos/ash/services/quick_pair/public/cpp/not_discoverable_advertisement.h\nchromeos/chromeos_strings.grd\nchromeos/components/quick_answers/translation_result_loader.cc\nchromeos/components/quick_answers/translation_result_loader_unittest.cc\nchromeos/components/quick_answers/utils/spell_check_language.cc\nchromeos/components/quick_answers/utils/translation_v2_utils.cc\nchromeos/components/test/data/onc/proxy_config.json\nchromeos/components/test/data/onc/shill_wifi_proxy.json\nchromeos/constants/chromeos_features.cc\nchromeos/dbus/permission_broker/permission_broker_client.h\nchromeos/printing/printer_config_cache.cc\nchromeos/printing/printer_config_cache_unittest.cc\nchromeos/printing/printer_configuration_unittest.cc\nchromeos/printing/remote_ppd_fetcher.cc\nchromeos/printing/uri_fuzzer_seed_corpus/uri1.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri10.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri11.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri12.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri13.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri14.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri15.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri18.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri19.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri2.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri24.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri3.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri4.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri49.txt\nchromeos/printing/uri_fuzzer_seed_corpus/uri5.txt\ncomponents/BUILD.gn\ncomponents/account_manager_core/account_manager_facade_impl_unittest.cc\ncomponents/activity_reporter/constants.h\ncomponents/affiliations/core/browser/affiliation_utils.h\ncomponents/affiliations/core/browser/affiliation_utils_unittest.cc\ncomponents/affiliations/core/browser/hash_affiliation_fetcher.cc\ncomponents/affiliations/core/browser/hash_affiliation_fetcher_unittest.cc\ncomponents/aggregation_service/aggregation_coordinator_utils.h\ncomponents/android_autofill/PRESUBMIT.py\ncomponents/android_system_error_page/error_page_populator.cc\ncomponents/app_restore/app_restore_info_unittest.cc\ncomponents/assist_ranker/predictor_config_definitions.cc\ncomponents/autofill/PRESUBMIT.py\ncomponents/autofill/content/renderer/PRESUBMIT.py\ncomponents/autofill/content/renderer/html_based_username_detector_browsertest.cc\ncomponents/autofill/content/renderer/page_passwords_analyser.cc\ncomponents/autofill/content/renderer/password_form_conversion_utils.cc\ncomponents/autofill/content/renderer/password_form_conversion_utils_browsertest.cc\ncomponents/autofill/core/browser/autofill_and_password_manager_internals/autofill_and_password_manager_internals.ts\ncomponents/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc\ncomponents/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager_unittest.cc\ncomponents/autofill/core/browser/crowdsourcing/determine_possible_field_types_unittest.cc\ncomponents/autofill/core/browser/data_manager/addresses/account_name_email_store_unittest.cc\ncomponents/autofill/core/browser/data_manager/addresses/address_data_cleaner_unittest.cc\ncomponents/autofill/core/browser/data_manager/addresses/address_data_manager_unittest.cc\ncomponents/autofill/core/browser/data_manager/payments/payments_data_manager_unittest.cc\ncomponents/autofill/core/browser/data_model/valuables/loyalty_card_unittest.cc\ncomponents/autofill/core/browser/form_import/form_data_importer_unittest.cc\ncomponents/autofill/core/browser/form_qualifiers_unittest.cc\ncomponents/autofill/core/browser/form_structure_unittest.cc\ncomponents/autofill/core/browser/foundations/browser_autofill_manager_unittest.cc\ncomponents/autofill/core/browser/foundations/test_autofill_client.h\ncomponents/autofill/core/browser/integrators/address_on_typing/address_on_typing_manager_unittest.cc\ncomponents/autofill/core/browser/metrics/autofill_metrics_test_base.cc\ncomponents/autofill/core/browser/metrics/autofill_metrics_unittest.cc\ncomponents/autofill/core/browser/metrics/form_interactions_ukm_logger.cc\ncomponents/autofill/core/browser/metrics/form_interactions_ukm_logger_unittest.cc\ncomponents/autofill/core/browser/metrics/prediction_quality_metrics_unittest.cc\ncomponents/autofill/core/browser/metrics/quality_metrics_unittest.cc\ncomponents/autofill/core/browser/ml_model/field_classification_model_handler.cc\ncomponents/autofill/core/browser/payments/amount_extraction_manager_unittest.cc\ncomponents/autofill/core/browser/payments/autofill_offer_manager_unittest.cc\ncomponents/autofill/core/browser/payments/constants.h\ncomponents/autofill/core/browser/payments/credit_card_access_manager_test_base.cc\ncomponents/autofill/core/browser/payments/credit_card_access_manager_test_base.h\ncomponents/autofill/core/browser/payments/credit_card_fido_authenticator.cc\ncomponents/autofill/core/browser/payments/credit_card_fido_authenticator_unittest.cc\ncomponents/autofill/core/browser/payments/credit_card_otp_authenticator_unittest.cc\ncomponents/autofill/core/browser/payments/credit_card_risk_based_authenticator_unittest.cc\ncomponents/autofill/core/browser/payments/credit_card_save_manager_unittest.cc\ncomponents/autofill/core/browser/payments/full_card_request_unittest.cc\ncomponents/autofill/core/browser/payments/multiple_request_payments_network_interface_base.cc\ncomponents/autofill/core/browser/payments/payments_access_token_fetcher_unittest.cc\ncomponents/autofill/core/browser/payments/payments_network_interface_base.cc\ncomponents/autofill/core/browser/payments/payments_network_interface_test_base.cc\ncomponents/autofill/core/browser/payments/payments_network_interface_unittest.cc\ncomponents/autofill/core/browser/payments/payments_requests/unmask_card_request_unittest.cc\ncomponents/autofill/core/browser/payments/payments_service_url.cc\ncomponents/autofill/core/browser/payments/payments_service_url_unittest.cc\ncomponents/autofill/core/browser/permissions/autofill_ai/autofill_ai_permission_utils_unittest.cc\ncomponents/autofill/core/browser/strike_databases/autofill_ai/autofill_ai_save_strike_database_by_host_unittest.cc\ncomponents/autofill/core/browser/suggestions/addresses/address_suggestion_generator_unittest.cc\ncomponents/autofill/core/browser/test_utils/autofill_test_utils.cc\ncomponents/autofill/core/browser/test_utils/test_profiles.cc\ncomponents/autofill/core/browser/ui/autofill_external_delegate_unittest.cc\ncomponents/autofill/core/browser/ui/autofill_image_fetcher.cc\ncomponents/autofill/core/browser/ui/payments/bnpl_tos_controller_impl.cc\ncomponents/autofill/core/browser/ui/payments/bnpl_tos_controller_impl_unittest.cc\ncomponents/autofill/core/browser/webdata/addresses/autofill_profile_sync_bridge.h\ncomponents/autofill/core/browser/webdata/autofill_ai/entity_sync_util.cc\ncomponents/autofill/core/browser/webdata/autofill_ai/entity_sync_util_unittest.cc\ncomponents/autofill/core/browser/webdata/payments/autofill_wallet_sync_bridge.h\ncomponents/autofill/core/browser/webdata/payments/autofill_wallet_sync_bridge_unittest.cc\ncomponents/autofill/core/browser/webdata/payments/autofill_wallet_usage_data_sync_bridge_unittest.cc\ncomponents/autofill/core/browser/webdata/payments/payments_autofill_table.h\ncomponents/autofill/core/browser/webdata/payments/payments_sync_bridge_util_unittest.cc\ncomponents/autofill/core/browser/webdata/valuables/valuables_table_unittest.cc\ncomponents/autofill/core/common/autofill_features.cc\ncomponents/autofill/core/common/form_data_fuzzed_producer.h\ncomponents/autofill_payments_strings.grdp\ncomponents/autofill_strings.grdp\ncomponents/background_task_scheduler/task_ids.h\ncomponents/blocked_content/safe_browsing_triggered_popup_blocker.h\ncomponents/bookmark_bar_strings.grdp\ncomponents/bookmarks/browser/bookmark_codec_unittest.cc\ncomponents/bookmarks/browser/bookmark_model.h\ncomponents/bookmarks/browser/bookmark_model_unittest.cc\ncomponents/bookmarks/browser/bookmark_node_data_unittest.cc\ncomponents/bookmarks/browser/bookmark_utils_unittest.cc\ncomponents/bookmarks/browser/bookmark_uuids.cc\ncomponents/bookmarks/browser/titled_url_index.cc\ncomponents/bookmarks/browser/titled_url_index_unittest.cc\ncomponents/bookmarks/managed/managed_bookmarks_policy_handler_unittest.cc\ncomponents/bookmarks/managed/managed_bookmarks_tracker_unittest.cc\ncomponents/breadcrumbs/core/breadcrumb_manager_tab_helper.cc\ncomponents/breadcrumbs/core/breadcrumb_manager_tab_helper.h\ncomponents/breadcrumbs/core/generate_not_user_triggered_actions_test_data.xml\ncomponents/browser_sync/PRESUBMIT.py\ncomponents/browser_sync/sync_internals_message_handler_unittest.cc\ncomponents/browser_ui/strings/android/browser_ui_strings.grd\ncomponents/browser_ui/strings/android/site_settings.grdp\ncomponents/browsing_data/content/browsing_data_helper_unittest.cc\ncomponents/browsing_data/content/cookie_helper_unittest.cc\ncomponents/browsing_data/content/local_storage_helper_browsertest.cc\ncomponents/browsing_data/core/browsing_data_utils_unittest.cc\ncomponents/browsing_data/core/counters/history_counter.cc\ncomponents/browsing_data/core/history_notice_utils.cc\ncomponents/browsing_data_strings.grdp\ncomponents/browsing_topics/annotator_fuzzer.cc\ncomponents/browsing_topics/annotator_impl_unittest.cc\ncomponents/captive_portal/content/captive_portal_service.h\ncomponents/captive_portal/content/captive_portal_tab_helper.h\ncomponents/captive_portal/core/captive_portal_detector.cc\ncomponents/captive_portal/core/features.h\ncomponents/cdm/common/playready_cdm_common.h\ncomponents/certificate_transparency/chrome_require_ct_delegate.h\ncomponents/certificate_transparency/chrome_require_ct_delegate_unittest.cc\ncomponents/certificate_transparency/data/log_list.json\ncomponents/certificate_transparency/tools/testdata/input.json\ncomponents/cloud_devices/common/cloud_device_description.h\ncomponents/cloud_devices/common/printer_description.h\ncomponents/collaboration/internal/android/messaging/messaging_backend_service_bridge_unittest.cc\ncomponents/collaboration/internal/collaboration_service_impl_unittest.cc\ncomponents/collaboration/internal/messaging/messaging_backend_service_impl_unittest.cc\ncomponents/collaboration_strings.grdp\ncomponents/commerce/core/account_checker.cc\ncomponents/commerce/core/account_checker_unittest.cc\ncomponents/commerce/core/commerce_constants.h\ncomponents/commerce/core/commerce_feature_list.h\ncomponents/commerce/core/compare/cluster_server_proxy.cc\ncomponents/commerce/core/compare/cluster_server_proxy_unittest.cc\ncomponents/commerce/core/compare/product_specifications_server_proxy.cc\ncomponents/commerce/core/heuristics/resources/cart_domain_cart_url_regex.json\ncomponents/commerce/core/subscriptions/subscriptions_manager_unittest.cc\ncomponents/commerce/core/subscriptions/subscriptions_server_proxy.cc\ncomponents/commerce/core/subscriptions/subscriptions_server_proxy_unittest.cc\ncomponents/commerce_strings.grdp\ncomponents/component_updater/component_updater_url_constants.cc\ncomponents/components_google_chrome_strings.grd\ncomponents/content_relationship_verification/digital_asset_links_handler.cc\ncomponents/content_relationship_verification/digital_asset_links_handler.h\ncomponents/content_settings/browser/page_specific_content_settings_unittest.cc\ncomponents/content_settings/core/browser/content_settings_provider_unittest.cc\ncomponents/content_settings/core/browser/content_settings_uma_util.cc\ncomponents/content_settings/core/common/content_settings_pattern.cc\ncomponents/content_settings/core/common/content_settings_pattern.h\ncomponents/content_settings/core/common/content_settings_pattern_parser_unittest.cc\ncomponents/content_settings/core/common/content_settings_pattern_unittest.cc\ncomponents/content_settings/renderer/content_settings_agent_impl.cc\ncomponents/contextual_search/input_state_model_unittest.cc\ncomponents/contextual_search/internal/composebox_query_controller.cc\ncomponents/contextual_search/internal/composebox_query_controller_unittest.cc\ncomponents/contextual_tasks/internal/contextual_tasks_service_impl_unittest.cc\ncomponents/contextual_tasks/internal/fallback_title_context_decorator_unittest.cc\ncomponents/contextual_tasks/internal/favicon_context_decorator_unittest.cc\ncomponents/contextual_tasks/internal/history_context_decorator_unittest.cc\ncomponents/contextual_tasks/public/account_utils_unittest.cc\ncomponents/contextual_tasks/public/contextual_task_context_unittest.cc\ncomponents/contextual_tasks/public/contextual_task_unittest.cc\ncomponents/contextual_tasks/public/features.cc\ncomponents/contextual_tasks/public/features_unittest.cc\ncomponents/continuous_search/browser/search_result_extractor_client_unittest.cc\ncomponents/country_codes/country_codes.cc\ncomponents/crash/core/app/crash_export_thunks.h\ncomponents/crash/core/app/crash_reporter_client.cc\ncomponents/crash/core/browser/resources/crashes.ts\ncomponents/crash/core/common/crash_key.h\ncomponents/cronet/PRESUBMIT.py\ncomponents/cronet/android/BUILD.gn\ncomponents/cronet/android/cronet_bidirectional_stream_adapter.h\ncomponents/cronet/android/test/javaperftests/AndroidManifest.xml\ncomponents/cronet/android/test/javatests/AndroidManifest.xml\ncomponents/cronet/gn2bp/gen_android_bp.py\ncomponents/cronet/gn2bp/gn_utils.py\ncomponents/cronet/gn2bp/run_gn2bp.py\ncomponents/cronet/license/license_utils.py\ncomponents/cronet/tools/cr_cronet.py\ncomponents/cronet/tools/utils.py\ncomponents/custom_handlers/protocol_handler_registry_unittest.cc\ncomponents/data_sharing/internal/android/data_sharing_service_android.cc\ncomponents/data_sharing/internal/data_sharing_service_impl_unittest.cc\ncomponents/data_sharing/internal/group_data_proto_utils_unittest.cc\ncomponents/data_sharing/internal/preview_server_proxy.cc\ncomponents/data_sharing/internal/preview_server_proxy_unittest.cc\ncomponents/data_sharing/public/data_sharing_network_utils.h\ncomponents/data_sharing/public/features.cc\ncomponents/data_sharing/public/group_data.h\ncomponents/desks_storage/core/admin_template_service_unittest.cc\ncomponents/desks_storage/core/desk_model_wrapper_unittest.cc\ncomponents/desks_storage/core/desk_sync_bridge_unittest.cc\ncomponents/desks_storage/core/desk_template_conversion.cc\ncomponents/desks_storage/core/desk_template_conversion_unittest.cc\ncomponents/desks_storage/core/desk_template_semantics_unittest.cc\ncomponents/desks_storage/core/desk_test_util.h\ncomponents/desks_storage/core/desk_test_util_unittest.cc\ncomponents/desks_storage/core/local_desk_data_manager_unittest.cc\ncomponents/device_signals/core/browser/android/android_os_signals_collector_unittest.cc\ncomponents/device_signals/core/browser/browser_utils.cc\ncomponents/device_signals/core/browser/desktop/desktop_os_signals_collector_unittest.cc\ncomponents/device_signals/core/common/win/platform_utils_win.cc\ncomponents/device_signals/core/common/win/win_types.h\ncomponents/device_signals/core/system_signals/win/wsc_client.h\ncomponents/dom_distiller/content/browser/distiller_page_web_contents_browsertest.cc\ncomponents/dom_distiller/content/browser/distiller_referrer_throttle_unittest.cc\ncomponents/dom_distiller/content/browser/dom_distiller_viewer_source.cc\ncomponents/dom_distiller/core/html/dom_distiller_viewer.html\ncomponents/dom_distiller/core/html/preview.html\ncomponents/dom_distiller/core/javascript/content_processing.js\ncomponents/dom_distiller/core/url_utils_unittest.cc\ncomponents/dom_distiller/core/viewer.cc\ncomponents/domain_reliability/bake_in_configs.py\ncomponents/domain_reliability/google_configs.cc\ncomponents/domain_reliability/google_configs_unittest.cc\ncomponents/domain_reliability/monitor_unittest.cc\ncomponents/drive/drive_api_util.h\ncomponents/drive/service/drive_api_service.cc\ncomponents/drive/service/drive_service_interface.h\ncomponents/drive/service/fake_drive_service.cc\ncomponents/embedder_support/android/BUILD.gn\ncomponents/endpoint_fetcher/endpoint_fetcher_unittest.cc\ncomponents/enterprise/browser/reporting/saas_usage/saas_usage_aggregation_utils_unittest.cc\ncomponents/enterprise/browser/reporting/saas_usage/saas_usage_report_factory_unittest.cc\ncomponents/enterprise/browser/reporting/saas_usage/saas_usage_reporting_controller_unittest.cc\ncomponents/enterprise/connectors/core/cloud_content_scanning/resumable_uploader_base_unittest.cc\ncomponents/enterprise/connectors/core/content_area_user_provider.cc\ncomponents/enterprise/connectors/core/content_area_user_provider.h\ncomponents/enterprise/connectors/core/reporting_utils_unittest.cc\ncomponents/enterprise/connectors/core/service_provider_config.cc\ncomponents/enterprise/connectors/core/service_provider_config_unittest.cc\ncomponents/enterprise/data_controls/core/browser/conditions/attributes_condition_unittest.cc\ncomponents/enterprise/data_controls/core/browser/data_controls_policy_handler_unittest.cc\ncomponents/enterprise/data_controls/core/browser/rule_unittest.cc\ncomponents/enterprise/data_controls/core/browser/rules_service_base_unittest.cc\ncomponents/enterprise/obfuscation/core/utils.h\ncomponents/enterprise_strings.grdp\ncomponents/error_page/common/localized_error.cc\ncomponents/error_page_strings.grdp\ncomponents/exo/keyboard_unittest.cc\ncomponents/exo/ui_lock_controller.h\ncomponents/eye_dropper/eye_dropper_view.cc\ncomponents/facilitated_payments/content/browser/security_checker.h\ncomponents/facilitated_payments/core/validation/payment_link_validator_unittest.cc\ncomponents/favicon/content/content_favicon_driver_unittest.cc\ncomponents/favicon/core/fallback_url_util_unittest.cc\ncomponents/favicon/core/favicon_backend.cc\ncomponents/favicon/core/favicon_backend_unittest.cc\ncomponents/favicon/core/favicon_database.cc\ncomponents/favicon/core/favicon_database.h\ncomponents/favicon/core/favicon_database_unittest.cc\ncomponents/favicon/core/favicon_driver_observer.h\ncomponents/favicon/core/favicon_handler_unittest.cc\ncomponents/favicon/core/favicon_service.h\ncomponents/favicon/core/favicon_service_impl_unittest.cc\ncomponents/favicon/core/large_icon_service_impl.cc\ncomponents/favicon/core/large_icon_service_impl_unittest.cc\ncomponents/favicon_base/favicon_url_parser.h\ncomponents/favicon_base/favicon_url_parser_unittest.cc\ncomponents/feed/core/v2/api_test/feed_api_stream_unittest.cc\ncomponents/feed/core/v2/feed_network_impl.cc\ncomponents/feed/core/v2/feed_network_impl_unittest.cc\ncomponents/feed/core/v2/feed_stream.cc\ncomponents/feed/core/v2/public/public_types_unittest.cc\ncomponents/feedback/feedback_common.cc\ncomponents/feedback/feedback_common_unittest.cc\ncomponents/feedback/feedback_report.h\ncomponents/feedback/feedback_uploader.cc\ncomponents/feedback/feedback_uploader_dispatch_unittest.cc\ncomponents/feedback/redaction_tool/redaction_tool_unittest.cc\ncomponents/feedback/redaction_tool/url_parse.h\ncomponents/fullscreen_control_strings.grdp\ncomponents/gcm_driver/gcm_account_mapper.cc\ncomponents/gcm_driver/gcm_account_mapper_unittest.cc\ncomponents/gcm_driver/gcm_client_impl.cc\ncomponents/gcm_driver/gcm_client_impl_unittest.cc\ncomponents/gcm_driver/gcm_driver.cc\ncomponents/global_media_controls/public/media_session_notification_item_unittest.cc\ncomponents/global_media_controls/public/views/chapter_item_view_unittest.cc\ncomponents/global_media_controls/public/views/media_item_ui_detailed_view_unittest.cc\ncomponents/google/core/common/google_util.cc\ncomponents/google/core/common/google_util_unittest.cc\ncomponents/guest_view/browser/guest_view_base.h\ncomponents/gwp_asan/client/extreme_lightweight_detector_malloc_shims.cc\ncomponents/gwp_asan/client/extreme_lightweight_detector_quarantine.h\ncomponents/history/core/browser/BUILD.gn\ncomponents/history/core/browser/browsing_history_service.cc\ncomponents/history/core/browser/expire_history_backend_unittest.cc\ncomponents/history/core/browser/features.cc\ncomponents/history/core/browser/history_backend.cc\ncomponents/history/core/browser/history_backend.h\ncomponents/history/core/browser/history_backend_notifier.h\ncomponents/history/core/browser/history_backend_unittest.cc\ncomponents/history/core/browser/history_querying_unittest.cc\ncomponents/history/core/browser/history_service.cc\ncomponents/history/core/browser/history_service.h\ncomponents/history/core/browser/history_service_unittest.cc\ncomponents/history/core/browser/history_types_unittest.cc\ncomponents/history/core/browser/sync/delete_directive_handler_unittest.cc\ncomponents/history/core/browser/sync/history_data_type_controller.cc\ncomponents/history/core/browser/top_sites_database.cc\ncomponents/history/core/browser/top_sites_database_unittest.cc\ncomponents/history/core/browser/top_sites_impl.cc\ncomponents/history/core/browser/top_sites_impl_unittest.cc\ncomponents/history/core/browser/url_database_unittest.cc\ncomponents/history/core/browser/url_utils_unittest.cc\ncomponents/history/core/browser/visit_database.cc\ncomponents/history/core/browser/visit_database_unittest.cc\ncomponents/history/core/browser/visit_tracker_unittest.cc\ncomponents/history/core/browser/visited_link_database_unittest.cc\ncomponents/history/core/browser/web_history_service.cc\ncomponents/history/core/browser/web_history_service_unittest.cc\ncomponents/history/core/test/fake_web_history_service.cc\ncomponents/history/metrics/domain_diversity_reporter_unittest.cc\ncomponents/history_clusters/core/cluster_interaction_state_processor_unittest.cc\ncomponents/history_clusters/core/cluster_similarity_heuristics_processor_unittest.cc\ncomponents/history_clusters/core/clusterer_unittest.cc\ncomponents/history_clusters/core/content_visibility_cluster_finalizer_unittest.cc\ncomponents/history_clusters/core/file_clustering_backend_unittest.cc\ncomponents/history_clusters/core/history_clusters_service_test_api.cc\ncomponents/history_clusters/core/history_clusters_service_unittest.cc\ncomponents/history_clusters/core/history_clusters_util_unittest.cc\ncomponents/history_clusters/core/on_device_clustering_backend_unittest.cc\ncomponents/history_clusters/core/ranking_cluster_finalizer_unittest.cc\ncomponents/history_clusters/core/similar_visit_deduper_cluster_finalizer_unittest.cc\ncomponents/history_clusters/core/single_visit_cluster_finalizer_unittest.cc\ncomponents/history_clusters_strings.grdp\ncomponents/history_strings.grdp\ncomponents/infobars/content/content_infobar_manager.cc\ncomponents/input/android/scoped_input_receiver.h\ncomponents/input/features.h\ncomponents/input/render_input_router.h\ncomponents/input/render_widget_host_input_event_router.cc\ncomponents/input/render_widget_host_input_event_router.h\ncomponents/input/render_widget_host_view_input.h\ncomponents/input/touch_action_filter.h\ncomponents/invalidation/impl/per_user_topic_subscription_manager.cc\ncomponents/invalidation/impl/per_user_topic_subscription_manager_unittest.cc\ncomponents/javascript_dialogs/tab_modal_dialog_manager.cc\ncomponents/javascript_dialogs_strings.grdp\ncomponents/keyed_service/core/keyed_service_base_factory.cc\ncomponents/keyed_service/core/simple_keyed_service_factory.h\ncomponents/legion/attestation/handler_impl_unittest.cc\ncomponents/legion/attestation/server_verification_key_unittest.cc\ncomponents/legion/phosphor/config_http.cc\ncomponents/legion/websocket_client.cc\ncomponents/lens/lens_features.cc\ncomponents/lens/lens_url_utils_unittest.cc\ncomponents/leveldb_proto/internal/leveldb_proto_feature_list.cc\ncomponents/live_caption/greedy_text_stabilizer.h\ncomponents/live_caption/translation_dispatcher.cc\ncomponents/live_caption/translation_dispatcher_unittest.cc\ncomponents/login_dialog_strings.grdp\ncomponents/lookalikes/core/lookalike_url_util.cc\ncomponents/lookalikes/core/lookalike_url_util.h\ncomponents/lookalikes/core/lookalike_url_util_unittest.cc\ncomponents/management_strings.grdp\ncomponents/manta/anchovy/anchovy_proto_helper.cc\ncomponents/manta/base_provider.cc\ncomponents/manta/base_provider_test_helper.cc\ncomponents/manta/mahi_provider.cc\ncomponents/manta/manta_service_callbacks.cc\ncomponents/manta/orca_provider.cc\ncomponents/manta/orca_provider_unittest.cc\ncomponents/manta/scanner_provider.cc\ncomponents/manta/scanner_provider.h\ncomponents/manta/scanner_provider_unittest.cc\ncomponents/manta/walrus_provider.cc\ncomponents/media_router/browser/android/flinging_controller_bridge.cc\ncomponents/media_router/browser/media_router_dialog_controller_unittest.cc\ncomponents/media_router/browser/media_router_metrics_unittest.cc\ncomponents/media_router/browser/media_sinks_observer.h\ncomponents/media_router/browser/presentation/local_presentation_manager.h\ncomponents/media_router/browser/presentation/presentation_media_sinks_observer_unittest.cc\ncomponents/media_router/common/media_source.h\ncomponents/media_router/common/media_source_unittest.cc\ncomponents/media_router/common/providers/cast/cast_media_source_unittest.cc\ncomponents/media_router/common/providers/cast/certificate/net_trust_store.cc\ncomponents/media_router/common/providers/cast/channel/BUILD.gn\ncomponents/media_router/common/providers/cast/channel/enum_table.h\ncomponents/metrics/debug/app.ts\ncomponents/metrics/dwa/dwa_entry_builder_unittest.cc\ncomponents/metrics/metrics_state_manager.h\ncomponents/metrics/metrics_state_manager_unittest.cc\ncomponents/metrics/net/net_metrics_log_uploader.cc\ncomponents/metrics/private_metrics/data_upload_config_downloader.cc\ncomponents/metrics/private_metrics/data_upload_config_downloader_unittest.cc\ncomponents/metrics/reporting_service.cc\ncomponents/metrics/server_urls.cc\ncomponents/metrics/server_urls.grd\ncomponents/mirroring/service/mirror_settings.h\ncomponents/mirroring/service/remoting_sender.h\ncomponents/mirroring/service/rtp_stream.h\ncomponents/net_log/resources/net_export.html\ncomponents/network_time/network_time_test_utils.cc\ncomponents/network_time/network_time_tracker.cc\ncomponents/no_state_prefetch/browser/no_state_prefetch_manager.cc\ncomponents/no_state_prefetch/browser/no_state_prefetch_utils_unittest.cc\ncomponents/ntp_tiles/most_visited_sites_unittest.cc\ncomponents/ntp_tiles/popular_sites_impl.cc\ncomponents/ntp_tiles/popular_sites_impl_unittest.cc\ncomponents/ntp_tiles/resources/default_popular_sites.json\ncomponents/ntp_tiles/resources/default_popular_sites_with_popular_apps.json\ncomponents/ntp_tiles/resources/default_popular_sites_without_popular_apps.json\ncomponents/offline_pages/core/background/cleanup_task_unittest.cc\ncomponents/offline_pages/core/background/pick_request_task_unittest.cc\ncomponents/offline_pages/core/background/reconcile_task_unittest.cc\ncomponents/offline_pages/core/model/get_pages_task_unittest.cc\ncomponents/omnibox/PRESUBMIT.py\ncomponents/omnibox/browser/aim_eligibility_service.cc\ncomponents/omnibox/browser/aim_eligibility_service_unittest.cc\ncomponents/omnibox/browser/autocomplete_controller.cc\ncomponents/omnibox/browser/autocomplete_controller.h\ncomponents/omnibox/browser/autocomplete_controller_metrics_unittest.cc\ncomponents/omnibox/browser/autocomplete_controller_unittest.cc\ncomponents/omnibox/browser/autocomplete_input.cc\ncomponents/omnibox/browser/autocomplete_match.cc\ncomponents/omnibox/browser/autocomplete_match.h\ncomponents/omnibox/browser/autocomplete_match_test_util.cc\ncomponents/omnibox/browser/autocomplete_match_type_unittest.cc\ncomponents/omnibox/browser/autocomplete_match_unittest.cc\ncomponents/omnibox/browser/autocomplete_result.cc\ncomponents/omnibox/browser/autocomplete_result_unittest.cc\ncomponents/omnibox/browser/autocomplete_scoring_model_handler_unittest.cc\ncomponents/omnibox/browser/autocomplete_scoring_model_service.cc\ncomponents/omnibox/browser/base_search_provider_unittest.cc\ncomponents/omnibox/browser/builtin_provider_unittest.cc\ncomponents/omnibox/browser/document_provider.cc\ncomponents/omnibox/browser/document_provider_unittest.cc\ncomponents/omnibox/browser/document_suggestions_service.cc\ncomponents/omnibox/browser/document_suggestions_service_unittest.cc\ncomponents/omnibox/browser/enterprise_search_aggregator_provider.cc\ncomponents/omnibox/browser/enterprise_search_aggregator_provider_unittest.cc\ncomponents/omnibox/browser/enterprise_search_aggregator_suggestions_service.cc\ncomponents/omnibox/browser/enterprise_search_aggregator_suggestions_service_unittest.cc\ncomponents/omnibox/browser/fake_autocomplete_provider_client.cc\ncomponents/omnibox/browser/featured_search_provider_unittest.cc\ncomponents/omnibox/browser/history_match.h\ncomponents/omnibox/browser/history_provider.h\ncomponents/omnibox/browser/history_quick_provider.cc\ncomponents/omnibox/browser/history_quick_provider_unittest.cc\ncomponents/omnibox/browser/history_scoring_signals_annotator_unittest.cc\ncomponents/omnibox/browser/history_url_provider.cc\ncomponents/omnibox/browser/history_url_provider_unittest.cc\ncomponents/omnibox/browser/in_memory_url_index_types.h\ncomponents/omnibox/browser/in_memory_url_index_types_unittest.cc\ncomponents/omnibox/browser/in_memory_url_index_unittest.cc\ncomponents/omnibox/browser/keyword_provider_unittest.cc\ncomponents/omnibox/browser/location_bar_model_impl_unittest.cc\ncomponents/omnibox/browser/most_visited_sites_provider.cc\ncomponents/omnibox/browser/most_visited_sites_provider_unittest.cc\ncomponents/omnibox/browser/omnibox_field_trial.cc\ncomponents/omnibox/browser/omnibox_text_util_unittest.cc\ncomponents/omnibox/browser/on_device_head_provider_unittest.cc\ncomponents/omnibox/browser/on_device_tail_model_service_unittest.cc\ncomponents/omnibox/browser/open_tab_provider_unittest.cc\ncomponents/omnibox/browser/recently_closed_tabs_provider.cc\ncomponents/omnibox/browser/remote_suggestions_service.h\ncomponents/omnibox/browser/remote_suggestions_service_unittest.cc\ncomponents/omnibox/browser/scored_history_match.cc\ncomponents/omnibox/browser/scored_history_match_unittest.cc\ncomponents/omnibox/browser/search_provider.cc\ncomponents/omnibox/browser/search_suggestion_parser.cc\ncomponents/omnibox/browser/search_suggestion_parser_unittest.cc\ncomponents/omnibox/browser/shortcuts_backend.cc\ncomponents/omnibox/browser/shortcuts_backend_unittest.cc\ncomponents/omnibox/browser/shortcuts_database_unittest.cc\ncomponents/omnibox/browser/shortcuts_provider_unittest.cc\ncomponents/omnibox/browser/suggestion_group_unittest.cc\ncomponents/omnibox/browser/tab_group_provider_unittest.cc\ncomponents/omnibox/browser/titled_url_match_utils.cc\ncomponents/omnibox/browser/titled_url_match_utils_unittest.cc\ncomponents/omnibox/browser/zero_suggest_cache_service_unittest.cc\ncomponents/omnibox/browser/zero_suggest_provider_unittest.cc\ncomponents/omnibox/browser/zero_suggest_verbatim_match_provider_unittest.cc\ncomponents/omnibox/common/omnibox_feature_configs.h\ncomponents/omnibox/resources/omnibox_pedal_synonyms.grd\ncomponents/omnibox_pedal_ui_strings.grdp\ncomponents/omnibox_strings.grdp\ncomponents/optimization_guide/content/browser/page_context_eligibility_unittest.cc\ncomponents/optimization_guide/core/delivery/model_provider_registry.cc\ncomponents/optimization_guide/core/delivery/prediction_manager_unittest.cc\ncomponents/optimization_guide/core/filters/hints_component_util_unittest.cc\ncomponents/optimization_guide/core/filters/optimization_filter_unittest.cc\ncomponents/optimization_guide/core/hints/hints_manager_unittest.cc\ncomponents/optimization_guide/core/hints/optimization_metadata_unittest.cc\ncomponents/optimization_guide/core/inference/model_handler_unittest.cc\ncomponents/optimization_guide/core/inference/tflite_model_executor_unittest.cc\ncomponents/optimization_guide/core/model_execution/json_response_parser_unittest.cc\ncomponents/optimization_guide/core/model_execution/model_execution_fetcher.cc\ncomponents/optimization_guide/core/model_execution/model_execution_fetcher_impl.cc\ncomponents/optimization_guide/core/model_execution/model_execution_fetcher_impl_unittest.cc\ncomponents/optimization_guide/core/model_execution/model_execution_manager_unittest.cc\ncomponents/optimization_guide/core/model_execution/on_device_model_adaptation_loader.cc\ncomponents/optimization_guide/core/model_quality/model_quality_logs_uploader_service.cc\ncomponents/optimization_guide/core/optimization_guide_constants.cc\ncomponents/optimization_guide/core/optimization_guide_proto_util.cc\ncomponents/optimization_guide/core/optimization_guide_util.h\ncomponents/optimization_guide/core/optimization_guide_util_unittest.cc\ncomponents/optimization_guide/optimization_guide_internals/resources/optimization_guide_internals.ts\ncomponents/optimization_guide/tools/gen_on_device_proto_descriptors.py\ncomponents/origin_trials/browser/leveldb_persistence_provider_unittest.cc\ncomponents/os_crypt/sync/libsecret_util_linux.cc\ncomponents/page_content_annotations/core/page_content_annotations_service_unittest.cc\ncomponents/page_image_service/image_service_impl_unittest.cc\ncomponents/page_info/core/about_this_site_service.cc\ncomponents/page_info/core/about_this_site_service_unittest.cc\ncomponents/page_info/core/merchant_trust_service.cc\ncomponents/page_info/core/merchant_trust_service_unittest.cc\ncomponents/page_info/page_info.cc\ncomponents/page_info_strings.grdp\ncomponents/page_load_metrics/browser/metrics_web_contents_observer.cc\ncomponents/page_load_metrics/browser/metrics_web_contents_observer_unittest.cc\ncomponents/page_load_metrics/browser/observers/ad_metrics/ads_page_load_metrics_observer.cc\ncomponents/page_load_metrics/browser/observers/ad_metrics/ads_page_load_metrics_observer_unittest.cc\ncomponents/page_load_metrics/browser/observers/back_forward_cache_page_load_metrics_observer_unittest.cc\ncomponents/page_load_metrics/browser/observers/core/uma_page_load_metrics_observer_unittest.cc\ncomponents/page_load_metrics/browser/observers/page_load_metrics_observer_content_test_harness.cc\ncomponents/page_load_metrics/browser/observers/service_worker_page_load_metrics_observer.cc\ncomponents/page_load_metrics/browser/observers/use_counter_page_load_metrics_observer.cc\ncomponents/page_load_metrics/browser/observers/use_counter_page_load_metrics_observer_unittest.cc\ncomponents/page_load_metrics/browser/observers/zstd_page_load_metrics_observer_unittest.cc\ncomponents/page_load_metrics/browser/page_load_metrics_observer_interface.h\ncomponents/page_load_metrics/browser/page_load_metrics_util.cc\ncomponents/page_load_metrics/browser/page_load_metrics_util.h\ncomponents/page_load_metrics/browser/page_load_tracker.h\ncomponents/page_load_metrics/google/browser/google_url_util.cc\ncomponents/page_load_metrics/google/browser/google_url_util.h\ncomponents/page_load_metrics/google/browser/google_url_util_unittest.cc\ncomponents/page_load_metrics/renderer/fake_page_timing_sender.h\ncomponents/paint_preview/browser/file_manager_unittest.cc\ncomponents/paint_preview/browser/paint_preview_base_service_unittest.cc\ncomponents/paint_preview/browser/paint_preview_client_unittest.cc\ncomponents/paint_preview/common/paint_preview_tracker_unittest.cc\ncomponents/paint_preview/common/proto_validator_unittest.cc\ncomponents/paint_preview/common/subset_font.cc\ncomponents/paint_preview/player/player_compositor_delegate_unittest.cc\ncomponents/paint_preview/renderer/paint_preview_recorder_browsertest.cc\ncomponents/paint_preview/renderer/paint_preview_recorder_utils_unittest.cc\ncomponents/password_manager/content/browser/content_password_manager_driver_unittest.cc\ncomponents/password_manager/core/browser/credential_manager_impl_unittest.cc\ncomponents/password_manager/core/browser/credential_manager_logger_unittest.cc\ncomponents/password_manager/core/browser/credential_manager_pending_request_task_unittest.cc\ncomponents/password_manager/core/browser/credentials_cleaner_unittest.cc\ncomponents/password_manager/core/browser/export/password_manager_exporter_unittest.cc\ncomponents/password_manager/core/browser/form_fetcher_impl_unittest.cc\ncomponents/password_manager/core/browser/form_parsing/form_data_parser.cc\ncomponents/password_manager/core/browser/form_parsing/form_data_parser_unittest.cc\ncomponents/password_manager/core/browser/form_parsing/fuzzer/form_predictions_producer.h\ncomponents/password_manager/core/browser/generation/password_requirements_spec_fetcher_impl.cc\ncomponents/password_manager/core/browser/generation/password_requirements_spec_fetcher_unittest.cc\ncomponents/password_manager/core/browser/hash_password_manager.cc\ncomponents/password_manager/core/browser/hash_password_manager_unittest.cc\ncomponents/password_manager/core/browser/import/csv_password.h\ncomponents/password_manager/core/browser/import/csv_password_iterator.h\ncomponents/password_manager/core/browser/import/csv_password_sequence.h\ncomponents/password_manager/core/browser/import/csv_password_sequence_unittest.cc\ncomponents/password_manager/core/browser/import/password_importer_unittest.cc\ncomponents/password_manager/core/browser/leak_detection/bulk_leak_check_impl_unittest.cc\ncomponents/password_manager/core/browser/leak_detection/leak_detection_check_factory_impl_unittest.cc\ncomponents/password_manager/core/browser/leak_detection/leak_detection_check_impl_unittest.cc\ncomponents/password_manager/core/browser/leak_detection/leak_detection_request.h\ncomponents/password_manager/core/browser/leak_detection_delegate_helper_unittest.cc\ncomponents/password_manager/core/browser/leak_detection_dialog_utils.cc\ncomponents/password_manager/core/browser/old_google_credentials_cleaner.cc\ncomponents/password_manager/core/browser/old_google_credentials_cleaner.h\ncomponents/password_manager/core/browser/old_google_credentials_cleaner_unittest.cc\ncomponents/password_manager/core/browser/os_crypt_async_migrator.h\ncomponents/password_manager/core/browser/password_autofill_manager_unittest.cc\ncomponents/password_manager/core/browser/password_feature_manager_impl_unittest.cc\ncomponents/password_manager/core/browser/password_form_filling_unittest.cc\ncomponents/password_manager/core/browser/password_form_manager_unittest.cc\ncomponents/password_manager/core/browser/password_generation_frame_helper.cc\ncomponents/password_manager/core/browser/password_generation_frame_helper_unittest.cc\ncomponents/password_manager/core/browser/password_generation_manager_unittest.cc\ncomponents/password_manager/core/browser/password_hash_data.cc\ncomponents/password_manager/core/browser/password_hash_data.h\ncomponents/password_manager/core/browser/password_manager.cc\ncomponents/password_manager/core/browser/password_manager.h\ncomponents/password_manager/core/browser/password_manager_client_helper_unittest.cc\ncomponents/password_manager/core/browser/password_manager_constants.cc\ncomponents/password_manager/core/browser/password_manager_metrics_recorder.h\ncomponents/password_manager/core/browser/password_manager_metrics_util_unittest.cc\ncomponents/password_manager/core/browser/password_manager_test_utils.cc\ncomponents/password_manager/core/browser/password_manager_unittest.cc\ncomponents/password_manager/core/browser/password_manager_util.h\ncomponents/password_manager/core/browser/password_manager_util_unittest.cc\ncomponents/password_manager/core/browser/password_manual_fallback_flow_unittest.cc\ncomponents/password_manager/core/browser/password_reuse_detector_impl.cc\ncomponents/password_manager/core/browser/password_reuse_detector_impl_unittest.cc\ncomponents/password_manager/core/browser/password_reuse_manager_impl_unittest.cc\ncomponents/password_manager/core/browser/password_save_manager_impl_unittest.cc\ncomponents/password_manager/core/browser/password_store/get_logins_with_affiliations_request_handler_unittest.cc\ncomponents/password_manager/core/browser/password_store/login_database_unittest.cc\ncomponents/password_manager/core/browser/password_store/login_database_win.cc\ncomponents/password_manager/core/browser/password_store/password_notes_table_unittest.cc\ncomponents/password_manager/core/browser/password_store/password_store_unittest.cc\ncomponents/password_manager/core/browser/password_store/psl_matching_helper.cc\ncomponents/password_manager/core/browser/password_store/psl_matching_helper_unittest.cc\ncomponents/password_manager/core/browser/password_store/statistics_table_unittest.cc\ncomponents/password_manager/core/browser/password_suggestion_generator_unittest.cc\ncomponents/password_manager/core/browser/password_sync_util.cc\ncomponents/password_manager/core/browser/password_ui_utils.cc\ncomponents/password_manager/core/browser/password_ui_utils_unittest.cc\ncomponents/password_manager/core/browser/sharing/fake_recipients_fetcher.cc\ncomponents/password_manager/core/browser/sharing/incoming_password_sharing_invitation_sync_bridge_unittest.cc\ncomponents/password_manager/core/browser/sharing/password_sharing_recipients_downloader.cc\ncomponents/password_manager/core/browser/store_metrics_reporter_unittest.cc\ncomponents/password_manager/core/browser/sync/password_sync_bridge.h\ncomponents/password_manager/core/browser/sync_credentials_filter_unittest.cc\ncomponents/password_manager/core/browser/sync_username_test_base.cc\ncomponents/password_manager/core/browser/ui/credential_ui_entry.cc\ncomponents/password_manager/core/browser/ui/credential_ui_entry_unittest.cc\ncomponents/password_manager/core/browser/ui/password_undo_helper_unittest.cc\ncomponents/password_manager/core/browser/ui/passwords_grouper.cc\ncomponents/password_manager/core/browser/ui/passwords_grouper.h\ncomponents/password_manager/core/browser/ui/passwords_grouper_unittest.cc\ncomponents/password_manager/core/browser/ui/saved_passwords_presenter_unittest.cc\ncomponents/password_manager/core/browser/undo_password_change_controller_unittest.cc\ncomponents/password_manager/core/browser/well_known_change_password/well_known_change_password_state.cc\ncomponents/password_manager/core/browser/well_known_change_password/well_known_change_password_util_unittest.cc\ncomponents/password_manager/core/common/password_manager_pref_names.h\ncomponents/password_manager/ios/password_form_helper_unittest.mm\ncomponents/password_manager/ios/password_suggestion_helper_unittest.mm\ncomponents/password_manager/ios/shared_password_controller_unittest.mm\ncomponents/password_manager/ios/test_helpers.cc\ncomponents/password_manager/services/csv_password/public/mojom/csv_password_parser_traits_unittest.cc\ncomponents/password_manager_strings.grdp\ncomponents/payments/content/android/payment_feature_map.h\ncomponents/payments/content/android_app_communication_unittest.cc\ncomponents/payments/content/android_payment_app_factory_unittest.cc\ncomponents/payments/content/payment_app.h\ncomponents/payments/content/payment_request_spec.h\ncomponents/payments/content/payment_request_state_unittest.cc\ncomponents/payments/content/utility/payment_manifest_parser.h\ncomponents/payments/content/utility/payment_method_manifest_parser_fuzzer.cc\ncomponents/payments/core/error_strings.cc\ncomponents/payments/core/error_strings.h\ncomponents/payments/core/journey_logger_unittest.cc\ncomponents/payments/core/method_strings.cc\ncomponents/payments/core/method_strings.h\ncomponents/payments/core/payment_manifest_downloader_unittest.cc\ncomponents/payments/core/url_util.h\ncomponents/payments/core/url_util_unittest.cc\ncomponents/payments_strings.grdp\ncomponents/pdf/renderer/pdf_accessibility_tree_browsertest.cc\ncomponents/performance_manager/decorators/frame_input_state_decorator.cc\ncomponents/performance_manager/graph/frame_node_impl.cc\ncomponents/performance_manager/public/graph/frame_node.h\ncomponents/performance_manager/public/graph/process_node.h\ncomponents/performance_manager/public/graph/worker_node.h\ncomponents/permissions/android/permissions_android_strings.grd\ncomponents/permissions/constants.cc\ncomponents/permissions/content_setting_permission_context_base_unittest.cc\ncomponents/permissions/object_permission_context_base_unittest.cc\ncomponents/permissions/pepc_initiated_permission_request_unittest.cc\ncomponents/permissions/permission_actions_history_unittest.cc\ncomponents/permissions/permission_context_base.cc\ncomponents/permissions/permission_decision_auto_blocker_unittest.cc\ncomponents/permissions/permission_indicators_tab_data_unittest.cc\ncomponents/permissions/permission_manager_unittest.cc\ncomponents/permissions/permission_request_manager.cc\ncomponents/permissions/permission_request_manager_unittest.cc\ncomponents/permissions/permission_uma_util.h\ncomponents/permissions/permission_uma_util_unittest.cc\ncomponents/permissions/prediction_service/permissions_aiv3_handler_unittest.cc\ncomponents/permissions/prediction_service/permissions_aiv4_handler_unittest.cc\ncomponents/permissions/prediction_service/prediction_common.h\ncomponents/permissions/prediction_service/prediction_model_handler.cc\ncomponents/permissions/prediction_service/prediction_service_base.h\ncomponents/permissions/test/mock_permission_request.h\ncomponents/permissions_strings.grdp\ncomponents/plus_addresses/core/browser/metrics/plus_address_submission_logger_unittest.cc\ncomponents/plus_addresses/core/browser/plus_address_http_client_impl.cc\ncomponents/plus_addresses/core/browser/plus_address_http_client_impl_unittest.cc\ncomponents/plus_addresses/core/browser/resources/strings/plus_addresses_strings.grd\ncomponents/policy/PRESUBMIT.py\ncomponents/policy/core/browser/browser_policy_connector.cc\ncomponents/policy/core/browser/configuration_policy_pref_store_unittest.cc\ncomponents/policy/core/browser/signin/user_cloud_signin_restriction_policy_fetcher.cc\ncomponents/policy/core/browser/signin/user_cloud_signin_restriction_policy_fetcher_unittest.cc\ncomponents/policy/core/browser/url_list/url_allowlist_policy_handler.cc\ncomponents/policy/core/browser/url_list/url_allowlist_policy_handler.h\ncomponents/policy/core/browser/url_list/url_blocklist_manager.h\ncomponents/policy/core/browser/url_list/url_blocklist_manager_unittest.cc\ncomponents/policy/core/browser/url_list/url_blocklist_policy_handler.cc\ncomponents/policy/core/browser/url_list/url_blocklist_policy_handler.h\ncomponents/policy/core/browser/url_list/url_scheme_list_policy_handler.cc\ncomponents/policy/core/browser/url_list/url_scheme_list_policy_handler.h\ncomponents/policy/core/common/cloud/cloud_policy_client_unittest.cc\ncomponents/policy/core/common/cloud/profile_cloud_policy_store_unittest.cc\ncomponents/policy/core/common/cloud/test/policy_builder.cc\ncomponents/policy/core/common/cloud/user_cloud_policy_store_unittest.cc\ncomponents/policy/core/common/cloud/user_info_fetcher.cc\ncomponents/policy/core/common/cloud/user_info_fetcher_unittest.cc\ncomponents/policy/core/common/default_chrome_apps_migrator.cc\ncomponents/policy/core/common/default_chrome_apps_migrator_unittest.cc\ncomponents/policy/core/common/policy_loader_common.cc\ncomponents/policy/core/common/policy_loader_common_unittest.cc\ncomponents/policy/core/common/policy_logger.cc\ncomponents/policy/core/common/policy_map_unittest.cc\ncomponents/policy/core/common/policy_service_impl_unittest.cc\ncomponents/policy/core/common/registry_dict_unittest.cc\ncomponents/policy/core/common/scoped_critical_policy_section.cc\ncomponents/policy/core/common/values_util.h\ncomponents/policy/resources/policy_templates.py\ncomponents/policy/resources/webui/policy_base.ts\ncomponents/policy/test/data/pref_mapping/AllHttpAuthSchemesAllowedForOrigins.json\ncomponents/policy/test/data/pref_mapping/AllowedDomainsForApps.json\ncomponents/policy/test/data/pref_mapping/AllowedDomainsForAppsList.json\ncomponents/policy/test/data/pref_mapping/AlwaysOnVpnPreConnectUrlAllowlist.json\ncomponents/policy/test/data/pref_mapping/AppLaunchAutomation.json\ncomponents/policy/test/data/pref_mapping/AudioCaptureAllowedUrls.json\ncomponents/policy/test/data/pref_mapping/AutoOpenAllowedForURLs.json\ncomponents/policy/test/data/pref_mapping/AutomaticFullscreenAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/AutomaticFullscreenBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/BrowserSwitcherUrlGreylist.json\ncomponents/policy/test/data/pref_mapping/BrowserSwitcherUrlList.json\ncomponents/policy/test/data/pref_mapping/ClipboardAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/ClipboardBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/CookiesAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/CookiesBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/CookiesSessionOnlyForUrls.json\ncomponents/policy/test/data/pref_mapping/DataControlsRules.json\ncomponents/policy/test/data/pref_mapping/DataLeakPreventionRulesList.json\ncomponents/policy/test/data/pref_mapping/DefaultHandlersForFileExtensions.json\ncomponents/policy/test/data/pref_mapping/DeskAPIThirdPartyAllowlist.json\ncomponents/policy/test/data/pref_mapping/DeviceAttributesAllowedForOrigins.json\ncomponents/policy/test/data/pref_mapping/DeviceAttributesBlockedForOrigins.json\ncomponents/policy/test/data/pref_mapping/DeviceAuthenticationURLAllowlist.json\ncomponents/policy/test/data/pref_mapping/DeviceAuthenticationURLBlocklist.json\ncomponents/policy/test/data/pref_mapping/DeviceLoginScreenExtensions.json\ncomponents/policy/test/data/pref_mapping/DeviceLoginScreenWebHidAllowDevicesForUrls.json\ncomponents/policy/test/data/pref_mapping/DeviceLoginScreenWebUsbAllowDevicesForUrls.json\ncomponents/policy/test/data/pref_mapping/DisabledSchemes.json\ncomponents/policy/test/data/pref_mapping/DnsOverHttpsExcludedDomains.json\ncomponents/policy/test/data/pref_mapping/DnsOverHttpsIncludedDomains.json\ncomponents/policy/test/data/pref_mapping/ExtensionInstallForcelist.json\ncomponents/policy/test/data/pref_mapping/ExtensionOAuthRedirectUrls.json\ncomponents/policy/test/data/pref_mapping/ExtensionSettings.json\ncomponents/policy/test/data/pref_mapping/FloatingSsoDomainBlocklist.json\ncomponents/policy/test/data/pref_mapping/FloatingSsoDomainBlocklistExceptions.json\ncomponents/policy/test/data/pref_mapping/GeolocationBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/HomepageLocation.json\ncomponents/policy/test/data/pref_mapping/IdleDetectionAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/IdleDetectionBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/ImagesAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/ImagesBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/InsecureContentAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/InsecureContentBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/JavaScriptAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/JavaScriptBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/JavaScriptJitAllowedForSites.json\ncomponents/policy/test/data/pref_mapping/JavaScriptJitBlockedForSites.json\ncomponents/policy/test/data/pref_mapping/JavaScriptOptimizerAllowedForSites.json\ncomponents/policy/test/data/pref_mapping/JavaScriptOptimizerBlockedForSites.json\ncomponents/policy/test/data/pref_mapping/LegacyCookieScopeEnabledForDomainList.json\ncomponents/policy/test/data/pref_mapping/LocalFontsAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/LocalFontsBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/LocalNetworkAccessAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/LocalNetworkAccessBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/LocalNetworkAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/LocalNetworkBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/LoopbackNetworkAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/LoopbackNetworkBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/ManagedBookmarks.json\ncomponents/policy/test/data/pref_mapping/MultiScreenCaptureAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/NotificationsAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/NotificationsBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/PdfLocalFileAccessAllowedForDomains.json\ncomponents/policy/test/data/pref_mapping/PerAppTimeLimitsAllowlist.json\ncomponents/policy/test/data/pref_mapping/PinnedLauncherApps.json\ncomponents/policy/test/data/pref_mapping/PopupsAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/PopupsBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/PreciseGeolocationAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/ReportWebsiteActivityAllowlist.json\ncomponents/policy/test/data/pref_mapping/ReportWebsiteTelemetryAllowlist.json\ncomponents/policy/test/data/pref_mapping/RestoreOnStartupURLs.json\ncomponents/policy/test/data/pref_mapping/RestrictSigninToPattern.json\ncomponents/policy/test/data/pref_mapping/SaasUsageReportingDomainUrlsForBrowsers.json\ncomponents/policy/test/data/pref_mapping/SaasUsageReportingDomainUrlsForProfiles.json\ncomponents/policy/test/data/pref_mapping/SafeBrowsingAllowlistDomains.json\ncomponents/policy/test/data/pref_mapping/SameOriginTabCaptureAllowedByOrigins.json\ncomponents/policy/test/data/pref_mapping/ScreenCaptureAllowedByOrigins.json\ncomponents/policy/test/data/pref_mapping/SensorsAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/SensorsBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/SerialAllowAllPortsForUrls.json\ncomponents/policy/test/data/pref_mapping/SerialAllowUsbDevicesForUrls.json\ncomponents/policy/test/data/pref_mapping/SerialBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/TabCaptureAllowedByOrigins.json\ncomponents/policy/test/data/pref_mapping/URLAllowlist.json\ncomponents/policy/test/data/pref_mapping/URLBlocklist.json\ncomponents/policy/test/data/pref_mapping/VideoCaptureAllowedUrls.json\ncomponents/policy/test/data/pref_mapping/WebAuthenticationRemoteDesktopAllowedOrigins.json\ncomponents/policy/test/data/pref_mapping/WebHidAllowAllDevicesForUrls.json\ncomponents/policy/test/data/pref_mapping/WebHidAllowDevicesForUrls.json\ncomponents/policy/test/data/pref_mapping/WebHidAllowDevicesWithHidUsagesForUrls.json\ncomponents/policy/test/data/pref_mapping/WebHidBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/WebPrintingAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/WebPrintingBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/WebUsbAllowDevicesForUrls.json\ncomponents/policy/test/data/pref_mapping/WebUsbBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/WindowCaptureAllowedByOrigins.json\ncomponents/policy/test/data/pref_mapping/WindowManagementAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/WindowManagementBlockedForUrls.json\ncomponents/policy/test/data/pref_mapping/WindowPlacementAllowedForUrls.json\ncomponents/policy/test/data/pref_mapping/WindowPlacementBlockedForUrls.json\ncomponents/policy/test_support/fake_dmserver.h\ncomponents/policy/test_support/fake_dmserver_unittest.cc\ncomponents/policy/test_support/request_handler_for_policy.cc\ncomponents/policy/test_support/signature_provider.h\ncomponents/policy/tools/syntax_check_policy_template_json.py\ncomponents/policy/tools/syntax_check_policy_template_json_unittest.py\ncomponents/policy/tools/template_writers/PRESUBMIT.py\ncomponents/policy/tools/template_writers/writers/adm_writer.py\ncomponents/policy/tools/template_writers/writers/adm_writer_unittest.py\ncomponents/policy/tools/template_writers/writers/adml_writer_unittest.py\ncomponents/policy/tools/template_writers/writers/doc_atomic_groups_writer.py\ncomponents/policy/tools/template_writers/writers/doc_writer.py\ncomponents/policy/tools/template_writers/writers/ios_app_config_writer.py\ncomponents/policy/tools/template_writers/writers/ios_app_config_writer_unittest.py\ncomponents/policy/tools/template_writers/writers/json_writer_unittest.py\ncomponents/policy/tools/template_writers/writers/template_writer.py\ncomponents/policy/tools/template_writers/writers/template_writer_unittest.py\ncomponents/policy_strings.grdp\ncomponents/power_bookmarks/core/power_bookmark_utils_unittest.cc\ncomponents/power_metrics/energy_metrics_provider_win.cc\ncomponents/prefs/pref_change_registrar.cc\ncomponents/prefs/pref_change_registrar_unittest.cc\ncomponents/prefs/pref_service_unittest.cc\ncomponents/printing/renderer/print_render_frame_helper.cc\ncomponents/printing/test/print_render_frame_helper_browsertest.cc\ncomponents/privacy_sandbox/privacy_sandbox_settings_impl.cc\ncomponents/privacy_sandbox/privacy_sandbox_settings_impl_unittest.cc\ncomponents/privacy_sandbox_chrome_strings.grdp\ncomponents/protocol_handler_strings.grdp\ncomponents/proxy_config/pref_proxy_config_tracker_impl_unittest.cc\ncomponents/proxy_config/proxy_policy_handler_unittest.cc\ncomponents/proxy_config/proxy_prefs_utils_unittest.cc\ncomponents/push_messaging/push_messaging_constants.cc\ncomponents/quirks/quirks_client.cc\ncomponents/reading_list/core/offline_url_utils_unittest.cc\ncomponents/reporting/PRESUBMIT.py\ncomponents/reporting/encryption/primitives.cc\ncomponents/reporting/encryption/testing_primitives.cc\ncomponents/reporting/storage/storage_queue_unittest.cc\ncomponents/resources/PRESUBMIT.py\ncomponents/resources/terms/terms_am.html\ncomponents/resources/terms/terms_am.txt\ncomponents/resources/terms/terms_ar.html\ncomponents/resources/terms/terms_ar.txt\ncomponents/resources/terms/terms_bg.html\ncomponents/resources/terms/terms_bg.txt\ncomponents/resources/terms/terms_bn.html\ncomponents/resources/terms/terms_bn.txt\ncomponents/resources/terms/terms_ca.html\ncomponents/resources/terms/terms_ca.txt\ncomponents/resources/terms/terms_cs.html\ncomponents/resources/terms/terms_cs.txt\ncomponents/resources/terms/terms_da.html\ncomponents/resources/terms/terms_da.txt\ncomponents/resources/terms/terms_de.html\ncomponents/resources/terms/terms_de.txt\ncomponents/resources/terms/terms_el.html\ncomponents/resources/terms/terms_el.txt\ncomponents/resources/terms/terms_en-GB.html\ncomponents/resources/terms/terms_en-GB.txt\ncomponents/resources/terms/terms_en.html\ncomponents/resources/terms/terms_en.txt\ncomponents/resources/terms/terms_es-419.html\ncomponents/resources/terms/terms_es-419.txt\ncomponents/resources/terms/terms_es.html\ncomponents/resources/terms/terms_es.txt\ncomponents/resources/terms/terms_et.html\ncomponents/resources/terms/terms_et.txt\ncomponents/resources/terms/terms_fa.html\ncomponents/resources/terms/terms_fa.txt\ncomponents/resources/terms/terms_fi.html\ncomponents/resources/terms/terms_fi.txt\ncomponents/resources/terms/terms_fil.html\ncomponents/resources/terms/terms_fil.txt\ncomponents/resources/terms/terms_fr.html\ncomponents/resources/terms/terms_fr.txt\ncomponents/resources/terms/terms_gu.html\ncomponents/resources/terms/terms_gu.txt\ncomponents/resources/terms/terms_he.html\ncomponents/resources/terms/terms_he.txt\ncomponents/resources/terms/terms_hi.html\ncomponents/resources/terms/terms_hi.txt\ncomponents/resources/terms/terms_hr.html\ncomponents/resources/terms/terms_hr.txt\ncomponents/resources/terms/terms_hu.html\ncomponents/resources/terms/terms_hu.txt\ncomponents/resources/terms/terms_id.html\ncomponents/resources/terms/terms_id.txt\ncomponents/resources/terms/terms_it.html\ncomponents/resources/terms/terms_it.txt\ncomponents/resources/terms/terms_ja.html\ncomponents/resources/terms/terms_ja.txt\ncomponents/resources/terms/terms_kn.html\ncomponents/resources/terms/terms_kn.txt\ncomponents/resources/terms/terms_ko.html\ncomponents/resources/terms/terms_ko.txt\ncomponents/resources/terms/terms_lt.html\ncomponents/resources/terms/terms_lt.txt\ncomponents/resources/terms/terms_lv.html\ncomponents/resources/terms/terms_lv.txt\ncomponents/resources/terms/terms_ml.html\ncomponents/resources/terms/terms_ml.txt\ncomponents/resources/terms/terms_mr.html\ncomponents/resources/terms/terms_mr.txt\ncomponents/resources/terms/terms_nb.html\ncomponents/resources/terms/terms_nb.txt\ncomponents/resources/terms/terms_nl.html\ncomponents/resources/terms/terms_nl.txt\ncomponents/resources/terms/terms_pl.html\ncomponents/resources/terms/terms_pl.txt\ncomponents/resources/terms/terms_pt-BR.html\ncomponents/resources/terms/terms_pt-BR.txt\ncomponents/resources/terms/terms_pt-PT.html\ncomponents/resources/terms/terms_pt-PT.txt\ncomponents/resources/terms/terms_ro.html\ncomponents/resources/terms/terms_ro.txt\ncomponents/resources/terms/terms_ru.html\ncomponents/resources/terms/terms_ru.txt\ncomponents/resources/terms/terms_sk.html\ncomponents/resources/terms/terms_sk.txt\ncomponents/resources/terms/terms_sl.html\ncomponents/resources/terms/terms_sl.txt\ncomponents/resources/terms/terms_sr.html\ncomponents/resources/terms/terms_sr.txt\ncomponents/resources/terms/terms_sv.html\ncomponents/resources/terms/terms_sv.txt\ncomponents/resources/terms/terms_sw.html\ncomponents/resources/terms/terms_sw.txt\ncomponents/resources/terms/terms_ta.html\ncomponents/resources/terms/terms_ta.txt\ncomponents/resources/terms/terms_te.html\ncomponents/resources/terms/terms_te.txt\ncomponents/resources/terms/terms_th.html\ncomponents/resources/terms/terms_th.txt\ncomponents/resources/terms/terms_tr.html\ncomponents/resources/terms/terms_tr.txt\ncomponents/resources/terms/terms_uk.html\ncomponents/resources/terms/terms_uk.txt\ncomponents/resources/terms/terms_vi.html\ncomponents/resources/terms/terms_vi.txt\ncomponents/resources/terms/terms_zh-CN.html\ncomponents/resources/terms/terms_zh-CN.txt\ncomponents/resources/terms/terms_zh-TW.html\ncomponents/resources/terms/terms_zh-TW.txt\ncomponents/rlz/rlz_tracker.h\ncomponents/safe_browsing/android/real_time_url_checks_allowlist_resource_file_unittest.cc\ncomponents/safe_browsing/android/real_time_url_checks_allowlist_unittest.cc\ncomponents/safe_browsing/android/safe_browsing_api_handler_util.h\ncomponents/safe_browsing/content/browser/client_side_detection_service.cc\ncomponents/safe_browsing/content/browser/notification_content_detection/notifications_global_cache_list_unittest.cc\ncomponents/safe_browsing/content/browser/password_protection/password_protection_service_unittest.cc\ncomponents/safe_browsing/content/browser/triggers/ad_sampler_trigger_unittest.cc\ncomponents/safe_browsing/content/browser/triggers/suspicious_site_trigger.cc\ncomponents/safe_browsing/content/browser/triggers/trigger_util.cc\ncomponents/safe_browsing/content/browser/ui_manager_unittest.cc\ncomponents/safe_browsing/content/renderer/phishing_classifier/features.h\ncomponents/safe_browsing/content/resources/PRESUBMIT.py\ncomponents/safe_browsing/content/resources/real_time_url_checks_allowlist/store_real_time_url_allowlist_prefixes.py\ncomponents/safe_browsing/content/resources/real_time_url_checks_allowlist/validation_utils.py\ncomponents/safe_browsing/core/browser/db/v4_get_hash_protocol_manager.cc\ncomponents/safe_browsing/core/browser/db/v4_protocol_manager_util.cc\ncomponents/safe_browsing/core/browser/db/v4_protocol_manager_util.h\ncomponents/safe_browsing/core/browser/db/v4_protocol_manager_util_unittest.cc\ncomponents/safe_browsing/core/browser/db/v4_store.cc\ncomponents/safe_browsing/core/browser/db/v4_store_unittest.cc\ncomponents/safe_browsing/core/browser/hashprefix_realtime/hash_realtime_service.cc\ncomponents/safe_browsing/core/browser/hashprefix_realtime/hash_realtime_service_unittest.cc\ncomponents/safe_browsing/core/browser/hashprefix_realtime/ohttp_key_service.cc\ncomponents/safe_browsing/core/browser/hashprefix_realtime/ohttp_key_service_unittest.cc\ncomponents/safe_browsing/core/browser/password_protection/password_protection_service_base.cc\ncomponents/safe_browsing/core/browser/ping_manager_unittest.cc\ncomponents/safe_browsing/core/browser/realtime/chrome_enterprise_url_lookup_service.cc\ncomponents/safe_browsing/core/browser/realtime/fake_url_lookup_service.cc\ncomponents/safe_browsing/core/browser/realtime/url_lookup_service.cc\ncomponents/safe_browsing/core/browser/realtime/url_lookup_service_unittest.cc\ncomponents/safe_browsing/core/browser/sync/sync_utils_unittest.cc\ncomponents/safe_browsing/core/browser/tailored_security_service/tailored_security_service.cc\ncomponents/safe_browsing/core/browser/tailored_security_service/tailored_security_service_unittest.cc\ncomponents/safe_browsing/core/browser/verdict_cache_manager.cc\ncomponents/safe_browsing/core/browser/verdict_cache_manager_unittest.cc\ncomponents/safe_browsing/core/common/features.cc\ncomponents/safe_browsing/core/common/features.h\ncomponents/safe_browsing/core/common/scheme_logger_unittest.cc\ncomponents/safe_search_api/safe_search/safe_search_url_checker_client.cc\ncomponents/safe_search_api/safe_search/safe_search_url_checker_client_unittest.cc\ncomponents/safe_search_api/safe_search_util_unittest.cc\ncomponents/safe_search_api/stub_url_checker.cc\ncomponents/safety_check/update_check_helper.h\ncomponents/safety_check/url_constants.cc\ncomponents/saved_tab_groups/internal/android/tab_group_sync_service_android_unittest.cc\ncomponents/saved_tab_groups/internal/migration/tab_group_entity_converter_unittest.cc\ncomponents/saved_tab_groups/internal/saved_tab_group_sync_bridge_unittest.cc\ncomponents/saved_tab_groups/internal/shared_tab_group_account_data_sync_bridge_unittest.cc\ncomponents/saved_tab_groups/internal/shared_tab_group_data_sync_bridge_unittest.cc\ncomponents/saved_tab_groups/internal/tab_group_sync_bridge_mediator_unittest.cc\ncomponents/saved_tab_groups/internal/tab_group_sync_personal_collaboration_data_handler_unittest.cc\ncomponents/saved_tab_groups/internal/tab_group_sync_service_impl_unittest.cc\ncomponents/saved_tab_groups/public/saved_tab_group_unittest.cc\ncomponents/saved_tab_groups/public/utils_unittest.cc\ncomponents/saved_tab_groups/test_support/saved_tab_group_test_utils.cc\ncomponents/search_engines/PRESUBMIT.py\ncomponents/search_engines/android/template_url_service_android_unittest.cc\ncomponents/search_engines/choice_made_location.h\ncomponents/search_engines/enterprise/default_search_policy_handler_unittest.cc\ncomponents/search_engines/keyword_table_unittest.cc\ncomponents/search_engines/reconciling_template_url_data_holder_unittest.cc\ncomponents/search_engines/template_url.cc\ncomponents/search_engines/template_url_data_unittest.cc\ncomponents/search_engines/template_url_prepopulate_data_unittest.cc\ncomponents/search_engines/template_url_service.cc\ncomponents/search_engines/template_url_service_unittest.cc\ncomponents/search_engines/template_url_starter_pack_data.cc\ncomponents/search_engines/template_url_unittest.cc\ncomponents/search_engines/util.cc\ncomponents/search_provider_logos/google_logo_api.cc\ncomponents/search_provider_logos/google_logo_api.h\ncomponents/search_provider_logos/google_logo_api_unittest.cc\ncomponents/search_provider_logos/logo_cache_unittest.cc\ncomponents/search_provider_logos/logo_service_impl_unittest.cc\ncomponents/search_provider_logos/switches.cc\ncomponents/security_interstitials/content/captive_portal_helper_win.cc\ncomponents/security_interstitials/content/https_only_mode_blocking_page.cc\ncomponents/security_interstitials/core/browser/resources/interstitial_large.js\ncomponents/security_interstitials/core/controller_client.cc\ncomponents/security_interstitials/core/safe_browsing_loud_error_ui.cc\ncomponents/security_interstitials/core/urls.cc\ncomponents/security_interstitials_strings.grdp\ncomponents/security_state/core/security_state.h\ncomponents/segmentation_platform/embedder/home_modules/tips_manager/signal_constants.h\ncomponents/segmentation_platform/internal/execution/optimization_guide/optimization_guide_segmentation_model_provider.cc\ncomponents/segmentation_platform/internal/execution/optimization_guide/optimization_guide_segmentation_model_provider_unittest.cc\ncomponents/segmentation_platform/internal/execution/optimization_guide/segmentation_model_executor_unittest.cc\ncomponents/segmentation_platform/internal/proto/PRESUBMIT.py\ncomponents/send_tab_to_self/send_tab_to_self_bridge_unittest.cc\ncomponents/send_tab_to_self/target_device_info_unittest.cc\ncomponents/send_tab_to_self_strings.grdp\ncomponents/services/app_service/public/cpp/app_capability_access_cache_unittest.cc\ncomponents/services/app_service/public/cpp/app_capability_access_cache_wrapper_unittest.cc\ncomponents/services/app_service/public/cpp/app_launch_util.h\ncomponents/services/app_service/public/cpp/app_registry_cache_unittest.cc\ncomponents/services/app_service/public/cpp/app_registry_cache_wrapper_unittest.cc\ncomponents/services/app_service/public/cpp/app_types.h\ncomponents/services/app_service/public/cpp/app_update_unittest.cc\ncomponents/services/app_service/public/cpp/capability_access_update_unittest.cc\ncomponents/services/app_service/public/cpp/intent.h\ncomponents/services/app_service/public/cpp/intent_filter.h\ncomponents/services/app_service/public/cpp/intent_filter_util.h\ncomponents/services/app_service/public/cpp/intent_filter_util_unittest.cc\ncomponents/services/app_service/public/cpp/intent_util.h\ncomponents/services/app_service/public/cpp/intent_util_unittest.cc\ncomponents/services/app_service/public/cpp/preferred_apps_converter.h\ncomponents/services/app_service/public/cpp/preferred_apps_converter_unittest.cc\ncomponents/services/app_service/public/cpp/preferred_apps_list_unittest.cc\ncomponents/services/font/pdf_fontconfig_matching.cc\ncomponents/services/heap_profiling/connection_manager.cc\ncomponents/services/heap_profiling/json_exporter.cc\ncomponents/services/paint_preview_compositor/paint_preview_compositor_impl_unittest.cc\ncomponents/services/quarantine/quarantine_mac.mm\ncomponents/services/quarantine/quarantine_win.cc\ncomponents/services/storage/public/mojom/buckets/bucket_info_mojom_traits_unittest.cc\ncomponents/services/storage/public/mojom/buckets/bucket_locator_mojom_traits_unittest.cc\ncomponents/services/storage/shared_storage/async_shared_storage_database_impl_unittest.cc\ncomponents/services/storage/shared_storage/shared_storage_database_migrations_unittest.cc\ncomponents/services/storage/shared_storage/shared_storage_database_unittest.cc\ncomponents/services/storage/shared_storage/shared_storage_manager_unittest.cc\ncomponents/shared_highlighting/core/common/disabled_sites.cc\ncomponents/shared_highlighting/core/common/disabled_sites_unittest.cc\ncomponents/shared_highlighting/core/common/fragment_directives_utils_unittest.cc\ncomponents/shared_highlighting/core/common/shared_highlighting_metrics_unittest.cc\ncomponents/shared_highlighting/ios/shared_highlighting_constants.mm\ncomponents/signin/core/browser/account_management_type_metrics_recorder_unittest.cc\ncomponents/signin/core/browser/account_reconcilor_unittest.cc\ncomponents/signin/core/browser/chrome_connected_header_helper.cc\ncomponents/signin/core/browser/chrome_connected_header_helper.h\ncomponents/signin/core/browser/dice_account_reconcilor_delegate_unittest.cc\ncomponents/signin/core/browser/signin_header_helper_unittest.cc\ncomponents/signin/core/browser/signin_metrics_service_unittest.cc\ncomponents/signin/internal/identity_manager/account_capabilities_fetcher_unittest.cc\ncomponents/signin/internal/identity_manager/account_tracker_service_unittest.cc\ncomponents/signin/internal/identity_manager/gaia_cookie_manager_service.cc\ncomponents/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate.cc\ncomponents/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate_unittest.cc\ncomponents/signin/internal/identity_manager/oauth_multilogin_helper.cc\ncomponents/signin/internal/identity_manager/oauth_multilogin_helper_unittest.cc\ncomponents/signin/internal/identity_manager/primary_account_manager_unittest.cc\ncomponents/signin/internal/identity_manager/profile_oauth2_token_service_delegate_android.cc\ncomponents/signin/internal/identity_manager/profile_oauth2_token_service_delegate_chromeos_unittest.cc\ncomponents/signin/ios/browser/account_consistency_service.mm\ncomponents/signin/ios/browser/account_consistency_service_unittest.mm\ncomponents/signin/ios/browser/features.h\ncomponents/signin/public/base/consent_level.h\ncomponents/signin/public/base/hybrid_encryption_key.cc\ncomponents/signin/public/base/session_binding_utils.cc\ncomponents/signin/public/base/session_binding_utils_unittest.cc\ncomponents/signin/public/browser/web_signin_tracker_unittest.cc\ncomponents/signin/public/identity_manager/access_token_fetcher.cc\ncomponents/signin/public/identity_manager/access_token_fetcher_unittest.cc\ncomponents/signin/public/identity_manager/account_info.h\ncomponents/signin/public/identity_manager/account_managed_status_finder.cc\ncomponents/signin/public/identity_manager/account_managed_status_finder.h\ncomponents/signin/public/identity_manager/account_managed_status_finder_outcome.h\ncomponents/signin/public/identity_manager/account_managed_status_finder_unittest.cc\ncomponents/signin/public/identity_manager/accounts_cookie_mutator_unittest.cc\ncomponents/signin/public/identity_manager/diagnostics_provider_unittest.cc\ncomponents/signin/public/identity_manager/identity_manager.h\ncomponents/signin/public/identity_manager/identity_manager_unittest.cc\ncomponents/signin/public/identity_manager/identity_test_environment.h\ncomponents/signin/public/identity_manager/identity_test_environment_unittest.cc\ncomponents/signin/public/identity_manager/identity_test_utils.cc\ncomponents/signin/public/identity_manager/identity_utils_unittest.cc\ncomponents/signin/public/identity_manager/primary_account_access_token_fetcher_unittest.cc\ncomponents/signin/public/identity_manager/primary_account_change_event_unittest.cc\ncomponents/site_engagement/content/site_engagement_helper.cc\ncomponents/site_engagement/content/site_engagement_helper_unittest.cc\ncomponents/site_engagement/content/site_engagement_score_unittest.cc\ncomponents/site_isolation/site_isolation_policy_unittest.cc\ncomponents/skills/internal/skills_downloader.cc\ncomponents/skills/internal/skills_downloader_unittest.cc\ncomponents/skills/internal/skills_service_impl_unittest.cc\ncomponents/speech/endpointer/energy_endpointer.cc\ncomponents/spellcheck/browser/spelling_service_client.cc\ncomponents/spellcheck/browser/windows_spell_checker.cc\ncomponents/sqlite_vfs/sandboxed_file.cc\ncomponents/ssl_errors/error_classification.h\ncomponents/ssl_errors/error_classification_unittest.cc\ncomponents/startup_metric_utils/browser/startup_metric_utils.cc\ncomponents/storage_monitor/volume_mount_watcher_win.cc\ncomponents/subresource_filter/content/browser/content_subresource_filter_throttle_manager.h\ncomponents/subresource_filter/content/browser/content_subresource_filter_web_contents_helper.cc\ncomponents/subresource_filter/content/browser/content_subresource_filter_web_contents_helper.h\ncomponents/subresource_filter/core/browser/subresource_filter_constants.h\ncomponents/subresource_filter/core/common/PRESUBMIT.py\ncomponents/supervised_user/core/browser/family_link_settings_service_unittest.cc\ncomponents/supervised_user/core/browser/family_link_url_filter.cc\ncomponents/supervised_user/core/browser/family_link_url_filter.h\ncomponents/supervised_user/core/browser/family_link_url_filter_manual_behavior_unittest.cc\ncomponents/supervised_user/core/browser/family_link_url_filter_unittest.cc\ncomponents/supervised_user/core/browser/family_link_user_capabilities_unittest.cc\ncomponents/supervised_user/core/browser/fetcher_config.cc\ncomponents/supervised_user/core/browser/fetcher_config.h\ncomponents/supervised_user/core/browser/kids_chrome_management_url_checker_client_unittest.cc\ncomponents/supervised_user/core/browser/list_family_members_service_unittest.cc\ncomponents/supervised_user/core/browser/parallel_fetch_manager_unittest.cc\ncomponents/supervised_user/core/browser/proto_fetcher_status.h\ncomponents/supervised_user/core/browser/proto_fetcher_unittest.cc\ncomponents/supervised_user/core/browser/supervised_user_log_record_unittest.cc\ncomponents/supervised_user/core/browser/supervised_user_service_unittest.cc\ncomponents/supervised_user/core/browser/supervised_user_synthetic_field_trial_service_delegate.h\ncomponents/supervised_user/core/browser/supervised_user_url_filtering_service_android_unittest.cc\ncomponents/supervised_user/core/browser/supervised_user_utils.cc\ncomponents/supervised_user/core/common/supervised_user_constants.cc\ncomponents/supervised_user/core/common/supervised_user_shared_constants.cc\ncomponents/supervised_user/test_support/account_repository.h\ncomponents/supervised_user/test_support/account_repository_unittest.cc\ncomponents/supervised_user/test_support/family_link_settings_state_management.cc\ncomponents/supervised_user/test_support/kids_chrome_management_test_utils.cc\ncomponents/supervised_user/test_support/kids_management_api_server_mock.cc\ncomponents/surface_embed/common/features.cc\ncomponents/surface_embed/common/features.h\ncomponents/sync/PRESUBMIT.py\ncomponents/sync/base/data_type.cc\ncomponents/sync/base/sync_util.h\ncomponents/sync/engine/bookmark_update_preprocessing.cc\ncomponents/sync/engine/net/http_bridge_unittest.cc\ncomponents/sync/model/data_type_sync_bridge.h\ncomponents/sync/model/syncable_service.h\ncomponents/sync/protocol/proto_value_conversions_unittest.cc\ncomponents/sync/service/device_statistics_request_impl.cc\ncomponents/sync/service/device_statistics_request_impl_unittest.cc\ncomponents/sync/service/local_data_description.h\ncomponents/sync/service/sync_auth_manager_unittest.cc\ncomponents/sync/service/sync_prefs.cc\ncomponents/sync/service/sync_service.h\ncomponents/sync/service/sync_service_impl_startup_unittest.cc\ncomponents/sync/service/sync_service_impl_unittest.cc\ncomponents/sync/service/sync_session_durations_metrics_recorder_unittest.cc\ncomponents/sync/service/sync_stopped_reporter_unittest.cc\ncomponents/sync/test/mock_connection_manager.cc\ncomponents/sync_bookmarks/PRESUBMIT.py\ncomponents/sync_preferences/pref_service_syncable_unittest.cc\ncomponents/sync_sessions/PRESUBMIT.py\ncomponents/sync_sessions/session_store_unittest.cc\ncomponents/sync_sessions/session_sync_bridge.h\ncomponents/sync_sessions/synced_session_unittest.cc\ncomponents/system_cpu/cpu_probe_win.cc\ncomponents/themes/ntp_background_service.cc\ncomponents/touch_to_search/core/browser/contextual_search_context.h\ncomponents/touch_to_search/core/browser/contextual_search_delegate_impl.cc\ncomponents/touch_to_search/core/browser/contextual_search_delegate_impl_unittest.cc\ncomponents/tpcd/metadata/browser/parser_unittest.cc\ncomponents/tracing/common/etw_consumer_win.cc\ncomponents/tracing/common/etw_consumer_win.h\ncomponents/tracing/common/etw_system_data_source_win.cc\ncomponents/tracing/common/graphics_memory_dump_provider_android.h\ncomponents/tracing/common/system_log_event_utils_win.cc\ncomponents/translate/core/browser/translate_language_list_unittest.cc\ncomponents/translate/core/browser/translate_ranker_impl.cc\ncomponents/translate/core/browser/translate_script.cc\ncomponents/translate/core/common/translate_util.cc\ncomponents/translate_strings.grdp\ncomponents/trusted_vault/command_line_switches.cc\ncomponents/trusted_vault/recovery_key_store_certificate.cc\ncomponents/trusted_vault/recovery_key_store_certificate.h\ncomponents/trusted_vault/recovery_key_store_connection_impl.cc\ncomponents/trusted_vault/recovery_key_store_connection_unittest.cc\ncomponents/trusted_vault/standalone_trusted_vault_server_constants.h\ncomponents/trusted_vault/test/recovery_key_store_certificate_test_util.h\ncomponents/trusted_vault/trusted_vault_access_token_fetcher_frontend_unittest.cc\ncomponents/trusted_vault/trusted_vault_histograms.h\ncomponents/ui_devtools/agent_util.cc\ncomponents/ukm/observers/ukm_consent_state_observer_unittest.cc\ncomponents/ukm/ukm_service_unittest.cc\ncomponents/undo/bookmark_undo_service_test.cc\ncomponents/unified_consent/unified_consent_service_unittest.cc\ncomponents/url_deduplication/docs_url_strip_handler.cc\ncomponents/url_deduplication/docs_url_strip_handler_unittest.cc\ncomponents/url_deduplication/url_deduplication_helper_unittest.cc\ncomponents/url_formatter/elide_url.cc\ncomponents/url_formatter/elide_url.h\ncomponents/url_formatter/elide_url_unittest.cc\ncomponents/url_formatter/spoof_checks/idn_spoof_checker.cc\ncomponents/url_formatter/spoof_checks/idn_spoof_checker.h\ncomponents/url_formatter/spoof_checks/idn_spoof_checker_unittest.cc\ncomponents/url_formatter/spoof_checks/top_domains/fetch_crux_domains.py\ncomponents/url_formatter/spoof_checks/top_domains/make_top_domain_list_variables.cc\ncomponents/url_formatter/spoof_checks/top_domains/top_domain_util.cc\ncomponents/url_formatter/spoof_checks/top_domains/top_domain_util.h\ncomponents/url_formatter/spoof_checks/top_domains/top_domain_util_unittest.cc\ncomponents/url_formatter/url_fixer.cc\ncomponents/url_formatter/url_fixer_unittest.cc\ncomponents/url_formatter/url_formatter.cc\ncomponents/url_formatter/url_formatter.h\ncomponents/url_formatter/url_formatter_unittest.cc\ncomponents/url_matcher/url_matcher.h\ncomponents/url_matcher/url_matcher_unittest.cc\ncomponents/url_matcher/url_util.cc\ncomponents/url_matcher/url_util.h\ncomponents/url_matcher/url_util_unittest.cc\ncomponents/url_pattern_index/PRESUBMIT.py\ncomponents/url_pattern_index/url_pattern_index_unittest.cc\ncomponents/url_pattern_index/url_pattern_unittest.cc\ncomponents/user_data_importer/content/content_bookmark_parser_utils_unittest.cc\ncomponents/user_data_importer/content/stable_portability_data_importer_unittest.cc\ncomponents/user_data_importer/ios/resources/bookmark_parser.ts\ncomponents/user_data_importer/utility/bookmark_parser.h\ncomponents/user_data_importer/utility/safari_data_importer_unittest.cc\ncomponents/user_education/webui/whats_new_registry.h\ncomponents/user_manager/account_id_util_unittest.cc\ncomponents/user_manager/known_user_unittest.cc\ncomponents/user_manager/user.h\ncomponents/user_manager/user_type.h\ncomponents/variations/entropy_provider.h\ncomponents/variations/net/omnibox_autofocus_http_headers_unittest.cc\ncomponents/variations/net/omnibox_autofocus_url_loader_throttle_unittest.cc\ncomponents/variations/net/variations_http_headers.cc\ncomponents/variations/net/variations_http_headers_unittest.cc\ncomponents/variations/pref_names.h\ncomponents/variations/proto/PRESUBMIT.py\ncomponents/variations/proto/devtools/client_variations_uncompiled.js\ncomponents/variations/service/safe_seed_manager.cc\ncomponents/variations/service/safe_seed_manager.h\ncomponents/variations/variations_murmur_hash.h\ncomponents/variations/variations_seed_processor.cc\ncomponents/variations/variations_url_constants.cc\ncomponents/visited_url_ranking/internal/history_url_visit_data_fetcher_unittest.cc\ncomponents/visited_url_ranking/internal/session_url_visit_data_fetcher_unittest.cc\ncomponents/visited_url_ranking/internal/transformer/default_app_url_visit_aggregates_transformer_unittest.cc\ncomponents/visited_url_ranking/internal/visited_url_ranking_service_impl_unittest.cc\ncomponents/visited_url_ranking/public/features.h\ncomponents/visited_url_ranking/public/test_support.h\ncomponents/visited_url_ranking/public/url_visit_util.h\ncomponents/visitedlink/test/visitedlink_perftest.cc\ncomponents/visitedlink/test/visitedlink_unittest.cc\ncomponents/viz/client/frame_eviction_manager.cc\ncomponents/viz/common/features.h\ncomponents/viz/common/quads/render_pass_io_unittest.cc\ncomponents/viz/common/resources/shared_image_format.h\ncomponents/viz/common/switches.cc\ncomponents/viz/host/persistent_cache_sandboxed_file_factory.cc\ncomponents/viz/service/display/output_surface.h\ncomponents/viz/service/display/overlay_candidate.h\ncomponents/viz/service/display/overlay_processor_using_strategy.cc\ncomponents/viz/service/display/renderer_pixeltest.cc\ncomponents/viz/service/display_embedder/skia_output_surface_impl_on_gpu.cc\ncomponents/viz/service/display_embedder/skia_render_copy_results.cc\ncomponents/viz/service/input/input_manager.cc\ncomponents/wallet/core/browser/ingestion/walletable_pass_ingestion_controller_unittest.cc\ncomponents/wallet/core/browser/network/wallet_http_client_impl.cc\ncomponents/wallet/core/browser/walletable_permission_utils_unittest.cc\ncomponents/wallet_strings.grdp\ncomponents/webapps/browser/android/add_to_homescreen_data_fetcher_unittest.cc\ncomponents/webapps/browser/android/java/res/values/dimens.xml\ncomponents/webapps/browser/android/shortcut_info.cc\ncomponents/webapps/browser/android/webapk/webapk_icons_hasher_unittest.cc\ncomponents/webapps/browser/android/webapk/webapk_single_icon_hasher_unittest.cc\ncomponents/webapps/browser/banners/app_banner_settings_helper_unittest.cc\ncomponents/webapps/browser/installable/installable_evaluator_unittest.cc\ncomponents/webapps/common/manifest_id_constants.h\ncomponents/webapps/isolated_web_apps/types/source_unittest.cc\ncomponents/webauthn/content/browser/internal_authenticator_impl_unittest.cc\ncomponents/webauthn/core/browser/client_data_json.cc\ncomponents/webauthn/core/browser/passkey_change_quota_tracker_unittest.cc\ncomponents/webauthn/core/browser/remote_validation.cc\ncomponents/webauthn/json/value_conversions.h\ncomponents/webui/flags/flags_test_helpers.cc\ncomponents/webui/flags/resources/app.html.ts\ncomponents/webxr/android/arcore_install_helper.cc\ncomponents/webxr/android/arcore_install_helper.h\ncomponents/wifi/wifi_service_win.cc\ncomponents/zucchini/disassembler_dex.cc\ncomponents/zucchini/disassembler_dex.h\ncomponents/zucchini/exception_filter_helper_win.cc\ncomponents/zucchini/type_dex.h\ncontent/app/content_main_runner_impl.cc\ncontent/app_shim_remote_cocoa/render_widget_host_view_cocoa.mm\ncontent/app_shim_remote_cocoa/web_menu_runner_mac.mm\ncontent/browser/accessibility/accessibility_action_browsertest.cc\ncontent/browser/accessibility/accessibility_auralinux_browsertest.cc\ncontent/browser/accessibility/browser_accessibility_android.cc\ncontent/browser/accessibility/browser_accessibility_manager_android.cc\ncontent/browser/accessibility/hit_testing_browsertest.cc\ncontent/browser/android/battery_metrics.h\ncontent/browser/android/nfc_host_unittest.cc\ncontent/browser/attribution_reporting/attribution_os_level_manager_android.cc\ncontent/browser/back_forward_cache_basics_browsertest.cc\ncontent/browser/back_forward_cache_features_browsertest.cc\ncontent/browser/back_forward_cache_internal_browsertest.cc\ncontent/browser/back_forward_cache_network_request_browsertest.cc\ncontent/browser/back_forward_cache_no_store_browsertest.cc\ncontent/browser/background_fetch/background_fetch_cross_origin_filter_unittest.cc\ncontent/browser/background_fetch/background_fetch_service_impl.cc\ncontent/browser/background_fetch/background_fetch_service_unittest.cc\ncontent/browser/blob_storage/blob_url_browsertest.cc\ncontent/browser/blob_storage/file_backed_blob_factory_frame_impl_unittest.cc\ncontent/browser/browser_url_handler_impl.cc\ncontent/browser/browsing_data/browsing_data_filter_builder_impl.cc\ncontent/browser/browsing_data/browsing_data_filter_builder_impl_unittest.cc\ncontent/browser/browsing_topics/browsing_topics_url_loader_unittest.cc\ncontent/browser/btm/btm_bounce_detector_browsertest.cc\ncontent/browser/btm/btm_database_unittest.cc\ncontent/browser/btm/btm_storage_unittest.cc\ncontent/browser/btm/cookie_access_filter_unittest.cc\ncontent/browser/buckets/bucket_manager_host_unittest.cc\ncontent/browser/cache_storage/cache_storage_context_unittest.cc\ncontent/browser/child_process_sandbox_support_win_unittest.cc\ncontent/browser/child_process_security_policy_unittest.cc\ncontent/browser/client_hints/client_hints.cc\ncontent/browser/content_security_policy_browsertest.cc\ncontent/browser/cookie_store/cookie_store_manager_unittest.cc\ncontent/browser/devtools/devtools_agent_host_impl.cc\ncontent/browser/devtools/devtools_agent_host_impl_unittest.cc\ncontent/browser/devtools/devtools_http_handler.cc\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer.cc\ncontent/browser/devtools/protocol/bluetooth_emulation_handler.h\ncontent/browser/devtools/protocol/devtools_protocol_browsertest.cc\ncontent/browser/devtools/shared_storage_worklet_devtools_agent_host_unittest.cc\ncontent/browser/download/mhtml_generation_browsertest.cc\ncontent/browser/download/save_package.h\ncontent/browser/download/save_package_unittest.cc\ncontent/browser/fenced_frame/fenced_frame_browsertest.cc\ncontent/browser/fenced_frame/fenced_frame_reporter.cc\ncontent/browser/fenced_frame/fenced_frame_unittest.cc\ncontent/browser/file_system/browser_file_system_helper_unittest.cc\ncontent/browser/file_system_access/file_path_watcher/file_path_watcher_unittest.cc\ncontent/browser/file_system_access/file_path_watcher/file_path_watcher_win.cc\ncontent/browser/file_system_access/file_system_access_observer_observation.h\ncontent/browser/font_access/font_enumeration_cache.cc\ncontent/browser/font_access/font_enumeration_data_source_win.cc\ncontent/browser/framebusting_browsertest.cc\ncontent/browser/geolocation/geolocation_service_impl_unittest.cc\ncontent/browser/gpu/gpu_data_manager_impl_private.cc\ncontent/browser/hid/hid_service_unittest.cc\ncontent/browser/idle/idle_manager_unittest.cc\ncontent/browser/indexed_db/indexed_db_context_unittest.cc\ncontent/browser/indexed_db/indexed_db_reporting.cc\ncontent/browser/indexed_db/instance/leveldb/backing_store.cc\ncontent/browser/indexed_db/instance/leveldb/leveldb_backing_store_unittest.cc\ncontent/browser/installedapp/fetch_related_win_apps_task.cc\ncontent/browser/installedapp/native_win_app_fetcher_impl.cc\ncontent/browser/interest_group/ad_auction_headers_util_unittest.cc\ncontent/browser/interest_group/ad_auction_url_loader_interceptor_unittest.cc\ncontent/browser/interest_group/auction_runner_unittest.cc\ncontent/browser/interest_group/bidding_and_auction_server_key_fetcher.cc\ncontent/browser/interest_group/bidding_and_auction_server_key_fetcher.h\ncontent/browser/interest_group/interest_group_update_manager.cc\ncontent/browser/loader/file_url_loader_factory_unittest.cc\ncontent/browser/loader/keep_alive_url_loader.cc\ncontent/browser/loader/keep_alive_url_loader.h\ncontent/browser/loader/keep_alive_url_loader_service.cc\ncontent/browser/loader/keep_alive_url_loader_service.h\ncontent/browser/loader/navigation_url_loader_impl.h\ncontent/browser/loader/prefetch_browsertest.cc\ncontent/browser/media/audio_stream_monitor_unittest.cc\ncontent/browser/media/capture/frame_test_util.cc\ncontent/browser/media/media_devices_permission_checker_unittest.cc\ncontent/browser/media/session/media_session_impl_service_routing_unittest.cc\ncontent/browser/mojo_binder_policy_applier.h\ncontent/browser/navigation_transitions/back_forward_transition_animation_manager_android_browsertest.cc\ncontent/browser/navigation_transitions/back_forward_transition_animator.cc\ncontent/browser/network/accept_header_browsertest.cc\ncontent/browser/network/trust_token_browsertest.cc\ncontent/browser/notifications/notification_database_unittest.cc\ncontent/browser/payments/payment_manager_unittest.cc\ncontent/browser/permissions/embedded_permission_control_checker_unittest.cc\ncontent/browser/permissions/permission_controller_impl_unittest.cc\ncontent/browser/permissions/permission_overrides_unittest.cc\ncontent/browser/permissions/permission_service_context_unittest.cc\ncontent/browser/preloading/preconnect/preconnect_manager_impl_unittest.cc\ncontent/browser/preloading/prefetch/contamination_delay_browsertest.cc\ncontent/browser/preloading/prefetch/prefetch_container.cc\ncontent/browser/preloading/prefetch/prefetch_container.h\ncontent/browser/preloading/prefetch/prefetch_container_unittest.cc\ncontent/browser/preloading/prefetch/prefetch_features.h\ncontent/browser/preloading/prefetch/prefetch_handle_impl.cc\ncontent/browser/preloading/prefetch/prefetch_match_resolver.cc\ncontent/browser/preloading/prefetch/prefetch_params.cc\ncontent/browser/preloading/prefetch/prefetch_scheduler.cc\ncontent/browser/preloading/prefetch/prefetch_scheduler.h\ncontent/browser/preloading/prefetch/prefetch_servable_state.h\ncontent/browser/preloading/prefetch/prefetch_service.cc\ncontent/browser/preloading/prefetch/prefetch_status.h\ncontent/browser/preloading/prefetch/prefetch_streaming_url_loader_common_types.h\ncontent/browser/preloading/preload_serving_metrics.h\ncontent/browser/preloading/preload_serving_metrics_holder.cc\ncontent/browser/preloading/preload_serving_metrics_holder.h\ncontent/browser/preloading/preloading_decider.cc\ncontent/browser/preloading/preloading_decider_unittest.cc\ncontent/browser/preloading/prerender/prerender_browsertest.cc\ncontent/browser/preloading/prerender/prerender_features.h\ncontent/browser/preloading/prerender/prerender_final_status.h\ncontent/browser/preloading/prerender/prerender_host_registry.cc\ncontent/browser/preloading/prerenderer_impl_browsertest.cc\ncontent/browser/private_aggregation/PRESUBMIT.py\ncontent/browser/process_lock.h\ncontent/browser/push_messaging/push_messaging_manager.cc\ncontent/browser/renderer_host/back_forward_cache_metrics.cc\ncontent/browser/renderer_host/back_forward_cache_subframe_navigation_throttle_unittest.cc\ncontent/browser/renderer_host/clipboard_host_impl_unittest.cc\ncontent/browser/renderer_host/code_cache_host_impl.cc\ncontent/browser/renderer_host/direct_manipulation_test_helper_win.cc\ncontent/browser/renderer_host/dwrite_font_proxy_impl_win.cc\ncontent/browser/renderer_host/frame_tree_unittest.cc\ncontent/browser/renderer_host/input/input_transfer_handler_android.h\ncontent/browser/renderer_host/input/stylus_handwriting_controller_win.cc\ncontent/browser/renderer_host/input/stylus_handwriting_controller_win.h\ncontent/browser/renderer_host/legacy_render_widget_host_win.cc\ncontent/browser/renderer_host/media/media_devices_dispatcher_host_unittest.cc\ncontent/browser/renderer_host/mixed_content_checker_unittest.cc\ncontent/browser/renderer_host/navigation_controller_impl.cc\ncontent/browser/renderer_host/navigation_controller_impl_unittest.cc\ncontent/browser/renderer_host/navigation_entry_impl_unittest.cc\ncontent/browser/renderer_host/navigation_request.cc\ncontent/browser/renderer_host/navigation_request_unittest.cc\ncontent/browser/renderer_host/navigator.cc\ncontent/browser/renderer_host/navigator_unittest.cc\ncontent/browser/renderer_host/policy_container_host_browsertest.cc\ncontent/browser/renderer_host/randomized_confidence_utils.cc\ncontent/browser/renderer_host/recently_destroyed_hosts_unittest.cc\ncontent/browser/renderer_host/render_frame_host_impl.cc\ncontent/browser/renderer_host/render_frame_host_impl_browsertest.cc\ncontent/browser/renderer_host/render_frame_host_manager_browsertest.cc\ncontent/browser/renderer_host/render_frame_host_manager_unittest.cc\ncontent/browser/renderer_host/render_frame_host_permissions_policy_unittest.cc\ncontent/browser/renderer_host/render_process_host_impl.cc\ncontent/browser/renderer_host/render_process_host_unittest.cc\ncontent/browser/renderer_host/render_view_host_impl.h\ncontent/browser/renderer_host/render_view_host_unittest.cc\ncontent/browser/renderer_host/render_widget_host_impl.h\ncontent/browser/renderer_host/render_widget_host_view_aura.h\ncontent/browser/renderer_host/should_swap_browsing_instance.h\ncontent/browser/renderer_host/virtual_keyboard_controller_win.h\ncontent/browser/resources/PRESUBMIT.py\ncontent/browser/resources/gpu/info_view.ts\ncontent/browser/resources/media/client_renderer.js\ncontent/browser/resources/traces_internals/icons.html\ncontent/browser/sandbox_ipc_linux.h\ncontent/browser/sandbox_support_win_impl.cc\ncontent/browser/screen_orientation/screen_orientation_provider_unittest.cc\ncontent/browser/serial/serial_unittest.cc\ncontent/browser/service_host/utility_sandbox_delegate_win.cc\ncontent/browser/service_worker/service_worker_hid_delegate_observer_unittest.cc\ncontent/browser/service_worker/service_worker_main_resource_loader.h\ncontent/browser/service_worker/service_worker_security_utils.cc\ncontent/browser/service_worker/service_worker_usb_delegate_observer_unittest.cc\ncontent/browser/service_worker/service_worker_version_browsertest.cc\ncontent/browser/session_history_browsertest.cc\ncontent/browser/shared_storage/shared_storage_worklet_host.cc\ncontent/browser/site_instance_impl.h\ncontent/browser/site_instance_impl_unittest.cc\ncontent/browser/site_per_process_hit_test_browsertest.cc\ncontent/browser/site_per_process_scroll_browsertest.cc\ncontent/browser/site_per_process_unload_browsertest.cc\ncontent/browser/sms/sms_parser_unittest.cc\ncontent/browser/sms/sms_provider_gms_unittest.cc\ncontent/browser/sms/webotp_service_unittest.cc\ncontent/browser/speech/network_speech_recognition_engine_impl.cc\ncontent/browser/speech/tts_mac.mm\ncontent/browser/speech/tts_win.cc\ncontent/browser/storage_partition_impl_unittest.cc\ncontent/browser/system_dns_resolution/system_dns_resolver_browsertest.cc\ncontent/browser/text_fragment_browsertest.cc\ncontent/browser/tpcd_heuristics/opener_heuristic_utils.cc\ncontent/browser/tpcd_heuristics/opener_heuristic_utils_unittest.cc\ncontent/browser/tracing/tracing_end_to_end_browsertest.cc\ncontent/browser/url_info.h\ncontent/browser/url_loader_factory_params_helper.cc\ncontent/browser/usb/web_usb_service_impl_unittest.cc\ncontent/browser/web_contents/aura/gesture_nav_simple_unittest.cc\ncontent/browser/web_contents/web_contents_android.cc\ncontent/browser/web_contents/web_contents_impl.cc\ncontent/browser/web_contents/web_contents_impl_browsertest.cc\ncontent/browser/web_contents/web_contents_impl_unittest.cc\ncontent/browser/web_contents/web_contents_view_android.cc\ncontent/browser/web_contents/web_contents_view_aura_unittest.cc\ncontent/browser/web_contents/web_contents_view_mac_unittest.mm\ncontent/browser/web_contents/web_drag_dest_mac_unittest.mm\ncontent/browser/webauth/authenticator_common_impl.cc\ncontent/browser/webauth/authenticator_impl_unittest.cc\ncontent/browser/webauth/authenticator_mojom_traits_unittest.cc\ncontent/browser/webauth/authenticator_test_base.h\ncontent/browser/webauth/webauth_request_security_checker.cc\ncontent/browser/webauth/webauth_request_security_checker.h\ncontent/browser/webid/delegation/jwt_signer_unittest.cc\ncontent/browser/webid/idp_network_request_manager_unittest.cc\ncontent/browser/webrtc/webrtc_ip_permissions_browsertest.cc\ncontent/browser/zygote_host/zygote_host_impl_linux.cc\ncontent/child/runtime_features.cc\ncontent/common/features.cc\ncontent/common/service_worker/race_network_request_url_loader_client.cc\ncontent/common/zygote/zygote_communication_linux.h\ncontent/public/android/java/res/values/strings.xml\ncontent/public/browser/bluetooth_delegate.h\ncontent/public/browser/browser_main_parts.h\ncontent/public/browser/browser_task_traits.h\ncontent/public/browser/browsing_data_filter_builder.h\ncontent/public/browser/browsing_data_remover.h\ncontent/public/browser/content_browser_client.h\ncontent/public/browser/devtools_manager_delegate.h\ncontent/public/browser/navigation_controller.h\ncontent/public/browser/navigation_handle.h\ncontent/public/browser/navigation_handle_timing.h\ncontent/public/browser/payment_app_provider.h\ncontent/public/browser/render_view_host.h\ncontent/public/browser/service_process_host.h\ncontent/public/browser/site_instance.h\ncontent/public/browser/web_contents.h\ncontent/public/browser/web_exposed_isolation_level.h\ncontent/public/browser/zygote_host/zygote_host_linux.h\ncontent/public/common/content_descriptors.h\ncontent/public/common/content_features.cc\ncontent/public/common/content_switches.cc\ncontent/public/common/pseudonymization_util.h\ncontent/public/common/resource_request_body_android.cc\ncontent/public/test/blink_test_environment.cc\ncontent/public/test/browser_fuzztest_support.h\ncontent/public/test/browser_test_utils.h\ncontent/public/test/test_file_error_injector.h\ncontent/renderer/PRESUBMIT.py\ncontent/renderer/accessibility/annotations/ax_image_annotator.cc\ncontent/renderer/accessibility/annotations/ax_image_stopwords.h\ncontent/renderer/content_security_policy_util_fuzzer.cc\ncontent/renderer/media/media_factory.cc\ncontent/renderer/render_frame_impl.h\ncontent/renderer/render_frame_impl_browsertest.cc\ncontent/renderer/render_thread_impl.cc\ncontent/renderer/render_thread_impl_unittest.cc\ncontent/renderer/renderer_blink_platform_impl.h\ncontent/renderer/renderer_main_platform_delegate_linux.cc\ncontent/renderer/service_worker/web_service_worker_provider_impl.cc\ncontent/renderer/v8_value_converter_impl_unittest.cc\ncontent/renderer/visual_state_browsertest.cc\ncontent/services/auction_worklet/bidder_worklet_unittest.cc\ncontent/services/auction_worklet/public/cpp/auction_downloader.cc\ncontent/services/auction_worklet/seller_worklet_unittest.cc\ncontent/services/auction_worklet/webidl_compat.cc\ncontent/shell/browser/shell_browser_main_parts.cc\ncontent/shell/browser/shell_platform_delegate_ios.mm\ncontent/test/PRESUBMIT.py\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_1.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_2.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_3.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_gcp_1.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_gcp_2.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_gcp_3.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_1.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_2.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_3.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_gcp_1.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_gcp_2.json\ncontent/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_gcp_3.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_1.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_10.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_2.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_3.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_4.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_5.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_6.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_7.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_8.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_9.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_1.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_2.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_3.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_4.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_5.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_6.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_7.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_8.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_9.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_1.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_2.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_3.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_4.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_5.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_6.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_7.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_8.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_9.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_1.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_2.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_3.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_4.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_5.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_6.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_7.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_8.json\ncontent/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_9.json\ncontent/test/data/dom_serializer/html_doc_has_base_tag.htm\ncontent/test/data/dom_serializer/youtube_1.htm\ncontent/test/data/dom_serializer/youtube_2.htm\ncontent/test/data/fedcm/accounts_endpoint.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_1.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_10.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_11.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_12.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_13.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_14.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_15.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_16.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_17.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_18.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_19.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_2.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_3.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_4.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_5.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_6.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_7.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_8.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/latest/report_9.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_1.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_10.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_2.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_3.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_4.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_5.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_6.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_7.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_8.json\ncontent/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_9.json\ncontent/test/data/site_isolation/json-prefixed-3.js\ncontent/test/data/site_isolation/json-prefixed-4.js\ncontent/test/data/web_ui_mojo_ts_test.ts\ncontent/test/gpu/PRESUBMIT.py\ncontent/test/gpu/find_unknown_typ_tags.py\ncontent/test/gpu/flake_suppressor/gpu_results_unittest.py\ncontent/test/gpu/gather_power_measurement_results.py\ncontent/test/gpu/gather_swarming_json_results.py\ncontent/test/gpu/gpu_tests/power_measurement_integration_test.py\ncontent/test/gpu/gpu_tests/webgpu_cts_integration_test_base.py\ncontent/test/gpu/measure_power_intel.py\ncontent/test/gpu/power_measurement_results/analyze_power_measurement_results.py\ncontent/test/gpu/suppress_flakes.py\ncontent/test/gpu/trim_culprit_cls.py\ncontent/test/gpu/unexpected_pass_finder.py\ncontent/test/gpu/unexpected_passes/gpu_queries_unittest.py\ncontent/test/test_page_unittest.cc\ncontent/test/test_render_view_host.cc\ncontent/web_test/browser/fake_bluetooth_chooser.h\ncontent/web_test/browser/fake_bluetooth_chooser_factory.h\ncontent/zygote/zygote_linux.cc\ncontent/zygote/zygote_linux.h\ncontent/zygote/zygote_main_linux.cc\ncrypto/chaps_support.cc\ncrypto/ecdsa_utils.h\ncrypto/hkdf.h\ncrypto/kdf.h\ncrypto/nss_util.cc\ncrypto/secure_hash.h\ncrypto/secure_util.h\ncrypto/unexportable_key.h\ncrypto/unexportable_key_unittest.cc\ncrypto/unexportable_key_win.cc\ndevice/bluetooth/bluetooth_adapter_android.cc\ndevice/bluetooth/bluetooth_adapter_mac.mm\ndevice/bluetooth/bluetooth_adapter_winrt.cc\ndevice/bluetooth/bluetooth_classic_device_mac.mm\ndevice/bluetooth/bluetooth_device_win.cc\ndevice/bluetooth/bluetooth_device_winrt.cc\ndevice/bluetooth/bluetooth_remote_gatt_characteristic_android.h\ndevice/bluetooth/bluetooth_task_manager_win.cc\ndevice/bluetooth/dbus/bluetooth_device_client.h\ndevice/bluetooth/floss/bluetooth_adapter_floss.cc\ndevice/bluetooth/floss/bluetooth_device_floss.h\ndevice/bluetooth/floss/floss_lescan_client.h\ndevice/fido/attestation_statement_formats.cc\ndevice/fido/discoverable_credential_metadata.h\ndevice/fido/enclave/constants.cc\ndevice/fido/enclave/enclave_websocket_client.cc\ndevice/fido/fido_strings.grd\ndevice/fido/fido_test_data.h\ndevice/fido/public/fido_constants.h\ndevice/gamepad/public/cpp/BUILD.gn\ndevice/gamepad/raw_input_data_fetcher_win.cc\ndevice/gamepad/xbox_controller_mac.mm\ndevice/gamepad/xinput_data_fetcher_win.cc\ndevice/vr/android/arcore/arcore_impl.cc\ndevice/vr/android/cardboard/cardboard_device.cc\ndocs/enterprise/extension_query.py\ndocs/enterprise/extension_query_py2.py\ndocs/imported/refresh_docs.py\ndocs/website/.eleventy.js\ndocs/website/PRESUBMIT.py\ndocs/website/infra/config/PRESUBMIT.py\ndocs/website/scripts/fetch_lobs.py\ndocs/website/scripts/fetch_node_modules.py\ndocs/website/site/Home/google-ssl.xml\ndocs/website/site/administrators/err_ssl_weak_server_ephemeral_dh_key/redirect-dh.xml\ndocs/website/site/chromium-os/developer-library/guides/testing/web-testing/browser-connection/test-chrome-connection.js\ndocs/website/site/chromium-os/developer-library/guides/testing/web-testing/iwa/test-iwa-interaction.js\ndocs/website/site/chromium-os/developer-library/guides/testing/web-testing/kiosk/test-iwa-kiosk.js\ndocs/website/site/chromium-os/developer-library/guides/testing/web-testing/pwa/test-pwa-lifecycle.js\ndocs/website/site/chromium-os/developer-library/guides/testing/web-testing/pwa/test-pwa-lifecycle.py\ndocs/website/site/chromium-os/developer-library/guides/testing/web-testing/pwa/test-pwa-lifecycle.ts\ndocs/website/site/chromium-os/developer-library/guides/testing/web-testing/swa/test-file-download.js\ndocs/website/site/chromium-os/developer-library/reference/linux-constants/syscalls/syscalls.py\ndocs/website/site/chromium-os/developer-library/reference/upstart-cookbook/index.html\ndocs/website/site/developers/design-documents/accessibility/tracker/CSUN_Accessibility_in_the_Cloud.txt\ndocs/website/site/developers/design-documents/accessibility/tracker/CSUN_Improving_Access_To_Web_Platforms_Content_and_Applications.txt\ndocs/website/site/sts/redirect.xml\nextensions/browser/PRESUBMIT.py\nextensions/browser/api/content_settings/content_settings_store_unittest.cc\nextensions/browser/api/content_settings/content_settings_unittest.cc\nextensions/browser/api/declarative/declarative_rule.h\nextensions/browser/api/declarative_net_request/composite_matcher_unittest.cc\nextensions/browser/api/declarative_net_request/constants.cc\nextensions/browser/api/declarative_net_request/file_sequence_helper_unittest.cc\nextensions/browser/api/declarative_net_request/flat_ruleset_indexer_unittest.cc\nextensions/browser/api/declarative_net_request/indexed_rule_unittest.cc\nextensions/browser/api/declarative_net_request/ruleset_matcher_unittest.cc\nextensions/browser/api/feedback_private/feedback_private_api.cc\nextensions/browser/api/feedback_private/feedback_service.cc\nextensions/browser/api/feedback_private/feedback_service.h\nextensions/browser/api/feedback_private/feedback_service_unittest.cc\nextensions/browser/api/file_handlers/mime_util.h\nextensions/browser/api/management/management_api_constants.h\nextensions/browser/api/web_request/extension_web_request_event_router_unittest.cc\nextensions/browser/api/web_request/web_request_permissions.cc\nextensions/browser/api/web_request/web_request_permissions_unittest.cc\nextensions/browser/api/web_request/web_request_proxying_url_loader_factory.cc\nextensions/browser/browser_frame_context_data_unittest.cc\nextensions/browser/convert_user_script_unittest.cc\nextensions/browser/event_listener_map.h\nextensions/browser/event_listener_map_unittest.cc\nextensions/browser/event_router_unittest.cc\nextensions/browser/extension_prefs_observer.h\nextensions/browser/install_signer.cc\nextensions/browser/permissions/permissions_updater.cc\nextensions/browser/permissions/scripting_permissions_modifier.h\nextensions/browser/permissions_manager.h\nextensions/browser/script_injection_tracker.cc\nextensions/browser/suggest_permission_util.cc\nextensions/browser/updater/extension_downloader.cc\nextensions/browser/updater/extension_downloader_test_helper.cc\nextensions/browser/updater/extension_downloader_unittest.cc\nextensions/browser/updater/safe_manifest_parser.cc\nextensions/browser/updater/safe_manifest_parser.h\nextensions/browser/updater/safe_manifest_parser_unittest.cc\nextensions/browser/url_loader_factory_manager.h\nextensions/common/api/PRESUBMIT.py\nextensions/common/api/_api_features.json\nextensions/common/api/app_window.idl\nextensions/common/api/extensions_manifest_types.json\nextensions/common/api/i18n.json\nextensions/common/api/printer_provider.idl\nextensions/common/api/socket.idl\nextensions/common/api/sockets_tcp.idl\nextensions/common/api/sockets_tcp_server.idl\nextensions/common/api/sockets_udp.idl\nextensions/common/content_script_injection_url_getter.cc\nextensions/common/csp_validator.cc\nextensions/common/csp_validator.h\nextensions/common/csp_validator_unittest.cc\nextensions/common/event_filter_unittest.cc\nextensions/common/event_matcher.h\nextensions/common/extension.cc\nextensions/common/extension_builder_unittest.cc\nextensions/common/extension_features.h\nextensions/common/extension_l10n_util_unittest.cc\nextensions/common/extension_set_unittest.cc\nextensions/common/extension_urls.cc\nextensions/common/extension_urls.h\nextensions/common/extension_urls_unittest.cc\nextensions/common/file_util_unittest.cc\nextensions/common/manifest_constants.h\nextensions/common/manifest_handlers/content_capabilities_manifest_unittest.cc\nextensions/common/manifest_handlers/csp_info_unittest.cc\nextensions/common/manifest_handlers/externally_connectable_unittest.cc\nextensions/common/manifest_handlers/oauth2_manifest_unittest.cc\nextensions/common/manifest_handlers/protocol_handler_manifest_unittest.cc\nextensions/common/manifest_handlers/replacement_apps_unittest.cc\nextensions/common/message_bundle.h\nextensions/common/mojom/permission_set_mojom_traits_unittest.cc\nextensions/common/mojom/url_pattern_set_mojom_traits_unittest.cc\nextensions/common/permissions/PRESUBMIT.py\nextensions/common/permissions/api_permission.h\nextensions/common/permissions/api_permission_set.h\nextensions/common/permissions/permissions_data.h\nextensions/common/permissions/socket_permission_unittest.cc\nextensions/common/url_pattern.cc\nextensions/common/url_pattern.h\nextensions/common/url_pattern_set.h\nextensions/common/url_pattern_set_unittest.cc\nextensions/common/url_pattern_unittest.cc\nextensions/common/user_script_unittest.cc\nextensions/common/utils/content_script_utils.cc\nextensions/renderer/api/runtime_hooks_delegate_unittest.cc\nextensions/renderer/bindings/listener_tracker_unittest.cc\nextensions/renderer/extension_throttle_unittest.cc\nextensions/renderer/resources/automation/PRESUBMIT.py\nextensions/renderer/resources/permissions_custom_bindings.js\nextensions/renderer/resources/platform_app.js\nextensions/renderer/resources/web_request_event.js\nextensions/renderer/script_context.cc\nextensions/shell/browser/shell_prefs.cc\nextensions/strings/extensions_strings.grd\nextensions/test/extension_background_page_waiter.h\nfuchsia_web/av_testing/cast_starter.html\nfuchsia_web/webengine/browser/frame_impl_browsertest.cc\nfuchsia_web/webengine/browser/web_engine_content_browser_client_unittest.cc\nfuchsia_web/webengine/test/data/play_video.html\nfuchsia_web/webengine/web_engine_integration_test.cc\ngin/thread_isolation.cc\ngin/v8_initializer.cc\ngoogle_apis/calendar/calendar_api_requests.cc\ngoogle_apis/calendar/calendar_api_requests.h\ngoogle_apis/calendar/calendar_api_requests_unittest.cc\ngoogle_apis/calendar/calendar_api_response_types_unittest.cc\ngoogle_apis/calendar/calendar_api_url_generator_unittest.cc\ngoogle_apis/classroom/classroom_api_course_work_materials_response_types.h\ngoogle_apis/classroom/classroom_api_course_work_materials_response_types_unittest.cc\ngoogle_apis/classroom/classroom_api_course_work_response_types.h\ngoogle_apis/classroom/classroom_api_course_work_response_types_unittest.cc\ngoogle_apis/classroom/classroom_api_courses_response_types.h\ngoogle_apis/classroom/classroom_api_list_course_work_materials_request.h\ngoogle_apis/classroom/classroom_api_list_course_work_request.h\ngoogle_apis/classroom/classroom_api_list_course_work_request_unittest.cc\ngoogle_apis/classroom/classroom_api_list_courses_request.h\ngoogle_apis/classroom/classroom_api_list_student_submissions_request.h\ngoogle_apis/classroom/classroom_api_list_students_request.h\ngoogle_apis/classroom/classroom_api_material_response_types.h\ngoogle_apis/classroom/classroom_api_student_submissions_response_types.h\ngoogle_apis/classroom/classroom_api_students_response_types.h\ngoogle_apis/common/api_key_request_util.h\ngoogle_apis/common/base_requests.cc\ngoogle_apis/drive/drive_api_parser.cc\ngoogle_apis/drive/drive_api_parser.h\ngoogle_apis/drive/drive_api_parser_unittest.cc\ngoogle_apis/drive/drive_api_requests.h\ngoogle_apis/drive/drive_api_url_generator.cc\ngoogle_apis/drive/drive_base_requests.cc\ngoogle_apis/gaia/fake_gaia.cc\ngoogle_apis/gaia/fake_gaia.h\ngoogle_apis/gaia/gaia_access_token_fetcher.h\ngoogle_apis/gaia/gaia_auth_fetcher.cc\ngoogle_apis/gaia/gaia_auth_fetcher_unittest.cc\ngoogle_apis/gaia/gaia_auth_util.cc\ngoogle_apis/gaia/gaia_auth_util.h\ngoogle_apis/gaia/gaia_auth_util_unittest.cc\ngoogle_apis/gaia/gaia_constants.cc\ngoogle_apis/gaia/gaia_constants.h\ngoogle_apis/gaia/gaia_oauth_client.cc\ngoogle_apis/gaia/gaia_oauth_client.h\ngoogle_apis/gaia/gaia_oauth_client_unittest.cc\ngoogle_apis/gaia/gaia_switches.h\ngoogle_apis/gaia/gaia_urls.cc\ngoogle_apis/gaia/gaia_urls.h\ngoogle_apis/gaia/gaia_urls_unittest.cc\ngoogle_apis/gaia/google_service_auth_error.h\ngoogle_apis/gaia/oauth2_access_token_fetcher_impl_unittest.cc\ngoogle_apis/gaia/oauth2_access_token_manager.cc\ngoogle_apis/gaia/oauth2_api_call_flow_unittest.cc\ngoogle_apis/gaia/oauth2_mint_token_flow_unittest.cc\ngoogle_apis/gaia/oauth_multilogin_result_unittest.cc\ngoogle_apis/gaia/register_bound_session_payload_unittest.cc\ngoogle_apis/gcm/base/mcs_util.cc\ngoogle_apis/gcm/engine/account_mapping_unittest.cc\ngoogle_apis/gcm/engine/gcm_store_impl_unittest.cc\ngoogle_apis/gcm/engine/gservices_settings.cc\ngoogle_apis/gcm/engine/gservices_settings_unittest.cc\ngoogle_apis/gcm/engine/mcs_client.cc\ngoogle_apis/gcm/engine/registration_request_unittest.cc\ngoogle_apis/gcm/tools/mcs_probe.cc\ngoogle_apis/google_api_keys.cc\ngoogle_apis/google_api_keys.h\ngoogle_apis/people/people_api_request_types.h\ngoogle_apis/people/people_api_requests.h\ngoogle_apis/people/people_api_response_types.h\ngoogle_apis/tasks/tasks_api_requests.h\ngoogle_apis/tasks/tasks_api_response_types.h\ngoogle_apis/tasks/tasks_api_response_types_unittest.cc\ngoogle_apis/tasks/tasks_api_task_status.h\ngoogle_apis/tasks/tasks_api_url_generator_utils.h\ngoogle_apis/tasks/tasks_api_url_generator_utils_unittest.cc\ngoogle_apis/test/data/calendar/calendar_list.json\ngoogle_apis/test/data/calendar/event_self_response_statuses.json\ngoogle_apis/test/data/calendar/event_statuses.json\ngoogle_apis/test/data/calendar/event_with_attachments.json\ngoogle_apis/test/data/calendar/event_with_invalid_attachments.json\ngoogle_apis/test/data/calendar/event_with_invalid_conference_data_uri.json\ngoogle_apis/test/data/calendar/event_with_missing_entry_point_type.json\ngoogle_apis/test/data/calendar/events.json\ngoogle_apis/test/data/calendar/group_calendar_events.json\ngoogle_apis/test/data/calendar/invalid_events.json\ngoogle_apis/test/data/drive/about.json\ngoogle_apis/test/data/drive/changelist.json\ngoogle_apis/test/data/drive/changelist_with_new_start_page_token.json\ngoogle_apis/test/data/drive/directory_entry.json\ngoogle_apis/test/data/drive/file_entry.json\ngoogle_apis/test/data/drive/filelist.json\ngoogle_apis/youtube_music/youtube_music_api_request_types.cc\ngoogle_apis/youtube_music/youtube_music_api_request_types_unittest.cc\ngoogle_apis/youtube_music/youtube_music_api_requests.cc\ngoogle_apis/youtube_music/youtube_music_api_requests.h\ngoogle_apis/youtube_music/youtube_music_api_requests_unittest.cc\ngoogle_apis/youtube_music/youtube_music_api_response_types.h\ngpu/GLES2/extensions/ANGLE/EGL_ANGLE_sync_control_rate.txt\ngpu/GLES2/extensions/CHROMIUM/EGL_CHROMIUM_sync_control.txt\ngpu/PRESUBMIT.py\ngpu/command_buffer/PRESUBMIT.py\ngpu/command_buffer/client/client_shared_image.cc\ngpu/command_buffer/client/fenced_allocator.h\ngpu/command_buffer/client/internal/mappable_buffer_test_template.h\ngpu/command_buffer/client/shared_memory_limits.h\ngpu/command_buffer/service/common_decoder_unittest.cc\ngpu/command_buffer/service/gles2_cmd_decoder_passthrough.cc\ngpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc\ngpu/command_buffer/service/shader_translator_unittest.cc\ngpu/command_buffer/service/shared_image/ahardwarebuffer_image_backing_factory.cc\ngpu/command_buffer/service/shared_image/d3d_image_backing_factory.cc\ngpu/command_buffer/service/shared_image/dcomp_image_backing_factory.cc\ngpu/command_buffer/service/shared_image/dcomp_surface_image_backing.cc\ngpu/command_buffer/service/shared_image/dxgi_swap_chain_image_representation.cc\ngpu/command_buffer/service/shared_image/ozone_image_backing_factory.cc\ngpu/command_buffer/service/shared_image/shared_image_factory.cc\ngpu/command_buffer/service/shared_image/video_image_reader_image_backing.cc\ngpu/command_buffer/service/shared_image_interface_in_process_base.cc\ngpu/config/PRESUBMIT.py\ngpu/config/gpu_control_list_format.txt\ngpu/config/gpu_info_collector_win.cc\ngpu/config/gpu_switches.cc\ngpu/ipc/client/shared_image_interface_proxy.cc\ngpu/ipc/common/PRESUBMIT.py\ngpu/vulkan/PRESUBMIT.py\nheadless/lib/browser/protocol/headless_handler.cc\nheadless/test/data/dom_tree_test.html\nheadless/test/data/structured_doc.html\nheadless/test/data/structured_doc/doc.html\nheadless/test/dom_tree_extraction_expected_nodes.txt\nheadless/test/headless_compositor_browsertest.cc\ninfra/config/PRESUBMIT.py\ninfra/config/generated/health-specs/health-specs.json\ninfra/config/migration/lib/PRESUBMIT.py\ninfra/config/scripts/PRESUBMIT.py\ninfra/config/scripts/sync-pyl-files.py\nipc/ipc_channel.h\nmedia/PRESUBMIT.py\nmedia/audio/android/audio_track_output_stream.cc\nmedia/audio/android/opensles_util.cc\nmedia/audio/cras/cras_util.cc\nmedia/audio/ios/audio_session_manager_ios.mm\nmedia/audio/win/audio_low_latency_input_win.cc\nmedia/audio/win/audio_low_latency_output_win.h\nmedia/audio/win/core_audio_util_win.cc\nmedia/audio/win/core_audio_util_win.h\nmedia/base/android/media_codec_bridge_impl.cc\nmedia/base/android/media_drm_bridge.cc\nmedia/base/container_names.cc\nmedia/base/format_utils.cc\nmedia/base/key_systems_impl.cc\nmedia/base/media_drm_key_type.h\nmedia/base/media_log_unittest.cc\nmedia/base/media_switches.cc\nmedia/base/status.h\nmedia/base/test_random.h\nmedia/base/video_codec_string_parsers.h\nmedia/base/video_encoder.cc\nmedia/base/video_frame.cc\nmedia/base/win/dxgi_device_manager.cc\nmedia/base/win/hresults.h\nmedia/base/win/media_foundation_cdm_proxy.h\nmedia/base/win/mf_helpers.cc\nmedia/base/win/mf_helpers.h\nmedia/base/win/mf_initializer.cc\nmedia/capture/content/smooth_event_sampler_unittest.cc\nmedia/capture/video/android/video_capture_device_android.h\nmedia/capture/video/apple/video_capture_device_avfoundation.mm\nmedia/capture/video/chromeos/camera_3a_controller.cc\nmedia/capture/video/chromeos/camera_3a_controller.h\nmedia/capture/video/chromeos/camera_device_delegate.cc\nmedia/capture/video/linux/v4l2_capture_delegate.cc\nmedia/capture/video/video_capture_device_client.cc\nmedia/capture/video/win/sink_filter_win.h\nmedia/capture/video/win/video_capture_device_factory_win.cc\nmedia/capture/video/win/video_capture_device_mf_win.cc\nmedia/capture/video/win/video_capture_device_utils_win.cc\nmedia/capture/video/win/video_capture_device_utils_win.h\nmedia/capture/video/win/video_capture_device_win.cc\nmedia/cast/encoding/external_video_encoder.cc\nmedia/cast/encoding/media_video_encoder_wrapper_unittest.cc\nmedia/cast/encoding/size_adaptable_video_encoder_base_unittest.cc\nmedia/cast/encoding/vpx_encoder.cc\nmedia/cast/encoding/vpx_quantizer_parser_unittest.cc\nmedia/cast/sender/openscreen_frame_sender.h\nmedia/cast/sender/video_bitrate_suggester.h\nmedia/cast/sender/video_sender_unittest.cc\nmedia/cdm/library_cdm/clear_key_cdm/clear_key_cdm.cc\nmedia/cdm/win/media_foundation_cdm.cc\nmedia/cdm/win/test/media_foundation_clear_key_decryptor.cc\nmedia/cdm/win/test/mock_media_protection_pmp_server.h\nmedia/ffmpeg/ffmpeg_regression_tests.cc\nmedia/ffmpeg/scripts/build_ffmpeg.py\nmedia/ffmpeg/scripts/credits_updater.py\nmedia/ffmpeg/scripts/generate_gn.py\nmedia/ffmpeg/scripts/robo_branch.py\nmedia/ffmpeg/scripts/robo_setup.py\nmedia/filters/decrypting_audio_decoder.h\nmedia/filters/decrypting_video_decoder.h\nmedia/filters/source_buffer_stream_unittest.cc\nmedia/filters/video_cadence_estimator.h\nmedia/filters/win/media_foundation_audio_decoder.cc\nmedia/formats/hls/media_playlist_unittest.cc\nmedia/formats/hls/multivariant_playlist_unittest.cc\nmedia/formats/hls/tags_unittest.cc\nmedia/fuchsia/common/vmo_buffer_writer_queue.cc\nmedia/gpu/android/ndk_video_encode_accelerator.cc\nmedia/gpu/android/video_accelerator_util.h\nmedia/gpu/av1_decoder_unittest.cc\nmedia/gpu/buffer_validation_unittest.cc\nmedia/gpu/chromeos/shaders/PRESUBMIT.py\nmedia/gpu/gpu_video_encode_accelerator_helpers.cc\nmedia/gpu/macros.h\nmedia/gpu/svc_layers.cc\nmedia/gpu/test/video_encoder/video_encoder_client.cc\nmedia/gpu/test/video_encoder/video_encoder_test_environment.cc\nmedia/gpu/v4l2/mt21/mt21_decompressor_unittest.cc\nmedia/gpu/v4l2/mt21/mt21_util.h\nmedia/gpu/v4l2/test/av1_decoder.cc\nmedia/gpu/v4l2/test/video_decoder.cc\nmedia/gpu/v4l2/v4l2_stateful_video_decoder.cc\nmedia/gpu/v4l2/v4l2_video_decoder_delegate_av1.cc\nmedia/gpu/vaapi/test/av1_decoder.cc\nmedia/gpu/vaapi/test/vp8_decoder.cc\nmedia/gpu/vaapi/test/vp9_decoder.cc\nmedia/gpu/vaapi/vaapi_image_decoder_test_common.h\nmedia/gpu/vaapi/vaapi_unittest.cc\nmedia/gpu/windows/d3d11_video_decoder_wrapper.cc\nmedia/gpu/windows/d3d12_copy_command_list_wrapper.cc\nmedia/gpu/windows/d3d12_video_encode_h264_delegate.cc\nmedia/gpu/windows/d3d12_video_helpers.cc\nmedia/gpu/windows/d3d12_video_helpers.h\nmedia/gpu/windows/media_foundation_video_encode_accelerator_win.cc\nmedia/gpu/windows/mf_audio_encoder.cc\nmedia/gpu/windows/mf_audio_encoder.h\nmedia/mojo/clients/mojo_gpu_video_accelerator_factories.cc\nmedia/mojo/mojom/stable/native_pixmap_handle_mojom_traits.cc\nmedia/mojo/services/media_foundation_service.cc\nmedia/mojo/services/media_metrics_provider_unittest.cc\nmedia/mojo/services/mojo_video_encoder_metrics_provider_service_unittest.cc\nmedia/mojo/services/watch_time_recorder_unittest.cc\nmedia/parsers/webp_parser.cc\nmedia/parsers/webp_parser.h\nmedia/renderers/audio_renderer_impl.cc\nmedia/renderers/audio_renderer_impl.h\nmedia/renderers/video_renderer_impl.h\nmedia/renderers/win/media_engine_extension.h\nmedia/renderers/win/media_engine_notify_impl.cc\nmedia/renderers/win/media_engine_notify_impl.h\nmedia/renderers/win/media_foundation_protection_manager.cc\nmedia/renderers/win/media_foundation_protection_manager.h\nmedia/renderers/win/media_foundation_renderer.cc\nmedia/renderers/win/media_foundation_source_wrapper.cc\nmedia/renderers/win/media_foundation_source_wrapper.h\nmedia/renderers/win/media_foundation_stream_wrapper.cc\nmedia/renderers/win/media_foundation_stream_wrapper.h\nmedia/renderers/win/media_foundation_video_stream.cc\nmedia/test/PRESUBMIT.py\nmedia/video/mappable_shared_image_video_frame_pool.cc\nmedia/video/video_encode_accelerator.h\nmedia/video/vpx_video_encoder.cc\nmojo/PRESUBMIT.py\nmojo/core/channel.h\nmojo/core/node_channel.h\nmojo/core/platform_handle_in_transit.cc\nmojo/public/cpp/platform/named_platform_channel_win.cc\nmojo/public/interfaces/bindings/tests/PRESUBMIT.py\nnet/BUILD.gn\nnet/PRESUBMIT.py\nnet/android/http_auth_negotiate_android.h\nnet/android/network_library.cc\nnet/android/network_library.h\nnet/android/unittest_support/AndroidManifest.xml\nnet/base/address_tracker_linux.cc\nnet/base/apple/url_conversions_unittest.mm\nnet/base/file_stream_context.h\nnet/base/filename_util.cc\nnet/base/filename_util_internal.cc\nnet/base/filename_util_unittest.cc\nnet/base/host_port_pair_unittest.cc\nnet/base/interval_test.cc\nnet/base/load_timing_info.h\nnet/base/mime_sniffer_unittest.cc\nnet/base/mime_util.cc\nnet/base/network_change_notifier_apple.mm\nnet/base/network_change_notifier_win.cc\nnet/base/network_interfaces_getifaddrs_android.cc\nnet/base/network_interfaces_linux.cc\nnet/base/network_interfaces_win.cc\nnet/base/registry_controlled_domains/registry_controlled_domain.cc\nnet/base/registry_controlled_domains/registry_controlled_domain.h\nnet/base/registry_controlled_domains/registry_controlled_domain_unittest.cc\nnet/base/scheme_host_port_matcher_rule.cc\nnet/base/scheme_host_port_matcher_rule.h\nnet/base/scheme_host_port_matcher_rule_unittest.cc\nnet/base/scheme_host_port_matcher_unittest.cc\nnet/base/url_util.cc\nnet/base/url_util_unittest.cc\nnet/cert/cert_verify_proc_unittest.cc\nnet/cert/internal/trust_store_win.cc\nnet/cert/nss_cert_database.cc\nnet/cert/nss_cert_database_unittest.cc\nnet/cert/x509_certificate.cc\nnet/cert/x509_certificate_unittest.cc\nnet/cert/x509_util_nss_unittest.cc\nnet/cookies/canonical_cookie.cc\nnet/cookies/canonical_cookie_unittest.cc\nnet/cookies/cookie_monster.cc\nnet/cookies/cookie_monster.h\nnet/cookies/cookie_monster_perftest.cc\nnet/cookies/cookie_store_test_helpers.h\nnet/cookies/cookie_store_unittest.h\nnet/cookies/cookie_util.h\nnet/cookies/parsed_cookie.cc\nnet/cookies/parsed_cookie.h\nnet/data/filter_unittests/google.txt\nnet/data/fuzzer_data/http_security_headers/http_security_header_047.txt\nnet/data/parse_certificate_unittest/v3_certificate_template.txt\nnet/device_bound_sessions/registration_fetcher_param.cc\nnet/device_bound_sessions/session_service_impl.cc\nnet/device_bound_sessions/session_service_impl_unittest.cc\nnet/device_bound_sessions/session_unittest.cc\nnet/device_bound_sessions/unexportable_key_service_factory.cc\nnet/device_bound_sessions/url_fetcher.cc\nnet/disk_cache/blockfile/file_ios.cc\nnet/disk_cache/disk_cache.h\nnet/disk_cache/simple/simple_backend_impl.h\nnet/disk_cache/simple/simple_file_enumerator.h\nnet/disk_cache/simple/simple_index.cc\nnet/dns/address_sorter_posix.cc\nnet/dns/context_host_resolver_unittest.cc\nnet/dns/dns_config_service_linux_unittest.cc\nnet/dns/dns_config_service_posix_unittest.cc\nnet/dns/dns_config_service_win.cc\nnet/dns/dns_config_service_win.h\nnet/dns/dns_config_service_win_unittest.cc\nnet/dns/dns_names_util_unittest.cc\nnet/dns/dns_response_result_extractor.cc\nnet/dns/dns_response_result_extractor_unittest.cc\nnet/dns/dns_response_unittest.cc\nnet/dns/dns_test_util.h\nnet/dns/dns_transaction.cc\nnet/dns/dns_transaction.h\nnet/dns/dns_transaction_unittest.cc\nnet/dns/dns_udp_tracker.h\nnet/dns/host_cache_unittest.cc\nnet/dns/host_resolver_manager_unittest.cc\nnet/dns/host_resolver_mdns_task.cc\nnet/dns/https_record_rdata_unittest.cc\nnet/dns/loopback_only.h\nnet/dns/mapped_host_resolver_unittest.cc\nnet/dns/mdns_cache_unittest.cc\nnet/dns/mdns_client.h\nnet/dns/notify_watcher_mac.cc\nnet/dns/platform_dns_query_executor_android.h\nnet/dns/platform_dns_query_executor_android_unittest.cc\nnet/dns/public/doh_provider_entry.cc\nnet/dns/record_parsed_unittest.cc\nnet/dns/record_rdata_unittest.cc\nnet/extras/sqlite/sqlite_persistent_cookie_store.cc\nnet/extras/sqlite/sqlite_persistent_cookie_store_unittest.cc\nnet/http/BUILD.gn\nnet/http/alternative_service.h\nnet/http/http_auth_cache_unittest.cc\nnet/http/http_auth_challenge_tokenizer.cc\nnet/http/http_auth_filter_unittest.cc\nnet/http/http_auth_gssapi_posix_unittest.cc\nnet/http/http_auth_handler_digest_unittest.cc\nnet/http/http_auth_handler_factory_unittest.cc\nnet/http/http_auth_handler_negotiate.cc\nnet/http/http_auth_handler_ntlm.cc\nnet/http/http_auth_handler_ntlm_win.cc\nnet/http/http_auth_preferences_unittest.cc\nnet/http/http_auth_sspi_win.cc\nnet/http/http_auth_sspi_win_unittest.cc\nnet/http/http_cache_transaction.cc\nnet/http/http_cache_unittest.cc\nnet/http/http_chunked_decoder.cc\nnet/http/http_chunked_decoder.h\nnet/http/http_network_layer_unittest.cc\nnet/http/http_network_transaction.cc\nnet/http/http_network_transaction_unittest.cc\nnet/http/http_proxy_connect_job_unittest.cc\nnet/http/http_response_headers.cc\nnet/http/http_server_properties.cc\nnet/http/http_server_properties.h\nnet/http/http_server_properties_manager.cc\nnet/http/http_server_properties_manager_unittest.cc\nnet/http/http_server_properties_unittest.cc\nnet/http/http_stream_factory_job_controller_unittest.cc\nnet/http/http_stream_factory_unittest.cc\nnet/http/http_stream_parser.cc\nnet/http/http_stream_pool_attempt_manager.cc\nnet/http/http_transaction_test_util.cc\nnet/http/http_util.cc\nnet/http/http_util_unittest.cc\nnet/http/mock_sspi_library_win.cc\nnet/http/no_vary_search_cache.h\nnet/http/transport_security_state.cc\nnet/http/transport_security_state.h\nnet/http/transport_security_state_unittest.cc\nnet/http/url_security_manager_win.cc\nnet/log/file_net_log_observer.cc\nnet/log/net_log.h\nnet/log/net_log_event_type_list.h\nnet/nqe/network_quality_estimator_params.cc\nnet/nqe/network_quality_estimator_util_unittest.cc\nnet/nqe/socket_watcher.cc\nnet/ntlm/ntlm.h\nnet/ntlm/ntlm_buffer_reader.h\nnet/ntlm/ntlm_buffer_writer.h\nnet/ntlm/ntlm_client.cc\nnet/ntlm/ntlm_client.h\nnet/ntlm/ntlm_test_data.h\nnet/ntlm/ntlm_unittest.cc\nnet/proxy_resolution/configured_proxy_resolution_service.h\nnet/proxy_resolution/configured_proxy_resolution_service_unittest.cc\nnet/proxy_resolution/pac_file_decider.cc\nnet/proxy_resolution/pac_file_decider_unittest.cc\nnet/proxy_resolution/proxy_config.h\nnet/proxy_resolution/proxy_config_service_android.cc\nnet/proxy_resolution/proxy_config_service_linux.cc\nnet/proxy_resolution/proxy_config_service_linux.h\nnet/proxy_resolution/proxy_config_service_linux_unittest.cc\nnet/proxy_resolution/proxy_config_unittest.cc\nnet/proxy_resolution/proxy_host_matching_rules_unittest.cc\nnet/proxy_resolution/proxy_resolver_apple.h\nnet/proxy_resolution/win/dhcp_pac_file_adapter_fetcher_win.cc\nnet/proxy_resolution/win/proxy_config_service_win_unittest.cc\nnet/proxy_resolution/win/proxy_resolver_winhttp.cc\nnet/quic/bidirectional_stream_quic_impl_unittest.cc\nnet/quic/crypto/proof_verifier_chromium.cc\nnet/quic/properties_based_quic_server_info_test.cc\nnet/quic/quic_chromium_client_session.cc\nnet/quic/quic_chromium_client_session_test.cc\nnet/quic/quic_chromium_client_stream_test.cc\nnet/quic/quic_network_transaction_unittest.cc\nnet/quic/quic_proxy_client_socket_test_base.h\nnet/quic/quic_session_pool.cc\nnet/quic/quic_session_pool_test.cc\nnet/quic/quic_session_pool_test_base.cc\nnet/quic/quic_test_packet_maker.h\nnet/socket/socket_options.h\nnet/socket/socket_test_util.cc\nnet/socket/socks5_client_socket_unittest.cc\nnet/socket/socks_connect_job_unittest.cc\nnet/socket/ssl_client_socket_impl.cc\nnet/socket/ssl_client_socket_unittest.cc\nnet/socket/tcp_socket_io_completion_port_win.cc\nnet/socket/tcp_socket_win.cc\nnet/socket/transport_client_socket_pool_unittest.cc\nnet/socket/udp_socket_posix.h\nnet/socket/udp_socket_unittest.cc\nnet/socket/udp_socket_win.cc\nnet/socket/udp_socket_win.h\nnet/socket/websocket_transport_client_socket_pool_unittest.cc\nnet/spdy/spdy_http_stream.cc\nnet/spdy/spdy_http_utils_unittest.cc\nnet/spdy/spdy_proxy_client_socket_unittest.cc\nnet/spdy/spdy_session.cc\nnet/spdy/spdy_session_unittest.cc\nnet/ssl/client_cert_store_win.cc\nnet/ssl/openssl_ssl_util.cc\nnet/ssl/openssl_ssl_util.h\nnet/ssl/ssl_key_logger.h\nnet/ssl/ssl_platform_key_android.cc\nnet/ssl/ssl_platform_key_win_unittest.cc\nnet/test/ct_test_util.cc\nnet/test/test_certificate_data.h\nnet/third_party/mozilla_security_manager/nsNSSCertificateDB.cpp\nnet/third_party/mozilla_security_manager/nsNSSCertificateDB.h\nnet/third_party/mozilla_security_manager/nsPKCS12Blob.cpp\nnet/third_party/mozilla_security_manager/nsPKCS12Blob.h\nnet/third_party/mozilla_win/cert/win_util.cc\nnet/third_party/mozilla_win/cert/win_util.h\nnet/third_party/quiche/BUILD.gn\nnet/third_party/quiche/src/quiche/balsa/balsa_frame_test.cc\nnet/third_party/quiche/src/quiche/binary_http/binary_http_message_test.cc\nnet/third_party/quiche/src/quiche/blind_sign_auth/blind_sign_auth.cc\nnet/third_party/quiche/src/quiche/common/platform/api/quiche_hostname_utils_test.cc\nnet/third_party/quiche/src/quiche/http2/core/spdy_protocol.h\nnet/third_party/quiche/src/quiche/quic/core/crypto/client_proof_source_test.cc\nnet/third_party/quiche/src/quiche/quic/core/crypto/quic_crypto_client_config.h\nnet/third_party/quiche/src/quiche/quic/core/crypto/quic_crypto_client_config_test.cc\nnet/third_party/quiche/src/quiche/quic/core/crypto/tls_server_connection.h\nnet/third_party/quiche/src/quiche/quic/core/http/quic_spdy_server_stream_base_test.cc\nnet/third_party/quiche/src/quiche/quic/core/http/quic_spdy_stream_test.cc\nnet/third_party/quiche/src/quiche/quic/core/http/spdy_utils_test.cc\nnet/third_party/quiche/src/quiche/quic/core/quic_connection_test.cc\nnet/third_party/quiche/src/quiche/quic/core/quic_crypto_stream.h\nnet/third_party/quiche/src/quiche/quic/core/quic_dispatcher_test.cc\nnet/third_party/quiche/src/quiche/quic/core/quic_packet_creator_test.cc\nnet/third_party/quiche/src/quiche/quic/core/quic_server_id_test.cc\nnet/third_party/quiche/src/quiche/quic/core/quic_session_test.cc\nnet/third_party/quiche/src/quiche/quic/core/tls_client_handshaker.h\nnet/third_party/quiche/src/quiche/quic/tools/quic_client_bin.cc\nnet/third_party/quiche/src/quiche/quic/tools/quic_memory_cache_backend.cc\nnet/third_party/quiche/src/quiche/quic/tools/quic_memory_cache_backend_test.cc\nnet/third_party/quiche/src/quiche/quic/tools/quic_simple_server_stream_test.cc\nnet/third_party/quiche/src/quiche/quic/tools/quic_toy_client.cc\nnet/tools/print_certificates.py\nnet/tools/quic/quic_simple_client_bin.cc\nnet/tools/transport_security_state_generator/transport_security_state_generator.cc\nnet/url_request/url_request_context_builder_unittest.cc\nnet/url_request/url_request_http_job_unittest.cc\nnet/url_request/url_request_job_unittest.cc\nnet/url_request/url_request_unittest.cc\nnet/websockets/websocket_stream_test.cc\npdf/loader/document_loader_impl.cc\npdf/paint_aggregator.h\npdf/pdfium/accessibility_unittest.cc\npdf/pdfium/pdfium_engine.cc\npdf/pdfium/pdfium_engine_unittest.cc\npdf/pdfium/pdfium_form_filler_unittest.cc\npdf/pdfium/pdfium_mem_buffer_file_write.cc\npdf/pdfium/pdfium_page_unittest.cc\npdf/pdfium/pdfium_test_base.cc\npdf/test/PRESUBMIT.py\nprinting/backend/PRESUBMIT.py\nprinting/backend/print_backend_win.cc\nprinting/backend/win_helper.cc\nprinting/backend/win_helper_unittest.cc\nprinting/backend/xps_utils_win.cc\nprinting/metafile_skia.cc\nprinting/print_settings_initializer_win.cc\nprinting/printing_context.h\nprinting/test/PRESUBMIT.py\nremoting/base/compute_engine_service_client.cc\nremoting/base/compute_engine_service_client.h\nremoting/base/corp_auth_util.cc\nremoting/base/crash/crashpad_linux.cc\nremoting/base/crash/crashpad_win.cc\nremoting/base/instance_identity_token_getter_impl_unittest.cc\nremoting/base/is_google_email.cc\nremoting/base/service_urls.cc\nremoting/base/session_policies.h\nremoting/codec/video_encoder_vpx.cc\nremoting/codec/webrtc_video_encoder_vpx.cc\nremoting/host/audio_capturer_win.cc\nremoting/host/crash/crash_file_uploader.cc\nremoting/host/evaluate_capability.cc\nremoting/host/ftl_echo_message_listener_unittest.cc\nremoting/host/ftl_host_change_notification_listener_unittest.cc\nremoting/host/host_config_unittest.cc\nremoting/host/it2me/com.google.chrome.remote_assistance-firefox.json.jinja2\nremoting/host/it2me/it2me_confirmation_dialog_chromeos_unittest.cc\nremoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc\nremoting/host/it2me/it2me_host_unittest.cc\nremoting/host/it2me/it2me_native_messaging_host_unittest.cc\nremoting/host/linux/input_injector_x11.cc\nremoting/host/linux/linux_me2me_host.py\nremoting/host/linux/remoting_user_session.cc\nremoting/host/mouse_shape_pump.cc\nremoting/host/policy_watcher_unittest.cc\nremoting/host/remote_open_url/remote_open_url_client_unittest.cc\nremoting/host/remote_open_url/remote_open_url_message_handler_unittest.cc\nremoting/host/remoting_register_support_host_request.cc\nremoting/host/sas_injector_win.cc\nremoting/host/setup/com.google.chrome.remote_desktop-firefox.json.jinja2\nremoting/host/setup/start_host_main.cc\nremoting/host/touch_injector_win.cc\nremoting/host/webauthn/remote_webauthn_extension_notifier.cc\nremoting/host/win/desktop_event_handler.h\nremoting/host/win/etw_trace_controller.cc\nremoting/host/win/mouse_cursor_monitor_win.cc\nremoting/host/win/rdp_client_window.cc\nremoting/host/win/trust_util.cc\nremoting/protocol/authenticator_test_base.h\nremoting/protocol/fake_session.cc\nremoting/protocol/jingle_messages.h\nremoting/protocol/jingle_messages_unittest.cc\nremoting/protocol/jingle_session_unittest.cc\nremoting/protocol/negotiating_authenticator_unittest.cc\nremoting/protocol/socket_util.cc\nremoting/resources/remoting_strings.grd\nremoting/signaling/corp_message_channel_strategy_unittest.cc\nremoting/signaling/corp_messaging_constants.cc\nremoting/signaling/ftl_messaging_client.cc\nremoting/signaling/ftl_messaging_client_unittest.cc\nremoting/signaling/ftl_signal_strategy_unittest.cc\nremoting/signaling/signaling_address.cc\nremoting/signaling/signaling_address_unittest.cc\nremoting/signaling/signaling_id_util.cc\nremoting/signaling/signaling_id_util.h\nremoting/signaling/signaling_id_util_unittest.cc\nremoting/test/it2me_cli_host.cc\nremoting/test/session_authz_playground.cc\nremoting/test/test_oauth_token_getter.cc\nremoting/tools/build/remoting_localize.py\nremoting/tools/zip2msi.py\nrlz/lib/financial_ping.cc\nrlz/lib/lib_values.cc\nrlz/lib/rlz_lib_test.cc\nsandbox/features.gni\nsandbox/linux/integration_tests/bpf_dsl_seccomp_unittest.cc\nsandbox/linux/seccomp-bpf-helpers/baseline_policy.cc\nsandbox/linux/seccomp-bpf-helpers/baseline_policy_android.cc\nsandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.cc\nsandbox/linux/seccomp-bpf-helpers/syscall_sets.cc\nsandbox/linux/services/libc_interceptor.cc\nsandbox/linux/services/libc_interceptor.h\nsandbox/linux/suid/client/setuid_sandbox_client.cc\nsandbox/linux/suid/client/setuid_sandbox_host.cc\nsandbox/linux/suid/sandbox.c\nsandbox/linux/system_headers/linux_prctl.h\nsandbox/policy/features.cc\nsandbox/policy/linux/sandbox_linux.h\nsandbox/policy/sandbox.cc\nsandbox/policy/win/sandbox_win.cc\nsandbox/win/src/interception.cc\nsandbox/win/src/interception.h\nsandbox/win/src/interception_agent.cc\nsandbox/win/src/interception_agent.h\nsandbox/win/src/interception_internal.h\nsandbox/win/src/nt_internals.h\nsandbox/win/src/process_mitigations.cc\nsandbox/win/src/process_mitigations_unittest.cc\nsandbox/win/src/resolver.h\nsandbox/win/src/sandbox_nt_util.cc\nsandbox/win/src/sandbox_nt_util.h\nsandbox/win/src/sandbox_policy.h\nsandbox/win/src/security_level.h\nsandbox/win/src/startup_information_helper.cc\nsandbox/win/src/win_utils.cc\nservices/BUILD.gn\nservices/device/generic_sensor/platform_sensor_and_provider_unittest_win.cc\nservices/device/generic_sensor/platform_sensor_provider_chromeos.cc\nservices/device/generic_sensor/platform_sensor_reader_win.cc\nservices/device/generic_sensor/platform_sensor_reader_winrt.cc\nservices/device/geolocation/network_location_provider_unittest.cc\nservices/device/geolocation/network_location_request.cc\nservices/device/geolocation/public_ip_address_geolocator_unittest.cc\nservices/device/geolocation/public_ip_address_location_notifier_unittest.cc\nservices/device/hid/hid_preparsed_data.cc\nservices/device/hid/hid_service_win.h\nservices/device/public/cpp/bluetooth/bluetooth_utils.cc\nservices/device/serial/serial_io_handler_win.cc\nservices/device/usb/mojo/device_impl.cc\nservices/device/usb/usb_device_handle_win.cc\nservices/device/usb/usb_service_win.cc\nservices/image_annotation/annotator_unittest.cc\nservices/image_annotation/image_annotation_service.cc\nservices/media_session/media_controller_unittest.cc\nservices/network/cookie_manager_unittest.cc\nservices/network/cors/preflight_controller_unittest.cc\nservices/network/cors/preflight_result_unittest.cc\nservices/network/enterprise/encryption/chunked_encryptor.h\nservices/network/host_resolver_unittest.cc\nservices/network/http_cache_data_counter_unittest.cc\nservices/network/http_cache_data_remover_unittest.cc\nservices/network/mojo_host_resolver_impl_unittest.cc\nservices/network/network_context.h\nservices/network/network_context_unittest.cc\nservices/network/orb/orb_impl.cc\nservices/network/orb/orb_impl_unittest.cc\nservices/network/orb/orb_sniffers.cc\nservices/network/pervasive_resources/shared_resource_checker.cc\nservices/network/pervasive_resources/shared_resource_checker.h\nservices/network/pervasive_resources/shared_resource_checker_patterns.h\nservices/network/proxy_resolver_factory_mojo_unittest.cc\nservices/network/public/cpp/content_security_policy/content_security_policy_unittest.cc\nservices/network/public/cpp/cors/cors_error_status.h\nservices/network/public/cpp/cors/cors_unittest.cc\nservices/network/public/cpp/cors/origin_access_entry_unittest.cc\nservices/network/public/cpp/cors/origin_access_list_unittest.cc\nservices/network/public/cpp/features.cc\nservices/network/public/cpp/features.h\nservices/network/public/cpp/is_potentially_trustworthy.cc\nservices/network/public/cpp/network_switches.cc\nservices/network/public/cpp/permissions_policy/origin_with_possible_wildcards_unittest.cc\nservices/network/public/cpp/proxy_config_mojom_traits_unittest.cc\nservices/network/public/cpp/transferable_socket.cc\nservices/network/public/mojom/permissions_policy/PRESUBMIT.py\nservices/network/sct_auditing/sct_auditing_reporter.cc\nservices/network/trust_tokens/trust_token_client_data_canonicalization.h\nservices/network/trust_tokens/trust_token_key_commitment_parser.h\nservices/network/trust_tokens/trust_token_key_commitments.h\nservices/network/udp_socket_unittest.cc\nservices/network/url_loader_util.cc\nservices/network/websocket_throttler.h\nservices/preferences/tracked/device_id_unittest.cc\nservices/proxy_resolver/host_resolver_mojo.cc\nservices/proxy_resolver/pac_js_library.h\nservices/proxy_resolver/proxy_resolver_v8_tracing.cc\nservices/proxy_resolver/proxy_resolver_v8_tracing.h\nservices/proxy_resolver/proxy_resolver_v8_unittest.cc\nservices/proxy_resolver/test/PRESUBMIT.py\nservices/proxy_resolver/test/data/proxy_resolver_v8_unittest/pac_library_unittest.js\nservices/proxy_resolver_win/windows_system_proxy_resolver_impl.cc\nservices/proxy_resolver_win/winhttp_api_wrapper.h\nservices/resource_coordinator/memory_instrumentation/queued_request_dispatcher.cc\nservices/resource_coordinator/public/cpp/memory_instrumentation/client_process_impl.h\nservices/service_manager/public/cpp/manifest.h\nservices/service_manager/service_process_launcher.cc\nservices/shape_detection/barcode_detection_impl_chrome_unittest.cc\nservices/shape_detection/barcode_detection_impl_mac_unittest.mm\nservices/shape_detection/text_detection_impl_mac_unittest.mm\nservices/shape_detection/text_detection_impl_win_unittest.cc\nservices/test/data/decoder/google.txt\nservices/tracing/perfetto/privacy_filtered_fields-inl.h\nservices/tracing/public/cpp/perfetto/java_heap_profiler/hprof_parser_android.h\nservices/tracing/public/cpp/stack_sampling/tracing_sampler_profiler.h\nservices/tracing/public/cpp/stack_sampling/tracing_sampler_profiler_unittest.cc\nservices/video_capture/test/fake_video_capture_device_unittest.cc\nservices/viz/public/cpp/gpu/gpu.cc\nservices/webnn/dml/adapter.cc\nservices/webnn/dml/adapter.h\nservices/webnn/dml/command_recorder.cc\nservices/webnn/dml/context_impl_dml.cc\nservices/webnn/dml/graph_builder_dml.h\nservices/webnn/dml/graph_impl_dml.cc\nservices/webnn/dml/tensor_desc.cc\nservices/webnn/dml/utils.cc\nservices/webnn/ort/environment.cc\nservices/webnn/public/cpp/platform_functions_win.cc\nservices/webnn/tflite/graph_builder_tflite.cc\nservices/webnn/webnn_graph_impl_backend_test.cc\nskia/config/SkUserConfig.h\nskia/ext/SkMemory_new_handler.cpp\nskia/ext/skia_utils_ios_unittest.mm\nsql/database.cc\nsql/vfs_wrapper.cc\nstorage/browser/blob/blob_reader.h\nstorage/browser/file_system/external_mount_points_unittest.cc\nstorage/browser/file_system/file_system_backend.h\nstorage/browser/file_system/file_system_context_unittest.cc\nstorage/browser/file_system/file_system_url.h\nstorage/browser/file_system/file_system_url_unittest.cc\nstorage/browser/file_system/isolated_context_unittest.cc\nstorage/browser/file_system/sandbox_file_system_backend_unittest.cc\nstorage/browser/quota/quota_database_unittest.cc\nstorage/common/database/database_identifier_unittest.cc\nstorage/common/file_system/file_system_util_unittest.cc\nstorage/test/PRESUBMIT.py\ntesting/PRESUBMIT.py\ntesting/android/instrumentation/java/AndroidManifest_permissions.xml\ntesting/android/junit/shadows-allowlist.txt\ntesting/android/native_test/java/AndroidManifest.xml.jinja2\ntesting/buildbot/PRESUBMIT.py\ntesting/buildbot/buildbot_json_magic_substitutions.py\ntesting/buildbot/check.py\ntesting/buildbot/chromium.perf.json\ntesting/buildbot/chromium.perf.pinpoint.json\ntesting/buildbot/filters/PRESUBMIT.py\ntesting/buildbot/generate_buildbot_json.py\ntesting/buildbot/scripts/upload_test_result_artifacts.py\ntesting/chromoting/browser_test_commands_linux.txt\ntesting/chromoting/chromoting_test_driver_commands_linux.txt\ntesting/flake_suppressor_common/expectations.py\ntesting/flake_suppressor_common/expectations_unittest.py\ntesting/flake_suppressor_common/queries.py\ntesting/flake_suppressor_common/results.py\ntesting/flake_suppressor_common/results_unittest.py\ntesting/generate_location_tags.py\ntesting/gtest/BUILD.gn\ntesting/libfuzzer/BUILD.gn\ntesting/libfuzzer/proto/skia_image_filter_proto_converter.cc\ntesting/libfuzzer/unittest_main.cc\ntesting/merge_scripts/PRESUBMIT.py\ntesting/merge_scripts/code_coverage/PRESUBMIT.py\ntesting/merge_scripts/code_coverage/merge_results.py\ntesting/merge_scripts/results_merger.py\ntesting/perf/luci_test_result.h\ntesting/perf/perf_result_reporter.cc\ntesting/scripts/PRESUBMIT.py\ntesting/scripts/common.py\ntesting/scripts/run_performance_tests.py\ntesting/scripts/rust/test_filtering_unittests.py\ntesting/scripts/variations_smoke_test_data/http_server/index.html\ntesting/test_env.py\ntesting/trigger_scripts/PRESUBMIT.py\ntesting/trigger_scripts/base_test_triggerer.py\ntesting/trigger_scripts/perf_device_trigger_unittest.py\ntesting/unexpected_passes_common/data_types.py\ntesting/unexpected_passes_common/data_types_unittest.py\ntesting/unexpected_passes_common/queries.py\ntesting/unexpected_passes_common/result_output_unittest.py\ntesting/variations/PRESUBMIT.py\ntesting/variations/fieldtrial_testing_config.json\nthird_party/abseil-cpp/absl/abseil.podspec.gen.py\nthird_party/abseil-cpp/absl/base/attributes.h\nthird_party/abseil-cpp/absl/base/config.h\nthird_party/abseil-cpp/absl/base/internal/direct_mmap.h\nthird_party/abseil-cpp/absl/base/internal/sysinfo.cc\nthird_party/abseil-cpp/absl/crc/internal/cpu_detect.cc\nthird_party/abseil-cpp/absl/crc/internal/crc.cc\nthird_party/abseil-cpp/absl/crc/internal/non_temporal_arm_intrinsics.h\nthird_party/abseil-cpp/absl/hash/internal/city.h\nthird_party/abseil-cpp/absl/log/internal/globals.cc\nthird_party/abseil-cpp/absl/random/internal/platform.h\nthird_party/abseil-cpp/absl/status/status.h\nthird_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h\nthird_party/abseil-cpp/absl/time/time.h\nthird_party/abseil-cpp/conanfile.py\nthird_party/abseil-cpp/generate_def_files.py\nthird_party/abseil-cpp/roll_abseil.py\nthird_party/afl/src/Makefile\nthird_party/afl/src/afl-analyze.c\nthird_party/afl/src/afl-as.c\nthird_party/afl/src/afl-as.h\nthird_party/afl/src/afl-fuzz.c\nthird_party/afl/src/afl-gcc.c\nthird_party/afl/src/afl-gotcpu.c\nthird_party/afl/src/afl-showmap.c\nthird_party/afl/src/afl-tmin.c\nthird_party/afl/src/alloc-inl.h\nthird_party/afl/src/config.h\nthird_party/afl/src/debug.h\nthird_party/afl/src/docs/QuickStartGuide.txt\nthird_party/afl/src/docs/historical_notes.txt\nthird_party/afl/src/docs/notes_for_asan.txt\nthird_party/afl/src/docs/sister_projects.txt\nthird_party/afl/src/experimental/canvas_harness/canvas_harness.html\nthird_party/afl/src/experimental/persistent_demo/persistent_demo.c\nthird_party/afl/src/experimental/post_library/post_library.so.c\nthird_party/afl/src/experimental/post_library/post_library_png.so.c\nthird_party/afl/src/hash.h\nthird_party/afl/src/libdislocator/Makefile\nthird_party/afl/src/libdislocator/libdislocator.so.c\nthird_party/afl/src/libtokencap/Makefile\nthird_party/afl/src/libtokencap/libtokencap.so.c\nthird_party/afl/src/llvm_mode/Makefile\nthird_party/afl/src/llvm_mode/afl-clang-fast.c\nthird_party/afl/src/llvm_mode/afl-llvm-rt.o.c\nthird_party/afl/src/qemu_mode/patches/afl-qemu-cpu-inl.h\nthird_party/afl/src/test-instr.c\nthird_party/afl/src/types.h\nthird_party/android_build_tools/aapt2/3pp/3pp.py\nthird_party/android_deps/libs/com_android_tools_common/3pp/fetch.py\nthird_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api/3pp/fetch.py\nthird_party/android_deps/libs/com_android_tools_sdk_common/3pp/fetch.py\nthird_party/android_deps/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework/3pp/fetch.py\nthird_party/android_deps/licenses/Android_SDK_License-December_9_2016.txt\nthird_party/android_toolchain/3pp/fetch.py\nthird_party/androidx/local_modifications/espresso/java/androidx/test/espresso/base/README.txt\nthird_party/angle/BUILD.gn\nthird_party/angle/PRESUBMIT.py\nthird_party/angle/extensions/ANGLE_base_vertex_base_instance.txt\nthird_party/angle/extensions/ANGLE_base_vertex_base_instance_shader_builtin.txt\nthird_party/angle/extensions/ANGLE_blob_cache.txt\nthird_party/angle/extensions/ANGLE_client_arrays.txt\nthird_party/angle/extensions/ANGLE_external_objects_flags.txt\nthird_party/angle/extensions/ANGLE_external_objects_fuchsia.txt\nthird_party/angle/extensions/ANGLE_get_image.txt\nthird_party/angle/extensions/ANGLE_get_serialized_context_string.txt\nthird_party/angle/extensions/ANGLE_get_tex_level_parameter.txt\nthird_party/angle/extensions/ANGLE_logic_op.txt\nthird_party/angle/extensions/ANGLE_lossy_etc_decode.txt\nthird_party/angle/extensions/ANGLE_memory_size.txt\nthird_party/angle/extensions/ANGLE_multi_draw.txt\nthird_party/angle/extensions/ANGLE_program_binary_readiness_query.txt\nthird_party/angle/extensions/ANGLE_program_cache_control.txt\nthird_party/angle/extensions/ANGLE_relaxed_vertex_attribute_type.txt\nthird_party/angle/extensions/ANGLE_request_extension.txt\nthird_party/angle/extensions/ANGLE_robust_client_memory.txt\nthird_party/angle/extensions/ANGLE_robust_fragment_shader_output.txt\nthird_party/angle/extensions/ANGLE_robust_resource_initialization.txt\nthird_party/angle/extensions/ANGLE_webgl_compatibility.txt\nthird_party/angle/extensions/CHROMIUM_bind_generates_resource.txt\nthird_party/angle/extensions/EGL_ANGLE_create_context_backwards_compatible.txt\nthird_party/angle/extensions/EGL_ANGLE_create_context_client_arrays.txt\nthird_party/angle/extensions/EGL_ANGLE_create_context_extensions_enabled.txt\nthird_party/angle/extensions/EGL_ANGLE_create_context_webgl_compatibility.txt\nthird_party/angle/extensions/EGL_ANGLE_create_surface_swap_interval.txt\nthird_party/angle/extensions/EGL_ANGLE_d3d_share_handle_client_buffer.txt\nthird_party/angle/extensions/EGL_ANGLE_d3d_texture_client_buffer.txt\nthird_party/angle/extensions/EGL_ANGLE_device_cgl.txt\nthird_party/angle/extensions/EGL_ANGLE_device_creation.txt\nthird_party/angle/extensions/EGL_ANGLE_device_creation_d3d11.txt\nthird_party/angle/extensions/EGL_ANGLE_device_d3d.txt\nthird_party/angle/extensions/EGL_ANGLE_device_d3d11.txt\nthird_party/angle/extensions/EGL_ANGLE_device_d3d9.txt\nthird_party/angle/extensions/EGL_ANGLE_device_eagl.txt\nthird_party/angle/extensions/EGL_ANGLE_device_metal.txt\nthird_party/angle/extensions/EGL_ANGLE_device_vulkan.txt\nthird_party/angle/extensions/EGL_ANGLE_direct3d_display.txt\nthird_party/angle/extensions/EGL_ANGLE_direct_composition.txt\nthird_party/angle/extensions/EGL_ANGLE_display_power_preference.txt\nthird_party/angle/extensions/EGL_ANGLE_display_semaphore_share_group.txt\nthird_party/angle/extensions/EGL_ANGLE_display_texture_share_group.txt\nthird_party/angle/extensions/EGL_ANGLE_external_context_and_surface.txt\nthird_party/angle/extensions/EGL_ANGLE_feature_control.txt\nthird_party/angle/extensions/EGL_ANGLE_global_fence_sync.txt\nthird_party/angle/extensions/EGL_ANGLE_iosurface_client_buffer.txt\nthird_party/angle/extensions/EGL_ANGLE_keyed_mutex.txt\nthird_party/angle/extensions/EGL_ANGLE_memory_usage_report.txt\nthird_party/angle/extensions/EGL_ANGLE_metal_commands_scheduled_sync.txt\nthird_party/angle/extensions/EGL_ANGLE_metal_texture_client_buffer.txt\nthird_party/angle/extensions/EGL_ANGLE_no_error.txt\nthird_party/angle/extensions/EGL_ANGLE_platform_angle_d3d_luid.txt\nthird_party/angle/extensions/EGL_ANGLE_platform_angle_device_id.txt\nthird_party/angle/extensions/EGL_ANGLE_power_preference.txt\nthird_party/angle/extensions/EGL_ANGLE_prepare_swap_buffers.txt\nthird_party/angle/extensions/EGL_ANGLE_program_cache_control.txt\nthird_party/angle/extensions/EGL_ANGLE_robust_resource_initialization.txt\nthird_party/angle/extensions/EGL_ANGLE_software_display.txt\nthird_party/angle/extensions/EGL_ANGLE_stream_producer_d3d_texture.txt\nthird_party/angle/extensions/EGL_ANGLE_sync_control_rate.txt\nthird_party/angle/extensions/EGL_ANGLE_vulkan_image.txt\nthird_party/angle/extensions/EGL_ANGLE_wait_until_work_scheduled.txt\nthird_party/angle/extensions/EGL_ANGLE_webgpu_texture_client_buffer.txt\nthird_party/angle/extensions/EGL_ANGLE_window_fixed_size.txt\nthird_party/angle/extensions/EGL_CHROMIUM_create_context_bind_generates_resource.txt\nthird_party/angle/extensions/EGL_CHROMIUM_sync_control.txt\nthird_party/angle/extensions/EGL_EXT_device_query.txt\nthird_party/angle/gni/angle.gni\nthird_party/angle/include/CL/cl_platform.h\nthird_party/angle/include/GLSLANG/ShaderLang.h\nthird_party/angle/include/GLSLANG/ShaderVars.h\nthird_party/angle/include/platform/frontend_features.json\nthird_party/angle/include/platform/vk_features.json\nthird_party/angle/infra/specs/PRESUBMIT.py\nthird_party/angle/infra/specs/gn_isolate_map.pyl\nthird_party/angle/samples/torus_lighting/TorusBufferStorage.cpp\nthird_party/angle/samples/torus_lighting/TorusLightingES1.cpp\nthird_party/angle/samples/torus_lighting/TorusLightingES2.cpp\nthird_party/angle/samples/torus_lighting/torus.h\nthird_party/angle/scripts/bootstrap.py\nthird_party/angle/scripts/export_targets.py\nthird_party/angle/scripts/generate_android_bp.py\nthird_party/angle/scripts/process_angle_perf_results.py\nthird_party/angle/scripts/roll_chromium_deps.py\nthird_party/angle/scripts/trigger.py\nthird_party/angle/scripts/update_extension_data.py\nthird_party/angle/src/common/aligned_memory.cpp\nthird_party/angle/src/common/android_util.cpp\nthird_party/angle/src/common/android_util.h\nthird_party/angle/src/common/apple_platform_utils.mm\nthird_party/angle/src/common/frame_capture_binary_data.cpp\nthird_party/angle/src/common/linux/dma_buf_utils.h\nthird_party/angle/src/common/mathutil.h\nthird_party/angle/src/common/system_utils_posix.cpp\nthird_party/angle/src/common/tls.h\nthird_party/angle/src/common/unsafe_buffers.h\nthird_party/angle/src/compiler/preprocessor/preprocessor_lex_autogen.cpp\nthird_party/angle/src/compiler/translator/ExtensionBehavior.cpp\nthird_party/angle/src/compiler/translator/hlsl/OutputHLSL.cpp\nthird_party/angle/src/compiler/translator/hlsl/TextureFunctionHLSL.cpp\nthird_party/angle/src/compiler/translator/hlsl/blocklayoutHLSL.h\nthird_party/angle/src/compiler/translator/spirv/OutputSPIRV.cpp\nthird_party/angle/src/compiler/translator/wgsl/RewritePipelineVariables.cpp\nthird_party/angle/src/libANGLE/Context.cpp\nthird_party/angle/src/libANGLE/Display.cpp\nthird_party/angle/src/libANGLE/GLES1Renderer.cpp\nthird_party/angle/src/libANGLE/Observer.cpp\nthird_party/angle/src/libANGLE/Observer.h\nthird_party/angle/src/libANGLE/capture/FrameCapture.cpp\nthird_party/angle/src/libANGLE/gen_extensions.py\nthird_party/angle/src/libANGLE/renderer/d3d/IndexDataManager.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d11/Buffer11.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d11/Fence11.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d11/Renderer11.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d11/Renderer11.h\nthird_party/angle/src/libANGLE/renderer/d3d/d3d11/SwapChain11.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d11/formatutils11.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d11/renderer11_utils.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d9/Renderer9.cpp\nthird_party/angle/src/libANGLE/renderer/d3d/d3d9/renderer9_utils.cpp\nthird_party/angle/src/libANGLE/renderer/gen_dxgi_support_tables.py\nthird_party/angle/src/libANGLE/renderer/gl/renderergl_utils.cpp\nthird_party/angle/src/libANGLE/renderer/renderer_utils.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/FramebufferVk.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/ImageVk.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/PersistentCommandPool.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/ProgramExecutableVk.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/ShaderVk.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/VkImageImageSiblingVk.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/android/HardwareBufferImageSiblingVkAndroid.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/linux/DmaBufImageSiblingVkLinux.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/ffx_a.h\nthird_party/angle/src/libANGLE/renderer/vulkan/vk_cache_utils.h\nthird_party/angle/src/libANGLE/renderer/vulkan/vk_format_utils.h\nthird_party/angle/src/libANGLE/renderer/vulkan/vk_helpers.cpp\nthird_party/angle/src/libANGLE/renderer/vulkan/vk_renderer.cpp\nthird_party/angle/src/libANGLE/renderer/wgpu/gen_wgpu_format_table.py\nthird_party/angle/src/libANGLE/validationEGL.cpp\nthird_party/angle/src/libANGLE/validationES.cpp\nthird_party/angle/src/libGLESv2/egl_stubs.cpp\nthird_party/angle/src/libGLESv2/global_state.cpp\nthird_party/angle/src/program_serialize_data_version.py\nthird_party/angle/src/tests/BUILD.gn\nthird_party/angle/src/tests/egl_tests/EGLContextSharingTest.cpp\nthird_party/angle/src/tests/egl_tests/EGLIOSurfaceClientBufferTest.cpp\nthird_party/angle/src/tests/egl_tests/EGLSurfaceTest.cpp\nthird_party/angle/src/tests/gl_tests/BufferDataTest.cpp\nthird_party/angle/src/tests/gl_tests/FramebufferTest.cpp\nthird_party/angle/src/tests/gl_tests/GLSLTest.cpp\nthird_party/angle/src/tests/gl_tests/ImageTest.cpp\nthird_party/angle/src/tests/gl_tests/MipmapTest.cpp\nthird_party/angle/src/tests/gl_tests/OcclusionQueriesTest.cpp\nthird_party/angle/src/tests/gl_tests/ProgramPipelineTest.cpp\nthird_party/angle/src/tests/gl_tests/RobustResourceInitTest.cpp\nthird_party/angle/src/tests/gl_tests/SRGBTextureTest.cpp\nthird_party/angle/src/tests/gl_tests/TextureTest.cpp\nthird_party/angle/src/tests/gl_tests/UniformBufferTest.cpp\nthird_party/angle/src/tests/gl_tests/VulkanPerformanceCounterTest.cpp\nthird_party/angle/src/tests/gl_tests/gles1/BootAnimationTest.cpp\nthird_party/angle/src/tests/perf_tests/ANGLEPerfTest.h\nthird_party/angle/src/tests/perf_tests/DrawCallPerf.cpp\nthird_party/angle/src/tests/perf_tests/TracePerfTest.cpp\nthird_party/angle/src/tests/restricted_traces/gen_restricted_traces.py\nthird_party/angle/src/tests/restricted_traces/sync_restricted_traces_to_cipd.py\nthird_party/angle/src/tests/run_perf_tests.py\nthird_party/angle/src/tests/test_utils/runner/TestSuite.cpp\nthird_party/angle/src/tests/test_utils/runner/android/java/AndroidManifest.xml.jinja2\nthird_party/angle/src/tests/test_utils/runner/android/java/StandaloneBenchmarkAndroidManifest.xml.jinja2\nthird_party/angle/src/third_party/volk/volk.h\nthird_party/angle/third_party/BUILD.gn\nthird_party/angle/third_party/glmark2/src/src/native-state-dispmanx.cpp\nthird_party/angle/third_party/glmark2/src/src/native-state-dispmanx.h\nthird_party/angle/third_party/glmark2/src/src/native-state-wayland.cpp\nthird_party/angle/third_party/glmark2/src/src/native-state-wayland.h\nthird_party/angle/third_party/libjpeg.gni\nthird_party/angle/third_party/rapidjson/src/bin/data/readme.txt\nthird_party/angle/third_party/rapidjson/src/include/rapidjson/document.h\nthird_party/angle/third_party/rapidjson/src/test/unittest/valuetest.cpp\nthird_party/angle/unsafe_buffers_paths.txt\nthird_party/angle/util/android/AndroidWindow.cpp\nthird_party/angle/util/capture/frame_capture_test_utils.cpp\nthird_party/angle/util/windows/third_party/StackWalker/src/StackWalker.cpp\nthird_party/anonymous_tokens/src/anonymous_tokens/cpp/crypto/crypto_utils.cc\nthird_party/anonymous_tokens/src/anonymous_tokens/cpp/privacy_pass/token_encodings_test.cc\nthird_party/anonymous_tokens/src/anonymous_tokens/cpp/shared/proto_utils.h\nthird_party/axe-core/axe.js\nthird_party/axe-core/axe.min.js\nthird_party/blink/PRESUBMIT.py\nthird_party/blink/common/PRESUBMIT.py\nthird_party/blink/common/features.cc\nthird_party/blink/common/loader/record_load_histograms.cc\nthird_party/blink/common/origin_trials/trial_token.cc\nthird_party/blink/common/origin_trials/trial_token_validator_unittest.cc\nthird_party/blink/common/page_state/page_state_serialization.cc\nthird_party/blink/common/page_state/page_state_serialization_unittest.cc\nthird_party/blink/common/shared_storage/module_script_downloader.cc\nthird_party/blink/common/webid/federated_auth_request_mojom_traits_unittest.cc\nthird_party/blink/public/common/custom_handlers/protocol_handler_utils.h\nthird_party/blink/public/common/frame/delegated_capability_request_token.h\nthird_party/blink/public/common/frame/user_activation_state.h\nthird_party/blink/public/common/input/web_keyboard_event.h\nthird_party/blink/public/common/loader/throttling_url_loader.h\nthird_party/blink/public/common/origin_trials/trial_token.h\nthird_party/blink/public/common/storage_key/storage_key.h\nthird_party/blink/public/common/widget/visual_properties.h\nthird_party/blink/public/mojom/permissions_policy/PRESUBMIT.py\nthird_party/blink/public/mojom/scheduler/PRESUBMIT.py\nthird_party/blink/public/mojom/use_counter/metrics/PRESUBMIT.py\nthird_party/blink/public/platform/child_url_loader_factory_bundle.h\nthird_party/blink/public/platform/linux/web_sandbox_support.h\nthird_party/blink/public/platform/platform.h\nthird_party/blink/public/platform/web_audio_source_provider_impl.h\nthird_party/blink/public/platform/web_url_response.h\nthird_party/blink/public/strings/blink_strings.grd\nthird_party/blink/public/web/web_crypto_histograms.h\nthird_party/blink/public/web/web_node.h\nthird_party/blink/renderer/PRESUBMIT.py\nthird_party/blink/renderer/bindings/PRESUBMIT.py\nthird_party/blink/renderer/bindings/core/v8/generated_code_helper.cc\nthird_party/blink/renderer/bindings/core/v8/window_proxy.cc\nthird_party/blink/renderer/bindings/core/v8/window_proxy.h\nthird_party/blink/renderer/build/scripts/core/style/make_computed_style_base.py\nthird_party/blink/renderer/controller/memory_usage_monitor_posix.cc\nthird_party/blink/renderer/core/BUILD.gn\nthird_party/blink/renderer/core/animation/sampled_effect.cc\nthird_party/blink/renderer/core/clipboard/data_transfer.h\nthird_party/blink/renderer/core/css/css_computed_style_declaration.cc\nthird_party/blink/renderer/core/css/css_font_face_rule.idl\nthird_party/blink/renderer/core/css/css_global_rule_set.h\nthird_party/blink/renderer/core/css/css_identifier_value_mappings.h\nthird_party/blink/renderer/core/css/css_import_rule.idl\nthird_party/blink/renderer/core/css/css_math_expression_node_test.cc\nthird_party/blink/renderer/core/css/css_media_rule.idl\nthird_party/blink/renderer/core/css/css_page_rule.idl\nthird_party/blink/renderer/core/css/css_property_value_set.cc\nthird_party/blink/renderer/core/css/css_rule.idl\nthird_party/blink/renderer/core/css/css_selector.cc\nthird_party/blink/renderer/core/css/css_style_declaration.idl\nthird_party/blink/renderer/core/css/css_style_rule.idl\nthird_party/blink/renderer/core/css/css_style_sheet.idl\nthird_party/blink/renderer/core/css/css_value_test_helper.h\nthird_party/blink/renderer/core/css/cssom/paint_worklet_style_property_map_test.cc\nthird_party/blink/renderer/core/css/element_rule_collector_test.cc\nthird_party/blink/renderer/core/css/invalidation/pending_invalidations.h\nthird_party/blink/renderer/core/css/invalidation/rule_invalidation_data_visitor.cc\nthird_party/blink/renderer/core/css/invalidation/style_invalidator.h\nthird_party/blink/renderer/core/css/parser/css_selector_parser.cc\nthird_party/blink/renderer/core/css/parser/find_length_of_declaration_list-inl.h\nthird_party/blink/renderer/core/css/properties/computed_style_utils.cc\nthird_party/blink/renderer/core/css/properties/css_parsing_utils.cc\nthird_party/blink/renderer/core/css/properties/longhands/longhands_custom.cc\nthird_party/blink/renderer/core/css/remote_font_face_source.cc\nthird_party/blink/renderer/core/css/resolver/style_adjuster.cc\nthird_party/blink/renderer/core/css/rule_set_test.cc\nthird_party/blink/renderer/core/css/style_engine.cc\nthird_party/blink/renderer/core/css/style_engine_test.cc\nthird_party/blink/renderer/core/css/style_rule_import.cc\nthird_party/blink/renderer/core/css/style_sheet.idl\nthird_party/blink/renderer/core/css/style_sheet_list.idl\nthird_party/blink/renderer/core/dom/abort_controller.h\nthird_party/blink/renderer/core/dom/attr.idl\nthird_party/blink/renderer/core/dom/cdata_section.idl\nthird_party/blink/renderer/core/dom/child_node.idl\nthird_party/blink/renderer/core/dom/child_node_part.cc\nthird_party/blink/renderer/core/dom/class_collection.cc\nthird_party/blink/renderer/core/dom/class_collection.h\nthird_party/blink/renderer/core/dom/comment.idl\nthird_party/blink/renderer/core/dom/container_node.cc\nthird_party/blink/renderer/core/dom/document.h\nthird_party/blink/renderer/core/dom/dom_implementation.idl\nthird_party/blink/renderer/core/dom/element.cc\nthird_party/blink/renderer/core/dom/element.idl\nthird_party/blink/renderer/core/dom/events/event.cc\nthird_party/blink/renderer/core/dom/events/event.h\nthird_party/blink/renderer/core/dom/events/event.idl\nthird_party/blink/renderer/core/dom/events/event_listener.idl\nthird_party/blink/renderer/core/dom/events/event_target.cc\nthird_party/blink/renderer/core/dom/events/event_target.idl\nthird_party/blink/renderer/core/dom/events/registered_event_listener.cc\nthird_party/blink/renderer/core/dom/events/registered_event_listener.h\nthird_party/blink/renderer/core/dom/first_letter_pseudo_element.cc\nthird_party/blink/renderer/core/dom/first_letter_pseudo_element.h\nthird_party/blink/renderer/core/dom/named_node_map.idl\nthird_party/blink/renderer/core/dom/node.cc\nthird_party/blink/renderer/core/dom/node.idl\nthird_party/blink/renderer/core/dom/node_filter.idl\nthird_party/blink/renderer/core/dom/node_iterator.cc\nthird_party/blink/renderer/core/dom/node_iterator.h\nthird_party/blink/renderer/core/dom/node_iterator.idl\nthird_party/blink/renderer/core/dom/node_iterator_base.cc\nthird_party/blink/renderer/core/dom/node_iterator_base.h\nthird_party/blink/renderer/core/dom/node_list.idl\nthird_party/blink/renderer/core/dom/node_lists_node_data.h\nthird_party/blink/renderer/core/dom/observable.cc\nthird_party/blink/renderer/core/dom/observable.h\nthird_party/blink/renderer/core/dom/processing_instruction.idl\nthird_party/blink/renderer/core/dom/range.cc\nthird_party/blink/renderer/core/dom/range.idl\nthird_party/blink/renderer/core/dom/space_split_string.cc\nthird_party/blink/renderer/core/dom/transform_source.h\nthird_party/blink/renderer/core/dom/tree_walker.cc\nthird_party/blink/renderer/core/dom/tree_walker.h\nthird_party/blink/renderer/core/dom/tree_walker.idl\nthird_party/blink/renderer/core/editing/commands/delete_selection_command.cc\nthird_party/blink/renderer/core/editing/commands/editor_command.cc\nthird_party/blink/renderer/core/editing/commands/insert_text_command.cc\nthird_party/blink/renderer/core/editing/commands/smart_replace_icu.cc\nthird_party/blink/renderer/core/editing/commands/style_commands.cc\nthird_party/blink/renderer/core/editing/dom_selection.cc\nthird_party/blink/renderer/core/editing/editing_behavior.cc\nthird_party/blink/renderer/core/editing/editing_utilities.cc\nthird_party/blink/renderer/core/editing/editing_utilities_test.cc\nthird_party/blink/renderer/core/editing/finder/find_buffer.h\nthird_party/blink/renderer/core/editing/finder/find_buffer_test.cc\nthird_party/blink/renderer/core/editing/serializers/serialization.cc\nthird_party/blink/renderer/core/editing/spellcheck/cold_mode_spell_check_requester.h\nthird_party/blink/renderer/core/editing/spellcheck/hot_mode_spell_check_requester.h\nthird_party/blink/renderer/core/editing/spellcheck/idle_spell_check_controller.h\nthird_party/blink/renderer/core/editing/visible_units.cc\nthird_party/blink/renderer/core/editing/visible_units_line_test.cc\nthird_party/blink/renderer/core/events/before_unload_event.cc\nthird_party/blink/renderer/core/events/before_unload_event.h\nthird_party/blink/renderer/core/events/clipboard_event.cc\nthird_party/blink/renderer/core/events/clipboard_event.h\nthird_party/blink/renderer/core/events/input_event.cc\nthird_party/blink/renderer/core/events/keyboard_event.cc\nthird_party/blink/renderer/core/events/keyboard_event.h\nthird_party/blink/renderer/core/events/keyboard_event.idl\nthird_party/blink/renderer/core/events/mouse_event.cc\nthird_party/blink/renderer/core/events/mouse_event.h\nthird_party/blink/renderer/core/events/touch_event.cc\nthird_party/blink/renderer/core/events/touch_event_test.cc\nthird_party/blink/renderer/core/events/ui_event.cc\nthird_party/blink/renderer/core/events/ui_event.h\nthird_party/blink/renderer/core/events/ui_event_with_key_state.h\nthird_party/blink/renderer/core/events/web_input_event_conversion.cc\nthird_party/blink/renderer/core/events/wheel_event.cc\nthird_party/blink/renderer/core/events/wheel_event.h\nthird_party/blink/renderer/core/events/wheel_event.idl\nthird_party/blink/renderer/core/execution_context/execution_context.h\nthird_party/blink/renderer/core/execution_context/security_context.cc\nthird_party/blink/renderer/core/exported/web_plugin_container_impl.cc\nthird_party/blink/renderer/core/exported/web_searchable_form_data.cc\nthird_party/blink/renderer/core/fetch/fetch_manager.cc\nthird_party/blink/renderer/core/fetch/request.cc\nthird_party/blink/renderer/core/fetch/response.h\nthird_party/blink/renderer/core/fileapi/file_reader_client.h\nthird_party/blink/renderer/core/fragment_directive/text_fragment_anchor_metrics_test.cc\nthird_party/blink/renderer/core/fragment_directive/text_fragment_selector.h\nthird_party/blink/renderer/core/frame/csp/content_security_policy.cc\nthird_party/blink/renderer/core/frame/deprecation/PRESUBMIT.py\nthird_party/blink/renderer/core/frame/frame.h\nthird_party/blink/renderer/core/frame/frame_serializer.cc\nthird_party/blink/renderer/core/frame/local_dom_window.h\nthird_party/blink/renderer/core/frame/local_dom_window_test.cc\nthird_party/blink/renderer/core/frame/local_frame.cc\nthird_party/blink/renderer/core/frame/local_frame.h\nthird_party/blink/renderer/core/frame/local_frame_back_forward_cache_test.cc\nthird_party/blink/renderer/core/frame/local_frame_view.cc\nthird_party/blink/renderer/core/frame/local_frame_view.h\nthird_party/blink/renderer/core/frame/navigator.cc\nthird_party/blink/renderer/core/frame/settings.h\nthird_party/blink/renderer/core/frame/visual_viewport.h\nthird_party/blink/renderer/core/frame/web_frame_serializer_impl.cc\nthird_party/blink/renderer/core/frame/web_frame_test.cc\nthird_party/blink/renderer/core/frame/web_frame_widget_impl.cc\nthird_party/blink/renderer/core/frame/web_local_frame_impl.cc\nthird_party/blink/renderer/core/frame/web_remote_frame_impl.cc\nthird_party/blink/renderer/core/geolocation/geolocation.h\nthird_party/blink/renderer/core/html/anchor_element_metrics_test.cc\nthird_party/blink/renderer/core/html/custom/element_internals.idl\nthird_party/blink/renderer/core/html/custom/validity_state_flags.idl\nthird_party/blink/renderer/core/html/forms/base_text_input_type.cc\nthird_party/blink/renderer/core/html/forms/email_input_type.cc\nthird_party/blink/renderer/core/html/forms/html_button_element.idl\nthird_party/blink/renderer/core/html/forms/html_form_controls_collection.cc\nthird_party/blink/renderer/core/html/forms/html_form_controls_collection.idl\nthird_party/blink/renderer/core/html/forms/html_form_element.idl\nthird_party/blink/renderer/core/html/forms/html_form_mcp_tool_test.cc\nthird_party/blink/renderer/core/html/forms/html_input_element.idl\nthird_party/blink/renderer/core/html/forms/html_input_element_test.cc\nthird_party/blink/renderer/core/html/forms/html_label_element.idl\nthird_party/blink/renderer/core/html/forms/html_legend_element.idl\nthird_party/blink/renderer/core/html/forms/html_option_element.cc\nthird_party/blink/renderer/core/html/forms/html_option_element.idl\nthird_party/blink/renderer/core/html/forms/html_options_collection.idl\nthird_party/blink/renderer/core/html/forms/html_select_element.cc\nthird_party/blink/renderer/core/html/forms/html_select_element.idl\nthird_party/blink/renderer/core/html/forms/html_text_area_element.idl\nthird_party/blink/renderer/core/html/forms/select_type.cc\nthird_party/blink/renderer/core/html/forms/validity_state.cc\nthird_party/blink/renderer/core/html/forms/validity_state.h\nthird_party/blink/renderer/core/html/forms/validity_state.idl\nthird_party/blink/renderer/core/html/html_anchor_element.cc\nthird_party/blink/renderer/core/html/html_anchor_element.idl\nthird_party/blink/renderer/core/html/html_anchor_element_test.cc\nthird_party/blink/renderer/core/html/html_area_element.idl\nthird_party/blink/renderer/core/html/html_body_element.idl\nthird_party/blink/renderer/core/html/html_collection.cc\nthird_party/blink/renderer/core/html/html_collection.idl\nthird_party/blink/renderer/core/html/html_document.cc\nthird_party/blink/renderer/core/html/html_document.idl\nthird_party/blink/renderer/core/html/html_element.cc\nthird_party/blink/renderer/core/html/html_element.idl\nthird_party/blink/renderer/core/html/html_embed_element.idl\nthird_party/blink/renderer/core/html/html_frame_element.idl\nthird_party/blink/renderer/core/html/html_frame_set_element.idl\nthird_party/blink/renderer/core/html/html_iframe_element.cc\nthird_party/blink/renderer/core/html/html_iframe_element.idl\nthird_party/blink/renderer/core/html/html_image_element.idl\nthird_party/blink/renderer/core/html/html_link_element.cc\nthird_party/blink/renderer/core/html/html_link_element.idl\nthird_party/blink/renderer/core/html/html_map_element.idl\nthird_party/blink/renderer/core/html/html_object_element.idl\nthird_party/blink/renderer/core/html/html_pre_element.idl\nthird_party/blink/renderer/core/html/html_style_element.idl\nthird_party/blink/renderer/core/html/html_table_caption_element.idl\nthird_party/blink/renderer/core/html/html_table_cell_element.idl\nthird_party/blink/renderer/core/html/html_table_col_element.idl\nthird_party/blink/renderer/core/html/html_table_element.idl\nthird_party/blink/renderer/core/html/html_table_row_element.idl\nthird_party/blink/renderer/core/html/html_table_section_element.idl\nthird_party/blink/renderer/core/html/media/autoplay_policy.cc\nthird_party/blink/renderer/core/html/media/html_media_element.cc\nthird_party/blink/renderer/core/html/parser/html_document_parser.cc\nthird_party/blink/renderer/core/input/event_handler.cc\nthird_party/blink/renderer/core/input/event_handling_util.cc\nthird_party/blink/renderer/core/input/pointer_event_manager.cc\nthird_party/blink/renderer/core/inspector/console_message.h\nthird_party/blink/renderer/core/inspector/devtools_session.h\nthird_party/blink/renderer/core/intersection_observer/intersection_observer_controller.h\nthird_party/blink/renderer/core/layout/adjust_for_absolute_zoom.h\nthird_party/blink/renderer/core/layout/geometry/logical_offset.h\nthird_party/blink/renderer/core/layout/geometry/logical_rect.h\nthird_party/blink/renderer/core/layout/geometry/logical_size.h\nthird_party/blink/renderer/core/layout/geometry/physical_rect.h\nthird_party/blink/renderer/core/layout/hit_test_cache.h\nthird_party/blink/renderer/core/layout/hit_test_location.h\nthird_party/blink/renderer/core/layout/inline/inline_items_builder.cc\nthird_party/blink/renderer/core/layout/inline/inline_items_builder.h\nthird_party/blink/renderer/core/layout/inline/offset_mapping.h\nthird_party/blink/renderer/core/layout/inline/offset_mapping_builder.h\nthird_party/blink/renderer/core/layout/inline/score_line_breaker.cc\nthird_party/blink/renderer/core/layout/inline/score_line_breaker.h\nthird_party/blink/renderer/core/layout/layout_block.cc\nthird_party/blink/renderer/core/layout/layout_block.h\nthird_party/blink/renderer/core/layout/layout_block_flow.h\nthird_party/blink/renderer/core/layout/layout_box.cc\nthird_party/blink/renderer/core/layout/layout_box_hot.cc\nthird_party/blink/renderer/core/layout/layout_box_model_object.cc\nthird_party/blink/renderer/core/layout/layout_box_model_object.h\nthird_party/blink/renderer/core/layout/layout_image.cc\nthird_party/blink/renderer/core/layout/layout_image.h\nthird_party/blink/renderer/core/layout/layout_image_resource.cc\nthird_party/blink/renderer/core/layout/layout_image_resource.h\nthird_party/blink/renderer/core/layout/layout_image_resource_style_image.cc\nthird_party/blink/renderer/core/layout/layout_image_resource_style_image.h\nthird_party/blink/renderer/core/layout/layout_object.h\nthird_party/blink/renderer/core/layout/layout_text.cc\nthird_party/blink/renderer/core/layout/layout_theme_android.cc\nthird_party/blink/renderer/core/layout/layout_theme_default.h\nthird_party/blink/renderer/core/layout/layout_view.cc\nthird_party/blink/renderer/core/layout/layout_view.h\nthird_party/blink/renderer/core/layout/layout_view_test.cc\nthird_party/blink/renderer/core/layout/length_utils.cc\nthird_party/blink/renderer/core/layout/map_coordinates_test.cc\nthird_party/blink/renderer/core/layout/physical_box_fragment.cc\nthird_party/blink/renderer/core/layout/scroll_anchor_test.cc\nthird_party/blink/renderer/core/layout/svg/layout_svg_path.cc\nthird_party/blink/renderer/core/layout/svg/layout_svg_shape.cc\nthird_party/blink/renderer/core/layout/table/layout_table_section_test.cc\nthird_party/blink/renderer/core/loader/frame_loader.cc\nthird_party/blink/renderer/core/loader/http_equiv.cc\nthird_party/blink/renderer/core/loader/image_loader.h\nthird_party/blink/renderer/core/loader/interactive_detector.h\nthird_party/blink/renderer/core/loader/mixed_content_checker.cc\nthird_party/blink/renderer/core/loader/mixed_content_checker_test.cc\nthird_party/blink/renderer/core/loader/resource/css_style_sheet_resource.cc\nthird_party/blink/renderer/core/loader/resource/css_style_sheet_resource.h\nthird_party/blink/renderer/core/loader/resource/image_resource.cc\nthird_party/blink/renderer/core/loader/resource/image_resource.h\nthird_party/blink/renderer/core/loader/resource/image_resource_content.h\nthird_party/blink/renderer/core/loader/resource/image_resource_observer.h\nthird_party/blink/renderer/core/loader/resource/multipart_image_resource_parser.h\nthird_party/blink/renderer/core/loader/resource/script_resource.cc\nthird_party/blink/renderer/core/loader/resource/script_resource.h\nthird_party/blink/renderer/core/loader/resource/xsl_style_sheet_resource.cc\nthird_party/blink/renderer/core/loader/resource/xsl_style_sheet_resource.h\nthird_party/blink/renderer/core/loader/subresource_filter.cc\nthird_party/blink/renderer/core/loader/web_bundle/script_web_bundle.cc\nthird_party/blink/renderer/core/page/drag_controller_test.cc\nthird_party/blink/renderer/core/page/print_context_test.cc\nthird_party/blink/renderer/core/page/scrolling/element_fragment_anchor_test.cc\nthird_party/blink/renderer/core/page/validation_message_client_impl.cc\nthird_party/blink/renderer/core/paint/box_fragment_painter_test.cc\nthird_party/blink/renderer/core/paint/box_painter_base.h\nthird_party/blink/renderer/core/paint/compositing/compositing_reason_finder.cc\nthird_party/blink/renderer/core/paint/highlight_overlay.h\nthird_party/blink/renderer/core/paint/paint_layer.cc\nthird_party/blink/renderer/core/paint/paint_layer.h\nthird_party/blink/renderer/core/paint/paint_layer_clipper.cc\nthird_party/blink/renderer/core/paint/paint_layer_clipper.h\nthird_party/blink/renderer/core/paint/paint_layer_scrollable_area.cc\nthird_party/blink/renderer/core/paint/paint_layer_scrollable_area.h\nthird_party/blink/renderer/core/paint/paint_layer_stacking_node.cc\nthird_party/blink/renderer/core/paint/paint_layer_stacking_node.h\nthird_party/blink/renderer/core/paint/paint_property_tree_builder.cc\nthird_party/blink/renderer/core/paint/text_decoration_info.cc\nthird_party/blink/renderer/core/paint/theme_painter_default.cc\nthird_party/blink/renderer/core/paint/theme_painter_default.h\nthird_party/blink/renderer/core/paint/timing/first_meaningful_paint_detector.cc\nthird_party/blink/renderer/core/paint/timing/first_meaningful_paint_detector.h\nthird_party/blink/renderer/core/paint/timing/image_paint_timing_detector.h\nthird_party/blink/renderer/core/paint/timing/image_paint_timing_detector_test.cc\nthird_party/blink/renderer/core/permissions_policy/permissions_policy_parser.cc\nthird_party/blink/renderer/core/scheduler/scheduler.idl\nthird_party/blink/renderer/core/script/detect_javascript_frameworks.cc\nthird_party/blink/renderer/core/script/document_write_intervention.cc\nthird_party/blink/renderer/core/script/document_write_intervention.h\nthird_party/blink/renderer/core/scroll/scroll_alignment.cc\nthird_party/blink/renderer/core/scroll/scroll_alignment.h\nthird_party/blink/renderer/core/scroll/scrollbar_theme_fluent.h\nthird_party/blink/renderer/core/streams/readable_stream_transferring_optimizer.h\nthird_party/blink/renderer/core/streams/transferable_streams.cc\nthird_party/blink/renderer/core/streams/writable_stream_transferring_optimizer.h\nthird_party/blink/renderer/core/style/computed_style.h\nthird_party/blink/renderer/core/style/computed_style_constants.h\nthird_party/blink/renderer/core/style/content_data.h\nthird_party/blink/renderer/core/style/counter_directives.h\nthird_party/blink/renderer/core/style/cursor_data.h\nthird_party/blink/renderer/core/style/fill_layer.h\nthird_party/blink/renderer/core/style/shadow_data.h\nthird_party/blink/renderer/core/style/style_reflection.h\nthird_party/blink/renderer/core/svg/graphics/filters/svg_filter_builder.h\nthird_party/blink/renderer/core/svg/svg_angle.idl\nthird_party/blink/renderer/core/svg/svg_animated_number.idl\nthird_party/blink/renderer/core/svg/svg_circle_element.idl\nthird_party/blink/renderer/core/svg/svg_clip_path_element.idl\nthird_party/blink/renderer/core/svg/svg_document_resource_tracker.cc\nthird_party/blink/renderer/core/svg/svg_document_resource_tracker.h\nthird_party/blink/renderer/core/svg/svg_element.idl\nthird_party/blink/renderer/core/svg/svg_filter_element.cc\nthird_party/blink/renderer/core/svg/svg_filter_element.h\nthird_party/blink/renderer/core/svg/svg_filter_element.idl\nthird_party/blink/renderer/core/svg/svg_filter_primitive_standard_attributes.idl\nthird_party/blink/renderer/core/svg/svg_fit_to_view_box.idl\nthird_party/blink/renderer/core/svg/svg_length.idl\nthird_party/blink/renderer/core/svg/svg_length_list.idl\nthird_party/blink/renderer/core/svg/svg_matrix.idl\nthird_party/blink/renderer/core/svg/svg_number.idl\nthird_party/blink/renderer/core/svg/svg_number_list.idl\nthird_party/blink/renderer/core/svg/svg_path_element.idl\nthird_party/blink/renderer/core/svg/svg_point.idl\nthird_party/blink/renderer/core/svg/svg_rect.idl\nthird_party/blink/renderer/core/svg/svg_rect_element.idl\nthird_party/blink/renderer/core/svg/svg_resource_document_content.cc\nthird_party/blink/renderer/core/svg/svg_resource_document_content.h\nthird_party/blink/renderer/core/svg/svg_style_element.idl\nthird_party/blink/renderer/core/svg/svg_svg_element.idl\nthird_party/blink/renderer/core/svg/svg_tests.idl\nthird_party/blink/renderer/core/svg/svg_text_path_element.cc\nthird_party/blink/renderer/core/svg/svg_transform_list.idl\nthird_party/blink/renderer/core/svg/svg_uri_reference.idl\nthird_party/blink/renderer/core/svg/svg_zoom_and_pan.idl\nthird_party/blink/renderer/core/svg/unsafe_svg_attribute_sanitization_test.cc\nthird_party/blink/renderer/core/testing/data/hit_test.html\nthird_party/blink/renderer/core/timing/memory_info.idl\nthird_party/blink/renderer/core/timing/performance.idl\nthird_party/blink/renderer/core/timing/performance_entry.h\nthird_party/blink/renderer/core/timing/performance_resource_timing.h\nthird_party/blink/renderer/core/timing/responsiveness_metrics.cc\nthird_party/blink/renderer/core/timing/third_party_script_detector.cc\nthird_party/blink/renderer/core/timing/window_performance.cc\nthird_party/blink/renderer/core/timing/window_performance.h\nthird_party/blink/renderer/core/timing/window_performance_test.cc\nthird_party/blink/renderer/core/trustedtypes/generate_eventhandler_names.py\nthird_party/blink/renderer/core/view_transition/view_transition_content_element.h\nthird_party/blink/renderer/core/web_test/web_test_web_frame_widget_impl.h\nthird_party/blink/renderer/core/workers/shared_worker_content_settings_proxy.cc\nthird_party/blink/renderer/core/xml/DocumentXMLTreeViewer.js\nthird_party/blink/renderer/core/xml/xpath_expression.idl\nthird_party/blink/renderer/core/xml/xpath_ns_resolver.idl\nthird_party/blink/renderer/core/xml/xslt_processor.cc\nthird_party/blink/renderer/core/xml/xslt_processor.idl\nthird_party/blink/renderer/core/xmlhttprequest/xml_http_request.cc\nthird_party/blink/renderer/modules/accessibility/ax_node_object.cc\nthird_party/blink/renderer/modules/accessibility/ax_object_cache_impl.cc\nthird_party/blink/renderer/modules/accessibility/ax_object_cache_impl.h\nthird_party/blink/renderer/modules/accessibility/testing/internals_accessibility.h\nthird_party/blink/renderer/modules/ai/feedback_helpers.cc\nthird_party/blink/renderer/modules/bluetooth/bluetooth_error.cc\nthird_party/blink/renderer/modules/clipboard/clipboard.idl\nthird_party/blink/renderer/modules/content_extraction/ai_page_content_agent_unittest.cc\nthird_party/blink/renderer/modules/credentialmanagement/authentication_credentials_container.cc\nthird_party/blink/renderer/modules/file_system_access/file_system_cloud_identifier.idl\nthird_party/blink/renderer/modules/filesystem/dom_file_system_base_test.cc\nthird_party/blink/renderer/modules/font_access/font_metadata.h\nthird_party/blink/renderer/modules/hid/hid.cc\nthird_party/blink/renderer/modules/indexeddb/idb_value_wrapping.cc\nthird_party/blink/renderer/modules/manifest/fuzzer_seed_corpus/play_app_url_manifest.json\nthird_party/blink/renderer/modules/media_capabilities/media_capabilities.cc\nthird_party/blink/renderer/modules/mediarecorder/media_recorder.cc\nthird_party/blink/renderer/modules/mediarecorder/video_track_recorder.cc\nthird_party/blink/renderer/modules/mediastream/media_devices_test.cc\nthird_party/blink/renderer/modules/mediastream/media_stream_utils.cc\nthird_party/blink/renderer/modules/mediastream/media_stream_video_renderer_sink.h\nthird_party/blink/renderer/modules/payments/android_pay_method_data.idl\nthird_party/blink/renderer/modules/payments/on_payment_response_test.cc\nthird_party/blink/renderer/modules/payments/payment_request.cc\nthird_party/blink/renderer/modules/payments/payment_request_optional_total_test.cc\nthird_party/blink/renderer/modules/payments/payment_request_test.cc\nthird_party/blink/renderer/modules/payments/payment_response_test.cc\nthird_party/blink/renderer/modules/peerconnection/peer_connection_dependency_factory.cc\nthird_party/blink/renderer/modules/presentation/presentation_connection_available_event.h\nthird_party/blink/renderer/modules/service_worker/service_worker_content_settings_proxy.cc\nthird_party/blink/renderer/modules/service_worker/service_worker_event_queue.cc\nthird_party/blink/renderer/modules/service_worker/service_worker_global_scope.cc\nthird_party/blink/renderer/modules/smart_card/smart_card_error.cc\nthird_party/blink/renderer/modules/storage/cached_storage_area.h\nthird_party/blink/renderer/modules/storage/storage_area.cc\nthird_party/blink/renderer/modules/vibration/navigator_vibration.idl\nthird_party/blink/renderer/modules/vibration/vibration_controller.cc\nthird_party/blink/renderer/modules/webaudio/audio_context.cc\nthird_party/blink/renderer/modules/webaudio/audio_context.h\nthird_party/blink/renderer/modules/webaudio/audio_handler.h\nthird_party/blink/renderer/modules/webaudio/audio_node.h\nthird_party/blink/renderer/modules/webaudio/media_stream_audio_destination_handler.h\nthird_party/blink/renderer/modules/webaudio/media_stream_audio_destination_node.h\nthird_party/blink/renderer/modules/webaudio/media_stream_audio_source_handler.h\nthird_party/blink/renderer/modules/webaudio/media_stream_audio_source_node.h\nthird_party/blink/renderer/modules/webaudio/realtime_audio_destination_handler.h\nthird_party/blink/renderer/modules/webgl/webgl_unowned_texture.h\nthird_party/blink/renderer/modules/webgpu/external_texture_helper.cc\nthird_party/blink/renderer/modules/webgpu/gpu_render_pipeline.cc\nthird_party/blink/renderer/modules/websockets/websocket_channel_impl.cc\nthird_party/blink/renderer/modules/websockets/websocket_stream.h\nthird_party/blink/renderer/modules/webtransport/web_transport_test.cc\nthird_party/blink/renderer/modules/webusb/usb.cc\nthird_party/blink/renderer/modules/xr/xr_session.h\nthird_party/blink/renderer/modules/xr/xr_system.cc\nthird_party/blink/renderer/platform/PRESUBMIT.py\nthird_party/blink/renderer/platform/animation/timing_function.h\nthird_party/blink/renderer/platform/audio/audio_destination.h\nthird_party/blink/renderer/platform/bindings/bigint.cc\nthird_party/blink/renderer/platform/bindings/script_regexp.cc\nthird_party/blink/renderer/platform/exported/web_crypto_algorithm.cc\nthird_party/blink/renderer/platform/fonts/bitmap_glyphs_block_list.cc\nthird_party/blink/renderer/platform/fonts/font_custom_platform_data.cc\nthird_party/blink/renderer/platform/fonts/font_description.cc\nthird_party/blink/renderer/platform/fonts/mac/font_cache_mac.mm\nthird_party/blink/renderer/platform/fonts/opentype/open_type_baseline_metrics.h\nthird_party/blink/renderer/platform/fonts/opentype/open_type_caps_support_mpl.cc\nthird_party/blink/renderer/platform/fonts/opentype/open_type_math_stretch_data.h\nthird_party/blink/renderer/platform/fonts/opentype/open_type_math_support.cc\nthird_party/blink/renderer/platform/fonts/opentype/open_type_math_support.h\nthird_party/blink/renderer/platform/fonts/opentype/open_type_types.h\nthird_party/blink/renderer/platform/fonts/opentype/open_type_vertical_data.cc\nthird_party/blink/renderer/platform/fonts/opentype/open_type_vertical_data.h\nthird_party/blink/renderer/platform/fonts/opentype/open_type_vertical_data_test.cc\nthird_party/blink/renderer/platform/fonts/script_run_iterator.cc\nthird_party/blink/renderer/platform/fonts/shaping/han_kerning.cc\nthird_party/blink/renderer/platform/fonts/shaping/han_kerning.h\nthird_party/blink/renderer/platform/fonts/shaping/harfbuzz_shaper.cc\nthird_party/blink/renderer/platform/fonts/shaping/shape_result.cc\nthird_party/blink/renderer/platform/fonts/shaping/shape_result_view.cc\nthird_party/blink/renderer/platform/fonts/simple_font_data.cc\nthird_party/blink/renderer/platform/fonts/simple_font_data.h\nthird_party/blink/renderer/platform/fonts/skia/skia_text_metrics.cc\nthird_party/blink/renderer/platform/fonts/skia/skia_text_metrics.h\nthird_party/blink/renderer/platform/fonts/vdmx_parser.cc\nthird_party/blink/renderer/platform/fonts/web_font_decoder.cc\nthird_party/blink/renderer/platform/fonts/win/font_cache_skia_win.cc\nthird_party/blink/renderer/platform/fonts/win/font_fallback_win.cc\nthird_party/blink/renderer/platform/geometry/physical_offset.h\nthird_party/blink/renderer/platform/geometry/physical_size.h\nthird_party/blink/renderer/platform/graphics/bitmap_image.cc\nthird_party/blink/renderer/platform/graphics/bitmap_image.h\nthird_party/blink/renderer/platform/graphics/filters/distant_light_source.h\nthird_party/blink/renderer/platform/graphics/filters/fe_tile.cc\nthird_party/blink/renderer/platform/graphics/filters/filter_effect.cc\nthird_party/blink/renderer/platform/graphics/filters/filter_effect.h\nthird_party/blink/renderer/platform/graphics/filters/light_source.h\nthird_party/blink/renderer/platform/graphics/filters/point_light_source.h\nthird_party/blink/renderer/platform/graphics/filters/source_graphic.h\nthird_party/blink/renderer/platform/graphics/filters/spot_light_source.cc\nthird_party/blink/renderer/platform/graphics/filters/spot_light_source.h\nthird_party/blink/renderer/platform/graphics/gpu/webgl_image_conversion.cc\nthird_party/blink/renderer/platform/graphics/image.cc\nthird_party/blink/renderer/platform/graphics/image.h\nthird_party/blink/renderer/platform/graphics/paint/geometry_mapper.cc\nthird_party/blink/renderer/platform/graphics/paint/geometry_mapper_transform_cache.h\nthird_party/blink/renderer/platform/graphics/paint/region_capture_data.h\nthird_party/blink/renderer/platform/heap/collection_support/heap_linked_stack.h\nthird_party/blink/renderer/platform/image-decoders/bmp/bmp_image_decoder.cc\nthird_party/blink/renderer/platform/image-decoders/bmp/bmp_image_decoder_test.cc\nthird_party/blink/renderer/platform/image-decoders/jpeg/jpeg_image_decoder.cc\nthird_party/blink/renderer/platform/image-decoders/webp/webp_image_decoder.cc\nthird_party/blink/renderer/platform/instrumentation/use_counter.h\nthird_party/blink/renderer/platform/loader/fetch/client_hints_preferences_test.cc\nthird_party/blink/renderer/platform/loader/fetch/console_logger.h\nthird_party/blink/renderer/platform/loader/fetch/fetch_utils.h\nthird_party/blink/renderer/platform/loader/fetch/raw_resource.h\nthird_party/blink/renderer/platform/loader/fetch/resource.cc\nthird_party/blink/renderer/platform/loader/fetch/resource.h\nthird_party/blink/renderer/platform/loader/fetch/resource_error.cc\nthird_party/blink/renderer/platform/loader/fetch/resource_load_scheduler.cc\nthird_party/blink/renderer/platform/loader/fetch/resource_loader.cc\nthird_party/blink/renderer/platform/loader/fetch/resource_request.h\nthird_party/blink/renderer/platform/loader/fetch/resource_response.h\nthird_party/blink/renderer/platform/loader/fetch/url_loader/background_url_loader.h\nthird_party/blink/renderer/platform/loader/fetch/url_loader/navigation_body_loader_unittest.cc\nthird_party/blink/renderer/platform/loader/fetch/url_loader/resource_request_sender_unittest.cc\nthird_party/blink/renderer/platform/mojo/kurl_security_origin_test.cc\nthird_party/blink/renderer/platform/network/form_data_encoder.cc\nthird_party/blink/renderer/platform/network/http_parsers.cc\nthird_party/blink/renderer/platform/network/http_parsers_test.cc\nthird_party/blink/renderer/platform/network/network_state_notifier.cc\nthird_party/blink/renderer/platform/network/network_utils_test.cc\nthird_party/blink/renderer/platform/network/parsed_content_header_field_parameters.h\nthird_party/blink/renderer/platform/peerconnection/rtc_video_encoder.cc\nthird_party/blink/renderer/platform/scheduler/main_thread/main_thread_task_queue.h\nthird_party/blink/renderer/platform/scheduler/main_thread/memory_purge_manager.cc\nthird_party/blink/renderer/platform/scheduler/main_thread/memory_purge_manager.h\nthird_party/blink/renderer/platform/scheduler/public/rail_mode_observer.h\nthird_party/blink/renderer/platform/testing/image_decode_to_nia.cc\nthird_party/blink/renderer/platform/text/hyphenation/hyphenation_minikin.cc\nthird_party/blink/renderer/platform/text/icu_error.cc\nthird_party/blink/renderer/platform/text/layout_locale_test.cc\nthird_party/blink/renderer/platform/text/locale_win.cc\nthird_party/blink/renderer/platform/text/locale_win_test.cc\nthird_party/blink/renderer/platform/text/unicode_range.cc\nthird_party/blink/renderer/platform/text/unicode_range.h\nthird_party/blink/renderer/platform/transforms/matrix_transform_operation.h\nthird_party/blink/renderer/platform/transforms/rotate_transform_operation.h\nthird_party/blink/renderer/platform/transforms/scale_transform_operation.h\nthird_party/blink/renderer/platform/transforms/skew_transform_operation.h\nthird_party/blink/renderer/platform/transforms/transform_operation.h\nthird_party/blink/renderer/platform/transforms/transform_operations.h\nthird_party/blink/renderer/platform/transforms/translate_transform_operation.h\nthird_party/blink/renderer/platform/weborigin/kurl.cc\nthird_party/blink/renderer/platform/weborigin/kurl_test.cc\nthird_party/blink/renderer/platform/weborigin/security_origin.cc\nthird_party/blink/renderer/platform/weborigin/security_origin.h\nthird_party/blink/renderer/platform/weborigin/security_origin_fuzzer.cc\nthird_party/blink/renderer/platform/weborigin/security_origin_test.cc\nthird_party/blink/renderer/platform/weborigin/security_policy_test.cc\nthird_party/blink/renderer/platform/widget/compositing/layer_tree_view.cc\nthird_party/blink/renderer/platform/widget/input/input_handler_proxy.cc\nthird_party/blink/renderer/platform/widget/widget_base.cc\nthird_party/blink/renderer/platform/wtf/assertions.h\nthird_party/blink/renderer/platform/wtf/date_math.cc\nthird_party/blink/renderer/platform/wtf/date_math.h\nthird_party/blink/renderer/platform/wtf/deque.h\nthird_party/blink/renderer/platform/wtf/dynamic_annotations.h\nthird_party/blink/renderer/platform/wtf/hash_table.h\nthird_party/blink/renderer/platform/wtf/linked_hash_set.h\nthird_party/blink/renderer/platform/wtf/stack_util.cc\nthird_party/blink/renderer/platform/wtf/text/string_impl.h\nthird_party/blink/renderer/platform/wtf/text/wtf_string_test.cc\nthird_party/blink/renderer/platform/wtf/thread_specific.h\nthird_party/blink/renderer/platform/wtf/vector.h\nthird_party/blink/renderer/platform/wtf/vector_test.cc\nthird_party/boringssl/src/.bcr/metadata.template.json\nthird_party/boringssl/src/CMakeLists.txt\nthird_party/boringssl/src/crypto/cpu_aarch64_openbsd.cc\nthird_party/boringssl/src/crypto/fipsmodule/aes/internal.h\nthird_party/boringssl/src/crypto/internal.h\nthird_party/boringssl/src/crypto/pkcs7/pkcs7_test.cc\nthird_party/boringssl/src/crypto/pkcs8/pkcs8_x509.cc\nthird_party/boringssl/src/crypto/rand/windows.cc\nthird_party/boringssl/src/crypto/test/abi_test.h\nthird_party/boringssl/src/crypto/test/file_util.cc\nthird_party/boringssl/src/crypto/thread_win.cc\nthird_party/boringssl/src/include/openssl/ssl.h\nthird_party/boringssl/src/include/openssl/target.h\nthird_party/boringssl/src/include/openssl/x509.h\nthird_party/boringssl/src/pki/parse_certificate.h\nthird_party/boringssl/src/pki/signature_algorithm.cc\nthird_party/boringssl/src/pki/string_util_unittest.cc\nthird_party/boringssl/src/pki/testdata/parse_certificate_unittest/v3_certificate_template.txt\nthird_party/boringssl/src/pki/trust_store.h\nthird_party/boringssl/src/pki/verify_certificate_chain.cc\nthird_party/boringssl/src/ssl/ssl_test.cc\nthird_party/boringssl/src/third_party/benchmark/src/cycleclock.h\nthird_party/boringssl/src/third_party/googletest/docs/_layouts/default.html\nthird_party/boringssl/src/third_party/googletest/googlemock/src/gmock_main.cc\nthird_party/boringssl/src/third_party/googletest/googletest/include/gtest/gtest_pred_impl.h\nthird_party/boringssl/src/third_party/googletest/googletest/include/gtest/internal/gtest-port.h\nthird_party/boringssl/src/third_party/googletest/googletest/src/gtest-death-test.cc\nthird_party/boringssl/src/third_party/googletest/googletest/src/gtest.cc\nthird_party/boringssl/src/third_party/googletest/googletest/test/googletest-death-test-test.cc\nthird_party/boringssl/src/third_party/googletest/googletest/test/gtest_list_output_unittest_.cc\nthird_party/boringssl/src/third_party/googletest/googletest/test/gtest_skip_test.cc\nthird_party/boringssl/src/tool/fd.cc\nthird_party/breakpad/BUILD.gn\nthird_party/breakpad/breakpad/src/client/linux/minidump_writer/minidump_writer.cc\nthird_party/breakpad/breakpad/src/client/linux/minidump_writer/minidump_writer_unittest.cc\nthird_party/breakpad/breakpad/src/client/linux/sender/google_crash_report_sender.cc\nthird_party/breakpad/breakpad/src/client/mac/handler/exception_handler.cc\nthird_party/breakpad/breakpad/src/client/minidump_file_writer_unittest.cc\nthird_party/breakpad/breakpad/src/common/dwarf/dwarf2reader_lineinfo_unittest.cc\nthird_party/breakpad/breakpad/src/common/dwarf/dwarf2reader_splitfunctions_unittest.cc\nthird_party/breakpad/breakpad/src/common/dwarf/elf_reader.cc\nthird_party/breakpad/breakpad/src/common/dwarf/elf_reader.h\nthird_party/breakpad/breakpad/src/common/dwarf_range_list_handler.cc\nthird_party/breakpad/breakpad/src/common/dwarf_range_list_handler.h\nthird_party/breakpad/breakpad/src/common/linux/dump_symbols_unittest.cc\nthird_party/breakpad/breakpad/src/common/linux/elf_gnu_compat.h\nthird_party/breakpad/breakpad/src/common/linux/elf_symbols_to_module.cc\nthird_party/breakpad/breakpad/src/common/linux/elf_symbols_to_module.h\nthird_party/breakpad/breakpad/src/common/linux/elf_symbols_to_module_unittest.cc\nthird_party/breakpad/breakpad/src/common/linux/synth_elf.h\nthird_party/breakpad/breakpad/src/common/linux/synth_elf_unittest.cc\nthird_party/breakpad/breakpad/src/common/linux/tests/crash_generator.cc\nthird_party/breakpad/breakpad/src/common/mac/super_fat_arch.h\nthird_party/breakpad/breakpad/src/common/md5.h\nthird_party/breakpad/breakpad/src/common/module.h\nthird_party/breakpad/breakpad/src/common/windows/pdb_source_line_writer.cc\nthird_party/breakpad/breakpad/src/common/windows/pe_util.cc\nthird_party/breakpad/breakpad/src/google_breakpad/common/minidump_exception_win32.h\nthird_party/breakpad/breakpad/src/google_breakpad/common/minidump_format.h\nthird_party/breakpad/breakpad/src/google_breakpad/processor/fast_source_line_resolver.h\nthird_party/breakpad/breakpad/src/google_breakpad/processor/source_line_resolver_base.h\nthird_party/breakpad/breakpad/src/processor/basic_source_line_resolver_types.h\nthird_party/breakpad/breakpad/src/processor/cfi_frame_info.h\nthird_party/breakpad/breakpad/src/processor/fast_source_line_resolver.cc\nthird_party/breakpad/breakpad/src/processor/fast_source_line_resolver_types.h\nthird_party/breakpad/breakpad/src/processor/fast_source_line_resolver_unittest.cc\nthird_party/breakpad/breakpad/src/processor/map_serializers-inl.h\nthird_party/breakpad/breakpad/src/processor/map_serializers.h\nthird_party/breakpad/breakpad/src/processor/map_serializers_unittest.cc\nthird_party/breakpad/breakpad/src/processor/minidump.cc\nthird_party/breakpad/breakpad/src/processor/module_comparer.cc\nthird_party/breakpad/breakpad/src/processor/module_comparer.h\nthird_party/breakpad/breakpad/src/processor/module_factory.h\nthird_party/breakpad/breakpad/src/processor/module_serializer.cc\nthird_party/breakpad/breakpad/src/processor/module_serializer.h\nthird_party/breakpad/breakpad/src/processor/proc_maps_linux.cc\nthird_party/breakpad/breakpad/src/processor/simple_serializer-inl.h\nthird_party/breakpad/breakpad/src/processor/simple_serializer.h\nthird_party/breakpad/breakpad/src/processor/source_line_resolver_base.cc\nthird_party/breakpad/breakpad/src/processor/source_line_resolver_base_types.h\nthird_party/breakpad/breakpad/src/processor/stackwalker_address_list.cc\nthird_party/breakpad/breakpad/src/processor/stackwalker_address_list.h\nthird_party/breakpad/breakpad/src/processor/stackwalker_address_list_unittest.cc\nthird_party/breakpad/breakpad/src/processor/stackwalker_arm.cc\nthird_party/breakpad/breakpad/src/processor/stackwalker_arm_unittest.cc\nthird_party/breakpad/breakpad/src/processor/stackwalker_x86.cc\nthird_party/breakpad/breakpad/src/processor/static_address_map-inl.h\nthird_party/breakpad/breakpad/src/processor/static_address_map.h\nthird_party/breakpad/breakpad/src/processor/static_address_map_unittest.cc\nthird_party/breakpad/breakpad/src/processor/static_contained_range_map-inl.h\nthird_party/breakpad/breakpad/src/processor/static_contained_range_map.h\nthird_party/breakpad/breakpad/src/processor/static_contained_range_map_unittest.cc\nthird_party/breakpad/breakpad/src/processor/static_map-inl.h\nthird_party/breakpad/breakpad/src/processor/static_map.h\nthird_party/breakpad/breakpad/src/processor/static_map_iterator-inl.h\nthird_party/breakpad/breakpad/src/processor/static_map_iterator.h\nthird_party/breakpad/breakpad/src/processor/static_map_unittest.cc\nthird_party/breakpad/breakpad/src/processor/static_range_map-inl.h\nthird_party/breakpad/breakpad/src/processor/static_range_map.h\nthird_party/breakpad/breakpad/src/processor/static_range_map_unittest.cc\nthird_party/breakpad/breakpad/src/processor/windows_frame_info.h\nthird_party/breakpad/breakpad/src/tools/linux/core_handler/core_handler.cc\nthird_party/breakpad/breakpad/src/tools/linux/md2core/minidump-2-core.cc\nthird_party/breakpad/breakpad/src/tools/python/filter_syms.py\nthird_party/breakpad/breakpad/src/tools/windows/converter/ms_symbol_server_converter.cc\nthird_party/breakpad/breakpad/src/tools/windows/converter/ms_symbol_server_converter.h\nthird_party/breakpad/breakpad/src/tools/windows/converter_exe/converter.cc\nthird_party/catapult/PRESUBMIT.py\nthird_party/catapult/catapult_build/appengine_deploy.py\nthird_party/catapult/catapult_build/js_checks.py\nthird_party/catapult/catapult_build/perfbot_stats/chrome_perf_stats.py\nthird_party/catapult/catapult_build/perfbot_stats/chrome_perf_step_timings.py\nthird_party/catapult/catapult_build/run_dev_server_tests.py\nthird_party/catapult/common/bin/update_chrome_reference_binaries.py\nthird_party/catapult/common/lab/commits.py\nthird_party/catapult/common/lab/hardware.py\nthird_party/catapult/common/node_runner/node_runner/package-lock.json\nthird_party/catapult/common/py_trace_event/py_trace_event/trace_event_impl/perfetto_proto_classes.py\nthird_party/catapult/common/py_utils/py_utils/cloud_storage.py\nthird_party/catapult/common/py_utils/py_utils/cloud_storage_unittest.py\nthird_party/catapult/common/py_utils/py_utils/expectations_parser_unittest.py\nthird_party/catapult/common/py_vulcanize/py_vulcanize/generate.py\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_01.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_02.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_03.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_04.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_05.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_06.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_07.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_08.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_09.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_10.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_11.css\nthird_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/opacity-filter.css\nthird_party/catapult/common/py_vulcanize/third_party/rjsmin/bench/apiviewer.js\nthird_party/catapult/common/py_vulcanize/third_party/rjsmin/bench/jquery-1.7.1.js\nthird_party/catapult/dashboard/dashboard/__init__.py\nthird_party/catapult/dashboard/dashboard/add_histograms_queue.py\nthird_party/catapult/dashboard/dashboard/add_histograms_queue_test.py\nthird_party/catapult/dashboard/dashboard/add_histograms_test.py\nthird_party/catapult/dashboard/dashboard/add_point_queue.py\nthird_party/catapult/dashboard/dashboard/add_point_test.py\nthird_party/catapult/dashboard/dashboard/alert_groups_test.py\nthird_party/catapult/dashboard/dashboard/alerts_test.py\nthird_party/catapult/dashboard/dashboard/api/alerts_test.py\nthird_party/catapult/dashboard/dashboard/api/api_auth.py\nthird_party/catapult/dashboard/dashboard/api/api_request_handler.py\nthird_party/catapult/dashboard/dashboard/api/api_request_handler_test.py\nthird_party/catapult/dashboard/dashboard/api/examples/apps_script_service_account.js\nthird_party/catapult/dashboard/dashboard/api/examples/cors.html\nthird_party/catapult/dashboard/dashboard/api/examples/service_account.py\nthird_party/catapult/dashboard/dashboard/api/examples/user_account.py\nthird_party/catapult/dashboard/dashboard/associate_alerts_test.py\nthird_party/catapult/dashboard/dashboard/auto_bisect_test.py\nthird_party/catapult/dashboard/dashboard/buildbucket_job_status_test.py\nthird_party/catapult/dashboard/dashboard/common/cloud_metric.py\nthird_party/catapult/dashboard/dashboard/common/datastore_hooks.py\nthird_party/catapult/dashboard/dashboard/common/datastore_hooks_test.py\nthird_party/catapult/dashboard/dashboard/common/defaults.py\nthird_party/catapult/dashboard/dashboard/common/feature_flags.py\nthird_party/catapult/dashboard/dashboard/common/file_bug.py\nthird_party/catapult/dashboard/dashboard/common/layered_cache_test.py\nthird_party/catapult/dashboard/dashboard/common/namespaced_stored_object_test.py\nthird_party/catapult/dashboard/dashboard/common/testing_common.py\nthird_party/catapult/dashboard/dashboard/common/utils.py\nthird_party/catapult/dashboard/dashboard/common/utils_test.py\nthird_party/catapult/dashboard/dashboard/dispatcher.py\nthird_party/catapult/dashboard/dashboard/dump_graph_json_test.py\nthird_party/catapult/dashboard/dashboard/edit_anomalies_test.py\nthird_party/catapult/dashboard/dashboard/edit_site_config.py\nthird_party/catapult/dashboard/dashboard/edit_site_config_test.py\nthird_party/catapult/dashboard/dashboard/elements/alerts-page.html\nthird_party/catapult/dashboard/dashboard/elements/bug-details-test.html\nthird_party/catapult/dashboard/dashboard/elements/bug-details.html\nthird_party/catapult/dashboard/dashboard/elements/bug-info.html\nthird_party/catapult/dashboard/dashboard/elements/chart-container-test.html\nthird_party/catapult/dashboard/dashboard/elements/chart-container.html\nthird_party/catapult/dashboard/dashboard/elements/chart-sparkline.html\nthird_party/catapult/dashboard/dashboard/elements/group-report-page-test.html\nthird_party/catapult/dashboard/dashboard/elements/group-report-page.html\nthird_party/catapult/dashboard/dashboard/elements/login-warning.html\nthird_party/catapult/dashboard/dashboard/elements/nav-bar.html\nthird_party/catapult/dashboard/dashboard/elements/pinpoint-perf-job-dialog.html\nthird_party/catapult/dashboard/dashboard/elements/report-page.html\nthird_party/catapult/dashboard/dashboard/elements/speed-releasing-alerts-test.html\nthird_party/catapult/dashboard/dashboard/elements/speed-releasing-alerts.html\nthird_party/catapult/dashboard/dashboard/elements/speed-releasing-page.html\nthird_party/catapult/dashboard/dashboard/elements/speed-releasing-table.html\nthird_party/catapult/dashboard/dashboard/email_sheriff.py\nthird_party/catapult/dashboard/dashboard/email_sheriff_test.py\nthird_party/catapult/dashboard/dashboard/email_template.py\nthird_party/catapult/dashboard/dashboard/email_template_test.py\nthird_party/catapult/dashboard/dashboard/file_bug.py\nthird_party/catapult/dashboard/dashboard/file_bug_test.py\nthird_party/catapult/dashboard/dashboard/find_anomalies_test.py\nthird_party/catapult/dashboard/dashboard/find_step.py\nthird_party/catapult/dashboard/dashboard/graph_json_test.py\nthird_party/catapult/dashboard/dashboard/group_report_test.py\nthird_party/catapult/dashboard/dashboard/layered_cache_delete_expired_test.py\nthird_party/catapult/dashboard/dashboard/list_tests_test.py\nthird_party/catapult/dashboard/dashboard/load_from_prod.py\nthird_party/catapult/dashboard/dashboard/main_test.py\nthird_party/catapult/dashboard/dashboard/mark_recovered_alerts.py\nthird_party/catapult/dashboard/dashboard/migrate_test_names.py\nthird_party/catapult/dashboard/dashboard/migrate_test_names_tasks.py\nthird_party/catapult/dashboard/dashboard/migrate_test_names_test.py\nthird_party/catapult/dashboard/dashboard/models/alert_group_workflow.py\nthird_party/catapult/dashboard/dashboard/models/alert_group_workflow_test.py\nthird_party/catapult/dashboard/dashboard/models/anomaly_test.py\nthird_party/catapult/dashboard/dashboard/models/graph_data.py\nthird_party/catapult/dashboard/dashboard/models/graph_data_test.py\nthird_party/catapult/dashboard/dashboard/models/histogram_test.py\nthird_party/catapult/dashboard/dashboard/models/internal_only_model_test.py\nthird_party/catapult/dashboard/dashboard/models/skia_helper_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/dispatcher.py\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/index-page.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/change-details.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/exception-details.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/execution-details.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/job-details.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/jobs-page/jobs-table.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/jobs-page/new-job-fab.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/navigation-bar-test.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/navigation-bar.html\nthird_party/catapult/dashboard/dashboard/pinpoint/elements/results2-frame.html\nthird_party/catapult/dashboard/dashboard/pinpoint/handlers/job.py\nthird_party/catapult/dashboard/dashboard/pinpoint/handlers/job_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/handlers/new_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/index/index.html\nthird_party/catapult/dashboard/dashboard/pinpoint/models/change/change_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/change/commit_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/change/patch.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/change/patch_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/change/repository.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/change/repository_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/errors.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/job.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/job_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/quest/find_isolate.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/quest/find_isolate_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/quest/run_telemetry_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/quest/run_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/quest/run_test_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/results2.py\nthird_party/catapult/dashboard/dashboard/pinpoint/models/results2_test.py\nthird_party/catapult/dashboard/dashboard/pinpoint/test.py\nthird_party/catapult/dashboard/dashboard/pinpoint_request_test.py\nthird_party/catapult/dashboard/dashboard/revision_info_client_test.py\nthird_party/catapult/dashboard/dashboard/services/buildbucket_service.py\nthird_party/catapult/dashboard/dashboard/services/crrev_service.py\nthird_party/catapult/dashboard/dashboard/services/crrev_service_test.py\nthird_party/catapult/dashboard/dashboard/services/gerrit_service.py\nthird_party/catapult/dashboard/dashboard/services/gerrit_service_test.py\nthird_party/catapult/dashboard/dashboard/services/gitiles_service_test.py\nthird_party/catapult/dashboard/dashboard/services/google_sheets_service.py\nthird_party/catapult/dashboard/dashboard/services/isolate.py\nthird_party/catapult/dashboard/dashboard/services/isolate_test.py\nthird_party/catapult/dashboard/dashboard/services/issue_tracker_service.py\nthird_party/catapult/dashboard/dashboard/services/issue_tracker_service_test.py\nthird_party/catapult/dashboard/dashboard/services/perf_issue_service_client.py\nthird_party/catapult/dashboard/dashboard/services/pinpoint_service.py\nthird_party/catapult/dashboard/dashboard/services/skia_bridge_service.py\nthird_party/catapult/dashboard/dashboard/services/swarming.py\nthird_party/catapult/dashboard/dashboard/services/workflow_service.py\nthird_party/catapult/dashboard/dashboard/sheriff_config/luci_auth_service.py\nthird_party/catapult/dashboard/dashboard/sheriff_config/service/__init__.py\nthird_party/catapult/dashboard/dashboard/sheriff_config/test_match_policy.py\nthird_party/catapult/dashboard/dashboard/sheriff_config/tests/config-discovery.json\nthird_party/catapult/dashboard/dashboard/sheriff_config/tests/test_luci_config_cases.py\nthird_party/catapult/dashboard/dashboard/sheriff_config/tests/test_service_cases.py\nthird_party/catapult/dashboard/dashboard/sheriff_config_client.py\nthird_party/catapult/dashboard/dashboard/static/alerts.html\nthird_party/catapult/dashboard/dashboard/static/deprecation_banner.html\nthird_party/catapult/dashboard/dashboard/static/group_report.html\nthird_party/catapult/dashboard/dashboard/static/report.html\nthird_party/catapult/dashboard/dashboard/static/simple_xhr.html\nthird_party/catapult/dashboard/dashboard/static/speed_releasing.html\nthird_party/catapult/dashboard/dashboard/templates/delete_test_data.html\nthird_party/catapult/dashboard/dashboard/templates/migrate_test_names.html\nthird_party/catapult/dashboard/dashboard/templates/migrate_test_names_unauthorized.html\nthird_party/catapult/dashboard/dashboard/update_bug_with_results_test.py\nthird_party/catapult/dashboard/dashboard/update_test_suite_descriptors_test.py\nthird_party/catapult/dashboard/dashboard/update_test_suites.py\nthird_party/catapult/dashboard/dashboard/update_test_suites_test.py\nthird_party/catapult/dashboard/dashboard/uploads_info_test.py\nthird_party/catapult/dashboard/dashboard_build/preprocess.py\nthird_party/catapult/dashboard/sandwich_verification/Makefile\nthird_party/catapult/dashboard/sandwich_verification/common/dashboard_service.py\nthird_party/catapult/dashboard/sandwich_verification/common/pinpoint_service.py\nthird_party/catapult/dashboard/sandwich_verification/common/request.py\nthird_party/catapult/dashboard/skia_export/skia_export/skia_converter.py\nthird_party/catapult/devil/PRESUBMIT.py\nthird_party/catapult/devil/devil/android/device_utils.py\nthird_party/catapult/devil/devil/android/device_utils_test.py\nthird_party/catapult/devil/devil/android/ndk/abis.py\nthird_party/catapult/devil/devil/android/sdk/adb_wrapper.py\nthird_party/catapult/devil/devil/android/sdk/intent.py\nthird_party/catapult/devil/devil/android/sdk/keyevent.py\nthird_party/catapult/devil/devil/android/sdk/shared_prefs.py\nthird_party/catapult/devil/devil/android/sdk/version_codes.py\nthird_party/catapult/devil/devil/android/settings.py\nthird_party/catapult/devil/devil/android/tools/system_app.py\nthird_party/catapult/devil/devil/utils/markdown.py\nthird_party/catapult/devil/devil/utils/markdown_test.py\nthird_party/catapult/experimental/alert_configs/memory.py\nthird_party/catapult/experimental/benchmark_health_report/dashboard_api.py\nthird_party/catapult/experimental/benchmark_health_report/drive_api.py\nthird_party/catapult/experimental/benchmark_health_report/sheet_writer.py\nthird_party/catapult/experimental/bisect_lib/depot_map.py\nthird_party/catapult/experimental/bisect_lib/fetch_intervening_revisions.py\nthird_party/catapult/experimental/bisect_lib/fetch_revision_info.py\nthird_party/catapult/experimental/bisect_lib/fetch_revision_info_test.py\nthird_party/catapult/experimental/buildbot/buildbot.py\nthird_party/catapult/experimental/heatmap/power.js\nthird_party/catapult/experimental/perf_sheriffing_emailer/api_access.js\nthird_party/catapult/experimental/perf_sheriffing_emailer/benchmark_owner_emailer.js\nthird_party/catapult/experimental/perf_sheriffing_emailer/perf_bug_emailer.js\nthird_party/catapult/experimental/trace_on_tap/background.js\nthird_party/catapult/experimental/trace_on_tap/manifest.json\nthird_party/catapult/experimental/trace_on_tap/trace_uploader.js\nthird_party/catapult/experimental/tracing/bin/diff_heap_profiler.py\nthird_party/catapult/netlog_viewer/netlog_viewer/dns_view.html\nthird_party/catapult/netlog_viewer/netlog_viewer/events_view_test.html\nthird_party/catapult/netlog_viewer/netlog_viewer/log_view_painter_test.html\nthird_party/catapult/netlog_viewer/netlog_viewer/top_bar_view.html\nthird_party/catapult/perf_issue_service/application/buganizer_utils.py\nthird_party/catapult/perf_issue_service/application/clients/buganizer_client.py\nthird_party/catapult/perf_issue_service/application/clients/chromeperf_client.py\nthird_party/catapult/perf_issue_service/application/clients/monorail_client.py\nthird_party/catapult/perf_issue_service/application/clients/sheriff_config_client.py\nthird_party/catapult/perf_issue_service/application/utils.py\nthird_party/catapult/skia_bridge/application/perf_api/alert_group.py\nthird_party/catapult/skia_bridge/application/perf_api/anomalies.py\nthird_party/catapult/skia_bridge/application/perf_api/auth_helper.py\nthird_party/catapult/skia_bridge/application/perf_api/skia_perf_upload.py\nthird_party/catapult/skia_bridge/common/cloud_metric.py\nthird_party/catapult/skia_bridge/common/utils.py\nthird_party/catapult/skia_bridge/tests/perf_api/alert_group_test.py\nthird_party/catapult/skia_bridge/tests/perf_api/query_anomalies_test.py\nthird_party/catapult/skia_bridge/tests/perf_api/query_anomalies_time_test.py\nthird_party/catapult/skia_bridge/tests/perf_api/sample_row_data.json\nthird_party/catapult/systrace/profile_chrome/chrome_startup_tracing_agent.py\nthird_party/catapult/systrace/profile_chrome/chrome_startup_tracing_agent_unittest.py\nthird_party/catapult/systrace/profile_chrome/main.py\nthird_party/catapult/telemetry/examples/benchmarks/android_go_benchmark.py\nthird_party/catapult/telemetry/telemetry/android/shared_android_state.py\nthird_party/catapult/telemetry/telemetry/benchmark_unittest.py\nthird_party/catapult/telemetry/telemetry/core/cros_interface_unittest.py\nthird_party/catapult/telemetry/telemetry/decorators_unittest.py\nthird_party/catapult/telemetry/telemetry/internal/actions/action_runner.py\nthird_party/catapult/telemetry/telemetry/internal/actions/key_event.py\nthird_party/catapult/telemetry/telemetry/internal/backends/android_browser_backend_settings.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome/cros_unittest.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome/crx_id.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome/desktop_browser_finder.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome/lacros_browser_backend.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome/oobe.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome/possible_desktop_browser_unittest.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome_inspector/inspector_websocket.py\nthird_party/catapult/telemetry/telemetry/internal/backends/chrome_inspector/ui_devtools_client_backend.py\nthird_party/catapult/telemetry/telemetry/internal/browser/browser_interval_profiling_controller.py\nthird_party/catapult/telemetry/telemetry/internal/browser/browser_options.py\nthird_party/catapult/telemetry/telemetry/internal/browser/tab.py\nthird_party/catapult/telemetry/telemetry/internal/browser/tab_unittest.py\nthird_party/catapult/telemetry/telemetry/internal/browser/ui_devtools.py\nthird_party/catapult/telemetry/telemetry/internal/browser/user_agent.py\nthird_party/catapult/telemetry/telemetry/internal/platform/posix_platform_backend.py\nthird_party/catapult/telemetry/telemetry/internal/platform/win_platform_backend.py\nthird_party/catapult/telemetry/telemetry/internal/story_runner_unittest.py\nthird_party/catapult/telemetry/telemetry/internal/testing/archive_files/test_missing_wpr_file.json\nthird_party/catapult/telemetry/telemetry/internal/testing/archive_files/test_page_set.py\nthird_party/catapult/telemetry/telemetry/internal/testing/cast.html\nthird_party/catapult/telemetry/telemetry/internal/testing/perf_report_output.txt\nthird_party/catapult/telemetry/telemetry/page/cache_temperature.py\nthird_party/catapult/telemetry/telemetry/page/legacy_page_test.py\nthird_party/catapult/telemetry/telemetry/page/shared_page_state_unittest.py\nthird_party/catapult/telemetry/telemetry/page/traffic_setting.py\nthird_party/catapult/telemetry/telemetry/timeline/model.py\nthird_party/catapult/telemetry/telemetry/timeline/trace_event_importer.py\nthird_party/catapult/telemetry/telemetry/timeline/tracing_config.py\nthird_party/catapult/telemetry/third_party/mox3/mox3/mox.py\nthird_party/catapult/telemetry/third_party/mox3/mox3/stubout.py\nthird_party/catapult/telemetry/third_party/mox3/mox3/tests/mox_helper.py\nthird_party/catapult/telemetry/third_party/mox3/mox3/tests/stubout_helper.py\nthird_party/catapult/telemetry/third_party/mox3/mox3/tests/test_mox.py\nthird_party/catapult/telemetry/third_party/mox3/mox3/tests/test_stubout.py\nthird_party/catapult/telemetry/third_party/png/png.py\nthird_party/catapult/telemetry/third_party/websocket-client/setup.py\nthird_party/catapult/third_party/apiclient/googleapiclient/discovery.py\nthird_party/catapult/third_party/apiclient/googleapiclient/errors.py\nthird_party/catapult/third_party/apiclient/googleapiclient/http.py\nthird_party/catapult/third_party/apiclient/googleapiclient/model.py\nthird_party/catapult/third_party/apiclient/googleapiclient/sample_tools.py\nthird_party/catapult/third_party/apiclient/googleapiclient/schema.py\nthird_party/catapult/third_party/beautifulsoup4/README.txt\nthird_party/catapult/third_party/chardet/chardet/chardistribution.py\nthird_party/catapult/third_party/chardet/chardet/codingstatemachine.py\nthird_party/catapult/third_party/chardet/chardet/cp949prober.py\nthird_party/catapult/third_party/chardet/chardet/enums.py\nthird_party/catapult/third_party/chardet/chardet/escprober.py\nthird_party/catapult/third_party/chardet/chardet/escsm.py\nthird_party/catapult/third_party/chardet/chardet/eucjpprober.py\nthird_party/catapult/third_party/chardet/chardet/euckrprober.py\nthird_party/catapult/third_party/chardet/chardet/euctwprober.py\nthird_party/catapult/third_party/chardet/chardet/gb2312prober.py\nthird_party/catapult/third_party/chardet/chardet/mbcssm.py\nthird_party/catapult/third_party/chardet/chardet/sjisprober.py\nthird_party/catapult/third_party/chardet/chardet/utf8prober.py\nthird_party/catapult/third_party/chardet/chardet/version.py\nthird_party/catapult/third_party/cloudstorage/cloudstorage/cloudstorage_api.py\nthird_party/catapult/third_party/cloudstorage/cloudstorage/errors.py\nthird_party/catapult/third_party/cloudstorage/cloudstorage/storage_api.py\nthird_party/catapult/third_party/coverage/coverage/htmlfiles/pyfile.html\nthird_party/catapult/third_party/coverage/howto.txt\nthird_party/catapult/third_party/flot/excanvas.js\nthird_party/catapult/third_party/flot/jquery.flot.navigate.js\nthird_party/catapult/third_party/flot/jquery.js\nthird_party/catapult/third_party/google-auth/google/auth/_cloud_sdk.py\nthird_party/catapult/third_party/google-auth/google/auth/_default.py\nthird_party/catapult/third_party/google-auth/google/auth/app_engine.py\nthird_party/catapult/third_party/google-auth/google/auth/compute_engine/_metadata.py\nthird_party/catapult/third_party/google-auth/google/auth/compute_engine/credentials.py\nthird_party/catapult/third_party/google-auth/google/auth/iam.py\nthird_party/catapult/third_party/google-auth/google/auth/impersonated_credentials.py\nthird_party/catapult/third_party/google-auth/google/auth/jwt.py\nthird_party/catapult/third_party/google-auth/google/auth/transport/grpc.py\nthird_party/catapult/third_party/google-auth/google/auth/transport/requests.py\nthird_party/catapult/third_party/google-auth/google/auth/transport/urllib3.py\nthird_party/catapult/third_party/google-auth/google/oauth2/credentials.py\nthird_party/catapult/third_party/google-auth/google/oauth2/id_token.py\nthird_party/catapult/third_party/graphy/graphy/backends/google_chart_api/base_encoder_test.py\nthird_party/catapult/third_party/graphy/graphy/backends/google_chart_api/encoders.py\nthird_party/catapult/third_party/gsutil/gslib/__main__.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/acls.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/command_opts.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/crc32c.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/creds.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/dev.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/metadata.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/prod.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/security.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/shim.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/support.py\nthird_party/catapult/third_party/gsutil/gslib/addlhelp/versions.py\nthird_party/catapult/third_party/gsutil/gslib/boto_resumable_upload.py\nthird_party/catapult/third_party/gsutil/gslib/command.py\nthird_party/catapult/third_party/gsutil/gslib/command_runner.py\nthird_party/catapult/third_party/gsutil/gslib/commands/acl.py\nthird_party/catapult/third_party/gsutil/gslib/commands/autoclass.py\nthird_party/catapult/third_party/gsutil/gslib/commands/bucketpolicyonly.py\nthird_party/catapult/third_party/gsutil/gslib/commands/compose.py\nthird_party/catapult/third_party/gsutil/gslib/commands/config.py\nthird_party/catapult/third_party/gsutil/gslib/commands/cors.py\nthird_party/catapult/third_party/gsutil/gslib/commands/cp.py\nthird_party/catapult/third_party/gsutil/gslib/commands/defacl.py\nthird_party/catapult/third_party/gsutil/gslib/commands/defstorageclass.py\nthird_party/catapult/third_party/gsutil/gslib/commands/du.py\nthird_party/catapult/third_party/gsutil/gslib/commands/hmac.py\nthird_party/catapult/third_party/gsutil/gslib/commands/iam.py\nthird_party/catapult/third_party/gsutil/gslib/commands/kms.py\nthird_party/catapult/third_party/gsutil/gslib/commands/label.py\nthird_party/catapult/third_party/gsutil/gslib/commands/lifecycle.py\nthird_party/catapult/third_party/gsutil/gslib/commands/logging.py\nthird_party/catapult/third_party/gsutil/gslib/commands/ls.py\nthird_party/catapult/third_party/gsutil/gslib/commands/mb.py\nthird_party/catapult/third_party/gsutil/gslib/commands/mv.py\nthird_party/catapult/third_party/gsutil/gslib/commands/notification.py\nthird_party/catapult/third_party/gsutil/gslib/commands/pap.py\nthird_party/catapult/third_party/gsutil/gslib/commands/perfdiag.py\nthird_party/catapult/third_party/gsutil/gslib/commands/requesterpays.py\nthird_party/catapult/third_party/gsutil/gslib/commands/retention.py\nthird_party/catapult/third_party/gsutil/gslib/commands/rm.py\nthird_party/catapult/third_party/gsutil/gslib/commands/rpo.py\nthird_party/catapult/third_party/gsutil/gslib/commands/rsync.py\nthird_party/catapult/third_party/gsutil/gslib/commands/setmeta.py\nthird_party/catapult/third_party/gsutil/gslib/commands/signurl.py\nthird_party/catapult/third_party/gsutil/gslib/commands/stat.py\nthird_party/catapult/third_party/gsutil/gslib/commands/test.py\nthird_party/catapult/third_party/gsutil/gslib/commands/ubla.py\nthird_party/catapult/third_party/gsutil/gslib/commands/versioning.py\nthird_party/catapult/third_party/gsutil/gslib/commands/web.py\nthird_party/catapult/third_party/gsutil/gslib/gcs_json_api.py\nthird_party/catapult/third_party/gsutil/gslib/gcs_json_credentials.py\nthird_party/catapult/third_party/gsutil/gslib/iamcredentials_api.py\nthird_party/catapult/third_party/gsutil/gslib/kms_api.py\nthird_party/catapult/third_party/gsutil/gslib/metrics.py\nthird_party/catapult/third_party/gsutil/gslib/pubsub_api.py\nthird_party/catapult/third_party/gsutil/gslib/tests/signurl_signatures.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_creds_config.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_data/test.json\nthird_party/catapult/third_party/gsutil/gslib/tests/test_data/test_external_account_authorized_user_credentials.json\nthird_party/catapult/third_party/gsutil/gslib/tests/test_data/test_external_account_credentials.json\nthird_party/catapult/third_party/gsutil/gslib/tests/test_hmac.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_iam.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_kms.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_ls.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_mtls.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_perfdiag.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_signurl.py\nthird_party/catapult/third_party/gsutil/gslib/tests/test_wrapped_credentials.py\nthird_party/catapult/third_party/gsutil/gslib/tests/testcase/integration_testcase.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/iamcredentials_apitools/iamcredentials_v1_client.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/iamcredentials_apitools/iamcredentials_v1_messages.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/kms_apitools/cloudkms_v1_client.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/kms_apitools/cloudkms_v1_messages.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/kms_apitools/resources.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/pubsub_apitools/pubsub_v1_client.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/pubsub_apitools/pubsub_v1_messages.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/storage_apitools/storage_v1_client.py\nthird_party/catapult/third_party/gsutil/gslib/third_party/storage_apitools/storage_v1_messages.py\nthird_party/catapult/third_party/gsutil/gslib/utils/boto_util.py\nthird_party/catapult/third_party/gsutil/gslib/utils/constants.py\nthird_party/catapult/third_party/gsutil/gslib/utils/copy_helper.py\nthird_party/catapult/third_party/gsutil/gslib/utils/hashing_helper.py\nthird_party/catapult/third_party/gsutil/gslib/utils/iam_helper.py\nthird_party/catapult/third_party/gsutil/gslib/utils/system_util.py\nthird_party/catapult/third_party/gsutil/gslib/utils/text_util.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/cloudfront/__init__.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/cognito/identity/layer1.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/connection.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/ec2/connection.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/emr/emrobject.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/glacier/layer1.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/glacier/writer.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/bucket.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/connection.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/key.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/resumable_upload_handler.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/https_connection.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/iam/connection.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/rds/dbinstance.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/rds/dbsubnetgroup.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/s3/bucket.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/s3/key.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/sts/connection.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/gs/test_resumable_uploads.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/rds/test_db_subnet_group.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/route53/test_health_check.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/s3/other_cacerts.txt\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/s3/test_https_cert_validation.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/unit/auth/test_sigv4.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/unit/emr/test_emr_responses.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/__init__.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/client.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/clientsecrets.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/_metadata.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/appengine.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/django_util/__init__.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/flask_util.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/gce.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/tools.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/samples/call_compute_service.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/samples/oauth2_for_devices.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/scripts/run_system_tests.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/setup.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/appengine/test_appengine.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/django_util/settings.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/django_util/test_views.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/test_multiprocess_file_storage.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/client_secrets.json\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials.json\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials_malformed_1.json\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials_malformed_2.json\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials_malformed_3.json\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/unfilled_client_secrets.json\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test__helpers.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_client.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_file.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_jwt.py\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_service_account.py\nthird_party/catapult/third_party/gsutil/setup.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/protorpclite/messages.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/base_api_test.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/batch.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/credentials_lib.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/exceptions_test.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/transfer.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/util.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/data/apitools_client_secrets.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/gen_client.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/gen_client_lib.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/message_registry.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/service_registry.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/testdata/dns/dns_v1.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/util.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/testdata/fake_client_secrets.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/bigquery_sample/bigquery_v2.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/bigquery_sample/bigquery_v2/bigquery_v2_client.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/bigquery_sample/bigquery_v2/bigquery_v2_messages.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/dns_sample/dns_v1.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/dns_sample/dns_v1/dns_v1_client.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/dns_sample/gen_dns_client_test.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/fusiontables_sample/fusiontables_v1.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/fusiontables_sample/fusiontables_v1/fusiontables_v1_client.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/fusiontables_sample/fusiontables_v1/fusiontables_v1_messages.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_client_test.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_v1.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_v1/iam_v1_client.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_v1/iam_v1_messages.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/servicemanagement_sample/servicemanagement_v1.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/servicemanagement_sample/servicemanagement_v1/servicemanagement_v1_client.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/servicemanagement_sample/servicemanagement_v1/servicemanagement_v1_messages.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage_v1.json\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage_v1/storage_v1_client.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage_v1/storage_v1_messages.py\nthird_party/catapult/third_party/gsutil/third_party/apitools/setup.py\nthird_party/catapult/third_party/gsutil/third_party/argcomplete/setup.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/chardistribution.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/codingstatemachine.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/cp949prober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/enums.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/escprober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/escsm.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/eucjpprober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/euckrprober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/euctwprober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/gb2312prober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/mbcssm.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/sjisprober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/utf8prober.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/chardet/version.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/setup.py\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/Big5/coolloud.org.tw.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/Big5/ke207.blogspot.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/Big5/upsaid.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/CP932/hardsoft.at.webry.info.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/arclamp.jp.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/blog.kabu-navi.com.atom.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/club.h14m.org.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/misuzilla.org.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/ittrend.egloos.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/jowchung.oolim.net.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/siwoo.org.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/tori02.egloos.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/yunho.egloos.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/cnblog.org.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/coverer.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/jjgod.3322.org.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/xy15400.blogcn.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/IBM855/janulalife.blogspot.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/IBM866/janulalife.blogspot.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/KOI8-R/janulalife.blogspot.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/SHIFT_JIS/10e.org.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/SHIFT_JIS/andore.com.inami.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/SHIFT_JIS/bloglelife.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/iso-8859-5-cyrillic/janulalife.blogspot.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1250-hungarian/torokorszag.blogspot.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1251-bulgarian/bpm.cult.bg.4.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1251-bulgarian/bpm.cult.bg.medusa.4.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1251-cyrillic/janulalife.blogspot.com.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1255-hebrew/hydepark.hevre.co.il.7957.xml\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1255-hebrew/notes.co.il.7.xml\nthird_party/catapult/third_party/gsutil/third_party/crcmod/setup.py\nthird_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/oauth2_client.py\nthird_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/oauth2_helper.py\nthird_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/test_oauth2_client.py\nthird_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/setup.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python-httplib2/google_auth_httplib2.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python-httplib2/setup.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/docs/_static/custom.css\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_cloud_sdk.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_default.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_default_async.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_jwt_async.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/api_key.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/app_engine.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/aws.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/compute_engine/_metadata.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/compute_engine/credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/downscoped.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/external_account.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/external_account_authorized_user.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/iam.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/impersonated_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/jwt.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/_aiohttp_requests.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/grpc.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/requests.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/urllib3.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_client.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_client_async.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_id_token_async.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_reauth_async.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/challenges.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/gdch_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/id_token.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/reauth.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/service_account.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/authenticate_explicit_with_adc.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/authenticate_implicit_with_adc.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/idtoken_from_impersonated_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/idtoken_from_service_account.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/snippets_test.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/verify_google_idtoken.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/setup.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/noxfile.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_async/conftest.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_async/test_id_token.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_async/test_service_account.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/app_engine_test_app/main.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/conftest.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_compute_engine.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_downscoping.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_external_accounts.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_grpc.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_id_token.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_impersonated_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_mtls_http.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_oauth2_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_requests.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_service_account.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_urllib3.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/compute_engine/test_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/authorized_user_cloud_sdk.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/authorized_user_cloud_sdk_with_quota_project_id.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/client_secrets.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/es256_service_account.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/external_account_authorized_user.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/impersonated_service_account_authorized_user_source.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/impersonated_service_account_service_account_source.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/impersonated_service_account_with_quota_project.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/service_account.json\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test__client.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test_id_token.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test_service_account.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test__default.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test__helpers.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_app_engine.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_aws.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_downscoped.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_external_account.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_external_account_authorized_user.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_identity_pool.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_impersonated_credentials.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_pluggable.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/transport/test_grpc.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/transport/test_requests.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/transport/test_urllib3.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests_async/oauth2/test_id_token.py\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests_async/test__default_async.py\nthird_party/catapult/third_party/gsutil/third_party/google-reauth-python/google_reauth/_reauth_client.py\nthird_party/catapult/third_party/gsutil/third_party/google-reauth-python/google_reauth/challenges.py\nthird_party/catapult/third_party/gsutil/third_party/google-reauth-python/google_reauth/reauth.py\nthird_party/catapult/third_party/gsutil/third_party/google-reauth-python/setup.py\nthird_party/catapult/third_party/gsutil/third_party/google-reauth-python/tests/test_reauth.py\nthird_party/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/__init__.py\nthird_party/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/__init__.py\nthird_party/catapult/third_party/gsutil/third_party/httplib2/tests/_TODO_legacy/python2/httplib2test_appengine.py\nthird_party/catapult/third_party/gsutil/third_party/httplib2/tests/test_proxy.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/pem.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1155.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1157.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1901.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1902.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1905.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2251.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2314.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2315.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2437.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2459.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2511.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2560.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3280.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3281.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3412.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3414.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3447.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3852.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc4210.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc4211.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc5208.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc5280.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc5652.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc6402.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/setup.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2314.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2315.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2437.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2459.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2511.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2560.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc4210.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc5208.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc5280.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc5652.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/cmpdump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/crldump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/crmfdump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/ocspclient.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/ocspreqdump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/ocsprspdump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs10dump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs1dump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs7dump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs8dump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/snmpget.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/x509dump-rfc5280.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/x509dump.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/docs/source/conf.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/eoo.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/der/decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/der/encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/native/decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/native/encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/binary.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/calling.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/dateandtime.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/integer.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/octets.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/string.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/debug.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/error.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/base.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/char.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/constraint.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/error.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/namedtype.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/namedval.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/opentype.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/tag.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/tagmap.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/univ.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/useful.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/setup.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/base.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/ber/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/ber/test_decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/ber/test_encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/cer/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/cer/test_decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/cer/test_encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/der/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/der/test_decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/der/test_encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/native/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/native/test_decoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/native/test_encoder.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/test_binary.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/test_integer.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/test_octets.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/test_debug.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/__main__.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_char.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_constraint.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_namedtype.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_namedval.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_opentype.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_tag.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_univ.py\nthird_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_useful.py\nthird_party/catapult/third_party/gsutil/third_party/pyparsing/simple_unit_tests.py\nthird_party/catapult/third_party/gsutil/third_party/pyu2f/setup.py\nthird_party/catapult/third_party/gsutil/third_party/requests/tests/test_requests.py\nthird_party/catapult/third_party/gsutil/third_party/requests/tests/test_utils.py\nthird_party/catapult/third_party/gsutil/third_party/retry-decorator/setup.py\nthird_party/catapult/third_party/gsutil/third_party/rsa/rsa/randnum.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/dummyserver/proxy.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/connectionpool.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/contrib/_appengine_environ.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/contrib/appengine.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/contrib/ntlmpool.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/poolmanager.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/util/ssl_.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/util/url.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/appengine/test_urlfetch.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/benchmark.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/port_helpers.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/test_compatibility.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/test_connectionpool.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/test_poolmanager.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/test_ssl.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/test_util.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/with_dummyserver/test_proxy_poolmanager.py\nthird_party/catapult/third_party/gsutil/third_party/urllib3/test/with_dummyserver/test_socketlevel.py\nthird_party/catapult/third_party/html5lib-1.1/html5lib/tests/test_parser2.py\nthird_party/catapult/third_party/jquery/jquery-2.1.4.js\nthird_party/catapult/third_party/mapreduce/mapreduce/handlers.py\nthird_party/catapult/third_party/mapreduce/mapreduce/mapreduce_pipeline.py\nthird_party/catapult/third_party/mapreduce/mapreduce/records.py\nthird_party/catapult/third_party/mapreduce/mapreduce/static/detail.html\nthird_party/catapult/third_party/mapreduce/mapreduce/status.py\nthird_party/catapult/third_party/mapreduce/mapreduce/test_support.py\nthird_party/catapult/third_party/mapreduce/mapreduce/util.py\nthird_party/catapult/third_party/mocha/mocha.js\nthird_party/catapult/third_party/mox3/mox3/mox.py\nthird_party/catapult/third_party/mox3/mox3/stubout.py\nthird_party/catapult/third_party/mox3/mox3/tests/mox_helper.py\nthird_party/catapult/third_party/mox3/mox3/tests/stubout_helper.py\nthird_party/catapult/third_party/mox3/mox3/tests/test_mox.py\nthird_party/catapult/third_party/mox3/mox3/tests/test_stubout.py\nthird_party/catapult/third_party/oauth2client/oauth2client/__init__.py\nthird_party/catapult/third_party/oauth2client/oauth2client/appengine.py\nthird_party/catapult/third_party/oauth2client/oauth2client/client.py\nthird_party/catapult/third_party/oauth2client/oauth2client/clientsecrets.py\nthird_party/catapult/third_party/oauth2client/oauth2client/django_orm.py\nthird_party/catapult/third_party/oauth2client/oauth2client/file.py\nthird_party/catapult/third_party/oauth2client/oauth2client/gce.py\nthird_party/catapult/third_party/oauth2client/oauth2client/keyring_storage.py\nthird_party/catapult/third_party/oauth2client/oauth2client/locked_file.py\nthird_party/catapult/third_party/oauth2client/oauth2client/multistore_file.py\nthird_party/catapult/third_party/oauth2client/oauth2client/tools.py\nthird_party/catapult/third_party/oauth2client/oauth2client/util.py\nthird_party/catapult/third_party/oauth2client/oauth2client/xsrfutil.py\nthird_party/catapult/third_party/pipeline/pipeline/pipeline.py\nthird_party/catapult/third_party/pipeline/pipeline/ui/common.js\nthird_party/catapult/third_party/pipeline/pipeline/ui/root_list.js\nthird_party/catapult/third_party/pipeline/pipeline/ui/status.js\nthird_party/catapult/third_party/polymer/components/app-route/demo/youtube-demo/youtube-search.html\nthird_party/catapult/third_party/polymer/components/font-roboto/roboto.html\nthird_party/catapult/third_party/polymer/components/google-apis/.bower.json\nthird_party/catapult/third_party/polymer/components/google-apis/bower.json\nthird_party/catapult/third_party/polymer/components/google-apis/demo/index.html\nthird_party/catapult/third_party/polymer/components/google-apis/google-client-loader.html\nthird_party/catapult/third_party/polymer/components/google-apis/google-js-api.html\nthird_party/catapult/third_party/polymer/components/google-apis/google-legacy-loader.html\nthird_party/catapult/third_party/polymer/components/google-apis/google-maps-api.html\nthird_party/catapult/third_party/polymer/components/google-apis/google-plusone-api.html\nthird_party/catapult/third_party/polymer/components/google-apis/google-realtime-api.html\nthird_party/catapult/third_party/polymer/components/google-apis/google-youtube-api.html\nthird_party/catapult/third_party/polymer/components/google-signin/demo/index.html\nthird_party/catapult/third_party/polymer/components/google-signin/google-signin-aware.html\nthird_party/catapult/third_party/polymer/components/google-signin/google-signin.html\nthird_party/catapult/third_party/polymer/components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html\nthird_party/catapult/third_party/polymer/components/iron-ajax/demo/index.html\nthird_party/catapult/third_party/polymer/components/iron-ajax/iron-ajax.html\nthird_party/catapult/third_party/polymer/components/iron-flex-layout/iron-flex-layout.html\nthird_party/catapult/third_party/polymer/components/iron-icon/iron-icon.html\nthird_party/catapult/third_party/polymer/components/iron-icons/iron-icons.html\nthird_party/catapult/third_party/polymer/components/iron-jsonp-library/demo/index.html\nthird_party/catapult/third_party/polymer/components/iron-jsonp-library/iron-jsonp-library.html\nthird_party/catapult/third_party/polymer/components/iron-overlay-behavior/iron-focusables-helper.html\nthird_party/catapult/third_party/polymer/components/iron-overlay-behavior/iron-overlay-manager.html\nthird_party/catapult/third_party/polymer/components/neon-animation/neon-animated-pages.html\nthird_party/catapult/third_party/polymer/components/paper-button/package.json\nthird_party/catapult/third_party/polymer/components/paper-button/paper-button.html\nthird_party/catapult/third_party/polymer/components/paper-card/paper-card.html\nthird_party/catapult/third_party/polymer/components/paper-checkbox/paper-checkbox.html\nthird_party/catapult/third_party/polymer/components/paper-dialog/paper-dialog.html\nthird_party/catapult/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html\nthird_party/catapult/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu.html\nthird_party/catapult/third_party/polymer/components/paper-fab/paper-fab.html\nthird_party/catapult/third_party/polymer/components/paper-icon-button/paper-icon-button.html\nthird_party/catapult/third_party/polymer/components/paper-input/paper-input.html\nthird_party/catapult/third_party/polymer/components/paper-item/paper-item.html\nthird_party/catapult/third_party/polymer/components/paper-listbox/paper-listbox.html\nthird_party/catapult/third_party/polymer/components/paper-material/paper-material.html\nthird_party/catapult/third_party/polymer/components/paper-menu-button/paper-menu-button.html\nthird_party/catapult/third_party/polymer/components/paper-menu/paper-menu.html\nthird_party/catapult/third_party/polymer/components/paper-progress/paper-progress.html\nthird_party/catapult/third_party/polymer/components/paper-radio-button/paper-radio-button.html\nthird_party/catapult/third_party/polymer/components/paper-radio-group/paper-radio-group.html\nthird_party/catapult/third_party/polymer/components/paper-ripple/paper-ripple.html\nthird_party/catapult/third_party/polymer/components/paper-spinner/paper-spinner-lite.html\nthird_party/catapult/third_party/polymer/components/paper-spinner/paper-spinner.html\nthird_party/catapult/third_party/polymer/components/paper-styles/classes/typography.html\nthird_party/catapult/third_party/polymer/components/paper-styles/default-theme.html\nthird_party/catapult/third_party/polymer/components/paper-styles/element-styles/paper-item-styles.html\nthird_party/catapult/third_party/polymer/components/paper-styles/element-styles/paper-material-styles.html\nthird_party/catapult/third_party/polymer/components/paper-styles/paper-styles.html\nthird_party/catapult/third_party/polymer/components/paper-tabs/paper-tabs.html\nthird_party/catapult/third_party/polymer/components/paper-toast/paper-toast.html\nthird_party/catapult/third_party/polymer/components/paper-tooltip/paper-tooltip.html\nthird_party/catapult/third_party/polymer/components/shadycss/src/style-settings.js\nthird_party/catapult/third_party/polymer/components/web-animations-js/src/apply-preserving-inline-style.js\nthird_party/catapult/third_party/polymer/components/webcomponentsjs/ShadowDOM.js\nthird_party/catapult/third_party/polymer/components/webcomponentsjs/ShadowDOM.min.js\nthird_party/catapult/third_party/polymer/components/webcomponentsjs/webcomponents.js\nthird_party/catapult/third_party/polymer/components/webcomponentsjs/webcomponents.min.js\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/ber/decoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/ber/encoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/ber/eoo.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/cer/decoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/cer/encoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/der/decoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/der/encoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/native/decoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/codec/native/encoder.py\nthird_party/catapult/third_party/pyasn1/pyasn1/compat/binary.py\nthird_party/catapult/third_party/pyasn1/pyasn1/compat/calling.py\nthird_party/catapult/third_party/pyasn1/pyasn1/compat/dateandtime.py\nthird_party/catapult/third_party/pyasn1/pyasn1/compat/integer.py\nthird_party/catapult/third_party/pyasn1/pyasn1/compat/octets.py\nthird_party/catapult/third_party/pyasn1/pyasn1/compat/string.py\nthird_party/catapult/third_party/pyasn1/pyasn1/debug.py\nthird_party/catapult/third_party/pyasn1/pyasn1/error.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/base.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/char.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/constraint.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/error.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/namedtype.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/namedval.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/opentype.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/tag.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/tagmap.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/univ.py\nthird_party/catapult/third_party/pyasn1/pyasn1/type/useful.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/pem.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1155.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1157.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1901.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1902.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1905.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2251.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2314.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2315.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2437.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2459.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2511.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2560.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2986.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3280.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3281.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3412.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3414.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3447.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3852.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc4210.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc4211.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc5208.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc5280.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc5652.py\nthird_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc6402.py\nthird_party/catapult/third_party/python_gflags/Makefile\nthird_party/catapult/third_party/python_gflags/gflags.py\nthird_party/catapult/third_party/python_gflags/gflags_validators.py\nthird_party/catapult/third_party/python_gflags/setup.py\nthird_party/catapult/third_party/snap-it/tests/tests.js\nthird_party/catapult/third_party/typ/setup.py\nthird_party/catapult/third_party/typ/typ/artifacts.py\nthird_party/catapult/third_party/typ/typ/fakes/test_result_server_fake.py\nthird_party/catapult/third_party/typ/typ/json_results.py\nthird_party/catapult/third_party/typ/typ/result_sink.py\nthird_party/catapult/third_party/typ/typ/tests/expectations_parser_test.py\nthird_party/catapult/third_party/typ/typ/tests/result_sink_test.py\nthird_party/catapult/third_party/vinn/third_party/parse5/benchmark/package.json\nthird_party/catapult/third_party/vinn/third_party/parse5/benchmark/spec.html\nthird_party/catapult/third_party/vinn/third_party/parse5/lib/tokenization/tokenizer.js\nthird_party/catapult/third_party/vinn/third_party/parse5/package.json\nthird_party/catapult/third_party/vinn/third_party/parse5/parse5.js\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/cern/expected.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/cern/src.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/dx/expected.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/dx/src.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/github_parse5/expected.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/github_parse5/src.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/wiki_42/expected.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/wiki_42/src.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/lhc/expected.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/lhc/src.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/nodejsorg/expected.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/nodejsorg/src.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/npmorg/expected.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/npmorg/src.html\nthird_party/catapult/third_party/vinn/third_party/parse5/test/fixtures/tokenizer_test.js\nthird_party/catapult/third_party/webapp2/docs/_themes/webapp2/layout.html\nthird_party/catapult/third_party/webapp2/setup.py\nthird_party/catapult/third_party/webapp2/tests/extras_appengine_users_test.py\nthird_party/catapult/third_party/webapp2/tests/extras_routes_test.py\nthird_party/catapult/third_party/webapp2/tests/misc_test.py\nthird_party/catapult/third_party/webapp2/tests/routing_test.py\nthird_party/catapult/third_party/webapp2/webapp2.py\nthird_party/catapult/third_party/webapp2/webapp2_extras/appengine/auth/models.py\nthird_party/catapult/third_party/webapp2/webapp2_extras/json.py\nthird_party/catapult/third_party/webapp2/webapp2_extras/routes.py\nthird_party/catapult/third_party/webapp2/webapp2_extras/security.py\nthird_party/catapult/third_party/webtest/webtest/response.py\nthird_party/catapult/third_party/werkzeug/testapp.py\nthird_party/catapult/trace_processor/experimental/mappers/scheduling/map_gesture_timing.html\nthird_party/catapult/trace_processor/experimental/mappers/scheduling/map_input_blockers.html\nthird_party/catapult/trace_processor/experimental/mappers/scheduling/map_rendering_cost.html\nthird_party/catapult/trace_processor/experimental/mappers/scheduling/map_wake_ups.html\nthird_party/catapult/trace_processor/experimental/mappers/v8_map_function.html\nthird_party/catapult/trace_processor/trace_uploader/appengine_config.py\nthird_party/catapult/trace_processor/trace_uploader/cloud_config.py\nthird_party/catapult/tracing/bower.json\nthird_party/catapult/tracing/third_party/gl-matrix/bower.json\nthird_party/catapult/tracing/third_party/gl-matrix/jsdoc-template/static/default.css\nthird_party/catapult/tracing/third_party/gl-matrix/package.json\nthird_party/catapult/tracing/third_party/mocha/mocha.js\nthird_party/catapult/tracing/third_party/oboe/test/libs/es5-sham.js\nthird_party/catapult/tracing/third_party/oboe/test/libs/es5-shim.js\nthird_party/catapult/tracing/third_party/oboe/test/require/require.js\nthird_party/catapult/tracing/third_party/oboe/test/specs/oboe.integration.spec.js\nthird_party/catapult/tracing/tracing/base/math/running_statistics.html\nthird_party/catapult/tracing/tracing/base/multi_dimensional_view_test.html\nthird_party/catapult/tracing/tracing/base/utils_test.html\nthird_party/catapult/tracing/tracing/core/filter.html\nthird_party/catapult/tracing/tracing/extras/ads/domain_category.html\nthird_party/catapult/tracing/tracing/extras/ads/domain_category_test.html\nthird_party/catapult/tracing/tracing/extras/android/android_auditor.html\nthird_party/catapult/tracing/tracing/extras/chrome/cc/input_latency_async_slice.html\nthird_party/catapult/tracing/tracing/extras/chrome/cc/picture.html\nthird_party/catapult/tracing/tracing/extras/chrome/chrome_auditor_test.html\nthird_party/catapult/tracing/tracing/extras/chrome/estimated_input_latency.html\nthird_party/catapult/tracing/tracing/extras/chrome/time_to_interactive.html\nthird_party/catapult/tracing/tracing/extras/importer/android/event_log_importer.html\nthird_party/catapult/tracing/tracing/extras/importer/etw/etw_importer.html\nthird_party/catapult/tracing/tracing/extras/importer/etw/process_parser.html\nthird_party/catapult/tracing/tracing/extras/importer/etw/thread_parser.html\nthird_party/catapult/tracing/tracing/extras/importer/fuchsia_importer.html\nthird_party/catapult/tracing/tracing/extras/importer/legacy_heap_dump_trace_event_importer.html\nthird_party/catapult/tracing/tracing/extras/importer/profiling_dictionary_reader.html\nthird_party/catapult/tracing/tracing/extras/importer/v8/v8_log_importer_test.html\nthird_party/catapult/tracing/tracing/extras/net/net_async_slice_test.html\nthird_party/catapult/tracing/tracing/extras/symbolizer/symbolize_trace.py\nthird_party/catapult/tracing/tracing/importer/find_load_expectations.html\nthird_party/catapult/tracing/tracing/metrics/media_metric.html\nthird_party/catapult/tracing/tracing/metrics/spa_navigation_helper.html\nthird_party/catapult/tracing/tracing/metrics/system_health/expected_queueing_time_metric.html\nthird_party/catapult/tracing/tracing/model/global_memory_dump.html\nthird_party/catapult/tracing/tracing/model/global_memory_dump_test.html\nthird_party/catapult/tracing/tracing/model/memory_allocator_dump.html\nthird_party/catapult/tracing/tracing/model/source_info/source_info_test.html\nthird_party/catapult/tracing/tracing/model/stack_frame_test.html\nthird_party/catapult/tracing/tracing/model/vm_region.html\nthird_party/catapult/tracing/tracing/mre/cloud_storage.py\nthird_party/catapult/tracing/tracing/ui/analysis/alert_sub_view_test.html\nthird_party/catapult/tracing/tracing/ui/analysis/generic_object_view_test.html\nthird_party/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html\nthird_party/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane.html\nthird_party/catapult/tracing/tracing/ui/base/dom_helpers_test.html\nthird_party/catapult/tracing/tracing/ui/base/table_test.html\nthird_party/catapult/tracing/tracing/ui/extras/about_tracing/inspector_connection.html\nthird_party/catapult/tracing/tracing/ui/extras/about_tracing/profiling_view.html\nthird_party/catapult/tracing/tracing/ui/extras/chrome/codesearch.html\nthird_party/catapult/tracing/tracing/ui/extras/drive/comments_side_panel_test.html\nthird_party/catapult/tracing/tracing/ui/extras/drive/index.html\nthird_party/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table.html\nthird_party/catapult/tracing/tracing/ui/timeline_view.html\nthird_party/catapult/tracing/tracing/value/chart_json_converter_test.html\nthird_party/catapult/tracing/tracing/value/histogram.py\nthird_party/catapult/tracing/tracing/value/histogram_importer.html\nthird_party/catapult/tracing/tracing/value/ui/generic_set_span_test.html\nthird_party/catapult/tracing/tracing/value/ui/scalar_context_controller.html\nthird_party/catapult/tracing/tracing/value/ui/scalar_span.html\nthird_party/catapult/tracing/tracing_build/histograms_viewer.html\nthird_party/catapult/tracing/tracing_build/merge_traces.py\nthird_party/catapult/tracing/tracing_examples/string_convert.js\nthird_party/catapult/web_page_replay_go/PRESUBMIT.py\nthird_party/ced/src/compact_enc_det/compact_enc_det_unittest.cc\nthird_party/cld_3/src/setup.py\nthird_party/cld_3/src/src/script_span/getonescriptspan.cc\nthird_party/cld_3/src/src/script_span/getonescriptspan.h\nthird_party/cld_3/src/src/script_span/offsetmap.cc\nthird_party/cld_3/src/src/script_span/offsetmap.h\nthird_party/cld_3/src/src/script_span/utf8statetable.h\nthird_party/colorama/src/demos/demo09.py\nthird_party/compiler-rt/src/lib/asan/asan_ignorelist.txt\nthird_party/compiler-rt/src/lib/asan/asan_malloc_win.cpp\nthird_party/compiler-rt/src/lib/asan/asan_win.cpp\nthird_party/compiler-rt/src/lib/fuzzer/FuzzerSHA1.cpp\nthird_party/compiler-rt/src/lib/fuzzer/FuzzerUtilWindows.cpp\nthird_party/compiler-rt/src/lib/hwasan/hwasan_dynamic_shadow.cpp\nthird_party/compiler-rt/src/lib/hwasan/hwasan_report.cpp\nthird_party/compiler-rt/src/lib/interception/interception_win.cpp\nthird_party/compiler-rt/src/lib/profile/WindowsMMap.c\nthird_party/compiler-rt/src/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp\nthird_party/compiler-rt/src/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp\nthird_party/compiler-rt/src/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h\nthird_party/compiler-rt/src/lib/sanitizer_common/sanitizer_symbolizer_win.cpp\nthird_party/compiler-rt/src/lib/sanitizer_common/sanitizer_tls_get_addr.h\nthird_party/compiler-rt/src/lib/sanitizer_common/sanitizer_win.cpp\nthird_party/compiler-rt/src/lib/scudo/standalone/platform.h\nthird_party/compiler-rt/src/lib/tsan/rtl/tsan_rtl_access.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Darwin/address-range-limit.mm\nthird_party/compiler-rt/src/test/asan/TestCases/Darwin/cstring_literals_regtest.mm\nthird_party/compiler-rt/src/test/asan/TestCases/Darwin/linked-only.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Darwin/malloc_set_zone_name-mprotect.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Darwin/mixing-global-constructors.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Darwin/objc-odr.mm\nthird_party/compiler-rt/src/test/asan/TestCases/Darwin/reexec-insert-libraries-env.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/clone_test.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/globals-gc-sections-lld.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/init-order-dlopen.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/interception_readdir_r_test.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/kernel-area.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/malloc-in-qsort.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/nohugepage_test.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/odr-violation.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/overflow-in-qsort.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/ptrace.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/shmctl.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Linux/stack-trace-dlclose.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/coverage-module-unloaded.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/coverage.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/dlclose-test.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/glob.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/no_asan_gen_globals.c\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/tsd_dtor_leak.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Posix/wait4.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Windows/crt_initializers.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Windows/dll_operator_array_new_with_dtor_left_oob.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Windows/longjmp.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Windows/msvc/dll_seh.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Windows/msvc/seh.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/Windows/operator_array_new_with_dtor_left_oob.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/atexit_stats.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/default_ignorelist.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/heap-overflow-large.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/initialization-bug-no-global.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/initialization-bug.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/log-path_test.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/printf-3.c\nthird_party/compiler-rt/src/test/asan/TestCases/throw_call_test.cpp\nthird_party/compiler-rt/src/test/asan/TestCases/time_interceptor.cpp\nthird_party/compiler-rt/src/test/cfi/cross-dso/target_out_of_bounds.cpp\nthird_party/compiler-rt/src/test/fuzzer/lit.cfg.py\nthird_party/compiler-rt/src/test/lsan/TestCases/new_array_with_dtor_0.cpp\nthird_party/compiler-rt/src/test/lsan/TestCases/thread_context_crash.cpp\nthird_party/compiler-rt/src/test/msan/select_float_origin.cpp\nthird_party/compiler-rt/src/test/sanitizer_common/TestCases/Linux/allow_user_segv.cpp\nthird_party/compiler-rt/src/test/sanitizer_common/TestCases/Linux/dn_expand.cpp\nthird_party/compiler-rt/src/test/tsan/ignore_lib6.cpp\nthird_party/compiler-rt/src/test/tsan/mmap_stress.cpp\nthird_party/compiler-rt/src/test/tsan/pthread_atfork_deadlock2.c\nthird_party/compiler-rt/src/test/tsan/pthread_atfork_deadlock3.c\nthird_party/compiler-rt/src/test/tsan/pthread_key.cpp\nthird_party/compiler-rt/src/test/ubsan/TestCases/Misc/log-path_test.cpp\nthird_party/content_analysis_sdk/src/agent/src/scoped_print_handle_win.cc\nthird_party/content_analysis_sdk/src/common/utils_win.cc\nthird_party/cpu_features/src/src/impl_arm_linux_or_android.c\nthird_party/cpu_features/src/src/impl_x86_windows.c\nthird_party/cpu_features/src/test/cpuinfo_arm_test.cc\nthird_party/cpuinfo/src/test/mock/moto-e-gen1.h\nthird_party/cpuinfo/src/test/mock/moto-g-gen1.h\nthird_party/cpuinfo/src/test/mock/moto-g-gen2.h\nthird_party/cpuinfo/src/test/mock/moto-g-gen3.h\nthird_party/cpuinfo/src/test/mock/moto-g-gen4.h\nthird_party/cpuinfo/src/test/mock/moto-g-gen5.h\nthird_party/cpuinfo/src/test/mock/nexus-s.h\nthird_party/cpuinfo/src/test/mock/nexus10.h\nthird_party/cpuinfo/src/test/mock/nexus4.h\nthird_party/cpuinfo/src/test/mock/nexus5x.h\nthird_party/cpuinfo/src/test/mock/nexus6.h\nthird_party/cpuinfo/src/test/mock/nexus6p.h\nthird_party/cpuinfo/src/test/mock/nexus9.h\nthird_party/cpuinfo/src/test/mock/padcod-10.1.h\nthird_party/cpuinfo/src/test/mock/pixel-2-xl.h\nthird_party/cpuinfo/src/test/mock/pixel-c.h\nthird_party/cpuinfo/src/test/mock/pixel-xl.h\nthird_party/cpuinfo/src/test/mock/pixel.h\nthird_party/crashpad/crashpad/build/install_linux_sysroot.py\nthird_party/crashpad/crashpad/client/crashpad_client_fuchsia.cc\nthird_party/crashpad/crashpad/client/crashpad_client_win.cc\nthird_party/crashpad/crashpad/client/ios_handler/in_process_handler.cc\nthird_party/crashpad/crashpad/client/length_delimited_ring_buffer.h\nthird_party/crashpad/crashpad/client/prune_crash_reports.cc\nthird_party/crashpad/crashpad/compat/android/dlfcn_internal.h\nthird_party/crashpad/crashpad/compat/android/sys/mman.h\nthird_party/crashpad/crashpad/compat/linux/sys/ptrace.h\nthird_party/crashpad/crashpad/compat/win/winnt.h\nthird_party/crashpad/crashpad/doc/support/crashpad.doxy.h\nthird_party/crashpad/crashpad/doc/support/crashpad_doxygen.css\nthird_party/crashpad/crashpad/handler/handler_main.cc\nthird_party/crashpad/crashpad/handler/linux/exception_handler_server.cc\nthird_party/crashpad/crashpad/handler/mac/file_limit_annotation.h\nthird_party/crashpad/crashpad/handler/win/crash_other_program.cc\nthird_party/crashpad/crashpad/handler/win/wer/crashpad_wer.cc\nthird_party/crashpad/crashpad/handler/win/wer/crashpad_wer_main.cc\nthird_party/crashpad/crashpad/minidump/minidump_extensions.h\nthird_party/crashpad/crashpad/minidump/minidump_memory_writer.cc\nthird_party/crashpad/crashpad/minidump/minidump_memory_writer.h\nthird_party/crashpad/crashpad/package.h\nthird_party/crashpad/crashpad/snapshot/BUILD.gn\nthird_party/crashpad/crashpad/snapshot/elf/elf_image_reader.cc\nthird_party/crashpad/crashpad/snapshot/elf/module_snapshot_elf.cc\nthird_party/crashpad/crashpad/snapshot/elf/module_snapshot_elf.h\nthird_party/crashpad/crashpad/snapshot/fuchsia/process_reader_fuchsia.cc\nthird_party/crashpad/crashpad/snapshot/fuchsia/process_snapshot_fuchsia.cc\nthird_party/crashpad/crashpad/snapshot/fuchsia/system_snapshot_fuchsia.cc\nthird_party/crashpad/crashpad/snapshot/handle_snapshot.h\nthird_party/crashpad/crashpad/snapshot/linux/system_snapshot_linux.cc\nthird_party/crashpad/crashpad/snapshot/mac/mach_o_image_segment_reader.cc\nthird_party/crashpad/crashpad/snapshot/mac/mach_o_image_symbol_table_reader.cc\nthird_party/crashpad/crashpad/snapshot/mac/process_reader_mac_test.cc\nthird_party/crashpad/crashpad/snapshot/mac/system_snapshot_mac.cc\nthird_party/crashpad/crashpad/snapshot/minidump/module_snapshot_minidump.cc\nthird_party/crashpad/crashpad/snapshot/minidump/process_snapshot_minidump.cc\nthird_party/crashpad/crashpad/snapshot/minidump/system_snapshot_minidump.cc\nthird_party/crashpad/crashpad/snapshot/win/end_to_end_test.py\nthird_party/crashpad/crashpad/snapshot/win/exception_snapshot_win.cc\nthird_party/crashpad/crashpad/snapshot/win/module_snapshot_win.cc\nthird_party/crashpad/crashpad/snapshot/win/module_snapshot_win.h\nthird_party/crashpad/crashpad/snapshot/win/pe_image_reader.cc\nthird_party/crashpad/crashpad/snapshot/win/pe_image_resource_reader.cc\nthird_party/crashpad/crashpad/snapshot/win/process_reader_win.cc\nthird_party/crashpad/crashpad/snapshot/win/process_snapshot_win.cc\nthird_party/crashpad/crashpad/third_party/cpp-httplib/cpp-httplib/httplib.h\nthird_party/crashpad/crashpad/third_party/googletest/BUILD.gn\nthird_party/crashpad/crashpad/tools/generate_dump.cc\nthird_party/crashpad/crashpad/util/file/file_io.h\nthird_party/crashpad/crashpad/util/file/file_io_test.cc\nthird_party/crashpad/crashpad/util/linux/memory_map.cc\nthird_party/crashpad/crashpad/util/misc/paths_fuchsia.cc\nthird_party/crashpad/crashpad/util/net/http_transport_socket.cc\nthird_party/crashpad/crashpad/util/posix/close_multiple.cc\nthird_party/crashpad/crashpad/util/posix/process_info.h\nthird_party/crashpad/crashpad/util/posix/process_info_mac.cc\nthird_party/crashpad/crashpad/util/thread/worker_thread_test.cc\nthird_party/crashpad/crashpad/util/win/command_line.cc\nthird_party/crashpad/crashpad/util/win/command_line_test.cc\nthird_party/crashpad/crashpad/util/win/handle.h\nthird_party/crashpad/crashpad/util/win/nt_internals.h\nthird_party/crashpad/crashpad/util/win/process_info.h\nthird_party/crashpad/crashpad/util/win/process_structs.h\nthird_party/crashpad/crashpad/util/win/registration_protocol_win.cc\nthird_party/crashpad/crashpad/util/win/safe_terminate_process.h\nthird_party/crashpad/crashpad/util/win/safe_terminate_process_test.cc\nthird_party/crashpad/crashpad/util/win/xp_compat.h\nthird_party/crashpad/update.py\nthird_party/cros-components/src/card/card.ts\nthird_party/cros-components/src/orca_feedback/orca-feedback.ts\nthird_party/cros-components/src/snackbar/show_snackbar.ts\nthird_party/cros-components/src/snackbar/snackbar.ts\nthird_party/cros-components/src/textfield/textfield.ts\nthird_party/cros-components/src/tooltip/tooltip.ts\nthird_party/cros_system_api/dbus/bluetooth/dbus-constants.h\nthird_party/cros_system_api/dbus/shill/dbus-constants.h\nthird_party/crossbench-web-tests/cuj/crossbench/sql_packages/cujs/simultaneous_load/tab_load_durations.sql\nthird_party/crossbench/chrome-extension-replay/devtools-recorder/crossbench.html\nthird_party/crossbench/config/benchmark/loadline2/google_docs_instrumentation.js\nthird_party/crossbench/config/benchmark/loadline2/google_search_instrumentation.js\nthird_party/crossbench/config/benchmark/loadline2/webpagereplay_script_injections_phone.json\nthird_party/crossbench/config/benchmark/loadline2/webpagereplay_script_injections_tablet.json\nthird_party/crossbench/config/benchmark/loadline2/youtube_instrumentation.js\nthird_party/crossbench/crossbench/action_runner/action/enums.py\nthird_party/crossbench/crossbench/action_runner/action/position.py\nthird_party/crossbench/crossbench/action_runner/action/text_input.py\nthird_party/crossbench/crossbench/action_runner/default_bond_action_runner.py\nthird_party/crossbench/crossbench/benchmarks/loading/config/login/google.py\nthird_party/crossbench/crossbench/benchmarks/loading/loading_benchmark.py\nthird_party/crossbench/crossbench/benchmarks/loading/page/live.py\nthird_party/crossbench/crossbench/benchmarks/loadline/loadline.py\nthird_party/crossbench/crossbench/benchmarks/powerline/powerline_benchmark.py\nthird_party/crossbench/crossbench/bond/bond.py\nthird_party/crossbench/crossbench/browsers/chrome/downloader.py\nthird_party/crossbench/crossbench/browsers/chromium/applescript.py\nthird_party/crossbench/crossbench/browsers/chromium/driver_finder.py\nthird_party/crossbench/crossbench/browsers/chromium/webdriver.py\nthird_party/crossbench/crossbench/browsers/chromium_based/chromium_based.py\nthird_party/crossbench/crossbench/browsers/edge/webdriver.py\nthird_party/crossbench/crossbench/browsers/firefox/downloader.py\nthird_party/crossbench/crossbench/browsers/firefox/webdriver.py\nthird_party/crossbench/crossbench/cli/cli.py\nthird_party/crossbench/crossbench/cli/config/extension.py\nthird_party/crossbench/crossbench/cli/config/network.py\nthird_party/crossbench/crossbench/cli/exception_formatter.py\nthird_party/crossbench/crossbench/cli/subcommand/pinpoint.py\nthird_party/crossbench/crossbench/pinpoint/api.py\nthird_party/crossbench/crossbench/pinpoint/auth.py\nthird_party/crossbench/crossbench/pinpoint/job_results.py\nthird_party/crossbench/crossbench/pinpoint/list_jobs.py\nthird_party/crossbench/crossbench/pinpoint/patch_resolver.py\nthird_party/crossbench/crossbench/plt/android_adb.py\nthird_party/crossbench/crossbench/probes/chrome_histograms.py\nthird_party/crossbench/crossbench/probes/perfetto/downloader.py\nthird_party/crossbench/crossbench/probes/performance_entries.py\nthird_party/crossbench/crossbench/probes/profiling/browser_profiling.py\nthird_party/crossbench/crossbench/probes/profiling/context/base.py\nthird_party/crossbench/crossbench/probes/profiling/enum.py\nthird_party/crossbench/crossbench/probes/trace_processor/queries/loadline/breakdown.sql\nthird_party/crossbench/crossbench/probes/web_page_replay/recorder.py\nthird_party/crossbench/protoc/compile.py\nthird_party/crossbench/tests/crossbench/benchmarks/loading/action_runner/test_default_bond_action_runner.py\nthird_party/crossbench/tests/crossbench/benchmarks/loading/config/test_example_configs.py\nthird_party/crossbench/tests/crossbench/benchmarks/loading/config/test_login.py\nthird_party/crossbench/tests/crossbench/benchmarks/loading/config/test_pages.py\nthird_party/crossbench/tests/crossbench/benchmarks/loading/test_loading.py\nthird_party/crossbench/tests/crossbench/network/test_web_page_replay.py\nthird_party/crossbench/tests/crossbench/pinpoint/test_config.py\nthird_party/crossbench/tests/crossbench/pinpoint/test_job_config.py\nthird_party/crossbench/tests/crossbench/pinpoint/test_job_results.py\nthird_party/crossbench/tests/crossbench/pinpoint/test_patch_resolver.py\nthird_party/crossbench/tests/crossbench/pinpoint/test_start_job.py\nthird_party/crossbench/tests/crossbench/plt/test_chromeos_ssh.py\nthird_party/crossbench/tests/crossbench/probes/test_js.py\nthird_party/crossbench/tests/crossbench/probes/test_meminfo.py\nthird_party/crossbench/tests/crossbench/probes/test_perfetto.py\nthird_party/crossbench/tests/crossbench/probes/test_v8_rcs.py\nthird_party/crossbench/tests/crossbench/test_config.py\nthird_party/crossbench/tests/crossbench/test_env.py\nthird_party/crossbench/tests/crossbench/test_parse.py\nthird_party/crossbench/tests/end2end/android/test_wpr_record_and_replay.py\nthird_party/crossbench/tests/end2end/desktop/test_cli.py\nthird_party/dav1d/BUILD.gn\nthird_party/dav1d/generate_source.py\nthird_party/dav1d/libdav1d/tests/checkasm/itx.c\nthird_party/dav1d/libdav1d/tools/input/annexb.c\nthird_party/dav1d/libdav1d/tools/input/parse.h\nthird_party/dav1d/libdav1d/tools/input/section5.c\nthird_party/dawn/.vscode/tasks.json\nthird_party/dawn/CMakeLists.txt\nthird_party/dawn/generator/dawn_json_generator.py\nthird_party/dawn/infra/specs/PRESUBMIT.py\nthird_party/dawn/scripts/roll_chromium_deps.py\nthird_party/dawn/scripts/roll_chromium_deps.py.vpython3\nthird_party/dawn/src/dawn/common/Constants.h\nthird_party/dawn/src/dawn/common/SystemUtils.cpp\nthird_party/dawn/src/dawn/dawn.json\nthird_party/dawn/src/dawn/native/BindGroupLayoutInternal.h\nthird_party/dawn/src/dawn/native/CommandAllocator.cpp\nthird_party/dawn/src/dawn/native/Commands.h\nthird_party/dawn/src/dawn/native/CopyTextureForBrowserHelper.cpp\nthird_party/dawn/src/dawn/native/Device.h\nthird_party/dawn/src/dawn/native/Features.cpp\nthird_party/dawn/src/dawn/native/Limits.cpp\nthird_party/dawn/src/dawn/native/ResourceTable.cpp\nthird_party/dawn/src/dawn/native/ResourceTable.h\nthird_party/dawn/src/dawn/native/Sampler.h\nthird_party/dawn/src/dawn/native/ShaderModule.cpp\nthird_party/dawn/src/dawn/native/SubresourceStorage.h\nthird_party/dawn/src/dawn/native/Texture.cpp\nthird_party/dawn/src/dawn/native/Texture.h\nthird_party/dawn/src/dawn/native/Toggles.cpp\nthird_party/dawn/src/dawn/native/d3d/D3DError.cpp\nthird_party/dawn/src/dawn/native/d3d11/BindGroupTrackerD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/BufferD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/DeviceD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/DeviceInfoD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/PhysicalDeviceD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/PipelineLayoutD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/QueueD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/SamplerD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/SwapChainD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d11/TextureD3D11.cpp\nthird_party/dawn/src/dawn/native/d3d12/BufferD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/CommandBufferD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/D3D12Info.cpp\nthird_party/dawn/src/dawn/native/d3d12/PhysicalDeviceD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/ResourceAllocatorManagerD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/ResourceAllocatorManagerD3D12.h\nthird_party/dawn/src/dawn/native/d3d12/SamplerD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/SharedBufferMemoryD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/SharedTextureMemoryD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/TextureD3D12.cpp\nthird_party/dawn/src/dawn/native/d3d12/UtilsD3D12.cpp\nthird_party/dawn/src/dawn/native/metal/CommandBufferMTL.mm\nthird_party/dawn/src/dawn/native/metal/DeviceMTL.mm\nthird_party/dawn/src/dawn/native/metal/MultiDrawEncoder.mm\nthird_party/dawn/src/dawn/native/metal/QueueMTL.h\nthird_party/dawn/src/dawn/native/opengl/CommandBufferGL.cpp\nthird_party/dawn/src/dawn/native/opengl/ContextEGL.cpp\nthird_party/dawn/src/dawn/native/opengl/TextureGL.cpp\nthird_party/dawn/src/dawn/native/vulkan/BackendVk.cpp\nthird_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.cpp\nthird_party/dawn/src/dawn/native/vulkan/RenderPassCache.h\nthird_party/dawn/src/dawn/native/vulkan/ResourceTableVk.cpp\nthird_party/dawn/src/dawn/native/vulkan/TextureVk.cpp\nthird_party/dawn/src/dawn/native/vulkan/VulkanInfo.cpp\nthird_party/dawn/src/dawn/native/vulkan/VulkanInfo.h\nthird_party/dawn/src/dawn/native/webgpu/DeviceWGPU.cpp\nthird_party/dawn/src/dawn/partition_alloc/partition_alloc/pointers/raw_ptr.h\nthird_party/dawn/src/dawn/partition_alloc/partition_alloc/pointers/raw_ptr_exclusion.h\nthird_party/dawn/src/dawn/partition_alloc/partition_alloc/pointers/raw_ref.h\nthird_party/dawn/src/dawn/platform/metrics/HistogramMacros.h\nthird_party/dawn/src/dawn/tests/DawnTest.cpp\nthird_party/dawn/src/dawn/tests/PartitionAllocSupport.cpp\nthird_party/dawn/src/dawn/tests/end2end/ArchTierLimitsExhaustive.cpp\nthird_party/dawn/src/dawn/tests/end2end/BindingArrayTests.cpp\nthird_party/dawn/src/dawn/tests/end2end/BufferHostMappedPointerTests_win.cpp\nthird_party/dawn/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp\nthird_party/dawn/src/dawn/tests/end2end/CopyTests.cpp\nthird_party/dawn/src/dawn/tests/end2end/DepthBiasTests.cpp\nthird_party/dawn/src/dawn/tests/end2end/ResourceTableTests.cpp\nthird_party/dawn/src/dawn/tests/end2end/TextureViewTests.cpp\nthird_party/dawn/src/dawn/tests/end2end/VertexStateTests.cpp\nthird_party/dawn/src/dawn/tests/end2end/VideoViewsTests.h\nthird_party/dawn/src/dawn/tests/end2end/VideoViewsTests_gbm.cpp\nthird_party/dawn/src/dawn/tests/end2end/VideoViewsTests_win.cpp\nthird_party/dawn/src/dawn/tests/perf_tests/DawnPerfTestPlatform.h\nthird_party/dawn/src/dawn/tests/unittests/validation/ComputeValidationTests.cpp\nthird_party/dawn/src/dawn/tests/unittests/validation/CopyCommandsValidationTests.cpp\nthird_party/dawn/src/dawn/tests/unittests/validation/RenderPassDescriptorValidationTests.cpp\nthird_party/dawn/src/dawn/tests/unittests/validation/ResourceTableValidationTests.cpp\nthird_party/dawn/src/dawn/tests/white_box/SharedBufferMemoryTests_win.cpp\nthird_party/dawn/src/dawn/tests/white_box/SharedTextureMemoryTests_dmabuf.cpp\nthird_party/dawn/src/dawn/tests/white_box/VulkanImageWrappingTests_DmaBuf.cpp\nthird_party/dawn/src/dawn/utils/WindowsDebugLogger.cpp\nthird_party/dawn/src/tint/lang/glsl/writer/writer.cc\nthird_party/dawn/src/tint/lang/hlsl/type/rasterizer_ordered_texture_2d.h\nthird_party/dawn/src/tint/lang/hlsl/writer/printer/printer.cc\nthird_party/dawn/src/tint/lang/wgsl/reader/parser/lexer_test.cc\nthird_party/dawn/src/tint/lang/wgsl/resolver/eval_builtin_test.cc\nthird_party/dawn/third_party/dxc/include/dxc/Support/Unicode.h\nthird_party/dawn/third_party/dxc/include/llvm/DebugInfo/PDB/PDBSymbol.h\nthird_party/dawn/third_party/dxc/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h\nthird_party/dawn/third_party/dxc/include/llvm/DebugInfo/PDB/PDBTypes.h\nthird_party/dawn/third_party/dxc/include/llvm/IR/PassManager.h\nthird_party/dawn/third_party/dxc/include/llvm/Support/COFF.h\nthird_party/dawn/third_party/dxc/include/llvm/Support/CommandLine.h\nthird_party/dawn/third_party/dxc/include/llvm/Support/SpecialCaseList.h\nthird_party/dawn/third_party/dxc/include/llvm/Support/TimeProfiler.h\nthird_party/dawn/third_party/dxc/include/llvm/Support/Valgrind.h\nthird_party/dawn/third_party/dxc/include/llvm/Support/Win64EH.h\nthird_party/dawn/third_party/dxc/include/miniz/miniz.h\nthird_party/dawn/third_party/dxc/lib/Analysis/DxilConstantFolding.cpp\nthird_party/dawn/third_party/dxc/lib/DxcSupport/FileIOHelper.cpp\nthird_party/dawn/third_party/dxc/lib/DxcSupport/WinAdapter.cpp\nthird_party/dawn/third_party/dxc/lib/DxilCompression/miniz.h\nthird_party/dawn/third_party/dxc/lib/Fuzzer/FuzzerSHA1.cpp\nthird_party/dawn/third_party/dxc/lib/HLSL/DxilExpandTrigIntrinsics.cpp\nthird_party/dawn/third_party/dxc/lib/Support/Windows/MSFileSystem.inc.cpp\nthird_party/dawn/third_party/dxc/lib/Transforms/Instrumentation/AddressSanitizer.cpp\nthird_party/dawn/third_party/dxc/lib/Transforms/Instrumentation/ThreadSanitizer.cpp\nthird_party/dawn/third_party/dxc/lib/Transforms/Instrumentation/memorysanitizer.cpp\nthird_party/dawn/third_party/dxc/tools/clang/include/clang/Basic/TargetInfo.h\nthird_party/dawn/third_party/dxc/tools/clang/include/clang/Format/Format.h\nthird_party/dawn/third_party/dxc/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h\nthird_party/dawn/third_party/dxc/tools/clang/lib/AST/ASTContext.cpp\nthird_party/dawn/third_party/dxc/tools/clang/lib/CodeGen/CodeGenModule.cpp\nthird_party/dawn/third_party/dxc/tools/clang/lib/Driver/SanitizerArgs.cpp\nthird_party/dawn/third_party/dxc/tools/clang/lib/Format/TokenAnnotator.cpp\nthird_party/dawn/third_party/dxc/tools/clang/lib/Frontend/DependencyFile.cpp\nthird_party/dawn/third_party/dxc/tools/clang/lib/Headers/cuda_builtin_vars.h\nthird_party/dawn/third_party/dxc/tools/clang/lib/Headers/float.h\nthird_party/dawn/third_party/dxc/tools/clang/lib/Lex/PPDirectives.cpp\nthird_party/dawn/third_party/dxc/tools/clang/lib/Lex/Pragma.cpp\nthird_party/dawn/third_party/dxc/tools/clang/lib/Sema/SemaDecl.cpp\nthird_party/dawn/third_party/dxc/tools/clang/test/Lexer/pragma-message.c\nthird_party/dawn/third_party/dxc/tools/clang/test/Lexer/pragma-region.c\nthird_party/dawn/third_party/dxc/tools/clang/test/Preprocessor/pragma-pushpop-macro.c\nthird_party/dawn/third_party/dxc/tools/clang/tools/dotnetc/dndxc.csproj.txt\nthird_party/dawn/third_party/dxc/tools/clang/unittests/HLSL/ClangHLSLTests.vcxproj.user.txt\nthird_party/dawn/third_party/dxc/tools/clang/unittests/HLSLExec/ExecHLSLTests.vcxproj.user.txt\nthird_party/dawn/third_party/dxc/tools/clang/unittests/HLSLExec/ExecutionTest.cpp\nthird_party/dawn/third_party/dxc/tools/clang/unittests/HLSLExec/ShaderOpArith.xml\nthird_party/dawn/third_party/dxc/tools/dxexp/dxexp.cpp\nthird_party/dawn/third_party/dxc/tools/llvm-objdump/COFFDump.cpp\nthird_party/dawn/third_party/dxc/unittests/Support/ManagedStatic.cpp\nthird_party/dawn/third_party/dxc/utils/hct/hctjs.js\nthird_party/dawn/third_party/dxc/utils/hct/hcttracei.py\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-actions.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-cardinalities.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-actions.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-function-mockers.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-nice-strict.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-matchers.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-more-actions.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-more-matchers.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-spec-builders.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/internal/gmock-port.h\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-all.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-cardinalities.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-internal-utils.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-matchers.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-spec-builders.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-death-test.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-message.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-param-test.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-printers.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-spi.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-test-part.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-typed-test.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest_pred_impl.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest_prod.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-death-test-internal.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-filepath.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-internal.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-linked_ptr.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-param-util.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-port.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-string.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-tuple.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-type-util.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-all.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-death-test.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-filepath.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-internal-inl.h\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-port.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-printers.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-test-part.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-typed-test.cc\nthird_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest.cc\nthird_party/dawn/third_party/glfw/deps/nuklear.h\nthird_party/dawn/third_party/glfw/include/GLFW/glfw3native.h\nthird_party/dawn/third_party/glfw/src/linux_joystick.h\nthird_party/dawn/third_party/glfw/src/wl_init.c\nthird_party/dawn/third_party/glfw/src/wl_monitor.c\nthird_party/dawn/third_party/glfw/src/wl_platform.h\nthird_party/dawn/third_party/glfw/src/wl_window.c\nthird_party/dawn/third_party/glfw/src/xkb_unicode.h\nthird_party/dawn/third_party/glfw/tests/triangle-vulkan.c\nthird_party/dawn/third_party/gn/dxc/build/message_compiler.gni\nthird_party/dawn/third_party/gn/dxc/build/message_compiler.py\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_GLES_layers.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_blob_cache.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_create_native_client_buffer.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_framebuffer_target.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_front_buffer_auto_refresh.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_get_frame_timestamps.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_get_native_client_buffer.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_image_native_buffer.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_native_fence_sync.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_presentation_time.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_recordable.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_d3d_share_handle_client_buffer.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_device_d3d.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_sync_control_rate.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_window_fixed_size.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_device_query.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_gl_colorspace_display_p3.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_gl_colorspace_display_p3_passthrough.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_gl_colorspace_scrgb.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_image_gl_colorspace.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_platform_xcb.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_surface_CTA861_3_metadata.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/KHR/EGL_KHR_platform_android.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/MESA/EGL_MESA_platform_surfaceless.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/MESA/EGL_MESA_query_driver.txt\nthird_party/dawn/third_party/khronos/EGL-Registry/extensions/WL/EGL_WL_bind_wayland_display.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ANDROID/ANDROID_extension_pack_es31a.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ANGLE/ANGLE_depth_texture.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_clip_control.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_framebuffer_object.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_map_buffer_range.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_robustness_application_isolation.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_texture_storage.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/GLX_ARB_robustness_application_isolation.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/WGL_ARB_robustness_application_isolation.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_EGL_image_storage.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_clip_control.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_primitive_bounding_box.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_tessellation_shader.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_texture_storage.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/KHR/KHR_parallel_shader_compile.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/MESA/MESA_framebuffer_flip_x.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/MESA/MESA_framebuffer_flip_y.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/MESA/MESA_framebuffer_swap_xy.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/OES/OES_primitive_bounding_box.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/OES/OES_tessellation_shader.txt\nthird_party/dawn/third_party/khronos/OpenGL-Registry/xml/vendors.txt\nthird_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/command_buffer/queries/occlusionQuery.spec.ts\nthird_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/render_pipeline/sample_mask.spec.ts\nthird_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/rendering/depth_bias.spec.ts\nthird_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/sampling/filter_mode.spec.ts\nthird_party/dawn/third_party/webgpu-cts/src/webgpu/multisample_info.ts\nthird_party/dawn/third_party/webgpu-cts/src/webgpu/shader/execution/shader_io/fragment_builtins.spec.ts\nthird_party/dawn/third_party/webgpu-cts/standalone/index.html\nthird_party/dawn/third_party/webgpu-headers/src/webgpu.h\nthird_party/dawn/third_party/webgpu-headers/src/webgpu.json\nthird_party/dawn/tools/src/cmd/cts/config.json\nthird_party/dawn/tools/src/cmd/cts/treemap/treemap.html\nthird_party/depot_tools/PRESUBMIT.py\nthird_party/depot_tools/agents/skills/luci-test-results/scripts/luci_triage.py\nthird_party/depot_tools/auth.py\nthird_party/depot_tools/autoninja.py\nthird_party/depot_tools/bootstrap/bootstrap.py\nthird_party/depot_tools/breakpad.py\nthird_party/depot_tools/build_telemetry.py\nthird_party/depot_tools/cipd_manifest.txt\nthird_party/depot_tools/cipd_manifest_cros_python2.txt\nthird_party/depot_tools/fetch.py\nthird_party/depot_tools/fetch_configs/angle.py\nthird_party/depot_tools/fetch_configs/breakpad.py\nthird_party/depot_tools/fetch_configs/chromium.py\nthird_party/depot_tools/fetch_configs/crashpad.py\nthird_party/depot_tools/fetch_configs/crossbench.py\nthird_party/depot_tools/fetch_configs/dart.py\nthird_party/depot_tools/fetch_configs/dawn.py\nthird_party/depot_tools/fetch_configs/depot_tools.py\nthird_party/depot_tools/fetch_configs/devtools-frontend.py\nthird_party/depot_tools/fetch_configs/gn.py\nthird_party/depot_tools/fetch_configs/gyp.py\nthird_party/depot_tools/fetch_configs/infra_superproject.py\nthird_party/depot_tools/fetch_configs/inspector_protocol.py\nthird_party/depot_tools/fetch_configs/ipcz.py\nthird_party/depot_tools/fetch_configs/libyuv.py\nthird_party/depot_tools/fetch_configs/nacl.py\nthird_party/depot_tools/fetch_configs/naclports.py\nthird_party/depot_tools/fetch_configs/node-ci.py\nthird_party/depot_tools/fetch_configs/node.py\nthird_party/depot_tools/fetch_configs/openscreen.py\nthird_party/depot_tools/fetch_configs/pdfium.py\nthird_party/depot_tools/fetch_configs/skia.py\nthird_party/depot_tools/fetch_configs/skia_buildbot.py\nthird_party/depot_tools/fetch_configs/syzygy.py\nthird_party/depot_tools/fetch_configs/v8.py\nthird_party/depot_tools/fetch_configs/v8_perf.py\nthird_party/depot_tools/fetch_configs/web-tests.py\nthird_party/depot_tools/fetch_configs/web-workload.py\nthird_party/depot_tools/fetch_configs/webpagereplay.py\nthird_party/depot_tools/fetch_configs/webrtc.py\nthird_party/depot_tools/fetch_configs/website.py\nthird_party/depot_tools/gclient.py\nthird_party/depot_tools/gclient_scm.py\nthird_party/depot_tools/gclient_utils.py\nthird_party/depot_tools/gerrit_client.py\nthird_party/depot_tools/gerrit_util.py\nthird_party/depot_tools/git_auth.py\nthird_party/depot_tools/git_cache.py\nthird_party/depot_tools/git_cl.py\nthird_party/depot_tools/git_common.py\nthird_party/depot_tools/git_number.py\nthird_party/depot_tools/git_retry.py\nthird_party/depot_tools/gn_helper.py\nthird_party/depot_tools/gsutil.py\nthird_party/depot_tools/gsutil.py.vpython3\nthird_party/depot_tools/infra_lib/telemetry/__init__.py\nthird_party/depot_tools/infra_lib/telemetry/clearcut_span_exporter.py\nthird_party/depot_tools/infra_lib/telemetry/proto/clientanalytics_pb2.py\nthird_party/depot_tools/infra_lib/telemetry/proto/trace_span_pb2.py\nthird_party/depot_tools/lockfile.py\nthird_party/depot_tools/luci_auth_fido2_plugin.py\nthird_party/depot_tools/man/README.txt\nthird_party/depot_tools/man/html/depot_tools.html\nthird_party/depot_tools/man/html/depot_tools_gerrit_auth.html\nthird_party/depot_tools/man/html/depot_tools_tutorial.html\nthird_party/depot_tools/man/html/git-cl.html\nthird_party/depot_tools/man/html/git-footers.html\nthird_party/depot_tools/man/html/git-freeze.html\nthird_party/depot_tools/man/html/git-hyper-blame.html\nthird_party/depot_tools/man/html/git-map-branches.html\nthird_party/depot_tools/man/html/git-map.html\nthird_party/depot_tools/man/html/git-mark-merge-base.html\nthird_party/depot_tools/man/html/git-nav-downstream.html\nthird_party/depot_tools/man/html/git-nav-upstream.html\nthird_party/depot_tools/man/html/git-new-branch.html\nthird_party/depot_tools/man/html/git-rebase-update.html\nthird_party/depot_tools/man/html/git-rename-branch.html\nthird_party/depot_tools/man/html/git-reparent-branch.html\nthird_party/depot_tools/man/html/git-retry.html\nthird_party/depot_tools/man/html/git-squash-branch.html\nthird_party/depot_tools/man/html/git-thaw.html\nthird_party/depot_tools/man/html/git-upstream-diff.html\nthird_party/depot_tools/man/src/depot_tools_gerrit_auth.txt\nthird_party/depot_tools/man/src/depot_tools_tutorial.txt\nthird_party/depot_tools/mcp/PRESUBMIT.py\nthird_party/depot_tools/mcp/buildbucket.py\nthird_party/depot_tools/mcp/buildbucket_test.py\nthird_party/depot_tools/mcp/common.py\nthird_party/depot_tools/mcp/git_cl.py\nthird_party/depot_tools/mcp/resultdb.py\nthird_party/depot_tools/metadata/dependency_metadata.py\nthird_party/depot_tools/metadata/fields/custom/license.py\nthird_party/depot_tools/metadata/fields/custom/license_allowlist.py\nthird_party/depot_tools/metadata/tests/parse_test.py\nthird_party/depot_tools/metrics_utils.py\nthird_party/depot_tools/my_activity.py\nthird_party/depot_tools/newauth.py\nthird_party/depot_tools/ninja.py\nthird_party/depot_tools/ninjalog_uploader.py\nthird_party/depot_tools/owners_client.py\nthird_party/depot_tools/owners_finder.py\nthird_party/depot_tools/presubmit_canned_checks.py\nthird_party/depot_tools/presubmit_diff.py\nthird_party/depot_tools/presubmit_support.py\nthird_party/depot_tools/rdb_wrapper.py\nthird_party/depot_tools/recipes/recipe_modules/bot_update/api.py\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/add_blamelists.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/add_blamelists_bot_update_failure.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic_with_branch_heads.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/bot_update_failure.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/clobber.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/deprecated_got_revision_mapping.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_rebase_patch_ref.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_reset.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/input_commit_with_id_without_repo.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/multiple_patch_refs.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_HEAD.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_a_branch_head.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_a_specific_commit.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_main.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/origin_main.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/refs.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/reset_root_solution_revision.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/resolve_chromium_fixed_version.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/revision_fallback_chain_set_output_commit.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/revision_specifying_ref.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/stale-process-duration-override.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch_download.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_angle.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_branch_heads.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_feature_branch.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_v8_feature_branch.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_webrtc.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8_head_by_default.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/upload_traces.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/upload_traces_fail.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/with_experiments.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/with_tags.json\nthird_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.py\nthird_party/depot_tools/recipes/recipe_modules/bot_update/resources/bot_update.py\nthird_party/depot_tools/recipes/recipe_modules/bot_update/tests/do_not_retry_patch_failures_in_cq.py\nthird_party/depot_tools/recipes/recipe_modules/bot_update/tests/ensure_checkout_turboci_checks.py\nthird_party/depot_tools/recipes/recipe_modules/gclient/config.py\nthird_party/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/basic.json\nthird_party/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/revision.json\nthird_party/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/tryserver.json\nthird_party/depot_tools/recipes/recipe_modules/gclient/examples/full.py\nthird_party/depot_tools/recipes/recipe_modules/gclient/tests/diff_deps.py\nthird_party/depot_tools/recipes/recipe_modules/gclient/tests/patch_project.py\nthird_party/depot_tools/recipes/recipe_modules/gerrit/api.py\nthird_party/depot_tools/recipes/recipe_modules/gerrit/examples/full.expected/basic.json\nthird_party/depot_tools/recipes/recipe_modules/gerrit/examples/full.py\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_branch.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_file_name.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_hash.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_ref.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_submodule_update_force.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_tags.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/can_fail_build.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/cannot_fail_build.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/cat-file_test.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_delta.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_failed.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_with_bad_output.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_with_bad_output_fails_build.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/curl_trace_file.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-cache-checkout.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-checkout-with-depth.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-fetch-with-maintenance.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-fetch-without-auto-gc.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/new_branch_failed.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/platform_win.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/rebase_failed.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/remote_not_origin.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/set_got_revision.json\nthird_party/depot_tools/recipes/recipe_modules/git/examples/full.py\nthird_party/depot_tools/recipes/recipe_modules/git/tests/ls_remote.py\nthird_party/depot_tools/recipes/recipe_modules/gitiles/api.py\nthird_party/depot_tools/recipes/recipe_modules/gitiles/examples/full.expected/basic.json\nthird_party/depot_tools/recipes/recipe_modules/gitiles/examples/full.py\nthird_party/depot_tools/recipes/recipe_modules/gitiles/resources/gerrit_client.py\nthird_party/depot_tools/recipes/recipe_modules/gitiles/test_api.py\nthird_party/depot_tools/recipes/recipe_modules/gsutil/api.py\nthird_party/depot_tools/recipes/recipe_modules/gsutil/examples/full.expected/basic.json\nthird_party/depot_tools/recipes/recipe_modules/gsutil/examples/full.py\nthird_party/depot_tools/recipes/recipe_modules/osx_sdk/__init__.py\nthird_party/depot_tools/recipes/recipe_modules/osx_sdk/api.py\nthird_party/depot_tools/recipes/recipe_modules/presubmit/api.py\nthird_party/depot_tools/recipes/recipe_modules/presubmit/tests/execute.py\nthird_party/depot_tools/recipes/recipe_modules/tryserver/api.py\nthird_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_gerrit_patch.json\nthird_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_gerrit_patch_and_target_ref.json\nthird_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_wrong_patch.json\nthird_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_wrong_patch_new.json\nthird_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.py\nthird_party/depot_tools/recipes/recipe_modules/tryserver/tests/gerrit_change_fetch_ref_timeout.py\nthird_party/depot_tools/recipes/recipe_modules/tryserver/tests/gerrit_change_target_ref.py\nthird_party/depot_tools/recipes/recipe_modules/tryserver/tests/require_is_tryserver.py\nthird_party/depot_tools/recipes/recipe_proto/turboci/update.py\nthird_party/depot_tools/recipes/recipes.py\nthird_party/depot_tools/reclient_helper.py\nthird_party/depot_tools/roll_dep.py\nthird_party/depot_tools/siso.py\nthird_party/depot_tools/split_cl.py\nthird_party/depot_tools/subprocess2.py\nthird_party/depot_tools/testing_support/fake_repos.py\nthird_party/depot_tools/tests/bot_update_coverage_test.py\nthird_party/depot_tools/tests/build_telemetry_test.py\nthird_party/depot_tools/tests/fetch_test.py\nthird_party/depot_tools/tests/gclient_cipd_smoketest.py\nthird_party/depot_tools/tests/gclient_git_smoketest.py\nthird_party/depot_tools/tests/gclient_scm_test.py\nthird_party/depot_tools/tests/gclient_utils_test.py\nthird_party/depot_tools/tests/gerrit_util_test.py\nthird_party/depot_tools/tests/git_auth_test.py\nthird_party/depot_tools/tests/git_cache_test.py\nthird_party/depot_tools/tests/git_cl_creds_check_report.txt\nthird_party/depot_tools/tests/git_cl_test.py\nthird_party/depot_tools/tests/luci_auth_fido2_plugin_test.py\nthird_party/depot_tools/tests/metrics_test.py\nthird_party/depot_tools/tests/presubmit_canned_checks_test.py\nthird_party/depot_tools/tests/presubmit_support_test.py\nthird_party/depot_tools/tests/presubmit_unittest.py\nthird_party/depot_tools/tests/reclient_helper_test.py\nthird_party/depot_tools/tests/roll_dep_test.py\nthird_party/depot_tools/tests/siso_test.py\nthird_party/depot_tools/tests/split_cl_test.py\nthird_party/depot_tools/tests/watchlists_unittest.py\nthird_party/depot_tools/watchlists.py\nthird_party/depot_tools/win32imports.py\nthird_party/depot_tools/win_toolchain/get_toolchain_if_necessary.py\nthird_party/devtools-frontend/src/PRESUBMIT.py\nthird_party/devtools-frontend/src/build_overrides/BUILDCONFIG.gn\nthird_party/devtools-frontend/src/extensions/cxx_debugging/third_party/lit-html/lib/template.js\nthird_party/devtools-frontend/src/extensions/cxx_debugging/third_party/lit-html/src/lib/template.ts\nthird_party/devtools-frontend/src/front_end/core/common/ColorConverter.ts\nthird_party/devtools-frontend/src/front_end/core/host/AidaClient.test.ts\nthird_party/devtools-frontend/src/front_end/core/host/GdpClient.ts\nthird_party/devtools-frontend/src/front_end/core/host/InspectorFrontendHostStub.ts\nthird_party/devtools-frontend/src/front_end/core/i18n/i18nImpl.test.ts\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/af.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/am.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ar.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/as.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/az.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/be.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/bg.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/bn.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/bs.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ca.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/cs.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/cy.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/da.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/de.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/el.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/en-GB.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/es-419.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/es.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/et.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/eu.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/fa.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/fi.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/fil.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/fr-CA.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/fr.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/gl.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/gu.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/he.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/hi.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/hr.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/hu.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/hy.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/id.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/is.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/it.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ja.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ka.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/kk.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/km.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/kn.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ko.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ky.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/lo.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/lt.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/lv.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/mk.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ml.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/mn.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/mr.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ms.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/my.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ne.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/nl.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/no.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/or.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/pa.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/pl.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/pt-PT.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/pt.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ro.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ru.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/si.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/sk.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/sl.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/sq.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/sr-Latn.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/sr.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/sv.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/sw.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ta.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/te.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/th.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/tr.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/uk.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/ur.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/uz.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/vi.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/zh-HK.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/zh-TW.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/zh.json\nthird_party/devtools-frontend/src/front_end/core/i18n/locales/zu.json\nthird_party/devtools-frontend/src/front_end/core/platform/StringUtilities.test.ts\nthird_party/devtools-frontend/src/front_end/core/platform/StringUtilities.ts\nthird_party/devtools-frontend/src/front_end/core/platform/UIString.ts\nthird_party/devtools-frontend/src/front_end/core/protocol_client/CDPConnection.ts\nthird_party/devtools-frontend/src/front_end/core/root/Runtime.test.ts\nthird_party/devtools-frontend/src/front_end/core/root/Runtime.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/CSSMetadata.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/Cookie.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/EnhancedTracesParser.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/NetworkManager.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/NetworkRequest.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/RehydratingConnection.snapshot.txt\nthird_party/devtools-frontend/src/front_end/core/sdk/RehydratingObject.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/ResourceTreeModel.ts\nthird_party/devtools-frontend/src/front_end/core/sdk/SourceMap.ts\nthird_party/devtools-frontend/src/front_end/design_system_tokens.css\nthird_party/devtools-frontend/src/front_end/entrypoint_template.html\nthird_party/devtools-frontend/src/front_end/entrypoints/inspector_main/RenderingOptions.ts\nthird_party/devtools-frontend/src/front_end/entrypoints/inspector_main/inspector_main-meta.ts\nthird_party/devtools-frontend/src/front_end/entrypoints/main/MainImpl.ts\nthird_party/devtools-frontend/src/front_end/entrypoints/main/main-meta.ts\nthird_party/devtools-frontend/src/front_end/generated/Deprecation.ts\nthird_party/devtools-frontend/src/front_end/generated/InspectorBackendCommands.ts\nthird_party/devtools-frontend/src/front_end/generated/protocol-mapping.d.ts\nthird_party/devtools-frontend/src/front_end/generated/protocol-proxy-api.d.ts\nthird_party/devtools-frontend/src/front_end/generated/protocol.ts\nthird_party/devtools-frontend/src/front_end/integration_test_runner.html\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/ExtensionScope.ts\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/agents/FileAgent.ts\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/agents/PerformanceAgent.test.ts\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/agents/PerformanceAgent.ts\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.test.ts\nthird_party/devtools-frontend/src/front_end/models/ai_assistance/performance/AICallTree.snapshot.txt\nthird_party/devtools-frontend/src/front_end/models/badges/AiExplorerBadge.ts\nthird_party/devtools-frontend/src/front_end/models/badges/CodeWhispererBadge.ts\nthird_party/devtools-frontend/src/front_end/models/badges/DOMDetectiveBadge.ts\nthird_party/devtools-frontend/src/front_end/models/badges/SpeedsterBadge.ts\nthird_party/devtools-frontend/src/front_end/models/badges/StarterBadge.ts\nthird_party/devtools-frontend/src/front_end/models/bindings/ResourceUtils.ts\nthird_party/devtools-frontend/src/front_end/models/crux-manager/CrUXManager.test.ts\nthird_party/devtools-frontend/src/front_end/models/crux-manager/CrUXManager.ts\nthird_party/devtools-frontend/src/front_end/models/extensions/HostUrlPattern.test.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/CookieIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/CorsIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/DeprecationIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/GenericIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/HeavyAdIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/PartitioningBlobURLIssue.ts\nthird_party/devtools-frontend/src/front_end/models/issues_manager/SharedArrayBufferIssue.ts\nthird_party/devtools-frontend/src/front_end/models/live-metrics/LiveMetrics.ts\nthird_party/devtools-frontend/src/front_end/models/persistence/NetworkPersistenceManager.test.ts\nthird_party/devtools-frontend/src/front_end/models/persistence/NetworkPersistenceManager.ts\nthird_party/devtools-frontend/src/front_end/models/persistence/PersistenceImpl.test.ts\nthird_party/devtools-frontend/src/front_end/models/persistence/PlatformFileSystem.ts\nthird_party/devtools-frontend/src/front_end/models/project_settings/ProjectSettingsModel.ts\nthird_party/devtools-frontend/src/front_end/models/trace/EntityMapper.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/ModelImpl.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/Styles.ts\nthird_party/devtools-frontend/src/front_end/models/trace/extras/Initiators.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/extras/ThirdParties.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/extras/TraceTree.ts\nthird_party/devtools-frontend/src/front_end/models/trace/handlers/MetaHandler.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/handlers/MetaHandler.ts\nthird_party/devtools-frontend/src/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/handlers/UserInteractionsHandler.ts\nthird_party/devtools-frontend/src/front_end/models/trace/handlers/UserTimingsHandler.ts\nthird_party/devtools-frontend/src/front_end/models/trace/handlers/helpers.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/handlers/helpers.ts\nthird_party/devtools-frontend/src/front_end/models/trace/helpers/Network.ts\nthird_party/devtools-frontend/src/front_end/models/trace/helpers/Trace.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/CLSCulprits.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/Cache.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/Common.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/DOMSize.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/DocumentLatency.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/DuplicatedJavaScript.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/FontDisplay.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/FontDisplay.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/ForcedReflow.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/INPBreakdown.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/ImageDelivery.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/LCPBreakdown.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/LCPDiscovery.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/LegacyJavaScript.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/ModernHTTP.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/ModernHTTP.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/NetworkDependencyTree.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/NetworkDependencyTree.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/RenderBlocking.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/RenderBlocking.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/SlowCSSSelector.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/ThirdParties.ts\nthird_party/devtools-frontend/src/front_end/models/trace/insights/Viewport.ts\nthird_party/devtools-frontend/src/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts\nthird_party/devtools-frontend/src/front_end/models/trace/lantern/graph/NetworkNode.ts\nthird_party/devtools-frontend/src/front_end/models/trace/lantern/graph/PageDependencyGraph.ts\nthird_party/devtools-frontend/src/front_end/models/trace/lantern/metrics/SpeedIndex.ts\nthird_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/ConnectionPool.ts\nthird_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/Constants.ts\nthird_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/Simulator.ts\nthird_party/devtools-frontend/src/front_end/models/trace/types/TraceEvents.ts\nthird_party/devtools-frontend/src/front_end/panels/accessibility/AccessibilityNodeView.ts\nthird_party/devtools-frontend/src/front_end/panels/accessibility/AccessibilityStrings.ts\nthird_party/devtools-frontend/src/front_end/panels/ai_assistance/AiAssistancePanel.ts\nthird_party/devtools-frontend/src/front_end/panels/ai_assistance/PatchWidget.ts\nthird_party/devtools-frontend/src/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts\nthird_party/devtools-frontend/src/front_end/panels/ai_assistance/components/chatInput.css\nthird_party/devtools-frontend/src/front_end/panels/animation/AnimationTimeline.ts\nthird_party/devtools-frontend/src/front_end/panels/application/AppManifestView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/ApplicationPanelSidebar.ts\nthird_party/devtools-frontend/src/front_end/panels/application/BackgroundServiceView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/FrameDetailsView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/application/FrameDetailsView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/InterestGroupTreeElement.ts\nthird_party/devtools-frontend/src/front_end/panels/application/ReportingApiView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/application/ReportingApiView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/ServiceWorkerCacheTreeElement.ts\nthird_party/devtools-frontend/src/front_end/panels/application/StorageBucketsTreeElement.ts\nthird_party/devtools-frontend/src/front_end/panels/application/StorageView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/components/EndpointsGrid.ts\nthird_party/devtools-frontend/src/front_end/panels/application/components/ReportsGrid.ts\nthird_party/devtools-frontend/src/front_end/panels/application/components/SharedStorageAccessGrid.ts\nthird_party/devtools-frontend/src/front_end/panels/application/components/TrustTokensView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/preloading/PreloadingView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts\nthird_party/devtools-frontend/src/front_end/panels/application/preloading/components/PreloadingString.ts\nthird_party/devtools-frontend/src/front_end/panels/application/preloading/components/RuleSetDetailsView.ts\nthird_party/devtools-frontend/src/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/application/preloading/components/UsedPreloadingView.ts\nthird_party/devtools-frontend/src/front_end/panels/autofill/AutofillView.ts\nthird_party/devtools-frontend/src/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts\nthird_party/devtools-frontend/src/front_end/panels/changes/ChangesView.ts\nthird_party/devtools-frontend/src/front_end/panels/common/AiCodeCompletionTeaser.ts\nthird_party/devtools-frontend/src/front_end/panels/common/BadgeNotification.ts\nthird_party/devtools-frontend/src/front_end/panels/common/ExtensionServer.test.ts\nthird_party/devtools-frontend/src/front_end/panels/common/ExtensionServer.ts\nthird_party/devtools-frontend/src/front_end/panels/common/GdpSignUpDialog.test.ts\nthird_party/devtools-frontend/src/front_end/panels/common/GdpSignUpDialog.ts\nthird_party/devtools-frontend/src/front_end/panels/console/ConsoleInsightTeaser.ts\nthird_party/devtools-frontend/src/front_end/panels/console/ConsoleViewMessage.ts\nthird_party/devtools-frontend/src/front_end/panels/console/ErrorStackParser.test.ts\nthird_party/devtools-frontend/src/front_end/panels/coverage/CoverageView.ts\nthird_party/devtools-frontend/src/front_end/panels/css_overview/CSSOverviewStartView.ts\nthird_party/devtools-frontend/src/front_end/panels/elements/ElementStatePaneWidget.test.ts\nthird_party/devtools-frontend/src/front_end/panels/elements/ElementStatePaneWidget.ts\nthird_party/devtools-frontend/src/front_end/panels/elements/components/CSSPropertyDocsView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/emulation/DeviceModeToolbar.ts\nthird_party/devtools-frontend/src/front_end/panels/emulation/emulation-meta.ts\nthird_party/devtools-frontend/src/front_end/panels/explain/components/ConsoleInsight.ts\nthird_party/devtools-frontend/src/front_end/panels/issues/AffectedCookiesView.ts\nthird_party/devtools-frontend/src/front_end/panels/issues/AffectedDirectivesView.ts\nthird_party/devtools-frontend/src/front_end/panels/issues/AffectedMetadataAllowedSitesView.ts\nthird_party/devtools-frontend/src/front_end/panels/issues/AffectedTrackingSitesView.ts\nthird_party/devtools-frontend/src/front_end/panels/issues/IssuesPane.ts\nthird_party/devtools-frontend/src/front_end/panels/lighthouse/LighthouseController.ts\nthird_party/devtools-frontend/src/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts\nthird_party/devtools-frontend/src/front_end/panels/media/MainView.ts\nthird_party/devtools-frontend/src/front_end/panels/mobile_throttling/CalibrationController.ts\nthird_party/devtools-frontend/src/front_end/panels/network/NetworkConfigView.ts\nthird_party/devtools-frontend/src/front_end/panels/network/NetworkDataGridNode.ts\nthird_party/devtools-frontend/src/front_end/panels/network/NetworkLogView.ts\nthird_party/devtools-frontend/src/front_end/panels/network/RequestConditionsDrawer.ts\nthird_party/devtools-frontend/src/front_end/panels/network/RequestCookiesView.ts\nthird_party/devtools-frontend/src/front_end/panels/network/RequestTimingView.ts\nthird_party/devtools-frontend/src/front_end/panels/network/ResourceWebSocketFrameView.ts\nthird_party/devtools-frontend/src/front_end/panels/network/components/RequestHeaderSection.ts\nthird_party/devtools-frontend/src/front_end/panels/network/components/RequestHeadersView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/network/components/RequestHeadersView.ts\nthird_party/devtools-frontend/src/front_end/panels/network/network-meta.ts\nthird_party/devtools-frontend/src/front_end/panels/profiler/HeapSnapshotGridNodes.ts\nthird_party/devtools-frontend/src/front_end/panels/recorder/RecorderController.ts\nthird_party/devtools-frontend/src/front_end/panels/recorder/components/CreateRecordingView.ts\nthird_party/devtools-frontend/src/front_end/panels/settings/AISettingsTab.ts\nthird_party/devtools-frontend/src/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts\nthird_party/devtools-frontend/src/front_end/panels/settings/KeybindsSettingsTab.ts\nthird_party/devtools-frontend/src/front_end/panels/settings/SettingsScreen.ts\nthird_party/devtools-frontend/src/front_end/panels/settings/components/SyncSection.test.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/BreakpointEditDialog.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/BreakpointsView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/BreakpointsViewUtils.test.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/BreakpointsViewUtils.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/DebuggerPausedMessage.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/SourcesNavigator.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/TabbedEditorContainer.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/components/HeadersView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/sources/components/HeadersView.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/Initiators.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/ThreadAppender.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/TimelineFlameChartView.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/TimelinePanel.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/TimelineTreeView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/TimelineTreeView.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/TimelineUIUtils.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/TimelineUIUtils.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/TimingsTrackAppender.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/components/DetailsView.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/components/ExportTraceOptions.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/components/FieldSettingsDialog.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/components/LiveMetricsView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/components/LiveMetricsView.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/components/SidebarInsightsTab.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/components/SidebarSingleInsightSet.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/utils/Helpers.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/utils/Helpers.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/utils/IgnoreList.test.ts\nthird_party/devtools-frontend/src/front_end/panels/timeline/utils/Treemap.test.ts\nthird_party/devtools-frontend/src/front_end/panels/web_audio/WebAudioView.ts\nthird_party/devtools-frontend/src/front_end/panels/webauthn/WebauthnPane.ts\nthird_party/devtools-frontend/src/front_end/panels/whats_new/ReleaseNote.test.ts\nthird_party/devtools-frontend/src/front_end/panels/whats_new/ReleaseNoteText.ts\nthird_party/devtools-frontend/src/front_end/panels/whats_new/ReleaseNoteView.test.ts\nthird_party/devtools-frontend/src/front_end/panels/whats_new/WhatsNewImpl.ts\nthird_party/devtools-frontend/src/front_end/services/tracing/PerformanceTracing.ts\nthird_party/devtools-frontend/src/front_end/testing/test_setup.ts\nthird_party/devtools-frontend/src/front_end/third_party/acorn/package/dist/acorn.js\nthird_party/devtools-frontend/src/front_end/third_party/acorn/package/package.json\nthird_party/devtools-frontend/src/front_end/third_party/axe-core/axe.js\nthird_party/devtools-frontend/src/front_end/third_party/axe-core/axe.min.js\nthird_party/devtools-frontend/src/front_end/third_party/codemirror.next/codemirror.next.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/codemirror/package/lib/codemirror.js\nthird_party/devtools-frontend/src/front_end/third_party/codemirror/package/mode/dtd/dtd.js\nthird_party/devtools-frontend/src/front_end/third_party/codemirror/package/mode/stylus/stylus.js\nthird_party/devtools-frontend/src/front_end/third_party/codemirror/package/mode/vbscript/vbscript.js\nthird_party/devtools-frontend/src/front_end/third_party/codemirror/package/package.json\nthird_party/devtools-frontend/src/front_end/third_party/codemirror/package/src/measurement/position_measurement.js\nthird_party/devtools-frontend/src/front_end/third_party/codemirror/package/theme/mdn-like.css\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/angular.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/flash.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/json/angular.json\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/json/flash.json\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/json/jsonp.json\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/jsonp.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/parser_checks.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/parser_checks_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/security_checks.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/security_checks_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/strictcsp_checks.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/strictcsp_checks_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/csp.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/csp_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/allowlist_bypasses/angular.js\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/allowlist_bypasses/flash.js\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/allowlist_bypasses/jsonp.js\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/checks/security_checks_test.js\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/lighthouse/lighthouse_checks_test.js\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/utils_test.js\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/evaluator.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/evaluator_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/finding.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/finding_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/lighthouse/lighthouse_checks_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/package.json\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/parser.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/parser_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/utils.ts\nthird_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/utils_test.ts\nthird_party/devtools-frontend/src/front_end/third_party/intl-messageformat/package/package.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/lighthouse-dt-bundle.js\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ar-XB.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ar.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/bg.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ca.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/cs.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/da.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/de.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/el.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-GB.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-US.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-XA.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-XL.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/es-419.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/es.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/fi.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/fil.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/fr.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/he.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/hi.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/hr.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/hu.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/id.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/it.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ja.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ko.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/lt.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/lv.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/nl.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/no.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/pl.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/pt-PT.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/pt.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ro.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ru.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sk.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sl.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sr-Latn.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sr.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sv.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ta.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/te.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/th.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/tr.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/uk.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/vi.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/zh-HK.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/zh-TW.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/zh.json\nthird_party/devtools-frontend/src/front_end/third_party/lighthouse/report/bundle.js\nthird_party/devtools-frontend/src/front_end/third_party/lit/lib/decorators.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/lit/lib/lit.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer-replay/package/lib/main.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer-replay/package/package.json\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Target.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Tracing.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Tracing.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Configuration.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CustomQueryHandler.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Device.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Device.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Viewport.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Target.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Tracing.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Tracing.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Configuration.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CustomQueryHandler.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Device.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Device.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Viewport.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/encoding.js\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/types.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Browser.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Frame.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/HTTPRequest.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Input.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Page.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Target.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/WebWorker.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/bidi/Frame.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/cdp/Input.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/cdp/PredefinedNetworkConditions.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/cdp/Tracing.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/Configuration.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/CustomQueryHandler.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/Device.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/FileChooser.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/QueryHandler.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/Viewport.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/util.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/LaunchOptions.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts\nthird_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/util/encoding.ts\nthird_party/devtools-frontend/src/front_end/third_party/third-party-web/lib/nostats-subset.js\nthird_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json\nthird_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities-httparchive.json\nthird_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities-nostats.json\nthird_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities.json\nthird_party/devtools-frontend/src/front_end/third_party/third-party-web/package/lib/index.test.js\nthird_party/devtools-frontend/src/front_end/third_party/third-party-web/package/package.json\nthird_party/devtools-frontend/src/front_end/third_party/vscode.web-custom-data/package/data/browsers.css-data.json\nthird_party/devtools-frontend/src/front_end/third_party/vscode.web-custom-data/package/data/browsers.html-data.json\nthird_party/devtools-frontend/src/front_end/third_party/wasmparser/package/package.json\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.js\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/lib/getVisibilityWatcher.js\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onCLS.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onCLS.js\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onINP.d.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onINP.js\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/attribution/onCLS.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/attribution/onINP.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/lib/getVisibilityWatcher.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/onCLS.ts\nthird_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/onINP.ts\nthird_party/devtools-frontend/src/front_end/ui/components/code_highlighter/CodeHighlighter.ts\nthird_party/devtools-frontend/src/front_end/ui/components/markdown_view/CodeBlock.ts\nthird_party/devtools-frontend/src/front_end/ui/components/markdown_view/MarkdownLinksMap.ts\nthird_party/devtools-frontend/src/front_end/ui/components/tooltips/Tooltip.ts\nthird_party/devtools-frontend/src/front_end/ui/helpers/OpenInNewTab.test.ts\nthird_party/devtools-frontend/src/front_end/ui/helpers/OpenInNewTab.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/DockController.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/SearchableView.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/UIUtils.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/Widget.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/components/cookie_table/CookiesTable.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/components/perf_ui/FlameChart.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/components/utils/JSPresentationUtils.test.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/components/utils/Linkifier.test.ts\nthird_party/devtools-frontend/src/front_end/ui/legacy/theme_support/ThemeSupport.ts\nthird_party/devtools-frontend/src/node_modules/@ampproject/remapping/package.json\nthird_party/devtools-frontend/src/node_modules/@babel/traverse/node_modules/globals/package.json\nthird_party/devtools-frontend/src/node_modules/@colors/colors/lib/colors.js\nthird_party/devtools-frontend/src/node_modules/@colors/colors/lib/styles.js\nthird_party/devtools-frontend/src/node_modules/@colors/colors/lib/system/has-flag.js\nthird_party/devtools-frontend/src/node_modules/@colors/colors/lib/system/supports-colors.js\nthird_party/devtools-frontend/src/node_modules/@csstools/css-parser-algorithms/package.json\nthird_party/devtools-frontend/src/node_modules/@csstools/css-tokenizer/package.json\nthird_party/devtools-frontend/src/node_modules/@csstools/media-query-list-parser/package.json\nthird_party/devtools-frontend/src/node_modules/@dual-bundle/import-meta-resolve/package.json\nthird_party/devtools-frontend/src/node_modules/@es-joy/resolve.exports/package.json\nthird_party/devtools-frontend/src/node_modules/@eslint/eslintrc/node_modules/globals/package.json\nthird_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/ansi-styles/package.json\nthird_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/string-width/package.json\nthird_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/wrap-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.d.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/install.d.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/browser-data.d.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/browser-data.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chrome-headless-shell.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chrome.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chromedriver.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chromium.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/firefox.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/install.d.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/browser-data.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chrome-headless-shell.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chrome.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chromedriver.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chromium.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/firefox.ts\nthird_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/install.ts\nthird_party/devtools-frontend/src/node_modules/@rollup/plugin-node-resolve/package.json\nthird_party/devtools-frontend/src/node_modules/@rollup/plugin-terser/package.json\nthird_party/devtools-frontend/src/node_modules/@rollup/pluginutils/package.json\nthird_party/devtools-frontend/src/node_modules/@sindresorhus/base62/package.json\nthird_party/devtools-frontend/src/node_modules/@sinonjs/commons/lib/prototypes/throws-on-proto.js\nthird_party/devtools-frontend/src/node_modules/@sinonjs/commons/types/prototypes/throws-on-proto.d.ts\nthird_party/devtools-frontend/src/node_modules/@sinonjs/samsam/lib/create-set.js\nthird_party/devtools-frontend/src/node_modules/@sinonjs/samsam/lib/deep-equal.js\nthird_party/devtools-frontend/src/node_modules/@sinonjs/samsam/types/create-set.d.ts\nthird_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/context.d.ts\nthird_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/context.js\nthird_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/index.d.ts\nthird_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/index.js\nthird_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/variants.d.ts\nthird_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/variants.js\nthird_party/devtools-frontend/src/node_modules/@types/node/assert.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/buffer.buffer.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/buffer.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/console.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/crypto.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/events.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/fs.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/fs/promises.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/http.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/https.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/perf_hooks.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/querystring.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/sea.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/stream/web.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/tls.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/trace_events.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/ts5.6/buffer.buffer.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/url.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/util.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/v8.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/vm.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/wasi.d.ts\nthird_party/devtools-frontend/src/node_modules/@types/node/worker_threads.d.ts\nthird_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js\nthird_party/devtools-frontend/src/node_modules/@vscode/web-custom-data/data/browsers.css-data.json\nthird_party/devtools-frontend/src/node_modules/@vscode/web-custom-data/data/browsers.html-data.json\nthird_party/devtools-frontend/src/node_modules/@web/rollup-plugin-import-meta-assets/node_modules/globby/package.json\nthird_party/devtools-frontend/src/node_modules/@web/rollup-plugin-import-meta-assets/node_modules/slash/package.json\nthird_party/devtools-frontend/src/node_modules/acorn/dist/acorn.js\nthird_party/devtools-frontend/src/node_modules/acorn/package.json\nthird_party/devtools-frontend/src/node_modules/ajv/dist/ajv.bundle.js\nthird_party/devtools-frontend/src/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/ansi-styles/package.json\nthird_party/devtools-frontend/src/node_modules/array-buffer-byte-length/package.json\nthird_party/devtools-frontend/src/node_modules/array-find-index/package.json\nthird_party/devtools-frontend/src/node_modules/array-includes/package.json\nthird_party/devtools-frontend/src/node_modules/array-includes/polyfill.js\nthird_party/devtools-frontend/src/node_modules/array-union/package.json\nthird_party/devtools-frontend/src/node_modules/array.prototype.findlastindex/package.json\nthird_party/devtools-frontend/src/node_modules/array.prototype.flat/package.json\nthird_party/devtools-frontend/src/node_modules/array.prototype.flatmap/package.json\nthird_party/devtools-frontend/src/node_modules/arraybuffer.prototype.slice/package.json\nthird_party/devtools-frontend/src/node_modules/asap/browser-raw.js\nthird_party/devtools-frontend/src/node_modules/astral-regex/package.json\nthird_party/devtools-frontend/src/node_modules/async-function/package.json\nthird_party/devtools-frontend/src/node_modules/available-typed-arrays/package.json\nthird_party/devtools-frontend/src/node_modules/basic-ftp/package.json\nthird_party/devtools-frontend/src/node_modules/binary-extensions/package.json\nthird_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/buffer-crc32/package.json\nthird_party/devtools-frontend/src/node_modules/bytes/package.json\nthird_party/devtools-frontend/src/node_modules/call-bind-apply-helpers/package.json\nthird_party/devtools-frontend/src/node_modules/call-bind/package.json\nthird_party/devtools-frontend/src/node_modules/call-bound/package.json\nthird_party/devtools-frontend/src/node_modules/callsites/package.json\nthird_party/devtools-frontend/src/node_modules/camelcase/package.json\nthird_party/devtools-frontend/src/node_modules/caniuse-lite/package.json\nthird_party/devtools-frontend/src/node_modules/chai/chai.js\nthird_party/devtools-frontend/src/node_modules/chai/lib/chai/core/assertions.js\nthird_party/devtools-frontend/src/node_modules/chai/lib/chai/interface/assert.js\nthird_party/devtools-frontend/src/node_modules/chai/lib/chai/interface/should.js\nthird_party/devtools-frontend/src/node_modules/chai/lib/chai/utils/isNaN.js\nthird_party/devtools-frontend/src/node_modules/chai/package.json\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.d.ts\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/ActionDispatcher.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputSource.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/CollectorsStorage.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkRequest.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkStorage.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/storage/StorageProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/utils/uuid.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/browser/BrowserProcessor.d.ts\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/browser/BrowserProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/context/BrowsingContextProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/input/ActionDispatcher.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/input/InputSource.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/CollectorsStorage.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/NetworkProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/NetworkRequest.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/NetworkStorage.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/storage/StorageProcessor.js\nthird_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/utils/uuid.js\nthird_party/devtools-frontend/src/node_modules/cli-cursor/package.json\nthird_party/devtools-frontend/src/node_modules/cli-spinners/package.json\nthird_party/devtools-frontend/src/node_modules/cliui/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/cliui/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/color-convert/package.json\nthird_party/devtools-frontend/src/node_modules/color-name/package.json\nthird_party/devtools-frontend/src/node_modules/colord/constants.d.ts\nthird_party/devtools-frontend/src/node_modules/colord/plugins/a11y.d.ts\nthird_party/devtools-frontend/src/node_modules/colord/plugins/cmyk.d.ts\nthird_party/devtools-frontend/src/node_modules/colord/plugins/lch.d.ts\nthird_party/devtools-frontend/src/node_modules/colors/lib/colors.js\nthird_party/devtools-frontend/src/node_modules/colors/lib/styles.js\nthird_party/devtools-frontend/src/node_modules/colors/lib/system/has-flag.js\nthird_party/devtools-frontend/src/node_modules/colors/lib/system/supports-colors.js\nthird_party/devtools-frontend/src/node_modules/connect/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/connect/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/cookie/package.json\nthird_party/devtools-frontend/src/node_modules/cors/package.json\nthird_party/devtools-frontend/src/node_modules/cosmiconfig/package.json\nthird_party/devtools-frontend/src/node_modules/css-functions-list/package.json\nthird_party/devtools-frontend/src/node_modules/css-tree/data/patch.json\nthird_party/devtools-frontend/src/node_modules/css-tree/lib/lexer/generic.js\nthird_party/devtools-frontend/src/node_modules/css-tree/package.json\nthird_party/devtools-frontend/src/node_modules/cssnano-preset-default/package.json\nthird_party/devtools-frontend/src/node_modules/cssnano/package.json\nthird_party/devtools-frontend/src/node_modules/csso/lib/restructure/6-restructBlock.js\nthird_party/devtools-frontend/src/node_modules/csso/lib/restructure/prepare/specificity.js\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/css-tree/data/patch.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/css-tree/lib/lexer/generic.js\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/css-tree/package.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/at-rules.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/at-rules.schema.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/properties.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/properties.schema.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/selectors.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/selectors.schema.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/types.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/types.schema.json\nthird_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/package.json\nthird_party/devtools-frontend/src/node_modules/csso/package.json\nthird_party/devtools-frontend/src/node_modules/custom-event/index.js\nthird_party/devtools-frontend/src/node_modules/data-view-buffer/package.json\nthird_party/devtools-frontend/src/node_modules/data-view-byte-length/package.json\nthird_party/devtools-frontend/src/node_modules/data-view-byte-offset/package.json\nthird_party/devtools-frontend/src/node_modules/date-format/package.json\nthird_party/devtools-frontend/src/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/define-data-property/package.json\nthird_party/devtools-frontend/src/node_modules/define-properties/package.json\nthird_party/devtools-frontend/src/node_modules/devtools-protocol/json/browser_protocol.json\nthird_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol-mapping.d.ts\nthird_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol-proxy-api.d.ts\nthird_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol-tests-proxy-api.d.ts\nthird_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol.d.ts\nthird_party/devtools-frontend/src/node_modules/di/package.json\nthird_party/devtools-frontend/src/node_modules/diff/dist/diff.js\nthird_party/devtools-frontend/src/node_modules/diff/dist/diff.min.js\nthird_party/devtools-frontend/src/node_modules/diff/lib/convert/dmp.js\nthird_party/devtools-frontend/src/node_modules/diff/lib/index.es6.js\nthird_party/devtools-frontend/src/node_modules/diff/package.json\nthird_party/devtools-frontend/src/node_modules/dir-glob/package.json\nthird_party/devtools-frontend/src/node_modules/domutils/lib/esm/stringify.d.ts\nthird_party/devtools-frontend/src/node_modules/domutils/lib/esm/stringify.js\nthird_party/devtools-frontend/src/node_modules/domutils/lib/stringify.d.ts\nthird_party/devtools-frontend/src/node_modules/domutils/lib/stringify.js\nthird_party/devtools-frontend/src/node_modules/dunder-proto/package.json\nthird_party/devtools-frontend/src/node_modules/end-of-stream/package.json\nthird_party/devtools-frontend/src/node_modules/engine.io-parser/build/cjs/index.js\nthird_party/devtools-frontend/src/node_modules/engine.io-parser/build/esm/index.js\nthird_party/devtools-frontend/src/node_modules/engine.io/build/transports/webtransport.d.ts\nthird_party/devtools-frontend/src/node_modules/engine.io/build/transports/webtransport.js\nthird_party/devtools-frontend/src/node_modules/engine.io/package.json\nthird_party/devtools-frontend/src/node_modules/env-paths/package.json\nthird_party/devtools-frontend/src/node_modules/error-ex/package.json\nthird_party/devtools-frontend/src/node_modules/es-abstract/helpers/defaultEndianness.js\nthird_party/devtools-frontend/src/node_modules/es-abstract/package.json\nthird_party/devtools-frontend/src/node_modules/es-define-property/package.json\nthird_party/devtools-frontend/src/node_modules/es-errors/package.json\nthird_party/devtools-frontend/src/node_modules/es-object-atoms/package.json\nthird_party/devtools-frontend/src/node_modules/es-set-tostringtag/package.json\nthird_party/devtools-frontend/src/node_modules/es-shim-unscopables/package.json\nthird_party/devtools-frontend/src/node_modules/es-to-primitive/package.json\nthird_party/devtools-frontend/src/node_modules/escalade/package.json\nthird_party/devtools-frontend/src/node_modules/escape-string-regexp/package.json\nthird_party/devtools-frontend/src/node_modules/escodegen/bin/escodegen.js\nthird_party/devtools-frontend/src/node_modules/escodegen/bin/esgenerate.js\nthird_party/devtools-frontend/src/node_modules/escodegen/escodegen.js\nthird_party/devtools-frontend/src/node_modules/escodegen/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/eslint-module-utils/pkgUp.js\nthird_party/devtools-frontend/src/node_modules/eslint-module-utils/readPkgUp.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/lib/doctrine.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/lib/typed.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/lib/utility.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/src/tagNames.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-lit/lib/rules/no-native-attributes.js\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/node_modules/globals/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/package.json\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/definition.js\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/index.js\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/pattern-visitor.js\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/reference.js\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/referencer.js\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/scope-manager.js\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/scope.js\nthird_party/devtools-frontend/src/node_modules/eslint-scope/lib/variable.js\nthird_party/devtools-frontend/src/node_modules/eslint/lib/rules/max-lines-per-function.js\nthird_party/devtools-frontend/src/node_modules/eslint/node_modules/ansi-styles/package.json\nthird_party/devtools-frontend/src/node_modules/eslint/node_modules/color-convert/package.json\nthird_party/devtools-frontend/src/node_modules/eslint/node_modules/color-name/package.json\nthird_party/devtools-frontend/src/node_modules/eslint/node_modules/escape-string-regexp/package.json\nthird_party/devtools-frontend/src/node_modules/eslint/node_modules/glob-parent/package.json\nthird_party/devtools-frontend/src/node_modules/eslint/node_modules/has-flag/package.json\nthird_party/devtools-frontend/src/node_modules/eslint/node_modules/supports-color/package.json\nthird_party/devtools-frontend/src/node_modules/espree/espree.js\nthird_party/devtools-frontend/src/node_modules/esprima/package.json\nthird_party/devtools-frontend/src/node_modules/esquery/dist/esquery.esm.js\nthird_party/devtools-frontend/src/node_modules/esquery/dist/esquery.js\nthird_party/devtools-frontend/src/node_modules/esquery/package.json\nthird_party/devtools-frontend/src/node_modules/esrecurse/esrecurse.js\nthird_party/devtools-frontend/src/node_modules/esrecurse/gulpfile.babel.js\nthird_party/devtools-frontend/src/node_modules/esrecurse/package.json\nthird_party/devtools-frontend/src/node_modules/estraverse/estraverse.js\nthird_party/devtools-frontend/src/node_modules/estraverse/gulpfile.js\nthird_party/devtools-frontend/src/node_modules/estraverse/package.json\nthird_party/devtools-frontend/src/node_modules/esutils/lib/ast.js\nthird_party/devtools-frontend/src/node_modules/esutils/lib/code.js\nthird_party/devtools-frontend/src/node_modules/esutils/lib/keyword.js\nthird_party/devtools-frontend/src/node_modules/esutils/lib/utils.js\nthird_party/devtools-frontend/src/node_modules/esutils/package.json\nthird_party/devtools-frontend/src/node_modules/fast-glob/out/utils/path.js\nthird_party/devtools-frontend/src/node_modules/fast-uri/package.json\nthird_party/devtools-frontend/src/node_modules/fast-uri/test/uri-js.test.js\nthird_party/devtools-frontend/src/node_modules/fd-slicer/package.json\nthird_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/find-up/package.json\nthird_party/devtools-frontend/src/node_modules/flat/package.json\nthird_party/devtools-frontend/src/node_modules/follow-redirects/package.json\nthird_party/devtools-frontend/src/node_modules/for-each/package.json\nthird_party/devtools-frontend/src/node_modules/fs-extra/lib/mkdirs/utils.js\nthird_party/devtools-frontend/src/node_modules/fs-extra/package.json\nthird_party/devtools-frontend/src/node_modules/function-bind/package.json\nthird_party/devtools-frontend/src/node_modules/function.prototype.name/package.json\nthird_party/devtools-frontend/src/node_modules/functions-have-names/package.json\nthird_party/devtools-frontend/src/node_modules/gensync/package.json\nthird_party/devtools-frontend/src/node_modules/get-east-asian-width/package.json\nthird_party/devtools-frontend/src/node_modules/get-intrinsic/package.json\nthird_party/devtools-frontend/src/node_modules/get-proto/package.json\nthird_party/devtools-frontend/src/node_modules/get-stream/package.json\nthird_party/devtools-frontend/src/node_modules/get-symbol-description/package.json\nthird_party/devtools-frontend/src/node_modules/glob-parent/package.json\nthird_party/devtools-frontend/src/node_modules/globals/package.json\nthird_party/devtools-frontend/src/node_modules/globalthis/package.json\nthird_party/devtools-frontend/src/node_modules/globby/node_modules/slash/package.json\nthird_party/devtools-frontend/src/node_modules/globby/package.json\nthird_party/devtools-frontend/src/node_modules/gopd/package.json\nthird_party/devtools-frontend/src/node_modules/has-bigints/package.json\nthird_party/devtools-frontend/src/node_modules/has-flag/package.json\nthird_party/devtools-frontend/src/node_modules/has-property-descriptors/package.json\nthird_party/devtools-frontend/src/node_modules/has-proto/package.json\nthird_party/devtools-frontend/src/node_modules/has-symbols/package.json\nthird_party/devtools-frontend/src/node_modules/has-tostringtag/package.json\nthird_party/devtools-frontend/src/node_modules/hasown/package.json\nthird_party/devtools-frontend/src/node_modules/html-tags/package.json\nthird_party/devtools-frontend/src/node_modules/http-proxy/package.json\nthird_party/devtools-frontend/src/node_modules/iconv-lite/encodings/dbcs-data.js\nthird_party/devtools-frontend/src/node_modules/iconv-lite/package.json\nthird_party/devtools-frontend/src/node_modules/import-fresh/package.json\nthird_party/devtools-frontend/src/node_modules/imurmurhash/imurmurhash.js\nthird_party/devtools-frontend/src/node_modules/imurmurhash/imurmurhash.min.js\nthird_party/devtools-frontend/src/node_modules/imurmurhash/package.json\nthird_party/devtools-frontend/src/node_modules/internal-slot/package.json\nthird_party/devtools-frontend/src/node_modules/is-array-buffer/package.json\nthird_party/devtools-frontend/src/node_modules/is-async-function/package.json\nthird_party/devtools-frontend/src/node_modules/is-bigint/package.json\nthird_party/devtools-frontend/src/node_modules/is-binary-path/package.json\nthird_party/devtools-frontend/src/node_modules/is-boolean-object/package.json\nthird_party/devtools-frontend/src/node_modules/is-callable/package.json\nthird_party/devtools-frontend/src/node_modules/is-core-module/package.json\nthird_party/devtools-frontend/src/node_modules/is-data-view/package.json\nthird_party/devtools-frontend/src/node_modules/is-finalizationregistry/package.json\nthird_party/devtools-frontend/src/node_modules/is-fullwidth-code-point/package.json\nthird_party/devtools-frontend/src/node_modules/is-generator-function/package.json\nthird_party/devtools-frontend/src/node_modules/is-interactive/package.json\nthird_party/devtools-frontend/src/node_modules/is-map/package.json\nthird_party/devtools-frontend/src/node_modules/is-negative-zero/package.json\nthird_party/devtools-frontend/src/node_modules/is-number-object/package.json\nthird_party/devtools-frontend/src/node_modules/is-path-inside/package.json\nthird_party/devtools-frontend/src/node_modules/is-plain-obj/package.json\nthird_party/devtools-frontend/src/node_modules/is-regex/package.json\nthird_party/devtools-frontend/src/node_modules/is-set/package.json\nthird_party/devtools-frontend/src/node_modules/is-shared-array-buffer/package.json\nthird_party/devtools-frontend/src/node_modules/is-string/package.json\nthird_party/devtools-frontend/src/node_modules/is-symbol/package.json\nthird_party/devtools-frontend/src/node_modules/is-typed-array/package.json\nthird_party/devtools-frontend/src/node_modules/is-unicode-supported/package.json\nthird_party/devtools-frontend/src/node_modules/is-weakmap/package.json\nthird_party/devtools-frontend/src/node_modules/is-weakref/package.json\nthird_party/devtools-frontend/src/node_modules/is-weakset/package.json\nthird_party/devtools-frontend/src/node_modules/isbinaryfile/package.json\nthird_party/devtools-frontend/src/node_modules/istanbul-lib-report/node_modules/has-flag/package.json\nthird_party/devtools-frontend/src/node_modules/istanbul-lib-report/node_modules/supports-color/package.json\nthird_party/devtools-frontend/src/node_modules/js-yaml/package.json\nthird_party/devtools-frontend/src/node_modules/json-buffer/package.json\nthird_party/devtools-frontend/src/node_modules/json5/package.json\nthird_party/devtools-frontend/src/node_modules/jsonfile/package.json\nthird_party/devtools-frontend/src/node_modules/karma-chrome-launcher/package.json\nthird_party/devtools-frontend/src/node_modules/karma-chrome-launcher/tools/update-contributors.js\nthird_party/devtools-frontend/src/node_modules/karma-coverage/examples/coffee-requirejs/package.json\nthird_party/devtools-frontend/src/node_modules/karma-coverage/examples/coffee/package.json\nthird_party/devtools-frontend/src/node_modules/karma-coverage/package.json\nthird_party/devtools-frontend/src/node_modules/karma-mocha-reporter/jsconfig.json\nthird_party/devtools-frontend/src/node_modules/karma-mocha-reporter/node_modules/log-symbols/package.json\nthird_party/devtools-frontend/src/node_modules/karma-mocha-reporter/package.json\nthird_party/devtools-frontend/src/node_modules/karma-mocha/package.json\nthird_party/devtools-frontend/src/node_modules/karma-sinon/package.json\nthird_party/devtools-frontend/src/node_modules/karma-sourcemap-loader/package.json\nthird_party/devtools-frontend/src/node_modules/karma/package.json\nthird_party/devtools-frontend/src/node_modules/karma/static/context.js\nthird_party/devtools-frontend/src/node_modules/karma/static/karma.js\nthird_party/devtools-frontend/src/node_modules/leven/package.json\nthird_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/license-checker/package.json\nthird_party/devtools-frontend/src/node_modules/lit-analyzer/node_modules/parse5/lib/tokenizer/index.js\nthird_party/devtools-frontend/src/node_modules/lit-analyzer/node_modules/parse5/package.json\nthird_party/devtools-frontend/src/node_modules/locate-path/package.json\nthird_party/devtools-frontend/src/node_modules/lodash.deburr/package.json\nthird_party/devtools-frontend/src/node_modules/lodash.get/package.json\nthird_party/devtools-frontend/src/node_modules/lodash.memoize/package.json\nthird_party/devtools-frontend/src/node_modules/lodash.merge/package.json\nthird_party/devtools-frontend/src/node_modules/lodash.truncate/package.json\nthird_party/devtools-frontend/src/node_modules/lodash.uniq/package.json\nthird_party/devtools-frontend/src/node_modules/lodash/_compareMultiple.js\nthird_party/devtools-frontend/src/node_modules/lodash/_setData.js\nthird_party/devtools-frontend/src/node_modules/lodash/lodash.js\nthird_party/devtools-frontend/src/node_modules/lodash/package.json\nthird_party/devtools-frontend/src/node_modules/lodash/template.js\nthird_party/devtools-frontend/src/node_modules/log-symbols/node_modules/ansi-styles/package.json\nthird_party/devtools-frontend/src/node_modules/log-symbols/node_modules/color-convert/package.json\nthird_party/devtools-frontend/src/node_modules/log-symbols/node_modules/color-name/package.json\nthird_party/devtools-frontend/src/node_modules/log-symbols/node_modules/has-flag/package.json\nthird_party/devtools-frontend/src/node_modules/log-symbols/node_modules/supports-color/package.json\nthird_party/devtools-frontend/src/node_modules/log-symbols/package.json\nthird_party/devtools-frontend/src/node_modules/log4js/package.json\nthird_party/devtools-frontend/src/node_modules/magic-string/dist/magic-string.cjs.js\nthird_party/devtools-frontend/src/node_modules/magic-string/dist/magic-string.umd.js\nthird_party/devtools-frontend/src/node_modules/make-dir/package.json\nthird_party/devtools-frontend/src/node_modules/math-intrinsics/package.json\nthird_party/devtools-frontend/src/node_modules/mathml-tag-names/package.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/at-rules.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/at-rules.schema.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/properties.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/properties.schema.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/selectors.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/selectors.schema.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/types.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/css/types.schema.json\nthird_party/devtools-frontend/src/node_modules/mdn-data/package.json\nthird_party/devtools-frontend/src/node_modules/meow/build/index.d.ts\nthird_party/devtools-frontend/src/node_modules/meow/package.json\nthird_party/devtools-frontend/src/node_modules/mimic-function/index.d.ts\nthird_party/devtools-frontend/src/node_modules/mimic-function/package.json\nthird_party/devtools-frontend/src/node_modules/mocha/lib/runnable.js\nthird_party/devtools-frontend/src/node_modules/mocha/lib/utils.js\nthird_party/devtools-frontend/src/node_modules/mocha/mocha.js\nthird_party/devtools-frontend/src/node_modules/mocha/node_modules/escape-string-regexp/package.json\nthird_party/devtools-frontend/src/node_modules/mocha/node_modules/has-flag/package.json\nthird_party/devtools-frontend/src/node_modules/mocha/node_modules/supports-color/package.json\nthird_party/devtools-frontend/src/node_modules/node-releases/package.json\nthird_party/devtools-frontend/src/node_modules/normalize-package-data/package.json\nthird_party/devtools-frontend/src/node_modules/normalize-path/index.js\nthird_party/devtools-frontend/src/node_modules/object-assign/index.js\nthird_party/devtools-frontend/src/node_modules/object-assign/package.json\nthird_party/devtools-frontend/src/node_modules/object-keys/package.json\nthird_party/devtools-frontend/src/node_modules/object.fromentries/package.json\nthird_party/devtools-frontend/src/node_modules/object.groupby/package.json\nthird_party/devtools-frontend/src/node_modules/object.values/package.json\nthird_party/devtools-frontend/src/node_modules/onetime/package.json\nthird_party/devtools-frontend/src/node_modules/ora/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/ora/node_modules/is-unicode-supported/package.json\nthird_party/devtools-frontend/src/node_modules/ora/node_modules/log-symbols/package.json\nthird_party/devtools-frontend/src/node_modules/ora/node_modules/string-width/package.json\nthird_party/devtools-frontend/src/node_modules/ora/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/ora/package.json\nthird_party/devtools-frontend/src/node_modules/os-homedir/package.json\nthird_party/devtools-frontend/src/node_modules/os-tmpdir/package.json\nthird_party/devtools-frontend/src/node_modules/own-keys/package.json\nthird_party/devtools-frontend/src/node_modules/p-limit/package.json\nthird_party/devtools-frontend/src/node_modules/p-locate/package.json\nthird_party/devtools-frontend/src/node_modules/pac-proxy-agent/dist/index.js\nthird_party/devtools-frontend/src/node_modules/pac-resolver/dist/myIpAddress.js\nthird_party/devtools-frontend/src/node_modules/parent-module/package.json\nthird_party/devtools-frontend/src/node_modules/parse-json/package.json\nthird_party/devtools-frontend/src/node_modules/parse5-htmlparser2-tree-adapter/package.json\nthird_party/devtools-frontend/src/node_modules/parse5/lib/tokenizer/index.js\nthird_party/devtools-frontend/src/node_modules/parse5/package.json\nthird_party/devtools-frontend/src/node_modules/path-exists/package.json\nthird_party/devtools-frontend/src/node_modules/path-is-absolute/package.json\nthird_party/devtools-frontend/src/node_modules/path-key/package.json\nthird_party/devtools-frontend/src/node_modules/path-type/package.json\nthird_party/devtools-frontend/src/node_modules/pend/package.json\nthird_party/devtools-frontend/src/node_modules/possible-typed-array-names/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-colormin/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-colormin/src/index.js\nthird_party/devtools-frontend/src/node_modules/postcss-convert-values/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-discard-comments/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-discard-duplicates/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-discard-empty/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-discard-overridden/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-merge-longhand/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-merge-rules/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-minify-gradients/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-minify-selectors/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-display-values/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-positions/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-repeat-style/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-string/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-timing-functions/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-unicode/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-url/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-url/src/normalize.js\nthird_party/devtools-frontend/src/node_modules/postcss-normalize-whitespace/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-ordered-values/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-reduce-initial/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-reduce-transforms/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-resolve-nested-selector/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-selector-parser/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/css-tree/data/patch.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/css-tree/lib/lexer/generic.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/css-tree/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/at-rules.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/at-rules.schema.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/functions.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/functions.schema.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/properties.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/properties.schema.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/selectors.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/selectors.schema.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/types.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/types.schema.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/dist/svgo.browser.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/_collections.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/convertOneStopGradients.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/inlineStyles.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/mergeStyles.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/minifyStyles.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/prefixIds.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeAttributesBySelector.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeDesc.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeTitle.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeXlink.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/reusePaths.js\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/_collections.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/convertOneStopGradients.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/inlineStyles.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/mergeStyles.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/minifyStyles.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/prefixIds.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeAttributesBySelector.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeDesc.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeTitle.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeXlink.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss-svgo/package.json\nthird_party/devtools-frontend/src/node_modules/postcss-unique-selectors/package.json\nthird_party/devtools-frontend/src/node_modules/postcss/lib/comment.d.ts\nthird_party/devtools-frontend/src/node_modules/postcss/lib/declaration.d.ts\nthird_party/devtools-frontend/src/node_modules/progress/package.json\nthird_party/devtools-frontend/src/node_modules/pump/package.json\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Browser.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/BrowserContext.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandle.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandle.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Frame.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Frame.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPRequest.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Input.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Input.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Target.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Frame.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Input.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Tracing.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Tracing.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Configuration.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CustomQueryHandler.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Device.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Device.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/FileChooser.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/FileChooser.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/QueryHandler.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/QueryHandler.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Viewport.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/util.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/BrowserLauncher.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/FirefoxLauncher.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/LaunchOptions.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PuppeteerNode.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PuppeteerNode.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/util/encoding.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/es5-iife/puppeteer-core-browser.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/es5-iife/puppeteer-core-browser.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Browser.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/BrowserContext.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/ElementHandle.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/ElementHandle.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Frame.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Frame.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/HTTPRequest.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Input.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Input.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Target.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Frame.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Input.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Tracing.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Tracing.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Configuration.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/CustomQueryHandler.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Device.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Device.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/FileChooser.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/FileChooser.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/QueryHandler.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/QueryHandler.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Viewport.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/util.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/BrowserLauncher.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/FirefoxLauncher.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/LaunchOptions.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/PuppeteerNode.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/PuppeteerNode.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/util/encoding.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/lib/types.d.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/node_modules/ws/package.json\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Browser.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/BrowserContext.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/ElementHandle.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Frame.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/HTTPRequest.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Input.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Page.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Target.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/WebWorker.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/bidi/Frame.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/cdp/Input.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/cdp/PredefinedNetworkConditions.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/cdp/Tracing.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/Configuration.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/CustomQueryHandler.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/Device.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/FileChooser.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/QueryHandler.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/Viewport.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/util.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/BrowserLauncher.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/FirefoxLauncher.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/LaunchOptions.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/PuppeteerNode.ts\nthird_party/devtools-frontend/src/node_modules/puppeteer-core/src/util/encoding.ts\nthird_party/devtools-frontend/src/node_modules/qs/package.json\nthird_party/devtools-frontend/src/node_modules/randombytes/browser.js\nthird_party/devtools-frontend/src/node_modules/raw-body/package.json\nthird_party/devtools-frontend/src/node_modules/reflect.getprototypeof/package.json\nthird_party/devtools-frontend/src/node_modules/regexp.prototype.flags/package.json\nthird_party/devtools-frontend/src/node_modules/require-directory/package.json\nthird_party/devtools-frontend/src/node_modules/require-from-string/package.json\nthird_party/devtools-frontend/src/node_modules/requires-port/test.js\nthird_party/devtools-frontend/src/node_modules/reserved-identifiers/index.d.ts\nthird_party/devtools-frontend/src/node_modules/reserved-identifiers/package.json\nthird_party/devtools-frontend/src/node_modules/resolve-from/package.json\nthird_party/devtools-frontend/src/node_modules/resolve/lib/caller.js\nthird_party/devtools-frontend/src/node_modules/restore-cursor/package.json\nthird_party/devtools-frontend/src/node_modules/rollup/dist/es/shared/node-entry.js\nthird_party/devtools-frontend/src/node_modules/rollup/dist/es/shared/watch.js\nthird_party/devtools-frontend/src/node_modules/rollup/dist/shared/index.js\nthird_party/devtools-frontend/src/node_modules/rollup/dist/shared/rollup.js\nthird_party/devtools-frontend/src/node_modules/safe-array-concat/package.json\nthird_party/devtools-frontend/src/node_modules/safe-push-apply/package.json\nthird_party/devtools-frontend/src/node_modules/safe-regex-test/package.json\nthird_party/devtools-frontend/src/node_modules/safer-buffer/package.json\nthird_party/devtools-frontend/src/node_modules/set-function-length/package.json\nthird_party/devtools-frontend/src/node_modules/set-function-name/package.json\nthird_party/devtools-frontend/src/node_modules/set-proto/package.json\nthird_party/devtools-frontend/src/node_modules/shebang-command/package.json\nthird_party/devtools-frontend/src/node_modules/shebang-regex/package.json\nthird_party/devtools-frontend/src/node_modules/side-channel-list/package.json\nthird_party/devtools-frontend/src/node_modules/side-channel-map/package.json\nthird_party/devtools-frontend/src/node_modules/side-channel-weakmap/package.json\nthird_party/devtools-frontend/src/node_modules/side-channel/package.json\nthird_party/devtools-frontend/src/node_modules/sinon/lib/sinon/proxy-invoke.js\nthird_party/devtools-frontend/src/node_modules/sinon/lib/sinon/util/core/extend.js\nthird_party/devtools-frontend/src/node_modules/sinon/lib/sinon/util/core/get-property-descriptor.js\nthird_party/devtools-frontend/src/node_modules/sinon/node_modules/has-flag/package.json\nthird_party/devtools-frontend/src/node_modules/sinon/node_modules/supports-color/package.json\nthird_party/devtools-frontend/src/node_modules/sinon/pkg/sinon-esm.js\nthird_party/devtools-frontend/src/node_modules/sinon/pkg/sinon.js\nthird_party/devtools-frontend/src/node_modules/slash/package.json\nthird_party/devtools-frontend/src/node_modules/slice-ansi/node_modules/ansi-styles/package.json\nthird_party/devtools-frontend/src/node_modules/slice-ansi/node_modules/color-convert/package.json\nthird_party/devtools-frontend/src/node_modules/slice-ansi/node_modules/color-name/package.json\nthird_party/devtools-frontend/src/node_modules/slide/package.json\nthird_party/devtools-frontend/src/node_modules/socket.io/client-dist/socket.io.js\nthird_party/devtools-frontend/src/node_modules/socket.io/dist/index.d.ts\nthird_party/devtools-frontend/src/node_modules/socket.io/dist/index.js\nthird_party/devtools-frontend/src/node_modules/socket.io/dist/namespace.d.ts\nthird_party/devtools-frontend/src/node_modules/socket.io/dist/namespace.js\nthird_party/devtools-frontend/src/node_modules/socket.io/dist/socket.d.ts\nthird_party/devtools-frontend/src/node_modules/socket.io/dist/socket.js\nthird_party/devtools-frontend/src/node_modules/socket.io/package.json\nthird_party/devtools-frontend/src/node_modules/socks-proxy-agent/package.json\nthird_party/devtools-frontend/src/node_modules/source-map-js/lib/base64-vlq.js\nthird_party/devtools-frontend/src/node_modules/source-map-js/lib/source-map-consumer.js\nthird_party/devtools-frontend/src/node_modules/source-map-js/package.json\nthird_party/devtools-frontend/src/node_modules/source-map-support/source-map-support.js\nthird_party/devtools-frontend/src/node_modules/source-map/dist/source-map.debug.js\nthird_party/devtools-frontend/src/node_modules/source-map/dist/source-map.js\nthird_party/devtools-frontend/src/node_modules/source-map/lib/base64-vlq.js\nthird_party/devtools-frontend/src/node_modules/source-map/lib/source-map-consumer.js\nthird_party/devtools-frontend/src/node_modules/source-map/package.json\nthird_party/devtools-frontend/src/node_modules/spdx-correct/package.json\nthird_party/devtools-frontend/src/node_modules/stdin-discarder/package.json\nthird_party/devtools-frontend/src/node_modules/stop-iteration-iterator/package.json\nthird_party/devtools-frontend/src/node_modules/streamroller/package.json\nthird_party/devtools-frontend/src/node_modules/string-width-cjs/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/string-width-cjs/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/string-width-cjs/package.json\nthird_party/devtools-frontend/src/node_modules/string-width/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/string-width/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/string-width/package.json\nthird_party/devtools-frontend/src/node_modules/string.prototype.trim/package.json\nthird_party/devtools-frontend/src/node_modules/string.prototype.trimend/package.json\nthird_party/devtools-frontend/src/node_modules/string.prototype.trimstart/package.json\nthird_party/devtools-frontend/src/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/strip-ansi-cjs/package.json\nthird_party/devtools-frontend/src/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/strip-bom/package.json\nthird_party/devtools-frontend/src/node_modules/strip-json-comments/package.json\nthird_party/devtools-frontend/src/node_modules/stylehacks/package.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/@csstools/selector-specificity/package.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/css-tree/data/patch.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/css-tree/lib/lexer/generic.js\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/css-tree/package.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/debug/package.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/debug/src/browser.js\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/at-rules.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/at-rules.schema.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/functions.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/functions.schema.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/properties.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/properties.schema.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/selectors.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/selectors.schema.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/types.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/types.schema.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/package.json\nthird_party/devtools-frontend/src/node_modules/stylelint/node_modules/resolve-from/package.json\nthird_party/devtools-frontend/src/node_modules/supports-color/package.json\nthird_party/devtools-frontend/src/node_modules/supports-hyperlinks/node_modules/has-flag/package.json\nthird_party/devtools-frontend/src/node_modules/supports-hyperlinks/node_modules/supports-color/package.json\nthird_party/devtools-frontend/src/node_modules/supports-preserve-symlinks-flag/package.json\nthird_party/devtools-frontend/src/node_modules/svg-tags/package.json\nthird_party/devtools-frontend/src/node_modules/svgo/dist/svgo.browser.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/_collections.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/convertOneStopGradients.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/inlineStyles.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/mergeStyles.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/minifyStyles.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/prefixIds.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/removeAttributesBySelector.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/removeDesc.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/removeTitle.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/removeXlink.js\nthird_party/devtools-frontend/src/node_modules/svgo/plugins/reusePaths.js\nthird_party/devtools-frontend/src/node_modules/table/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/table/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/tar-stream/package.json\nthird_party/devtools-frontend/src/node_modules/terser/dist/bundle.min.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/ast.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/common.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/compressor-flags.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/drop-side-effect-free.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/drop-unused.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/evaluate.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/index.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/inference.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/inline.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/native-objects.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/reduce-vars.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/compress/tighten-body.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/minify.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/mozilla-ast.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/output.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/parse.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/propmangle.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/scope.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/sourcemap.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/transform.js\nthird_party/devtools-frontend/src/node_modules/terser/lib/utils/index.js\nthird_party/devtools-frontend/src/node_modules/terser/package.json\nthird_party/devtools-frontend/src/node_modules/tmp/package.json\nthird_party/devtools-frontend/src/node_modules/to-valid-identifier/index.d.ts\nthird_party/devtools-frontend/src/node_modules/to-valid-identifier/package.json\nthird_party/devtools-frontend/src/node_modules/toidentifier/package.json\nthird_party/devtools-frontend/src/node_modules/treeify/package.json\nthird_party/devtools-frontend/src/node_modules/treeify/treeify.js\nthird_party/devtools-frontend/src/node_modules/tsconfig-paths/node_modules/json5/package.json\nthird_party/devtools-frontend/src/node_modules/type-fest/package.json\nthird_party/devtools-frontend/src/node_modules/type-fest/source/basic.d.ts\nthird_party/devtools-frontend/src/node_modules/type-fest/source/entries.d.ts\nthird_party/devtools-frontend/src/node_modules/type-fest/source/entry.d.ts\nthird_party/devtools-frontend/src/node_modules/typed-array-buffer/package.json\nthird_party/devtools-frontend/src/node_modules/typed-array-byte-length/package.json\nthird_party/devtools-frontend/src/node_modules/typed-array-byte-offset/package.json\nthird_party/devtools-frontend/src/node_modules/typed-array-length/package.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/_tsc.js\nthird_party/devtools-frontend/src/node_modules/typescript/lib/cs/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/de/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/es/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/fr/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/it/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/ja/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/ko/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.dom.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.dom.iterable.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2016.intl.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2020.bigint.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2020.intl.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2021.intl.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2022.intl.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.webworker.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/lib.webworker.iterable.d.ts\nthird_party/devtools-frontend/src/node_modules/typescript/lib/pl/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/ru/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/tr/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/typescript.js\nthird_party/devtools-frontend/src/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/ua-parser-js/package.json\nthird_party/devtools-frontend/src/node_modules/unbox-primitive/package.json\nthird_party/devtools-frontend/src/node_modules/undici-types/formdata.d.ts\nthird_party/devtools-frontend/src/node_modules/uri-js/dist/es5/uri.all.js\nthird_party/devtools-frontend/src/node_modules/uri-js/dist/esnext/uri.js\nthird_party/devtools-frontend/src/node_modules/uri-js/package.json\nthird_party/devtools-frontend/src/node_modules/utils-merge/package.json\nthird_party/devtools-frontend/src/node_modules/validate-npm-package-license/package.json\nthird_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/esm/data/webCustomData.js\nthird_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/esm/services/selectorPrinting.js\nthird_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/umd/data/webCustomData.js\nthird_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/umd/services/selectorPrinting.js\nthird_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/esm/beautify/beautify-css.js\nthird_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/esm/beautify/beautify-html.js\nthird_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/esm/languageFacts/data/webCustomData.js\nthird_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-css.js\nthird_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-html.js\nthird_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/umd/languageFacts/data/webCustomData.js\nthird_party/devtools-frontend/src/node_modules/vscode-languageserver-textdocument/thirdpartynotices.txt\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/cs/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/de/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/es/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/fr/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/it/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/ja/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/ko/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.dom.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.dom.iterable.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2020.bigint.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2020.intl.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2021.intl.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2022.intl.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.webworker.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.webworker.iterable.d.ts\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/pl/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/ru/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tr/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tsc.js\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tsserver.js\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tsserverlibrary.js\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/typescript.js\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/typingsInstaller.js\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json\nthird_party/devtools-frontend/src/node_modules/webidl2/package.json\nthird_party/devtools-frontend/src/node_modules/which-boxed-primitive/package.json\nthird_party/devtools-frontend/src/node_modules/which-builtin-type/package.json\nthird_party/devtools-frontend/src/node_modules/which-collection/package.json\nthird_party/devtools-frontend/src/node_modules/which-typed-array/package.json\nthird_party/devtools-frontend/src/node_modules/word-wrap/package.json\nthird_party/devtools-frontend/src/node_modules/workerpool/dist/worker.js\nthird_party/devtools-frontend/src/node_modules/workerpool/dist/workerpool.js\nthird_party/devtools-frontend/src/node_modules/workerpool/dist/workerpool.min.js.LICENSE.txt\nthird_party/devtools-frontend/src/node_modules/workerpool/package.json\nthird_party/devtools-frontend/src/node_modules/workerpool/src/header.js\nthird_party/devtools-frontend/src/node_modules/workerpool/src/validateOptions.js\nthird_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/color-convert/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/color-name/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-styles/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/color-convert/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/color-name/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/wrap-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/ws/package.json\nthird_party/devtools-frontend/src/node_modules/y18n/package.json\nthird_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/decamelize/package.json\nthird_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-regex/package.json\nthird_party/devtools-frontend/src/node_modules/yargs/node_modules/strip-ansi/package.json\nthird_party/devtools-frontend/src/node_modules/yauzl/package.json\nthird_party/devtools-frontend/src/node_modules/yocto-queue/index.d.ts\nthird_party/devtools-frontend/src/node_modules/yocto-queue/package.json\nthird_party/devtools-frontend/src/node_modules/yoctocolors/package.json\nthird_party/devtools-frontend/src/node_modules/zod/src/v3/tests/refine.test.ts\nthird_party/devtools-frontend/src/node_modules/zod/src/v3/tests/string.test.ts\nthird_party/devtools-frontend/src/node_modules/zod/src/v4/classic/tests/refine.test.ts\nthird_party/devtools-frontend/src/node_modules/zod/src/v4/classic/tests/string.test.ts\nthird_party/devtools-frontend/src/node_modules/zod/src/v4/core/regexes.ts\nthird_party/devtools-frontend/src/node_modules/zod/v4/core/regexes.d.ts\nthird_party/devtools-frontend/src/node_modules/zod/v4/core/regexes.js\nthird_party/devtools-frontend/src/package.json\nthird_party/devtools-frontend/src/scripts/ai_assistance/suite/helpers/gemini.ts\nthird_party/devtools-frontend/src/scripts/ai_assistance/suite/helpers/report_generator.ts\nthird_party/devtools-frontend/src/scripts/build/compress_files.js\nthird_party/devtools-frontend/src/scripts/check_external_links.js\nthird_party/devtools-frontend/src/scripts/component_docs/component_docs.css\nthird_party/devtools-frontend/src/scripts/deps/download_emscripten.py\nthird_party/devtools-frontend/src/scripts/deps/roll_to_chromium.py\nthird_party/devtools-frontend/src/scripts/eslint_rules/lib/no-customized-builtin-elements.ts\nthird_party/devtools-frontend/src/scripts/eslint_rules/lib/utils/ruleCreator.ts\nthird_party/devtools-frontend/src/scripts/eslint_rules/tests/no-imperative-dom-api.test.ts\nthird_party/devtools-frontend/src/scripts/hosted_mode/server.js\nthird_party/devtools-frontend/src/scripts/tools/update_goldens.py\nthird_party/devtools-frontend/src/test/conductor/resultsdb.ts\nthird_party/devtools-frontend/src/test/e2e/application/reporting-api.test.ts\nthird_party/devtools-frontend/src/test/e2e/console/console-message-format.test.ts\nthird_party/devtools-frontend/src/test/e2e/console/console-truncate-long-messages.test.ts\nthird_party/devtools-frontend/src/test/e2e/lighthouse/devtools-settings.test.ts\nthird_party/devtools-frontend/src/test/e2e/lighthouse/navigation.test.ts\nthird_party/devtools-frontend/src/test/e2e/lighthouse/snapshot.test.ts\nthird_party/devtools-frontend/src/test/e2e/lighthouse/timespan.test.ts\nthird_party/devtools-frontend/src/test/e2e/performance/trace-app.test.ts\nthird_party/devtools-frontend/src/test/e2e/resources/console/primitives.html\nthird_party/devtools-frontend/src/test/e2e/resources/elements/inactive-css-page.html\nthird_party/devtools-frontend/src/test/e2e/shared/frontend-helper.ts\nthird_party/devtools-frontend/src/test/perf/report/report.ts\nthird_party/devtools-frontend/src/third_party/blink/public/devtools_protocol/browser_protocol.json\nthird_party/devtools-frontend/src/third_party/pyjson5/src/benchmarks/chromium.linux.json\nthird_party/devtools-frontend/src/third_party/pyjson5/src/setup.py\nthird_party/dom_distiller_js/dist/js/domdistiller.js\nthird_party/dom_distiller_js/dist/js/domdistiller_wrapped.js\nthird_party/dom_distiller_js/protoc_plugins/util/plugin_protos.py\nthird_party/domato/src/canvas/generator.py\nthird_party/domato/src/generator.py\nthird_party/domato/src/grammar.py\nthird_party/domato/src/html_tags.py\nthird_party/domato/src/jscript/generator.py\nthird_party/domato/src/mathml_tags.py\nthird_party/domato/src/php/generator.py\nthird_party/domato/src/rules/common.txt\nthird_party/domato/src/rules/jshelpers.txt\nthird_party/domato/src/svg_tags.py\nthird_party/domato/src/vbscript/generator.py\nthird_party/domato/src/webgl/generator.py\nthird_party/dragonbox/src/include/dragonbox/dragonbox.h\nthird_party/dragonbox/src/other_files/unknown_win64_vc2019.html\nthird_party/dragonbox/src/subproject/3rdparty/schubfach/schubfach_32.cc\nthird_party/dragonbox/src/subproject/3rdparty/schubfach/schubfach_64.cc\nthird_party/eigen3/src/Eigen/src/Cholesky/LDLT.h\nthird_party/eigen3/src/Eigen/src/Cholesky/LLT.h\nthird_party/eigen3/src/Eigen/src/CholmodSupport/CholmodSupport.h\nthird_party/eigen3/src/Eigen/src/Core/ArithmeticSequence.h\nthird_party/eigen3/src/Eigen/src/Core/Array.h\nthird_party/eigen3/src/Eigen/src/Core/ArrayBase.h\nthird_party/eigen3/src/Eigen/src/Core/ArrayWrapper.h\nthird_party/eigen3/src/Eigen/src/Core/Assign.h\nthird_party/eigen3/src/Eigen/src/Core/AssignEvaluator.h\nthird_party/eigen3/src/Eigen/src/Core/Assign_AOCL.h\nthird_party/eigen3/src/Eigen/src/Core/BandMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/Block.h\nthird_party/eigen3/src/Eigen/src/Core/CommaInitializer.h\nthird_party/eigen3/src/Eigen/src/Core/ConditionEstimator.h\nthird_party/eigen3/src/Eigen/src/Core/CoreEvaluators.h\nthird_party/eigen3/src/Eigen/src/Core/CoreIterators.h\nthird_party/eigen3/src/Eigen/src/Core/CwiseBinaryOp.h\nthird_party/eigen3/src/Eigen/src/Core/CwiseNullaryOp.h\nthird_party/eigen3/src/Eigen/src/Core/CwiseTernaryOp.h\nthird_party/eigen3/src/Eigen/src/Core/CwiseUnaryOp.h\nthird_party/eigen3/src/Eigen/src/Core/CwiseUnaryView.h\nthird_party/eigen3/src/Eigen/src/Core/DenseBase.h\nthird_party/eigen3/src/Eigen/src/Core/DenseCoeffsBase.h\nthird_party/eigen3/src/Eigen/src/Core/DenseStorage.h\nthird_party/eigen3/src/Eigen/src/Core/DeviceWrapper.h\nthird_party/eigen3/src/Eigen/src/Core/Diagonal.h\nthird_party/eigen3/src/Eigen/src/Core/DiagonalMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/DiagonalProduct.h\nthird_party/eigen3/src/Eigen/src/Core/Dot.h\nthird_party/eigen3/src/Eigen/src/Core/EigenBase.h\nthird_party/eigen3/src/Eigen/src/Core/Fill.h\nthird_party/eigen3/src/Eigen/src/Core/FindCoeff.h\nthird_party/eigen3/src/Eigen/src/Core/ForceAlignedAccess.h\nthird_party/eigen3/src/Eigen/src/Core/Fuzzy.h\nthird_party/eigen3/src/Eigen/src/Core/GeneralProduct.h\nthird_party/eigen3/src/Eigen/src/Core/GenericPacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/GlobalFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/IO.h\nthird_party/eigen3/src/Eigen/src/Core/IndexedView.h\nthird_party/eigen3/src/Eigen/src/Core/InnerProduct.h\nthird_party/eigen3/src/Eigen/src/Core/Inverse.h\nthird_party/eigen3/src/Eigen/src/Core/Map.h\nthird_party/eigen3/src/Eigen/src/Core/MapBase.h\nthird_party/eigen3/src/Eigen/src/Core/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/MathFunctionsImpl.h\nthird_party/eigen3/src/Eigen/src/Core/Matrix.h\nthird_party/eigen3/src/Eigen/src/Core/MatrixBase.h\nthird_party/eigen3/src/Eigen/src/Core/NestByValue.h\nthird_party/eigen3/src/Eigen/src/Core/NoAlias.h\nthird_party/eigen3/src/Eigen/src/Core/NumTraits.h\nthird_party/eigen3/src/Eigen/src/Core/PartialReduxEvaluator.h\nthird_party/eigen3/src/Eigen/src/Core/PermutationMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/PlainObjectBase.h\nthird_party/eigen3/src/Eigen/src/Core/Product.h\nthird_party/eigen3/src/Eigen/src/Core/ProductEvaluators.h\nthird_party/eigen3/src/Eigen/src/Core/Random.h\nthird_party/eigen3/src/Eigen/src/Core/RandomImpl.h\nthird_party/eigen3/src/Eigen/src/Core/RealView.h\nthird_party/eigen3/src/Eigen/src/Core/Redux.h\nthird_party/eigen3/src/Eigen/src/Core/Ref.h\nthird_party/eigen3/src/Eigen/src/Core/Replicate.h\nthird_party/eigen3/src/Eigen/src/Core/Reshaped.h\nthird_party/eigen3/src/Eigen/src/Core/ReturnByValue.h\nthird_party/eigen3/src/Eigen/src/Core/Reverse.h\nthird_party/eigen3/src/Eigen/src/Core/Select.h\nthird_party/eigen3/src/Eigen/src/Core/SelfAdjointView.h\nthird_party/eigen3/src/Eigen/src/Core/SelfCwiseBinaryOp.h\nthird_party/eigen3/src/Eigen/src/Core/SkewSymmetricMatrix3.h\nthird_party/eigen3/src/Eigen/src/Core/Solve.h\nthird_party/eigen3/src/Eigen/src/Core/SolveTriangular.h\nthird_party/eigen3/src/Eigen/src/Core/SolverBase.h\nthird_party/eigen3/src/Eigen/src/Core/StableNorm.h\nthird_party/eigen3/src/Eigen/src/Core/StlIterators.h\nthird_party/eigen3/src/Eigen/src/Core/Stride.h\nthird_party/eigen3/src/Eigen/src/Core/Swap.h\nthird_party/eigen3/src/Eigen/src/Core/Transpose.h\nthird_party/eigen3/src/Eigen/src/Core/Transpositions.h\nthird_party/eigen3/src/Eigen/src/Core/TriangularMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/VectorBlock.h\nthird_party/eigen3/src/Eigen/src/Core/VectorwiseOp.h\nthird_party/eigen3/src/Eigen/src/Core/Visitor.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX/Reductions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/GemmKernel.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/MathFunctionsFP16.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/PacketMathFP16.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/Reductions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/TrsmKernel.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AVX512/TypeCastingFP16.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AltiVec/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AltiVec/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AltiVec/MatrixProduct.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AltiVec/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/AltiVec/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/Default/ConjHelper.h\nthird_party/eigen3/src/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h\nthird_party/eigen3/src/Eigen/src/Core/arch/Default/Half.h\nthird_party/eigen3/src/Eigen/src/Core/arch/Default/Settings.h\nthird_party/eigen3/src/Eigen/src/Core/arch/GPU/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/GPU/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/GPU/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/GPU/Tuple.h\nthird_party/eigen3/src/Eigen/src/Core/arch/GPU/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/LSX/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/LSX/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/LSX/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/LSX/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/MSA/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/MSA/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/MSA/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/NEON/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/NEON/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/NEON/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/NEON/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/NEON/UnaryFunctors.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/GeneralBlockPanelKernel.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMath2.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMath4.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMathBF16.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMathFP16.h\nthird_party/eigen3/src/Eigen/src/Core/arch/RVV10/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SSE/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SSE/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SSE/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SSE/Reductions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SSE/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SVE/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SVE/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SVE/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SYCL/InteropHeaders.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SYCL/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SYCL/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/SYCL/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/arch/ZVector/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/ZVector/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/ZVector/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/clang/Complex.h\nthird_party/eigen3/src/Eigen/src/Core/arch/clang/MathFunctions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/clang/PacketMath.h\nthird_party/eigen3/src/Eigen/src/Core/arch/clang/Reductions.h\nthird_party/eigen3/src/Eigen/src/Core/arch/clang/TypeCasting.h\nthird_party/eigen3/src/Eigen/src/Core/functors/AssignmentFunctors.h\nthird_party/eigen3/src/Eigen/src/Core/functors/BinaryFunctors.h\nthird_party/eigen3/src/Eigen/src/Core/functors/NullaryFunctors.h\nthird_party/eigen3/src/Eigen/src/Core/functors/StlFunctors.h\nthird_party/eigen3/src/Eigen/src/Core/functors/TernaryFunctors.h\nthird_party/eigen3/src/Eigen/src/Core/functors/UnaryFunctors.h\nthird_party/eigen3/src/Eigen/src/Core/products/GeneralBlockPanelKernel.h\nthird_party/eigen3/src/Eigen/src/Core/products/GeneralMatrixMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h\nthird_party/eigen3/src/Eigen/src/Core/products/GeneralMatrixVector.h\nthird_party/eigen3/src/Eigen/src/Core/products/Parallelizer.h\nthird_party/eigen3/src/Eigen/src/Core/products/SelfadjointMatrixMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/products/SelfadjointMatrixVector.h\nthird_party/eigen3/src/Eigen/src/Core/products/SelfadjointProduct.h\nthird_party/eigen3/src/Eigen/src/Core/products/SelfadjointRank2Update.h\nthird_party/eigen3/src/Eigen/src/Core/products/TriangularMatrixMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/products/TriangularMatrixVector.h\nthird_party/eigen3/src/Eigen/src/Core/products/TriangularSolverMatrix.h\nthird_party/eigen3/src/Eigen/src/Core/products/TriangularSolverVector.h\nthird_party/eigen3/src/Eigen/src/Core/util/AOCL_Support.h\nthird_party/eigen3/src/Eigen/src/Core/util/Assert.h\nthird_party/eigen3/src/Eigen/src/Core/util/BlasUtil.h\nthird_party/eigen3/src/Eigen/src/Core/util/ConfigureVectorization.h\nthird_party/eigen3/src/Eigen/src/Core/util/Constants.h\nthird_party/eigen3/src/Eigen/src/Core/util/EmulateArray.h\nthird_party/eigen3/src/Eigen/src/Core/util/ForwardDeclarations.h\nthird_party/eigen3/src/Eigen/src/Core/util/IndexedViewHelper.h\nthird_party/eigen3/src/Eigen/src/Core/util/IntegralConstant.h\nthird_party/eigen3/src/Eigen/src/Core/util/Macros.h\nthird_party/eigen3/src/Eigen/src/Core/util/MaxSizeVector.h\nthird_party/eigen3/src/Eigen/src/Core/util/Memory.h\nthird_party/eigen3/src/Eigen/src/Core/util/Meta.h\nthird_party/eigen3/src/Eigen/src/Core/util/MoreMeta.h\nthird_party/eigen3/src/Eigen/src/Core/util/ReshapedHelper.h\nthird_party/eigen3/src/Eigen/src/Core/util/Serializer.h\nthird_party/eigen3/src/Eigen/src/Core/util/StaticAssert.h\nthird_party/eigen3/src/Eigen/src/Core/util/SymbolicIndex.h\nthird_party/eigen3/src/Eigen/src/Core/util/XprHelper.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/ComplexEigenSolver.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/ComplexQZ.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/ComplexSchur.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/EigenSolver.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/HessenbergDecomposition.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/RealQZ.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/RealSchur.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h\nthird_party/eigen3/src/Eigen/src/Eigenvalues/Tridiagonalization.h\nthird_party/eigen3/src/Eigen/src/Geometry/AlignedBox.h\nthird_party/eigen3/src/Eigen/src/Geometry/AngleAxis.h\nthird_party/eigen3/src/Eigen/src/Geometry/EulerAngles.h\nthird_party/eigen3/src/Eigen/src/Geometry/Homogeneous.h\nthird_party/eigen3/src/Eigen/src/Geometry/Hyperplane.h\nthird_party/eigen3/src/Eigen/src/Geometry/OrthoMethods.h\nthird_party/eigen3/src/Eigen/src/Geometry/ParametrizedLine.h\nthird_party/eigen3/src/Eigen/src/Geometry/Quaternion.h\nthird_party/eigen3/src/Eigen/src/Geometry/Rotation2D.h\nthird_party/eigen3/src/Eigen/src/Geometry/RotationBase.h\nthird_party/eigen3/src/Eigen/src/Geometry/Scaling.h\nthird_party/eigen3/src/Eigen/src/Geometry/Transform.h\nthird_party/eigen3/src/Eigen/src/Geometry/Translation.h\nthird_party/eigen3/src/Eigen/src/Geometry/Umeyama.h\nthird_party/eigen3/src/Eigen/src/Geometry/arch/Geometry_SIMD.h\nthird_party/eigen3/src/Eigen/src/Householder/BlockHouseholder.h\nthird_party/eigen3/src/Eigen/src/Householder/Householder.h\nthird_party/eigen3/src/Eigen/src/Householder/HouseholderSequence.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h\nthird_party/eigen3/src/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h\nthird_party/eigen3/src/Eigen/src/Jacobi/Jacobi.h\nthird_party/eigen3/src/Eigen/src/KLUSupport/KLUSupport.h\nthird_party/eigen3/src/Eigen/src/LU/Determinant.h\nthird_party/eigen3/src/Eigen/src/LU/FullPivLU.h\nthird_party/eigen3/src/Eigen/src/LU/InverseImpl.h\nthird_party/eigen3/src/Eigen/src/LU/PartialPivLU.h\nthird_party/eigen3/src/Eigen/src/LU/arch/InverseSize4.h\nthird_party/eigen3/src/Eigen/src/MetisSupport/MetisSupport.h\nthird_party/eigen3/src/Eigen/src/OrderingMethods/Amd.h\nthird_party/eigen3/src/Eigen/src/OrderingMethods/Eigen_Colamd.h\nthird_party/eigen3/src/Eigen/src/OrderingMethods/Ordering.h\nthird_party/eigen3/src/Eigen/src/PaStiXSupport/PaStiXSupport.h\nthird_party/eigen3/src/Eigen/src/QR/ColPivHouseholderQR.h\nthird_party/eigen3/src/Eigen/src/QR/CompleteOrthogonalDecomposition.h\nthird_party/eigen3/src/Eigen/src/QR/FullPivHouseholderQR.h\nthird_party/eigen3/src/Eigen/src/QR/HouseholderQR.h\nthird_party/eigen3/src/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h\nthird_party/eigen3/src/Eigen/src/SVD/BDCSVD.h\nthird_party/eigen3/src/Eigen/src/SVD/JacobiSVD.h\nthird_party/eigen3/src/Eigen/src/SVD/SVDBase.h\nthird_party/eigen3/src/Eigen/src/SVD/UpperBidiagonalization.h\nthird_party/eigen3/src/Eigen/src/SparseCholesky/SimplicialCholesky.h\nthird_party/eigen3/src/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h\nthird_party/eigen3/src/Eigen/src/SparseCore/AmbiVector.h\nthird_party/eigen3/src/Eigen/src/SparseCore/CompressedStorage.h\nthird_party/eigen3/src/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseAssign.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseBlock.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseColEtree.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseCompressedBase.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseCwiseBinaryOp.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseCwiseUnaryOp.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseDenseProduct.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseDiagonalProduct.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseDot.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseFuzzy.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseMap.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseMatrix.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseMatrixBase.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparsePermutation.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseProduct.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseRedux.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseRef.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseSelfAdjointView.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseSolverBase.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseSparseProductWithPruning.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseTranspose.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseTriangularView.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseUtil.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseVector.h\nthird_party/eigen3/src/Eigen/src/SparseCore/SparseView.h\nthird_party/eigen3/src/Eigen/src/SparseCore/TriangularSolver.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLUImpl.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_Memory.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_Structs.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_Utils.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_column_bmod.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_column_dfs.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_kernel_bmod.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_panel_bmod.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_panel_dfs.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_pivotL.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_pruneL.h\nthird_party/eigen3/src/Eigen/src/SparseLU/SparseLU_relax_snode.h\nthird_party/eigen3/src/Eigen/src/SparseQR/SparseQR.h\nthird_party/eigen3/src/Eigen/src/StlSupport/StdDeque.h\nthird_party/eigen3/src/Eigen/src/StlSupport/StdList.h\nthird_party/eigen3/src/Eigen/src/StlSupport/StdVector.h\nthird_party/eigen3/src/Eigen/src/StlSupport/details.h\nthird_party/eigen3/src/Eigen/src/SuperLUSupport/SuperLUSupport.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/Barrier.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/CoreThreadPoolDevice.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/EventCount.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/ForkJoin.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/NonBlockingThreadPool.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/RunQueue.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/ThreadCancel.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/ThreadEnvironment.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/ThreadLocal.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/ThreadPoolInterface.h\nthird_party/eigen3/src/Eigen/src/ThreadPool/ThreadYield.h\nthird_party/eigen3/src/Eigen/src/UmfPackSupport/UmfPackSupport.h\nthird_party/eigen3/src/Eigen/src/misc/Image.h\nthird_party/eigen3/src/Eigen/src/misc/Kernel.h\nthird_party/eigen3/src/Eigen/src/misc/lapacke_helpers.h\nthird_party/eigen3/src/bench/BenchTimer.h\nthird_party/eigen3/src/bench/analyze-blocking-sizes.cpp\nthird_party/eigen3/src/bench/benchFFT.cpp\nthird_party/eigen3/src/bench/bench_move_semantics.cpp\nthird_party/eigen3/src/bench/benchmark-blocking-sizes.cpp\nthird_party/eigen3/src/bench/benchmark_aocl.cpp\nthird_party/eigen3/src/bench/btl/libs/tensors/main_linear.cpp\nthird_party/eigen3/src/bench/btl/libs/tensors/main_matmat.cpp\nthird_party/eigen3/src/bench/btl/libs/tensors/main_vecmat.cpp\nthird_party/eigen3/src/bench/btl/libs/tensors/tensor_interface.hh\nthird_party/eigen3/src/bench/eig33.cpp\nthird_party/eigen3/src/bench/spbench/spbenchsolver.h\nthird_party/eigen3/src/bench/spbench/spbenchstyle.h\nthird_party/eigen3/src/bench/tensors/tensor_contract_sycl_bench.cc\nthird_party/eigen3/src/blas/BandTriangularSolver.h\nthird_party/eigen3/src/blas/GeneralRank1Update.h\nthird_party/eigen3/src/blas/PackedSelfadjointProduct.h\nthird_party/eigen3/src/blas/PackedTriangularMatrixVector.h\nthird_party/eigen3/src/blas/PackedTriangularSolverVector.h\nthird_party/eigen3/src/blas/Rank2Update.h\nthird_party/eigen3/src/blas/common.h\nthird_party/eigen3/src/blas/complex_double.cpp\nthird_party/eigen3/src/blas/complex_single.cpp\nthird_party/eigen3/src/blas/double.cpp\nthird_party/eigen3/src/blas/level1_cplx_impl.h\nthird_party/eigen3/src/blas/level1_impl.h\nthird_party/eigen3/src/blas/level1_real_impl.h\nthird_party/eigen3/src/blas/level2_cplx_impl.h\nthird_party/eigen3/src/blas/level2_impl.h\nthird_party/eigen3/src/blas/level2_real_impl.h\nthird_party/eigen3/src/blas/level3_impl.h\nthird_party/eigen3/src/blas/single.cpp\nthird_party/eigen3/src/debug/gdb/printers.py\nthird_party/eigen3/src/debug/lldb/eigenlldb.py\nthird_party/eigen3/src/demos/mandelbrot/mandelbrot.cpp\nthird_party/eigen3/src/demos/mandelbrot/mandelbrot.h\nthird_party/eigen3/src/demos/mix_eigen_and_c/binary_library.cpp\nthird_party/eigen3/src/demos/mix_eigen_and_c/binary_library.h\nthird_party/eigen3/src/demos/mix_eigen_and_c/example.c\nthird_party/eigen3/src/demos/opengl/camera.cpp\nthird_party/eigen3/src/demos/opengl/camera.h\nthird_party/eigen3/src/demos/opengl/gpuhelper.cpp\nthird_party/eigen3/src/demos/opengl/gpuhelper.h\nthird_party/eigen3/src/demos/opengl/icosphere.cpp\nthird_party/eigen3/src/demos/opengl/icosphere.h\nthird_party/eigen3/src/demos/opengl/quaternion_demo.cpp\nthird_party/eigen3/src/demos/opengl/quaternion_demo.h\nthird_party/eigen3/src/demos/opengl/trackball.cpp\nthird_party/eigen3/src/demos/opengl/trackball.h\nthird_party/eigen3/src/lapack/complex_double.cpp\nthird_party/eigen3/src/lapack/complex_single.cpp\nthird_party/eigen3/src/lapack/double.cpp\nthird_party/eigen3/src/lapack/dsecnd_INT_CPU_TIME.cpp\nthird_party/eigen3/src/lapack/lapack_common.h\nthird_party/eigen3/src/lapack/second_INT_CPU_TIME.cpp\nthird_party/eigen3/src/lapack/single.cpp\nthird_party/eigen3/src/test/AnnoyingScalar.h\nthird_party/eigen3/src/test/CustomComplex.h\nthird_party/eigen3/src/test/MovableScalar.h\nthird_party/eigen3/src/test/adjoint.cpp\nthird_party/eigen3/src/test/array_cwise.cpp\nthird_party/eigen3/src/test/array_for_matrix.cpp\nthird_party/eigen3/src/test/array_of_string.cpp\nthird_party/eigen3/src/test/array_replicate.cpp\nthird_party/eigen3/src/test/array_reverse.cpp\nthird_party/eigen3/src/test/assignment_threaded.cpp\nthird_party/eigen3/src/test/bandmatrix.cpp\nthird_party/eigen3/src/test/basicstuff.cpp\nthird_party/eigen3/src/test/bdcsvd.cpp\nthird_party/eigen3/src/test/bfloat16_float.cpp\nthird_party/eigen3/src/test/bicgstab.cpp\nthird_party/eigen3/src/test/blasutil.cpp\nthird_party/eigen3/src/test/block.cpp\nthird_party/eigen3/src/test/boostmultiprec.cpp\nthird_party/eigen3/src/test/cholesky.cpp\nthird_party/eigen3/src/test/cholmod_support.cpp\nthird_party/eigen3/src/test/clz.cpp\nthird_party/eigen3/src/test/commainitializer.cpp\nthird_party/eigen3/src/test/complex_qz.cpp\nthird_party/eigen3/src/test/conjugate_gradient.cpp\nthird_party/eigen3/src/test/conservative_resize.cpp\nthird_party/eigen3/src/test/constexpr.cpp\nthird_party/eigen3/src/test/constructor.cpp\nthird_party/eigen3/src/test/corners.cpp\nthird_party/eigen3/src/test/denseLM.cpp\nthird_party/eigen3/src/test/dense_storage.cpp\nthird_party/eigen3/src/test/determinant.cpp\nthird_party/eigen3/src/test/diagonal.cpp\nthird_party/eigen3/src/test/diagonal_matrix_variadic_ctor.cpp\nthird_party/eigen3/src/test/diagonalmatrices.cpp\nthird_party/eigen3/src/test/dontalign.cpp\nthird_party/eigen3/src/test/dynalloc.cpp\nthird_party/eigen3/src/test/eigen2support.cpp\nthird_party/eigen3/src/test/eigensolver_complex.cpp\nthird_party/eigen3/src/test/eigensolver_generalized_real.cpp\nthird_party/eigen3/src/test/eigensolver_generic.cpp\nthird_party/eigen3/src/test/eigensolver_selfadjoint.cpp\nthird_party/eigen3/src/test/exceptions.cpp\nthird_party/eigen3/src/test/fastmath.cpp\nthird_party/eigen3/src/test/first_aligned.cpp\nthird_party/eigen3/src/test/float_conversion.cpp\nthird_party/eigen3/src/test/geo_alignedbox.cpp\nthird_party/eigen3/src/test/geo_eulerangles.cpp\nthird_party/eigen3/src/test/geo_homogeneous.cpp\nthird_party/eigen3/src/test/geo_hyperplane.cpp\nthird_party/eigen3/src/test/geo_orthomethods.cpp\nthird_party/eigen3/src/test/geo_parametrizedline.cpp\nthird_party/eigen3/src/test/geo_quaternion.cpp\nthird_party/eigen3/src/test/geo_transformations.cpp\nthird_party/eigen3/src/test/half_float.cpp\nthird_party/eigen3/src/test/hessenberg.cpp\nthird_party/eigen3/src/test/householder.cpp\nthird_party/eigen3/src/test/incomplete_LUT.cpp\nthird_party/eigen3/src/test/incomplete_cholesky.cpp\nthird_party/eigen3/src/test/indexed_view.cpp\nthird_party/eigen3/src/test/initializer_list_construction.cpp\nthird_party/eigen3/src/test/inplace_decomposition.cpp\nthird_party/eigen3/src/test/integer_types.cpp\nthird_party/eigen3/src/test/inverse.cpp\nthird_party/eigen3/src/test/io.cpp\nthird_party/eigen3/src/test/is_same_dense.cpp\nthird_party/eigen3/src/test/jacobi.cpp\nthird_party/eigen3/src/test/jacobisvd.cpp\nthird_party/eigen3/src/test/klu_support.cpp\nthird_party/eigen3/src/test/linearstructure.cpp\nthird_party/eigen3/src/test/lscg.cpp\nthird_party/eigen3/src/test/lu.cpp\nthird_party/eigen3/src/test/main.h\nthird_party/eigen3/src/test/mapped_matrix.cpp\nthird_party/eigen3/src/test/mapstaticmethods.cpp\nthird_party/eigen3/src/test/mapstride.cpp\nthird_party/eigen3/src/test/matrix_cwise.cpp\nthird_party/eigen3/src/test/meta.cpp\nthird_party/eigen3/src/test/metis_support.cpp\nthird_party/eigen3/src/test/miscmatrices.cpp\nthird_party/eigen3/src/test/mixingtypes.cpp\nthird_party/eigen3/src/test/nestbyvalue.cpp\nthird_party/eigen3/src/test/nesting_ops.cpp\nthird_party/eigen3/src/test/nomalloc.cpp\nthird_party/eigen3/src/test/nullary.cpp\nthird_party/eigen3/src/test/num_dimensions.cpp\nthird_party/eigen3/src/test/numext.cpp\nthird_party/eigen3/src/test/packet_segment.cpp\nthird_party/eigen3/src/test/packetmath.cpp\nthird_party/eigen3/src/test/packetmath_test_shared.h\nthird_party/eigen3/src/test/pastix_support.cpp\nthird_party/eigen3/src/test/permutationmatrices.cpp\nthird_party/eigen3/src/test/prec_inverse_4x4.cpp\nthird_party/eigen3/src/test/product.h\nthird_party/eigen3/src/test/product_extra.cpp\nthird_party/eigen3/src/test/product_large.cpp\nthird_party/eigen3/src/test/product_mmtr.cpp\nthird_party/eigen3/src/test/product_notemporary.cpp\nthird_party/eigen3/src/test/product_selfadjoint.cpp\nthird_party/eigen3/src/test/product_small.cpp\nthird_party/eigen3/src/test/product_symm.cpp\nthird_party/eigen3/src/test/product_syrk.cpp\nthird_party/eigen3/src/test/product_threaded.cpp\nthird_party/eigen3/src/test/product_trmm.cpp\nthird_party/eigen3/src/test/product_trmv.cpp\nthird_party/eigen3/src/test/product_trsolve.cpp\nthird_party/eigen3/src/test/qr.cpp\nthird_party/eigen3/src/test/qr_colpivoting.cpp\nthird_party/eigen3/src/test/qr_fullpivoting.cpp\nthird_party/eigen3/src/test/qtvector.cpp\nthird_party/eigen3/src/test/rand.cpp\nthird_party/eigen3/src/test/random_matrix.cpp\nthird_party/eigen3/src/test/random_matrix_helper.h\nthird_party/eigen3/src/test/random_without_cast_overflow.h\nthird_party/eigen3/src/test/real_qz.cpp\nthird_party/eigen3/src/test/realview.cpp\nthird_party/eigen3/src/test/redux.cpp\nthird_party/eigen3/src/test/ref.cpp\nthird_party/eigen3/src/test/reshape.cpp\nthird_party/eigen3/src/test/resize.cpp\nthird_party/eigen3/src/test/rvalue_types.cpp\nthird_party/eigen3/src/test/schur_complex.cpp\nthird_party/eigen3/src/test/schur_real.cpp\nthird_party/eigen3/src/test/selfadjoint.cpp\nthird_party/eigen3/src/test/serializer.cpp\nthird_party/eigen3/src/test/simplicial_cholesky.cpp\nthird_party/eigen3/src/test/sizeof.cpp\nthird_party/eigen3/src/test/sizeoverflow.cpp\nthird_party/eigen3/src/test/skew_symmetric_matrix3.cpp\nthird_party/eigen3/src/test/smallvectors.cpp\nthird_party/eigen3/src/test/sparse.h\nthird_party/eigen3/src/test/sparseLM.cpp\nthird_party/eigen3/src/test/sparse_basic.cpp\nthird_party/eigen3/src/test/sparse_block.cpp\nthird_party/eigen3/src/test/sparse_permutations.cpp\nthird_party/eigen3/src/test/sparse_product.cpp\nthird_party/eigen3/src/test/sparse_ref.cpp\nthird_party/eigen3/src/test/sparse_solver.h\nthird_party/eigen3/src/test/sparse_solvers.cpp\nthird_party/eigen3/src/test/sparse_vector.cpp\nthird_party/eigen3/src/test/sparselu.cpp\nthird_party/eigen3/src/test/special_numbers.cpp\nthird_party/eigen3/src/test/stable_norm.cpp\nthird_party/eigen3/src/test/stddeque.cpp\nthird_party/eigen3/src/test/stddeque_overload.cpp\nthird_party/eigen3/src/test/stdlist.cpp\nthird_party/eigen3/src/test/stdlist_overload.cpp\nthird_party/eigen3/src/test/stdvector.cpp\nthird_party/eigen3/src/test/stdvector_overload.cpp\nthird_party/eigen3/src/test/stl_iterators.cpp\nthird_party/eigen3/src/test/superlu_support.cpp\nthird_party/eigen3/src/test/svd_common.h\nthird_party/eigen3/src/test/svd_fill.h\nthird_party/eigen3/src/test/swap.cpp\nthird_party/eigen3/src/test/sycl_basic.cpp\nthird_party/eigen3/src/test/symbolic_index.cpp\nthird_party/eigen3/src/test/threads_eventcount.cpp\nthird_party/eigen3/src/test/threads_fork_join.cpp\nthird_party/eigen3/src/test/threads_non_blocking_thread_pool.cpp\nthird_party/eigen3/src/test/threads_runqueue.cpp\nthird_party/eigen3/src/test/triangular.cpp\nthird_party/eigen3/src/test/tuple_test.cpp\nthird_party/eigen3/src/test/type_alias.cpp\nthird_party/eigen3/src/test/umeyama.cpp\nthird_party/eigen3/src/test/umfpack_support.cpp\nthird_party/eigen3/src/test/unalignedcount.cpp\nthird_party/eigen3/src/test/unaryview.cpp\nthird_party/eigen3/src/test/upperbidiagonalization.cpp\nthird_party/eigen3/src/test/vectorization_logic.cpp\nthird_party/eigen3/src/test/vectorwiseop.cpp\nthird_party/eigen3/src/test/visitor.cpp\nthird_party/eigen3/src/test/zerosized.cpp\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/Tensor.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorRoll.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/util/CXX11Meta.h\nthird_party/eigen3/src/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h\nthird_party/eigen3/src/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h\nthird_party/eigen3/src/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h\nthird_party/eigen3/src/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h\nthird_party/eigen3/src/unsupported/Eigen/src/AutoDiff/CoherentPadOp.h\nthird_party/eigen3/src/unsupported/Eigen/src/BVH/BVAlgorithms.h\nthird_party/eigen3/src/unsupported/Eigen/src/BVH/KdBVH.h\nthird_party/eigen3/src/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h\nthird_party/eigen3/src/unsupported/Eigen/src/EulerAngles/EulerAngles.h\nthird_party/eigen3/src/unsupported/Eigen/src/EulerAngles/EulerSystem.h\nthird_party/eigen3/src/unsupported/Eigen/src/FFT/duccfft_impl.h\nthird_party/eigen3/src/unsupported/Eigen/src/FFT/fftw_impl.h\nthird_party/eigen3/src/unsupported/Eigen/src/FFT/imklfft_impl.h\nthird_party/eigen3/src/unsupported/Eigen/src/FFT/kissfft_impl.h\nthird_party/eigen3/src/unsupported/Eigen/src/FFT/pocketfft_impl.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/BiCGSTABL.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/DGMRES.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/GMRES.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/IDRS.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/IDRSTABL.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/MINRES.h\nthird_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/Scaling.h\nthird_party/eigen3/src/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h\nthird_party/eigen3/src/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h\nthird_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h\nthird_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h\nthird_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h\nthird_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h\nthird_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h\nthird_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/StemFunction.h\nthird_party/eigen3/src/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h\nthird_party/eigen3/src/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h\nthird_party/eigen3/src/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h\nthird_party/eigen3/src/unsupported/Eigen/src/Polynomials/Companion.h\nthird_party/eigen3/src/unsupported/Eigen/src/Polynomials/PolynomialSolver.h\nthird_party/eigen3/src/unsupported/Eigen/src/Polynomials/PolynomialUtils.h\nthird_party/eigen3/src/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h\nthird_party/eigen3/src/unsupported/Eigen/src/SparseExtra/MarketIO.h\nthird_party/eigen3/src/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h\nthird_party/eigen3/src/unsupported/Eigen/src/SparseExtra/RandomSetter.h\nthird_party/eigen3/src/unsupported/Eigen/src/SparseExtra/SparseInverse.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h\nthird_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h\nthird_party/eigen3/src/unsupported/Eigen/src/Splines/Spline.h\nthird_party/eigen3/src/unsupported/Eigen/src/Splines/SplineFitting.h\nthird_party/eigen3/src/unsupported/Eigen/src/Splines/SplineFwd.h\nthird_party/eigen3/src/unsupported/bench/bench_svd.cpp\nthird_party/eigen3/src/unsupported/test/BVH.cpp\nthird_party/eigen3/src/unsupported/test/EulerAngles.cpp\nthird_party/eigen3/src/unsupported/test/NNLS.cpp\nthird_party/eigen3/src/unsupported/test/alignedvector3.cpp\nthird_party/eigen3/src/unsupported/test/autodiff.cpp\nthird_party/eigen3/src/unsupported/test/autodiff_scalar.cpp\nthird_party/eigen3/src/unsupported/test/bessel_functions.cpp\nthird_party/eigen3/src/unsupported/test/bicgstabl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_argmax.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_argmax_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_assign.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_block_access.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_block_eval.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_block_io.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_broadcast_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_broadcasting.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_builtins_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_casts.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_chipping.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_chipping_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_comparisons.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_concatenation.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_concatenation_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_const.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_contract_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_contraction.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_convolution.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_convolution_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_custom_index.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_custom_op.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_custom_op_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_device_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_dimension.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_empty.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_executor.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_expr.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_fft.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_fixed_size.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_forced_eval.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_generator.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_generator_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_ifft.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_image_op_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_image_patch.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_image_patch_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_index_list.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_inflation.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_inflation_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_intdiv.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_io.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_layout_swap.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_lvalue.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_map.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_math.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_math_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_mixed_indices.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_morphing.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_morphing_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_move.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_notification.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_of_complex.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_of_const_values.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_of_float16_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_of_strings.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_padding.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_padding_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_patch.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_patch_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_random.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_random_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_reduction.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_reduction_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_ref.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_reverse.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_reverse_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_roll.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_roundings.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_scan.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_scan_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_shuffling.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_shuffling_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_simple.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_striding.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_striding_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_sycl.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_symmetry.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_thread_local.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_thread_pool.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_trace.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_uint128.cpp\nthird_party/eigen3/src/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp\nthird_party/eigen3/src/unsupported/test/dgmres.cpp\nthird_party/eigen3/src/unsupported/test/fft_test_shared.h\nthird_party/eigen3/src/unsupported/test/forward_adolc.cpp\nthird_party/eigen3/src/unsupported/test/gmres.cpp\nthird_party/eigen3/src/unsupported/test/idrs.cpp\nthird_party/eigen3/src/unsupported/test/idrstabl.cpp\nthird_party/eigen3/src/unsupported/test/kronecker_product.cpp\nthird_party/eigen3/src/unsupported/test/levenberg_marquardt.cpp\nthird_party/eigen3/src/unsupported/test/matrix_exponential.cpp\nthird_party/eigen3/src/unsupported/test/matrix_function.cpp\nthird_party/eigen3/src/unsupported/test/matrix_functions.h\nthird_party/eigen3/src/unsupported/test/matrix_power.cpp\nthird_party/eigen3/src/unsupported/test/matrix_square_root.cpp\nthird_party/eigen3/src/unsupported/test/minres.cpp\nthird_party/eigen3/src/unsupported/test/openglsupport.cpp\nthird_party/eigen3/src/unsupported/test/polynomialsolver.cpp\nthird_party/eigen3/src/unsupported/test/polynomialutils.cpp\nthird_party/eigen3/src/unsupported/test/sparse_extra.cpp\nthird_party/eigen3/src/unsupported/test/special_functions.cpp\nthird_party/eigen3/src/unsupported/test/special_packetmath.cpp\nthird_party/eigen3/src/unsupported/test/splines.cpp\nthird_party/enterprise_companion/fetch_lib.py\nthird_party/expat/src/expat/CMakeLists.txt\nthird_party/expat/src/expat/fuzz/xml_lpm_fuzzer.cpp\nthird_party/expat/src/expat/lib/expat_external.h\nthird_party/expat/src/expat/lib/internal.h\nthird_party/expat/src/expat/lib/xmlparse.c\nthird_party/expat/src/expat/lib/xmltok.c\nthird_party/expat/src/expat/lib/xmltok_impl.c\nthird_party/expat/src/expat/tests/acc_tests.c\nthird_party/expat/src/expat/xmlwf/readfilemap.c\nthird_party/expat/src/expat/xmlwf/win32filemap.c\nthird_party/expat/src/expat/xmlwf/xmlfile.c\nthird_party/expat/src/expat/xmlwf/xmlwf.c\nthird_party/farmhash/src/dev/builder.cc\nthird_party/farmhash/src/dev/farmhash.h\nthird_party/farmhash/src/src/farmhash.h\nthird_party/federated_compute/src/fcp/artifact_building/tensor_utils.py\nthird_party/federated_compute/src/fcp/base/monitoring.h\nthird_party/federated_compute/src/fcp/client/attestation/log_attestation_records.cc\nthird_party/federated_compute/src/fcp/client/attestation/test_values.cc\nthird_party/federated_compute/src/fcp/client/fl_runner_test.cc\nthird_party/federated_compute/src/fcp/client/http/http_client.h\nthird_party/federated_compute/src/fcp/client/http/protocol_request_helper.cc\nthird_party/federated_compute/src/fcp/confidentialcompute/composing_tee_executor_test.cc\nthird_party/federated_compute/src/fcp/confidentialcompute/tee_executor_value_test.cc\nthird_party/federated_compute/src/fcp/demo/http_actions.py\nthird_party/federated_compute/src/fcp/tensorflow/example_selector_fuser_test.py\nthird_party/federated_compute/src/fcp/tracing/tools/tracing_traits_generator.cc\nthird_party/ffmpeg/chromium/config/Chrome/android/arm-neon/config.h\nthird_party/ffmpeg/chromium/config/Chrome/android/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/android/ia32/config.h\nthird_party/ffmpeg/chromium/config/Chrome/android/x64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/ios/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/ios/x64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/config.h\nthird_party/ffmpeg/chromium/config/Chrome/linux/arm/config.h\nthird_party/ffmpeg/chromium/config/Chrome/linux/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/linux/ia32/config.h\nthird_party/ffmpeg/chromium/config/Chrome/linux/riscv64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/linux/x64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/mac/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/mac/x64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/win/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chrome/win/ia32/config.h\nthird_party/ffmpeg/chromium/config/Chrome/win/x64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/android/arm-neon/config.h\nthird_party/ffmpeg/chromium/config/Chromium/android/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/android/ia32/config.h\nthird_party/ffmpeg/chromium/config/Chromium/android/x64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/ios/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/ios/x64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/linux-noasm/x64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/linux/arm-neon/config.h\nthird_party/ffmpeg/chromium/config/Chromium/linux/arm/config.h\nthird_party/ffmpeg/chromium/config/Chromium/linux/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/linux/ia32/config.h\nthird_party/ffmpeg/chromium/config/Chromium/linux/riscv64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/linux/x64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/mac/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/mac/x64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/win/arm64/config.h\nthird_party/ffmpeg/chromium/config/Chromium/win/ia32/config.h\nthird_party/ffmpeg/chromium/config/Chromium/win/x64/config.h\nthird_party/ffmpeg/compat/android/binder.c\nthird_party/ffmpeg/compat/msvcrt/snprintf.c\nthird_party/ffmpeg/compat/msvcrt/snprintf.h\nthird_party/ffmpeg/compat/msvcrt/strtod.h\nthird_party/ffmpeg/compat/strtod.c\nthird_party/ffmpeg/compat/w32pthreads.h\nthird_party/ffmpeg/doc/examples/transcode_aac.c\nthird_party/ffmpeg/doc/infra.txt\nthird_party/ffmpeg/doc/style.min.css\nthird_party/ffmpeg/ffmpeg_options.gni\nthird_party/ffmpeg/libavcodec/aac/aacdec.c\nthird_party/ffmpeg/libavcodec/aac/aacdec_dsp_template.c\nthird_party/ffmpeg/libavcodec/aac/aacdec_fixed.c\nthird_party/ffmpeg/libavcodec/aac/aacdec_fixed_coupling.h\nthird_party/ffmpeg/libavcodec/aac/aacdec_fixed_dequant.h\nthird_party/ffmpeg/libavcodec/aac/aacdec_fixed_prediction.h\nthird_party/ffmpeg/libavcodec/aac/aacdec_float.c\nthird_party/ffmpeg/libavcodec/aac/aacdec_float_coupling.h\nthird_party/ffmpeg/libavcodec/aac/aacdec_float_prediction.h\nthird_party/ffmpeg/libavcodec/aac/aacdec_latm.h\nthird_party/ffmpeg/libavcodec/aac/aacdec_proc_template.c\nthird_party/ffmpeg/libavcodec/aacps.c\nthird_party/ffmpeg/libavcodec/aacps.h\nthird_party/ffmpeg/libavcodec/aacps_common.c\nthird_party/ffmpeg/libavcodec/aacps_fixed.c\nthird_party/ffmpeg/libavcodec/aacps_fixed_tablegen.c\nthird_party/ffmpeg/libavcodec/aacps_fixed_tablegen.h\nthird_party/ffmpeg/libavcodec/aacps_float.c\nthird_party/ffmpeg/libavcodec/aacps_tablegen.c\nthird_party/ffmpeg/libavcodec/aacps_tablegen.h\nthird_party/ffmpeg/libavcodec/aacps_tablegen_template.c\nthird_party/ffmpeg/libavcodec/aacpsdata.c\nthird_party/ffmpeg/libavcodec/aacpsdsp_fixed.c\nthird_party/ffmpeg/libavcodec/aacpsdsp_float.c\nthird_party/ffmpeg/libavcodec/aacpsdsp_template.c\nthird_party/ffmpeg/libavcodec/aacsbr.c\nthird_party/ffmpeg/libavcodec/aacsbr.h\nthird_party/ffmpeg/libavcodec/aacsbr_fixed.c\nthird_party/ffmpeg/libavcodec/aacsbr_template.c\nthird_party/ffmpeg/libavcodec/aarch64/idctdsp_init_aarch64.c\nthird_party/ffmpeg/libavcodec/ac3dec.c\nthird_party/ffmpeg/libavcodec/ac3dec.h\nthird_party/ffmpeg/libavcodec/ac3dec_data.c\nthird_party/ffmpeg/libavcodec/ac3dec_data.h\nthird_party/ffmpeg/libavcodec/ac3dec_float.c\nthird_party/ffmpeg/libavcodec/ac3enc.c\nthird_party/ffmpeg/libavcodec/ac3enc.h\nthird_party/ffmpeg/libavcodec/ac3enc_fixed.c\nthird_party/ffmpeg/libavcodec/ac3enc_float.c\nthird_party/ffmpeg/libavcodec/ac3enc_template.c\nthird_party/ffmpeg/libavcodec/adpcm.c\nthird_party/ffmpeg/libavcodec/aliaspixdec.c\nthird_party/ffmpeg/libavcodec/aliaspixenc.c\nthird_party/ffmpeg/libavcodec/atrac9dec.c\nthird_party/ffmpeg/libavcodec/atrac9tab.h\nthird_party/ffmpeg/libavcodec/av1_parser.c\nthird_party/ffmpeg/libavcodec/avs2_parser.c\nthird_party/ffmpeg/libavcodec/avs3.h\nthird_party/ffmpeg/libavcodec/avs3_parser.c\nthird_party/ffmpeg/libavcodec/bsf/aac_adtstoasc.c\nthird_party/ffmpeg/libavcodec/bsf/av1_frame_merge.c\nthird_party/ffmpeg/libavcodec/bsf/av1_frame_split.c\nthird_party/ffmpeg/libavcodec/bsf/chomp.c\nthird_party/ffmpeg/libavcodec/bsf/evc_frame_merge.c\nthird_party/ffmpeg/libavcodec/bsf/mpeg4_unpack_bframes.c\nthird_party/ffmpeg/libavcodec/bsf/pgs_frame_merge.c\nthird_party/ffmpeg/libavcodec/bsf/vp9_superframe.c\nthird_party/ffmpeg/libavcodec/bytestream.h\nthird_party/ffmpeg/libavcodec/c93.c\nthird_party/ffmpeg/libavcodec/canopus.c\nthird_party/ffmpeg/libavcodec/canopus.h\nthird_party/ffmpeg/libavcodec/cook_parser.c\nthird_party/ffmpeg/libavcodec/cpia.c\nthird_party/ffmpeg/libavcodec/d3d12va_decode.h\nthird_party/ffmpeg/libavcodec/d3d12va_encode.h\nthird_party/ffmpeg/libavcodec/dct.h\nthird_party/ffmpeg/libavcodec/dds.c\nthird_party/ffmpeg/libavcodec/dirac.c\nthird_party/ffmpeg/libavcodec/dirac_dwt_template.c\nthird_party/ffmpeg/libavcodec/dirac_parser.c\nthird_party/ffmpeg/libavcodec/diracdec.c\nthird_party/ffmpeg/libavcodec/diractab.c\nthird_party/ffmpeg/libavcodec/diractab.h\nthird_party/ffmpeg/libavcodec/dxv.c\nthird_party/ffmpeg/libavcodec/eac3_data.c\nthird_party/ffmpeg/libavcodec/eac3_data.h\nthird_party/ffmpeg/libavcodec/eac3dec.c\nthird_party/ffmpeg/libavcodec/eac3enc.c\nthird_party/ffmpeg/libavcodec/eac3enc.h\nthird_party/ffmpeg/libavcodec/elbg.c\nthird_party/ffmpeg/libavcodec/elbg.h\nthird_party/ffmpeg/libavcodec/escape124.c\nthird_party/ffmpeg/libavcodec/escape130.c\nthird_party/ffmpeg/libavcodec/exif.c\nthird_party/ffmpeg/libavcodec/exif.h\nthird_party/ffmpeg/libavcodec/exif_internal.h\nthird_party/ffmpeg/libavcodec/flacenc.c\nthird_party/ffmpeg/libavcodec/g723_1enc.c\nthird_party/ffmpeg/libavcodec/hap.c\nthird_party/ffmpeg/libavcodec/hap.h\nthird_party/ffmpeg/libavcodec/hapdec.c\nthird_party/ffmpeg/libavcodec/hapenc.c\nthird_party/ffmpeg/libavcodec/iff.c\nthird_party/ffmpeg/libavcodec/j2kenc.c\nthird_party/ffmpeg/libavcodec/jpeg2000.c\nthird_party/ffmpeg/libavcodec/jpeg2000.h\nthird_party/ffmpeg/libavcodec/jpeg2000dec.c\nthird_party/ffmpeg/libavcodec/jpeg2000dec.h\nthird_party/ffmpeg/libavcodec/jpeg2000dsp.c\nthird_party/ffmpeg/libavcodec/jpeg2000dsp.h\nthird_party/ffmpeg/libavcodec/jpeg2000dwt.c\nthird_party/ffmpeg/libavcodec/jpeg2000htdec.c\nthird_party/ffmpeg/libavcodec/jpeg2000htdec.h\nthird_party/ffmpeg/libavcodec/jpegxl.h\nthird_party/ffmpeg/libavcodec/jpegxl_parse.c\nthird_party/ffmpeg/libavcodec/jpegxl_parse.h\nthird_party/ffmpeg/libavcodec/jpegxl_parser.c\nthird_party/ffmpeg/libavcodec/lagarith.c\nthird_party/ffmpeg/libavcodec/lagarithrac.c\nthird_party/ffmpeg/libavcodec/lagarithrac.h\nthird_party/ffmpeg/libavcodec/libdavs2.c\nthird_party/ffmpeg/libavcodec/libjxl.c\nthird_party/ffmpeg/libavcodec/libjxl.h\nthird_party/ffmpeg/libavcodec/libjxldec.c\nthird_party/ffmpeg/libavcodec/libjxlenc.c\nthird_party/ffmpeg/libavcodec/liblc3dec.c\nthird_party/ffmpeg/libavcodec/liblc3enc.c\nthird_party/ffmpeg/libavcodec/librsvgdec.c\nthird_party/ffmpeg/libavcodec/libtheoraenc.c\nthird_party/ffmpeg/libavcodec/libuavs3d.c\nthird_party/ffmpeg/libavcodec/libwebpenc.c\nthird_party/ffmpeg/libavcodec/libwebpenc_common.c\nthird_party/ffmpeg/libavcodec/libwebpenc_common.h\nthird_party/ffmpeg/libavcodec/libxavs.c\nthird_party/ffmpeg/libavcodec/libxavs2.c\nthird_party/ffmpeg/libavcodec/lpc.c\nthird_party/ffmpeg/libavcodec/lpc.h\nthird_party/ffmpeg/libavcodec/lpc_functions.h\nthird_party/ffmpeg/libavcodec/mediacodec.h\nthird_party/ffmpeg/libavcodec/mediacodec_sw_buffer.c\nthird_party/ffmpeg/libavcodec/mediacodec_wrapper.h\nthird_party/ffmpeg/libavcodec/mediacodecdec_common.c\nthird_party/ffmpeg/libavcodec/mfenc.c\nthird_party/ffmpeg/libavcodec/mimic.c\nthird_party/ffmpeg/libavcodec/mlz.c\nthird_party/ffmpeg/libavcodec/mlz.h\nthird_party/ffmpeg/libavcodec/mpeg4audio.c\nthird_party/ffmpeg/libavcodec/mpeg4audio_sample_rates.c\nthird_party/ffmpeg/libavcodec/mpeg4audio_sample_rates.h\nthird_party/ffmpeg/libavcodec/mpegaudiodec_common_tablegen.c\nthird_party/ffmpeg/libavcodec/mpegaudiodec_common_tablegen.h\nthird_party/ffmpeg/libavcodec/nellymoser.c\nthird_party/ffmpeg/libavcodec/nellymoser.h\nthird_party/ffmpeg/libavcodec/nellymoserdec.c\nthird_party/ffmpeg/libavcodec/opus/celt.h\nthird_party/ffmpeg/libavcodec/opus/dec_celt.c\nthird_party/ffmpeg/libavcodec/opus/enc.c\nthird_party/ffmpeg/libavcodec/opus/enc.h\nthird_party/ffmpeg/libavcodec/opus/enc_psy.c\nthird_party/ffmpeg/libavcodec/opus/enc_psy.h\nthird_party/ffmpeg/libavcodec/opus/enc_utils.h\nthird_party/ffmpeg/libavcodec/opus/pvq.c\nthird_party/ffmpeg/libavcodec/opus/pvq.h\nthird_party/ffmpeg/libavcodec/opus/rc.c\nthird_party/ffmpeg/libavcodec/opus/rc.h\nthird_party/ffmpeg/libavcodec/opus/tab.c\nthird_party/ffmpeg/libavcodec/opus/tab.h\nthird_party/ffmpeg/libavcodec/roqvideoenc.c\nthird_party/ffmpeg/libavcodec/rscc.c\nthird_party/ffmpeg/libavcodec/s302m.c\nthird_party/ffmpeg/libavcodec/s302menc.c\nthird_party/ffmpeg/libavcodec/samidec.c\nthird_party/ffmpeg/libavcodec/sbr.h\nthird_party/ffmpeg/libavcodec/sbrdsp.c\nthird_party/ffmpeg/libavcodec/sbrdsp_fixed.c\nthird_party/ffmpeg/libavcodec/sbrdsp_template.c\nthird_party/ffmpeg/libavcodec/screenpresso.c\nthird_party/ffmpeg/libavcodec/sunrastenc.c\nthird_party/ffmpeg/libavcodec/tdsc.c\nthird_party/ffmpeg/libavcodec/tests/jpeg2000dwt.c\nthird_party/ffmpeg/libavcodec/texturedsp.c\nthird_party/ffmpeg/libavcodec/texturedsp.h\nthird_party/ffmpeg/libavcodec/texturedsp_template.c\nthird_party/ffmpeg/libavcodec/texturedspenc.c\nthird_party/ffmpeg/libavcodec/vc2enc.c\nthird_party/ffmpeg/libavcodec/vc2enc_dwt.c\nthird_party/ffmpeg/libavcodec/vc2enc_dwt.h\nthird_party/ffmpeg/libavcodec/videotoolboxenc.c\nthird_party/ffmpeg/libavcodec/vp9_mc_template.c\nthird_party/ffmpeg/libavcodec/vp9recon.c\nthird_party/ffmpeg/libavcodec/vvc_parser.c\nthird_party/ffmpeg/libavcodec/webp.c\nthird_party/ffmpeg/libavcodec/wmavoice.c\nthird_party/ffmpeg/libavcodec/wmavoice_data.h\nthird_party/ffmpeg/libavcodec/x86/aacencdsp_init.c\nthird_party/ffmpeg/libavcodec/x86/celt_pvq_init.c\nthird_party/ffmpeg/libavcodec/x86/rv34dsp_init.c\nthird_party/ffmpeg/libavcodec/x86/sbrdsp_init.c\nthird_party/ffmpeg/libavcodec/x86/synth_filter_init.c\nthird_party/ffmpeg/libavcodec/x86/vp3dsp_init.c\nthird_party/ffmpeg/libavcodec/x86/vp6dsp_init.c\nthird_party/ffmpeg/libavcodec/x86/vp8dsp_init.c\nthird_party/ffmpeg/libavcodec/x86/w64xmmtest.c\nthird_party/ffmpeg/libavcodec/yop.c\nthird_party/ffmpeg/libavdevice/dshow.c\nthird_party/ffmpeg/libavdevice/fbdev_common.c\nthird_party/ffmpeg/libavdevice/fbdev_common.h\nthird_party/ffmpeg/libavdevice/fbdev_dec.c\nthird_party/ffmpeg/libavdevice/gdigrab.c\nthird_party/ffmpeg/libavdevice/pulse_audio_enc.c\nthird_party/ffmpeg/libavfilter/af_adecorrelate.c\nthird_party/ffmpeg/libavfilter/af_amix.c\nthird_party/ffmpeg/libavfilter/af_firequalizer.c\nthird_party/ffmpeg/libavfilter/af_sofalizer.c\nthird_party/ffmpeg/libavfilter/af_volume.c\nthird_party/ffmpeg/libavfilter/audio.c\nthird_party/ffmpeg/libavfilter/audio.h\nthird_party/ffmpeg/libavfilter/avf_showcqt.c\nthird_party/ffmpeg/libavfilter/avf_showcqt.h\nthird_party/ffmpeg/libavfilter/bwdifdsp.c\nthird_party/ffmpeg/libavfilter/colorspace.c\nthird_party/ffmpeg/libavfilter/colorspace.h\nthird_party/ffmpeg/libavfilter/colorspacedsp.c\nthird_party/ffmpeg/libavfilter/colorspacedsp.h\nthird_party/ffmpeg/libavfilter/colorspacedsp_template.c\nthird_party/ffmpeg/libavfilter/colorspacedsp_yuv2yuv_template.c\nthird_party/ffmpeg/libavfilter/f_ebur128.c\nthird_party/ffmpeg/libavfilter/gradfun.h\nthird_party/ffmpeg/libavfilter/motion_estimation.c\nthird_party/ffmpeg/libavfilter/motion_estimation.h\nthird_party/ffmpeg/libavfilter/psnr.c\nthird_party/ffmpeg/libavfilter/psnr.h\nthird_party/ffmpeg/libavfilter/ssim.h\nthird_party/ffmpeg/libavfilter/vf_bwdif.c\nthird_party/ffmpeg/libavfilter/vf_colorspace.c\nthird_party/ffmpeg/libavfilter/vf_delogo.c\nthird_party/ffmpeg/libavfilter/vf_detelecine.c\nthird_party/ffmpeg/libavfilter/vf_eq.c\nthird_party/ffmpeg/libavfilter/vf_eq.h\nthird_party/ffmpeg/libavfilter/vf_fftfilt.c\nthird_party/ffmpeg/libavfilter/vf_fspp.c\nthird_party/ffmpeg/libavfilter/vf_fsppdsp.c\nthird_party/ffmpeg/libavfilter/vf_fsppdsp.h\nthird_party/ffmpeg/libavfilter/vf_gradfun.c\nthird_party/ffmpeg/libavfilter/vf_lcevc.c\nthird_party/ffmpeg/libavfilter/vf_libvmaf.c\nthird_party/ffmpeg/libavfilter/vf_mestimate.c\nthird_party/ffmpeg/libavfilter/vf_minterpolate.c\nthird_party/ffmpeg/libavfilter/vf_overlay_cuda.c\nthird_party/ffmpeg/libavfilter/vf_pp7.c\nthird_party/ffmpeg/libavfilter/vf_pp7.h\nthird_party/ffmpeg/libavfilter/vf_super2xsai.c\nthird_party/ffmpeg/libavfilter/vf_tinterlace.c\nthird_party/ffmpeg/libavfilter/vf_tonemap.c\nthird_party/ffmpeg/libavfilter/vf_uspp.c\nthird_party/ffmpeg/libavfilter/vf_vif.c\nthird_party/ffmpeg/libavfilter/vf_vmafmotion.c\nthird_party/ffmpeg/libavfilter/vf_xbr.c\nthird_party/ffmpeg/libavfilter/vf_yadif.c\nthird_party/ffmpeg/libavfilter/vmaf_motion.h\nthird_party/ffmpeg/libavfilter/x86/avf_showcqt_init.c\nthird_party/ffmpeg/libavfilter/x86/colorspacedsp_init.c\nthird_party/ffmpeg/libavfilter/x86/vf_lut3d_init.c\nthird_party/ffmpeg/libavfilter/x86/vf_psnr_init.c\nthird_party/ffmpeg/libavfilter/x86/vf_ssim_init.c\nthird_party/ffmpeg/libavfilter/yadif_common.c\nthird_party/ffmpeg/libavformat/ac3dec.c\nthird_party/ffmpeg/libavformat/apc.c\nthird_party/ffmpeg/libavformat/apngdec.c\nthird_party/ffmpeg/libavformat/asf.c\nthird_party/ffmpeg/libavformat/async.c\nthird_party/ffmpeg/libavformat/av1.c\nthird_party/ffmpeg/libavformat/av1dec.c\nthird_party/ffmpeg/libavformat/avs3dec.c\nthird_party/ffmpeg/libavformat/c93.c\nthird_party/ffmpeg/libavformat/dnxhddec.c\nthird_party/ffmpeg/libavformat/ffjni.c\nthird_party/ffmpeg/libavformat/ftp.c\nthird_party/ffmpeg/libavformat/hevc.c\nthird_party/ffmpeg/libavformat/hevc.h\nthird_party/ffmpeg/libavformat/hevcdec.c\nthird_party/ffmpeg/libavformat/iamf.c\nthird_party/ffmpeg/libavformat/iamf.h\nthird_party/ffmpeg/libavformat/iamf_parse.c\nthird_party/ffmpeg/libavformat/iamf_parse.h\nthird_party/ffmpeg/libavformat/iamf_reader.c\nthird_party/ffmpeg/libavformat/iamf_reader.h\nthird_party/ffmpeg/libavformat/iamf_writer.c\nthird_party/ffmpeg/libavformat/iamf_writer.h\nthird_party/ffmpeg/libavformat/iamfdec.c\nthird_party/ffmpeg/libavformat/iff.c\nthird_party/ffmpeg/libavformat/ivfdec.c\nthird_party/ffmpeg/libavformat/jpegxl_parse.c\nthird_party/ffmpeg/libavformat/lc3.c\nthird_party/ffmpeg/libavformat/libsmbclient.c\nthird_party/ffmpeg/libavformat/libssh.c\nthird_party/ffmpeg/libavformat/matroskaenc.c\nthird_party/ffmpeg/libavformat/mmsh.c\nthird_party/ffmpeg/libavformat/mmst.c\nthird_party/ffmpeg/libavformat/mpeg4audio_sample_rates.c\nthird_party/ffmpeg/libavformat/prompeg.c\nthird_party/ffmpeg/libavformat/riffdec.c\nthird_party/ffmpeg/libavformat/rtpdec_vp8.c\nthird_party/ffmpeg/libavformat/rtpdec_xiph.c\nthird_party/ffmpeg/libavformat/samidec.c\nthird_party/ffmpeg/libavformat/vpcc.c\nthird_party/ffmpeg/libavformat/vpcc.h\nthird_party/ffmpeg/libavformat/vvcdec.c\nthird_party/ffmpeg/libavformat/webmdashenc.c\nthird_party/ffmpeg/libavformat/wvenc.c\nthird_party/ffmpeg/libavformat/xa.c\nthird_party/ffmpeg/libavformat/xmv.c\nthird_party/ffmpeg/libavformat/yop.c\nthird_party/ffmpeg/libavutil/aarch64/neontest.h\nthird_party/ffmpeg/libavutil/ambient_viewing_environment.c\nthird_party/ffmpeg/libavutil/ambient_viewing_environment.h\nthird_party/ffmpeg/libavutil/arm/neontest.h\nthird_party/ffmpeg/libavutil/audio_fifo.c\nthird_party/ffmpeg/libavutil/audio_fifo.h\nthird_party/ffmpeg/libavutil/csp.c\nthird_party/ffmpeg/libavutil/csp.h\nthird_party/ffmpeg/libavutil/display.c\nthird_party/ffmpeg/libavutil/display.h\nthird_party/ffmpeg/libavutil/downmix_info.c\nthird_party/ffmpeg/libavutil/downmix_info.h\nthird_party/ffmpeg/libavutil/ffmath.h\nthird_party/ffmpeg/libavutil/hdr_dynamic_metadata.c\nthird_party/ffmpeg/libavutil/hdr_dynamic_metadata.h\nthird_party/ffmpeg/libavutil/hdr_dynamic_vivid_metadata.c\nthird_party/ffmpeg/libavutil/hdr_dynamic_vivid_metadata.h\nthird_party/ffmpeg/libavutil/hwcontext_d3d12va.h\nthird_party/ffmpeg/libavutil/mastering_display_metadata.c\nthird_party/ffmpeg/libavutil/mastering_display_metadata.h\nthird_party/ffmpeg/libavutil/random_seed.c\nthird_party/ffmpeg/libavutil/random_seed.h\nthird_party/ffmpeg/libavutil/ripemd.h\nthird_party/ffmpeg/libavutil/sha512.h\nthird_party/ffmpeg/libavutil/softfloat_ieee754.h\nthird_party/ffmpeg/libavutil/spherical.c\nthird_party/ffmpeg/libavutil/spherical.h\nthird_party/ffmpeg/libavutil/stereo3d.c\nthird_party/ffmpeg/libavutil/stereo3d.h\nthird_party/ffmpeg/libavutil/tests/color_utils.c\nthird_party/ffmpeg/libavutil/tests/display.c\nthird_party/ffmpeg/libavutil/tests/random_seed.c\nthird_party/ffmpeg/libavutil/tests/side_data_array.c\nthird_party/ffmpeg/libavutil/timecode.c\nthird_party/ffmpeg/libavutil/timecode.h\nthird_party/ffmpeg/libavutil/timecode_internal.c\nthird_party/ffmpeg/libavutil/timecode_internal.h\nthird_party/ffmpeg/libavutil/tx.c\nthird_party/ffmpeg/libavutil/x86/aes_init.c\nthird_party/ffmpeg/libavutil/x86/crc.h\nthird_party/ffmpeg/libavutil/x86/w64xmmtest.h\nthird_party/ffmpeg/libswscale/arm/swscale_unscaled.c\nthird_party/ffmpeg/libswscale/gamma.c\nthird_party/ffmpeg/libswscale/hscale.c\nthird_party/ffmpeg/libswscale/slice.c\nthird_party/ffmpeg/libswscale/vscale.c\nthird_party/ffmpeg/libswscale/x86/w64xmmtest.c\nthird_party/ffmpeg/tests/checkasm/aes.c\nthird_party/ffmpeg/tests/checkasm/hevc_sao.c\nthird_party/ffmpeg/tests/checkasm/vf_colorspace.c\nthird_party/ffmpeg/tests/checkasm/videodsp.c\nthird_party/ffmpeg/tests/checkasm/vp9dsp.c\nthird_party/ffmpeg/tests/checkasm/vvc_alf.c\nthird_party/ffmpeg/tests/checkasm/vvc_sao.c\nthird_party/ffmpeg/tools/target_dec_fuzzer.c\nthird_party/flac/include/share/compat.h\nthird_party/flatbuffers/src/android/app/src/main/cpp/CMakeLists.txt\nthird_party/flatbuffers/src/android/app/src/main/cpp/flatbuffers/CMakeLists.txt\nthird_party/flatbuffers/src/benchmarks/cpp/flatbuffers/fb_bench.cpp\nthird_party/flatbuffers/src/benchmarks/cpp/raw/raw_bench.cpp\nthird_party/flatbuffers/src/java/pom.xml\nthird_party/flatbuffers/src/python/setup.py\nthird_party/flatbuffers/src/src/idl_gen_csharp.cpp\nthird_party/fontconfig/src/build-aux/fetch-testfonts.py\nthird_party/fontconfig/src/src/fcfreetype.c\nthird_party/fp16/src/third-party/eigen-half.h\nthird_party/freetype/include/freetype-custom/freetype/config/ftoption.h\nthird_party/freetype/src/builds/windows/vc2010/index.html\nthird_party/freetype/src/devel/ftoption.h\nthird_party/freetype/src/docs/formats.txt\nthird_party/freetype/src/include/freetype/config/ftoption.h\nthird_party/freetype/src/include/freetype/freetype.h\nthird_party/freetype/src/include/freetype/ftcolor.h\nthird_party/freetype/src/include/freetype/ftdriver.h\nthird_party/freetype/src/include/freetype/ftimage.h\nthird_party/freetype/src/include/freetype/ftmm.h\nthird_party/freetype/src/include/freetype/ftwinfnt.h\nthird_party/freetype/src/include/freetype/ttnameid.h\nthird_party/freetype/src/src/autofit/afadjust.c\nthird_party/freetype/src/src/autofit/afadjust.h\nthird_party/freetype/src/src/autofit/afindic.c\nthird_party/freetype/src/src/autofit/afindic.h\nthird_party/freetype/src/src/autofit/hb-script-list.h\nthird_party/freetype/src/src/sfnt/sfobjs.c\nthird_party/freetype/src/src/sfnt/ttcmap.c\nthird_party/freetype/src/src/sfnt/ttcolr.c\nthird_party/freetype/src/src/sfnt/ttcpal.c\nthird_party/freetype/src/src/sfnt/ttsvg.c\nthird_party/freetype/src/src/truetype/ttinterp.h\nthird_party/fuchsia-gn-sdk/src/gen_fidl_response_file.py\nthird_party/fuchsia-gn-sdk/src/gn_configs.gni\nthird_party/fuchsia-gn-sdk/src/prepare_package_inputs.py\nthird_party/fuzztest/src/centipede/runner_fork_server.cc\nthird_party/fuzztest/src/centipede/testing/test_fuzz_target.cc\nthird_party/fuzztest/src/fuzztest/internal/centipede_adaptor.cc\nthird_party/gemmlowp/src/contrib/CMakeLists.txt\nthird_party/gemmlowp/src/standalone/neon-gemm-kernel-benchmark.cc\nthird_party/glslang/src/glslang/HLSL/hlslParseHelper.cpp\nthird_party/google-closure-library/closure-deps/lib/jsfile_parser.js\nthird_party/google-closure-library/closure-deps/package.json\nthird_party/google-closure-library/closure/bin/build/depswriter.py\nthird_party/google-closure-library/closure/bin/build/source.py\nthird_party/google-closure-library/closure/bin/build/treescan.py\nthird_party/google-closure-library/closure/bin/labs/code/generate_jsdoc_test.py\nthird_party/google-closure-library/closure/goog/async/nexttick.js\nthird_party/google-closure-library/closure/goog/base.js\nthird_party/google-closure-library/closure/goog/base_debug_loader_test.js\nthird_party/google-closure-library/closure/goog/collections/iters.js\nthird_party/google-closure-library/closure/goog/crypt/arc4.js\nthird_party/google-closure-library/closure/goog/crypt/base64.js\nthird_party/google-closure-library/closure/goog/crypt/blobhasher.js\nthird_party/google-closure-library/closure/goog/crypt/crypt.js\nthird_party/google-closure-library/closure/goog/crypt/crypt_test.js\nthird_party/google-closure-library/closure/goog/css/bubble.css\nthird_party/google-closure-library/closure/goog/css/checkbox.css\nthird_party/google-closure-library/closure/goog/css/colorpalette.css\nthird_party/google-closure-library/closure/goog/css/colorpicker-simplegrid.css\nthird_party/google-closure-library/closure/goog/css/combobox.css\nthird_party/google-closure-library/closure/goog/css/css3menubutton.css\nthird_party/google-closure-library/closure/goog/css/custombutton.css\nthird_party/google-closure-library/closure/goog/css/dialog.css\nthird_party/google-closure-library/closure/goog/css/dragdropdetector.css\nthird_party/google-closure-library/closure/goog/css/editor/bubble.css\nthird_party/google-closure-library/closure/goog/css/editor/equationeditor.css\nthird_party/google-closure-library/closure/goog/css/editortoolbar.css\nthird_party/google-closure-library/closure/goog/css/flatmenubutton.css\nthird_party/google-closure-library/closure/goog/css/hsvapalette.css\nthird_party/google-closure-library/closure/goog/css/hsvpalette.css\nthird_party/google-closure-library/closure/goog/css/imagelessmenubutton.css\nthird_party/google-closure-library/closure/goog/css/menubutton.css\nthird_party/google-closure-library/closure/goog/css/menuitem.css\nthird_party/google-closure-library/closure/goog/css/toolbar.css\nthird_party/google-closure-library/closure/goog/css/tree.css\nthird_party/google-closure-library/closure/goog/css/tristatemenuitem.css\nthird_party/google-closure-library/closure/goog/cssom/cssom.js\nthird_party/google-closure-library/closure/goog/date/date.js\nthird_party/google-closure-library/closure/goog/debug/asyncstacktag.js\nthird_party/google-closure-library/closure/goog/debug/errorhandler.js\nthird_party/google-closure-library/closure/goog/demos/autocompleterichremotedata.json\nthird_party/google-closure-library/closure/goog/demos/css/demo.css\nthird_party/google-closure-library/closure/goog/demos/css/emojipicker.css\nthird_party/google-closure-library/closure/goog/demos/dialog.html\nthird_party/google-closure-library/closure/goog/demos/graphics/advancedcoordinates.html\nthird_party/google-closure-library/closure/goog/demos/graphics/advancedcoordinates2.html\nthird_party/google-closure-library/closure/goog/demos/graphics/basicelements.html\nthird_party/google-closure-library/closure/goog/demos/history1.html\nthird_party/google-closure-library/closure/goog/demos/history2.html\nthird_party/google-closure-library/closure/goog/demos/history3.html\nthird_party/google-closure-library/closure/goog/demos/hovercard.html\nthird_party/google-closure-library/closure/goog/demos/splitpane.html\nthird_party/google-closure-library/closure/goog/dom/animationframe/animationframe.js\nthird_party/google-closure-library/closure/goog/dom/browserfeature.js\nthird_party/google-closure-library/closure/goog/dom/browserrange/geckorange.js\nthird_party/google-closure-library/closure/goog/dom/browserrange/w3crange.js\nthird_party/google-closure-library/closure/goog/dom/controlrange_test_dom.html\nthird_party/google-closure-library/closure/goog/dom/dom.js\nthird_party/google-closure-library/closure/goog/dom/dom_test.js\nthird_party/google-closure-library/closure/goog/dom/forms.js\nthird_party/google-closure-library/closure/goog/dom/range_test.js\nthird_party/google-closure-library/closure/goog/dom/range_test_dom.html\nthird_party/google-closure-library/closure/goog/dom/textrange_test_dom.html\nthird_party/google-closure-library/closure/goog/dom/uri_test.js\nthird_party/google-closure-library/closure/goog/dom/xml.js\nthird_party/google-closure-library/closure/goog/editor/clicktoeditwrapper_test_dom.html\nthird_party/google-closure-library/closure/goog/editor/contenteditablefield.js\nthird_party/google-closure-library/closure/goog/editor/field.js\nthird_party/google-closure-library/closure/goog/editor/link.js\nthird_party/google-closure-library/closure/goog/editor/link_test.js\nthird_party/google-closure-library/closure/goog/editor/node_test.js\nthird_party/google-closure-library/closure/goog/editor/plugins/abstractbubbleplugin_test.js\nthird_party/google-closure-library/closure/goog/editor/plugins/basictextformatter.js\nthird_party/google-closure-library/closure/goog/editor/plugins/basictextformatter_test.js\nthird_party/google-closure-library/closure/goog/editor/plugins/basictextformatter_test_dom.html\nthird_party/google-closure-library/closure/goog/editor/plugins/linkbubble_test.js\nthird_party/google-closure-library/closure/goog/editor/plugins/linkbubble_test_dom.html\nthird_party/google-closure-library/closure/goog/editor/plugins/linkdialogplugin_test.js\nthird_party/google-closure-library/closure/goog/editor/plugins/linkshortcutplugin_test.js\nthird_party/google-closure-library/closure/goog/editor/plugins/linkshortcutplugin_test_dom.html\nthird_party/google-closure-library/closure/goog/editor/plugins/removeformatting_test.js\nthird_party/google-closure-library/closure/goog/editor/range.js\nthird_party/google-closure-library/closure/goog/editor/range_test.js\nthird_party/google-closure-library/closure/goog/editor/style.js\nthird_party/google-closure-library/closure/goog/events/browserevent.js\nthird_party/google-closure-library/closure/goog/events/browserevent_test.js\nthird_party/google-closure-library/closure/goog/events/browserfeature.js\nthird_party/google-closure-library/closure/goog/events/event.js\nthird_party/google-closure-library/closure/goog/events/eventtype.js\nthird_party/google-closure-library/closure/goog/events/filedrophandler.js\nthird_party/google-closure-library/closure/goog/events/keycodes.js\nthird_party/google-closure-library/closure/goog/events/keyhandler.js\nthird_party/google-closure-library/closure/goog/events/keys.js\nthird_party/google-closure-library/closure/goog/events/mousewheelhandler.js\nthird_party/google-closure-library/closure/goog/events/onlinehandler.js\nthird_party/google-closure-library/closure/goog/format/emailaddress.js\nthird_party/google-closure-library/closure/goog/format/emailaddress_test.js\nthird_party/google-closure-library/closure/goog/format/internationalizedemailaddress_test.js\nthird_party/google-closure-library/closure/goog/fs/blob.js\nthird_party/google-closure-library/closure/goog/fx/anim/anim.js\nthird_party/google-closure-library/closure/goog/graphics/svggraphics_test.js\nthird_party/google-closure-library/closure/goog/html/legacyconversions_test.js\nthird_party/google-closure-library/closure/goog/html/safehtml.js\nthird_party/google-closure-library/closure/goog/html/safehtml_test.js\nthird_party/google-closure-library/closure/goog/html/safestyle.js\nthird_party/google-closure-library/closure/goog/html/safeurl.js\nthird_party/google-closure-library/closure/goog/html/safeurl_test.js\nthird_party/google-closure-library/closure/goog/html/safeurl_test_vectors.js\nthird_party/google-closure-library/closure/goog/html/sanitizer/csssanitizer_test.js\nthird_party/google-closure-library/closure/goog/html/sanitizer/html_test_vectors.js\nthird_party/google-closure-library/closure/goog/html/sanitizer/htmlsanitizer_test.js\nthird_party/google-closure-library/closure/goog/html/sanitizer/tagblacklist.js\nthird_party/google-closure-library/closure/goog/html/trustedresourceurl.js\nthird_party/google-closure-library/closure/goog/html/trustedresourceurl_test.js\nthird_party/google-closure-library/closure/goog/i18n/bidi_test.js\nthird_party/google-closure-library/closure/goog/i18n/collation.js\nthird_party/google-closure-library/closure/goog/i18n/collation_test.js\nthird_party/google-closure-library/closure/goog/i18n/dateintervalformat.js\nthird_party/google-closure-library/closure/goog/i18n/datetimeformat.js\nthird_party/google-closure-library/closure/goog/i18n/externs_test.js\nthird_party/google-closure-library/closure/goog/i18n/listformat.js\nthird_party/google-closure-library/closure/goog/i18n/localefeature.js\nthird_party/google-closure-library/closure/goog/iter/iter.js\nthird_party/google-closure-library/closure/goog/labs/net/image.js\nthird_party/google-closure-library/closure/goog/labs/net/webchannel.js\nthird_party/google-closure-library/closure/goog/labs/net/webchannel/channel.js\nthird_party/google-closure-library/closure/goog/labs/net/webchannel/channelrequest.js\nthird_party/google-closure-library/closure/goog/labs/net/webchannel/environment.js\nthird_party/google-closure-library/closure/goog/labs/net/webchannel/netutils.js\nthird_party/google-closure-library/closure/goog/labs/net/webchannel/webchannelbase.js\nthird_party/google-closure-library/closure/goog/labs/net/webchannel/webchannelbase_test.js\nthird_party/google-closure-library/closure/goog/labs/net/xhr.js\nthird_party/google-closure-library/closure/goog/labs/net/xhr_test.js\nthird_party/google-closure-library/closure/goog/labs/useragent/browser.js\nthird_party/google-closure-library/closure/goog/labs/useragent/engine.js\nthird_party/google-closure-library/closure/goog/labs/useragent/platform.js\nthird_party/google-closure-library/closure/goog/labs/useragent/test_agents.js\nthird_party/google-closure-library/closure/goog/messaging/portchannel_test.js\nthird_party/google-closure-library/closure/goog/module/moduleloader.js\nthird_party/google-closure-library/closure/goog/module/moduleloader_test.js\nthird_party/google-closure-library/closure/goog/net/browserchannel.js\nthird_party/google-closure-library/closure/goog/net/browserchannel_test.js\nthird_party/google-closure-library/closure/goog/net/browsertestchannel.js\nthird_party/google-closure-library/closure/goog/net/channelrequest.js\nthird_party/google-closure-library/closure/goog/net/cookies_test.js\nthird_party/google-closure-library/closure/goog/net/crossdomainrpc_test.js\nthird_party/google-closure-library/closure/goog/net/fetchxmlhttpfactory.js\nthird_party/google-closure-library/closure/goog/net/fetchxmlhttpfactory_test.js\nthird_party/google-closure-library/closure/goog/net/iframeio_test_dom.html\nthird_party/google-closure-library/closure/goog/net/imageloader.js\nthird_party/google-closure-library/closure/goog/net/ipaddress.js\nthird_party/google-closure-library/closure/goog/net/jsonp.js\nthird_party/google-closure-library/closure/goog/net/networktester.js\nthird_party/google-closure-library/closure/goog/net/networktester_test.js\nthird_party/google-closure-library/closure/goog/net/streams/pbstreamparser.js\nthird_party/google-closure-library/closure/goog/net/tmpnetwork.js\nthird_party/google-closure-library/closure/goog/net/xhrio.js\nthird_party/google-closure-library/closure/goog/net/xhrlike.js\nthird_party/google-closure-library/closure/goog/net/xmlhttp.js\nthird_party/google-closure-library/closure/goog/positioning/positioning_test.js\nthird_party/google-closure-library/closure/goog/proto2/textformatserializer.js\nthird_party/google-closure-library/closure/goog/reflect/reflect.js\nthird_party/google-closure-library/closure/goog/soy/data_test.js\nthird_party/google-closure-library/closure/goog/soy/soy_testhelper.js\nthird_party/google-closure-library/closure/goog/storage/mechanism/ieuserdata.js\nthird_party/google-closure-library/closure/goog/storage/mechanism/mechanismtests.js\nthird_party/google-closure-library/closure/goog/string/linkify.js\nthird_party/google-closure-library/closure/goog/string/linkify_test.js\nthird_party/google-closure-library/closure/goog/string/newlines.js\nthird_party/google-closure-library/closure/goog/string/newlines_test.js\nthird_party/google-closure-library/closure/goog/string/string.js\nthird_party/google-closure-library/closure/goog/style/bidi_test.js\nthird_party/google-closure-library/closure/goog/style/style_test.js\nthird_party/google-closure-library/closure/goog/testing/asserts_test.js\nthird_party/google-closure-library/closure/goog/testing/fs/fs.js\nthird_party/google-closure-library/closure/goog/testing/mockclock.js\nthird_party/google-closure-library/closure/goog/testing/net/xhrio_test.js\nthird_party/google-closure-library/closure/goog/testing/performancetable.css\nthird_party/google-closure-library/closure/goog/testing/propertyreplacer.js\nthird_party/google-closure-library/closure/goog/testing/stacktrace.js\nthird_party/google-closure-library/closure/goog/testing/stacktrace_test.js\nthird_party/google-closure-library/closure/goog/testing/testcase.js\nthird_party/google-closure-library/closure/goog/timer/timer.js\nthird_party/google-closure-library/closure/goog/tweak/tweak.js\nthird_party/google-closure-library/closure/goog/ui/ac/autocomplete_test.js\nthird_party/google-closure-library/closure/goog/ui/ac/inputhandler.js\nthird_party/google-closure-library/closure/goog/ui/ac/remotearraymatcher_test.js\nthird_party/google-closure-library/closure/goog/ui/ac/richremotearraymatcher_test.js\nthird_party/google-closure-library/closure/goog/ui/component.js\nthird_party/google-closure-library/closure/goog/ui/control.js\nthird_party/google-closure-library/closure/goog/ui/dialog_test.js\nthird_party/google-closure-library/closure/goog/ui/editor/bubble_test.js\nthird_party/google-closure-library/closure/goog/ui/editor/linkdialog.js\nthird_party/google-closure-library/closure/goog/ui/editor/linkdialog_test.js\nthird_party/google-closure-library/closure/goog/ui/editor/messages.js\nthird_party/google-closure-library/closure/goog/ui/hovercard_test_dom.html\nthird_party/google-closure-library/closure/goog/ui/keyboardshortcuthandler_test_dom.html\nthird_party/google-closure-library/closure/goog/ui/media/youtube.js\nthird_party/google-closure-library/closure/goog/ui/media/youtube_test.js\nthird_party/google-closure-library/closure/goog/ui/menu.js\nthird_party/google-closure-library/closure/goog/ui/menubutton_test_frame.html\nthird_party/google-closure-library/closure/goog/ui/modalpopup.js\nthird_party/google-closure-library/closure/goog/ui/popupbase.js\nthird_party/google-closure-library/closure/goog/ui/serverchart.js\nthird_party/google-closure-library/closure/goog/ui/tooltip.js\nthird_party/google-closure-library/closure/goog/uri/uri.js\nthird_party/google-closure-library/closure/goog/uri/uri_test.js\nthird_party/google-closure-library/closure/goog/uri/utils.js\nthird_party/google-closure-library/closure/goog/uri/utils_test.js\nthird_party/google-closure-library/closure/goog/url/url.js\nthird_party/google-closure-library/closure/goog/url/url_test.js\nthird_party/google-closure-library/closure/goog/useragent/product_test.js\nthird_party/google-closure-library/closure/goog/window/window.js\nthird_party/google-closure-library/closure/goog/window/window_test.js\nthird_party/google-closure-library/closure/goog/window/window_test_dom.html\nthird_party/google-closure-library/doc/_layouts/article.html\nthird_party/google-closure-library/doc/js/article.js\nthird_party/google-closure-library/package.json\nthird_party/google-closure-library/scripts/generate_deps_js.js\nthird_party/google-closure-library/third_party/closure/goog/mochikit/async/deferred.js\nthird_party/google_benchmark/src/src/cycleclock.h\nthird_party/google_input_tools/src/chrome/os/inputview/adapter.js\nthird_party/google_input_tools/src/chrome/os/inputview/canvas.js\nthird_party/google_input_tools/src/chrome/os/inputview/dom.js\nthird_party/google_input_tools/src/chrome/os/inputview/hwt_css.js\nthird_party/google_input_tools/src/chrome/os/inputview/hwt_eventtype.js\nthird_party/google_input_tools/src/chrome/os/inputview/hwt_util.js\nthird_party/google_input_tools/src/chrome/os/inputview/inputtool.js\nthird_party/google_input_tools/src/chrome/os/inputview/strokehandler.js\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/closurebuilder.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/depstree.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/depstree_test.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/depswriter.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/jscompiler.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/source.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/source_test.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/build/treescan.py\nthird_party/google_input_tools/third_party/closure_library/closure/bin/scopify.py\nthird_party/google_input_tools/third_party/closure_library/closure/goog/array/array.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/asserts/asserts.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/async/animationdelay.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/async/delay.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/async/nexttick.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/base.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/debug/entrypointregistry.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/debug/logbuffer.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/debug/logger.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/disposable/disposable.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/disposable/idisposable.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/dom/browserfeature.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/dom/dom.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/browserevent.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/event.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/events.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/eventtarget.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/eventtype.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/eventwrapper.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/keycodes.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/keyhandler.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/events/listenable.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/functions/functions.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/fx/anim/anim.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/fx/animation.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/fx/easing.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/fx/transition.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/iter/iter.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/labs/useragent/browser.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/labs/useragent/engine.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/labs/useragent/util.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/log/log.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/math/size.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/object/object.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/positioning/abstractposition.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/positioning/anchoredposition.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/positioning/anchoredviewportposition.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/positioning/positioning.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/reflect/reflect.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/string/string.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/structs/collection.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/structs/map.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/structs/set.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/structs/structs.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/style/style.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/testing/watchers.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/timer/timer.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/component.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/container.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/containerrenderer.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/control.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/controlcontent.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/controlrenderer.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/decorate.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/menuseparatorrenderer.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/registry.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/ui/separator.js\nthird_party/google_input_tools/third_party/closure_library/closure/goog/useragent/useragent.js\nthird_party/google_input_tools/third_party/closure_library/third_party/closure/goog/mochikit/async/deferred.js\nthird_party/googletest/src/docs/_layouts/default.html\nthird_party/googletest/src/googlemock/src/gmock_main.cc\nthird_party/googletest/src/googletest/include/gtest/gtest_pred_impl.h\nthird_party/googletest/src/googletest/include/gtest/internal/gtest-port.h\nthird_party/googletest/src/googletest/src/gtest-death-test.cc\nthird_party/googletest/src/googletest/src/gtest.cc\nthird_party/googletest/src/googletest/test/googletest-death-test-test.cc\nthird_party/googletest/src/googletest/test/gtest_list_output_unittest_.cc\nthird_party/googletest/src/googletest/test/gtest_skip_test.cc\nthird_party/grpc/source/include/grpc/grpc.h\nthird_party/grpc/source/include/grpc/grpc_security_constants.h\nthird_party/grpc/source/include/grpc/support/port_platform.h\nthird_party/grpc/source/include/grpcpp/support/proto_buffer_reader.h\nthird_party/grpc/source/include/grpcpp/support/proto_buffer_writer.h\nthird_party/grpc/source/src/compiler/csharp_generator.cc\nthird_party/grpc/source/src/core/lib/event_engine/windows/iocp.cc\nthird_party/grpc/source/src/core/lib/iomgr/socket_windows.cc\nthird_party/grpc/source/src/core/lib/security/authorization/cel_authorization_engine.h\nthird_party/grpc/source/src/core/lib/security/credentials/credentials.h\nthird_party/grpc/source/src/core/lib/security/credentials/external/external_account_credentials.cc\nthird_party/grpc/source/src/core/lib/security/credentials/google_default/google_default_credentials.cc\nthird_party/grpc/source/src/core/lib/security/credentials/jwt/json_token.h\nthird_party/grpc/source/src/core/lib/security/credentials/jwt/jwt_verifier.h\nthird_party/grpc/source/src/core/resolver/google_c2p/google_c2p_resolver.cc\nthird_party/grpc/source/src/core/service_config/service_config.h\nthird_party/grpc/source/src/core/service_config/service_config_impl.h\nthird_party/grpc/source/src/core/util/json/json_object_loader.cc\nthird_party/grpc/source/src/core/util/json/json_util.h\nthird_party/grpc/source/src/core/util/status_helper.cc\nthird_party/grpc/source/src/core/util/string.h\nthird_party/grpc/source/src/core/util/time.h\nthird_party/grpc/source/src/core/util/windows/directory_reader.cc\nthird_party/grpc/source/src/core/xds/grpc/xds_cluster_parser.cc\nthird_party/grpc/source/src/core/xds/xds_client/xds_client.cc\nthird_party/grpc/source/src/cpp/ext/csm/csm_observability.cc\nthird_party/grpc/source/src/cpp/ext/gcp/observability.cc\nthird_party/grpc/source/src/cpp/ext/gcp/observability_logging_sink.cc\nthird_party/grpc/source/src/python/grpcio_observability/grpc_observability/python_observability_context.cc\nthird_party/grpc/source/third_party/upb/upb/base/descriptor_constants.h\nthird_party/grpc/source/third_party/upb/upb/base/internal/endian.h\nthird_party/grpc/source/third_party/upb/upb/base/internal/log2.h\nthird_party/grpc/source/third_party/upb/upb/base/status.c\nthird_party/grpc/source/third_party/upb/upb/base/status.h\nthird_party/grpc/source/third_party/upb/upb/base/status.hpp\nthird_party/grpc/source/third_party/upb/upb/base/string_view.h\nthird_party/grpc/source/third_party/upb/upb/base/upcast.h\nthird_party/grpc/source/third_party/upb/upb/conformance/conformance_upb.c\nthird_party/grpc/source/third_party/upb/upb/generated_code_support.h\nthird_party/grpc/source/third_party/upb/upb/hash/common.c\nthird_party/grpc/source/third_party/upb/upb/hash/common.h\nthird_party/grpc/source/third_party/upb/upb/hash/int_table.h\nthird_party/grpc/source/third_party/upb/upb/hash/str_table.h\nthird_party/grpc/source/third_party/upb/upb/hash/test.cc\nthird_party/grpc/source/third_party/upb/upb/io/chunked_input_stream.c\nthird_party/grpc/source/third_party/upb/upb/io/chunked_input_stream.h\nthird_party/grpc/source/third_party/upb/upb/io/chunked_output_stream.c\nthird_party/grpc/source/third_party/upb/upb/io/chunked_output_stream.h\nthird_party/grpc/source/third_party/upb/upb/io/string.h\nthird_party/grpc/source/third_party/upb/upb/io/string_test.cc\nthird_party/grpc/source/third_party/upb/upb/io/tokenizer.c\nthird_party/grpc/source/third_party/upb/upb/io/tokenizer.h\nthird_party/grpc/source/third_party/upb/upb/io/tokenizer_test.cc\nthird_party/grpc/source/third_party/upb/upb/io/zero_copy_input_stream.h\nthird_party/grpc/source/third_party/upb/upb/io/zero_copy_output_stream.h\nthird_party/grpc/source/third_party/upb/upb/io/zero_copy_stream_test.cc\nthird_party/grpc/source/third_party/upb/upb/json/decode.c\nthird_party/grpc/source/third_party/upb/upb/json/decode.h\nthird_party/grpc/source/third_party/upb/upb/json/decode_test.cc\nthird_party/grpc/source/third_party/upb/upb/json/encode.c\nthird_party/grpc/source/third_party/upb/upb/json/encode.h\nthird_party/grpc/source/third_party/upb/upb/json/encode_test.cc\nthird_party/grpc/source/third_party/upb/upb/json/fuzz_test.cc\nthird_party/grpc/source/third_party/upb/upb/lex/atoi.c\nthird_party/grpc/source/third_party/upb/upb/lex/atoi.h\nthird_party/grpc/source/third_party/upb/upb/lex/atoi_test.cc\nthird_party/grpc/source/third_party/upb/upb/lex/round_trip.c\nthird_party/grpc/source/third_party/upb/upb/lex/round_trip.h\nthird_party/grpc/source/third_party/upb/upb/lex/strtod.c\nthird_party/grpc/source/third_party/upb/upb/lex/strtod.h\nthird_party/grpc/source/third_party/upb/upb/lex/unicode.c\nthird_party/grpc/source/third_party/upb/upb/lex/unicode.h\nthird_party/grpc/source/third_party/upb/upb/mem/alloc.c\nthird_party/grpc/source/third_party/upb/upb/mem/alloc.h\nthird_party/grpc/source/third_party/upb/upb/mem/arena.c\nthird_party/grpc/source/third_party/upb/upb/mem/arena.h\nthird_party/grpc/source/third_party/upb/upb/mem/arena.hpp\nthird_party/grpc/source/third_party/upb/upb/mem/arena_test.cc\nthird_party/grpc/source/third_party/upb/upb/mem/internal/arena.h\nthird_party/grpc/source/third_party/upb/upb/message/accessors.c\nthird_party/grpc/source/third_party/upb/upb/message/accessors.h\nthird_party/grpc/source/third_party/upb/upb/message/accessors_split64.h\nthird_party/grpc/source/third_party/upb/upb/message/accessors_test.cc\nthird_party/grpc/source/third_party/upb/upb/message/array.c\nthird_party/grpc/source/third_party/upb/upb/message/array.h\nthird_party/grpc/source/third_party/upb/upb/message/array_test.cc\nthird_party/grpc/source/third_party/upb/upb/message/compare.c\nthird_party/grpc/source/third_party/upb/upb/message/compare.h\nthird_party/grpc/source/third_party/upb/upb/message/compat.c\nthird_party/grpc/source/third_party/upb/upb/message/compat.h\nthird_party/grpc/source/third_party/upb/upb/message/copy.c\nthird_party/grpc/source/third_party/upb/upb/message/copy.h\nthird_party/grpc/source/third_party/upb/upb/message/copy_test.cc\nthird_party/grpc/source/third_party/upb/upb/message/internal/accessors.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/array.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/compare_unknown.c\nthird_party/grpc/source/third_party/upb/upb/message/internal/compare_unknown.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/compare_unknown_test.cc\nthird_party/grpc/source/third_party/upb/upb/message/internal/extension.c\nthird_party/grpc/source/third_party/upb/upb/message/internal/extension.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/iterator.c\nthird_party/grpc/source/third_party/upb/upb/message/internal/iterator.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/map.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/map_entry.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/map_sorter.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/message.c\nthird_party/grpc/source/third_party/upb/upb/message/internal/message.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/tagged_ptr.h\nthird_party/grpc/source/third_party/upb/upb/message/internal/types.h\nthird_party/grpc/source/third_party/upb/upb/message/map.c\nthird_party/grpc/source/third_party/upb/upb/message/map.h\nthird_party/grpc/source/third_party/upb/upb/message/map_gencode_util.h\nthird_party/grpc/source/third_party/upb/upb/message/map_sorter.c\nthird_party/grpc/source/third_party/upb/upb/message/map_test.cc\nthird_party/grpc/source/third_party/upb/upb/message/message.c\nthird_party/grpc/source/third_party/upb/upb/message/message.h\nthird_party/grpc/source/third_party/upb/upb/message/promote.c\nthird_party/grpc/source/third_party/upb/upb/message/promote.h\nthird_party/grpc/source/third_party/upb/upb/message/promote_test.cc\nthird_party/grpc/source/third_party/upb/upb/message/tagged_ptr.h\nthird_party/grpc/source/third_party/upb/upb/message/test.cc\nthird_party/grpc/source/third_party/upb/upb/message/utf8_test.cc\nthird_party/grpc/source/third_party/upb/upb/message/value.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/build_enum.c\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/build_enum.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/decode.c\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/decode.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/base92.c\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/base92.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/decoder.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode.c\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode.hpp\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode_test.cc\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/modifiers.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/wire_constants.h\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/link.c\nthird_party/grpc/source/third_party/upb/upb/mini_descriptor/link.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/compat.c\nthird_party/grpc/source/third_party/upb/upb/mini_table/compat.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/compat_test.cc\nthird_party/grpc/source/third_party/upb/upb/mini_table/enum.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/extension.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/extension_registry.c\nthird_party/grpc/source/third_party/upb/upb/mini_table/extension_registry.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/field.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/file.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/enum.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/extension.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/field.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/file.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/message.c\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/message.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/size_log2.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/internal/sub.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/message.c\nthird_party/grpc/source/third_party/upb/upb/mini_table/message.h\nthird_party/grpc/source/third_party/upb/upb/mini_table/sub.h\nthird_party/grpc/source/third_party/upb/upb/port/atomic.h\nthird_party/grpc/source/third_party/upb/upb/port/vsnprintf_compat.h\nthird_party/grpc/source/third_party/upb/upb/reflection/common.h\nthird_party/grpc/source/third_party/upb/upb/reflection/def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/def.hpp\nthird_party/grpc/source/third_party/upb/upb/reflection/def_pool.c\nthird_party/grpc/source/third_party/upb/upb/reflection/def_pool.h\nthird_party/grpc/source/third_party/upb/upb/reflection/def_type.c\nthird_party/grpc/source/third_party/upb/upb/reflection/def_type.h\nthird_party/grpc/source/third_party/upb/upb/reflection/desc_state.c\nthird_party/grpc/source/third_party/upb/upb/reflection/enum_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/enum_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/enum_reserved_range.c\nthird_party/grpc/source/third_party/upb/upb/reflection/enum_reserved_range.h\nthird_party/grpc/source/third_party/upb/upb/reflection/enum_value_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/enum_value_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/extension_range.c\nthird_party/grpc/source/third_party/upb/upb/reflection/extension_range.h\nthird_party/grpc/source/third_party/upb/upb/reflection/field_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/field_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/file_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/file_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/def_builder.c\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/def_builder.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/def_builder_test.cc\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/def_pool.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/desc_state.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/enum_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/enum_reserved_range.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/enum_value_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/extension_range.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/field_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/file_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/message_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/message_reserved_range.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/method_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/oneof_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/service_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/strdup2.c\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/strdup2.h\nthird_party/grpc/source/third_party/upb/upb/reflection/internal/upb_edition_defaults.h\nthird_party/grpc/source/third_party/upb/upb/reflection/message.c\nthird_party/grpc/source/third_party/upb/upb/reflection/message.h\nthird_party/grpc/source/third_party/upb/upb/reflection/message.hpp\nthird_party/grpc/source/third_party/upb/upb/reflection/message_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/message_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/message_reserved_range.c\nthird_party/grpc/source/third_party/upb/upb/reflection/message_reserved_range.h\nthird_party/grpc/source/third_party/upb/upb/reflection/method_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/method_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/oneof_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/oneof_def.h\nthird_party/grpc/source/third_party/upb/upb/reflection/service_def.c\nthird_party/grpc/source/third_party/upb/upb/reflection/service_def.h\nthird_party/grpc/source/third_party/upb/upb/test/editions_test.cc\nthird_party/grpc/source/third_party/upb/upb/test/fuzz_util.cc\nthird_party/grpc/source/third_party/upb/upb/test/fuzz_util.h\nthird_party/grpc/source/third_party/upb/upb/test/parse_text_proto.h\nthird_party/grpc/source/third_party/upb/upb/test/proto3_test.cc\nthird_party/grpc/source/third_party/upb/upb/test/test_cpp.cc\nthird_party/grpc/source/third_party/upb/upb/test/test_generated_code.cc\nthird_party/grpc/source/third_party/upb/upb/test/test_import_empty_srcs.cc\nthird_party/grpc/source/third_party/upb/upb/test/test_mini_table_oneof.cc\nthird_party/grpc/source/third_party/upb/upb/text/debug_string.c\nthird_party/grpc/source/third_party/upb/upb/text/debug_string.h\nthird_party/grpc/source/third_party/upb/upb/text/encode.c\nthird_party/grpc/source/third_party/upb/upb/text/encode.h\nthird_party/grpc/source/third_party/upb/upb/text/encode_debug_test.cc\nthird_party/grpc/source/third_party/upb/upb/text/internal/encode.c\nthird_party/grpc/source/third_party/upb/upb/text/internal/encode.h\nthird_party/grpc/source/third_party/upb/upb/text/options.h\nthird_party/grpc/source/third_party/upb/upb/util/def_to_proto.c\nthird_party/grpc/source/third_party/upb/upb/util/def_to_proto.h\nthird_party/grpc/source/third_party/upb/upb/util/def_to_proto_fuzz_test.cc\nthird_party/grpc/source/third_party/upb/upb/util/def_to_proto_test.cc\nthird_party/grpc/source/third_party/upb/upb/util/def_to_proto_test.h\nthird_party/grpc/source/third_party/upb/upb/util/required_fields.c\nthird_party/grpc/source/third_party/upb/upb/util/required_fields.h\nthird_party/grpc/source/third_party/upb/upb/util/required_fields_test.cc\nthird_party/grpc/source/third_party/upb/upb/wire/byte_size.c\nthird_party/grpc/source/third_party/upb/upb/wire/byte_size.h\nthird_party/grpc/source/third_party/upb/upb/wire/byte_size_test.cc\nthird_party/grpc/source/third_party/upb/upb/wire/decode.c\nthird_party/grpc/source/third_party/upb/upb/wire/decode.h\nthird_party/grpc/source/third_party/upb/upb/wire/encode.c\nthird_party/grpc/source/third_party/upb/upb/wire/encode.h\nthird_party/grpc/source/third_party/upb/upb/wire/eps_copy_input_stream.c\nthird_party/grpc/source/third_party/upb/upb/wire/eps_copy_input_stream.h\nthird_party/grpc/source/third_party/upb/upb/wire/eps_copy_input_stream_test.cc\nthird_party/grpc/source/third_party/upb/upb/wire/internal/constants.h\nthird_party/grpc/source/third_party/upb/upb/wire/internal/decode_fast.c\nthird_party/grpc/source/third_party/upb/upb/wire/internal/decode_fast.h\nthird_party/grpc/source/third_party/upb/upb/wire/internal/decoder.h\nthird_party/grpc/source/third_party/upb/upb/wire/internal/reader.h\nthird_party/grpc/source/third_party/upb/upb/wire/reader.c\nthird_party/grpc/source/third_party/upb/upb/wire/reader.h\nthird_party/grpc/source/third_party/upb/upb/wire/types.h\nthird_party/grpc/source/third_party/xxhash/xxhash.h\nthird_party/harfbuzz-ng/src/docs/usermanual-install-harfbuzz.xml\nthird_party/harfbuzz-ng/src/docs/usermanual-integration.xml\nthird_party/harfbuzz-ng/src/docs/usermanual-opentype-features.xml\nthird_party/harfbuzz-ng/src/docs/usermanual-what-is-harfbuzz.xml\nthird_party/harfbuzz-ng/src/perf/texts/react-dom.txt\nthird_party/harfbuzz-ng/src/src/OT/Color/CBDT/CBDT.hh\nthird_party/harfbuzz-ng/src/src/OT/Color/COLR/COLR.hh\nthird_party/harfbuzz-ng/src/src/OT/Color/COLR/colrv1-closure.hh\nthird_party/harfbuzz-ng/src/src/OT/Color/CPAL/CPAL.hh\nthird_party/harfbuzz-ng/src/src/OT/Color/sbix/sbix.hh\nthird_party/harfbuzz-ng/src/src/OT/Color/svg/svg.hh\nthird_party/harfbuzz-ng/src/src/OT/Layout/GDEF/GDEF.hh\nthird_party/harfbuzz-ng/src/src/OT/Layout/GPOS/GPOS.hh\nthird_party/harfbuzz-ng/src/src/OT/Layout/GSUB/GSUB.hh\nthird_party/harfbuzz-ng/src/src/OT/glyf/glyf.hh\nthird_party/harfbuzz-ng/src/src/OT/glyf/loca.hh\nthird_party/harfbuzz-ng/src/src/OT/name/name.hh\nthird_party/harfbuzz-ng/src/src/gen-indic-table.py\nthird_party/harfbuzz-ng/src/src/gen-os2-unicode-ranges.py\nthird_party/harfbuzz-ng/src/src/gen-tag-table.py\nthird_party/harfbuzz-ng/src/src/hb-algs.hh\nthird_party/harfbuzz-ng/src/src/hb-buffer.cc\nthird_party/harfbuzz-ng/src/src/hb-common.cc\nthird_party/harfbuzz-ng/src/src/hb-common.h\nthird_party/harfbuzz-ng/src/src/hb-coretext-shape.cc\nthird_party/harfbuzz-ng/src/src/hb-font.cc\nthird_party/harfbuzz-ng/src/src/hb-ft.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-cff2-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-cmap-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-color.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-gasp-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-hdmx-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-head-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-hhea-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-hmtx-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-kern-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-layout-base-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-layout-common.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-layout-gsubgpos.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-layout-jstf-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-layout.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-layout.h\nthird_party/harfbuzz-ng/src/src/hb-ot-math-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-math.h\nthird_party/harfbuzz-ng/src/src/hb-ot-maxp-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-meta-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-meta.h\nthird_party/harfbuzz-ng/src/src/hb-ot-metrics.h\nthird_party/harfbuzz-ng/src/src/hb-ot-name-language-static.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-name.h\nthird_party/harfbuzz-ng/src/src/hb-ot-os2-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-post-table-v2subset.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-post-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-shaper-arabic.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-shaper-hebrew.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-shaper-khmer.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-shaper-myanmar.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-shaper-use.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-stat-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-tag.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-var-avar-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-var-common.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-var-cvar-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-var-fvar-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-var-gvar-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-var-hvar-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-var-mvar-table.hh\nthird_party/harfbuzz-ng/src/src/hb-ot-var.cc\nthird_party/harfbuzz-ng/src/src/hb-ot-vorg-table.hh\nthird_party/harfbuzz-ng/src/src/hb-paint-bounded.cc\nthird_party/harfbuzz-ng/src/src/hb-paint-bounded.hh\nthird_party/harfbuzz-ng/src/src/hb-paint-extents.cc\nthird_party/harfbuzz-ng/src/src/hb-paint-extents.hh\nthird_party/harfbuzz-ng/src/src/hb-paint.h\nthird_party/harfbuzz-ng/src/src/hb-script-list.h\nthird_party/harfbuzz-ng/src/src/hb-style.h\nthird_party/harfbuzz-ng/src/src/hb-subset-cff-common.hh\nthird_party/harfbuzz-ng/src/src/hb-unicode.hh\nthird_party/harfbuzz-ng/src/src/hb.hh\nthird_party/highway/src/.bcr/metadata.template.json\nthird_party/highway/src/hwy/base.h\nthird_party/hunspell/src/hunspell/affentry.cxx\nthird_party/hunspell/src/hunspell/affentry.hxx\nthird_party/hunspell/src/hunspell/affixmgr.cxx\nthird_party/hunspell/src/hunspell/affixmgr.hxx\nthird_party/hunspell/src/hunspell/atypes.hxx\nthird_party/hunspell/src/hunspell/baseaffix.hxx\nthird_party/hunspell/src/hunspell/csutil.cxx\nthird_party/hunspell/src/hunspell/csutil.hxx\nthird_party/hunspell/src/hunspell/filemgr.cxx\nthird_party/hunspell/src/hunspell/filemgr.hxx\nthird_party/hunspell/src/hunspell/hashmgr.cxx\nthird_party/hunspell/src/hunspell/hashmgr.hxx\nthird_party/hunspell/src/hunspell/htypes.hxx\nthird_party/hunspell/src/hunspell/hunspell.cxx\nthird_party/hunspell/src/hunspell/hunspell.h\nthird_party/hunspell/src/hunspell/hunspell.hxx\nthird_party/hunspell/src/hunspell/hunzip.cxx\nthird_party/hunspell/src/hunspell/hunzip.hxx\nthird_party/hunspell/src/hunspell/langnum.hxx\nthird_party/hunspell/src/hunspell/replist.cxx\nthird_party/hunspell/src/hunspell/replist.hxx\nthird_party/hunspell/src/hunspell/suggestmgr.cxx\nthird_party/hunspell/src/hunspell/suggestmgr.hxx\nthird_party/hunspell/src/hunspell/utf_info.cxx\nthird_party/hunspell/src/hunspell/w_char.hxx\nthird_party/hunspell/src/parsers/firstparser.cxx\nthird_party/hunspell/src/parsers/firstparser.hxx\nthird_party/hunspell/src/parsers/htmlparser.cxx\nthird_party/hunspell/src/parsers/htmlparser.hxx\nthird_party/hunspell/src/parsers/latexparser.cxx\nthird_party/hunspell/src/parsers/latexparser.hxx\nthird_party/hunspell/src/parsers/manparser.cxx\nthird_party/hunspell/src/parsers/manparser.hxx\nthird_party/hunspell/src/parsers/odfparser.cxx\nthird_party/hunspell/src/parsers/odfparser.hxx\nthird_party/hunspell/src/parsers/testparser.cxx\nthird_party/hunspell/src/parsers/textparser.cxx\nthird_party/hunspell/src/parsers/textparser.hxx\nthird_party/hunspell/src/parsers/xmlparser.cxx\nthird_party/hunspell/src/parsers/xmlparser.hxx\nthird_party/hyphenation-patterns/src/be/hyph-be.lic.txt\nthird_party/hyphenation-patterns/src/el/hyph-el.lic.txt\nthird_party/hyphenation-patterns/src/hu/hyph-hu.lic.txt\nthird_party/hyphenation-patterns/src/hy/hyph-hy.lic.txt\nthird_party/hyphenation-patterns/src/it/hyph-it.lic.txt\nthird_party/hyphenation-patterns/src/sq/hyph-sq.lic.txt\nthird_party/hyphenation-patterns/src/sv/hyph-sv.lic.txt\nthird_party/iaccessible2/ia2_api_all.idl\nthird_party/icu/filters/android.json\nthird_party/icu/filters/cast.json\nthird_party/icu/filters/chromecast_video.json\nthird_party/icu/filters/chromeos.json\nthird_party/icu/filters/common.json\nthird_party/icu/filters/flutter.json\nthird_party/icu/filters/flutter_desktop.json\nthird_party/icu/filters/ios.json\nthird_party/icu/icu.gyp\nthird_party/icu/source/common/bytestream.cpp\nthird_party/icu/source/common/locmap.cpp\nthird_party/icu/source/common/stringpiece.cpp\nthird_party/icu/source/common/ucnvsel.cpp\nthird_party/icu/source/common/unicode/bytestream.h\nthird_party/icu/source/common/unicode/platform.h\nthird_party/icu/source/common/unicode/ucnvsel.h\nthird_party/icu/source/common/unicode/umachine.h\nthird_party/icu/source/common/unifiedcache.h\nthird_party/icu/source/common/wintz.cpp\nthird_party/icu/source/data/brkitr/dictionaries/burmesedict.txt\nthird_party/icu/source/data/brkitr/dictionaries/laodict.txt\nthird_party/icu/source/data/translit/ru_ru_Latn_BGN.txt\nthird_party/icu/source/data/translit/ug_ug_FONIPA.txt\nthird_party/icu/source/data/translit/xh_xh_FONIPA.txt\nthird_party/icu/source/data/translit/zu_zu_FONIPA.txt\nthird_party/icu/source/data/unidata/changes.txt\nthird_party/icu/source/i18n/unicode/numberformatter.h\nthird_party/icu/source/io/ufile.cpp\nthird_party/icu/source/test/intltest/numberformattesttuple.h\nthird_party/icu/source/test/intltest/strcase.cpp\nthird_party/icu/source/test/intltest/uobjtest.cpp\nthird_party/icu/source/test/perf/collationperf/collperf.cpp\nthird_party/icu/source/test/perf/collationperf/readme.html\nthird_party/icu/source/test/testdata/numberformattestspecification.txt\nthird_party/icu/source/tools/toolutil/json-json.hpp\nthird_party/icu/source/tools/toolutil/pkg_genc.cpp\nthird_party/inspector_protocol/crdtp/cbor.cc\nthird_party/inspector_protocol/crdtp/json.cc\nthird_party/inspector_protocol/roll.py\nthird_party/ipcz/src/PRESUBMIT.py\nthird_party/ipcz/src/reference_drivers/random.cc\nthird_party/isimpledom/ISimpleDOMDocument.idl\nthird_party/isimpledom/ISimpleDOMNode.idl\nthird_party/isimpledom/ISimpleDOMText.idl\nthird_party/jni_zero/PRESUBMIT.py\nthird_party/kotlinc/licenses/gradle_license.txt\nthird_party/kotlinc/licenses/rhino_LICENSE.txt\nthird_party/leveldatabase/src/doc/benchmark.html\nthird_party/leveldatabase/src/table/format.h\nthird_party/libFuzzer/src/FuzzerSHA1.cpp\nthird_party/libFuzzer/src/FuzzerUtilWindows.cpp\nthird_party/libaddressinput/BUILD.gn\nthird_party/libaddressinput/chromium/chrome_address_validator.h\nthird_party/libaddressinput/chromium/fallback_data_store.cc\nthird_party/libaddressinput/chromium/tools/require_fields.py\nthird_party/libaddressinput/src/cpp/libaddressinput.gyp\nthird_party/libaddressinput/src/cpp/src/grit.h\nthird_party/libaddressinput/src/cpp/src/util/md5.cc\nthird_party/libaddressinput/src/cpp/src/util/md5.h\nthird_party/libaddressinput/src/cpp/src/util/size.h\nthird_party/libaddressinput/src/cpp/src/util/string_split.cc\nthird_party/libaddressinput/src/cpp/src/util/string_split.h\nthird_party/libaddressinput/src/cpp/src/util/string_util.cc\nthird_party/libaddressinput/src/cpp/src/util/string_util.h\nthird_party/libaddressinput/src/cpp/test/testdata_source.cc\nthird_party/libaddressinput/src/cpp/test/util/md5_unittest.cc\nthird_party/libaddressinput/src/cpp/test/util/string_split_unittest.cc\nthird_party/libaom/source/libaom/CMakeLists.txt\nthird_party/libaom/source/libaom/aom/src/aom_encoder.c\nthird_party/libaom/source/libaom/aom_dsp/x86/variance_impl_avx2.c\nthird_party/libaom/source/libaom/aom_ports/aarch64_cpudetect.c\nthird_party/libaom/source/libaom/aom_ports/bitops.h\nthird_party/libaom/source/libaom/aom_util/aom_thread.c\nthird_party/libaom/source/libaom/aom_util/aom_thread.h\nthird_party/libaom/source/libaom/av1/common/av1_common_int.h\nthird_party/libaom/source/libaom/av1/common/cdef_block_simd.h\nthird_party/libaom/source/libaom/av1/common/x86/av1_inv_txfm_ssse3.c\nthird_party/libaom/source/libaom/av1/encoder/block.h\nthird_party/libaom/source/libaom/av1/encoder/encodemb.c\nthird_party/libaom/source/libaom/av1/encoder/encoder.h\nthird_party/libaom/source/libaom/av1/encoder/intra_mode_search.c\nthird_party/libaom/source/libaom/av1/encoder/mcomp.c\nthird_party/libaom/source/libaom/av1/encoder/mv_prec.c\nthird_party/libaom/source/libaom/av1/encoder/palette.c\nthird_party/libaom/source/libaom/av1/encoder/partition_model_weights.h\nthird_party/libaom/source/libaom/av1/encoder/partition_strategy.c\nthird_party/libaom/source/libaom/av1/encoder/partition_strategy.h\nthird_party/libaom/source/libaom/av1/encoder/rdopt.c\nthird_party/libaom/source/libaom/av1/encoder/rdopt_utils.h\nthird_party/libaom/source/libaom/av1/encoder/speed_features.c\nthird_party/libaom/source/libaom/av1/encoder/speed_features.h\nthird_party/libaom/source/libaom/av1/encoder/tx_search.c\nthird_party/libaom/source/libaom/av1/encoder/var_based_part.c\nthird_party/libaom/source/libaom/common/tools_common.h\nthird_party/libaom/source/libaom/test/gviz_api.py\nthird_party/libaom/source/libaom/test/metrics_template.html\nthird_party/libaom/source/libaom/test/visual_metrics.py\nthird_party/libaom/source/libaom/third_party/SVT-AV1/convolve_2d_avx2.h\nthird_party/libaom/source/libaom/third_party/SVT-AV1/convolve_avx2.h\nthird_party/libaom/source/libaom/third_party/googletest/src/googletest/include/gtest/gtest_pred_impl.h\nthird_party/libaom/source/libaom/third_party/googletest/src/googletest/include/gtest/internal/gtest-port.h\nthird_party/libaom/source/libaom/third_party/googletest/src/googletest/src/gtest-death-test.cc\nthird_party/libaom/source/libaom/third_party/googletest/src/googletest/src/gtest.cc\nthird_party/libaom/source/libaom/third_party/highway/hwy/stats.h\nthird_party/libaom/source/libaom/third_party/libwebm/AUTHORS.TXT\nthird_party/libaom/source/libaom/third_party/libwebm/mkvmuxer/mkvwriter.cc\nthird_party/libaom/source/libaom/third_party/libwebm/mkvparser/mkvreader.cc\nthird_party/libaom/source/libaom/third_party/libyuv/include/libyuv/row.h\nthird_party/libaom/source/libaom/third_party/libyuv/include/libyuv/video_common.h\nthird_party/libaom/source/libaom/third_party/libyuv/source/cpu_id.cc\nthird_party/libaom/source/libaom/tools/aggregate_entropy_stats.py\nthird_party/libaom/source/libaom/tools/cpplint.py\nthird_party/libaom/source/libaom/tools/diff.py\nthird_party/libaom/source/libaom/tools/inspect-cli.js\nthird_party/libaom/source/libaom/tools/intersect-diffs.py\nthird_party/libaom/source/libaom/tools/wrap-commit-msg.py\nthird_party/libc++/src/CREDITS.TXT\nthird_party/libc++/src/src/atomic.cpp\nthird_party/libc++/src/src/chrono.cpp\nthird_party/libc++/src/src/experimental/tzdb.cpp\nthird_party/libc++/src/src/fstream.cpp\nthird_party/libc++/src/src/print.cpp\nthird_party/libc++/src/test/libcxx/containers/sequences/deque/asan_turning_off.pass.cpp\nthird_party/libc++/src/test/libcxx/containers/sequences/vector/asan_turning_off.pass.cpp\nthird_party/libc++/src/test/libcxx/containers/strings/basic.string/asan_turning_off.pass.cpp\nthird_party/libc++/src/utils/ci/BOT_OWNERS.txt\nthird_party/libc++abi/src/CREDITS.TXT\nthird_party/libdrm/src/android/gralloc_handle.h\nthird_party/libdrm/src/etnaviv/etnaviv_bo.c\nthird_party/libdrm/src/etnaviv/etnaviv_bo_cache.c\nthird_party/libdrm/src/etnaviv/etnaviv_cmd_stream.c\nthird_party/libdrm/src/etnaviv/etnaviv_device.c\nthird_party/libdrm/src/etnaviv/etnaviv_drmif.h\nthird_party/libdrm/src/etnaviv/etnaviv_gpu.c\nthird_party/libdrm/src/etnaviv/etnaviv_perfmon.c\nthird_party/libdrm/src/etnaviv/etnaviv_pipe.c\nthird_party/libdrm/src/etnaviv/etnaviv_priv.h\nthird_party/libdrm/src/include/drm/drm_mode.h\nthird_party/libdrm/src/include/drm/msm_drm.h\nthird_party/libdrm/src/tests/drmdevice.c\nthird_party/libdrm/src/tests/etnaviv/cmdstream.xml.h\nthird_party/libdrm/src/tests/etnaviv/etnaviv_2d_test.c\nthird_party/libdrm/src/tests/etnaviv/etnaviv_bo_cache_test.c\nthird_party/libdrm/src/tests/etnaviv/etnaviv_cmd_stream_test.c\nthird_party/libdrm/src/tests/etnaviv/state.xml.h\nthird_party/libdrm/src/tests/etnaviv/state_2d.xml.h\nthird_party/libdrm/src/tests/modeprint/modeprint.c\nthird_party/libdrm/src/tests/modetest/cursor.c\nthird_party/libdrm/src/tests/modetest/cursor.h\nthird_party/libdrm/src/tests/radeon/radeon_ttm.c\nthird_party/libdrm/src/tests/radeon/rbo.c\nthird_party/libdrm/src/tests/radeon/rbo.h\nthird_party/libdrm/src/xf86drmMode.c\nthird_party/libdrm/src/xf86drmMode.h\nthird_party/libgav1/src/src/utils/compiler_attributes.h\nthird_party/libgav1/src/src/utils/cpu_test.cc\nthird_party/liblouis/src/liblouis/metadata.c\nthird_party/liblouis/src/python/louis/__init__.py.in\nthird_party/liblouis/src/tests/check_metadata.c\nthird_party/liblouis/src/tests/emphclass.c\nthird_party/liblouis/src/tests/findTable.c\nthird_party/liblouis/src/tests/hyphenate_xxx.c\nthird_party/liblouis/src/tools/brl_checks.c\nthird_party/liblouis/src/tools/brl_checks.h\nthird_party/liblouis/src/tools/gnulib/getprogname.c\nthird_party/liblouis/src/tools/gnulib/msvc-inval.h\nthird_party/liblouis/src/tools/gnulib/pathmax.h\nthird_party/liblouis/src/tools/gnulib/stat-time.h\nthird_party/liblouis/src/tools/gnulib/stat-w32.c\nthird_party/liblouis/src/tools/gnulib/stat.c\nthird_party/liblouis/wasm/liblouis_wasm.js\nthird_party/libpfm4/src/examples/check_events.c\nthird_party/libpfm4/src/examples/showevtinfo.c\nthird_party/libpfm4/src/include/perfmon/perf_event.h\nthird_party/libpfm4/src/include/perfmon/pfmlib.h\nthird_party/libpfm4/src/include/perfmon/pfmlib_perf_event.h\nthird_party/libpfm4/src/lib/events/amd64_events_fam10h.h\nthird_party/libpfm4/src/lib/events/amd64_events_fam14h.h\nthird_party/libpfm4/src/lib/events/amd64_events_fam15h.h\nthird_party/libpfm4/src/lib/events/amd64_events_fam15h_nb.h\nthird_party/libpfm4/src/lib/events/amd64_events_fam17h_zen1.h\nthird_party/libpfm4/src/lib/events/amd64_events_fam17h_zen2.h\nthird_party/libpfm4/src/lib/events/amd64_events_fam19h_zen3_l3.h\nthird_party/libpfm4/src/lib/events/amd64_events_k7.h\nthird_party/libpfm4/src/lib/events/amd64_events_k8.h\nthird_party/libpfm4/src/lib/events/arm_cavium_tx2_events.h\nthird_party/libpfm4/src/lib/events/arm_cortex_a15_events.h\nthird_party/libpfm4/src/lib/events/arm_cortex_a53_events.h\nthird_party/libpfm4/src/lib/events/arm_cortex_a55_events.h\nthird_party/libpfm4/src/lib/events/arm_cortex_a57_events.h\nthird_party/libpfm4/src/lib/events/arm_cortex_a76_events.h\nthird_party/libpfm4/src/lib/events/arm_neoverse_n1_events.h\nthird_party/libpfm4/src/lib/events/arm_neoverse_n2_events.h\nthird_party/libpfm4/src/lib/events/arm_neoverse_n3_events.h\nthird_party/libpfm4/src/lib/events/arm_neoverse_v1_events.h\nthird_party/libpfm4/src/lib/events/arm_neoverse_v2_events.h\nthird_party/libpfm4/src/lib/events/arm_neoverse_v3_events.h\nthird_party/libpfm4/src/lib/events/intel_adl_glc_events.h\nthird_party/libpfm4/src/lib/events/intel_adl_grt_events.h\nthird_party/libpfm4/src/lib/events/intel_atom_events.h\nthird_party/libpfm4/src/lib/events/intel_bdw_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_cbo_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_ha_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_irp_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_pcu_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_r2pcie_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_r3qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_sbo_events.h\nthird_party/libpfm4/src/lib/events/intel_bdx_unc_ubo_events.h\nthird_party/libpfm4/src/lib/events/intel_core_events.h\nthird_party/libpfm4/src/lib/events/intel_coreduo_events.h\nthird_party/libpfm4/src/lib/events/intel_glm_events.h\nthird_party/libpfm4/src/lib/events/intel_gnr_events.h\nthird_party/libpfm4/src/lib/events/intel_gnr_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_hsw_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_cbo_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_ha_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_irp_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_pcu_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_r2pcie_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_r3qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_sbo_events.h\nthird_party/libpfm4/src/lib/events/intel_hswep_unc_ubo_events.h\nthird_party/libpfm4/src/lib/events/intel_icl_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_cha_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_iio_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_irp_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_m2m_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_m2pcie_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_m3upi_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_pcu_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_ubox_events.h\nthird_party/libpfm4/src/lib/events/intel_icx_unc_upi_events.h\nthird_party/libpfm4/src/lib/events/intel_ivb_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_cbo_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_ha_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_irp_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_pcu_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_r2pcie_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_r3qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_ivbep_unc_ubo_events.h\nthird_party/libpfm4/src/lib/events/intel_knc_events.h\nthird_party/libpfm4/src/lib/events/intel_nhm_events.h\nthird_party/libpfm4/src/lib/events/intel_nhm_unc_events.h\nthird_party/libpfm4/src/lib/events/intel_p6_events.h\nthird_party/libpfm4/src/lib/events/intel_pii_events.h\nthird_party/libpfm4/src/lib/events/intel_pm_events.h\nthird_party/libpfm4/src/lib/events/intel_ppro_events.h\nthird_party/libpfm4/src/lib/events/intel_skl_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_cha_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_iio_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_irp_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_m2m_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_m3upi_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_pcu_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_ubo_events.h\nthird_party/libpfm4/src/lib/events/intel_skx_unc_upi_events.h\nthird_party/libpfm4/src/lib/events/intel_slm_events.h\nthird_party/libpfm4/src/lib/events/intel_snb_events.h\nthird_party/libpfm4/src/lib/events/intel_snb_unc_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_cbo_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_ha_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_pcu_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_r2pcie_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_r3qpi_events.h\nthird_party/libpfm4/src/lib/events/intel_snbep_unc_ubo_events.h\nthird_party/libpfm4/src/lib/events/intel_spr_events.h\nthird_party/libpfm4/src/lib/events/intel_spr_unc_cha_events.h\nthird_party/libpfm4/src/lib/events/intel_spr_unc_imc_events.h\nthird_party/libpfm4/src/lib/events/intel_spr_unc_upi_events.h\nthird_party/libpfm4/src/lib/events/intel_tmt_events.h\nthird_party/libpfm4/src/lib/events/intel_wsm_events.h\nthird_party/libpfm4/src/lib/events/intel_wsm_unc_events.h\nthird_party/libpfm4/src/lib/events/perf_events.h\nthird_party/libpfm4/src/lib/pfmlib_amd64.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_fam10h.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_fam14h.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_fam15h.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_fam17h.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_fam19h_l3.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_k7.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_k8.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_amd64_rapl.c\nthird_party/libpfm4/src/lib/pfmlib_arm_armv8.c\nthird_party/libpfm4/src/lib/pfmlib_arm_armv8_kunpeng_unc.c\nthird_party/libpfm4/src/lib/pfmlib_arm_armv8_thunderx2_unc.c\nthird_party/libpfm4/src/lib/pfmlib_arm_armv8_unc.c\nthird_party/libpfm4/src/lib/pfmlib_arm_armv9.c\nthird_party/libpfm4/src/lib/pfmlib_arm_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_common.c\nthird_party/libpfm4/src/lib/pfmlib_intel_adl.c\nthird_party/libpfm4/src/lib/pfmlib_intel_atom.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdw.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_cbo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_ha.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_irp.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_pcu.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_r2pcie.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_r3qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_sbo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_ubo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_core.c\nthird_party/libpfm4/src/lib/pfmlib_intel_coreduo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_glm.c\nthird_party/libpfm4/src/lib/pfmlib_intel_gnr.c\nthird_party/libpfm4/src/lib/pfmlib_intel_gnr_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hsw.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_cbo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_ha.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_irp.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_pcu.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_r2pcie.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_r3qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_sbo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_ubo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icl.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_cha.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_iio.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_irp.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_m2m.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_m2pcie.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_m3upi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_pcu.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_ubox.c\nthird_party/libpfm4/src/lib/pfmlib_intel_icx_unc_upi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivb.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivb_unc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_cbo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_ha.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_irp.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_pcu.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_r2pcie.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_r3qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_ubo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_knc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_netburst_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_intel_nhm.c\nthird_party/libpfm4/src/lib/pfmlib_intel_nhm_unc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_rapl.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skl.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_cha.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_iio.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_irp.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_m2m.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_m3upi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_pcu.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_ubo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_skx_unc_upi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_slm.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snb.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snb_unc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_cbo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_ha.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_pcu.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_priv.h\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_r2pcie.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_r3qpi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_ubo.c\nthird_party/libpfm4/src/lib/pfmlib_intel_spr.c\nthird_party/libpfm4/src/lib/pfmlib_intel_spr_unc_cha.c\nthird_party/libpfm4/src/lib/pfmlib_intel_spr_unc_imc.c\nthird_party/libpfm4/src/lib/pfmlib_intel_spr_unc_upi.c\nthird_party/libpfm4/src/lib/pfmlib_intel_tmt.c\nthird_party/libpfm4/src/lib/pfmlib_intel_wsm.c\nthird_party/libpfm4/src/lib/pfmlib_intel_x86.c\nthird_party/libpfm4/src/lib/pfmlib_intel_x86_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_intel_x86_priv.h\nthird_party/libpfm4/src/lib/pfmlib_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_perf_event_pmu.c\nthird_party/libpfm4/src/lib/pfmlib_perf_event_priv.h\nthird_party/libpfm4/src/lib/pfmlib_perf_event_raw.c\nthird_party/libpfm4/src/lib/pfmlib_powerpc_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_sparc.c\nthird_party/libpfm4/src/lib/pfmlib_sparc_niagara.c\nthird_party/libpfm4/src/lib/pfmlib_sparc_perf_event.c\nthird_party/libpfm4/src/lib/pfmlib_sparc_ultra12.c\nthird_party/libpfm4/src/lib/pfmlib_sparc_ultra3.c\nthird_party/libpfm4/src/lib/pfmlib_sparc_ultra4.c\nthird_party/libpfm4/src/perf_examples/branch_smpl.c\nthird_party/libpfm4/src/perf_examples/notify_group.c\nthird_party/libpfm4/src/perf_examples/notify_self.c\nthird_party/libpfm4/src/perf_examples/perf_util.c\nthird_party/libpfm4/src/perf_examples/perf_util.h\nthird_party/libpfm4/src/perf_examples/rtop.c\nthird_party/libpfm4/src/perf_examples/self.c\nthird_party/libpfm4/src/perf_examples/self_basic.c\nthird_party/libpfm4/src/perf_examples/self_count.c\nthird_party/libpfm4/src/perf_examples/self_pipe.c\nthird_party/libpfm4/src/perf_examples/self_smpl_multi.c\nthird_party/libpfm4/src/perf_examples/syst_count.c\nthird_party/libpfm4/src/perf_examples/syst_smpl.c\nthird_party/libpfm4/src/perf_examples/task.c\nthird_party/libpfm4/src/perf_examples/task_attach_timeout.c\nthird_party/libpfm4/src/perf_examples/task_cpu.c\nthird_party/libpfm4/src/perf_examples/task_smpl.c\nthird_party/libpfm4/src/perf_examples/x86/bts_smpl.c\nthird_party/libpfm4/src/python/Makefile\nthird_party/libpfm4/src/python/self.py\nthird_party/libpfm4/src/python/setup.py\nthird_party/libpfm4/src/python/src/pmu.py\nthird_party/libpfm4/src/python/src/session.py\nthird_party/libpfm4/src/python/sys.py\nthird_party/libpfm4/src/tests/Makefile\nthird_party/libpfm4/src/tests/validate.c\nthird_party/libpfm4/src/tests/validate_arm.c\nthird_party/libpfm4/src/tests/validate_arm64.c\nthird_party/libpfm4/src/tests/validate_mips.c\nthird_party/libpfm4/src/tests/validate_perf.c\nthird_party/libpfm4/src/tests/validate_power.c\nthird_party/libpfm4/src/tests/validate_x86.c\nthird_party/libphonenumber/dist/cpp/src/phonenumbers/phonenumbermatcher.h\nthird_party/libphonenumber/dist/cpp/test/phonenumbers/phonenumberutil_test.cc\nthird_party/libphonenumber/dist/java/demo/src/main/webapp/WEB-INF/appengine-web.xml\nthird_party/libphonenumber/dist/java/pom.xml\nthird_party/libphonenumber/dist/javascript/i18n/phonenumbers/phonenumberutil_test.js\nthird_party/libphonenumber/dist/migrator/migrator-servlet/src/main/webapp/WEB-INF/appengine-web.xml\nthird_party/libphonenumber/dist/release_notes.txt\nthird_party/libphonenumber/dist/resources/ShortNumberMetadata.xml\nthird_party/libphonenumber/dist/resources/carrier/en/221.txt\nthird_party/libphonenumber/dist/resources/carrier/en/674.txt\nthird_party/libphonenumber/dist/resources/carrier/en/961.txt\nthird_party/libphonenumber/dist/resources/geocoding/en/86.txt\nthird_party/libphonenumber/dist/resources/geocoding/zh/86.txt\nthird_party/libphonenumber/dist/tools/java/data/webapp/WEB-INF/appengine-web.xml\nthird_party/libpng/contrib/oss-fuzz/README.txt\nthird_party/libpng/contrib/oss-fuzz/libpng_read_fuzzer.cc\nthird_party/libprotobuf-mutator/src/examples/libfuzzer/libfuzzer_bin_example.cc\nthird_party/libprotobuf-mutator/src/examples/libfuzzer/libfuzzer_example.cc\nthird_party/libprotobuf-mutator/src/src/mutator_test.cc\nthird_party/liburlpattern/utils.cc\nthird_party/libusb/src/libusb/os/threads_windows.c\nthird_party/libusb/src/libusb/os/threads_windows.h\nthird_party/libusb/src/libusb/os/wince_usb.c\nthird_party/libusb/src/libusb/os/wince_usb.h\nthird_party/libusb/src/libusb/os/windows_usb.c\nthird_party/libusb/src/msvc/inttypes.h\nthird_party/libusb/src/msvc/stdint.h\nthird_party/libva-fake-driver/src/common.mk\nthird_party/libvpx/BUILD.gn\nthird_party/libvpx/source/libvpx/build/make/Android.mk\nthird_party/libvpx/source/libvpx/examples/vpx_dec_fuzzer.cc\nthird_party/libvpx/source/libvpx/examples/vpx_enc_fuzzer.cc\nthird_party/libvpx/source/libvpx/libs.mk\nthird_party/libvpx/source/libvpx/test/vp8_datarate_test.cc\nthird_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/gtest_pred_impl.h\nthird_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/internal/gtest-port.h\nthird_party/libvpx/source/libvpx/third_party/googletest/src/src/gtest-death-test.cc\nthird_party/libvpx/source/libvpx/third_party/googletest/src/src/gtest.cc\nthird_party/libvpx/source/libvpx/third_party/libwebm/AUTHORS.TXT\nthird_party/libvpx/source/libvpx/third_party/libwebm/mkvmuxer/mkvwriter.cc\nthird_party/libvpx/source/libvpx/third_party/libwebm/mkvparser/mkvreader.cc\nthird_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/row.h\nthird_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/video_common.h\nthird_party/libvpx/source/libvpx/third_party/libyuv/source/cpu_id.cc\nthird_party/libvpx/source/libvpx/tools/cpplint.py\nthird_party/libvpx/source/libvpx/tools/diff.py\nthird_party/libvpx/source/libvpx/tools/intersect-diffs.py\nthird_party/libvpx/source/libvpx/tools/wrap-commit-msg.py\nthird_party/libvpx/source/libvpx/tools_common.h\nthird_party/libvpx/source/libvpx/vp9/encoder/vp9_block.h\nthird_party/libvpx/source/libvpx/vpx_dsp/x86/convolve.h\nthird_party/libvpx/source/libvpx/vpx_ports/aarch64_cpudetect.c\nthird_party/libvpx/source/libvpx/vpx_util/vpx_thread.c\nthird_party/libvpx/source/libvpx/vpx_util/vpx_thread.h\nthird_party/libwebm/source/AUTHORS.TXT\nthird_party/libwebm/source/PRESUBMIT.py\nthird_party/libwebm/source/mkvmuxer/mkvwriter.cc\nthird_party/libwebm/source/mkvparser/mkvreader.cc\nthird_party/libwebp/src/Android.mk\nthird_party/libwebp/src/PRESUBMIT.py\nthird_party/libwebp/src/doc/webp-container-spec.txt\nthird_party/libwebp/src/examples/anim_dump.c\nthird_party/libwebp/src/examples/cwebp.c\nthird_party/libwebp/src/examples/dwebp.c\nthird_party/libwebp/src/examples/gif2webp.c\nthird_party/libwebp/src/examples/img2webp.c\nthird_party/libwebp/src/examples/stopwatch.h\nthird_party/libwebp/src/examples/unicode.h\nthird_party/libwebp/src/examples/unicode_gif.h\nthird_party/libwebp/src/examples/vwebp.c\nthird_party/libwebp/src/examples/webpinfo.c\nthird_party/libwebp/src/examples/webpmux.c\nthird_party/libwebp/src/extras/get_disto.c\nthird_party/libwebp/src/extras/quality_estimate.c\nthird_party/libwebp/src/extras/vwebp_sdl.c\nthird_party/libwebp/src/extras/webp_to_sdl.c\nthird_party/libwebp/src/extras/webp_to_sdl.h\nthird_party/libwebp/src/imageio/image_dec.h\nthird_party/libwebp/src/imageio/image_enc.h\nthird_party/libwebp/src/sharpyuv/sharpyuv.c\nthird_party/libwebp/src/sharpyuv/sharpyuv_dsp.c\nthird_party/libwebp/src/sharpyuv/sharpyuv_neon.c\nthird_party/libwebp/src/sharpyuv/sharpyuv_sse2.c\nthird_party/libwebp/src/src/dec/alpha_dec.c\nthird_party/libwebp/src/src/dec/alphai_dec.h\nthird_party/libwebp/src/src/dec/buffer_dec.c\nthird_party/libwebp/src/src/dec/common_dec.h\nthird_party/libwebp/src/src/dec/frame_dec.c\nthird_party/libwebp/src/src/dec/idec_dec.c\nthird_party/libwebp/src/src/dec/io_dec.c\nthird_party/libwebp/src/src/dec/quant_dec.c\nthird_party/libwebp/src/src/dec/tree_dec.c\nthird_party/libwebp/src/src/dec/vp8_dec.c\nthird_party/libwebp/src/src/dec/vp8_dec.h\nthird_party/libwebp/src/src/dec/vp8i_dec.h\nthird_party/libwebp/src/src/dec/vp8l_dec.c\nthird_party/libwebp/src/src/dec/vp8li_dec.h\nthird_party/libwebp/src/src/dec/webp_dec.c\nthird_party/libwebp/src/src/dec/webpi_dec.h\nthird_party/libwebp/src/src/dsp/alpha_processing.c\nthird_party/libwebp/src/src/dsp/alpha_processing_neon.c\nthird_party/libwebp/src/src/dsp/alpha_processing_sse2.c\nthird_party/libwebp/src/src/dsp/alpha_processing_sse41.c\nthird_party/libwebp/src/src/dsp/common_sse2.h\nthird_party/libwebp/src/src/dsp/common_sse41.h\nthird_party/libwebp/src/src/dsp/cost.c\nthird_party/libwebp/src/src/dsp/cost_sse2.c\nthird_party/libwebp/src/src/dsp/cpu.c\nthird_party/libwebp/src/src/dsp/cpu.h\nthird_party/libwebp/src/src/dsp/dec.c\nthird_party/libwebp/src/src/dsp/dec_clip_tables.c\nthird_party/libwebp/src/src/dsp/dec_neon.c\nthird_party/libwebp/src/src/dsp/dec_sse2.c\nthird_party/libwebp/src/src/dsp/dec_sse41.c\nthird_party/libwebp/src/src/dsp/dsp.h\nthird_party/libwebp/src/src/dsp/enc.c\nthird_party/libwebp/src/src/dsp/enc_sse2.c\nthird_party/libwebp/src/src/dsp/enc_sse41.c\nthird_party/libwebp/src/src/dsp/filters.c\nthird_party/libwebp/src/src/dsp/filters_neon.c\nthird_party/libwebp/src/src/dsp/filters_sse2.c\nthird_party/libwebp/src/src/dsp/lossless.c\nthird_party/libwebp/src/src/dsp/lossless.h\nthird_party/libwebp/src/src/dsp/lossless_avx2.c\nthird_party/libwebp/src/src/dsp/lossless_common.h\nthird_party/libwebp/src/src/dsp/lossless_enc.c\nthird_party/libwebp/src/src/dsp/lossless_enc_avx2.c\nthird_party/libwebp/src/src/dsp/lossless_enc_neon.c\nthird_party/libwebp/src/src/dsp/lossless_enc_sse2.c\nthird_party/libwebp/src/src/dsp/lossless_enc_sse41.c\nthird_party/libwebp/src/src/dsp/lossless_neon.c\nthird_party/libwebp/src/src/dsp/lossless_sse2.c\nthird_party/libwebp/src/src/dsp/rescaler.c\nthird_party/libwebp/src/src/dsp/rescaler_neon.c\nthird_party/libwebp/src/src/dsp/rescaler_sse2.c\nthird_party/libwebp/src/src/dsp/ssim.c\nthird_party/libwebp/src/src/dsp/ssim_sse2.c\nthird_party/libwebp/src/src/dsp/upsampling.c\nthird_party/libwebp/src/src/dsp/upsampling_neon.c\nthird_party/libwebp/src/src/dsp/upsampling_sse2.c\nthird_party/libwebp/src/src/dsp/upsampling_sse41.c\nthird_party/libwebp/src/src/dsp/yuv.c\nthird_party/libwebp/src/src/dsp/yuv.h\nthird_party/libwebp/src/src/dsp/yuv_neon.c\nthird_party/libwebp/src/src/dsp/yuv_sse2.c\nthird_party/libwebp/src/src/dsp/yuv_sse41.c\nthird_party/libwebp/src/src/enc/alpha_enc.c\nthird_party/libwebp/src/src/enc/analysis_enc.c\nthird_party/libwebp/src/src/enc/backward_references_cost_enc.c\nthird_party/libwebp/src/src/enc/backward_references_enc.c\nthird_party/libwebp/src/src/enc/backward_references_enc.h\nthird_party/libwebp/src/src/enc/config_enc.c\nthird_party/libwebp/src/src/enc/cost_enc.c\nthird_party/libwebp/src/src/enc/cost_enc.h\nthird_party/libwebp/src/src/enc/filter_enc.c\nthird_party/libwebp/src/src/enc/frame_enc.c\nthird_party/libwebp/src/src/enc/histogram_enc.c\nthird_party/libwebp/src/src/enc/histogram_enc.h\nthird_party/libwebp/src/src/enc/iterator_enc.c\nthird_party/libwebp/src/src/enc/near_lossless_enc.c\nthird_party/libwebp/src/src/enc/picture_csp_enc.c\nthird_party/libwebp/src/src/enc/picture_enc.c\nthird_party/libwebp/src/src/enc/picture_psnr_enc.c\nthird_party/libwebp/src/src/enc/picture_rescale_enc.c\nthird_party/libwebp/src/src/enc/picture_tools_enc.c\nthird_party/libwebp/src/src/enc/predictor_enc.c\nthird_party/libwebp/src/src/enc/quant_enc.c\nthird_party/libwebp/src/src/enc/syntax_enc.c\nthird_party/libwebp/src/src/enc/token_enc.c\nthird_party/libwebp/src/src/enc/tree_enc.c\nthird_party/libwebp/src/src/enc/vp8i_enc.h\nthird_party/libwebp/src/src/enc/vp8l_enc.c\nthird_party/libwebp/src/src/enc/vp8li_enc.h\nthird_party/libwebp/src/src/enc/webp_enc.c\nthird_party/libwebp/src/src/mux/animi.h\nthird_party/libwebp/src/src/mux/muxedit.c\nthird_party/libwebp/src/src/mux/muxi.h\nthird_party/libwebp/src/src/mux/muxinternal.c\nthird_party/libwebp/src/src/mux/muxread.c\nthird_party/libwebp/src/src/utils/bit_reader_inl_utils.h\nthird_party/libwebp/src/src/utils/bit_reader_utils.c\nthird_party/libwebp/src/src/utils/bit_reader_utils.h\nthird_party/libwebp/src/src/utils/bit_writer_utils.c\nthird_party/libwebp/src/src/utils/bit_writer_utils.h\nthird_party/libwebp/src/src/utils/color_cache_utils.c\nthird_party/libwebp/src/src/utils/color_cache_utils.h\nthird_party/libwebp/src/src/utils/filters_utils.c\nthird_party/libwebp/src/src/utils/filters_utils.h\nthird_party/libwebp/src/src/utils/huffman_encode_utils.c\nthird_party/libwebp/src/src/utils/huffman_encode_utils.h\nthird_party/libwebp/src/src/utils/huffman_utils.c\nthird_party/libwebp/src/src/utils/huffman_utils.h\nthird_party/libwebp/src/src/utils/palette.c\nthird_party/libwebp/src/src/utils/palette.h\nthird_party/libwebp/src/src/utils/quant_levels_dec_utils.c\nthird_party/libwebp/src/src/utils/quant_levels_dec_utils.h\nthird_party/libwebp/src/src/utils/quant_levels_utils.c\nthird_party/libwebp/src/src/utils/quant_levels_utils.h\nthird_party/libwebp/src/src/utils/random_utils.c\nthird_party/libwebp/src/src/utils/random_utils.h\nthird_party/libwebp/src/src/utils/rescaler_utils.c\nthird_party/libwebp/src/src/utils/rescaler_utils.h\nthird_party/libwebp/src/src/utils/thread_utils.c\nthird_party/libwebp/src/src/utils/thread_utils.h\nthird_party/libwebp/src/src/utils/utils.c\nthird_party/libwebp/src/src/utils/utils.h\nthird_party/libwebp/src/src/webp/decode.h\nthird_party/libwebp/src/src/webp/encode.h\nthird_party/libwebp/src/src/webp/format_constants.h\nthird_party/libwebp/src/src/webp/mux.h\nthird_party/libwebp/src/src/webp/mux_types.h\nthird_party/libwebp/src/src/webp/types.h\nthird_party/libwebp/src/swig/setup.py\nthird_party/libwebp/src/tests/fuzzer/fuzz_utils.h\nthird_party/libxslt/chromium/roll.py\nthird_party/libyuv/include/libyuv/row.h\nthird_party/libyuv/include/libyuv/video_common.h\nthird_party/libyuv/source/cpu_id.cc\nthird_party/libyuv/tools_libyuv/autoroller/roll_deps.py\nthird_party/libyuv/tools_libyuv/autoroller/unittests/roll_deps_test.py\nthird_party/libzip/src/lib/zip_crypto_win.c\nthird_party/libzip/src/lib/zip_extra_field.c\nthird_party/lit/v3_0/BUILD.gn\nthird_party/litert/src/configure.py\nthird_party/litert/src/litert/c/litert_common.h\nthird_party/litert/src/litert/cc/internal/scoped_file_win.cc\nthird_party/litert/src/litert/js/demos/efficientvit_segmentation/src/index.ts\nthird_party/litert/src/litert/js/demos/mobilenetv2/src/index.ts\nthird_party/litert/src/litert/js/packages/core/src/datatypes.ts\nthird_party/litert/src/litert/runtime/ahwb_wrapper.h\nthird_party/litert/src/litert/vendors/google_tensor/dispatch/sb_api.h\nthird_party/litert/src/tflite/core/c/common.h\nthird_party/litert/src/tflite/delegates/gpu/android_hardware_buffer.h\nthird_party/litert/src/tflite/delegates/nnapi/nnapi_delegate.h\nthird_party/litert/src/tflite/delegates/nnapi/nnapi_delegate_c_api.h\nthird_party/litert/src/tflite/delegates/xnnpack/windows_util.cc\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/libjpeg_decoder.cc\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/runner.cc\nthird_party/litert/src/tflite/g3doc/api_docs/c/group/tflite.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/classes.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/DataType.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Delegate.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.Options.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.TfLiteRuntime.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterFactory.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/RuntimeFlavor.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.QuantizationParams.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/TensorFlowLite.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/CompatibilityList.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.Options.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.GpuBackend.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/FileUtil.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/SequentialProcessor.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/CastOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/DequantizeOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/NormalizeOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/QuantizeOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.CoordinateType.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.Type.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ColorSpaceType.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/MlImageAdapter.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/TensorImage.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.ResizeMethod.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeWithCropOrPadOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/Rot90Op.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TensorOperatorWrapper.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TransformToGrayscaleOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/Category.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/LabelUtil.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/TensorLabel.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.QuantizationParams.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataParser.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Device.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBuffer.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferFloat.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferUint8.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/Classifications.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseTaskApi.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Delegate.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.MultipleBuffersHandleProvider.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/package-summary.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Orientation.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/audio/TfLiteAudio.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/text/TfLiteText.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/NearestNeighbor.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluRequest.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.CategoricalSlot.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.Mention.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.MentionedSlot.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.Pos.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QuestionAnswerer.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/Classifications.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/core/BaseVisionTaskApi.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/Detection.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ColoredLabel.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.Builder.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/OutputType.html\nthird_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/Segmentation.html\nthird_party/litert/src/tflite/g3doc/tools/build_java_api_docs.py\nthird_party/litert/src/tflite/java/src/main/native/op_resolver_lazy_delegate_proxy.cc\nthird_party/litert/src/tflite/kernels/ctc/ctc_beam_search.h\nthird_party/litert/src/tflite/kernels/internal/reference/svdf.h\nthird_party/litert/src/tflite/kernels/svdf.cc\nthird_party/litert/src/tflite/nnapi/NeuralNetworksShim.h\nthird_party/litert/src/tflite/nnapi/NeuralNetworksTypes.h\nthird_party/litert/src/tflite/toco/graph_transformations/ensure_uint8_weights_safe_for_fast_int8_kernels.cc\nthird_party/litert/src/tflite/toco/logging/template.html\nthird_party/litert/src/tflite/toco/logging/testdata/generated.html\nthird_party/litert/src/tflite/toco/model.h\nthird_party/litert/src/tflite/tools/benchmark/experimental/firebase/android/jni/benchmark_model_jni.cc\nthird_party/litert/src/tflite/tutorials/dataset.py\nthird_party/llvm-libc/src/src/__support/macros/properties/compiler.h\nthird_party/llvm-libc/src/src/__support/time/windows/clock_gettime.cpp\nthird_party/llvm-libc/src/src/time/windows/clock_getres.cpp\nthird_party/lottie/lottie_worker.js\nthird_party/mako/mako/test/templates/internationalization.html\nthird_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/event-options.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-all.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-async.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/reactive-element.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@lit/task/task.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/checkbox/internal/checkbox.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/checkbox/internal/checkbox.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/dialog/internal/dialog.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/dialog/internal/dialog.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/internal/events/form-label-activation.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/internal/events/form-label-activation.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/constraint-validation.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/constraint-validation.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/custom-state-set.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/custom-state-set.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/validators/text-field-validator.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/controllers/surfacePositionController.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/controllers/surfacePositionController.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/menu.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/menu.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/select/internal/select.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/select/internal/select.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/slider/internal/slider.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/slider/internal/slider.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/switch/internal/switch.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/switch/internal/switch.js\nthird_party/material_web_components/components-chromium/node_modules/@material/web/textfield/internal/text-field.d.ts\nthird_party/material_web_components/components-chromium/node_modules/@material/web/textfield/internal/text-field.js\nthird_party/material_web_components/components-chromium/node_modules/lit-html/directives/async-append.d.ts\nthird_party/material_web_components/components-chromium/node_modules/lit-html/directives/async-replace.d.ts\nthird_party/material_web_components/package.json\nthird_party/mediapipe/src/mediapipe/calculators/audio/audio_decoder_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/audio/two_tap_fir_filter_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/core/bypass_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/image/opencv_image_encoder_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/image/scale_image_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/util/detection_label_id_to_text_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/util/face_to_rect_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/util/resource_provider_calculator.h\nthird_party/mediapipe/src/mediapipe/calculators/video/flow_to_image_calculator.cc\nthird_party/mediapipe/src/mediapipe/calculators/video/opencv_video_encoder_calculator.cc\nthird_party/mediapipe/src/mediapipe/framework/api3/contract.h\nthird_party/mediapipe/src/mediapipe/framework/formats/unique_fd.h\nthird_party/mediapipe/src/mediapipe/framework/resources.h\nthird_party/mediapipe/src/mediapipe/framework/tool/proto_util_lite.cc\nthird_party/mediapipe/src/mediapipe/framework/tool/template_parser.cc\nthird_party/mediapipe/src/mediapipe/gpu/egl_surface_holder.h\nthird_party/mediapipe/src/mediapipe/graphs/iris_tracking/calculators/iris_to_render_data_calculator.cc\nthird_party/mediapipe/src/mediapipe/tasks/cc/text/language_detector/custom_ops/utils/hash/murmur.cc\nthird_party/mediapipe/src/mediapipe/tasks/cc/text/language_detector/custom_ops/utils/hash/murmur.h\nthird_party/mediapipe/src/mediapipe/util/tracking/image_util.h\nthird_party/mediapipe/src/mediapipe/util/tracking/motion_estimation.cc\nthird_party/metrics_proto/PRESUBMIT.py\nthird_party/minigbm/src/common.mk\nthird_party/minigbm/src/gbm.h\nthird_party/nasm/win/manifest.xml\nthird_party/nearby/src/connections/implementation/endpoint_manager.cc\nthird_party/nearby/src/internal/crypto_cros/hmac_unittest.cc\nthird_party/nearby/src/internal/crypto_cros/rsa_private_key_unittest.cc\nthird_party/nearby/src/internal/crypto_cros/secure_util.h\nthird_party/nearby/src/internal/network/http_client_impl_test.cc\nthird_party/nearby/src/internal/network/http_request_test.cc\nthird_party/nearby/src/internal/network/url_test.cc\nthird_party/nearby/src/internal/platform/bluetooth_adapter.h\nthird_party/nearby/src/internal/platform/bluetooth_classic.h\nthird_party/nearby/src/internal/platform/implementation/ble.h\nthird_party/nearby/src/internal/platform/implementation/ble_v2.h\nthird_party/nearby/src/internal/platform/implementation/bluetooth_adapter.h\nthird_party/nearby/src/internal/platform/implementation/bluetooth_classic.h\nthird_party/nearby/src/internal/platform/implementation/g3/bluetooth_adapter.h\nthird_party/nearby/src/internal/platform/implementation/g3/bluetooth_classic.h\nthird_party/nearby/src/internal/platform/implementation/platform.h\nthird_party/nearby/src/internal/platform/implementation/windows/ble_medium.cc\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_adapter.cc\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_adapter.h\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_device.h\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_medium.cc\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_medium.h\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_server_socket.h\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_socket.cc\nthird_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_socket.h\nthird_party/nearby/src/internal/platform/implementation/windows/file_path.cc\nthird_party/nearby/src/internal/platform/implementation/windows/generated/winrt/Windows.Foundation.h\nthird_party/nearby/src/internal/platform/implementation/windows/http_loader_test.cc\nthird_party/nearby/src/internal/platform/implementation/windows/string_utils.cc\nthird_party/nearby/src/internal/platform/implementation/windows/test_utils.cc\nthird_party/nearby/src/internal/platform/implementation/windows/utils.h\nthird_party/nearby/src/internal/platform/implementation/windows/webrtc.cc\nthird_party/nearby/src/internal/platform/implementation/windows/wifi_hotspot_native.cc\nthird_party/nearby/src/internal/platform/nsd_service_info.h\nthird_party/nearby/src/internal/platform/thread_check_nocompile.cc\nthird_party/nearby/src/internal/platform/uuid.h\nthird_party/nearby/src/internal/test/fake_http_client_test.cc\nthird_party/nearby/src/presence/fpp/fpp_manager.cc\nthird_party/nearby/src/sharing/android/example/app/src/main/res/xml/backup_rules.xml\nthird_party/nearby/src/sharing/android/example/app/src/main/res/xml/data_extraction_rules.xml\nthird_party/nearby/src/sharing/contacts/nearby_share_contact_manager_impl_test.cc\nthird_party/nearby/src/sharing/local_device_data/nearby_share_local_device_data_manager_impl_test.cc\nthird_party/nearby/src/sharing/nearby_sharing_service.h\nthird_party/nearby/src/sharing/text_attachment_test.cc\nthird_party/nlohmann_json/src/include/nlohmann/detail/meta/type_traits.hpp\nthird_party/nlohmann_json/src/include/nlohmann/detail/output/serializer.hpp\nthird_party/nlohmann_json/src/single_include/nlohmann/json.hpp\nthird_party/nlohmann_json/src/tests/abi/include/nlohmann/json_v3_10_5.hpp\nthird_party/nlohmann_json/src/tests/src/unit-bson.cpp\nthird_party/nlohmann_json/src/tests/thirdparty/Fuzzer/FuzzerSHA1.cpp\nthird_party/nlohmann_json/src/tests/thirdparty/doctest/doctest.h\nthird_party/node/node_modules/@aashutoshrathi/word-wrap/package.json\nthird_party/node/node_modules/@azure/msal-browser/lib/msal-browser.min.js\nthird_party/node/node_modules/@azure/msal-browser/lib/types/app/PublicClientApplication.d.ts\nthird_party/node/node_modules/@azure/msal-browser/lib/types/app/PublicClientNext.d.ts\nthird_party/node/node_modules/@azure/msal-browser/lib/types/cache/DatabaseStorage.d.ts\nthird_party/node/node_modules/@azure/msal-browser/lib/types/controllers/StandardController.d.ts\nthird_party/node/node_modules/@azure/msal-browser/lib/types/encode/Base64Decode.d.ts\nthird_party/node/node_modules/@azure/msal-browser/lib/types/encode/Base64Encode.d.ts\nthird_party/node/node_modules/@azure/msal-browser/lib/types/network/FetchClient.d.ts\nthird_party/node/node_modules/@azure/msal-browser/package.json\nthird_party/node/node_modules/@azure/msal-common/lib/types/telemetry/performance/PerformanceEvent.d.ts\nthird_party/node/node_modules/@azure/msal-common/package.json\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wire/varint.js\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/any.js\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/api_pb.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/timestamp_pb.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/type_pb.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/from-binary.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/to-binary.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/any.js\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/any_pb.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/api_pb.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/timestamp_pb.d.ts\nthird_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/type_pb.d.ts\nthird_party/node/node_modules/@csstools/css-parser-algorithms/package.json\nthird_party/node/node_modules/@csstools/css-syntax-patches-for-csstree/package.json\nthird_party/node/node_modules/@csstools/css-tokenizer/package.json\nthird_party/node/node_modules/@csstools/media-query-list-parser/package.json\nthird_party/node/node_modules/@lit/reactive-element/css-tag.d.ts\nthird_party/node/node_modules/@lit/reactive-element/reactive-element.d.ts\nthird_party/node/node_modules/@mediapipe/tasks-vision/vision.d.ts\nthird_party/node/node_modules/@rollup/wasm-node/dist/shared/index.js\nthird_party/node/node_modules/@rollup/wasm-node/dist/shared/rollup.js\nthird_party/node/node_modules/@sindresorhus/merge-streams/package.json\nthird_party/node/node_modules/@stylistic/stylelint-plugin/lib/utils/isStandardSyntaxValue/index.js\nthird_party/node/node_modules/@stylistic/stylelint-plugin/lib/utils/validateTypes/index.js\nthird_party/node/node_modules/@stylistic/stylelint-plugin/node_modules/postcss-selector-parser/package.json\nthird_party/node/node_modules/@stylistic/stylelint-plugin/package.json\nthird_party/node/node_modules/@types/dom-speech-recognition/index.d.ts\nthird_party/node/node_modules/@types/dom-webcodecs/index.d.ts\nthird_party/node/node_modules/@types/google.analytics/index.d.ts\nthird_party/node/node_modules/@types/offscreencanvas/index.d.ts\nthird_party/node/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js\nthird_party/node/node_modules/acorn/dist/acorn.js\nthird_party/node/node_modules/acorn/package.json\nthird_party/node/node_modules/ajv/dist/ajv.bundle.js\nthird_party/node/node_modules/ansi-regex/package.json\nthird_party/node/node_modules/ansi-styles/package.json\nthird_party/node/node_modules/astral-regex/package.json\nthird_party/node/node_modules/callsites/package.json\nthird_party/node/node_modules/chai/index.js\nthird_party/node/node_modules/chai/package.json\nthird_party/node/node_modules/color-convert/package.json\nthird_party/node/node_modules/color-name/package.json\nthird_party/node/node_modules/cosmiconfig/package.json\nthird_party/node/node_modules/css-functions-list/package.json\nthird_party/node/node_modules/css-tree/data/patch.json\nthird_party/node/node_modules/css-tree/lib/lexer/generic.js\nthird_party/node/node_modules/css-tree/package.json\nthird_party/node/node_modules/csso/lib/restructure/6-restructBlock.js\nthird_party/node/node_modules/csso/lib/restructure/prepare/specificity.js\nthird_party/node/node_modules/csso/node_modules/css-tree/data/patch.json\nthird_party/node/node_modules/csso/node_modules/css-tree/lib/lexer/generic.js\nthird_party/node/node_modules/csso/node_modules/css-tree/package.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/at-rules.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/at-rules.schema.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/properties.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/properties.schema.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/selectors.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/selectors.schema.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/types.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/css/types.schema.json\nthird_party/node/node_modules/csso/node_modules/mdn-data/package.json\nthird_party/node/node_modules/csso/package.json\nthird_party/node/node_modules/debug/package.json\nthird_party/node/node_modules/debug/src/browser.js\nthird_party/node/node_modules/domutils/lib/esm/stringify.js\nthird_party/node/node_modules/domutils/lib/stringify.js\nthird_party/node/node_modules/env-paths/package.json\nthird_party/node/node_modules/error-ex/package.json\nthird_party/node/node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp/package.json\nthird_party/node/node_modules/eslint-plugin-jsdoc/src/tagNames.js\nthird_party/node/node_modules/eslint-plugin-lit/lib/rules/no-native-attributes.js\nthird_party/node/node_modules/eslint-scope/lib/definition.js\nthird_party/node/node_modules/eslint-scope/lib/index.js\nthird_party/node/node_modules/eslint-scope/lib/pattern-visitor.js\nthird_party/node/node_modules/eslint-scope/lib/reference.js\nthird_party/node/node_modules/eslint-scope/lib/referencer.js\nthird_party/node/node_modules/eslint-scope/lib/scope-manager.js\nthird_party/node/node_modules/eslint-scope/lib/scope.js\nthird_party/node/node_modules/eslint-scope/lib/variable.js\nthird_party/node/node_modules/eslint/lib/rules/max-lines-per-function.js\nthird_party/node/node_modules/eslint/node_modules/escape-string-regexp/package.json\nthird_party/node/node_modules/espree/espree.js\nthird_party/node/node_modules/esquery/dist/esquery.esm.js\nthird_party/node/node_modules/esquery/dist/esquery.js\nthird_party/node/node_modules/esquery/package.json\nthird_party/node/node_modules/esrecurse/esrecurse.js\nthird_party/node/node_modules/esrecurse/gulpfile.babel.js\nthird_party/node/node_modules/esrecurse/package.json\nthird_party/node/node_modules/estraverse/estraverse.js\nthird_party/node/node_modules/estraverse/gulpfile.js\nthird_party/node/node_modules/estraverse/package.json\nthird_party/node/node_modules/esutils/lib/ast.js\nthird_party/node/node_modules/esutils/lib/code.js\nthird_party/node/node_modules/esutils/lib/keyword.js\nthird_party/node/node_modules/esutils/lib/utils.js\nthird_party/node/node_modules/esutils/package.json\nthird_party/node/node_modules/fast-glob/node_modules/glob-parent/package.json\nthird_party/node/node_modules/fast-glob/out/utils/path.js\nthird_party/node/node_modules/fast-uri/package.json\nthird_party/node/node_modules/find-up/package.json\nthird_party/node/node_modules/get-east-asian-width/package.json\nthird_party/node/node_modules/glob-parent/package.json\nthird_party/node/node_modules/globals/package.json\nthird_party/node/node_modules/globby/package.json\nthird_party/node/node_modules/has-flag/package.json\nthird_party/node/node_modules/html-tags/package.json\nthird_party/node/node_modules/import-fresh/package.json\nthird_party/node/node_modules/import-meta-resolve/package.json\nthird_party/node/node_modules/imurmurhash/imurmurhash.js\nthird_party/node/node_modules/imurmurhash/imurmurhash.min.js\nthird_party/node/node_modules/imurmurhash/package.json\nthird_party/node/node_modules/is-fullwidth-code-point/package.json\nthird_party/node/node_modules/is-path-inside/package.json\nthird_party/node/node_modules/js-yaml/package.json\nthird_party/node/node_modules/json-buffer/package.json\nthird_party/node/node_modules/lit-html/directives/async-append.d.ts\nthird_party/node/node_modules/lit-html/directives/async-replace.d.ts\nthird_party/node/node_modules/locate-path/package.json\nthird_party/node/node_modules/lodash.merge/package.json\nthird_party/node/node_modules/lodash.truncate/package.json\nthird_party/node/node_modules/mathml-tag-names/package.json\nthird_party/node/node_modules/mdn-data/css/at-rules.json\nthird_party/node/node_modules/mdn-data/css/at-rules.schema.json\nthird_party/node/node_modules/mdn-data/css/properties.json\nthird_party/node/node_modules/mdn-data/css/properties.schema.json\nthird_party/node/node_modules/mdn-data/css/selectors.json\nthird_party/node/node_modules/mdn-data/css/selectors.schema.json\nthird_party/node/node_modules/mdn-data/css/types.json\nthird_party/node/node_modules/mdn-data/css/types.schema.json\nthird_party/node/node_modules/mdn-data/package.json\nthird_party/node/node_modules/meow/package.json\nthird_party/node/node_modules/messageformat/lib/functions/datetime.d.ts\nthird_party/node/node_modules/messageformat/lib/functions/datetime.js\nthird_party/node/node_modules/messageformat/lib/messageformat.d.ts\nthird_party/node/node_modules/messageformat/package.json\nthird_party/node/node_modules/mocha/mocha.js\nthird_party/node/node_modules/normalize-path/index.js\nthird_party/node/node_modules/p-limit/package.json\nthird_party/node/node_modules/p-locate/package.json\nthird_party/node/node_modules/parent-module/package.json\nthird_party/node/node_modules/parse-imports/package.json\nthird_party/node/node_modules/parse-json/package.json\nthird_party/node/node_modules/parse5-htmlparser2-tree-adapter/package.json\nthird_party/node/node_modules/parse5/lib/tokenizer/index.js\nthird_party/node/node_modules/parse5/package.json\nthird_party/node/node_modules/path-exists/package.json\nthird_party/node/node_modules/path-key/package.json\nthird_party/node/node_modules/postcss-selector-parser/package.json\nthird_party/node/node_modules/require-from-string/package.json\nthird_party/node/node_modules/resolve-from/package.json\nthird_party/node/node_modules/shebang-command/package.json\nthird_party/node/node_modules/shebang-regex/package.json\nthird_party/node/node_modules/slash/package.json\nthird_party/node/node_modules/source-map-js/lib/base64-vlq.js\nthird_party/node/node_modules/source-map-js/lib/source-map-consumer.js\nthird_party/node/node_modules/source-map-js/package.json\nthird_party/node/node_modules/source-map-support/node_modules/source-map/dist/source-map.js\nthird_party/node/node_modules/source-map-support/node_modules/source-map/lib/base64-vlq.js\nthird_party/node/node_modules/source-map-support/node_modules/source-map/lib/source-map-consumer.js\nthird_party/node/node_modules/source-map-support/node_modules/source-map/package.json\nthird_party/node/node_modules/source-map-support/source-map-support.js\nthird_party/node/node_modules/string-width/package.json\nthird_party/node/node_modules/strip-ansi/package.json\nthird_party/node/node_modules/strip-json-comments/package.json\nthird_party/node/node_modules/stylelint/node_modules/@csstools/selector-resolve-nested/package.json\nthird_party/node/node_modules/stylelint/node_modules/@csstools/selector-specificity/package.json\nthird_party/node/node_modules/stylelint/node_modules/ansi-regex/package.json\nthird_party/node/node_modules/stylelint/node_modules/css-tree/data/patch.json\nthird_party/node/node_modules/stylelint/node_modules/css-tree/lib/lexer/generic.js\nthird_party/node/node_modules/stylelint/node_modules/css-tree/package.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/at-rules.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/at-rules.schema.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/functions.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/functions.schema.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/properties.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/properties.schema.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/selectors.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/selectors.schema.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/types.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/css/types.schema.json\nthird_party/node/node_modules/stylelint/node_modules/mdn-data/package.json\nthird_party/node/node_modules/stylelint/node_modules/postcss-selector-parser/package.json\nthird_party/node/node_modules/stylelint/node_modules/string-width/package.json\nthird_party/node/node_modules/stylelint/node_modules/strip-ansi/package.json\nthird_party/node/node_modules/supports-color/package.json\nthird_party/node/node_modules/supports-hyperlinks/node_modules/has-flag/package.json\nthird_party/node/node_modules/supports-hyperlinks/node_modules/supports-color/package.json\nthird_party/node/node_modules/svg-tags/package.json\nthird_party/node/node_modules/svgo/dist/svgo.browser.js\nthird_party/node/node_modules/svgo/plugins/_collections.js\nthird_party/node/node_modules/svgo/plugins/inlineStyles.js\nthird_party/node/node_modules/svgo/plugins/mergeStyles.js\nthird_party/node/node_modules/svgo/plugins/minifyStyles.js\nthird_party/node/node_modules/svgo/plugins/prefixIds.js\nthird_party/node/node_modules/svgo/plugins/removeAttributesBySelector.js\nthird_party/node/node_modules/svgo/plugins/removeDesc.js\nthird_party/node/node_modules/svgo/plugins/removeTitle.js\nthird_party/node/node_modules/terser/dist/bundle.min.js\nthird_party/node/node_modules/terser/lib/ast.js\nthird_party/node/node_modules/terser/lib/compress/common.js\nthird_party/node/node_modules/terser/lib/compress/compressor-flags.js\nthird_party/node/node_modules/terser/lib/compress/drop-side-effect-free.js\nthird_party/node/node_modules/terser/lib/compress/drop-unused.js\nthird_party/node/node_modules/terser/lib/compress/evaluate.js\nthird_party/node/node_modules/terser/lib/compress/index.js\nthird_party/node/node_modules/terser/lib/compress/inference.js\nthird_party/node/node_modules/terser/lib/compress/inline.js\nthird_party/node/node_modules/terser/lib/compress/native-objects.js\nthird_party/node/node_modules/terser/lib/compress/reduce-vars.js\nthird_party/node/node_modules/terser/lib/compress/tighten-body.js\nthird_party/node/node_modules/terser/lib/minify.js\nthird_party/node/node_modules/terser/lib/mozilla-ast.js\nthird_party/node/node_modules/terser/lib/output.js\nthird_party/node/node_modules/terser/lib/parse.js\nthird_party/node/node_modules/terser/lib/propmangle.js\nthird_party/node/node_modules/terser/lib/scope.js\nthird_party/node/node_modules/terser/lib/sourcemap.js\nthird_party/node/node_modules/terser/lib/transform.js\nthird_party/node/node_modules/terser/lib/utils/index.js\nthird_party/node/node_modules/terser/package.json\nthird_party/node/node_modules/ts-proto/build/src/main.js\nthird_party/node/node_modules/ts-proto/build/src/types.js\nthird_party/node/node_modules/typescript/lib/_tsc.js\nthird_party/node/node_modules/typescript/lib/lib.dom.d.ts\nthird_party/node/node_modules/typescript/lib/lib.dom.iterable.d.ts\nthird_party/node/node_modules/typescript/lib/lib.es2016.intl.d.ts\nthird_party/node/node_modules/typescript/lib/lib.es2020.bigint.d.ts\nthird_party/node/node_modules/typescript/lib/lib.es2020.intl.d.ts\nthird_party/node/node_modules/typescript/lib/lib.es2021.intl.d.ts\nthird_party/node/node_modules/typescript/lib/lib.es2022.intl.d.ts\nthird_party/node/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts\nthird_party/node/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts\nthird_party/node/node_modules/typescript/lib/lib.webworker.d.ts\nthird_party/node/node_modules/typescript/lib/lib.webworker.iterable.d.ts\nthird_party/node/node_modules/typescript/lib/typescript.js\nthird_party/node/node_modules/unicorn-magic/package.json\nthird_party/node/node_modules/uri-js/dist/es5/uri.all.js\nthird_party/node/node_modules/uri-js/dist/esnext/uri.js\nthird_party/node/node_modules/uri-js/package.json\nthird_party/node/node_modules/yocto-queue/package.json\nthird_party/node/package.json\nthird_party/oak/src/cc/crypto/tink/signature/testdata/generate_keyset_and_sign.cc\nthird_party/oak/src/cc/crypto/tink/signature/verification_utils.h\nthird_party/oak/src/cc/crypto/tink/signature/verification_utils_test.cc\nthird_party/oak/src/cc/utils/cose/cwt.h\nthird_party/oak/src/java/src/main/java/com/google/oak/client/android/res/values/strings.xml\nthird_party/oak/src/oak_attestation_gcp/testdata/claims.json\nthird_party/oak/src/oak_attestation_gcp/testdata/debug_claims.json\nthird_party/oak/src/oak_attestation_gcp/testdata/expired_claims.json\nthird_party/oak/src/oak_attestation_gcp/testdata/long_lived_claims.json\nthird_party/oak/src/oak_attestation_gcp/testdata/policy_claims.json\nthird_party/oak/src/oak_session/examples/e10_confidential_space_client_server/data/claims.json\nthird_party/openh264/src/build/platform-android-r18b.mk\nthird_party/openh264/src/build/platform-android.mk\nthird_party/openh264/src/codec/build/windowsphone/all/CodecApp/Properties/AppManifest.xml\nthird_party/openh264/src/codec/build/windowsphone/all/CodecApp/Properties/WMAppManifest.xml\nthird_party/openh264/src/module/task_utils.h\nthird_party/openh264/src/module/task_utils.py\nthird_party/openh264/src/module/task_utils_generated.h\nthird_party/openh264/src/test/build/windowsphone/codec_ut/CodecUTApp/Properties/AppManifest.xml\nthird_party/openh264/src/test/build/windowsphone/codec_ut/CodecUTApp/Properties/WMAppManifest.xml\nthird_party/openscreen/src/BUILD.gn\nthird_party/openscreen/src/buildtools/README.txt\nthird_party/openscreen/src/buildtools/clang_format/README.txt\nthird_party/openscreen/src/buildtools/reclient_cfgs/configure_reclient_cfgs.py\nthird_party/openscreen/src/cast/common/BUILD.gn\nthird_party/openscreen/src/cast/common/certificate/boringssl_trust_store.cc\nthird_party/openscreen/src/cast/common/certificate/proto/BUILD.gn\nthird_party/openscreen/src/cast/common/channel/message_util.h\nthird_party/openscreen/src/cast/common/channel/proto/BUILD.gn\nthird_party/openscreen/src/cast/common/discovery/e2e_test/tests.cc\nthird_party/openscreen/src/cast/receiver/BUILD.gn\nthird_party/openscreen/src/cast/sender/channel/cast_auth_util.cc\nthird_party/openscreen/src/cast/standalone_e2e.py\nthird_party/openscreen/src/cast/standalone_receiver/avcodec_glue.h\nthird_party/openscreen/src/cast/standalone_receiver/decoder.cc\nthird_party/openscreen/src/cast/standalone_receiver/simple_remoting_receiver.h\nthird_party/openscreen/src/cast/standalone_sender/connection_settings.h\nthird_party/openscreen/src/cast/standalone_sender/ffmpeg_glue.h\nthird_party/openscreen/src/cast/standalone_sender/remoting_sender.h\nthird_party/openscreen/src/cast/standalone_sender/streaming_video_encoder.h\nthird_party/openscreen/src/cast/streaming/capture_configs.h\nthird_party/openscreen/src/cast/streaming/impl/clock_offset_estimator.h\nthird_party/openscreen/src/cast/streaming/impl/rtp_defines.h\nthird_party/openscreen/src/cast/streaming/impl/sender_session_unittest.cc\nthird_party/openscreen/src/cast/streaming/impl/session_messenger_unittest.cc\nthird_party/openscreen/src/cast/streaming/impl/statistics_analyzer_unittest.cc\nthird_party/openscreen/src/cast/streaming/impl/statistics_collector.cc\nthird_party/openscreen/src/cast/streaming/public/constants.h\nthird_party/openscreen/src/cast/streaming/public/encoded_frame.h\nthird_party/openscreen/src/cast/streaming/public/receiver_constraints.h\nthird_party/openscreen/src/cast/streaming/public/receiver_session.h\nthird_party/openscreen/src/cast/streaming/remoting_capabilities.h\nthird_party/openscreen/src/cast/test/cast_socket_e2e_test.cc\nthird_party/openscreen/src/discovery/common/reporting_client.h\nthird_party/openscreen/src/discovery/dnssd/impl/dns_data_graph.h\nthird_party/openscreen/src/discovery/dnssd/public/dns_sd_instance.h\nthird_party/openscreen/src/discovery/dnssd/public/dns_sd_querier.h\nthird_party/openscreen/src/discovery/mdns/impl/mdns_responder.cc\nthird_party/openscreen/src/discovery/mdns/public/mdns_reader.cc\nthird_party/openscreen/src/discovery/public/dns_sd_service_watcher.h\nthird_party/openscreen/src/osp/impl/quic/certificates/quic_agent_certificate.cc\nthird_party/openscreen/src/osp/public/authentication_base.cc\nthird_party/openscreen/src/platform/impl/tls_connection_factory_posix.cc\nthird_party/openscreen/src/platform/impl/tls_connection_posix.cc\nthird_party/openscreen/src/test/test_main.cc\nthird_party/openscreen/src/testing/libfuzzer/BUILD.gn\nthird_party/openscreen/src/third_party/protobuf/.bcr/metadata.template.json\nthird_party/openscreen/src/third_party/protobuf/CMakeLists.txt\nthird_party/openscreen/src/third_party/protobuf/CONTRIBUTORS.txt\nthird_party/openscreen/src/third_party/protobuf/benchmarks/benchmark.cc\nthird_party/openscreen/src/third_party/protobuf/benchmarks/compare.py\nthird_party/openscreen/src/third_party/protobuf/benchmarks/gen_protobuf_binary_cc.py\nthird_party/openscreen/src/third_party/protobuf/benchmarks/gen_synthetic_protos.py\nthird_party/openscreen/src/third_party/protobuf/benchmarks/gen_upb_binary_c.py\nthird_party/openscreen/src/third_party/protobuf/cmake/dependencies_generator.py\nthird_party/openscreen/src/third_party/protobuf/conformance/binary_json_conformance_suite.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/binary_json_conformance_suite.h\nthird_party/openscreen/src/third_party/protobuf/conformance/conformance_cpp.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/conformance_python.py\nthird_party/openscreen/src/third_party/protobuf/conformance/conformance_test.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/conformance_test.h\nthird_party/openscreen/src/third_party/protobuf/conformance/conformance_test_main.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/conformance_test_runner.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/failure_list_trie_node.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/failure_list_trie_node.h\nthird_party/openscreen/src/third_party/protobuf/conformance/failure_list_trie_node_test.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/fork_pipe_runner.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/fork_pipe_runner.h\nthird_party/openscreen/src/third_party/protobuf/conformance/test_runner.h\nthird_party/openscreen/src/third_party/protobuf/conformance/text_format_conformance_suite.cc\nthird_party/openscreen/src/third_party/protobuf/conformance/text_format_conformance_suite.h\nthird_party/openscreen/src/third_party/protobuf/conformance/update_failure_list.py\nthird_party/openscreen/src/third_party/protobuf/docs/upb/render.py\nthird_party/openscreen/src/third_party/protobuf/editions/generated_files_test.cc\nthird_party/openscreen/src/third_party/protobuf/editions/generated_reflection_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/arena.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/cpp/cpp.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/cpp/interop.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/types.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/error.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/extension.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/extension.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/interop.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/interop_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/repeated_field.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/repeated_field_iterator.h\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/repeated_field_iterator_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/backend/upb/upb.h\nthird_party/openscreen/src/third_party/protobuf/hpb/extension.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/extension.h\nthird_party/openscreen/src/third_party/protobuf/hpb/hpb.h\nthird_party/openscreen/src/third_party/protobuf/hpb/internal/internal.h\nthird_party/openscreen/src/third_party/protobuf/hpb/internal/message_lock.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/internal/message_lock.h\nthird_party/openscreen/src/third_party/protobuf/hpb/internal/message_lock_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/internal/template_help.h\nthird_party/openscreen/src/third_party/protobuf/hpb/internal/template_help_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/multibackend.h\nthird_party/openscreen/src/third_party/protobuf/hpb/options.h\nthird_party/openscreen/src/third_party/protobuf/hpb/ptr.h\nthird_party/openscreen/src/third_party/protobuf/hpb/repeated_field.h\nthird_party/openscreen/src/third_party/protobuf/hpb/requires.h\nthird_party/openscreen/src/third_party/protobuf/hpb/status.cc\nthird_party/openscreen/src/third_party/protobuf/hpb/status.h\nthird_party/openscreen/src/third_party/protobuf/hpb/status_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/context.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_accessors.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_accessors.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_enums.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_enums.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_extensions.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_extensions.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_messages.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_messages.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_repeated_fields.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_repeated_fields.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_utils.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/gen_utils.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/generator.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/generator.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/keywords.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/keywords.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/names.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/names.h\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/protoc-gen-hpb.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/tests/extension_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/tests/multibackend_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/tests/repeated_test.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/tests/test_generated.cc\nthird_party/openscreen/src/third_party/protobuf/hpb_generator/tests/test_hpb_bzl_alias.cc\nthird_party/openscreen/src/third_party/protobuf/java/bom/pom.xml\nthird_party/openscreen/src/third_party/protobuf/java/core/pom_template.xml\nthird_party/openscreen/src/third_party/protobuf/java/lite/pom_template.xml\nthird_party/openscreen/src/third_party/protobuf/java/pom.xml\nthird_party/openscreen/src/third_party/protobuf/java/protoc/pom.xml\nthird_party/openscreen/src/third_party/protobuf/java/util/pom_template.xml\nthird_party/openscreen/src/third_party/protobuf/lua/def.c\nthird_party/openscreen/src/third_party/protobuf/lua/main.c\nthird_party/openscreen/src/third_party/protobuf/lua/msg.c\nthird_party/openscreen/src/third_party/protobuf/lua/upb.c\nthird_party/openscreen/src/third_party/protobuf/lua/upb.h\nthird_party/openscreen/src/third_party/protobuf/lua/upbc.cc\nthird_party/openscreen/src/third_party/protobuf/objectivec/DevTools/pddm.py\nthird_party/openscreen/src/third_party/protobuf/objectivec/DevTools/pddm_tests.py\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBAny.pbobjc.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBApi.pbobjc.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBArray.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBArray_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBBootstrap.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedInputStream.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedOutputStream.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBDescriptor.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBDescriptor_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBDictionary.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBDictionary_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBExtensionInternals.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBExtensionRegistry.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBMessage.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBMessage_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBProtocolBuffers.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBRootObject.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBRootObject_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBRuntimeTypes.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBTimestamp.pbobjc.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBType.pbobjc.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownField.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownField_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownFields.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownFields_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBUtilities.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBUtilities_PackagePrivate.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBWellKnownTypes.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/GPBWireFormat.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/Tests/GPBObjectiveCPlusPlusTest.mm\nthird_party/openscreen/src/third_party/protobuf/objectivec/Tests/GPBTestUtilities.h\nthird_party/openscreen/src/third_party/protobuf/objectivec/Tests/UnitTests-Bridging-Header.h\nthird_party/openscreen/src/third_party/protobuf/php/composer.json\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/arena.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/arena.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/array.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/array.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/convert.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/convert.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/def.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/def.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/map.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/map.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/message.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/message.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/names.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/names.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/php-upb.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/php-upb.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/php_protobuf.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/print_options.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/print_options.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/protobuf.c\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/protobuf.h\nthird_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/template_package.xml\nthird_party/openscreen/src/third_party/protobuf/pkg/test/test_lib.cc\nthird_party/openscreen/src/third_party/protobuf/pkg/test/test_lib.h\nthird_party/openscreen/src/third_party/protobuf/python/.repo-metadata.json\nthird_party/openscreen/src/third_party/protobuf/python/convert.c\nthird_party/openscreen/src/third_party/protobuf/python/convert.h\nthird_party/openscreen/src/third_party/protobuf/python/descriptor.c\nthird_party/openscreen/src/third_party/protobuf/python/descriptor.h\nthird_party/openscreen/src/third_party/protobuf/python/descriptor_containers.c\nthird_party/openscreen/src/third_party/protobuf/python/descriptor_containers.h\nthird_party/openscreen/src/third_party/protobuf/python/descriptor_pool.c\nthird_party/openscreen/src/third_party/protobuf/python/descriptor_pool.h\nthird_party/openscreen/src/third_party/protobuf/python/dist/setup.py\nthird_party/openscreen/src/third_party/protobuf/python/docs/conf.py\nthird_party/openscreen/src/third_party/protobuf/python/docs/generate_docs.py\nthird_party/openscreen/src/third_party/protobuf/python/extension_dict.c\nthird_party/openscreen/src/third_party/protobuf/python/extension_dict.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/__init__.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/any.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/descriptor.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/descriptor_database.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/descriptor_pool.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/duration.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/__init__.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/any_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/api_implementation.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/api_implementation.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/builder.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/containers.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/decoder.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/decoder_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/descriptor_database_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/descriptor_pool_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/descriptor_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/duration_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/encoder.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/enum_type_wrapper.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/extension_dict.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/field_mask.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/field_mask_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/generator_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/import_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/import_test_package/__init__.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/json_format_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/keywords_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/message_factory_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/message_listener.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/message_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/numpy/__init__.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/numpy/numpy_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_builder_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_json_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_text_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/pybind11_test_module.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/python_message.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/python_protobuf.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/reflection_cpp_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/reflection_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/runtime_version_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/service_reflection_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/symbol_database_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/test_util.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/testing_refleaks.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/text_format_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/thread_safe_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/timestamp_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/type_checkers.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/unknown_fields_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/well_known_types.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/well_known_types_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/wire_format.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/wire_format_test.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/json_format.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/message.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/message_factory.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_api.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_builder.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_json.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_text.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/cpp_message.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_database.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_database.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/extension_dict.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/extension_dict.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/field.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/field.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/map_container.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/map_container.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message_factory.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message_factory.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message_module.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/safe_numerics.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/scoped_pyobject_ptr.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/unknown_field_set.cc\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/unknown_field_set.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/python_protobuf.h\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/reflection.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/runtime_version.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/service_reflection.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/symbol_database.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/text_encoding.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/text_format.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/timestamp.py\nthird_party/openscreen/src/third_party/protobuf/python/google/protobuf/unknown_fields.py\nthird_party/openscreen/src/third_party/protobuf/python/map.c\nthird_party/openscreen/src/third_party/protobuf/python/map.h\nthird_party/openscreen/src/third_party/protobuf/python/message.c\nthird_party/openscreen/src/third_party/protobuf/python/message.h\nthird_party/openscreen/src/third_party/protobuf/python/minimal_test.py\nthird_party/openscreen/src/third_party/protobuf/python/protobuf.c\nthird_party/openscreen/src/third_party/protobuf/python/protobuf.h\nthird_party/openscreen/src/third_party/protobuf/python/protobuf_distutils/protobuf_distutils/generate_py_protobufs.py\nthird_party/openscreen/src/third_party/protobuf/python/protobuf_distutils/setup.py\nthird_party/openscreen/src/third_party/protobuf/python/python_api.h\nthird_party/openscreen/src/third_party/protobuf/python/python_version_test.py\nthird_party/openscreen/src/third_party/protobuf/python/repeated.c\nthird_party/openscreen/src/third_party/protobuf/python/repeated.h\nthird_party/openscreen/src/third_party/protobuf/python/unknown_fields.c\nthird_party/openscreen/src/third_party/protobuf/python/unknown_fields.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/convert.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/convert.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/defs.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/defs.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/glue.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/map.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/map.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/message.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/message.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.h\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_message.c\nthird_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_message.h\nthird_party/openscreen/src/third_party/protobuf/ruby/pom.xml\nthird_party/openscreen/src/third_party/protobuf/rust/cpp_kernel/serialized_data.h\nthird_party/openscreen/src/third_party/protobuf/rust/cpp_kernel/strings.h\nthird_party/openscreen/src/third_party/protobuf/rust/test/cpp/interop/test_utils.cc\nthird_party/openscreen/src/third_party/protobuf/rust/test/rust_proto_library_unit_test/empty.cc\nthird_party/openscreen/src/third_party/protobuf/rust/upb/sys/upb_api.c\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/any.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/any.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/any_lite.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/any_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_align.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_align.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_align_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_allocation_policy.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_cleanup.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_test_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenastring.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenastring.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenastring_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenaz_sampler.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenaz_sampler.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenaz_sampler_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/arena_ctor_visibility_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/bootstrap_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/copy_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/enum.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/enum.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/extension.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/extension.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/cord_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/generators.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/map_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/message_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_view_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/file.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/file_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/generator_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/main.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message_layout_helper.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message_size_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/metadata_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/move_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/names.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/namespace_printer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/options.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/plugin_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/service.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/service.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto_main.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/unittest.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_options.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/names.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/names.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/fake_plugin.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/importer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/importer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/context.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/context.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/file.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/file.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/extension.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/extension.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/generator_factory.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/map_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/map_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/service.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/service.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/string_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/string_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator_factory.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/helpers.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/java_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/extension.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/extension.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/generator_factory.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/message_serialization_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/names.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/names.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/names_internal.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/options.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/plugin_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/file.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/file.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/main.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/main_no_generators.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/file.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/file.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/names.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/names_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/nsobject_methods.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/options.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/package_info.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/parser.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/parser.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/generator_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/names.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/names.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/php_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/plugin.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/plugin.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/helpers.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/helpers.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/plugin_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/python_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/retention.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/retention.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/retention_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessor_case.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/map.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/repeated_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_cord.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_scalar.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_string.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/unsupported_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/context.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/context.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/enum.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/enum.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/generator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/generator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/main.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/naming.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/naming.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/oneof.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/oneof.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/relative_path_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/upb_helpers.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/scc.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/subprocess.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/subprocess.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/test_plugin.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/versions.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/versions.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/versions_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/zip_writer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/debug_counter_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_database.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_database.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_visitor.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_visitor_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/drop_unknown_fields_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/dynamic_message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/dynamic_message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/dynamic_message_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/edition_message_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/endian.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/explicitly_constructed.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set_heavy.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set_inl.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/feature_resolver.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/feature_resolver.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/feature_resolver_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/field_access_listener.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_reflection.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_util_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_bases.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_bases.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_reflection.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_reflection.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/has_bits.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/has_bits_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/implicit_weak_message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/implicit_weak_message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/inlined_string_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/inlined_string_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/inlined_string_field_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/internal_message_util_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/internal_visibility.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/internal_visibility_for_testing.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/coded_stream.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/coded_stream.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/gzip_stream.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/io_win32.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/io_win32.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/io_win32_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/package_info.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer_death_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/strtod.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/strtod.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/tokenizer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/tokenizer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_sink_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/descriptor_traits.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/lexer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/lexer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/lexer_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/message_path.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/message_path.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/parser.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/parser.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/parser_traits.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/unparser.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/unparser.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/unparser_traits.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/writer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/writer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/json.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/json.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/json_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/lazily_build_dependencies_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/lite_arena_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/lite_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_entry.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_probe_benchmark.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_test_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_type_handler.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/message.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/message.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/message_lite.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/message_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/message_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/metadata.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/metadata_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/micro_string.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/micro_string.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/micro_string_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/no_field_presence_map_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/no_field_presence_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/package_info.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/parse_context.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/parse_context.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/port.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/port.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/port_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/preserve_unknown_enum_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/proto3_arena_lite_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/proto3_arena_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/proto3_lite_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/raw_ptr.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/raw_ptr.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/raw_ptr_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/redaction_metric_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_internal.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_mode.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_mode.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_mode_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_ops.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_ops.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_ops_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_tester.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_tester.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_ptr_field.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_ptr_field_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/retention_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/serial_arena.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/service.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/service.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_block.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_block_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_member_robber.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_piece_field_support_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/callback.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/common.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/common.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/platform_macros.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/port.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/status_macros.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_textproto.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util2.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util_lite.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/file.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/file.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/googletest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/googletest.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/text_format.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/text_format.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/text_format_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/thread_safe_arena.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/unknown_field_set.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/unknown_field_set.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/delimited_message_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/delimited_message_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/delimited_message_util_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_comparator.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_comparator.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_comparator_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_mask_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_mask_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_mask_util_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/internal_timeval.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/json_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/message_differencer.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/message_differencer.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/message_differencer_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/package_info.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/time_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/time_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/time_util_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver_util.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver_util_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/varint_shuffle.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/varint_shuffle_test.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/well_known_types_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_lite.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_lite.h\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_unittest.cc\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_unittest.h\nthird_party/openscreen/src/third_party/protobuf/upb/base/descriptor_constants.h\nthird_party/openscreen/src/third_party/protobuf/upb/base/internal/endian.h\nthird_party/openscreen/src/third_party/protobuf/upb/base/internal/log2.h\nthird_party/openscreen/src/third_party/protobuf/upb/base/status.c\nthird_party/openscreen/src/third_party/protobuf/upb/base/status.h\nthird_party/openscreen/src/third_party/protobuf/upb/base/status.hpp\nthird_party/openscreen/src/third_party/protobuf/upb/base/string_view.h\nthird_party/openscreen/src/third_party/protobuf/upb/base/upcast.h\nthird_party/openscreen/src/third_party/protobuf/upb/bazel/amalgamate.py\nthird_party/openscreen/src/third_party/protobuf/upb/cmake/staleness_test.py\nthird_party/openscreen/src/third_party/protobuf/upb/cmake/staleness_test_lib.py\nthird_party/openscreen/src/third_party/protobuf/upb/conformance/conformance_upb.c\nthird_party/openscreen/src/third_party/protobuf/upb/generated_code_support.h\nthird_party/openscreen/src/third_party/protobuf/upb/hash/common.c\nthird_party/openscreen/src/third_party/protobuf/upb/hash/common.h\nthird_party/openscreen/src/third_party/protobuf/upb/hash/int_table.h\nthird_party/openscreen/src/third_party/protobuf/upb/hash/str_table.h\nthird_party/openscreen/src/third_party/protobuf/upb/hash/test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/io/chunked_input_stream.c\nthird_party/openscreen/src/third_party/protobuf/upb/io/chunked_input_stream.h\nthird_party/openscreen/src/third_party/protobuf/upb/io/chunked_output_stream.c\nthird_party/openscreen/src/third_party/protobuf/upb/io/chunked_output_stream.h\nthird_party/openscreen/src/third_party/protobuf/upb/io/string.h\nthird_party/openscreen/src/third_party/protobuf/upb/io/string_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/io/tokenizer.c\nthird_party/openscreen/src/third_party/protobuf/upb/io/tokenizer.h\nthird_party/openscreen/src/third_party/protobuf/upb/io/tokenizer_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/io/zero_copy_input_stream.h\nthird_party/openscreen/src/third_party/protobuf/upb/io/zero_copy_output_stream.h\nthird_party/openscreen/src/third_party/protobuf/upb/io/zero_copy_stream_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/json/decode.c\nthird_party/openscreen/src/third_party/protobuf/upb/json/decode.h\nthird_party/openscreen/src/third_party/protobuf/upb/json/decode_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/json/encode.c\nthird_party/openscreen/src/third_party/protobuf/upb/json/encode.h\nthird_party/openscreen/src/third_party/protobuf/upb/json/encode_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/json/fuzz_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/lex/atoi.c\nthird_party/openscreen/src/third_party/protobuf/upb/lex/atoi.h\nthird_party/openscreen/src/third_party/protobuf/upb/lex/atoi_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/lex/round_trip.c\nthird_party/openscreen/src/third_party/protobuf/upb/lex/round_trip.h\nthird_party/openscreen/src/third_party/protobuf/upb/lex/strtod.c\nthird_party/openscreen/src/third_party/protobuf/upb/lex/strtod.h\nthird_party/openscreen/src/third_party/protobuf/upb/lex/unicode.c\nthird_party/openscreen/src/third_party/protobuf/upb/lex/unicode.h\nthird_party/openscreen/src/third_party/protobuf/upb/mem/alloc.c\nthird_party/openscreen/src/third_party/protobuf/upb/mem/alloc.h\nthird_party/openscreen/src/third_party/protobuf/upb/mem/arena.c\nthird_party/openscreen/src/third_party/protobuf/upb/mem/arena.h\nthird_party/openscreen/src/third_party/protobuf/upb/mem/arena.hpp\nthird_party/openscreen/src/third_party/protobuf/upb/mem/arena_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/mem/internal/arena.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/accessors.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/accessors.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/accessors.hpp\nthird_party/openscreen/src/third_party/protobuf/upb/message/accessors_split64.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/accessors_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/array.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/array.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/array_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/compare.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/compare.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/compat.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/compat.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/copy.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/copy.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/copy_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/accessors.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/array.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/compare_unknown.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/compare_unknown.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/compare_unknown_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/extension.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/extension.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/iterator.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/iterator.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/map.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/map_entry.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/map_sorter.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/message.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/message.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/tagged_ptr.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/internal/types.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/map.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/map.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/map_gencode_util.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/map_sorter.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/map_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/message.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/message.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/promote.c\nthird_party/openscreen/src/third_party/protobuf/upb/message/promote.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/promote_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/tagged_ptr.h\nthird_party/openscreen/src/third_party/protobuf/upb/message/test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/utf8_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/message/value.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/build_enum.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/build_enum.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/decode.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/decode.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/base92.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/base92.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/decoder.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode.hpp\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/modifiers.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/wire_constants.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/link.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/link.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/compat.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/compat.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/compat_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/enum.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/extension.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/extension_registry.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/extension_registry.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/field.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/file.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/enum.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/extension.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/field.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/file.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/message.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/message.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/size_log2.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/sub.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/message.c\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/message.h\nthird_party/openscreen/src/third_party/protobuf/upb/mini_table/sub.h\nthird_party/openscreen/src/third_party/protobuf/upb/port/atomic.h\nthird_party/openscreen/src/third_party/protobuf/upb/port/sanitizers.h\nthird_party/openscreen/src/third_party/protobuf/upb/port/vsnprintf_compat.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/common.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/def.hpp\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/def_pool.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/def_pool.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/def_type.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/def_type.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/desc_state.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/enum_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/enum_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/enum_reserved_range.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/enum_reserved_range.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/enum_value_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/enum_value_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/extension_range.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/extension_range.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/field_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/field_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/file_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/file_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_builder.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_builder.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_builder_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_pool.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/desc_state.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/enum_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/enum_reserved_range.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/enum_value_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/extension_range.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/field_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/file_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/message_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/message_reserved_range.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/method_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/oneof_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/service_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/strdup2.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/strdup2.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/internal/upb_edition_defaults.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/message.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/message.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/message.hpp\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/message_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/message_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/message_reserved_range.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/message_reserved_range.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/method_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/method_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/oneof_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/oneof_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/service_def.c\nthird_party/openscreen/src/third_party/protobuf/upb/reflection/service_def.h\nthird_party/openscreen/src/third_party/protobuf/upb/test/editions_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/test/fuzz_util.cc\nthird_party/openscreen/src/third_party/protobuf/upb/test/fuzz_util.h\nthird_party/openscreen/src/third_party/protobuf/upb/test/parse_text_proto.h\nthird_party/openscreen/src/third_party/protobuf/upb/test/proto3_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/test/test_cpp.cc\nthird_party/openscreen/src/third_party/protobuf/upb/test/test_generated_code.cc\nthird_party/openscreen/src/third_party/protobuf/upb/test/test_import_empty_srcs.cc\nthird_party/openscreen/src/third_party/protobuf/upb/test/test_mini_table_oneof.cc\nthird_party/openscreen/src/third_party/protobuf/upb/text/debug_string.c\nthird_party/openscreen/src/third_party/protobuf/upb/text/debug_string.h\nthird_party/openscreen/src/third_party/protobuf/upb/text/encode.c\nthird_party/openscreen/src/third_party/protobuf/upb/text/encode.h\nthird_party/openscreen/src/third_party/protobuf/upb/text/encode_debug_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/text/internal/encode.c\nthird_party/openscreen/src/third_party/protobuf/upb/text/internal/encode.h\nthird_party/openscreen/src/third_party/protobuf/upb/text/options.h\nthird_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto.c\nthird_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto.h\nthird_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto_fuzz_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto_test.h\nthird_party/openscreen/src/third_party/protobuf/upb/util/required_fields.c\nthird_party/openscreen/src/third_party/protobuf/upb/util/required_fields.h\nthird_party/openscreen/src/third_party/protobuf/upb/util/required_fields_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/wire/byte_size.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/byte_size.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/byte_size_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_benchmark.cc\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/cardinality.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/combinations.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/data.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/dispatch.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/dispatch.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_fixed.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_message.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_parsers.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_string.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_varint.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/function_array.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/function_array.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/select.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/select.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/decode_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/wire/encode.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/encode.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/eps_copy_input_stream.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/eps_copy_input_stream.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/eps_copy_input_stream_test.cc\nthird_party/openscreen/src/third_party/protobuf/upb/wire/internal/constants.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/internal/decoder.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/internal/decoder.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/internal/reader.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/reader.c\nthird_party/openscreen/src/third_party/protobuf/upb/wire/reader.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/test_util/field_types.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/test_util/make_mini_table.cc\nthird_party/openscreen/src/third_party/protobuf/upb/wire/test_util/make_mini_table.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/test_util/wire_message.cc\nthird_party/openscreen/src/third_party/protobuf/upb/wire/test_util/wire_message.h\nthird_party/openscreen/src/third_party/protobuf/upb/wire/types.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/c/generator.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/c/names.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/c/names.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/c/names_internal.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/c/names_internal.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/common.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/common.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/common/cpp_to_upb_def.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/common/cpp_to_upb_def.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/common/names.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/common/names.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/file_layout.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/file_layout.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/minitable/generator.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/minitable/generator.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/minitable/main.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names_internal.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names_internal.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/plugin.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/plugin.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/context.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/generator.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/header.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/header.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/names.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/names.h\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/source.cc\nthird_party/openscreen/src/third_party/protobuf/upb_generator/reflection/source.h\nthird_party/openscreen/src/third_party/quiche/BUILD.gn\nthird_party/openscreen/src/tools/cddl/sema.cc\nthird_party/openscreen/src/tools/licenses.py\nthird_party/openscreen/src/util/crypto/rsa_private_key_unittest.cc\nthird_party/openscreen/src/util/scoped_wake_lock.h\nthird_party/openscreen/src/util/url_unittest.cc\nthird_party/opus/src/doc/draft-ietf-codec-oggopus.xml\nthird_party/opus/src/doc/draft-ietf-codec-opus-update.xml\nthird_party/opus/src/doc/draft-ietf-codec-opus.xml\nthird_party/opus/src/doc/draft-ietf-payload-rtp-opus.xml\nthird_party/opus/src/doc/opus_in_isobmff.html\nthird_party/opus/src/doc/release.txt\nthird_party/ots/src/src/cff.cc\nthird_party/ots/src/src/cff_charstring.h\nthird_party/ots/src/src/cmap.cc\nthird_party/ots/src/src/cvt.cc\nthird_party/ots/src/src/fpgm.cc\nthird_party/ots/src/src/gasp.cc\nthird_party/ots/src/src/gdef.cc\nthird_party/ots/src/src/glyf.cc\nthird_party/ots/src/src/gpos.cc\nthird_party/ots/src/src/gsub.cc\nthird_party/ots/src/src/hdmx.cc\nthird_party/ots/src/src/head.cc\nthird_party/ots/src/src/hhea.cc\nthird_party/ots/src/src/kern.cc\nthird_party/ots/src/src/layout.cc\nthird_party/ots/src/src/layout.h\nthird_party/ots/src/src/loca.cc\nthird_party/ots/src/src/ltsh.cc\nthird_party/ots/src/src/math.cc\nthird_party/ots/src/src/maxp.cc\nthird_party/ots/src/src/metrics.cc\nthird_party/ots/src/src/name.cc\nthird_party/ots/src/src/os2.cc\nthird_party/ots/src/src/ots.cc\nthird_party/ots/src/src/post.cc\nthird_party/ots/src/src/prep.cc\nthird_party/ots/src/src/vdmx.cc\nthird_party/ots/src/src/vhea.cc\nthird_party/ots/src/src/vorg.cc\nthird_party/pdfium/PRESUBMIT.py\nthird_party/pdfium/core/fpdfapi/cmaps/fpdf_cmaps.cpp\nthird_party/pdfium/core/fpdfapi/edit/cpdf_contentstream_write_utils.cpp\nthird_party/pdfium/core/fpdftext/cpdf_linkextract_unittest.cpp\nthird_party/pdfium/core/fxcrt/fx_memory.cpp\nthird_party/pdfium/core/fxcrt/fx_memory_pa.cpp\nthird_party/pdfium/core/fxcrt/widestring_unittest.cpp\nthird_party/pdfium/core/fxge/win32/cgdi_device_driver.cpp\nthird_party/pdfium/fpdfsdk/PRESUBMIT.py\nthird_party/pdfium/fpdfsdk/fpdf_annot_embeddertest.cpp\nthird_party/pdfium/fpdfsdk/fpdf_edit_embeddertest.cpp\nthird_party/pdfium/fpdfsdk/fpdf_formfill_embeddertest.cpp\nthird_party/pdfium/fpdfsdk/fpdf_text_embeddertest.cpp\nthird_party/pdfium/public/PRESUBMIT.py\nthird_party/pdfium/public/fpdf_doc.h\nthird_party/pdfium/skia/config/SkPdfiumUserConfig.h\nthird_party/pdfium/testing/gtest/BUILD.gn\nthird_party/pdfium/testing/tools/PRESUBMIT.py\nthird_party/pdfium/testing/tools/safetynet_compare.py\nthird_party/pdfium/third_party/agg23/agg_math.h\nthird_party/pdfium/third_party/freetype/include/freetype-custom-config/ftoption.h\nthird_party/pdfium/third_party/libopenjpeg/j2k.c\nthird_party/pdfium/third_party/libopenjpeg/opj_includes.h\nthird_party/pdfium/third_party/libopenjpeg/t2.c\nthird_party/pdfium/tools/lsan/lsan_suppressions.txt\nthird_party/pdfium/tools/roll_pdfium_deps_test.py\nthird_party/pefile_py3/pefile.py\nthird_party/perfetto/CONTRIBUTORS.txt\nthird_party/perfetto/gn/standalone/BUILD.gn\nthird_party/perfetto/gn/standalone/toolchain/msvc.gni\nthird_party/perfetto/include/perfetto/base/build_config.h\nthird_party/perfetto/include/perfetto/base/thread_annotations.h\nthird_party/perfetto/include/perfetto/ext/base/unix_socket.h\nthird_party/perfetto/include/perfetto/protozero/proto_utils.h\nthird_party/perfetto/include/perfetto/public/te_category_macros.h\nthird_party/perfetto/include/perfetto/tracing/internal/track_event_legacy.h\nthird_party/perfetto/infra/ci/Makefile\nthird_party/perfetto/infra/ci/common_utils.py\nthird_party/perfetto/infra/ci/config.py\nthird_party/perfetto/infra/ci/frontend/main.py\nthird_party/perfetto/infra/ci/frontend/stackdriver_metrics.py\nthird_party/perfetto/infra/ci/frontend/static/index.html\nthird_party/perfetto/infra/ci/frontend/static/script.js\nthird_party/perfetto/infra/git_mirror_bot/Makefile\nthird_party/perfetto/infra/git_mirror_bot/mirror_aosp_to_ghub_repo.py\nthird_party/perfetto/infra/luci/recipe_modules/macos_sdk/__init__.py\nthird_party/perfetto/infra/luci/recipes.py\nthird_party/perfetto/infra/luci/recipes/perfetto.expected/ci_android.json\nthird_party/perfetto/infra/luci/recipes/perfetto.expected/ci_linux.json\nthird_party/perfetto/infra/luci/recipes/perfetto.expected/ci_mac.json\nthird_party/perfetto/infra/luci/recipes/perfetto.expected/ci_tag.json\nthird_party/perfetto/infra/luci/recipes/perfetto.expected/ci_win.json\nthird_party/perfetto/infra/luci/recipes/perfetto.expected/unofficial.json\nthird_party/perfetto/infra/luci/recipes/perfetto.py\nthird_party/perfetto/infra/perfetto.dev/appengine/main.py\nthird_party/perfetto/infra/perfetto.dev/src/assets/script.js\nthird_party/perfetto/infra/perfetto.dev/src/markdown_render.js\nthird_party/perfetto/infra/perfetto.dev/src/template_footer.html\nthird_party/perfetto/infra/perfetto.dev/src/template_header.html\nthird_party/perfetto/infra/ui.perfetto.dev/appengine/main.py\nthird_party/perfetto/python/perfetto/prebuilts/manifests/trace_processor_shell.py\nthird_party/perfetto/python/perfetto/prebuilts/manifests/tracebox.py\nthird_party/perfetto/python/perfetto/prebuilts/manifests/traceconv.py\nthird_party/perfetto/python/perfetto/prebuilts/perfetto_prebuilts.py\nthird_party/perfetto/python/setup.py\nthird_party/perfetto/python/tools/install_test_reporter_app.py\nthird_party/perfetto/python/tools/record_android_trace.py\nthird_party/perfetto/python/tools/update_permalink.py\nthird_party/perfetto/src/android_internal/health_hal.cc\nthird_party/perfetto/src/android_sdk/jni/dev_perfetto_sdk_PerfettoNativeMemoryCleaner.cc\nthird_party/perfetto/src/android_sdk/nativehelper/BUILD.gn\nthird_party/perfetto/src/android_sdk/nativehelper/JNIHelp.h\nthird_party/perfetto/src/android_sdk/nativehelper/nativehelper_utils.h\nthird_party/perfetto/src/android_sdk/nativehelper/scoped_local_frame.h\nthird_party/perfetto/src/android_sdk/nativehelper/scoped_local_ref.h\nthird_party/perfetto/src/android_sdk/nativehelper/scoped_primitive_array.h\nthird_party/perfetto/src/android_sdk/nativehelper/scoped_string_chars.h\nthird_party/perfetto/src/android_sdk/nativehelper/scoped_utf_chars.h\nthird_party/perfetto/src/android_sdk/nativehelper/utils.h\nthird_party/perfetto/src/android_sdk/perfetto_sdk_for_jni/tracing_sdk.h\nthird_party/perfetto/src/base/flat_hash_map_benchmark.cc\nthird_party/perfetto/src/base/time.cc\nthird_party/perfetto/src/base/utils.cc\nthird_party/perfetto/src/bigtrace/worker/repository_policies/gcs_trace_processor_loader.cc\nthird_party/perfetto/src/perfetto_cmd/perfetto_cmd_android.cc\nthird_party/perfetto/src/profiling/common/proc_utils.cc\nthird_party/perfetto/src/profiling/memory/client.cc\nthird_party/perfetto/src/profiling/memory/sampler.h\nthird_party/perfetto/src/profiling/memory/shared_ring_buffer.cc\nthird_party/perfetto/src/profiling/memory/system_property.h\nthird_party/perfetto/src/trace_processor/importers/art_method/art_method_parser.cc\nthird_party/perfetto/src/trace_processor/importers/art_method/art_method_tokenizer.cc\nthird_party/perfetto/src/trace_processor/importers/common/args_translation_table.cc\nthird_party/perfetto/src/trace_processor/importers/common/thread_state_tracker.cc\nthird_party/perfetto/src/trace_processor/importers/etw/etw_parser.cc\nthird_party/perfetto/src/trace_processor/importers/etw/file_io_tracker.cc\nthird_party/perfetto/src/trace_processor/importers/etw/file_io_tracker.h\nthird_party/perfetto/src/trace_processor/importers/ftrace/binder_tracker.cc\nthird_party/perfetto/src/trace_processor/importers/fuchsia/fuchsia_trace_tokenizer.h\nthird_party/perfetto/src/trace_processor/importers/fuchsia/fuchsia_trace_utils.h\nthird_party/perfetto/src/trace_processor/importers/ninja/ninja_log_parser.cc\nthird_party/perfetto/src/trace_processor/importers/proto/android_probes_parser.cc\nthird_party/perfetto/src/trace_processor/importers/proto/heap_graph_tracker.cc\nthird_party/perfetto/src/trace_processor/importers/proto/heap_graph_tracker_unittest.cc\nthird_party/perfetto/src/trace_processor/importers/proto/statsd_module.cc\nthird_party/perfetto/src/trace_processor/importers/proto/system_probes_parser.cc\nthird_party/perfetto/src/trace_processor/perfetto_sql/stdlib/android/battery/doze.sql\nthird_party/perfetto/src/trace_processor/perfetto_sql/stdlib/android/startup/time_to_display.sql\nthird_party/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/page_loads.sql\nthird_party/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/scroll_jank_v4.sql\nthird_party/perfetto/src/trace_processor/perfetto_sql/stdlib/export/to_firefox_profile.sql\nthird_party/perfetto/src/trace_processor/perfetto_sql/stdlib/stacks/symbolization_candidates.sql\nthird_party/perfetto/src/trace_processor/util/deobfuscation/deobfuscator_unittest.cc\nthird_party/perfetto/src/trace_processor/util/symbolizer/breakpad_parser.h\nthird_party/perfetto/src/trace_processor/util/trace_type.cc\nthird_party/perfetto/src/trace_redaction/redact_process_events.cc\nthird_party/perfetto/src/traceconv/trace_to_firefox.h\nthird_party/perfetto/src/traceconv/trace_to_hprof.cc\nthird_party/perfetto/src/traced/probes/android_log/android_log_data_source.cc\nthird_party/perfetto/src/tracing/service/tracing_service_impl_unittest.cc\nthird_party/perfetto/test/cts/AndroidTest.xml\nthird_party/perfetto/test/cts/art_module/AndroidTest.xml\nthird_party/perfetto/test/cts/heapprofd_test_helper.cc\nthird_party/perfetto/test/cts/reporter/AndroidTest.xml\nthird_party/perfetto/test/trace_processor/diff_tests/parser/art_hprof/tests.py\nthird_party/perfetto/test/trace_processor/diff_tests/parser/chrome/tests_v8.py\nthird_party/perfetto/test/trace_processor/diff_tests/parser/simpleperf/tests.py\nthird_party/perfetto/test/vts/AndroidTest.xml\nthird_party/perfetto/tools/download_changed_screenshots.py\nthird_party/perfetto/tools/release/release_perfetto.py\nthird_party/perfetto/ui/.eslintrc.js\nthird_party/perfetto/ui/release/build_all_channels.py\nthird_party/perfetto/ui/src/assets/bigtrace.html\nthird_party/perfetto/ui/src/assets/index.html\nthird_party/perfetto/ui/src/base/errors.ts\nthird_party/perfetto/ui/src/base/gcs_uploader.ts\nthird_party/perfetto/ui/src/chrome_extension/index.ts\nthird_party/perfetto/ui/src/core/analytics_impl.ts\nthird_party/perfetto/ui/src/core/cookie_consent.ts\nthird_party/perfetto/ui/src/core_plugins/dev.perfetto.ExampleTraces/index.ts\nthird_party/perfetto/ui/src/frontend/css_constants.ts\nthird_party/perfetto/ui/src/frontend/error_dialog.ts\nthird_party/perfetto/ui/src/frontend/home_page.ts\nthird_party/perfetto/ui/src/frontend/index.ts\nthird_party/perfetto/ui/src/frontend/is_internal_user_script_loader.ts\nthird_party/perfetto/ui/src/frontend/legacy_trace_viewer.ts\nthird_party/perfetto/ui/src/frontend/permalink.ts\nthird_party/perfetto/ui/src/frontend/post_message_handler.ts\nthird_party/perfetto/ui/src/frontend/post_message_handler_unittest.ts\nthird_party/perfetto/ui/src/frontend/sidebar.ts\nthird_party/perfetto/ui/src/frontend/timeline_page/wasd_navigation_handler.ts\nthird_party/perfetto/ui/src/open_perfetto_trace/index.html\nthird_party/perfetto/ui/src/plugins/dev.perfetto.ProcessSummary/index.ts\nthird_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/adb/adb_msg.ts\nthird_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/adb/web_device_proxy/wdp_target_provider.ts\nthird_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/pages/android.ts\nthird_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/pages/record_page.ts\nthird_party/perfetto/ui/src/plugins/dev.perfetto.TraceInfoPage/tabs/android.ts\nthird_party/perfetto/ui/src/plugins/dev.perfetto.TraceProcessorTrack/slice_tracks.ts\nthird_party/perfetto/ui/src/plugins/org.chromium.ChromeScrollJank/scroll_timeline_v4_model.ts\nthird_party/perfetto/ui/src/plugins/org.kernel.Wattson/warning.ts\nthird_party/perfetto/ui/src/service_worker/service_worker.ts\nthird_party/perfetto/ui/src/trace_processor/engine.ts\nthird_party/perfetto/ui/src/widgets/hotkey_context.ts\nthird_party/polymer/v3_0/BUILD.gn\nthird_party/polymer/v3_0/components-chromium/iron-a11y-keys-behavior/iron-a11y-keys-behavior.js\nthird_party/polymer/v3_0/components-chromium/iron-overlay-behavior/iron-focusables-helper.js\nthird_party/polymer/v3_0/components-chromium/iron-overlay-behavior/iron-overlay-manager.js\nthird_party/polymer/v3_0/components-chromium/iron-test-helpers/mock-interactions.js\nthird_party/polymer/v3_0/components-chromium/neon-animation/neon-animated-pages.d.ts\nthird_party/polymer/v3_0/components-chromium/neon-animation/neon-animated-pages.js\nthird_party/polymer/v3_0/components-chromium/paper-progress/paper-progress.d.ts\nthird_party/polymer/v3_0/components-chromium/paper-progress/paper-progress.js\nthird_party/polymer/v3_0/components-chromium/paper-spinner/paper-spinner-lite.d.ts\nthird_party/polymer/v3_0/components-chromium/paper-spinner/paper-spinner-lite.js\nthird_party/polymer/v3_0/components-chromium/paper-tooltip/paper-tooltip.d.ts\nthird_party/polymer/v3_0/components-chromium/paper-tooltip/paper-tooltip.js\nthird_party/polymer/v3_0/components-chromium/polymer/interfaces.d.ts\nthird_party/polymer/v3_0/package.json\nthird_party/private_membership/BUILD.gn\nthird_party/protobuf-javascript/src/binary/arith.js\nthird_party/protobuf-javascript/src/binary/arith_test.js\nthird_party/protobuf-javascript/src/binary/decoder.js\nthird_party/protobuf-javascript/src/binary/decoder_test.js\nthird_party/protobuf-javascript/src/binary/encoder.js\nthird_party/protobuf-javascript/src/binary/proto_test.js\nthird_party/protobuf-javascript/src/binary/reader.js\nthird_party/protobuf-javascript/src/binary/reader_test.js\nthird_party/protobuf-javascript/src/binary/test_utils.js\nthird_party/protobuf-javascript/src/binary/utils.js\nthird_party/protobuf-javascript/src/binary/utils_test.js\nthird_party/protobuf-javascript/src/binary/writer.js\nthird_party/protobuf-javascript/src/binary/writer_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/arith_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/decoder_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/reader_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/utils_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/writer_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/arith_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/decoder_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/reader_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/utils_test.js\nthird_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/writer_test.js\nthird_party/protobuf-javascript/src/experimental/runtime/int64.js\nthird_party/protobuf-javascript/src/experimental/runtime/kernel/storage.js\nthird_party/protobuf-javascript/src/generator/js_generator.cc\nthird_party/protobuf-javascript/src/generator/well_known_types_embed.cc\nthird_party/protobuf-javascript/src/internal_public.js\nthird_party/protobuf-javascript/src/map.js\nthird_party/protobuf-javascript/src/message.js\nthird_party/protobuf/.bcr/metadata.template.json\nthird_party/protobuf/CMakeLists.txt\nthird_party/protobuf/CONTRIBUTORS.txt\nthird_party/protobuf/benchmarks/benchmark.cc\nthird_party/protobuf/benchmarks/compare.py\nthird_party/protobuf/benchmarks/gen_protobuf_binary_cc.py\nthird_party/protobuf/benchmarks/gen_synthetic_protos.py\nthird_party/protobuf/benchmarks/gen_upb_binary_c.py\nthird_party/protobuf/cmake/dependencies_generator.py\nthird_party/protobuf/conformance/binary_json_conformance_suite.cc\nthird_party/protobuf/conformance/binary_json_conformance_suite.h\nthird_party/protobuf/conformance/conformance_cpp.cc\nthird_party/protobuf/conformance/conformance_python.py\nthird_party/protobuf/conformance/conformance_test.cc\nthird_party/protobuf/conformance/conformance_test.h\nthird_party/protobuf/conformance/conformance_test_main.cc\nthird_party/protobuf/conformance/conformance_test_runner.cc\nthird_party/protobuf/conformance/failure_list_trie_node.cc\nthird_party/protobuf/conformance/failure_list_trie_node.h\nthird_party/protobuf/conformance/failure_list_trie_node_test.cc\nthird_party/protobuf/conformance/fork_pipe_runner.cc\nthird_party/protobuf/conformance/fork_pipe_runner.h\nthird_party/protobuf/conformance/test_runner.h\nthird_party/protobuf/conformance/text_format_conformance_suite.cc\nthird_party/protobuf/conformance/text_format_conformance_suite.h\nthird_party/protobuf/conformance/update_failure_list.py\nthird_party/protobuf/docs/upb/render.py\nthird_party/protobuf/editions/generated_files_test.cc\nthird_party/protobuf/editions/generated_reflection_test.cc\nthird_party/protobuf/hpb/arena.h\nthird_party/protobuf/hpb/backend/cpp/cpp.h\nthird_party/protobuf/hpb/backend/cpp/interop.h\nthird_party/protobuf/hpb/backend/types.h\nthird_party/protobuf/hpb/backend/upb/error.h\nthird_party/protobuf/hpb/backend/upb/extension.cc\nthird_party/protobuf/hpb/backend/upb/extension.h\nthird_party/protobuf/hpb/backend/upb/interop.h\nthird_party/protobuf/hpb/backend/upb/interop_test.cc\nthird_party/protobuf/hpb/backend/upb/repeated_field.h\nthird_party/protobuf/hpb/backend/upb/repeated_field_iterator.h\nthird_party/protobuf/hpb/backend/upb/repeated_field_iterator_test.cc\nthird_party/protobuf/hpb/backend/upb/upb.h\nthird_party/protobuf/hpb/extension.cc\nthird_party/protobuf/hpb/extension.h\nthird_party/protobuf/hpb/hpb.h\nthird_party/protobuf/hpb/internal/internal.h\nthird_party/protobuf/hpb/internal/message_lock.cc\nthird_party/protobuf/hpb/internal/message_lock.h\nthird_party/protobuf/hpb/internal/message_lock_test.cc\nthird_party/protobuf/hpb/internal/template_help.h\nthird_party/protobuf/hpb/internal/template_help_test.cc\nthird_party/protobuf/hpb/multibackend.h\nthird_party/protobuf/hpb/options.h\nthird_party/protobuf/hpb/ptr.h\nthird_party/protobuf/hpb/repeated_field.h\nthird_party/protobuf/hpb/requires.h\nthird_party/protobuf/hpb/status.cc\nthird_party/protobuf/hpb/status.h\nthird_party/protobuf/hpb/status_test.cc\nthird_party/protobuf/hpb_generator/context.h\nthird_party/protobuf/hpb_generator/gen_accessors.cc\nthird_party/protobuf/hpb_generator/gen_accessors.h\nthird_party/protobuf/hpb_generator/gen_enums.cc\nthird_party/protobuf/hpb_generator/gen_enums.h\nthird_party/protobuf/hpb_generator/gen_extensions.cc\nthird_party/protobuf/hpb_generator/gen_extensions.h\nthird_party/protobuf/hpb_generator/gen_messages.cc\nthird_party/protobuf/hpb_generator/gen_messages.h\nthird_party/protobuf/hpb_generator/gen_repeated_fields.cc\nthird_party/protobuf/hpb_generator/gen_repeated_fields.h\nthird_party/protobuf/hpb_generator/gen_utils.cc\nthird_party/protobuf/hpb_generator/gen_utils.h\nthird_party/protobuf/hpb_generator/generator.cc\nthird_party/protobuf/hpb_generator/generator.h\nthird_party/protobuf/hpb_generator/keywords.cc\nthird_party/protobuf/hpb_generator/keywords.h\nthird_party/protobuf/hpb_generator/names.cc\nthird_party/protobuf/hpb_generator/names.h\nthird_party/protobuf/hpb_generator/protoc-gen-hpb.cc\nthird_party/protobuf/hpb_generator/tests/extension_test.cc\nthird_party/protobuf/hpb_generator/tests/multibackend_test.cc\nthird_party/protobuf/hpb_generator/tests/repeated_test.cc\nthird_party/protobuf/hpb_generator/tests/test_generated.cc\nthird_party/protobuf/hpb_generator/tests/test_hpb_bzl_alias.cc\nthird_party/protobuf/java/bom/pom.xml\nthird_party/protobuf/java/core/pom_template.xml\nthird_party/protobuf/java/lite/pom_template.xml\nthird_party/protobuf/java/pom.xml\nthird_party/protobuf/java/protoc/pom.xml\nthird_party/protobuf/java/util/pom_template.xml\nthird_party/protobuf/lua/def.c\nthird_party/protobuf/lua/main.c\nthird_party/protobuf/lua/msg.c\nthird_party/protobuf/lua/upb.c\nthird_party/protobuf/lua/upb.h\nthird_party/protobuf/lua/upbc.cc\nthird_party/protobuf/objectivec/DevTools/pddm.py\nthird_party/protobuf/objectivec/DevTools/pddm_tests.py\nthird_party/protobuf/objectivec/GPBAny.pbobjc.h\nthird_party/protobuf/objectivec/GPBApi.pbobjc.h\nthird_party/protobuf/objectivec/GPBArray.h\nthird_party/protobuf/objectivec/GPBArray_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBBootstrap.h\nthird_party/protobuf/objectivec/GPBCodedInputStream.h\nthird_party/protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBCodedOutputStream.h\nthird_party/protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBDescriptor.h\nthird_party/protobuf/objectivec/GPBDescriptor_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBDictionary.h\nthird_party/protobuf/objectivec/GPBDictionary_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBExtensionInternals.h\nthird_party/protobuf/objectivec/GPBExtensionRegistry.h\nthird_party/protobuf/objectivec/GPBMessage.h\nthird_party/protobuf/objectivec/GPBMessage_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBProtocolBuffers.h\nthird_party/protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h\nthird_party/protobuf/objectivec/GPBRootObject.h\nthird_party/protobuf/objectivec/GPBRootObject_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBRuntimeTypes.h\nthird_party/protobuf/objectivec/GPBTimestamp.pbobjc.h\nthird_party/protobuf/objectivec/GPBType.pbobjc.h\nthird_party/protobuf/objectivec/GPBUnknownField.h\nthird_party/protobuf/objectivec/GPBUnknownField_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBUnknownFields.h\nthird_party/protobuf/objectivec/GPBUnknownFields_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBUtilities.h\nthird_party/protobuf/objectivec/GPBUtilities_PackagePrivate.h\nthird_party/protobuf/objectivec/GPBWellKnownTypes.h\nthird_party/protobuf/objectivec/GPBWireFormat.h\nthird_party/protobuf/objectivec/Tests/GPBObjectiveCPlusPlusTest.mm\nthird_party/protobuf/objectivec/Tests/GPBTestUtilities.h\nthird_party/protobuf/objectivec/Tests/UnitTests-Bridging-Header.h\nthird_party/protobuf/php/composer.json\nthird_party/protobuf/php/ext/google/protobuf/arena.c\nthird_party/protobuf/php/ext/google/protobuf/arena.h\nthird_party/protobuf/php/ext/google/protobuf/array.c\nthird_party/protobuf/php/ext/google/protobuf/array.h\nthird_party/protobuf/php/ext/google/protobuf/convert.c\nthird_party/protobuf/php/ext/google/protobuf/convert.h\nthird_party/protobuf/php/ext/google/protobuf/def.c\nthird_party/protobuf/php/ext/google/protobuf/def.h\nthird_party/protobuf/php/ext/google/protobuf/map.c\nthird_party/protobuf/php/ext/google/protobuf/map.h\nthird_party/protobuf/php/ext/google/protobuf/message.c\nthird_party/protobuf/php/ext/google/protobuf/message.h\nthird_party/protobuf/php/ext/google/protobuf/names.c\nthird_party/protobuf/php/ext/google/protobuf/names.h\nthird_party/protobuf/php/ext/google/protobuf/php-upb.c\nthird_party/protobuf/php/ext/google/protobuf/php-upb.h\nthird_party/protobuf/php/ext/google/protobuf/php_protobuf.h\nthird_party/protobuf/php/ext/google/protobuf/print_options.c\nthird_party/protobuf/php/ext/google/protobuf/print_options.h\nthird_party/protobuf/php/ext/google/protobuf/protobuf.c\nthird_party/protobuf/php/ext/google/protobuf/protobuf.h\nthird_party/protobuf/php/ext/google/protobuf/template_package.xml\nthird_party/protobuf/pkg/test/test_lib.cc\nthird_party/protobuf/pkg/test/test_lib.h\nthird_party/protobuf/python/.repo-metadata.json\nthird_party/protobuf/python/convert.c\nthird_party/protobuf/python/convert.h\nthird_party/protobuf/python/descriptor.c\nthird_party/protobuf/python/descriptor.h\nthird_party/protobuf/python/descriptor_containers.c\nthird_party/protobuf/python/descriptor_containers.h\nthird_party/protobuf/python/descriptor_pool.c\nthird_party/protobuf/python/descriptor_pool.h\nthird_party/protobuf/python/dist/setup.py\nthird_party/protobuf/python/docs/conf.py\nthird_party/protobuf/python/docs/generate_docs.py\nthird_party/protobuf/python/extension_dict.c\nthird_party/protobuf/python/extension_dict.h\nthird_party/protobuf/python/google/protobuf/__init__.py\nthird_party/protobuf/python/google/protobuf/any.py\nthird_party/protobuf/python/google/protobuf/descriptor.py\nthird_party/protobuf/python/google/protobuf/descriptor_database.py\nthird_party/protobuf/python/google/protobuf/descriptor_pool.py\nthird_party/protobuf/python/google/protobuf/duration.py\nthird_party/protobuf/python/google/protobuf/internal/__init__.py\nthird_party/protobuf/python/google/protobuf/internal/any_test.py\nthird_party/protobuf/python/google/protobuf/internal/api_implementation.cc\nthird_party/protobuf/python/google/protobuf/internal/api_implementation.py\nthird_party/protobuf/python/google/protobuf/internal/builder.py\nthird_party/protobuf/python/google/protobuf/internal/containers.py\nthird_party/protobuf/python/google/protobuf/internal/decoder.py\nthird_party/protobuf/python/google/protobuf/internal/decoder_test.py\nthird_party/protobuf/python/google/protobuf/internal/descriptor_database_test.py\nthird_party/protobuf/python/google/protobuf/internal/descriptor_pool_test.py\nthird_party/protobuf/python/google/protobuf/internal/descriptor_test.py\nthird_party/protobuf/python/google/protobuf/internal/duration_test.py\nthird_party/protobuf/python/google/protobuf/internal/encoder.py\nthird_party/protobuf/python/google/protobuf/internal/enum_type_wrapper.py\nthird_party/protobuf/python/google/protobuf/internal/extension_dict.py\nthird_party/protobuf/python/google/protobuf/internal/field_mask.py\nthird_party/protobuf/python/google/protobuf/internal/field_mask_test.py\nthird_party/protobuf/python/google/protobuf/internal/generator_test.py\nthird_party/protobuf/python/google/protobuf/internal/import_test.py\nthird_party/protobuf/python/google/protobuf/internal/import_test_package/__init__.py\nthird_party/protobuf/python/google/protobuf/internal/json_format_test.py\nthird_party/protobuf/python/google/protobuf/internal/keywords_test.py\nthird_party/protobuf/python/google/protobuf/internal/message_factory_test.py\nthird_party/protobuf/python/google/protobuf/internal/message_listener.py\nthird_party/protobuf/python/google/protobuf/internal/message_test.py\nthird_party/protobuf/python/google/protobuf/internal/numpy/__init__.py\nthird_party/protobuf/python/google/protobuf/internal/numpy/numpy_test.py\nthird_party/protobuf/python/google/protobuf/internal/proto_builder_test.py\nthird_party/protobuf/python/google/protobuf/internal/proto_json_test.py\nthird_party/protobuf/python/google/protobuf/internal/proto_test.py\nthird_party/protobuf/python/google/protobuf/internal/proto_text_test.py\nthird_party/protobuf/python/google/protobuf/internal/pybind11_test_module.cc\nthird_party/protobuf/python/google/protobuf/internal/python_message.py\nthird_party/protobuf/python/google/protobuf/internal/python_protobuf.cc\nthird_party/protobuf/python/google/protobuf/internal/reflection_cpp_test.py\nthird_party/protobuf/python/google/protobuf/internal/reflection_test.py\nthird_party/protobuf/python/google/protobuf/internal/runtime_version_test.py\nthird_party/protobuf/python/google/protobuf/internal/service_reflection_test.py\nthird_party/protobuf/python/google/protobuf/internal/symbol_database_test.py\nthird_party/protobuf/python/google/protobuf/internal/test_util.py\nthird_party/protobuf/python/google/protobuf/internal/testing_refleaks.py\nthird_party/protobuf/python/google/protobuf/internal/text_encoding_test.py\nthird_party/protobuf/python/google/protobuf/internal/text_format_test.py\nthird_party/protobuf/python/google/protobuf/internal/thread_safe_test.py\nthird_party/protobuf/python/google/protobuf/internal/timestamp_test.py\nthird_party/protobuf/python/google/protobuf/internal/type_checkers.py\nthird_party/protobuf/python/google/protobuf/internal/unknown_fields_test.py\nthird_party/protobuf/python/google/protobuf/internal/well_known_types.py\nthird_party/protobuf/python/google/protobuf/internal/well_known_types_test.py\nthird_party/protobuf/python/google/protobuf/internal/wire_format.py\nthird_party/protobuf/python/google/protobuf/internal/wire_format_test.py\nthird_party/protobuf/python/google/protobuf/json_format.py\nthird_party/protobuf/python/google/protobuf/message.py\nthird_party/protobuf/python/google/protobuf/message_factory.py\nthird_party/protobuf/python/google/protobuf/proto.py\nthird_party/protobuf/python/google/protobuf/proto_api.h\nthird_party/protobuf/python/google/protobuf/proto_builder.py\nthird_party/protobuf/python/google/protobuf/proto_json.py\nthird_party/protobuf/python/google/protobuf/proto_text.py\nthird_party/protobuf/python/google/protobuf/pyext/cpp_message.py\nthird_party/protobuf/python/google/protobuf/pyext/descriptor.cc\nthird_party/protobuf/python/google/protobuf/pyext/descriptor.h\nthird_party/protobuf/python/google/protobuf/pyext/descriptor_containers.cc\nthird_party/protobuf/python/google/protobuf/pyext/descriptor_containers.h\nthird_party/protobuf/python/google/protobuf/pyext/descriptor_database.cc\nthird_party/protobuf/python/google/protobuf/pyext/descriptor_database.h\nthird_party/protobuf/python/google/protobuf/pyext/descriptor_pool.cc\nthird_party/protobuf/python/google/protobuf/pyext/descriptor_pool.h\nthird_party/protobuf/python/google/protobuf/pyext/extension_dict.cc\nthird_party/protobuf/python/google/protobuf/pyext/extension_dict.h\nthird_party/protobuf/python/google/protobuf/pyext/field.cc\nthird_party/protobuf/python/google/protobuf/pyext/field.h\nthird_party/protobuf/python/google/protobuf/pyext/map_container.cc\nthird_party/protobuf/python/google/protobuf/pyext/map_container.h\nthird_party/protobuf/python/google/protobuf/pyext/message.cc\nthird_party/protobuf/python/google/protobuf/pyext/message.h\nthird_party/protobuf/python/google/protobuf/pyext/message_factory.cc\nthird_party/protobuf/python/google/protobuf/pyext/message_factory.h\nthird_party/protobuf/python/google/protobuf/pyext/message_module.cc\nthird_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.cc\nthird_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.h\nthird_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.cc\nthird_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.h\nthird_party/protobuf/python/google/protobuf/pyext/safe_numerics.h\nthird_party/protobuf/python/google/protobuf/pyext/scoped_pyobject_ptr.h\nthird_party/protobuf/python/google/protobuf/pyext/unknown_field_set.cc\nthird_party/protobuf/python/google/protobuf/pyext/unknown_field_set.h\nthird_party/protobuf/python/google/protobuf/python_protobuf.h\nthird_party/protobuf/python/google/protobuf/reflection.py\nthird_party/protobuf/python/google/protobuf/runtime_version.py\nthird_party/protobuf/python/google/protobuf/service_reflection.py\nthird_party/protobuf/python/google/protobuf/symbol_database.py\nthird_party/protobuf/python/google/protobuf/text_encoding.py\nthird_party/protobuf/python/google/protobuf/text_format.py\nthird_party/protobuf/python/google/protobuf/timestamp.py\nthird_party/protobuf/python/google/protobuf/unknown_fields.py\nthird_party/protobuf/python/map.c\nthird_party/protobuf/python/map.h\nthird_party/protobuf/python/message.c\nthird_party/protobuf/python/message.h\nthird_party/protobuf/python/minimal_test.py\nthird_party/protobuf/python/protobuf.c\nthird_party/protobuf/python/protobuf.h\nthird_party/protobuf/python/protobuf_distutils/protobuf_distutils/generate_py_protobufs.py\nthird_party/protobuf/python/protobuf_distutils/setup.py\nthird_party/protobuf/python/python_api.h\nthird_party/protobuf/python/python_version_test.py\nthird_party/protobuf/python/repeated.c\nthird_party/protobuf/python/repeated.h\nthird_party/protobuf/python/unknown_fields.c\nthird_party/protobuf/python/unknown_fields.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/convert.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/convert.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/defs.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/defs.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/glue.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/map.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/map.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/message.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/message.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/protobuf.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/protobuf.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.h\nthird_party/protobuf/ruby/ext/google/protobuf_c/shared_message.c\nthird_party/protobuf/ruby/ext/google/protobuf_c/shared_message.h\nthird_party/protobuf/ruby/pom.xml\nthird_party/protobuf/rust/cpp_kernel/serialized_data.h\nthird_party/protobuf/rust/cpp_kernel/strings.h\nthird_party/protobuf/rust/test/cpp/interop/test_utils.cc\nthird_party/protobuf/rust/test/rust_proto_library_unit_test/empty.cc\nthird_party/protobuf/rust/upb/sys/upb_api.c\nthird_party/protobuf/src/google/protobuf/any.cc\nthird_party/protobuf/src/google/protobuf/any.h\nthird_party/protobuf/src/google/protobuf/any_lite.cc\nthird_party/protobuf/src/google/protobuf/any_test.cc\nthird_party/protobuf/src/google/protobuf/arena.cc\nthird_party/protobuf/src/google/protobuf/arena.h\nthird_party/protobuf/src/google/protobuf/arena_align.cc\nthird_party/protobuf/src/google/protobuf/arena_align.h\nthird_party/protobuf/src/google/protobuf/arena_align_test.cc\nthird_party/protobuf/src/google/protobuf/arena_allocation_policy.h\nthird_party/protobuf/src/google/protobuf/arena_cleanup.h\nthird_party/protobuf/src/google/protobuf/arena_test_util.h\nthird_party/protobuf/src/google/protobuf/arena_unittest.cc\nthird_party/protobuf/src/google/protobuf/arenastring.cc\nthird_party/protobuf/src/google/protobuf/arenastring.h\nthird_party/protobuf/src/google/protobuf/arenastring_unittest.cc\nthird_party/protobuf/src/google/protobuf/arenaz_sampler.cc\nthird_party/protobuf/src/google/protobuf/arenaz_sampler.h\nthird_party/protobuf/src/google/protobuf/arenaz_sampler_test.cc\nthird_party/protobuf/src/google/protobuf/compiler/annotation_test_util.cc\nthird_party/protobuf/src/google/protobuf/compiler/annotation_test_util.h\nthird_party/protobuf/src/google/protobuf/compiler/code_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/code_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/code_generator_lite.cc\nthird_party/protobuf/src/google/protobuf/compiler/code_generator_lite.h\nthird_party/protobuf/src/google/protobuf/compiler/code_generator_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc\nthird_party/protobuf/src/google/protobuf/compiler/command_line_interface.h\nthird_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.cc\nthird_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.h\nthird_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/arena_ctor_visibility_test.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/bootstrap_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/copy_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/enum.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/enum.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/extension.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/extension.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/cord_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/generators.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/map_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/message_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_view_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/file.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/file.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/file_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/generator.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/generator_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/helpers.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/main.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/message.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/message.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/message_layout_helper.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/message_size_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/metadata_test.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/move_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/names.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/namespace_printer.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/options.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/plugin_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/service.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/service.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto_main.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/tracker.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/tracker.h\nthird_party/protobuf/src/google/protobuf/compiler/cpp/unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/cpp/unittest.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_options.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h\nthird_party/protobuf/src/google/protobuf/compiler/csharp/names.cc\nthird_party/protobuf/src/google/protobuf/compiler/csharp/names.h\nthird_party/protobuf/src/google/protobuf/compiler/fake_plugin.cc\nthird_party/protobuf/src/google/protobuf/compiler/importer.cc\nthird_party/protobuf/src/google/protobuf/compiler/importer.h\nthird_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/context.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/context.h\nthird_party/protobuf/src/google/protobuf/compiler/java/doc_comment.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/doc_comment.h\nthird_party/protobuf/src/google/protobuf/compiler/java/doc_comment_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/file.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/file.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/enum.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/enum.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/extension.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/extension.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/generator_factory.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/map_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/map_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/message.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/message.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/message_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/message_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/service.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/service.h\nthird_party/protobuf/src/google/protobuf/compiler/java/full/string_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/full/string_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/generator.h\nthird_party/protobuf/src/google/protobuf/compiler/java/generator_factory.h\nthird_party/protobuf/src/google/protobuf/compiler/java/generator_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/helpers.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/helpers.h\nthird_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.h\nthird_party/protobuf/src/google/protobuf/compiler/java/java_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/enum.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/enum.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/extension.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/extension.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/generator_factory.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/message.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/message.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.h\nthird_party/protobuf/src/google/protobuf/compiler/java/message_serialization.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/message_serialization.h\nthird_party/protobuf/src/google/protobuf/compiler/java/message_serialization_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/name_resolver.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/name_resolver.h\nthird_party/protobuf/src/google/protobuf/compiler/java/names.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/names.h\nthird_party/protobuf/src/google/protobuf/compiler/java/names_internal.h\nthird_party/protobuf/src/google/protobuf/compiler/java/options.h\nthird_party/protobuf/src/google/protobuf/compiler/java/plugin_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/kotlin/file.cc\nthird_party/protobuf/src/google/protobuf/compiler/kotlin/file.h\nthird_party/protobuf/src/google/protobuf/compiler/kotlin/generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/kotlin/generator.h\nthird_party/protobuf/src/google/protobuf/compiler/kotlin/message.cc\nthird_party/protobuf/src/google/protobuf/compiler/kotlin/message.h\nthird_party/protobuf/src/google/protobuf/compiler/main.cc\nthird_party/protobuf/src/google/protobuf/compiler/main_no_generators.cc\nthird_party/protobuf/src/google/protobuf/compiler/mock_code_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/enum.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/enum.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/extension.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/extension.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/field.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/field.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/file.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/file.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/generator.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/message.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/message.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/names.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/names_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/nsobject_methods.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/options.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.h\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.cc\nthird_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.h\nthird_party/protobuf/src/google/protobuf/compiler/package_info.h\nthird_party/protobuf/src/google/protobuf/compiler/parser.cc\nthird_party/protobuf/src/google/protobuf/compiler/parser.h\nthird_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/php/generator_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/php/names.cc\nthird_party/protobuf/src/google/protobuf/compiler/php/names.h\nthird_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/php/php_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/plugin.cc\nthird_party/protobuf/src/google/protobuf/compiler/plugin.h\nthird_party/protobuf/src/google/protobuf/compiler/python/generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/python/generator.h\nthird_party/protobuf/src/google/protobuf/compiler/python/helpers.cc\nthird_party/protobuf/src/google/protobuf/compiler/python/helpers.h\nthird_party/protobuf/src/google/protobuf/compiler/python/plugin_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/python/python_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/retention.cc\nthird_party/protobuf/src/google/protobuf/compiler/retention.h\nthird_party/protobuf/src/google/protobuf/compiler/retention_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.h\nthird_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator_unittest.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessor_case.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/generator.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/map.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/repeated_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_cord.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_message.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_scalar.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_string.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/unsupported_field.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/context.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/context.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/enum.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/enum.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/generator.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/generator.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/main.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/message.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/message.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/naming.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/naming.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/oneof.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/oneof.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/relative_path.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/relative_path.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/relative_path_test.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.cc\nthird_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.h\nthird_party/protobuf/src/google/protobuf/compiler/rust/upb_helpers.h\nthird_party/protobuf/src/google/protobuf/compiler/scc.h\nthird_party/protobuf/src/google/protobuf/compiler/subprocess.cc\nthird_party/protobuf/src/google/protobuf/compiler/subprocess.h\nthird_party/protobuf/src/google/protobuf/compiler/test_plugin.cc\nthird_party/protobuf/src/google/protobuf/compiler/versions.cc\nthird_party/protobuf/src/google/protobuf/compiler/versions.h\nthird_party/protobuf/src/google/protobuf/compiler/versions_test.cc\nthird_party/protobuf/src/google/protobuf/compiler/zip_writer.cc\nthird_party/protobuf/src/google/protobuf/compiler/zip_writer.h\nthird_party/protobuf/src/google/protobuf/debug_counter_test.cc\nthird_party/protobuf/src/google/protobuf/descriptor.cc\nthird_party/protobuf/src/google/protobuf/descriptor.h\nthird_party/protobuf/src/google/protobuf/descriptor_database.cc\nthird_party/protobuf/src/google/protobuf/descriptor_database.h\nthird_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc\nthird_party/protobuf/src/google/protobuf/descriptor_lite.h\nthird_party/protobuf/src/google/protobuf/descriptor_unittest.cc\nthird_party/protobuf/src/google/protobuf/descriptor_visitor.h\nthird_party/protobuf/src/google/protobuf/descriptor_visitor_test.cc\nthird_party/protobuf/src/google/protobuf/drop_unknown_fields_test.cc\nthird_party/protobuf/src/google/protobuf/dynamic_message.cc\nthird_party/protobuf/src/google/protobuf/dynamic_message.h\nthird_party/protobuf/src/google/protobuf/dynamic_message_unittest.cc\nthird_party/protobuf/src/google/protobuf/edition_message_unittest.cc\nthird_party/protobuf/src/google/protobuf/endian.h\nthird_party/protobuf/src/google/protobuf/explicitly_constructed.h\nthird_party/protobuf/src/google/protobuf/extension_set.cc\nthird_party/protobuf/src/google/protobuf/extension_set.h\nthird_party/protobuf/src/google/protobuf/extension_set_heavy.cc\nthird_party/protobuf/src/google/protobuf/extension_set_inl.h\nthird_party/protobuf/src/google/protobuf/extension_set_unittest.cc\nthird_party/protobuf/src/google/protobuf/feature_resolver.cc\nthird_party/protobuf/src/google/protobuf/feature_resolver.h\nthird_party/protobuf/src/google/protobuf/feature_resolver_test.cc\nthird_party/protobuf/src/google/protobuf/field_access_listener.h\nthird_party/protobuf/src/google/protobuf/generated_enum_reflection.h\nthird_party/protobuf/src/google/protobuf/generated_enum_util.cc\nthird_party/protobuf/src/google/protobuf/generated_enum_util.h\nthird_party/protobuf/src/google/protobuf/generated_enum_util_test.cc\nthird_party/protobuf/src/google/protobuf/generated_message_bases.cc\nthird_party/protobuf/src/google/protobuf/generated_message_bases.h\nthird_party/protobuf/src/google/protobuf/generated_message_reflection.cc\nthird_party/protobuf/src/google/protobuf/generated_message_reflection.h\nthird_party/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc\nthird_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h\nthird_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc\nthird_party/protobuf/src/google/protobuf/generated_message_tctable_gen.cc\nthird_party/protobuf/src/google/protobuf/generated_message_tctable_gen.h\nthird_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h\nthird_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc\nthird_party/protobuf/src/google/protobuf/generated_message_tctable_lite_test.cc\nthird_party/protobuf/src/google/protobuf/generated_message_util.cc\nthird_party/protobuf/src/google/protobuf/generated_message_util.h\nthird_party/protobuf/src/google/protobuf/has_bits.h\nthird_party/protobuf/src/google/protobuf/has_bits_test.cc\nthird_party/protobuf/src/google/protobuf/implicit_weak_message.cc\nthird_party/protobuf/src/google/protobuf/implicit_weak_message.h\nthird_party/protobuf/src/google/protobuf/inlined_string_field.cc\nthird_party/protobuf/src/google/protobuf/inlined_string_field.h\nthird_party/protobuf/src/google/protobuf/inlined_string_field_unittest.cc\nthird_party/protobuf/src/google/protobuf/internal_message_util_unittest.cc\nthird_party/protobuf/src/google/protobuf/internal_visibility.h\nthird_party/protobuf/src/google/protobuf/internal_visibility_for_testing.h\nthird_party/protobuf/src/google/protobuf/io/coded_stream.cc\nthird_party/protobuf/src/google/protobuf/io/coded_stream.h\nthird_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc\nthird_party/protobuf/src/google/protobuf/io/gzip_stream.cc\nthird_party/protobuf/src/google/protobuf/io/gzip_stream.h\nthird_party/protobuf/src/google/protobuf/io/io_win32.cc\nthird_party/protobuf/src/google/protobuf/io/io_win32.h\nthird_party/protobuf/src/google/protobuf/io/io_win32_unittest.cc\nthird_party/protobuf/src/google/protobuf/io/package_info.h\nthird_party/protobuf/src/google/protobuf/io/printer.cc\nthird_party/protobuf/src/google/protobuf/io/printer.h\nthird_party/protobuf/src/google/protobuf/io/printer_death_test.cc\nthird_party/protobuf/src/google/protobuf/io/printer_unittest.cc\nthird_party/protobuf/src/google/protobuf/io/strtod.cc\nthird_party/protobuf/src/google/protobuf/io/strtod.h\nthird_party/protobuf/src/google/protobuf/io/test_zero_copy_stream.h\nthird_party/protobuf/src/google/protobuf/io/test_zero_copy_stream_test.cc\nthird_party/protobuf/src/google/protobuf/io/tokenizer.cc\nthird_party/protobuf/src/google/protobuf/io/tokenizer.h\nthird_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc\nthird_party/protobuf/src/google/protobuf/io/zero_copy_sink.cc\nthird_party/protobuf/src/google/protobuf/io/zero_copy_sink.h\nthird_party/protobuf/src/google/protobuf/io/zero_copy_sink_test.cc\nthird_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc\nthird_party/protobuf/src/google/protobuf/io/zero_copy_stream.h\nthird_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc\nthird_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h\nthird_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc\nthird_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h\nthird_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc\nthird_party/protobuf/src/google/protobuf/json/internal/descriptor_traits.h\nthird_party/protobuf/src/google/protobuf/json/internal/lexer.cc\nthird_party/protobuf/src/google/protobuf/json/internal/lexer.h\nthird_party/protobuf/src/google/protobuf/json/internal/lexer_test.cc\nthird_party/protobuf/src/google/protobuf/json/internal/message_path.cc\nthird_party/protobuf/src/google/protobuf/json/internal/message_path.h\nthird_party/protobuf/src/google/protobuf/json/internal/parser.cc\nthird_party/protobuf/src/google/protobuf/json/internal/parser.h\nthird_party/protobuf/src/google/protobuf/json/internal/parser_traits.h\nthird_party/protobuf/src/google/protobuf/json/internal/unparser.cc\nthird_party/protobuf/src/google/protobuf/json/internal/unparser.h\nthird_party/protobuf/src/google/protobuf/json/internal/unparser_traits.h\nthird_party/protobuf/src/google/protobuf/json/internal/untyped_message.cc\nthird_party/protobuf/src/google/protobuf/json/internal/untyped_message.h\nthird_party/protobuf/src/google/protobuf/json/internal/writer.cc\nthird_party/protobuf/src/google/protobuf/json/internal/writer.h\nthird_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc\nthird_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.h\nthird_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream_test.cc\nthird_party/protobuf/src/google/protobuf/json/json.cc\nthird_party/protobuf/src/google/protobuf/json/json.h\nthird_party/protobuf/src/google/protobuf/json/json_test.cc\nthird_party/protobuf/src/google/protobuf/lazily_build_dependencies_test.cc\nthird_party/protobuf/src/google/protobuf/lite_arena_unittest.cc\nthird_party/protobuf/src/google/protobuf/lite_unittest.cc\nthird_party/protobuf/src/google/protobuf/map.cc\nthird_party/protobuf/src/google/protobuf/map.h\nthird_party/protobuf/src/google/protobuf/map_entry.h\nthird_party/protobuf/src/google/protobuf/map_field.cc\nthird_party/protobuf/src/google/protobuf/map_field.h\nthird_party/protobuf/src/google/protobuf/map_field_lite.h\nthird_party/protobuf/src/google/protobuf/map_field_test.cc\nthird_party/protobuf/src/google/protobuf/map_probe_benchmark.cc\nthird_party/protobuf/src/google/protobuf/map_test.cc\nthird_party/protobuf/src/google/protobuf/map_test_util.h\nthird_party/protobuf/src/google/protobuf/map_type_handler.h\nthird_party/protobuf/src/google/protobuf/message.cc\nthird_party/protobuf/src/google/protobuf/message.h\nthird_party/protobuf/src/google/protobuf/message_lite.cc\nthird_party/protobuf/src/google/protobuf/message_lite.h\nthird_party/protobuf/src/google/protobuf/message_unittest.cc\nthird_party/protobuf/src/google/protobuf/metadata.h\nthird_party/protobuf/src/google/protobuf/metadata_lite.h\nthird_party/protobuf/src/google/protobuf/micro_string.cc\nthird_party/protobuf/src/google/protobuf/micro_string.h\nthird_party/protobuf/src/google/protobuf/micro_string_test.cc\nthird_party/protobuf/src/google/protobuf/no_field_presence_map_test.cc\nthird_party/protobuf/src/google/protobuf/no_field_presence_test.cc\nthird_party/protobuf/src/google/protobuf/package_info.h\nthird_party/protobuf/src/google/protobuf/parse_context.cc\nthird_party/protobuf/src/google/protobuf/parse_context.h\nthird_party/protobuf/src/google/protobuf/port.cc\nthird_party/protobuf/src/google/protobuf/port.h\nthird_party/protobuf/src/google/protobuf/port_test.cc\nthird_party/protobuf/src/google/protobuf/preserve_unknown_enum_test.cc\nthird_party/protobuf/src/google/protobuf/proto3_arena_lite_unittest.cc\nthird_party/protobuf/src/google/protobuf/proto3_arena_unittest.cc\nthird_party/protobuf/src/google/protobuf/proto3_lite_unittest.cc\nthird_party/protobuf/src/google/protobuf/raw_ptr.cc\nthird_party/protobuf/src/google/protobuf/raw_ptr.h\nthird_party/protobuf/src/google/protobuf/raw_ptr_test.cc\nthird_party/protobuf/src/google/protobuf/redaction_metric_test.cc\nthird_party/protobuf/src/google/protobuf/reflection.h\nthird_party/protobuf/src/google/protobuf/reflection_internal.h\nthird_party/protobuf/src/google/protobuf/reflection_mode.cc\nthird_party/protobuf/src/google/protobuf/reflection_mode.h\nthird_party/protobuf/src/google/protobuf/reflection_mode_test.cc\nthird_party/protobuf/src/google/protobuf/reflection_ops.cc\nthird_party/protobuf/src/google/protobuf/reflection_ops.h\nthird_party/protobuf/src/google/protobuf/reflection_ops_unittest.cc\nthird_party/protobuf/src/google/protobuf/reflection_tester.cc\nthird_party/protobuf/src/google/protobuf/reflection_tester.h\nthird_party/protobuf/src/google/protobuf/repeated_field.cc\nthird_party/protobuf/src/google/protobuf/repeated_field.h\nthird_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc\nthird_party/protobuf/src/google/protobuf/repeated_field_unittest.cc\nthird_party/protobuf/src/google/protobuf/repeated_ptr_field.cc\nthird_party/protobuf/src/google/protobuf/repeated_ptr_field.h\nthird_party/protobuf/src/google/protobuf/repeated_ptr_field_unittest.cc\nthird_party/protobuf/src/google/protobuf/retention_test.cc\nthird_party/protobuf/src/google/protobuf/serial_arena.h\nthird_party/protobuf/src/google/protobuf/service.cc\nthird_party/protobuf/src/google/protobuf/service.h\nthird_party/protobuf/src/google/protobuf/string_block.h\nthird_party/protobuf/src/google/protobuf/string_block_test.cc\nthird_party/protobuf/src/google/protobuf/string_member_robber.h\nthird_party/protobuf/src/google/protobuf/string_piece_field_support_unittest.cc\nthird_party/protobuf/src/google/protobuf/stubs/callback.h\nthird_party/protobuf/src/google/protobuf/stubs/common.cc\nthird_party/protobuf/src/google/protobuf/stubs/common.h\nthird_party/protobuf/src/google/protobuf/stubs/common_unittest.cc\nthird_party/protobuf/src/google/protobuf/stubs/platform_macros.h\nthird_party/protobuf/src/google/protobuf/stubs/port.h\nthird_party/protobuf/src/google/protobuf/stubs/status_macros.h\nthird_party/protobuf/src/google/protobuf/test_textproto.h\nthird_party/protobuf/src/google/protobuf/test_util.cc\nthird_party/protobuf/src/google/protobuf/test_util.h\nthird_party/protobuf/src/google/protobuf/test_util2.h\nthird_party/protobuf/src/google/protobuf/test_util_lite.cc\nthird_party/protobuf/src/google/protobuf/test_util_lite.h\nthird_party/protobuf/src/google/protobuf/testing/file.cc\nthird_party/protobuf/src/google/protobuf/testing/file.h\nthird_party/protobuf/src/google/protobuf/testing/googletest.cc\nthird_party/protobuf/src/google/protobuf/testing/googletest.h\nthird_party/protobuf/src/google/protobuf/text_format.cc\nthird_party/protobuf/src/google/protobuf/text_format.h\nthird_party/protobuf/src/google/protobuf/text_format_unittest.cc\nthird_party/protobuf/src/google/protobuf/thread_safe_arena.h\nthird_party/protobuf/src/google/protobuf/unknown_field_set.cc\nthird_party/protobuf/src/google/protobuf/unknown_field_set.h\nthird_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc\nthird_party/protobuf/src/google/protobuf/util/delimited_message_util.cc\nthird_party/protobuf/src/google/protobuf/util/delimited_message_util.h\nthird_party/protobuf/src/google/protobuf/util/delimited_message_util_test.cc\nthird_party/protobuf/src/google/protobuf/util/field_comparator.cc\nthird_party/protobuf/src/google/protobuf/util/field_comparator.h\nthird_party/protobuf/src/google/protobuf/util/field_comparator_test.cc\nthird_party/protobuf/src/google/protobuf/util/field_mask_util.cc\nthird_party/protobuf/src/google/protobuf/util/field_mask_util.h\nthird_party/protobuf/src/google/protobuf/util/field_mask_util_test.cc\nthird_party/protobuf/src/google/protobuf/util/internal_timeval.h\nthird_party/protobuf/src/google/protobuf/util/json_util.h\nthird_party/protobuf/src/google/protobuf/util/message_differencer.cc\nthird_party/protobuf/src/google/protobuf/util/message_differencer.h\nthird_party/protobuf/src/google/protobuf/util/message_differencer_unittest.cc\nthird_party/protobuf/src/google/protobuf/util/package_info.h\nthird_party/protobuf/src/google/protobuf/util/time_util.cc\nthird_party/protobuf/src/google/protobuf/util/time_util.h\nthird_party/protobuf/src/google/protobuf/util/time_util_test.cc\nthird_party/protobuf/src/google/protobuf/util/type_resolver.h\nthird_party/protobuf/src/google/protobuf/util/type_resolver_util.cc\nthird_party/protobuf/src/google/protobuf/util/type_resolver_util.h\nthird_party/protobuf/src/google/protobuf/util/type_resolver_util_test.cc\nthird_party/protobuf/src/google/protobuf/varint_shuffle.h\nthird_party/protobuf/src/google/protobuf/varint_shuffle_test.cc\nthird_party/protobuf/src/google/protobuf/well_known_types_unittest.cc\nthird_party/protobuf/src/google/protobuf/wire_format.cc\nthird_party/protobuf/src/google/protobuf/wire_format.h\nthird_party/protobuf/src/google/protobuf/wire_format_lite.cc\nthird_party/protobuf/src/google/protobuf/wire_format_lite.h\nthird_party/protobuf/src/google/protobuf/wire_format_unittest.cc\nthird_party/protobuf/src/google/protobuf/wire_format_unittest.h\nthird_party/protobuf/upb/base/descriptor_constants.h\nthird_party/protobuf/upb/base/internal/endian.h\nthird_party/protobuf/upb/base/internal/log2.h\nthird_party/protobuf/upb/base/status.c\nthird_party/protobuf/upb/base/status.h\nthird_party/protobuf/upb/base/status.hpp\nthird_party/protobuf/upb/base/string_view.h\nthird_party/protobuf/upb/base/upcast.h\nthird_party/protobuf/upb/bazel/amalgamate.py\nthird_party/protobuf/upb/cmake/staleness_test.py\nthird_party/protobuf/upb/cmake/staleness_test_lib.py\nthird_party/protobuf/upb/conformance/conformance_upb.c\nthird_party/protobuf/upb/generated_code_support.h\nthird_party/protobuf/upb/hash/common.c\nthird_party/protobuf/upb/hash/common.h\nthird_party/protobuf/upb/hash/int_table.h\nthird_party/protobuf/upb/hash/str_table.h\nthird_party/protobuf/upb/hash/test.cc\nthird_party/protobuf/upb/io/chunked_input_stream.c\nthird_party/protobuf/upb/io/chunked_input_stream.h\nthird_party/protobuf/upb/io/chunked_output_stream.c\nthird_party/protobuf/upb/io/chunked_output_stream.h\nthird_party/protobuf/upb/io/string.h\nthird_party/protobuf/upb/io/string_test.cc\nthird_party/protobuf/upb/io/tokenizer.c\nthird_party/protobuf/upb/io/tokenizer.h\nthird_party/protobuf/upb/io/tokenizer_test.cc\nthird_party/protobuf/upb/io/zero_copy_input_stream.h\nthird_party/protobuf/upb/io/zero_copy_output_stream.h\nthird_party/protobuf/upb/io/zero_copy_stream_test.cc\nthird_party/protobuf/upb/json/decode.c\nthird_party/protobuf/upb/json/decode.h\nthird_party/protobuf/upb/json/decode_test.cc\nthird_party/protobuf/upb/json/encode.c\nthird_party/protobuf/upb/json/encode.h\nthird_party/protobuf/upb/json/encode_test.cc\nthird_party/protobuf/upb/json/fuzz_test.cc\nthird_party/protobuf/upb/lex/atoi.c\nthird_party/protobuf/upb/lex/atoi.h\nthird_party/protobuf/upb/lex/atoi_test.cc\nthird_party/protobuf/upb/lex/round_trip.c\nthird_party/protobuf/upb/lex/round_trip.h\nthird_party/protobuf/upb/lex/strtod.c\nthird_party/protobuf/upb/lex/strtod.h\nthird_party/protobuf/upb/lex/unicode.c\nthird_party/protobuf/upb/lex/unicode.h\nthird_party/protobuf/upb/mem/alloc.c\nthird_party/protobuf/upb/mem/alloc.h\nthird_party/protobuf/upb/mem/arena.c\nthird_party/protobuf/upb/mem/arena.h\nthird_party/protobuf/upb/mem/arena.hpp\nthird_party/protobuf/upb/mem/arena_test.cc\nthird_party/protobuf/upb/mem/internal/arena.h\nthird_party/protobuf/upb/message/accessors.c\nthird_party/protobuf/upb/message/accessors.h\nthird_party/protobuf/upb/message/accessors.hpp\nthird_party/protobuf/upb/message/accessors_split64.h\nthird_party/protobuf/upb/message/accessors_test.cc\nthird_party/protobuf/upb/message/array.c\nthird_party/protobuf/upb/message/array.h\nthird_party/protobuf/upb/message/array_test.cc\nthird_party/protobuf/upb/message/compare.c\nthird_party/protobuf/upb/message/compare.h\nthird_party/protobuf/upb/message/compat.c\nthird_party/protobuf/upb/message/compat.h\nthird_party/protobuf/upb/message/copy.c\nthird_party/protobuf/upb/message/copy.h\nthird_party/protobuf/upb/message/copy_test.cc\nthird_party/protobuf/upb/message/internal/accessors.h\nthird_party/protobuf/upb/message/internal/array.h\nthird_party/protobuf/upb/message/internal/compare_unknown.c\nthird_party/protobuf/upb/message/internal/compare_unknown.h\nthird_party/protobuf/upb/message/internal/compare_unknown_test.cc\nthird_party/protobuf/upb/message/internal/extension.c\nthird_party/protobuf/upb/message/internal/extension.h\nthird_party/protobuf/upb/message/internal/iterator.c\nthird_party/protobuf/upb/message/internal/iterator.h\nthird_party/protobuf/upb/message/internal/map.h\nthird_party/protobuf/upb/message/internal/map_entry.h\nthird_party/protobuf/upb/message/internal/map_sorter.h\nthird_party/protobuf/upb/message/internal/message.c\nthird_party/protobuf/upb/message/internal/message.h\nthird_party/protobuf/upb/message/internal/tagged_ptr.h\nthird_party/protobuf/upb/message/internal/types.h\nthird_party/protobuf/upb/message/map.c\nthird_party/protobuf/upb/message/map.h\nthird_party/protobuf/upb/message/map_gencode_util.h\nthird_party/protobuf/upb/message/map_sorter.c\nthird_party/protobuf/upb/message/map_test.cc\nthird_party/protobuf/upb/message/message.c\nthird_party/protobuf/upb/message/message.h\nthird_party/protobuf/upb/message/promote.c\nthird_party/protobuf/upb/message/promote.h\nthird_party/protobuf/upb/message/promote_test.cc\nthird_party/protobuf/upb/message/tagged_ptr.h\nthird_party/protobuf/upb/message/test.cc\nthird_party/protobuf/upb/message/utf8_test.cc\nthird_party/protobuf/upb/message/value.h\nthird_party/protobuf/upb/mini_descriptor/build_enum.c\nthird_party/protobuf/upb/mini_descriptor/build_enum.h\nthird_party/protobuf/upb/mini_descriptor/decode.c\nthird_party/protobuf/upb/mini_descriptor/decode.h\nthird_party/protobuf/upb/mini_descriptor/internal/base92.c\nthird_party/protobuf/upb/mini_descriptor/internal/base92.h\nthird_party/protobuf/upb/mini_descriptor/internal/decoder.h\nthird_party/protobuf/upb/mini_descriptor/internal/encode.c\nthird_party/protobuf/upb/mini_descriptor/internal/encode.h\nthird_party/protobuf/upb/mini_descriptor/internal/encode.hpp\nthird_party/protobuf/upb/mini_descriptor/internal/encode_test.cc\nthird_party/protobuf/upb/mini_descriptor/internal/modifiers.h\nthird_party/protobuf/upb/mini_descriptor/internal/wire_constants.h\nthird_party/protobuf/upb/mini_descriptor/link.c\nthird_party/protobuf/upb/mini_descriptor/link.h\nthird_party/protobuf/upb/mini_table/compat.c\nthird_party/protobuf/upb/mini_table/compat.h\nthird_party/protobuf/upb/mini_table/compat_test.cc\nthird_party/protobuf/upb/mini_table/enum.h\nthird_party/protobuf/upb/mini_table/extension.h\nthird_party/protobuf/upb/mini_table/extension_registry.c\nthird_party/protobuf/upb/mini_table/extension_registry.h\nthird_party/protobuf/upb/mini_table/field.h\nthird_party/protobuf/upb/mini_table/file.h\nthird_party/protobuf/upb/mini_table/internal/enum.h\nthird_party/protobuf/upb/mini_table/internal/extension.h\nthird_party/protobuf/upb/mini_table/internal/field.h\nthird_party/protobuf/upb/mini_table/internal/file.h\nthird_party/protobuf/upb/mini_table/internal/message.c\nthird_party/protobuf/upb/mini_table/internal/message.h\nthird_party/protobuf/upb/mini_table/internal/size_log2.h\nthird_party/protobuf/upb/mini_table/internal/sub.h\nthird_party/protobuf/upb/mini_table/message.c\nthird_party/protobuf/upb/mini_table/message.h\nthird_party/protobuf/upb/mini_table/sub.h\nthird_party/protobuf/upb/port/atomic.h\nthird_party/protobuf/upb/port/sanitizers.h\nthird_party/protobuf/upb/port/vsnprintf_compat.h\nthird_party/protobuf/upb/reflection/common.h\nthird_party/protobuf/upb/reflection/def.h\nthird_party/protobuf/upb/reflection/def.hpp\nthird_party/protobuf/upb/reflection/def_pool.c\nthird_party/protobuf/upb/reflection/def_pool.h\nthird_party/protobuf/upb/reflection/def_type.c\nthird_party/protobuf/upb/reflection/def_type.h\nthird_party/protobuf/upb/reflection/desc_state.c\nthird_party/protobuf/upb/reflection/enum_def.c\nthird_party/protobuf/upb/reflection/enum_def.h\nthird_party/protobuf/upb/reflection/enum_reserved_range.c\nthird_party/protobuf/upb/reflection/enum_reserved_range.h\nthird_party/protobuf/upb/reflection/enum_value_def.c\nthird_party/protobuf/upb/reflection/enum_value_def.h\nthird_party/protobuf/upb/reflection/extension_range.c\nthird_party/protobuf/upb/reflection/extension_range.h\nthird_party/protobuf/upb/reflection/field_def.c\nthird_party/protobuf/upb/reflection/field_def.h\nthird_party/protobuf/upb/reflection/file_def.c\nthird_party/protobuf/upb/reflection/file_def.h\nthird_party/protobuf/upb/reflection/internal/def_builder.c\nthird_party/protobuf/upb/reflection/internal/def_builder.h\nthird_party/protobuf/upb/reflection/internal/def_builder_test.cc\nthird_party/protobuf/upb/reflection/internal/def_pool.h\nthird_party/protobuf/upb/reflection/internal/desc_state.h\nthird_party/protobuf/upb/reflection/internal/enum_def.h\nthird_party/protobuf/upb/reflection/internal/enum_reserved_range.h\nthird_party/protobuf/upb/reflection/internal/enum_value_def.h\nthird_party/protobuf/upb/reflection/internal/extension_range.h\nthird_party/protobuf/upb/reflection/internal/field_def.h\nthird_party/protobuf/upb/reflection/internal/file_def.h\nthird_party/protobuf/upb/reflection/internal/message_def.h\nthird_party/protobuf/upb/reflection/internal/message_reserved_range.h\nthird_party/protobuf/upb/reflection/internal/method_def.h\nthird_party/protobuf/upb/reflection/internal/oneof_def.h\nthird_party/protobuf/upb/reflection/internal/service_def.h\nthird_party/protobuf/upb/reflection/internal/strdup2.c\nthird_party/protobuf/upb/reflection/internal/strdup2.h\nthird_party/protobuf/upb/reflection/internal/upb_edition_defaults.h\nthird_party/protobuf/upb/reflection/message.c\nthird_party/protobuf/upb/reflection/message.h\nthird_party/protobuf/upb/reflection/message.hpp\nthird_party/protobuf/upb/reflection/message_def.c\nthird_party/protobuf/upb/reflection/message_def.h\nthird_party/protobuf/upb/reflection/message_reserved_range.c\nthird_party/protobuf/upb/reflection/message_reserved_range.h\nthird_party/protobuf/upb/reflection/method_def.c\nthird_party/protobuf/upb/reflection/method_def.h\nthird_party/protobuf/upb/reflection/oneof_def.c\nthird_party/protobuf/upb/reflection/oneof_def.h\nthird_party/protobuf/upb/reflection/service_def.c\nthird_party/protobuf/upb/reflection/service_def.h\nthird_party/protobuf/upb/test/editions_test.cc\nthird_party/protobuf/upb/test/fuzz_util.cc\nthird_party/protobuf/upb/test/fuzz_util.h\nthird_party/protobuf/upb/test/parse_text_proto.h\nthird_party/protobuf/upb/test/proto3_test.cc\nthird_party/protobuf/upb/test/test_cpp.cc\nthird_party/protobuf/upb/test/test_generated_code.cc\nthird_party/protobuf/upb/test/test_import_empty_srcs.cc\nthird_party/protobuf/upb/test/test_mini_table_oneof.cc\nthird_party/protobuf/upb/text/debug_string.c\nthird_party/protobuf/upb/text/debug_string.h\nthird_party/protobuf/upb/text/encode.c\nthird_party/protobuf/upb/text/encode.h\nthird_party/protobuf/upb/text/encode_debug_test.cc\nthird_party/protobuf/upb/text/internal/encode.c\nthird_party/protobuf/upb/text/internal/encode.h\nthird_party/protobuf/upb/text/options.h\nthird_party/protobuf/upb/util/def_to_proto.c\nthird_party/protobuf/upb/util/def_to_proto.h\nthird_party/protobuf/upb/util/def_to_proto_fuzz_test.cc\nthird_party/protobuf/upb/util/def_to_proto_test.cc\nthird_party/protobuf/upb/util/def_to_proto_test.h\nthird_party/protobuf/upb/util/required_fields.c\nthird_party/protobuf/upb/util/required_fields.h\nthird_party/protobuf/upb/util/required_fields_test.cc\nthird_party/protobuf/upb/wire/byte_size.c\nthird_party/protobuf/upb/wire/byte_size.h\nthird_party/protobuf/upb/wire/byte_size_test.cc\nthird_party/protobuf/upb/wire/decode.c\nthird_party/protobuf/upb/wire/decode.h\nthird_party/protobuf/upb/wire/decode_benchmark.cc\nthird_party/protobuf/upb/wire/decode_fast/cardinality.h\nthird_party/protobuf/upb/wire/decode_fast/combinations.h\nthird_party/protobuf/upb/wire/decode_fast/data.h\nthird_party/protobuf/upb/wire/decode_fast/dispatch.c\nthird_party/protobuf/upb/wire/decode_fast/dispatch.h\nthird_party/protobuf/upb/wire/decode_fast/field_fixed.c\nthird_party/protobuf/upb/wire/decode_fast/field_message.c\nthird_party/protobuf/upb/wire/decode_fast/field_parsers.h\nthird_party/protobuf/upb/wire/decode_fast/field_string.c\nthird_party/protobuf/upb/wire/decode_fast/field_varint.c\nthird_party/protobuf/upb/wire/decode_fast/function_array.c\nthird_party/protobuf/upb/wire/decode_fast/function_array.h\nthird_party/protobuf/upb/wire/decode_fast/select.c\nthird_party/protobuf/upb/wire/decode_fast/select.h\nthird_party/protobuf/upb/wire/decode_test.cc\nthird_party/protobuf/upb/wire/encode.c\nthird_party/protobuf/upb/wire/encode.h\nthird_party/protobuf/upb/wire/eps_copy_input_stream.c\nthird_party/protobuf/upb/wire/eps_copy_input_stream.h\nthird_party/protobuf/upb/wire/eps_copy_input_stream_test.cc\nthird_party/protobuf/upb/wire/internal/constants.h\nthird_party/protobuf/upb/wire/internal/decoder.c\nthird_party/protobuf/upb/wire/internal/decoder.h\nthird_party/protobuf/upb/wire/internal/reader.h\nthird_party/protobuf/upb/wire/reader.c\nthird_party/protobuf/upb/wire/reader.h\nthird_party/protobuf/upb/wire/test_util/field_types.h\nthird_party/protobuf/upb/wire/test_util/make_mini_table.cc\nthird_party/protobuf/upb/wire/test_util/make_mini_table.h\nthird_party/protobuf/upb/wire/test_util/wire_message.cc\nthird_party/protobuf/upb/wire/test_util/wire_message.h\nthird_party/protobuf/upb/wire/types.h\nthird_party/protobuf/upb_generator/c/generator.cc\nthird_party/protobuf/upb_generator/c/names.cc\nthird_party/protobuf/upb_generator/c/names.h\nthird_party/protobuf/upb_generator/c/names_internal.cc\nthird_party/protobuf/upb_generator/c/names_internal.h\nthird_party/protobuf/upb_generator/common.cc\nthird_party/protobuf/upb_generator/common.h\nthird_party/protobuf/upb_generator/common/cpp_to_upb_def.cc\nthird_party/protobuf/upb_generator/common/cpp_to_upb_def.h\nthird_party/protobuf/upb_generator/common/names.cc\nthird_party/protobuf/upb_generator/common/names.h\nthird_party/protobuf/upb_generator/file_layout.cc\nthird_party/protobuf/upb_generator/file_layout.h\nthird_party/protobuf/upb_generator/minitable/generator.cc\nthird_party/protobuf/upb_generator/minitable/generator.h\nthird_party/protobuf/upb_generator/minitable/main.cc\nthird_party/protobuf/upb_generator/minitable/names.cc\nthird_party/protobuf/upb_generator/minitable/names.h\nthird_party/protobuf/upb_generator/minitable/names_internal.cc\nthird_party/protobuf/upb_generator/minitable/names_internal.h\nthird_party/protobuf/upb_generator/plugin.cc\nthird_party/protobuf/upb_generator/plugin.h\nthird_party/protobuf/upb_generator/reflection/context.h\nthird_party/protobuf/upb_generator/reflection/generator.cc\nthird_party/protobuf/upb_generator/reflection/header.cc\nthird_party/protobuf/upb_generator/reflection/header.h\nthird_party/protobuf/upb_generator/reflection/names.cc\nthird_party/protobuf/upb_generator/reflection/names.h\nthird_party/protobuf/upb_generator/reflection/source.cc\nthird_party/protobuf/upb_generator/reflection/source.h\nthird_party/pthreadpool/chromium/jobs.cc\nthird_party/pycoverage/coverage/htmlfiles/pyfile.html\nthird_party/pyelftools/elftools/__init__.py\nthird_party/pyelftools/elftools/common/construct_utils.py\nthird_party/pyelftools/elftools/common/exceptions.py\nthird_party/pyelftools/elftools/common/py3compat.py\nthird_party/pyelftools/elftools/common/utils.py\nthird_party/pyelftools/elftools/construct/__init__.py\nthird_party/pyelftools/elftools/dwarf/abbrevtable.py\nthird_party/pyelftools/elftools/dwarf/callframe.py\nthird_party/pyelftools/elftools/dwarf/compileunit.py\nthird_party/pyelftools/elftools/dwarf/constants.py\nthird_party/pyelftools/elftools/dwarf/descriptions.py\nthird_party/pyelftools/elftools/dwarf/die.py\nthird_party/pyelftools/elftools/dwarf/dwarf_expr.py\nthird_party/pyelftools/elftools/dwarf/dwarfinfo.py\nthird_party/pyelftools/elftools/dwarf/enums.py\nthird_party/pyelftools/elftools/dwarf/lineprogram.py\nthird_party/pyelftools/elftools/dwarf/locationlists.py\nthird_party/pyelftools/elftools/dwarf/ranges.py\nthird_party/pyelftools/elftools/dwarf/structs.py\nthird_party/pyelftools/elftools/elf/constants.py\nthird_party/pyelftools/elftools/elf/descriptions.py\nthird_party/pyelftools/elftools/elf/elffile.py\nthird_party/pyelftools/elftools/elf/enums.py\nthird_party/pyelftools/elftools/elf/relocation.py\nthird_party/pyelftools/elftools/elf/sections.py\nthird_party/pyelftools/elftools/elf/segments.py\nthird_party/pyelftools/elftools/elf/structs.py\nthird_party/pyelftools/examples/dwarf_decode_address.py\nthird_party/pyelftools/examples/dwarf_die_tree.py\nthird_party/pyelftools/examples/dwarf_location_lists.py\nthird_party/pyelftools/examples/dwarf_range_lists.py\nthird_party/pyelftools/examples/elf_low_high_api.py\nthird_party/pyelftools/examples/elf_relocations.py\nthird_party/pyelftools/examples/elf_show_debug_sections.py\nthird_party/pyelftools/examples/elfclass_address_size.py\nthird_party/pyelftools/examples/examine_dwarf_info.py\nthird_party/pyelftools/scripts/readelf.py\nthird_party/pyelftools/setup.py\nthird_party/pyelftools/test/all_tests.py\nthird_party/pyelftools/test/external_tools/elf_creator.c\nthird_party/pyelftools/test/run_all_unittests.py\nthird_party/pyelftools/test/run_examples_test.py\nthird_party/pyelftools/test/run_readelf_tests.py\nthird_party/pyelftools/test/test_arm_support.py\nthird_party/pyelftools/test/test_callframe.py\nthird_party/pyelftools/test/test_dwarf_expr.py\nthird_party/pyelftools/test/test_dwarf_lineprogram.py\nthird_party/pyelftools/test/test_dwarf_range_lists.py\nthird_party/pyelftools/test/test_dwarf_structs.py\nthird_party/pyelftools/test/test_dynamic.py\nthird_party/pyelftools/test/test_elffile.py\nthird_party/pyelftools/test/test_utils.py\nthird_party/pyelftools/test/utils.py\nthird_party/pyelftools/z.py\nthird_party/pyjson5/src/benchmarks/chromium.linux.json\nthird_party/pyjson5/src/setup.py\nthird_party/pywebsocket3/src/setup.py\nthird_party/pywebsocket3/src/test/test_handshake_hybi.py\nthird_party/r8/3pp/3pp.py\nthird_party/re2/src/.bcr/metadata.template.json\nthird_party/re2/src/CMakeLists.txt\nthird_party/re2/src/python/setup.py\nthird_party/re2/src/re2/testing/re2_test.cc\nthird_party/re2/src/util/pcre.h\nthird_party/readability/modded_src/Readability-readerable.js\nthird_party/readability/modded_src/Readability.js\nthird_party/readability/src/.prettierrc.js\nthird_party/readability/src/JSDOMParser.js\nthird_party/readability/src/Readability-readerable.js\nthird_party/readability/src/Readability.js\nthird_party/readability/src/test/test-pages/001/source.html\nthird_party/readability/src/test/test-pages/002/expected.html\nthird_party/readability/src/test/test-pages/002/source.html\nthird_party/readability/src/test/test-pages/aclu/expected.html\nthird_party/readability/src/test/test-pages/aclu/source.html\nthird_party/readability/src/test/test-pages/aktualne/source.html\nthird_party/readability/src/test/test-pages/ars-1/source.html\nthird_party/readability/src/test/test-pages/article-author-tag/expected.html\nthird_party/readability/src/test/test-pages/article-author-tag/source.html\nthird_party/readability/src/test/test-pages/bbc-1/source.html\nthird_party/readability/src/test/test-pages/blogger/source.html\nthird_party/readability/src/test/test-pages/breitbart/source.html\nthird_party/readability/src/test/test-pages/bug-1255978/source.html\nthird_party/readability/src/test/test-pages/buzzfeed-1/source.html\nthird_party/readability/src/test/test-pages/citylab-1/source.html\nthird_party/readability/src/test/test-pages/cnet-svg-classes/source.html\nthird_party/readability/src/test/test-pages/cnet/source.html\nthird_party/readability/src/test/test-pages/cnn/source.html\nthird_party/readability/src/test/test-pages/daringfireball-1/source.html\nthird_party/readability/src/test/test-pages/dropbox-blog/source.html\nthird_party/readability/src/test/test-pages/ehow-1/source.html\nthird_party/readability/src/test/test-pages/ehow-2/expected.html\nthird_party/readability/src/test/test-pages/ehow-2/source.html\nthird_party/readability/src/test/test-pages/embedded-videos/expected.html\nthird_party/readability/src/test/test-pages/embedded-videos/source.html\nthird_party/readability/src/test/test-pages/engadget/expected.html\nthird_party/readability/src/test/test-pages/engadget/source.html\nthird_party/readability/src/test/test-pages/firefox-nightly-blog/expected.html\nthird_party/readability/src/test/test-pages/firefox-nightly-blog/source.html\nthird_party/readability/src/test/test-pages/gitlab-blog/source.html\nthird_party/readability/src/test/test-pages/gmw/source.html\nthird_party/readability/src/test/test-pages/google-sre-book-1/source.html\nthird_party/readability/src/test/test-pages/guardian-1/source.html\nthird_party/readability/src/test/test-pages/heise/source.html\nthird_party/readability/src/test/test-pages/herald-sun-1/source.html\nthird_party/readability/src/test/test-pages/hukumusume/source.html\nthird_party/readability/src/test/test-pages/iab-1/source.html\nthird_party/readability/src/test/test-pages/ietf-1/expected.html\nthird_party/readability/src/test/test-pages/ietf-1/source.html\nthird_party/readability/src/test/test-pages/keep-images/expected.html\nthird_party/readability/src/test/test-pages/keep-images/source.html\nthird_party/readability/src/test/test-pages/keep-tabular-data/expected.html\nthird_party/readability/src/test/test-pages/keep-tabular-data/source.html\nthird_party/readability/src/test/test-pages/la-nacion/source.html\nthird_party/readability/src/test/test-pages/lazy-image-1/source.html\nthird_party/readability/src/test/test-pages/lazy-image-2/source.html\nthird_party/readability/src/test/test-pages/lemonde-1/source.html\nthird_party/readability/src/test/test-pages/liberation-1/source.html\nthird_party/readability/src/test/test-pages/lifehacker-post-comment-load/source.html\nthird_party/readability/src/test/test-pages/lifehacker-working/source.html\nthird_party/readability/src/test/test-pages/links-in-tables/expected.html\nthird_party/readability/src/test/test-pages/links-in-tables/source.html\nthird_party/readability/src/test/test-pages/lwn-1/source.html\nthird_party/readability/src/test/test-pages/medicalnewstoday/source.html\nthird_party/readability/src/test/test-pages/medium-1/expected.html\nthird_party/readability/src/test/test-pages/medium-1/source.html\nthird_party/readability/src/test/test-pages/medium-2/expected.html\nthird_party/readability/src/test/test-pages/medium-2/source.html\nthird_party/readability/src/test/test-pages/medium-3/source.html\nthird_party/readability/src/test/test-pages/mozilla-1/expected.html\nthird_party/readability/src/test/test-pages/mozilla-1/source.html\nthird_party/readability/src/test/test-pages/mozilla-2/expected.html\nthird_party/readability/src/test/test-pages/mozilla-2/source.html\nthird_party/readability/src/test/test-pages/msn/expected.html\nthird_party/readability/src/test/test-pages/msn/source.html\nthird_party/readability/src/test/test-pages/nytimes-1/source.html\nthird_party/readability/src/test/test-pages/nytimes-2/source.html\nthird_party/readability/src/test/test-pages/nytimes-3/expected.html\nthird_party/readability/src/test/test-pages/nytimes-3/source.html\nthird_party/readability/src/test/test-pages/nytimes-4/source.html\nthird_party/readability/src/test/test-pages/nytimes-5/source.html\nthird_party/readability/src/test/test-pages/pixnet/expected.html\nthird_party/readability/src/test/test-pages/pixnet/source.html\nthird_party/readability/src/test/test-pages/quanta-1/source.html\nthird_party/readability/src/test/test-pages/royal-road/source.html\nthird_party/readability/src/test/test-pages/salon-1/source.html\nthird_party/readability/src/test/test-pages/schema-org-context-object/source.html\nthird_party/readability/src/test/test-pages/seattletimes-1/source.html\nthird_party/readability/src/test/test-pages/simplyfound-1/source.html\nthird_party/readability/src/test/test-pages/spiceworks/source.html\nthird_party/readability/src/test/test-pages/telegraph/source.html\nthird_party/readability/src/test/test-pages/theverge/source.html\nthird_party/readability/src/test/test-pages/tmz-1/source.html\nthird_party/readability/src/test/test-pages/toc-missing/source.html\nthird_party/readability/src/test/test-pages/topicseed-1/source.html\nthird_party/readability/src/test/test-pages/tumblr/source.html\nthird_party/readability/src/test/test-pages/v8-blog/expected.html\nthird_party/readability/src/test/test-pages/v8-blog/source.html\nthird_party/readability/src/test/test-pages/videos-1/expected.html\nthird_party/readability/src/test/test-pages/videos-1/source.html\nthird_party/readability/src/test/test-pages/videos-2/expected.html\nthird_party/readability/src/test/test-pages/videos-2/source.html\nthird_party/readability/src/test/test-pages/wapo-1/source.html\nthird_party/readability/src/test/test-pages/wapo-2/source.html\nthird_party/readability/src/test/test-pages/webmd-1/source.html\nthird_party/readability/src/test/test-pages/webmd-2/source.html\nthird_party/readability/src/test/test-pages/wikia/source.html\nthird_party/readability/src/test/test-pages/wikipedia-2/expected.html\nthird_party/readability/src/test/test-pages/wikipedia-2/source.html\nthird_party/readability/src/test/test-pages/wikipedia-3/expected.html\nthird_party/readability/src/test/test-pages/wikipedia-3/source.html\nthird_party/readability/src/test/test-pages/wikipedia-4/expected.html\nthird_party/readability/src/test/test-pages/wikipedia-4/source.html\nthird_party/readability/src/test/test-pages/wikipedia/expected.html\nthird_party/readability/src/test/test-pages/wikipedia/source.html\nthird_party/readability/src/test/test-pages/wordpress/source.html\nthird_party/readability/src/test/test-pages/yahoo-1/expected.html\nthird_party/readability/src/test/test-pages/yahoo-1/source.html\nthird_party/readability/src/test/test-pages/yahoo-2/source.html\nthird_party/readability/src/test/test-pages/yahoo-3/source.html\nthird_party/readability/src/test/test-pages/yahoo-4/source.html\nthird_party/readability/test_extension/viewer.html\nthird_party/rust/PRESUBMIT.py\nthird_party/rust/adler2/v2/BUILD.gn\nthird_party/rust/antlr4rust/v0_5/BUILD.gn\nthird_party/rust/anyhow/v1/BUILD.gn\nthird_party/rust/array_init/v2/BUILD.gn\nthird_party/rust/autocfg/v1/BUILD.gn\nthird_party/rust/better_any/v0_2/BUILD.gn\nthird_party/rust/bit_set/v0_8/BUILD.gn\nthird_party/rust/bit_vec/v0_8/BUILD.gn\nthird_party/rust/bytemuck/v1/BUILD.gn\nthird_party/rust/bytemuck_derive/v1/BUILD.gn\nthird_party/rust/byteorder/v1/BUILD.gn\nthird_party/rust/chromium_crates_io/PRESUBMIT.py\nthird_party/rust/chromium_crates_io/crate_utils.py\nthird_party/rust/chromium_crates_io/vendor/cxx-v1/.bcr/metadata.template.json\nthird_party/rust/cxx/v1/BUILD.gn\nthird_party/rust/cxxbridge_cmd/v1/BUILD.gn\nthird_party/rust/cxxbridge_flags/v1/BUILD.gn\nthird_party/rust/cxxbridge_macro/v1/BUILD.gn\nthird_party/rust/diplomat/v0_14/BUILD.gn\nthird_party/rust/diplomat_core/v0_14/BUILD.gn\nthird_party/rust/diplomat_runtime/v0_14/BUILD.gn\nthird_party/rust/foldhash/v0_2/BUILD.gn\nthird_party/rust/hashbrown/v0_15/BUILD.gn\nthird_party/rust/hashbrown/v0_16/BUILD.gn\nthird_party/rust/itoa/v1/BUILD.gn\nthird_party/rust/jxl/v0_3/BUILD.gn\nthird_party/rust/jxl_macros/v0_3/BUILD.gn\nthird_party/rust/jxl_simd/v0_3/BUILD.gn\nthird_party/rust/jxl_transforms/v0_3/BUILD.gn\nthird_party/rust/lazy_static/v1/BUILD.gn\nthird_party/rust/libm/v0_2/BUILD.gn\nthird_party/rust/lock_api/v0_4/BUILD.gn\nthird_party/rust/memchr/v2/BUILD.gn\nthird_party/rust/miniz_oxide/v0_8/BUILD.gn\nthird_party/rust/murmur3/v0_4/BUILD.gn\nthird_party/rust/once_cell/v1/BUILD.gn\nthird_party/rust/ordered_float/v5/BUILD.gn\nthird_party/rust/parking_lot/v0_12/BUILD.gn\nthird_party/rust/parking_lot_core/v0_9/BUILD.gn\nthird_party/rust/proc_macro2/v1/BUILD.gn\nthird_party/rust/proc_macro_error2/v2/BUILD.gn\nthird_party/rust/proc_macro_error_attr2/v2/BUILD.gn\nthird_party/rust/prost/v0_14/BUILD.gn\nthird_party/rust/prost_derive/v0_14/BUILD.gn\nthird_party/rust/qr_code/v2/BUILD.gn\nthird_party/rust/quote/v1/BUILD.gn\nthird_party/rust/regex_automata/v0_4/BUILD.gn\nthird_party/rust/regex_syntax/v0_8/BUILD.gn\nthird_party/rust/rustc_demangle_capi/v0_1/BUILD.gn\nthird_party/rust/rustversion/v1/BUILD.gn\nthird_party/rust/ryu/v1/BUILD.gn\nthird_party/rust/serde/v1/BUILD.gn\nthird_party/rust/serde_core/v1/BUILD.gn\nthird_party/rust/serde_derive/v1/BUILD.gn\nthird_party/rust/serde_json/v1/BUILD.gn\nthird_party/rust/serde_json_lenient/v0_2/BUILD.gn\nthird_party/rust/stable_deref_trait/v1/BUILD.gn\nthird_party/rust/strck/v1/BUILD.gn\nthird_party/rust/strum/v0_27/BUILD.gn\nthird_party/rust/strum_macros/v0_27/BUILD.gn\nthird_party/rust/symphonia/v0_5/BUILD.gn\nthird_party/rust/symphonia_bundle_flac/v0_5/BUILD.gn\nthird_party/rust/symphonia_bundle_mp3/v0_5/BUILD.gn\nthird_party/rust/symphonia_codec_pcm/v0_5/BUILD.gn\nthird_party/rust/symphonia_core/v0_5/BUILD.gn\nthird_party/rust/symphonia_metadata/v0_5/BUILD.gn\nthird_party/rust/symphonia_utils_xiph/v0_5/BUILD.gn\nthird_party/rust/syn/v2/BUILD.gn\nthird_party/rust/termcolor/v1/BUILD.gn\nthird_party/rust/thiserror/v2/BUILD.gn\nthird_party/rust/thiserror_impl/v2/BUILD.gn\nthird_party/rust/unicode_ident/v1/BUILD.gn\nthird_party/rust/unicode_width/v0_2/BUILD.gn\nthird_party/rust/uuid/v1/BUILD.gn\nthird_party/rust/winapi_util/v0_1/BUILD.gn\nthird_party/rust/yoke/v0_8/BUILD.gn\nthird_party/rust/yoke_derive/v0_8/BUILD.gn\nthird_party/rust/zerofrom/v0_1/BUILD.gn\nthird_party/rust/zerofrom_derive/v0_1/BUILD.gn\nthird_party/rust/zerovec_derive/v0_11/BUILD.gn\nthird_party/rust/zip/v7/BUILD.gn\nthird_party/rust/zmij/v1/BUILD.gn\nthird_party/s2cellid/src/s2/_fpcontractoff.h\nthird_party/s2cellid/src/s2/r1interval.h\nthird_party/s2cellid/src/s2/r2.h\nthird_party/s2cellid/src/s2/r2rect.cc\nthird_party/s2cellid/src/s2/r2rect.h\nthird_party/s2cellid/src/s2/s1angle.cc\nthird_party/s2cellid/src/s2/s1angle.h\nthird_party/s2cellid/src/s2/s2cellid.cc\nthird_party/s2cellid/src/s2/s2cellid.h\nthird_party/s2cellid/src/s2/s2coords-internal.h\nthird_party/s2cellid/src/s2/s2coords.cc\nthird_party/s2cellid/src/s2/s2coords.h\nthird_party/s2cellid/src/s2/s2latlng.cc\nthird_party/s2cellid/src/s2/s2latlng.h\nthird_party/s2cellid/src/s2/s2point.h\nthird_party/sentencepiece/src/CMakeLists.txt\nthird_party/shell-encryption/BUILD.gn\nthird_party/simplejson/ordered_dict.py\nthird_party/skia/PRESUBMIT.py\nthird_party/skia/bazel/deps.json\nthird_party/skia/bench/DashBench.cpp\nthird_party/skia/bench/DecodeBench.cpp\nthird_party/skia/build_overrides/partition_alloc.gni\nthird_party/skia/demos.skia.org/demos/image_decode_web_worker/index.html\nthird_party/skia/demos.skia.org/demos/mesh2d/index.html\nthird_party/skia/demos.skia.org/demos/path_performance/index.html\nthird_party/skia/demos.skia.org/demos/web_worker/index.html\nthird_party/skia/demos.skia.org/demos/webgpu/index.html\nthird_party/skia/example/external_client/src/ganesh_gl.cpp\nthird_party/skia/example/external_client/src/gl_context_helper.mm\nthird_party/skia/experimental/tools/pdf-comparison.py\nthird_party/skia/fuzz/FuzzPathop.cpp\nthird_party/skia/gm/addarc.cpp\nthird_party/skia/gm/annotated_text.cpp\nthird_party/skia/gm/bitmapshader.cpp\nthird_party/skia/gm/crbug_224618.cpp\nthird_party/skia/gm/dashcubics.cpp\nthird_party/skia/gm/gradients.cpp\nthird_party/skia/gm/labyrinth.cpp\nthird_party/skia/gm/mandoline.cpp\nthird_party/skia/gm/pictureshader.cpp\nthird_party/skia/gm/postercircle.cpp\nthird_party/skia/gm/smallarc.cpp\nthird_party/skia/gm/smallpaths.cpp\nthird_party/skia/gm/stringart.cpp\nthird_party/skia/gm/strokerect.cpp\nthird_party/skia/gm/strokes.cpp\nthird_party/skia/gm/stroketext.cpp\nthird_party/skia/gn/gn_to_bp.py\nthird_party/skia/gn/skia/BUILD.gn\nthird_party/skia/include/core/SkColorSpace.h\nthird_party/skia/include/ports/SkImageGeneratorWIC.h\nthird_party/skia/include/ports/SkTypeface_mac.h\nthird_party/skia/include/private/SkGainmapInfo.h\nthird_party/skia/infra/bots/assets/android_ndk_darwin/create.py\nthird_party/skia/infra/bots/assets/android_ndk_linux/create.py\nthird_party/skia/infra/bots/assets/android_ndk_windows/create.py\nthird_party/skia/infra/bots/assets/clang_mac_arm/create.py\nthird_party/skia/infra/bots/assets/clang_mac_intel/create.py\nthird_party/skia/infra/bots/assets/clang_win/create.py\nthird_party/skia/infra/bots/assets/gcloud_linux/create.py\nthird_party/skia/infra/bots/assets/gsutil/create.py\nthird_party/skia/infra/bots/assets/skparagraph/create.py\nthird_party/skia/infra/bots/check_deps.py\nthird_party/skia/infra/bots/git_utils.py\nthird_party/skia/infra/bots/recipe_modules/build/api.py\nthird_party/skia/infra/bots/recipe_modules/build/default.py\nthird_party/skia/infra/bots/recipe_modules/build/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/checkout/api.py\nthird_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/Build-Debian10-Clang-x86_64-Release-NoDEPS.json\nthird_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/cross_repo_trybot.json\nthird_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/trybot.json\nthird_party/skia/infra/bots/recipe_modules/checkout/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/doxygen/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-ChromeOS-Clang-Cherry-GPU-MaliG57-arm-Debug-All.json\nthird_party/skia/infra/bots/recipe_modules/flavor/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/flavor/ssh.py\nthird_party/skia/infra/bots/recipe_modules/gold_upload/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/gsutil/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/infra/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/run/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/vars/examples/full.py\nthird_party/skia/infra/bots/recipe_modules/xcode/api.py\nthird_party/skia/infra/bots/recipe_modules/xcode/examples/full.py\nthird_party/skia/infra/bots/recipes.py\nthird_party/skia/infra/bots/recipes/compile.py\nthird_party/skia/infra/bots/recipes/compute_buildstats.expected/normal_bot.json\nthird_party/skia/infra/bots/recipes/compute_buildstats.expected/trybot.json\nthird_party/skia/infra/bots/recipes/compute_buildstats.py\nthird_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json\nthird_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json\nthird_party/skia/infra/bots/recipes/housekeeper.py\nthird_party/skia/infra/bots/recipes/infra.py\nthird_party/skia/infra/bots/recipes/perf_skottietrace.py\nthird_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.py\nthird_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Debian10-Clang-arm-Release-NoPatch (tryjob).json\nthird_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Debian10-Clang-arm-Release-NoPatch.json\nthird_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Win10-Clang-x86_64-Release-NoDEPS.json\nthird_party/skia/infra/bots/recipes/sync_and_compile.py\nthird_party/skia/infra/bots/recipes/test.py\nthird_party/skia/infra/bots/recipes/test_canvaskit.py\nthird_party/skia/infra/bots/recipes/test_lottie_web.py\nthird_party/skia/infra/bots/recipes/upload_buildstats_results.py\nthird_party/skia/infra/bots/recipes/upload_dm_results.py\nthird_party/skia/infra/bots/recipes/upload_nano_results.py\nthird_party/skia/infra/bots/run_recipe.py\nthird_party/skia/infra/bots/tasks.json\nthird_party/skia/infra/bots/utils.py\nthird_party/skia/modules/canvaskit/htmlcanvas/canvas2dcontext.js\nthird_party/skia/modules/canvaskit/htmlcanvas/font.js\nthird_party/skia/modules/canvaskit/htmlcanvas/path2d.js\nthird_party/skia/modules/canvaskit/interface.js\nthird_party/skia/modules/canvaskit/npm_build/package.json\nthird_party/skia/modules/canvaskit/npm_build/paragraphs.html\nthird_party/skia/modules/canvaskit/npm_build/types/index.d.ts\nthird_party/skia/modules/canvaskit/tests/canvas_test.js\nthird_party/skia/modules/canvaskit/tests/core_test.js\nthird_party/skia/modules/canvaskit/tests/font_test.js\nthird_party/skia/modules/canvaskit/tests/skottie_test.js\nthird_party/skia/modules/canvaskit/webgl.js\nthird_party/skia/modules/skcms/src/skcms_public.h\nthird_party/skia/modules/skottie/src/effects/SkSLEffect.cpp\nthird_party/skia/modules/skottie/src/layers/TextLayer.cpp\nthird_party/skia/modules/skunicode/BUILD.gn\nthird_party/skia/modules/skunicode/src/SkUnicode_icu.cpp\nthird_party/skia/modules/svg/src/SkSVGOpenTypeSVGDecoder.cpp\nthird_party/skia/platform_tools/android/tradefed/upload_dm_results.py\nthird_party/skia/platform_tools/libraries/include/arcore_c_api.h\nthird_party/skia/resources/skottie/skottie-line-height.json\nthird_party/skia/resources/skottie/skottie-text-pointmode-downscaletofit.json\nthird_party/skia/resources/skottie/skottie-text-pointmode-scaletofit.json\nthird_party/skia/resources/skottie/skottie-text-resize-to-fit.json\nthird_party/skia/resources/skottie/skottie-text-valign-bottom.json\nthird_party/skia/resources/skottie/skottie-text-valign.json\nthird_party/skia/resources/skottie/skottie_sample_webfont.json\nthird_party/skia/resources/sksl/es2_conformance/import_conformance_tests.py\nthird_party/skia/site/about/_index.html\nthird_party/skia/specs/web-img-decode/proposed/impl/impl.js\nthird_party/skia/src/base/SkLeanWindows.h\nthird_party/skia/src/codec/SkCodec.cpp\nthird_party/skia/src/codec/SkCrabbyAvifCodec.cpp\nthird_party/skia/src/codec/SkPngRustCodec.cpp\nthird_party/skia/src/codec/SkWebpCodec.cpp\nthird_party/skia/src/codec/SkWuffsCodec.cpp\nthird_party/skia/src/codec/SkXmp.cpp\nthird_party/skia/src/core/SkEdge.cpp\nthird_party/skia/src/core/SkGeometry.cpp\nthird_party/skia/src/core/SkGeometry.h\nthird_party/skia/src/core/SkMaskGamma.cpp\nthird_party/skia/src/core/SkMipmap.cpp\nthird_party/skia/src/core/SkPicturePriv.h\nthird_party/skia/src/core/SkPoint3.cpp\nthird_party/skia/src/core/SkRasterPipelineOpList.h\nthird_party/skia/src/core/SkRecordDraw.cpp\nthird_party/skia/src/core/SkRecordOpts.cpp\nthird_party/skia/src/encode/SkJpegGainmapEncoder.cpp\nthird_party/skia/src/encode/SkWebpEncoderImpl.cpp\nthird_party/skia/src/gpu/ganesh/GrRenderTask.h\nthird_party/skia/src/gpu/ganesh/GrShaderCaps.h\nthird_party/skia/src/gpu/ganesh/d3d/GrD3DCaps.cpp\nthird_party/skia/src/gpu/ganesh/effects/GrDisableColorXP.cpp\nthird_party/skia/src/gpu/ganesh/gl/AHardwareBufferGL.cpp\nthird_party/skia/src/gpu/ganesh/gl/GrGLCaps.cpp\nthird_party/skia/src/gpu/ganesh/gl/GrGLCaps.h\nthird_party/skia/src/gpu/ganesh/gl/GrGLGpu.cpp\nthird_party/skia/src/gpu/ganesh/vk/GrVkCaps.cpp\nthird_party/skia/src/gpu/graphite/Device.cpp\nthird_party/skia/src/gpu/graphite/dawn/DawnCommandBuffer.cpp\nthird_party/skia/src/gpu/graphite/dawn/DawnResourceProvider.cpp\nthird_party/skia/src/gpu/graphite/render/AnalyticRRectRenderStep.cpp\nthird_party/skia/src/gpu/graphite/render/PerEdgeAAQuadRenderStep.cpp\nthird_party/skia/src/gpu/graphite/surface/Surface_AndroidFactories.cpp\nthird_party/skia/src/gpu/tessellate/Tessellation.cpp\nthird_party/skia/src/opts/SkRasterPipeline_opts.h\nthird_party/skia/src/pathops/SkOpAngle.cpp\nthird_party/skia/src/pathops/SkPathOpsOp.cpp\nthird_party/skia/src/pdf/SkPDFFont.cpp\nthird_party/skia/src/ports/SkFontHost_FreeType.cpp\nthird_party/skia/src/ports/SkFontHost_FreeType_common.cpp\nthird_party/skia/src/ports/SkFontHost_win.cpp\nthird_party/skia/src/ports/SkFontMgr_android_ndk.cpp\nthird_party/skia/src/ports/SkFontMgr_mac_ct.cpp\nthird_party/skia/src/ports/SkScalerContext_mac_ct.cpp\nthird_party/skia/src/ports/SkScalerContext_win_dw.cpp\nthird_party/skia/src/ports/SkTypeface_fontations.cpp\nthird_party/skia/src/ports/SkTypeface_mac_ct.cpp\nthird_party/skia/src/sksl/SkSLModule.h\nthird_party/skia/src/sksl/SkSLModuleLoader.h\nthird_party/skia/src/sksl/analysis/SkSLSpecialization.h\nthird_party/skia/src/sksl/codegen/SkSLRasterPipelineCodeGenerator.h\nthird_party/skia/src/utils/SkFloatToDecimal.cpp\nthird_party/skia/src/utils/SkFloatUtils.h\nthird_party/skia/tests/AAClipTest.cpp\nthird_party/skia/tests/BitmapTest.cpp\nthird_party/skia/tests/BlurTest.cpp\nthird_party/skia/tests/CanvasTest.cpp\nthird_party/skia/tests/ClipperTest.cpp\nthird_party/skia/tests/CodecTest.cpp\nthird_party/skia/tests/ColorPrivTest.cpp\nthird_party/skia/tests/CtsEnforcement.h\nthird_party/skia/tests/DrawPathTest.cpp\nthird_party/skia/tests/DrawTextTest.cpp\nthird_party/skia/tests/GradientTest.cpp\nthird_party/skia/tests/ImageGeneratorTest.cpp\nthird_party/skia/tests/PDFPrimitivesTest.cpp\nthird_party/skia/tests/PDFTaggedLinkTest.cpp\nthird_party/skia/tests/PathOpsAsWindingTest.cpp\nthird_party/skia/tests/PathTest.cpp\nthird_party/skia/tests/RecordingXfermodeTest.cpp\nthird_party/skia/tests/RegionTest.cpp\nthird_party/skia/tests/SkXmpTest.cpp\nthird_party/skia/tests/StringTest.cpp\nthird_party/skia/tests/TriangulatingPathRendererTests.cpp\nthird_party/skia/tests/TypefaceTest.cpp\nthird_party/skia/third_party/dawn/BUILD.gn\nthird_party/skia/third_party/dawn/build_dawn.py\nthird_party/skia/third_party/etc1/etc1.cpp\nthird_party/skia/third_party/etc1/etc1.h\nthird_party/skia/third_party/freetype2/include/freetype-android/freetype/config/ftoption.h\nthird_party/skia/third_party/freetype2/include/freetype-no-type1/freetype/config/ftoption.h\nthird_party/skia/third_party/icu_bidi/BUILD.gn\nthird_party/skia/tools/abandon_gerrit_cls.py\nthird_party/skia/tools/bloaty_treemap.py\nthird_party/skia/tools/copyright/main.py\nthird_party/skia/tools/flags/CommandLineFlags.h\nthird_party/skia/tools/gpu/vk/VkTestMemoryAllocator.h\nthird_party/skia/tools/perf-canvaskit-puppeteer/canvas_perf.js\nthird_party/skia/tools/run-wasm-gm-tests/run-wasm-gm-tests.html\nthird_party/skia/tools/skia-client-search.html\nthird_party/skia/tools/skp/generate_page_set.py\nthird_party/skia/tools/skp/page_sets/other/OLD-skia_desktop_set.json\nthird_party/skia/tools/skp/page_sets/other/OLD-skia_nexus10_set.json\nthird_party/skia/tools/skp/page_sets/skia_css3gradients_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_facebook_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_facebook_mobile.py\nthird_party/skia/tools/skp/page_sets/skia_gmail_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_googlecalendar_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_googledocs_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_googleimagesearch_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_googlenews_mobile.py\nthird_party/skia/tools/skp/page_sets/skia_googlesearch_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_googlespreadsheet_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_micrographygirlsvg_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_motionmarkarcs_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_motionmarkpaths_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_motionmarksuits_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_motionmarksuitsclip_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_mozilla_tablet.py\nthird_party/skia/tools/skp/page_sets/skia_tiger8svg_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_ynevsvg_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_youtube_desktop.py\nthird_party/skia/tools/skp/page_sets/skia_youtube_mobile.py\nthird_party/skia/tools/skp/webpages_playback.py\nthird_party/skia/tools/skpbench/_hardware_android.py\nthird_party/skia/tools/skpbench/_hardware_pixel.py\nthird_party/skia/tools/skpbench/_hardware_pixel_c.py\nthird_party/skia/tools/skpbench/sheet.py\nthird_party/skia/tools/skqp/src/skqp.cpp\nthird_party/skia/tools/skqp/src/skqp_GpuTestProcs.cpp\nthird_party/skia/tools/viewer/ClockSlide.cpp\nthird_party/skia/tools/viewer/MotionMarkSlide.cpp\nthird_party/skia/tools/viewer/PathSlide.cpp\nthird_party/skia/tools/viewer/StringArtSlide.cpp\nthird_party/smhasher/src/src/PMurHash.c\nthird_party/snappy/linux/snappy-stubs-public.h\nthird_party/snappy/mac/snappy-stubs-public.h\nthird_party/snappy/src/snappy-test.h\nthird_party/snappy/win32/snappy-stubs-public.h\nthird_party/spirv-cross/src/spirv_hlsl.cpp\nthird_party/spirv-headers/src/include/spirv/spir-v.xml\nthird_party/spirv-tools/src/PRESUBMIT.py\nthird_party/spirv-tools/src/tools/sva/package.json\nthird_party/sqlite/src/amalgamation/shell/shell.c\nthird_party/sqlite/src/amalgamation/sqlite3.c\nthird_party/sqlite/src/amalgamation_dev/shell/shell.c\nthird_party/sqlite/src/amalgamation_dev/sqlite3.c\nthird_party/sqlite/src/ext/misc/zipfile.c\nthird_party/sqlite/src/ext/wasm/README-dist.txt\nthird_party/sqlite/src/ext/wasm/api/sqlite3-opfs-async-proxy.js\nthird_party/sqlite/src/ext/wasm/api/sqlite3-worker1-promiser.c-pp.js\nthird_party/sqlite/src/ext/wasm/index-dist.html\nthird_party/sqlite/src/ext/wasm/index.html\nthird_party/sqlite/src/src/date.c\nthird_party/sqlite/src/src/main.c\nthird_party/sqlite/src/src/os_unix.c\nthird_party/sqlite/src/src/pager.c\nthird_party/swiftshader/.vscode/tasks.json\nthird_party/swiftshader/AUTHORS.txt\nthird_party/swiftshader/CMakeLists.txt\nthird_party/swiftshader/CONTRIBUTING.txt\nthird_party/swiftshader/CONTRIBUTORS.txt\nthird_party/swiftshader/src/Device/BC_Decoder.cpp\nthird_party/swiftshader/src/Reactor/LLVMJIT.cpp\nthird_party/swiftshader/src/System/Synchronization.hpp\nthird_party/swiftshader/tests/ReactorUnitTests/ReactorUnitTests.cpp\nthird_party/swiftshader/third_party/SPIRV-Headers/include/spirv/spir-v.xml\nthird_party/swiftshader/third_party/SPIRV-Tools/PRESUBMIT.py\nthird_party/swiftshader/third_party/SPIRV-Tools/tools/sva/package.json\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/COFF.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ELF.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/Minidump.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/CodeView.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/PassManager.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/COFFModuleDefinition.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/WindowsResource.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/CommandLine.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Compiler.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/RWMutex.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/SHA1.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/TimeProfiler.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Win64EH.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/WindowsResource/ResourceScriptToken.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/TargetLibraryInfo.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MachineOutliner.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCWin64EH.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Object/COFFModuleDefinition.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ELF.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/PassBuilder.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Support/SHA1.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ARMFrameLowering.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/PPCISelLowering.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/X86FrameLowering.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/X86ISelLowering.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp\nthird_party/swiftshader/third_party/llvm-10.0/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/TensorSpec.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/COFF.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/ELF.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/Minidump.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/MachineFrameInfo.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/CodeView/CodeView.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/Orc/COFFVCRuntimeSupport.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/PassManager.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Object/COFFModuleDefinition.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Object/WindowsResource.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ARMWinEH.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/CommandLine.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/Compiler.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/SHA1.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/TimeProfiler.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/Win64EH.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Transforms/IPO/FunctionSpecialization.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/WindowsResource/ResourceScriptToken.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/TargetLibraryInfo.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/JMCInstrumenter.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/MachineFunctionSplitter.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/MachineOutliner.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/CodeView/Formatters.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/JITLink/COFFDirectiveParser.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/MC/MCWin64EH.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/ELF/ELFObject.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/MachO/MachOWriter.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Object/COFFModuleDefinition.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Object/ELF.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Passes/PassBuilderPipelines.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Support/SHA1.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/DirectX/CBufferDataLayout.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/PowerPC/PPCISelLowering.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/X86/X86ISelLowering.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp\nthird_party/swiftshader/third_party/llvm-16.0/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp\nthird_party/swiftshader/third_party/llvm-subzero/CREDITS.TXT\nthird_party/swiftshader/third_party/llvm-subzero/include/llvm/Support/COFF.h\nthird_party/swiftshader/third_party/llvm-subzero/include/llvm/Support/CommandLine.h\nthird_party/swiftshader/third_party/llvm-subzero/include/llvm/Support/Compiler.h\nthird_party/swiftshader/third_party/marl/include/marl/trace.h\nthird_party/swiftshader/third_party/marl/src/trace.cpp\nthird_party/swiftshader/third_party/subzero/Makefile\nthird_party/swiftshader/third_party/subzero/bloat/webtreemap.js\nthird_party/swiftshader/third_party/subzero/pnacl-llvm/README.txt\nthird_party/swiftshader/third_party/subzero/src/DartARM32/assembler_arm.cc\nthird_party/swiftshader/third_party/subzero/src/DartARM32/assembler_arm.h\nthird_party/swiftshader/third_party/subzero/src/IceAssembler.cpp\nthird_party/swiftshader/third_party/subzero/src/IceIntrinsics.h\nthird_party/swiftshader/third_party/subzero/src/IceTargetLoweringMIPS32.cpp\nthird_party/swiftshader/third_party/subzero/src/IceTargetLoweringX8632.cpp\nthird_party/swiftshader/third_party/subzero/src/IceTargetLoweringX8664.cpp\nthird_party/swiftshader/third_party/subzero/src/PNaClTranslator.cpp\nthird_party/swiftshader/third_party/subzero/src/WasmTranslator.cpp\nthird_party/swiftshader/third_party/subzero/unittest/IceParseTypesTest.cpp\nthird_party/text-fragments-polyfill/src/package.json\nthird_party/text-fragments-polyfill/src/src/text-fragment-utils.js\nthird_party/text-fragments-polyfill/src/test/unit/complicated-layout.html\nthird_party/tflite/src/configure.py\nthird_party/tflite/src/tensorflow/core/common_runtime/accumulate_n_optimizer.cc\nthird_party/tflite/src/tensorflow/core/distributed_runtime/error_payloads.h\nthird_party/tflite/src/tensorflow/core/kernels/decode_proto_op.cc\nthird_party/tflite/src/tensorflow/core/kernels/example_parsing_ops.cc\nthird_party/tflite/src/tensorflow/core/kernels/image/decode_image_op.cc\nthird_party/tflite/src/tensorflow/core/platform/cloud/testdata/application_default_credentials.json\nthird_party/tflite/src/tensorflow/core/platform/cloud/testdata/service_account_credentials.json\nthird_party/tflite/src/tensorflow/core/platform/error_payloads.h\nthird_party/tflite/src/tensorflow/core/tpu/tpu_compile_interface.h\nthird_party/tflite/src/tensorflow/core/tpu/tpu_embedding_errors.h\nthird_party/tflite/src/tensorflow/core/util/ctc/ctc_beam_search.h\nthird_party/tflite/src/tensorflow/core/util/example_proto_fast_parsing_test.cc\nthird_party/tflite/src/tensorflow/examples/speech_commands/generate_streaming_test_wav.py\nthird_party/tflite/src/tensorflow/examples/speech_commands/models.py\nthird_party/tflite/src/tensorflow/examples/speech_commands/train.py\nthird_party/tflite/src/tensorflow/lite/core/c/common.h\nthird_party/tflite/src/tensorflow/lite/delegates/gpu/android_hardware_buffer.h\nthird_party/tflite/src/tensorflow/lite/delegates/nnapi/nnapi_delegate.h\nthird_party/tflite/src/tensorflow/lite/delegates/nnapi/nnapi_delegate_c_api.h\nthird_party/tflite/src/tensorflow/lite/delegates/xnnpack/windows_util.cc\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/libjpeg_decoder.cc\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/runner.cc\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/c/group/tflite.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/classes.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/DataType.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Delegate.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.Options.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.TfLiteRuntime.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterFactory.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/RuntimeFlavor.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.QuantizationParams.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/TensorFlowLite.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/CompatibilityList.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.Options.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.GpuBackend.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/FileUtil.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/SequentialProcessor.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/CastOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/DequantizeOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/NormalizeOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/QuantizeOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.CoordinateType.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.Type.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ColorSpaceType.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/MlImageAdapter.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/TensorImage.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.ResizeMethod.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeWithCropOrPadOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/Rot90Op.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TensorOperatorWrapper.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TransformToGrayscaleOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/Category.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/LabelUtil.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/TensorLabel.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.QuantizationParams.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataParser.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Device.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBuffer.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferFloat.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferUint8.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/Classifications.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseTaskApi.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Delegate.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.MultipleBuffersHandleProvider.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/package-summary.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Orientation.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/audio/TfLiteAudio.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/text/TfLiteText.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/NearestNeighbor.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluRequest.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.CategoricalSlot.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.Mention.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.MentionedSlot.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.Pos.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QuestionAnswerer.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/Classifications.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/core/BaseVisionTaskApi.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/Detection.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ColoredLabel.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.Builder.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/OutputType.html\nthird_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/Segmentation.html\nthird_party/tflite/src/tensorflow/lite/g3doc/tools/build_java_api_docs.py\nthird_party/tflite/src/tensorflow/lite/java/src/main/native/op_resolver_lazy_delegate_proxy.cc\nthird_party/tflite/src/tensorflow/lite/kernels/ctc/ctc_beam_search.h\nthird_party/tflite/src/tensorflow/lite/kernels/internal/reference/svdf.h\nthird_party/tflite/src/tensorflow/lite/kernels/svdf.cc\nthird_party/tflite/src/tensorflow/lite/nnapi/NeuralNetworksShim.h\nthird_party/tflite/src/tensorflow/lite/nnapi/NeuralNetworksTypes.h\nthird_party/tflite/src/tensorflow/lite/toco/graph_transformations/ensure_uint8_weights_safe_for_fast_int8_kernels.cc\nthird_party/tflite/src/tensorflow/lite/toco/logging/template.html\nthird_party/tflite/src/tensorflow/lite/toco/logging/testdata/generated.html\nthird_party/tflite/src/tensorflow/lite/toco/model.h\nthird_party/tflite/src/tensorflow/lite/tools/benchmark/experimental/firebase/android/jni/benchmark_model_jni.cc\nthird_party/tflite/src/tensorflow/lite/tutorials/dataset.py\nthird_party/tflite/src/tensorflow/python/compiler/xla/tests/pjrt_autoclustering_test.py\nthird_party/tflite/src/tensorflow/python/distribute/coordinator/get_task_states_test.py\nthird_party/tflite/src/tensorflow/python/distribute/failure_handling/failure_handling.py\nthird_party/tflite/src/tensorflow/python/eager/remote_cluster_test.py\nthird_party/tflite/src/tensorflow/python/framework/graph_to_function_def.py\nthird_party/tflite/src/tensorflow/python/framework/ops.py\nthird_party/tflite/src/tensorflow/python/framework/test_util_test.py\nthird_party/tflite/src/tensorflow/python/keras/layers/recurrent.py\nthird_party/tflite/src/tensorflow/python/keras/optimizer_v2/ftrl.py\nthird_party/tflite/src/tensorflow/python/keras/utils/data_utils.py\nthird_party/tflite/src/tensorflow/python/ops/distributions/special_math.py\nthird_party/tflite/src/tensorflow/python/ops/parsing_ops.py\nthird_party/tflite/src/tensorflow/python/platform/self_check.py\nthird_party/tflite/src/tensorflow/python/tpu/client/client.py\nthird_party/tflite/src/tensorflow/python/tpu/client/pip_package/setup.py\nthird_party/tflite/src/tensorflow/python/tpu/tpu_embedding_v2_utils.py\nthird_party/tflite/src/tensorflow/tools/android/test/jni/rgb2yuv.cc\nthird_party/tflite/src/tensorflow/tools/compatibility/tf_upgrade_v2_safety_test.py\nthird_party/tflite/src/tensorflow/tools/pip_package/THIRD_PARTY_NOTICES.txt\nthird_party/tflite/src/third_party/xla/xla/backends/gpu/codegen/emitters/transpose.h\nthird_party/tflite/src/third_party/xla/xla/error/debug_me_context_util.h\nthird_party/tflite/src/third_party/xla/xla/pjrt/c/pjrt_c_api.h\nthird_party/tflite/src/third_party/xla/xla/pjrt/distributed/coordination/coordination_service_error_util.h\nthird_party/tflite/src/third_party/xla/xla/pjrt/errors.cc\nthird_party/tflite/src/third_party/xla/xla/pjrt/pjrt_api.cc\nthird_party/tflite/src/third_party/xla/xla/python/ifrt/user_context_status_util.cc\nthird_party/tflite/src/third_party/xla/xla/python/ifrt/user_context_status_util_test.cc\nthird_party/tflite/src/third_party/xla/xla/python/ifrt_proxy/contrib/pathways/status_annotator_util.cc\nthird_party/tflite/src/third_party/xla/xla/service/hlo_graph_dumper.cc\nthird_party/tflite/src/third_party/xla/xla/service/hlo_verifier.cc\nthird_party/tflite/src/third_party/xla/xla/tools/benchmarks/utils/generate_benchmark_matrices_main.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_error_util.h\nthird_party/tflite/src/third_party/xla/xla/tsl/distributed_runtime/rpc/grpc_util.h\nthird_party/tflite/src/third_party/xla/xla/tsl/lib/io/format.h\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/compute_engine_metadata_client.h\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/curl_http_request.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/curl_http_request.h\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/curl_http_request_test.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_dns_cache.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_dns_cache_test.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_file_system.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_file_system_test.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/google_auth_provider.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/http_request.h\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/oauth_client_test.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/testdata/application_default_credentials.json\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/testdata/service_account_credentials.json\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/file_system.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/status.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/windows/env.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/windows/stacktrace.cc\nthird_party/tflite/src/third_party/xla/xla/tsl/platform/windows/stacktrace_handler.cc\nthird_party/tflite_support/src/tensorflow_lite_support/c/task/processor/category.h\nthird_party/unrar/src/threadmisc.cpp\nthird_party/unrar/src/threadpool.cpp\nthird_party/updater/chrome_mac_universal/3pp/fetch.py\nthird_party/updater/chrome_mac_universal_prod/3pp/fetch.py\nthird_party/updater/chrome_win_arm64/3pp/fetch.py\nthird_party/updater/chrome_win_x86/3pp/fetch.py\nthird_party/updater/chrome_win_x86_64/3pp/fetch.py\nthird_party/updater/chromium_mac_amd64/3pp/fetch.py\nthird_party/updater/chromium_mac_arm64/3pp/fetch.py\nthird_party/updater/chromium_win_arm64/3pp/fetch.py\nthird_party/updater/chromium_win_x86/3pp/fetch.py\nthird_party/updater/chromium_win_x86_64/3pp/fetch.py\nthird_party/vulkan-deps/update-commit-message.py\nthird_party/vulkan-loader/src/loader/allocation.c\nthird_party/vulkan-loader/src/loader/allocation.h\nthird_party/vulkan-loader/src/loader/generated/vk_object_types.h\nthird_party/vulkan-loader/src/loader/loader.h\nthird_party/vulkan-loader/src/loader/loader_common.h\nthird_party/vulkan-loader/src/loader/loader_environment.c\nthird_party/vulkan-loader/src/loader/loader_environment.h\nthird_party/vulkan-loader/src/loader/loader_windows.c\nthird_party/vulkan-loader/src/loader/loader_windows.h\nthird_party/vulkan-loader/src/loader/log.c\nthird_party/vulkan-loader/src/loader/log.h\nthird_party/vulkan-loader/src/loader/stack_allocation.h\nthird_party/vulkan-loader/src/loader/wsi.c\nthird_party/vulkan-loader/src/scripts/generators/helper_file_generator.py\nthird_party/vulkan-loader/src/scripts/gn/gn.py\nthird_party/vulkan-tools/src/cube/cube.c\nthird_party/vulkan-tools/src/cube/gettime.h\nthird_party/vulkan-tools/src/icd/generated/vk_typemap_helper.h\nthird_party/vulkan-tools/src/scripts/android.py\nthird_party/vulkan-tools/src/scripts/generators/mock_icd_generator.py\nthird_party/vulkan-tools/src/scripts/generators/vulkan_tools_helper_file_generator.py\nthird_party/vulkan-tools/src/scripts/gn/gn.py\nthird_party/vulkan-utility-libraries/src/scripts/gn/gn.py\nthird_party/vulkan-validation-layers/src/layers/CMakeLists.txt\nthird_party/vulkan-validation-layers/src/layers/external/inplace_function.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/btree.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_base.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_bits.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_config.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_dump.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_fwd_decl.h\nthird_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_utils.h\nthird_party/vulkan-validation-layers/src/layers/external/xxhash.h\nthird_party/vulkan-validation-layers/src/layers/gpuav/resources/gpuav_shader_resources.h\nthird_party/vulkan-validation-layers/src/scripts/android.py\nthird_party/vulkan-validation-layers/src/scripts/gn/export_targets.py\nthird_party/vulkan-validation-layers/src/scripts/gn/gn.py\nthird_party/wayland-protocols/gtk/.gitlab-ci/pages/fonts.css\nthird_party/wayland-protocols/gtk/.gitlab-ci/pages/index.html\nthird_party/wayland-protocols/gtk/demos/gtk-demo/links.c\nthird_party/wayland-protocols/gtk/demos/gtk-demo/messages.txt\nthird_party/wayland-protocols/gtk/demos/gtk-demo/org.gtk.Demo4.appdata.xml\nthird_party/wayland-protocols/gtk/demos/icon-browser/org.gtk.IconBrowser4.appdata.xml\nthird_party/wayland-protocols/gtk/demos/print-editor/org.gtk.PrintEditor4.appdata.xml\nthird_party/wayland-protocols/gtk/demos/widget-factory/org.gtk.WidgetFactory4.appdata.xml\nthird_party/wayland-protocols/gtk/gdk/wayland/gdkvulkancontext-wayland.c\nthird_party/wayland-protocols/gtk/gdk/wayland/gdkvulkancontext-wayland.h\nthird_party/wayland-protocols/gtk/gdk/win32/gdkclipdrop-win32.c\nthird_party/wayland-protocols/gtk/gdk/win32/gdkdisplay-win32.h\nthird_party/wayland-protocols/gtk/gdk/win32/gdkevents-win32.c\nthird_party/wayland-protocols/gtk/gdk/win32/gdkhdataoutputstream-win32.c\nthird_party/wayland-protocols/gtk/gdk/win32/gdkproperty-win32.c\nthird_party/wayland-protocols/gtk/gdk/win32/gdkwin32langnotification.c\nthird_party/wayland-protocols/gtk/gdk/win32/gdkwin32langnotification.h\nthird_party/wayland-protocols/gtk/gdk/win32/gdkwin32monitor.h\nthird_party/wayland-protocols/gtk/gsk/gskcairoblur.c\nthird_party/wayland-protocols/gtk/gtk/gtkcomposetable.c\nthird_party/wayland-protocols/gtk/gtk/gtkcomposetable.h\nthird_party/wayland-protocols/gtk/gtk/gtkimcontextime.c\nthird_party/wayland-protocols/gtk/gtk/gtklinkbutton.c\nthird_party/wayland-protocols/gtk/gtk/gtklinkbutton.h\nthird_party/wayland-protocols/gtk/gtk/gtkplacesview.c\nthird_party/wayland-protocols/gtk/gtk/gtkplacesviewprivate.h\nthird_party/wayland-protocols/gtk/gtk/gtkplacesviewrow.c\nthird_party/wayland-protocols/gtk/gtk/gtkplacesviewrowprivate.h\nthird_party/wayland-protocols/gtk/gtk/gtkprogresstracker.c\nthird_party/wayland-protocols/gtk/gtk/gtkprogresstrackerprivate.h\nthird_party/wayland-protocols/gtk/gtk/gtkscrollable.c\nthird_party/wayland-protocols/gtk/gtk/gtkscrollable.h\nthird_party/wayland-protocols/gtk/gtk/gtksizerequest.c\nthird_party/wayland-protocols/gtk/gtk/gtksizerequest.h\nthird_party/wayland-protocols/gtk/gtk/gtksizerequestcache.c\nthird_party/wayland-protocols/gtk/gtk/gtkspinner.c\nthird_party/wayland-protocols/gtk/gtk/gtkspinner.h\nthird_party/wayland-protocols/gtk/gtk/open-type-layout.h\nthird_party/wayland-protocols/gtk/modules/printbackends/gtkcloudprintaccount.c\nthird_party/wayland-protocols/gtk/tests/testheightforwidth.c\nthird_party/wayland/src/egl/wayland-egl-backend.h\nthird_party/wayland/src/egl/wayland-egl.c\nthird_party/wayland/src/src/wayland-shm.c\nthird_party/webdriver/pylib/selenium/webdriver/firefox/firefox_profile.py\nthird_party/webdriver/pylib/test/selenium/webdriver/common/alerts_tests.py\nthird_party/webdriver/pylib/test/selenium/webdriver/common/clear_tests.py\nthird_party/webdriver/pylib/test/selenium/webdriver/common/driver_element_finding_tests.py\nthird_party/webdriver/pylib/test/selenium/webdriver/common/example2.py\nthird_party/webdriver/pylib/test/selenium/webdriver/common/executing_async_javascript_tests.py\nthird_party/webdriver/pylib/test/selenium/webdriver/common/typing_tests.py\nthird_party/webdriver/pylib/test/selenium/webdriver/common/webdriverwait_tests.py\nthird_party/webdriver/pylib/test/selenium/webdriver/firefox/firefox_sizing_tests.py\nthird_party/webgpu-cts/src/src/webgpu/api/operation/command_buffer/queries/occlusionQuery.spec.ts\nthird_party/webgpu-cts/src/src/webgpu/api/operation/render_pipeline/sample_mask.spec.ts\nthird_party/webgpu-cts/src/src/webgpu/api/operation/rendering/depth_bias.spec.ts\nthird_party/webgpu-cts/src/src/webgpu/api/operation/sampling/filter_mode.spec.ts\nthird_party/webgpu-cts/src/src/webgpu/multisample_info.ts\nthird_party/webgpu-cts/src/src/webgpu/shader/execution/shader_io/fragment_builtins.spec.ts\nthird_party/webgpu-cts/src/standalone/index.html\nthird_party/webpagereplay/PRESUBMIT.py\nthird_party/webpagereplay/scripts/upload_new_binaries.py\nthird_party/webrtc/.gn\nthird_party/webrtc/BUILD.gn\nthird_party/webrtc/PRESUBMIT.py\nthird_party/webrtc/api/audio_codecs/opus/audio_encoder_opus_config.h\nthird_party/webrtc/api/data_channel_event_observer_interface.h\nthird_party/webrtc/api/jsep.cc\nthird_party/webrtc/api/location.h\nthird_party/webrtc/api/rtp_transceiver_interface.h\nthird_party/webrtc/api/scoped_refptr.h\nthird_party/webrtc/api/uma_metrics.h\nthird_party/webrtc/api/video/hdr_metadata.h\nthird_party/webrtc/api/video/i410_buffer.h\nthird_party/webrtc/api/video/i420_buffer.h\nthird_party/webrtc/api/video/i422_buffer.h\nthird_party/webrtc/api/video/i444_buffer.h\nthird_party/webrtc/api/video/nv12_buffer.h\nthird_party/webrtc/api/video_codecs/video_encoder.h\nthird_party/webrtc/api/webrtc_sdp.cc\nthird_party/webrtc/api/webrtc_sdp_unittest.cc\nthird_party/webrtc/call/adaptation/resource_adaptation_processor.h\nthird_party/webrtc/call/call.cc\nthird_party/webrtc/common_audio/resampler/sinc_resampler.cc\nthird_party/webrtc/common_audio/third_party/ooura/fft_size_128/ooura_fft_tables_common.h\nthird_party/webrtc/common_audio/third_party/ooura/fft_size_128/ooura_fft_tables_neon_sse2.h\nthird_party/webrtc/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor.c\nthird_party/webrtc/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor_mips.c\nthird_party/webrtc/examples/peerconnection/client/defaults.cc\nthird_party/webrtc/infra/specs/gn_isolate_map.pyl\nthird_party/webrtc/media/base/video_common.cc\nthird_party/webrtc/media/base/video_common.h\nthird_party/webrtc/media/engine/webrtc_voice_engine.cc\nthird_party/webrtc/media/engine/webrtc_voice_engine.h\nthird_party/webrtc/media/engine/webrtc_voice_engine_unittest.cc\nthird_party/webrtc/media/sctp/sctp_transport_internal.h\nthird_party/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest.cc\nthird_party/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc\nthird_party/webrtc/modules/audio_coding/neteq/neteq_impl.cc\nthird_party/webrtc/modules/audio_device/BUILD.gn\nthird_party/webrtc/modules/audio_device/audio_device_generic.h\nthird_party/webrtc/modules/audio_device/audio_device_unittest.cc\nthird_party/webrtc/modules/audio_device/linux/audio_device_pulse_linux.h\nthird_party/webrtc/modules/audio_device/linux/latebindingsymboltable_linux.cc\nthird_party/webrtc/modules/audio_device/win/audio_device_core_win.cc\nthird_party/webrtc/modules/audio_device/win/core_audio_utility_win.h\nthird_party/webrtc/modules/audio_processing/agc2/rnn_vad/pitch_search.cc\nthird_party/webrtc/modules/audio_processing/agc2/rnn_vad/rnn_fc.cc\nthird_party/webrtc/modules/audio_processing/audio_processing_impl.cc\nthird_party/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc\nthird_party/webrtc/modules/audio_processing/gain_control_unittest.cc\nthird_party/webrtc/modules/desktop_capture/cropping_window_capturer_win.cc\nthird_party/webrtc/modules/desktop_capture/mac/screen_capturer_mac.mm\nthird_party/webrtc/modules/desktop_capture/mouse_cursor_monitor_win.cc\nthird_party/webrtc/modules/desktop_capture/screen_capturer_integration_test.cc\nthird_party/webrtc/modules/desktop_capture/screen_drawer_unittest.cc\nthird_party/webrtc/modules/desktop_capture/win/full_screen_win_application_handler.cc\nthird_party/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h\nthird_party/webrtc/modules/desktop_capture/win/window_capture_utils.cc\nthird_party/webrtc/modules/desktop_capture/win/window_capturer_win_gdi.cc\nthird_party/webrtc/modules/desktop_capture/window_finder_win.cc\nthird_party/webrtc/modules/rtp_rtcp/include/receive_statistics.h\nthird_party/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc\nthird_party/webrtc/modules/utility/source/jvm_android.cc\nthird_party/webrtc/modules/video_capture/linux/device_info_v4l2.cc\nthird_party/webrtc/modules/video_capture/test/video_capture_unittest.cc\nthird_party/webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc\nthird_party/webrtc/modules/video_coding/codecs/vp9/vp9.cc\nthird_party/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc\nthird_party/webrtc/modules/video_coding/packet_buffer.cc\nthird_party/webrtc/modules/video_coding/packet_buffer_unittest.cc\nthird_party/webrtc/modules/video_coding/timing/timing.cc\nthird_party/webrtc/p2p/base/port_unittest.cc\nthird_party/webrtc/p2p/base/turn_port.cc\nthird_party/webrtc/p2p/base/turn_port_unittest.cc\nthird_party/webrtc/p2p/client/basic_port_allocator.cc\nthird_party/webrtc/p2p/client/basic_port_allocator_unittest.cc\nthird_party/webrtc/pc/channel.cc\nthird_party/webrtc/pc/media_session_unittest.cc\nthird_party/webrtc/pc/peer_connection_bundle_unittest.cc\nthird_party/webrtc/pc/peer_connection_crypto_unittest.cc\nthird_party/webrtc/pc/peer_connection_encodings_integrationtest.cc\nthird_party/webrtc/pc/peer_connection_end_to_end_unittest.cc\nthird_party/webrtc/pc/peer_connection_factory_unittest.cc\nthird_party/webrtc/pc/peer_connection_field_trial_tests.cc\nthird_party/webrtc/pc/peer_connection_ice_unittest.cc\nthird_party/webrtc/pc/peer_connection_integrationtest.cc\nthird_party/webrtc/pc/peer_connection_interface_unittest.cc\nthird_party/webrtc/pc/scenario_tests/goog_cc_test.cc\nthird_party/webrtc/pc/sdp_offer_answer.cc\nthird_party/webrtc/presubmit_test_mocks.py\nthird_party/webrtc/rtc_base/async_dns_resolver.cc\nthird_party/webrtc/rtc_base/byte_buffer.h\nthird_party/webrtc/rtc_base/deprecated/recursive_critical_section.h\nthird_party/webrtc/rtc_base/event_tracer.cc\nthird_party/webrtc/rtc_base/file_rotating_stream_unittest.cc\nthird_party/webrtc/rtc_base/network.cc\nthird_party/webrtc/rtc_base/network.h\nthird_party/webrtc/rtc_base/network_unittest.cc\nthird_party/webrtc/rtc_base/numerics/safe_minmax.h\nthird_party/webrtc/rtc_base/openssl_adapter.cc\nthird_party/webrtc/rtc_base/physical_socket_server.cc\nthird_party/webrtc/rtc_base/physical_socket_server_unittest.cc\nthird_party/webrtc/rtc_base/platform_thread_types.cc\nthird_party/webrtc/rtc_base/strong_alias.h\nthird_party/webrtc/rtc_base/strong_alias_unittest.cc\nthird_party/webrtc/rtc_base/system/arch.h\nthird_party/webrtc/rtc_base/thread_annotations.h\nthird_party/webrtc/rtc_base/thread_unittest.cc\nthird_party/webrtc/rtc_base/timestamp_aligner_unittest.cc\nthird_party/webrtc/rtc_base/win/scoped_com_initializer.h\nthird_party/webrtc/rtc_base/win/windows_version.cc\nthird_party/webrtc/rtc_base/win32_unittest.cc\nthird_party/webrtc/rtc_tools/data_channel_benchmark/peer_connection_client.cc\nthird_party/webrtc/rtc_tools/testing/utils.py\nthird_party/webrtc/rtc_tools/unpack_aecdump/unpack.cc\nthird_party/webrtc/rtc_tools/video_encoder/video_encoder.cc\nthird_party/webrtc/sdk/android/native_api/jni/class_loader.cc\nthird_party/webrtc/sdk/android/native_api/jni/class_loader.h\nthird_party/webrtc/sdk/android/native_api/jni/java_types.h\nthird_party/webrtc/sdk/android/native_api/jni/scoped_java_ref.h\nthird_party/webrtc/sdk/android/native_unittests/audio_device/audio_device_unittest.cc\nthird_party/webrtc/sdk/android/src/jni/android_network_monitor.cc\nthird_party/webrtc/sdk/android/src/jni/audio_device/aaudio_player.cc\nthird_party/webrtc/sdk/android/src/jni/audio_device/aaudio_recorder.cc\nthird_party/webrtc/sdk/android/src/jni/audio_device/aaudio_wrapper.cc\nthird_party/webrtc/sdk/android/src/jni/audio_device/audio_device_module.cc\nthird_party/webrtc/sdk/android/src/jni/audio_device/opensles_recorder.h\nthird_party/webrtc/sdk/android/src/jni/jvm.cc\nthird_party/webrtc/sdk/media_constraints.h\nthird_party/webrtc/sdk/objc/api/peerconnection/RTCConfiguration.h\nthird_party/webrtc/sdk/objc/components/renderer/metal/RTCMTLI420Renderer.mm\nthird_party/webrtc/test/android/native_test_launcher.cc\nthird_party/webrtc/test/android/native_test_util.cc\nthird_party/webrtc/test/peer_scenario/bwe_integration_tests/BUILD.gn\nthird_party/webrtc/test/test_flags.cc\nthird_party/webrtc/test/test_main_lib.cc\nthird_party/webrtc/test/testsupport/perf_test.h\nthird_party/webrtc/tools_webrtc/apply_clang_tidy.py\nthird_party/webrtc/tools_webrtc/autoroller/roll_deps.py\nthird_party/webrtc/tools_webrtc/autoroller/unittests/roll_deps_test.py\nthird_party/webrtc/tools_webrtc/iwyu/apply_include_cleaner.py\nthird_party/webrtc/tools_webrtc/perf/catapult_uploader.py\nthird_party/webrtc/tools_webrtc/sanitizers/lsan_suppressions_webrtc.cc\nthird_party/webrtc/tools_webrtc/sanitizers/tsan_suppressions_webrtc.cc\nthird_party/webrtc/video/end_to_end_tests/rtp_rtcp_tests.cc\nthird_party/webrtc/video/full_stack_tests.cc\nthird_party/webrtc/video/pc_full_stack_tests.cc\nthird_party/webrtc/video/render/video_render_frames.cc\nthird_party/webrtc/video/rtp_video_stream_receiver2.h\nthird_party/webrtc/video/timing/simulator/log_classifiers.h\nthird_party/webrtc/video/timing/simulator/rtp_packet_simulator.h\nthird_party/webrtc/video/timing/simulator/test/test_resources_unittest.cc\nthird_party/webrtc/video/video_send_stream_tests.cc\nthird_party/webrtc/webrtc.gni\nthird_party/webxr_test_pages/bucket_latest.html\nthird_party/webxr_test_pages/update_bucket.py\nthird_party/webxr_test_pages/webxr-samples/attribution.html\nthird_party/webxr_test_pages/webxr-samples/explainer.html\nthird_party/webxr_test_pages/webxr-samples/gamepad.html\nthird_party/webxr_test_pages/webxr-samples/index.html\nthird_party/webxr_test_pages/webxr-samples/index.published.html\nthird_party/webxr_test_pages/webxr-samples/js/webxr-button.js\nthird_party/webxr_test_pages/webxr-samples/js/webxr-polyfill.js\nthird_party/webxr_test_pages/webxr-samples/js/webxr-polyfill.min.js\nthird_party/webxr_test_pages/webxr-samples/js/webxr-polyfill.module.js\nthird_party/webxr_test_pages/webxr-samples/magic-window-multi.html\nthird_party/webxr_test_pages/webxr-samples/magic-window.html\nthird_party/webxr_test_pages/webxr-samples/positional-audio.html\nthird_party/webxr_test_pages/webxr-samples/proposals/camera-access-barebones.html\nthird_party/webxr_test_pages/webxr-samples/proposals/camera-access-marker.html\nthird_party/webxr_test_pages/webxr-samples/proposals/index.html\nthird_party/webxr_test_pages/webxr-samples/teleportation.html\nthird_party/webxr_test_pages/webxr-samples/tests/index.html\nthird_party/webxr_test_pages/webxr-samples/xr-barebones.html\nthird_party/weston/src/libweston/backend-pipewire/pipewire.c\nthird_party/weston/src/libweston/backend-rdp/rdp.c\nthird_party/weston/src/libweston/backend-rdp/rdp.h\nthird_party/weston/src/libweston/backend-rdp/rdpclip.c\nthird_party/weston/src/libweston/backend-vnc/vnc.c\nthird_party/weston/src/libweston/backend-x11/x11.c\nthird_party/weston/src/libweston/dbus.c\nthird_party/weston/src/libweston/dbus.h\nthird_party/weston/src/libweston/pixman-renderer.c\nthird_party/weston/src/libweston/pixman-renderer.h\nthird_party/weston/src/notes.txt\nthird_party/weston/src/tests/vertex-clip-test.c\nthird_party/weston/src/tests/weston-test-runner.h\nthird_party/win_virtual_display/3pp/build.py\nthird_party/win_virtual_display/3pp/fetch.py\nthird_party/win_virtual_display/driver/HelperMethods.cpp\nthird_party/win_virtual_display/driver/public/properties.h\nthird_party/woff2/src/buffer.h\nthird_party/woff2/src/transform.cc\nthird_party/woff2/src/woff2_common.h\nthird_party/woff2/src/woff2_dec.cc\nthird_party/wpt_tools/roll_wpt.py\nthird_party/wpt_tools/wpt/tools/lint/rules.py\nthird_party/wpt_tools/wpt/tools/third_party/pywebsocket3/setup.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/__init__.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/capture.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/commandline.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/__init__.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/base.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/errorsummary.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/grouping.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/__init__.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/html.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/main.js\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/style.css\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/machformatter.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/process.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/tbplformatter.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/unittest.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/xunit.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/__init__.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/base.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/bufferhandler.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/messagehandler.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/statushandler.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/summaryhandler.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/valgrindhandler.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/logtypes.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/proxy.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/pytest_mozlog/plugin.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/reader.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/__init__.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/format.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/logmerge.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/unstable.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/stdadapter.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/structuredlog.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/__init__.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/logger.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/loggingmixin.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/loglistener.py\nthird_party/wpt_tools/wpt/tools/third_party_modified/mozlog/setup.py\nthird_party/wpt_tools/wpt/tools/webdriver/webdriver/client.py\nthird_party/wpt_tools/wpt/tools/wpt/android.py\nthird_party/wpt_tools/wpt/tools/wpt/browser.py\nthird_party/wpt_tools/wpt/tools/wptrunner/requirements.txt\nthird_party/wpt_tools/wpt/tools/wptrunner/setup.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/android_webview.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/base.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/chrome.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/firefox.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/executorchrome.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/executormarionette.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/executorwebdriver.py\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/test-wait.js\nthird_party/wpt_tools/wpt/tools/wptrunner/wptrunner/wpttest.py\nthird_party/wuffs/BUILD.gn\nthird_party/wuffs/src/release/c/wuffs-v0.3.c\nthird_party/xdg-utils/scripts/desc/xdg-settings.xml\nthird_party/xnnpack/src/CMakeLists.txt\nthird_party/zlib/BUILD.gn\nthird_party/zlib/deflate.c\nthird_party/zlib/google/compression_utils_portable.cc\nthird_party/zlib/google/zip_reader.h\nthird_party/zstd/src/build/meson/GetZstdLibraryVersion.py\nthird_party/zstd/src/build/meson/InstallSymlink.py\nthird_party/zstd/src/build/meson/meson_options.txt\nthird_party/zstd/src/build/meson/tests/valgrindTest.py\nthird_party/zstd/src/lib/common/compiler.h\nthird_party/zstd/src/lib/common/entropy_common.c\nthird_party/zstd/src/lib/common/fse_decompress.c\nthird_party/zstd/src/lib/common/xxhash.h\nthird_party/zstd/src/lib/compress/fse_compress.c\nthird_party/zstd/src/lib/compress/hist.c\nthird_party/zstd/src/lib/compress/hist.h\nthird_party/zstd/src/lib/compress/huf_compress.c\nthird_party/zstd/src/lib/legacy/zstd_v01.c\nthird_party/zstd/src/lib/legacy/zstd_v02.c\nthird_party/zstd/src/lib/legacy/zstd_v03.c\nthird_party/zstd/src/lib/legacy/zstd_v04.c\nthird_party/zstd/src/lib/legacy/zstd_v05.c\nthird_party/zstd/src/lib/legacy/zstd_v06.c\nthird_party/zstd/src/lib/legacy/zstd_v07.c\ntools/accessibility/codereview/download_issue.py\ntools/accessibility/codereview/mph.py\ntools/accessibility/inspect/ax_utils.cc\ntools/accessibility/nvda/README.txt\ntools/accessibility/rebase_dump_accessibility_tree_tests.py\ntools/android/android_studio/ChromiumInspections.xml\ntools/android/avd/3pp/fetch.py\ntools/android/build_speed/PRESUBMIT.py\ntools/android/checkstyle/chromium-style-5.0.xml\ntools/android/checkstyle/unused-imports.xml\ntools/android/checkxmlstyle/PRESUBMIT.py\ntools/android/checkxmlstyle/checkxmlstyle.py\ntools/android/checkxmlstyle/checkxmlstyle_test.py\ntools/android/colabutils/memory_usage/PRESUBMIT.py\ntools/android/colabutils/wpr.py\ntools/android/customtabs_benchmark/res/values/strings.xml\ntools/android/customtabs_benchmark/scripts/PRESUBMIT.py\ntools/android/customtabs_benchmark/scripts/customtabs_benchmark.py\ntools/android/customtabs_benchmark/scripts/run_benchmark.py\ntools/android/customtabs_benchmark/scripts/sample_config.json\ntools/android/dependency_analysis/PRESUBMIT.py\ntools/android/dependency_analysis/js/src/class_view.html\ntools/android/dependency_analysis/js/src/graph_view.js\ntools/android/dependency_analysis/js/src/index.html\ntools/android/dependency_analysis/js/src/load_graph.js\ntools/android/dependency_analysis/js/src/package_view.html\ntools/android/dependency_analysis/js/src/target_view.html\ntools/android/dependency_analysis/upload_html_viewer.py\ntools/android/generate_java_test/generate_java_test.py\ntools/android/memtrack_helper/memtrack_helper.c\ntools/android/modularization/convenience/touch_resources.py\ntools/android/native_lib_memory/PRESUBMIT.py\ntools/android/python_utils/PRESUBMIT.py\ntools/android/test_health/PRESUBMIT.py\ntools/android/tracing/systrace-extract-startup.py\ntools/binary_size/PRESUBMIT.py\ntools/binary_size/diagnose_bloat.py\ntools/binary_size/generate_milestone_reports.py\ntools/binary_size/libsupersize/arsc_parser.py\ntools/binary_size/libsupersize/console.py\ntools/binary_size/libsupersize/dalvik_bytecode.py\ntools/binary_size/libsupersize/dex_parser.py\ntools/binary_size/libsupersize/ninja_parser_test.py\ntools/binary_size/libsupersize/stream_reader.py\ntools/binary_size/libsupersize/viewer/static/auth-consts.js\ntools/binary_size/libsupersize/viewer/static/index.html\ntools/binary_size/libsupersize/viewer/static/index.js\ntools/binary_size/libsupersize/viewer/static/tree-worker-wasm.js\ntools/binary_size/libsupersize/viewer/static/viewer.html\ntools/binary_size/libsupersize/viewer/upload_html_viewer.py\ntools/binary_size/libsupersize/zip_util.py\ntools/binary_size/libsupersize/zip_util_test.py\ntools/binary_size/sizes.py\ntools/binary_size/trybot_commit_size_checker.py\ntools/bisect-builds.py\ntools/bisect_repackage/bisect_repackage.py\ntools/bisect_repackage/bisect_repackage_utils.py\ntools/bisect_test.py\ntools/boilerplate.py\ntools/captured_sites/refresh.py\ntools/check_git_config.py\ntools/checkbins/checkbins.py\ntools/checkperms/PRESUBMIT.py\ntools/checkteamtags/PRESUBMIT.py\ntools/checkteamtags/checkteamtags.py\ntools/checkteamtags/checkteamtags_test.py\ntools/checkteamtags/extract_components.py\ntools/checkteamtags/extract_components_test.py\ntools/checkteamtags/owners_file_tags_test.py\ntools/chrome_extensions/open_my_editor/ext/background.js\ntools/chrome_extensions/open_my_editor/ext/cr-content.js\ntools/chrome_extensions/open_my_editor/ext/cs-content.js\ntools/chrome_extensions/open_my_editor/ext/manifest.json\ntools/clang/ast_rewriter/ASTRewriter.cpp\ntools/clang/ast_rewriter/OutputHelper.h\ntools/clang/blink_gc_plugin/BlinkGCPlugin.cpp\ntools/clang/iterator_checker/tests/PRESUBMIT.py\ntools/clang/plugins/ChromeClassTester.cpp\ntools/clang/raw_ptr_plugin/tests/bad_raw_ptr_cast_in_the_wild.cpp\ntools/clang/raw_ptr_plugin/tests/raw_ptr_to_stack_allocated.cpp\ntools/clang/rewrite_raw_ptr_fields/RewriteRawPtrFields.cpp\ntools/clang/rewrite_raw_ptr_fields/manual-fields-to-ignore.txt\ntools/clang/rewrite_raw_ptr_fields/tests/gen-in-out-arg-test.cc\ntools/clang/rewrite_raw_ptr_fields/tests/gen-reinterpret-cast-test.cc\ntools/clang/rewrite_templated_container_fields/RewriteTemplatedPtrFields.cpp\ntools/clang/rewrite_templated_container_fields/extract_edits.py\ntools/clang/scripts/build.py\ntools/clang/scripts/dashboard.py\ntools/clang/scripts/include-analysis.html\ntools/clang/scripts/package.py\ntools/clang/scripts/update.py\ntools/clang/spanify/Spanifier.cpp\ntools/clang/spanify/evaluate_patches.py\ntools/clang/spanify/extract_edits.py\ntools/clang/spanify/gnconfigs.py\ntools/clang/spanify/list-required-pragma.py\ntools/clang/spanify/remove-unneeded-pragmas.py\ntools/clang/spanify/tests/cycle-expected.cc\ntools/clang/spanify/tests/cycle-original.cc\ntools/clang/spanify/tests/informational-only-array-alias-not-rewritten-expected.cc\ntools/clang/spanify/tests/informational-only-array-alias-not-rewritten-original.cc\ntools/clang/translation_unit/test_translation_unit.py\ntools/code_coverage/coverage.py\ntools/code_coverage/js_source_maps/create_js_source_maps/PRESUBMIT.py\ntools/cr/cr/base/android.py\ntools/cr/main.py\ntools/crates/create_draft_comments.py\ntools/crates/create_update_cl.py\ntools/crates/gnrt/lib/test_metadata.json\ntools/crates/gnrt/lib/test_metadata2.json\ntools/crates/gnrt/lib/test_metadata3.json\ntools/crates/gnrt/lib/test_metadata4.json\ntools/cygprofile/PRESUBMIT.py\ntools/cygprofile/android_profile_tool.py\ntools/determinism/compare_build_artifacts.py\ntools/disable_tests/PRESUBMIT.py\ntools/disable_tests/disable.py\ntools/disable_tests/disable_test.py\ntools/disable_tests/resultdb.py\ntools/disable_tests/tests/expectations-basic.json\ntools/disable_tests/tests/expectations-bug-comment.json\ntools/disable_tests/tests/expectations-bug-with-message.json\ntools/disable_tests/tests/expectations-message.json\ntools/disable_tests/tests/expectations-virtual-conditional-to-unconditional.json\ntools/disable_tests/tests/gtest-add-extra-condition.json\ntools/disable_tests/tests/gtest-backslash-in-input.json\ntools/disable_tests/tests/gtest-basic.json\ntools/disable_tests/tests/gtest-bug-comment.json\ntools/disable_tests/tests/gtest-conditional-to-unconditional.json\ntools/disable_tests/tests/gtest-conditional.json\ntools/disable_tests/tests/gtest-message.json\ntools/disable_tests/tests/gtest-redundant-conditions.json\ntools/disable_tests/tests/parameterised-gtest.json\ntools/download_optimization_profile.py\ntools/dromaeo_benchmark_runner/dromaeo_benchmark_runner.py\ntools/emacs/trybot-mac.txt\ntools/find_runtime_symbols/PRESUBMIT.py\ntools/flags/generate_clank_feature_flag.py\ntools/flags/list_flags.py\ntools/fuchsia/3pp/gn-sdk/3pp/fetch.py\ntools/fuchsia/3pp/test-scripts/3pp/fetch.py\ntools/generate_stubs/generate_stubs.py\ntools/gerrit/send_after_cq_dryrun.py\ntools/get_asan_chrome/get_asan_chrome.py\ntools/git/suggest_owners.py\ntools/grit/PRESUBMIT.py\ntools/grit/grit/format/chrome_messages_json.py\ntools/grit/grit/format/rc.py\ntools/grit/grit/gather/policy_json_unittest.py\ntools/grit/grit/gather/tr_html_unittest.py\ntools/grit/grit/grd_reader_unittest.py\ntools/grit/grit/node/misc.py\ntools/grit/grit/tclib_unittest.py\ntools/grit/grit/testdata/README.txt\ntools/grit/grit/testdata/about.html\ntools/grit/grit/testdata/bad_browser.html\ntools/grit/grit/testdata/cache_prefix.html\ntools/grit/grit/testdata/cache_prefix_file.html\ntools/grit/grit/testdata/del_header.html\ntools/grit/grit/testdata/error.html\ntools/grit/grit/testdata/install_prefs.html\ntools/grit/grit/testdata/oem_enable.html\ntools/grit/grit/testdata/onebox.html\ntools/grit/grit/testdata/preferences.html\ntools/grit/grit/testdata/privacy.html\ntools/grit/grit/tool/android2grd.py\ntools/grit/grit/tool/build.py\ntools/grit/grit/tool/resize.py\ntools/grit/grit/zip_helpers.py\ntools/grit/pak_util.py\ntools/grit/setup.py\ntools/include_tracer.py\ntools/infra/PRESUBMIT.py\ntools/infra/clobber_cache_utils.py\ntools/infra/find_bad_builds.py\ntools/jj/upload.py\ntools/jj/util.py\ntools/json_data_generator/PRESUBMIT.py\ntools/json_schema_compiler/PRESUBMIT.py\ntools/json_schema_compiler/js_externs_generator.py\ntools/json_schema_compiler/js_externs_generator_test.py\ntools/json_schema_compiler/js_interface_generator_test.py\ntools/json_schema_compiler/js_util.py\ntools/json_schema_compiler/preview.py\ntools/json_schema_compiler/test/content_settings.json\ntools/json_schema_compiler/test/converted_schemas/app_runtime.idl\ntools/json_schema_compiler/test/converted_schemas/bluetooth_low_energy.idl\ntools/json_schema_compiler/test/converted_schemas/bluetooth_socket.idl\ntools/json_schema_compiler/test/converted_schemas/networking_onc.idl\ntools/json_schema_compiler/test/converted_schemas/networking_private.idl\ntools/json_schema_compiler/test/converted_schemas/offscreen.idl\ntools/json_schema_compiler/test/converted_schemas/protocol_handlers.idl\ntools/json_schema_compiler/test/converted_schemas/serial.idl\ntools/json_schema_compiler/test/converted_schemas/web_accessible_resources.idl\ntools/json_schema_compiler/test/tabs.json\ntools/json_schema_compiler/test/windows.json\ntools/json_to_struct/PRESUBMIT.py\ntools/linux/PRESUBMIT.py\ntools/mac/download_symbols.py\ntools/mac/icons/compile_car.py\ntools/mac/power/scenarios.py\ntools/mb/mb.py\ntools/md_browser/base.css\ntools/md_browser/footer.html\ntools/md_browser/gitiles_autolink.py\ntools/md_browser/gitiles_ext_blocks.py\ntools/md_browser/gitiles_smart_quotes.py\ntools/md_browser/md_browser.py\ntools/media_engagement_preload/make_dafsa_unittest.py\ntools/metrics/PRESUBMIT.py\ntools/metrics/actions/PRESUBMIT.py\ntools/metrics/actions/actions.xml\ntools/metrics/actions/actions_model_test.py\ntools/metrics/actions/extract_actions_test.py\ntools/metrics/common/models.py\ntools/metrics/histograms/PRESUBMIT.py\ntools/metrics/histograms/enums.xml\ntools/metrics/histograms/expand_owners.py\ntools/metrics/histograms/expand_owners_unittest.py\ntools/metrics/histograms/extract_histograms.py\ntools/metrics/histograms/extract_histograms_test.py\ntools/metrics/histograms/generate_expired_histograms_array_unittest.py\ntools/metrics/histograms/histogram_configuration_model_test_histograms.py\ntools/metrics/histograms/merge_xml.py\ntools/metrics/histograms/merge_xml_test.py\ntools/metrics/histograms/metadata/accessibility/enums.xml\ntools/metrics/histograms/metadata/accessibility/histograms.xml\ntools/metrics/histograms/metadata/accessibility_annotator/histograms.xml\ntools/metrics/histograms/metadata/account_manager/histograms.xml\ntools/metrics/histograms/metadata/actor/enums.xml\ntools/metrics/histograms/metadata/actor/histograms.xml\ntools/metrics/histograms/metadata/ai/enums.xml\ntools/metrics/histograms/metadata/ai/histograms.xml\ntools/metrics/histograms/metadata/android/enums.xml\ntools/metrics/histograms/metadata/android/histograms.xml\ntools/metrics/histograms/metadata/apps/enums.xml\ntools/metrics/histograms/metadata/apps/histograms.xml\ntools/metrics/histograms/metadata/arc/enums.xml\ntools/metrics/histograms/metadata/arc/histograms.xml\ntools/metrics/histograms/metadata/ash/enums.xml\ntools/metrics/histograms/metadata/ash/histograms.xml\ntools/metrics/histograms/metadata/ash_clipboard/enums.xml\ntools/metrics/histograms/metadata/ash_clipboard/histograms.xml\ntools/metrics/histograms/metadata/ash_growth/enums.xml\ntools/metrics/histograms/metadata/ash_growth/histograms.xml\ntools/metrics/histograms/metadata/ash_user_education/enums.xml\ntools/metrics/histograms/metadata/ash_user_education/histograms.xml\ntools/metrics/histograms/metadata/assistant/histograms.xml\ntools/metrics/histograms/metadata/attribution_reporting/enums.xml\ntools/metrics/histograms/metadata/attribution_reporting/histograms.xml\ntools/metrics/histograms/metadata/autofill/enums.xml\ntools/metrics/histograms/metadata/autofill/histograms.xml\ntools/metrics/histograms/metadata/background/histograms.xml\ntools/metrics/histograms/metadata/blink/enums.xml\ntools/metrics/histograms/metadata/blink/histograms.xml\ntools/metrics/histograms/metadata/bluetooth/enums.xml\ntools/metrics/histograms/metadata/bluetooth/histograms.xml\ntools/metrics/histograms/metadata/bookmarks/enums.xml\ntools/metrics/histograms/metadata/bookmarks/histograms.xml\ntools/metrics/histograms/metadata/borealis/enums.xml\ntools/metrics/histograms/metadata/borealis/histograms.xml\ntools/metrics/histograms/metadata/browser/enums.xml\ntools/metrics/histograms/metadata/browser/histograms.xml\ntools/metrics/histograms/metadata/browsing_topics/enums.xml\ntools/metrics/histograms/metadata/browsing_topics/histograms.xml\ntools/metrics/histograms/metadata/bruschetta/histograms.xml\ntools/metrics/histograms/metadata/chrome/enums.xml\ntools/metrics/histograms/metadata/chrome/histograms.xml\ntools/metrics/histograms/metadata/chromeos/enums.xml\ntools/metrics/histograms/metadata/chromeos/histograms.xml\ntools/metrics/histograms/metadata/chromeos_hps/histograms.xml\ntools/metrics/histograms/metadata/chromeos_settings/enums.xml\ntools/metrics/histograms/metadata/chromeos_settings/histograms.xml\ntools/metrics/histograms/metadata/collaboration_service/enums.xml\ntools/metrics/histograms/metadata/collaboration_service/histograms.xml\ntools/metrics/histograms/metadata/commerce/enums.xml\ntools/metrics/histograms/metadata/commerce/histograms.xml\ntools/metrics/histograms/metadata/compose/enums.xml\ntools/metrics/histograms/metadata/compose/histograms.xml\ntools/metrics/histograms/metadata/compositing/enums.xml\ntools/metrics/histograms/metadata/compositing/histograms.xml\ntools/metrics/histograms/metadata/content/enums.xml\ntools/metrics/histograms/metadata/content/histograms.xml\ntools/metrics/histograms/metadata/content_extraction/histograms.xml\ntools/metrics/histograms/metadata/contextual_cueing/enums.xml\ntools/metrics/histograms/metadata/contextual_cueing/histograms.xml\ntools/metrics/histograms/metadata/contextual_search/enums.xml\ntools/metrics/histograms/metadata/contextual_search/histograms.xml\ntools/metrics/histograms/metadata/contextual_tasks/enums.xml\ntools/metrics/histograms/metadata/contextual_tasks/histograms.xml\ntools/metrics/histograms/metadata/cookie/enums.xml\ntools/metrics/histograms/metadata/cookie/histograms.xml\ntools/metrics/histograms/metadata/cras/enums.xml\ntools/metrics/histograms/metadata/cras/histograms.xml\ntools/metrics/histograms/metadata/cros/enums.xml\ntools/metrics/histograms/metadata/cros/histograms.xml\ntools/metrics/histograms/metadata/cros_audio/enums.xml\ntools/metrics/histograms/metadata/cros_audio/histograms.xml\ntools/metrics/histograms/metadata/cros_ml/enums.xml\ntools/metrics/histograms/metadata/cros_ml/histograms.xml\ntools/metrics/histograms/metadata/cross_device/enums.xml\ntools/metrics/histograms/metadata/cross_device/histograms.xml\ntools/metrics/histograms/metadata/crostini/enums.xml\ntools/metrics/histograms/metadata/crostini/histograms.xml\ntools/metrics/histograms/metadata/cryptohome/enums.xml\ntools/metrics/histograms/metadata/cryptohome/histograms.xml\ntools/metrics/histograms/metadata/custom_tabs/enums.xml\ntools/metrics/histograms/metadata/custom_tabs/histograms.xml\ntools/metrics/histograms/metadata/data/histograms.xml\ntools/metrics/histograms/metadata/data_sharing/enums.xml\ntools/metrics/histograms/metadata/data_sharing/histograms.xml\ntools/metrics/histograms/metadata/dev/enums.xml\ntools/metrics/histograms/metadata/dev/histograms.xml\ntools/metrics/histograms/metadata/disk/enums.xml\ntools/metrics/histograms/metadata/disk/histograms.xml\ntools/metrics/histograms/metadata/download/enums.xml\ntools/metrics/histograms/metadata/download/histograms.xml\ntools/metrics/histograms/metadata/dwa/histograms.xml\ntools/metrics/histograms/metadata/enterprise/enums.xml\ntools/metrics/histograms/metadata/enterprise/histograms.xml\ntools/metrics/histograms/metadata/event/enums.xml\ntools/metrics/histograms/metadata/event/histograms.xml\ntools/metrics/histograms/metadata/extensions/enums.xml\ntools/metrics/histograms/metadata/extensions/histograms.xml\ntools/metrics/histograms/metadata/facilitated_payments/enums.xml\ntools/metrics/histograms/metadata/facilitated_payments/histograms.xml\ntools/metrics/histograms/metadata/families/enums.xml\ntools/metrics/histograms/metadata/families/histograms.xml\ntools/metrics/histograms/metadata/fastpair/enums.xml\ntools/metrics/histograms/metadata/fastpair/histograms.xml\ntools/metrics/histograms/metadata/favicons/histograms.xml\ntools/metrics/histograms/metadata/feature_engagement/histograms.xml\ntools/metrics/histograms/metadata/file/enums.xml\ntools/metrics/histograms/metadata/file/histograms.xml\ntools/metrics/histograms/metadata/fingerprint/enums.xml\ntools/metrics/histograms/metadata/fingerprint/histograms.xml\ntools/metrics/histograms/metadata/game_mode/histograms.xml\ntools/metrics/histograms/metadata/gcm/histograms.xml\ntools/metrics/histograms/metadata/geolocation/enums.xml\ntools/metrics/histograms/metadata/geolocation/histograms.xml\ntools/metrics/histograms/metadata/glic/enums.xml\ntools/metrics/histograms/metadata/glic/histograms.xml\ntools/metrics/histograms/metadata/google/enums.xml\ntools/metrics/histograms/metadata/google/histograms.xml\ntools/metrics/histograms/metadata/gpu/enums.xml\ntools/metrics/histograms/metadata/gpu/histograms.xml\ntools/metrics/histograms/metadata/hang_watcher/enums.xml\ntools/metrics/histograms/metadata/hang_watcher/histograms.xml\ntools/metrics/histograms/metadata/help_app/histograms.xml\ntools/metrics/histograms/metadata/histogram_suffixes_list.xml\ntools/metrics/histograms/metadata/history/enums.xml\ntools/metrics/histograms/metadata/history/histograms.xml\ntools/metrics/histograms/metadata/holding_space/enums.xml\ntools/metrics/histograms/metadata/holding_space/histograms.xml\ntools/metrics/histograms/metadata/image/histograms.xml\ntools/metrics/histograms/metadata/input/enums.xml\ntools/metrics/histograms/metadata/input/histograms.xml\ntools/metrics/histograms/metadata/installer/enums.xml\ntools/metrics/histograms/metadata/installer/histograms.xml\ntools/metrics/histograms/metadata/interstitial/histograms.xml\ntools/metrics/histograms/metadata/invalidation/histograms.xml\ntools/metrics/histograms/metadata/ios/enums.xml\ntools/metrics/histograms/metadata/ios/histograms.xml\ntools/metrics/histograms/metadata/kerberos/histograms.xml\ntools/metrics/histograms/metadata/kiosk/histograms.xml\ntools/metrics/histograms/metadata/language/enums.xml\ntools/metrics/histograms/metadata/language/histograms.xml\ntools/metrics/histograms/metadata/legion/histograms.xml\ntools/metrics/histograms/metadata/lens/enums.xml\ntools/metrics/histograms/metadata/lens/histograms.xml\ntools/metrics/histograms/metadata/leveldb_proto/histograms.xml\ntools/metrics/histograms/metadata/linux/enums.xml\ntools/metrics/histograms/metadata/linux/histograms.xml\ntools/metrics/histograms/metadata/local/histograms.xml\ntools/metrics/histograms/metadata/login/histograms.xml\ntools/metrics/histograms/metadata/mac/enums.xml\ntools/metrics/histograms/metadata/mac/histograms.xml\ntools/metrics/histograms/metadata/magic_stack/enums.xml\ntools/metrics/histograms/metadata/magic_stack/histograms.xml\ntools/metrics/histograms/metadata/media/enums.xml\ntools/metrics/histograms/metadata/media/histograms.xml\ntools/metrics/histograms/metadata/memory/enums.xml\ntools/metrics/histograms/metadata/memory/histograms.xml\ntools/metrics/histograms/metadata/mobile/enums.xml\ntools/metrics/histograms/metadata/mobile/histograms.xml\ntools/metrics/histograms/metadata/navigation/enums.xml\ntools/metrics/histograms/metadata/navigation/histograms.xml\ntools/metrics/histograms/metadata/nearby/enums.xml\ntools/metrics/histograms/metadata/nearby/histograms.xml\ntools/metrics/histograms/metadata/net/enums.xml\ntools/metrics/histograms/metadata/net/histograms.xml\ntools/metrics/histograms/metadata/network/enums.xml\ntools/metrics/histograms/metadata/network/histograms.xml\ntools/metrics/histograms/metadata/new_tab_page/enums.xml\ntools/metrics/histograms/metadata/new_tab_page/histograms.xml\ntools/metrics/histograms/metadata/notifications/enums.xml\ntools/metrics/histograms/metadata/notifications/histograms.xml\ntools/metrics/histograms/metadata/offline/histograms.xml\ntools/metrics/histograms/metadata/omnibox/enums.xml\ntools/metrics/histograms/metadata/omnibox/histograms.xml\ntools/metrics/histograms/metadata/on_device_model/histograms.xml\ntools/metrics/histograms/metadata/oobe/enums.xml\ntools/metrics/histograms/metadata/oobe/histograms.xml\ntools/metrics/histograms/metadata/optimization/enums.xml\ntools/metrics/histograms/metadata/optimization/histograms.xml\ntools/metrics/histograms/metadata/others/enums.xml\ntools/metrics/histograms/metadata/others/histograms.xml\ntools/metrics/histograms/metadata/page/enums.xml\ntools/metrics/histograms/metadata/page/histograms.xml\ntools/metrics/histograms/metadata/password/enums.xml\ntools/metrics/histograms/metadata/password/histograms.xml\ntools/metrics/histograms/metadata/payment/enums.xml\ntools/metrics/histograms/metadata/payment/histograms.xml\ntools/metrics/histograms/metadata/pdf/enums.xml\ntools/metrics/histograms/metadata/pdf/histograms.xml\ntools/metrics/histograms/metadata/performance_controls/enums.xml\ntools/metrics/histograms/metadata/performance_controls/histograms.xml\ntools/metrics/histograms/metadata/performance_manager/enums.xml\ntools/metrics/histograms/metadata/performance_manager/histograms.xml\ntools/metrics/histograms/metadata/permissions/enums.xml\ntools/metrics/histograms/metadata/permissions/histograms.xml\ntools/metrics/histograms/metadata/persistent_cache/enums.xml\ntools/metrics/histograms/metadata/persistent_cache/histograms.xml\ntools/metrics/histograms/metadata/phonehub/enums.xml\ntools/metrics/histograms/metadata/phonehub/histograms.xml\ntools/metrics/histograms/metadata/platform/enums.xml\ntools/metrics/histograms/metadata/platform/histograms.xml\ntools/metrics/histograms/metadata/plugin_vm/histograms.xml\ntools/metrics/histograms/metadata/plus_addresses/enums.xml\ntools/metrics/histograms/metadata/plus_addresses/histograms.xml\ntools/metrics/histograms/metadata/power/enums.xml\ntools/metrics/histograms/metadata/power/histograms.xml\ntools/metrics/histograms/metadata/prefetch/enums.xml\ntools/metrics/histograms/metadata/prefetch/histograms.xml\ntools/metrics/histograms/metadata/preloading/histograms.xml\ntools/metrics/histograms/metadata/printing/enums.xml\ntools/metrics/histograms/metadata/printing/histograms.xml\ntools/metrics/histograms/metadata/privacy/enums.xml\ntools/metrics/histograms/metadata/privacy/histograms.xml\ntools/metrics/histograms/metadata/private_metrics/enums.xml\ntools/metrics/histograms/metadata/private_metrics/histograms.xml\ntools/metrics/histograms/metadata/profile/enums.xml\ntools/metrics/histograms/metadata/profile/histograms.xml\ntools/metrics/histograms/metadata/puma/enums.xml\ntools/metrics/histograms/metadata/puma/histograms.xml\ntools/metrics/histograms/metadata/quick_answers/histograms.xml\ntools/metrics/histograms/metadata/quickoffice/histograms.xml\ntools/metrics/histograms/metadata/quickstart/enums.xml\ntools/metrics/histograms/metadata/quickstart/histograms.xml\ntools/metrics/histograms/metadata/quota/histograms.xml\ntools/metrics/histograms/metadata/readaloud/enums.xml\ntools/metrics/histograms/metadata/readaloud/histograms.xml\ntools/metrics/histograms/metadata/regional_capabilities/enums.xml\ntools/metrics/histograms/metadata/regional_capabilities/histograms.xml\ntools/metrics/histograms/metadata/remoting/enums.xml\ntools/metrics/histograms/metadata/remoting/histograms.xml\ntools/metrics/histograms/metadata/renderer/enums.xml\ntools/metrics/histograms/metadata/renderer/histograms.xml\ntools/metrics/histograms/metadata/renderer4/histograms.xml\ntools/metrics/histograms/metadata/safe_browsing/enums.xml\ntools/metrics/histograms/metadata/safe_browsing/histograms.xml\ntools/metrics/histograms/metadata/sb_client/enums.xml\ntools/metrics/histograms/metadata/sb_client/histograms.xml\ntools/metrics/histograms/metadata/scanning/enums.xml\ntools/metrics/histograms/metadata/scanning/histograms.xml\ntools/metrics/histograms/metadata/scheduler/enums.xml\ntools/metrics/histograms/metadata/scheduler/histograms.xml\ntools/metrics/histograms/metadata/search/enums.xml\ntools/metrics/histograms/metadata/search/histograms.xml\ntools/metrics/histograms/metadata/security/enums.xml\ntools/metrics/histograms/metadata/security/histograms.xml\ntools/metrics/histograms/metadata/segmentation_platform/enums.xml\ntools/metrics/histograms/metadata/segmentation_platform/histograms.xml\ntools/metrics/histograms/metadata/sensitive_content/enums.xml\ntools/metrics/histograms/metadata/sensitive_content/histograms.xml\ntools/metrics/histograms/metadata/service/enums.xml\ntools/metrics/histograms/metadata/service/histograms.xml\ntools/metrics/histograms/metadata/session/enums.xml\ntools/metrics/histograms/metadata/session/histograms.xml\ntools/metrics/histograms/metadata/settings/enums.xml\ntools/metrics/histograms/metadata/settings/histograms.xml\ntools/metrics/histograms/metadata/sharing/enums.xml\ntools/metrics/histograms/metadata/sharing/histograms.xml\ntools/metrics/histograms/metadata/shortcuts/enums.xml\ntools/metrics/histograms/metadata/shortcuts/histograms.xml\ntools/metrics/histograms/metadata/signin/enums.xml\ntools/metrics/histograms/metadata/signin/histograms.xml\ntools/metrics/histograms/metadata/simple/histograms.xml\ntools/metrics/histograms/metadata/skia/enums.xml\ntools/metrics/histograms/metadata/skia/histograms.xml\ntools/metrics/histograms/metadata/skills/enums.xml\ntools/metrics/histograms/metadata/skills/histograms.xml\ntools/metrics/histograms/metadata/sql/enums.xml\ntools/metrics/histograms/metadata/sql/histograms.xml\ntools/metrics/histograms/metadata/stability/enums.xml\ntools/metrics/histograms/metadata/stability/histograms.xml\ntools/metrics/histograms/metadata/startup/enums.xml\ntools/metrics/histograms/metadata/startup/histograms.xml\ntools/metrics/histograms/metadata/storage/enums.xml\ntools/metrics/histograms/metadata/storage/histograms.xml\ntools/metrics/histograms/metadata/structured_metrics/enums.xml\ntools/metrics/histograms/metadata/structured_metrics/histograms.xml\ntools/metrics/histograms/metadata/subresource/histograms.xml\ntools/metrics/histograms/metadata/sync/enums.xml\ntools/metrics/histograms/metadata/sync/histograms.xml\ntools/metrics/histograms/metadata/system/histograms.xml\ntools/metrics/histograms/metadata/tab/enums.xml\ntools/metrics/histograms/metadata/tab/histograms.xml\ntools/metrics/histograms/metadata/task_manager/enums.xml\ntools/metrics/histograms/metadata/task_manager/histograms.xml\ntools/metrics/histograms/metadata/toasts/enums.xml\ntools/metrics/histograms/metadata/toasts/histograms.xml\ntools/metrics/histograms/metadata/translate/enums.xml\ntools/metrics/histograms/metadata/translate/histograms.xml\ntools/metrics/histograms/metadata/trusted_vault/enums.xml\ntools/metrics/histograms/metadata/trusted_vault/histograms.xml\ntools/metrics/histograms/metadata/ui/enums.xml\ntools/metrics/histograms/metadata/ui/histograms.xml\ntools/metrics/histograms/metadata/ukm/enums.xml\ntools/metrics/histograms/metadata/ukm/histograms.xml\ntools/metrics/histograms/metadata/uma/enums.xml\ntools/metrics/histograms/metadata/uma/histograms.xml\ntools/metrics/histograms/metadata/update_engine/histograms.xml\ntools/metrics/histograms/metadata/user_data_importer/enums.xml\ntools/metrics/histograms/metadata/user_data_importer/histograms.xml\ntools/metrics/histograms/metadata/user_education/histograms.xml\ntools/metrics/histograms/metadata/v8/enums.xml\ntools/metrics/histograms/metadata/v8/histograms.xml\ntools/metrics/histograms/metadata/variations/enums.xml\ntools/metrics/histograms/metadata/variations/histograms.xml\ntools/metrics/histograms/metadata/virtualization/histograms.xml\ntools/metrics/histograms/metadata/visited_url_ranking/enums.xml\ntools/metrics/histograms/metadata/visited_url_ranking/histograms.xml\ntools/metrics/histograms/metadata/wallet/enums.xml\ntools/metrics/histograms/metadata/wallet/histograms.xml\ntools/metrics/histograms/metadata/web_apk/enums.xml\ntools/metrics/histograms/metadata/web_apk/histograms.xml\ntools/metrics/histograms/metadata/web_audio/enums.xml\ntools/metrics/histograms/metadata/web_audio/histograms.xml\ntools/metrics/histograms/metadata/web_core/enums.xml\ntools/metrics/histograms/metadata/web_core/histograms.xml\ntools/metrics/histograms/metadata/web_rtc/enums.xml\ntools/metrics/histograms/metadata/web_rtc/histograms.xml\ntools/metrics/histograms/metadata/webapps/enums.xml\ntools/metrics/histograms/metadata/webapps/histograms.xml\ntools/metrics/histograms/metadata/webauthn/enums.xml\ntools/metrics/histograms/metadata/webauthn/histograms.xml\ntools/metrics/histograms/metadata/webnn/enums.xml\ntools/metrics/histograms/metadata/webnn/histograms.xml\ntools/metrics/histograms/metadata/windows/enums.xml\ntools/metrics/histograms/metadata/windows/histograms.xml\ntools/metrics/histograms/metadata/xr/enums.xml\ntools/metrics/histograms/metadata/xr/histograms.xml\ntools/metrics/histograms/name_expansion_metadata.py\ntools/metrics/histograms/populate_enums.py\ntools/metrics/histograms/pretty_print_test.py\ntools/metrics/histograms/split_enums.py\ntools/metrics/histograms/split_xml.py\ntools/metrics/histograms/test_data/components/histograms.xml\ntools/metrics/histograms/test_data/example_valid_enums.xml\ntools/metrics/histograms/test_data/example_valid_histograms.xml\ntools/metrics/histograms/test_data/histograms.xml\ntools/metrics/histograms/test_data/no_allowlist_entries_histograms.xml\ntools/metrics/histograms/test_data/tokens/token_errors_histograms.xml\ntools/metrics/histograms/test_data/tokens/variants_inline_histograms.xml\ntools/metrics/histograms/test_data/tokens/variants_missing_histograms.xml\ntools/metrics/histograms/test_data/tokens/variants_out_of_line_explicit_histograms.xml\ntools/metrics/histograms/test_data/tokens/variants_out_of_line_implicit_histograms.xml\ntools/metrics/histograms/test_data/ukm.xml\ntools/metrics/md2xml.py\ntools/metrics/private_metrics/PRESUBMIT.py\ntools/metrics/private_metrics/dwa.xml\ntools/metrics/private_metrics/private_metrics_model_shared_test.py\ntools/metrics/private_metrics/private_metrics_validations_test.py\ntools/metrics/structured/PRESUBMIT.py\ntools/metrics/structured/sync/model.py\ntools/metrics/structured/sync/model_unittest.py\ntools/metrics/structured/sync/structured.xml\ntools/metrics/structured/sync/structured_chromiumos.xml\ntools/metrics/ukm/PRESUBMIT.py\ntools/metrics/ukm/ukm.xml\ntools/metrics/ukm/ukm_model_test.py\ntools/metrics/ukm/xml_validations.py\ntools/metrics/ukm/xml_validations_test.py\ntools/nocompile/driver.py\ntools/omahaproxy.py\ntools/perf/PRESUBMIT.py\ntools/perf/benchmarks/ad_frames.py\ntools/perf/benchmarks/blink_perf.py\ntools/perf/benchmarks/desktop_ui.py\ntools/perf/benchmarks/dummy_benchmark.py\ntools/perf/benchmarks/dummy_wpr_benchmark.py\ntools/perf/benchmarks/jetstream2.py\ntools/perf/benchmarks/media.py\ntools/perf/benchmarks/memory.py\ntools/perf/benchmarks/octane.py\ntools/perf/benchmarks/omnibox_aim_perf_story.py\ntools/perf/benchmarks/power.py\ntools/perf/benchmarks/rasterize_and_record_micro.py\ntools/perf/benchmarks/rendering.py\ntools/perf/benchmarks/speedometer1.py\ntools/perf/benchmarks/speedometer2.py\ntools/perf/benchmarks/speedometer3.py\ntools/perf/benchmarks/startup_mobile.py\ntools/perf/benchmarks/system_health.py\ntools/perf/benchmarks/system_health_smoke_test.py\ntools/perf/benchmarks/v8.py\ntools/perf/benchmarks/v8_browsing.py\ntools/perf/benchmarks/v8_loading.py\ntools/perf/benchmarks/wasmpspdfkit.py\ntools/perf/benchmarks/webrtc.py\ntools/perf/cli_tools/tbmv3/trace_downloader.py\ntools/perf/cli_tools/tbmv3/trace_downloader_unittest.py\ntools/perf/cli_tools/update_wpr/update_wpr.py\ntools/perf/cli_tools/update_wpr/update_wpr_unittest.py\ntools/perf/contrib/cluster_telemetry/ad_tagging_ct.py\ntools/perf/contrib/cluster_telemetry/ct_benchmarks_util.py\ntools/perf/contrib/cluster_telemetry/generic_trace.py\ntools/perf/contrib/cluster_telemetry/skpicture_printer.py\ntools/perf/contrib/download_mobile/download_mobile.py\ntools/perf/contrib/download_mobile/page.html\ntools/perf/contrib/intelligence/companion.py\ntools/perf/contrib/leak_detection/data/leak_detection.json\ntools/perf/contrib/leak_detection/leak_detection.py\ntools/perf/contrib/leak_detection/page_sets.py\ntools/perf/contrib/memory_extras/memory_extras.py\ntools/perf/contrib/orderfile/orderfile.py\ntools/perf/contrib/power/battery.py\ntools/perf/contrib/power/ipc.py\ntools/perf/contrib/power/perf_profile.py\ntools/perf/contrib/power/powerups.py\ntools/perf/contrib/power/top_sites_story.py\ntools/perf/contrib/power/wakeups.py\ntools/perf/contrib/shared_storage/shared_storage.py\ntools/perf/contrib/system_health_scroll_jank/system_health_scroll_jank.py\ntools/perf/contrib/vr_benchmarks/vr_benchmarks.py\ntools/perf/core/bot_platforms.py\ntools/perf/core/perf_benchmark.py\ntools/perf/core/perf_data_generator.py\ntools/perf/core/results_dashboard.py\ntools/perf/core/results_dashboard_unittest.py\ntools/perf/core/results_merger.py\ntools/perf/core/results_processor/formatters/json3_output.py\ntools/perf/core/results_processor/processor_test.py\ntools/perf/core/results_processor/processor_unittest.py\ntools/perf/core/results_processor/util.py\ntools/perf/core/retrieve_story_timing.py\ntools/perf/core/services/buildbucket_service.py\ntools/perf/core/services/dashboard_service.py\ntools/perf/core/services/pinpoint_service.py\ntools/perf/core/services/request.py\ntools/perf/core/shard_maps/timing_data/mac-laptop_high_end-perf_timing.json\ntools/perf/core/shard_maps/timing_data/mac-laptop_low_end-perf_timing.json\ntools/perf/core/test_data/benchmarks_to_shard.json\ntools/perf/core/test_data/test_timing_data.json\ntools/perf/core/test_data/test_timing_data_1_build.json\ntools/perf/download_proto_trace.py\ntools/perf/generate_legacy_perf_dashboard_json.py\ntools/perf/generate_perf_sharding.py\ntools/perf/json_util.py\ntools/perf/json_util_unittest.py\ntools/perf/page_sets/ad_frames.py\ntools/perf/page_sets/alexa1-10000-urls.json\ntools/perf/page_sets/companion/basic_companion_story.py\ntools/perf/page_sets/cros_ui_cases.py\ntools/perf/page_sets/data/ad_frame.json\ntools/perf/page_sets/data/intl_ar_fa_he.json\ntools/perf/page_sets/data/intl_ja_zh.json\ntools/perf/page_sets/data/kraken.json\ntools/perf/page_sets/data/long_running_idle_gmail_page.json\ntools/perf/page_sets/data/top_10.json\ntools/perf/page_sets/data/top_25.json\ntools/perf/page_sets/data/v8_top_25.json\ntools/perf/page_sets/desktop_power.py\ntools/perf/page_sets/desktop_ui/new_tab_page_story.py\ntools/perf/page_sets/desktop_ui/omnibox_story.py\ntools/perf/page_sets/desktop_ui/url_list.py\ntools/perf/page_sets/dummy_wpr_story_set.py\ntools/perf/page_sets/google_pages.py\ntools/perf/page_sets/intl_ar_fa_he.py\ntools/perf/page_sets/intl_ja_zh.py\ntools/perf/page_sets/key_mobile_sites_smooth.py\ntools/perf/page_sets/key_silk_cases/font_wipe.html\ntools/perf/page_sets/login_helpers/chrome_login.py\ntools/perf/page_sets/login_helpers/facebook_login.py\ntools/perf/page_sets/login_helpers/google_login.py\ntools/perf/page_sets/login_helpers/linkedin_login.py\ntools/perf/page_sets/login_helpers/pinterest_login.py\ntools/perf/page_sets/maps_perf_test/performance.html\ntools/perf/page_sets/maps_perf_test/tracked.js\ntools/perf/page_sets/rendering/key_desktop_move_cases.py\ntools/perf/page_sets/rendering/key_silk_cases.py\ntools/perf/page_sets/rendering/motionmark.py\ntools/perf/page_sets/rendering/story_tags.py\ntools/perf/page_sets/rendering/top_real_world_desktop.py\ntools/perf/page_sets/rendering/top_real_world_mobile.py\ntools/perf/page_sets/rendering/tough_animation_cases.py\ntools/perf/page_sets/rendering/tough_canvas_cases.py\ntools/perf/page_sets/rendering/tough_filters_cases.py\ntools/perf/page_sets/rendering/tough_pinch_zoom_cases.py\ntools/perf/page_sets/rendering/tough_pinch_zoom_mobile_cases.py\ntools/perf/page_sets/system_health/accessibility_stories.py\ntools/perf/page_sets/system_health/background_stories.py\ntools/perf/page_sets/system_health/browsing_stories.py\ntools/perf/page_sets/system_health/loading_stories.py\ntools/perf/page_sets/system_health/long_running_stories.py\ntools/perf/page_sets/system_health/media_stories.py\ntools/perf/page_sets/system_health/system_health_stories.py\ntools/perf/page_sets/top_10.py\ntools/perf/page_sets/top_pages.py\ntools/perf/page_sets/tough_animation_cases/mix_blend_mode_propagating_isolation.html\ntools/perf/page_sets/v8_top_25.py\ntools/perf/page_sets/webrtc_cases/codec_constraints.html\ntools/perf/process_perf_results.py\ntools/perf/process_perf_results_unittest.py\ntools/perfbot-analysis/builder.js\ntools/perfbot-analysis/bulk-download.js\ntools/pgo/generate_profile.py\ntools/polymer/PRESUBMIT.py\ntools/polymer/css_to_wrapper.py\ntools/python/google/gethash_timer.py\ntools/resources/find_unused_resources.py\ntools/roll_webgl_conformance.py\ntools/run-swarmed.py\ntools/rust/build_bindgen.py\ntools/rust/build_crubit.py\ntools/rust/build_rust.py\ntools/sample_clang_tidy_results.py\ntools/site_compare/commands/measure.py\ntools/site_compare/commands/scrape.py\ntools/site_compare/scrapers/chrome/chromebase.py\ntools/site_compare/scrapers/firefox/firefox2.py\ntools/site_compare/scrapers/ie/ie7.py\ntools/site_compare/utils/browser_iterate.py\ntools/symsrc/source_index.py\ntools/test_selection/decisiongraph_invoker.py\ntools/traceline/svgui/traceline.js\ntools/tracing/PRESUBMIT.py\ntools/tracing/rename_breakpad.py\ntools/traffic_annotation/sample_traffic_annotation.cc\ntools/traffic_annotation/scripts/annotation_tools.py\ntools/traffic_annotation/scripts/auditor/auditor.py\ntools/traffic_annotation/scripts/auditor/auditor_test.py\ntools/traffic_annotation/scripts/auditor/util.py\ntools/traffic_annotation/scripts/test_data/extractor_outputs/bad_syntax_annotation6.txt\ntools/traffic_annotation/scripts/test_data/extractor_outputs/good_complete_annotation.txt\ntools/traffic_annotation/scripts/test_data/extractor_outputs/good_partial_annotation.txt\ntools/traffic_annotation/scripts/test_data/missing_new_field_sample_data/sample_new_field_not_safelisted.cc\ntools/traffic_annotation/scripts/test_data/missing_new_field_sample_data/test_new_field_safelisted.cc\ntools/traffic_annotation/scripts/test_data/test_sample_annotations.cc\ntools/traffic_annotation/scripts/update_annotations_doc.py\ntools/traffic_annotation/scripts/update_annotations_sheet.py\ntools/translation/upload_screenshots.py\ntools/typescript/PRESUBMIT.py\ntools/typescript/definitions/command_line_private.d.ts\ntools/typescript/definitions/pending.d.ts\ntools/typescript/definitions/system_display.d.ts\ntools/usb_gadget/gadget.py\ntools/usb_gadget/msos20_descriptors.py\ntools/utr/builders.py\ntools/utr/cipd.py\ntools/utr/output_adapter_test.py\ntools/utr/recipe.py\ntools/variations/bisect_variations.py\ntools/variations/fieldtrial_util_unittest.py\ntools/visual_debugger/app.html\ntools/vscode/settings.json\ntools/warning_analysis/pull_logs.py\ntools/web_dev_style/html_checker.py\ntools/web_dev_style/js_checker.py\ntools/web_dev_style/js_checker_test.py\ntools/web_dev_style/resource_checker.py\ntools/win/CreateTempFilesPerfEvaluation/CreateTempFilesPerfEval.cc\ntools/win/CreateTempFilesPerfEvaluation/ReadMe.txt\ntools/win/DebugVisualizers/BUILD.gn\ntools/win/IdleWakeups/system_information_sampler.cpp\ntools/win/RetrieveSymbols/RetrieveSymbols.cpp\ntools/win/ShowThreadNames/ReadMe.txt\ntools/win/chromeexts/commands/hwnd_command.cc\ntools/win/sizeviewer/template.html\nui/accelerated_widget_mac/ca_renderer_layer_tree.h\nui/accessibility/ax_clipping_behavior.h\nui/accessibility/ax_offscreen_result.h\nui/accessibility/ax_position.h\nui/accessibility/ax_range.h\nui/accessibility/ax_role_properties.cc\nui/accessibility/extensions/color_contrast_companion/help.html\nui/accessibility/extensions/strings/accessibility_extensions_strings.grd\nui/accessibility/extensions/tools/webstore_extension_util.py\nui/accessibility/platform/ax_platform.cc\nui/accessibility/platform/ax_platform_node_base_unittest.cc\nui/accessibility/platform/ax_platform_node_delegate_utils_win.cc\nui/accessibility/platform/ax_platform_node_textrangeprovider_win.cc\nui/accessibility/platform/ax_platform_node_textrangeprovider_win_unittest.cc\nui/accessibility/platform/ax_platform_node_win.cc\nui/accessibility/platform/browser_accessibility.h\nui/accessibility/platform/browser_accessibility_manager.cc\nui/accessibility/platform/browser_accessibility_manager.h\nui/accessibility/platform/browser_accessibility_manager_mac.mm\nui/accessibility/platform/browser_accessibility_manager_win.cc\nui/accessibility/platform/fuchsia/browser_accessibility_fuchsia.h\nui/accessibility/platform/uia_registrar_win.h\nui/android/color_utils_android_unittest.cc\nui/android/java/res/values/strings.xml\nui/base/accelerators/command.cc\nui/base/accelerators/command.h\nui/base/clipboard/clipboard.h\nui/base/clipboard/clipboard_android.h\nui/base/clipboard/clipboard_format_type.h\nui/base/clipboard/clipboard_format_type_win.cc\nui/base/clipboard/clipboard_mac_unittest.mm\nui/base/clipboard/clipboard_test_template.h\nui/base/clipboard/clipboard_util_mac_unittest.mm\nui/base/clipboard/clipboard_util_win.cc\nui/base/clipboard/clipboard_win.cc\nui/base/clipboard/clipboard_win.h\nui/base/clipboard/url_file_parser_unittest.cc\nui/base/cocoa/tool_tip_base_view.mm\nui/base/cursor/cursor.cc\nui/base/dragdrop/os_exchange_data_provider_win.cc\nui/base/dragdrop/os_exchange_data_unittest.cc\nui/base/dragdrop/os_exchange_data_win_unittest.cc\nui/base/ime/PRESUBMIT.py\nui/base/ime/character_composer_sequences.txt\nui/base/ime/text_input_client.h\nui/base/ime/win/tsf_bridge.cc\nui/base/ime/win/tsf_text_store.cc\nui/base/ime/win/tsf_text_store.h\nui/base/l10n/l10n_util_win.h\nui/base/prediction/linear_resampling.h\nui/base/resource/data_pack.cc\nui/base/resource/resource_bundle.h\nui/base/test/skia_gold_matching_algorithm.h\nui/base/test/skia_gold_pixel_diff.cc\nui/base/ui_base_features.h\nui/base/win/event_creation_utils.cc\nui/base/win/win_cursor.cc\nui/chromeos/file_manager_strings.grdp\nui/color/PRESUBMIT.py\nui/display/display_switches.cc\nui/display/display_transform.cc\nui/display/mac/cv_display_link_mac.mm\nui/display/manager/tools/index.html\nui/display/types/display_constants.h\nui/display/win/screen_win.cc\nui/display/win/screen_win_headless.cc\nui/display/win/test/virtual_display_util_win.cc\nui/events/android/motion_event_android_unittest.cc\nui/events/blink/blink_event_util.cc\nui/events/devices/input_device_observer_win.cc\nui/events/gesture_detection/gesture_provider_unittest.cc\nui/events/gesture_detection/touch_disposition_gesture_filter.cc\nui/events/gestures/gesture_recognizer_impl.cc\nui/events/keycodes/dom/dom_keyboard_layout_map_win.cc\nui/events/keycodes/keyboard_code_conversion_mac.mm\nui/events/keycodes/keyboard_code_conversion_x.cc\nui/events/keycodes/keyboard_codes_posix.h\nui/events/keycodes/platform_key_map_win.cc\nui/events/ozone/evdev/touch_filter/palm_detection_filter_factory.h\nui/events/test/keyboard_layout_win.cc\nui/events/win/events_win.cc\nui/events/win/events_win_utils.cc\nui/events/win/modifier_keyboard_hook_win.cc\nui/file_manager/base/gn/PRESUBMIT.py\nui/file_manager/file_manager/background/js/volume_info.ts\nui/file_manager/file_manager/background/js/volume_manager_unittest.ts\nui/file_manager/file_manager/common/js/files_app_entry_types.ts\nui/file_manager/file_manager/common/js/filtered_volume_manager.ts\nui/file_manager/file_manager/common/js/trash.ts\nui/file_manager/file_manager/foreground/elements/icons.html\nui/file_manager/file_manager/foreground/js/file_manager_commands.ts\nui/file_manager/file_manager/foreground/js/file_transfer_controller.ts\nui/file_manager/file_manager/foreground/js/ui/banners/google_one_offer_banner.html\nui/file_manager/file_manager/foreground/js/ui/file_tap_handler.ts\nui/file_manager/file_manager/foreground/js/ui/menu_unittest.ts\nui/file_manager/file_manager/widgets/xf_bulk_pinning_dialog.ts\nui/file_manager/file_manager/widgets/xf_bulk_pinning_dialog_unittest.ts\nui/file_manager/image_loader/piex/Makefile\nui/file_manager/image_loader/piex/package.json\nui/file_manager/image_loader/service_worker.ts\nui/file_manager/integration_tests/file_manager/choose_entry.ts\nui/file_manager/integration_tests/file_manager/drive_specific.ts\nui/file_manager/integration_tests/file_manager/office.ts\nui/file_manager/integration_tests/remote_call.ts\nui/file_manager/integration_tests/test_util.ts\nui/gfx/PRESUBMIT.py\nui/gfx/codec/vector_wstream.cc\nui/gfx/color_analysis.h\nui/gfx/font.h\nui/gfx/font_fallback_win.h\nui/gfx/font_names_testing.h\nui/gfx/geometry/matrix44.cc\nui/gfx/render_text.cc\nui/gfx/render_text_unittest.cc\nui/gfx/text_elider_unittest.cc\nui/gfx/win/hwnd_util.cc\nui/gfx/win/icon_util.cc\nui/gfx/win/icon_util.h\nui/gfx/win/physical_size.cc\nui/gfx/win/singleton_hwnd_hot_key_observer.cc\nui/gl/android/scoped_a_native_window.cc\nui/gl/dcomp_presenter_unittest.cc\nui/gl/direct_composition_support.cc\nui/gl/gl_display.cc\nui/gl/gl_surface_egl.cc\nui/gl/gl_surface_presentation_helper.cc\nui/gl/hdr_metadata_helper_win.cc\nui/gl/os_compositor_tree_base.h\nui/gl/vsync_thread_win_dxgi.cc\nui/gtk/printing/print_dialog_gtk.cc\nui/latency/latency_info.h\nui/menus/android/menu_model_bridge.h\nui/native_theme/os_settings_provider.cc\nui/native_theme/os_settings_provider_win.cc\nui/ozone/ozone.gni\nui/ozone/platform/wayland/host/wayland_clipboard.cc\nui/ozone/platform/wayland/host/wayland_data_drag_controller.cc\nui/ozone/platform/wayland/host/wayland_output.h\nui/ozone/platform/wayland/host/wayland_window.cc\nui/ozone/platform/wayland/host/xdg_popup.cc\nui/ozone/platform/x11/test/os_exchange_data_provider_x11_unittest.cc\nui/ozone/platform/x11/x11_window.cc\nui/resources/PRESUBMIT.py\nui/resources/README.txt\nui/resources/resource_check/ico_files.py\nui/resources/resource_check/resource_scale_factors.py\nui/shell_dialogs/auto_close_dialog_event_handler_win.cc\nui/shell_dialogs/select_file_dialog.h\nui/shell_dialogs/selected_file_info.h\nui/strings/ui_strings.grd\nui/views/PRESUBMIT.py\nui/views/accessibility/view_ax_platform_node_delegate_win_unittest.cc\nui/views/animation/animation_builder.cc\nui/views/animation/animation_builder.h\nui/views/animation/ink_drop_ripple.h\nui/views/bubble/bubble_dialog_delegate_view.cc\nui/views/controls/table/table_view_unittest.cc\nui/views/controls/textfield/textfield_model_unittest.cc\nui/views/examples/webview_example.cc\nui/views/focus/focus_manager_unittest.cc\nui/views/interaction/interaction_sequence_views_unittest.cc\nui/views/layout/flex_layout_unittest.cc\nui/views/view.h\nui/views/view_targeter_delegate.h\nui/views/view_unittest.cc\nui/views/widget/desktop_aura/desktop_native_widget_aura.cc\nui/views/win/hwnd_message_handler.cc\nui/views/window/non_client_view.cc\nui/webui/resources/cr_components/composebox/composebox_voice_search.ts\nui/webui/resources/cr_components/cr_shortcut_input/cr_shortcut_input.ts\nui/webui/resources/cr_components/help_bubble/help_bubble_icons.html\nui/webui/resources/cr_components/searchbox/searchbox_browser_proxy.ts\nui/webui/resources/cr_elements/icons.html.ts\nui/webui/resources/js/ios/web_ui.js\nui/webui/resources/tools/build_webui.gni\nurl/BUILD.gn\nurl/android/gurl_java_test_helper.cc\nurl/gurl.h\nurl/gurl_unittest.cc\nurl/ipc/url_param_traits_unittest.cc\nurl/mojom/url_gurl_mojom_traits_unittest.cc\nurl/origin_unittest.cc\nurl/third_party/mozilla/url_parse.cc\nurl/third_party/mozilla/url_parse.h\nurl/url_canon_relative.cc\nurl/url_canon_unittest.cc\nurl/url_idna_icu.cc\nurl/url_parse_perftest.cc\nurl/url_parse_unittest.cc\nurl/url_util.cc\nurl/url_util.h\nurl/url_util_unittest.cc\nv8/PRESUBMIT.py\nv8/build_overrides/partition_alloc.gni\nv8/include/cppgc/internal/compiler-specific.h\nv8/include/v8-callbacks.h\nv8/include/v8-context.h\nv8/include/v8-fast-api-calls.h\nv8/include/v8-initialization.h\nv8/include/v8-isolate.h\nv8/include/v8config.h\nv8/infra/mb/gn_isolate_map.pyl\nv8/samples/process.cc\nv8/src/base/compiler-specific.h\nv8/src/base/cpu.cc\nv8/src/base/debug/stack_trace.h\nv8/src/base/debug/stack_trace_win.cc\nv8/src/base/platform/memory.h\nv8/src/base/platform/platform-posix.cc\nv8/src/base/platform/platform-qnx.cc\nv8/src/base/platform/platform-starboard.cc\nv8/src/base/platform/platform-win32.cc\nv8/src/base/platform/time.cc\nv8/src/base/strong-alias.h\nv8/src/base/utils/random-number-generator.cc\nv8/src/base/utils/random-number-generator.h\nv8/src/codegen/arm/macro-assembler-arm.cc\nv8/src/codegen/arm64/macro-assembler-arm64-inl.h\nv8/src/codegen/arm64/macro-assembler-arm64.cc\nv8/src/codegen/ia32/macro-assembler-ia32.cc\nv8/src/codegen/reloc-info.h\nv8/src/codegen/x64/macro-assembler-x64.cc\nv8/src/codegen/x64/register-x64.h\nv8/src/common/globals.h\nv8/src/compiler/backend/instruction.cc\nv8/src/compiler/backend/riscv/instruction-selector-riscv32.cc\nv8/src/compiler/c-linkage.cc\nv8/src/compiler/js-call-reducer.cc\nv8/src/compiler/machine-operator.cc\nv8/src/compiler/turboshaft/late-load-elimination-reducer.h\nv8/src/compiler/turboshaft/turbolev-graph-builder.cc\nv8/src/compiler/turboshaft/wasm-in-js-inlining-reducer-inl.h\nv8/src/d8/d8-posix.cc\nv8/src/d8/d8.cc\nv8/src/debug/debug-evaluate.cc\nv8/src/debug/debug-wasm-objects.cc\nv8/src/debug/debug.cc\nv8/src/debug/interface-types.h\nv8/src/debug/wasm/gdb-server/transport.cc\nv8/src/deoptimizer/deoptimizer.cc\nv8/src/diagnostics/etw-jit-metadata-win.h\nv8/src/diagnostics/unwinding-info-win64.cc\nv8/src/diagnostics/unwinding-info-win64.h\nv8/src/flags/flag-definitions.h\nv8/src/handles/handles.h\nv8/src/heap/code-range.cc\nv8/src/inspector/v8-console.h\nv8/src/inspector/v8-regex.cc\nv8/src/inspector/value-mirror.h\nv8/src/libplatform/default-thread-isolated-allocator.cc\nv8/src/libplatform/tracing/recorder-win.cc\nv8/src/libsampler/sampler.cc\nv8/src/objects/js-array-buffer.h\nv8/src/objects/js-number-format.cc\nv8/src/objects/map.h\nv8/src/objects/objects.h\nv8/src/objects/ordered-hash-table.h\nv8/src/objects/string-inl.h\nv8/src/objects/value-serializer.cc\nv8/src/parsing/parser-base.h\nv8/src/regexp/regexp.cc\nv8/src/runtime/runtime-test-wasm.cc\nv8/src/sandbox/bytecode-verifier.h\nv8/src/sandbox/sandbox.cc\nv8/src/snapshot/embedded/platform-embedded-file-writer-win.cc\nv8/src/torque/source-positions.h\nv8/src/tracing/trace-event.h\nv8/src/trap-handler/handler-inside-posix.cc\nv8/src/trap-handler/handler-inside-win.cc\nv8/src/trap-handler/handler-inside.cc\nv8/src/trap-handler/handler-outside-posix.cc\nv8/src/trap-handler/handler-outside-win.cc\nv8/src/trap-handler/handler-outside.cc\nv8/src/trap-handler/handler-shared.cc\nv8/src/wasm/interpreter/arm64/interpreter-builtins-arm64.cc\nv8/src/wasm/interpreter/riscv/interpreter-builtins-riscv.cc\nv8/src/wasm/interpreter/wasm-interpreter-runtime.cc\nv8/src/wasm/interpreter/wasm-interpreter-simd.cc\nv8/src/wasm/interpreter/wasm-interpreter.cc\nv8/src/wasm/interpreter/wasm-interpreter.h\nv8/src/wasm/interpreter/x64/interpreter-builtins-x64.cc\nv8/src/wasm/wasm-code-manager.cc\nv8/src/wasm/wasm-debug.cc\nv8/testing/gtest/BUILD.gn\nv8/third_party/googletest/BUILD.gn\nv8/third_party/inspector_protocol/crdtp/cbor.cc\nv8/third_party/inspector_protocol/crdtp/json.cc\nv8/third_party/inspector_protocol/roll.py\nv8/third_party/siphash/halfsiphash.cc\nv8/third_party/siphash/halfsiphash.h\nv8/third_party/utf8-decoder/utf8-decoder.h\nv8/tools/builtins-pgo/download_profiles.py\nv8/tools/builtins-pgo/profiles/meta.json\nv8/tools/callstats.html\nv8/tools/callstats.py\nv8/tools/clusterfuzz/js_fuzzer/package.json\nv8/tools/cppgc/gen_cmake.py\nv8/tools/dev/gm.py\nv8/tools/dev/setup-reclient.py\nv8/tools/grokdump.py\nv8/tools/heap-snapshot-processor.py\nv8/tools/heap-stats/index.html\nv8/tools/mb/mb.py\nv8/tools/parse-processor.html\nv8/tools/profview/index.html\nv8/tools/release/common_includes.py\nv8/tools/release/create_release.py\nv8/tools/release/git_recipes.py\nv8/tools/release/merge_to_branch_gerrit.py\nv8/tools/release/roll_bisect.py\nv8/tools/release/roll_merge_gerrit.py\nv8/tools/release/roll_merge_gerrit_test.py\nv8/tools/release/test_scripts.py\nv8/tools/release/testdata/roll_merge_gerrit_happy_path.txt\nv8/tools/run_perf.py\nv8/tools/sanitizers/sancov_formatter.py\nv8/tools/sanitizers/sancov_merger.py\nv8/tools/sanitizers/tsan_suppressions.txt\nv8/tools/system-analyzer/index.html\nv8/tools/testrunner/local/variants.py\nv8/tools/try_perf.py\nv8/tools/unittests/run_perf_test.py\nv8/tools/unittests/testdata/test1.json\nv8/tools/unittests/testdata/test2.json\nv8/tools/unittests/testdata/test3.json\nv8/tools/v8windbg/base/dbgext.cc\nv8/tools/v8windbg/test/debug-callbacks.h\nv8/tools/v8windbg/test/v8windbg-test.cc\nv8/tools/visual_studio/README.txt\nv8/tools/zone-stats/index.html\n"
  },
  {
    "path": "downloads.ini",
    "content": "# Official Chromium source code archive\n# NOTE: Substitutions beginning with underscore are provided by utils\n[chromium]\nurl = https://commondatastorage.googleapis.com/chromium-browser-official/chromium-%(_chromium_version)s-lite.tar.xz\ndownload_filename = chromium-%(_chromium_version)s-lite.tar.xz\nhash_url = chromium|chromium-%(_chromium_version)s-lite.tar.xz.hashes|https://commondatastorage.googleapis.com/chromium-browser-official/chromium-%(_chromium_version)s-lite.tar.xz.hashes\noutput_path = ./\nstrip_leading_dirs = chromium-%(_chromium_version)s\n"
  },
  {
    "path": "flags.gn",
    "content": "build_with_tflite_lib=false\nchrome_pgo_phase=0\nclang_use_chrome_plugins=false\ndisable_fieldtrial_testing_config=true\nenable_hangout_services_extension=false\nenable_mdns=false\nenable_remoting=false\nenable_reporting=false\nenable_service_discovery=false\nenable_widevine=true\nexclude_unwind_tables=true\ngoogle_api_key=\"\"\ngoogle_default_client_id=\"\"\ngoogle_default_client_secret=\"\"\nsafe_browsing_mode=0\ntreat_warnings_as_errors=false\nuse_official_google_api_keys=false\nuse_unofficial_version_number=false\n"
  },
  {
    "path": "patches/core/bromite/disable-fetching-field-trials.patch",
    "content": "# NOTE: Modified to remove usage of compiler #if macros\nFrom: csagan5 <32685696+csagan5@users.noreply.github.com>\nDate: Sun, 8 Jul 2018 18:16:34 +0200\nSubject: Disable fetching of all field trials\n\n---\n .../browser/flags/ChromeFeatureList.java      | 19 ++++---------------\n .../variations/service/variations_service.cc  | 12 +-----------\n 2 files changed, 5 insertions(+), 26 deletions(-)\n\n--- a/chrome/browser/flags/android/java/src/org/chromium/chrome/browser/flags/ChromeFeatureList.java\n+++ b/chrome/browser/flags/android/java/src/org/chromium/chrome/browser/flags/ChromeFeatureList.java\n@@ -62,7 +62,7 @@ public abstract class ChromeFeatureList\n      * |kFeaturesExposedToJava| in chrome/browser/flags/android/chrome_feature_list.cc\n      */\n     public static String getFieldTrialParamByFeature(String featureName, String paramName) {\n-        return ChromeFeatureMap.getInstance().getFieldTrialParamByFeature(featureName, paramName);\n+        return \"\";\n     }\n \n     /**\n@@ -74,8 +74,7 @@ public abstract class ChromeFeatureList\n      */\n     public static boolean getFieldTrialParamByFeatureAsBoolean(\n             String featureName, String paramName, boolean defaultValue) {\n-        return ChromeFeatureMap.getInstance()\n-                .getFieldTrialParamByFeatureAsBoolean(featureName, paramName, defaultValue);\n+        return defaultValue;\n     }\n \n     /**\n@@ -87,8 +86,7 @@ public abstract class ChromeFeatureList\n      */\n     public static int getFieldTrialParamByFeatureAsInt(\n             String featureName, String paramName, int defaultValue) {\n-        return ChromeFeatureMap.getInstance()\n-                .getFieldTrialParamByFeatureAsInt(featureName, paramName, defaultValue);\n+        return defaultValue;\n     }\n \n     /**\n@@ -100,8 +98,7 @@ public abstract class ChromeFeatureList\n      */\n     public static double getFieldTrialParamByFeatureAsDouble(\n             String featureName, String paramName, double defaultValue) {\n-        return ChromeFeatureMap.getInstance()\n-                .getFieldTrialParamByFeatureAsDouble(featureName, paramName, defaultValue);\n+        return defaultValue;\n     }\n \n     /**\n--- a/components/variations/service/variations_service.cc\n+++ b/components/variations/service/variations_service.cc\n@@ -224,22 +224,7 @@ bool GetInstanceManipulations(const net:\n // Variations seed fetching is only enabled in official Chrome builds, if a URL\n // is specified on the command line, and for testing.\n bool IsFetchingEnabled() {\n-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)\n-  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n-          switches::kDisableVariationsSeedFetch)) {\n     return false;\n-  }\n-#else\n-  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(\n-          switches::kVariationsServerURL) &&\n-      !g_should_fetch_for_testing) {\n-    DVLOG(1)\n-        << \"Not performing repeated fetching in unofficial build without --\"\n-        << switches::kVariationsServerURL << \" specified.\";\n-    return false;\n-  }\n-#endif  // BUILDFLAG(GOOGLE_CHROME_BRANDING)\n-  return true;\n }\n \n // Returns the already downloaded first run seed, and clear the seed from the\n"
  },
  {
    "path": "patches/core/inox-patchset/0001-fix-building-without-safebrowsing.patch",
    "content": "--- a/chrome/browser/BUILD.gn\n+++ b/chrome/browser/BUILD.gn\n@@ -3749,8 +3749,6 @@ static_library(\"browser\") {\n       \"download/download_auto_open_policy_handler.cc\",\n       \"download/download_auto_open_policy_handler.h\",\n       \"download/download_commands.cc\",\n-      \"download/download_danger_prompt.cc\",\n-      \"download/download_danger_prompt.h\",\n       \"download/download_dir_policy_handler.cc\",\n       \"download/download_dir_policy_handler.h\",\n       \"download/download_dir_util.cc\",\n--- a/chrome/browser/chrome_content_browser_client_navigation_throttles.cc\n+++ b/chrome/browser/chrome_content_browser_client_navigation_throttles.cc\n@@ -418,10 +418,6 @@ void CreateAndAddChromeThrottlesForNavig\n           Profile::FromBrowserContext(context)),\n       SafeSearchFactory::GetForBrowserContext(context)));\n \n-  // Before setting up SSL error detection, configure SSLErrorHandler to invoke\n-  // the relevant extension API whenever an SSL interstitial is shown.\n-  SSLErrorHandler::SetClientCallbackOnInterstitialsShown(\n-      base::BindRepeating(&MaybeTriggerSecurityInterstitialShownEvent));\n   registry.AddThrottle(std::make_unique<SSLErrorNavigationThrottle>(\n       registry, base::BindOnce(&HandleSSLErrorWrapper),\n       base::BindOnce(&IsInHostedApp),\n--- a/chrome/browser/component_updater/file_type_policies_component_installer.cc\n+++ b/chrome/browser/component_updater/file_type_policies_component_installer.cc\n@@ -36,21 +36,6 @@ const uint8_t kFileTypePoliciesPublicKey\n const char kFileTypePoliciesManifestName[] = \"File Type Policies\";\n \n void LoadFileTypesFromDisk(const base::FilePath& pb_path) {\n-  if (pb_path.empty()) {\n-    return;\n-  }\n-\n-  VLOG(1) << \"Reading Download File Types from file: \" << pb_path.value();\n-  std::string binary_pb;\n-  if (!base::ReadFileToString(pb_path, &binary_pb)) {\n-    // The file won't exist on new installations, so this is not always an\n-    // error.\n-    VLOG(1) << \"Failed reading from \" << pb_path.value();\n-    return;\n-  }\n-\n-  safe_browsing::FileTypePolicies::GetInstance()->PopulateFromDynamicUpdate(\n-      binary_pb);\n }\n \n }  // namespace\n--- a/chrome/browser/download/download_item_model.cc\n+++ b/chrome/browser/download/download_item_model.cc\n@@ -127,7 +127,7 @@ class DownloadItemModelData : public bas\n \n   // Danger level of the file determined based on the file type and whether\n   // there was a user action associated with the download.\n-  DownloadFileType::DangerLevel danger_level_ = DownloadFileType::NOT_DANGEROUS;\n+  safe_browsing::DownloadFileType::DangerLevel danger_level_ = safe_browsing::DownloadFileType::NOT_DANGEROUS;\n \n   // Whether the download is currently being revived.\n   bool is_being_revived_ = false;\n@@ -466,13 +466,13 @@ void DownloadItemModel::SetShouldPreferO\n   data->should_prefer_opening_in_browser_ = preference;\n }\n \n-DownloadFileType::DangerLevel DownloadItemModel::GetDangerLevel() const {\n+safe_browsing::DownloadFileType::DangerLevel DownloadItemModel::GetDangerLevel() const {\n   const DownloadItemModelData* data = DownloadItemModelData::Get(download_);\n-  return data ? data->danger_level_ : DownloadFileType::NOT_DANGEROUS;\n+  return data ? data->danger_level_ : safe_browsing::DownloadFileType::NOT_DANGEROUS;\n }\n \n void DownloadItemModel::SetDangerLevel(\n-    DownloadFileType::DangerLevel danger_level) {\n+    safe_browsing::DownloadFileType::DangerLevel danger_level) {\n   DownloadItemModelData* data = DownloadItemModelData::GetOrCreate(download_);\n   data->danger_level_ = danger_level;\n }\n--- a/chrome/browser/extensions/api/downloads/downloads_api.cc\n+++ b/chrome/browser/extensions/api/downloads/downloads_api.cc\n@@ -87,7 +87,6 @@\n #endif\n \n #if BUILDFLAG(ENABLE_EXTENSIONS)\n-#include \"chrome/browser/download/download_danger_prompt.h\"\n #include \"chrome/browser/ui/browser.h\"\n #include \"chrome/browser/ui/browser_window.h\"\n #endif\n@@ -1367,9 +1366,6 @@ DownloadsAcceptDangerFunction::Downloads\n \n DownloadsAcceptDangerFunction::~DownloadsAcceptDangerFunction() = default;\n \n-DownloadsAcceptDangerFunction::OnPromptCreatedCallback*\n-    DownloadsAcceptDangerFunction::on_prompt_created_ = nullptr;\n-\n ExtensionFunction::ResponseAction DownloadsAcceptDangerFunction::Run() {\n   std::optional<downloads::AcceptDanger::Params> params =\n       downloads::AcceptDanger::Params::Create(args());\n@@ -1417,50 +1413,13 @@ void DownloadsAcceptDangerFunction::Prom\n   }\n   RecordApiFunctions(DownloadsFunctionName::kDownloadsFunctionAcceptDanger);\n #if BUILDFLAG(ENABLE_EXTENSIONS)\n-  // DownloadDangerPrompt displays a modal dialog using native widgets that the\n-  // user must either accept or cancel. It cannot be scripted.\n-  DownloadDangerPrompt* prompt = DownloadDangerPrompt::Create(\n-      download_item, web_contents,\n-      base::BindOnce(&DownloadsAcceptDangerFunction::DangerPromptCallback, this,\n-                     download_id));\n-  // DownloadDangerPrompt deletes itself\n-  if (on_prompt_created_ && !on_prompt_created_->is_null()) {\n-    std::move(*on_prompt_created_).Run(prompt);\n-    on_prompt_created_ = nullptr;\n-  }\n-  // Function finishes in DangerPromptCallback().\n+  download_item->ValidateDangerousDownload();\n #else\n   NOTIMPLEMENTED();\n   Respond(Error(\"DownloadDangerPrompt not implemented\"));\n #endif  // BUILDFLAG(ENABLE_EXTENSIONS)\n }\n \n-void DownloadsAcceptDangerFunction::DangerPromptCallback(\n-    int download_id,\n-    DownloadDangerPrompt::Action action) {\n-  DCHECK_CURRENTLY_ON(BrowserThread::UI);\n-  DownloadItem* download_item = GetDownload(\n-      browser_context(), include_incognito_information(), download_id);\n-  std::string error;\n-  if (InvalidId(download_item, &error) ||\n-      Fault(download_item->GetState() != DownloadItem::IN_PROGRESS,\n-            download_extension_errors::kNotInProgress, &error)) {\n-    Respond(Error(std::move(error)));\n-    return;\n-  }\n-  switch (action) {\n-    case DownloadDangerPrompt::ACCEPT:\n-      download_item->ValidateDangerousDownload();\n-      break;\n-    case DownloadDangerPrompt::CANCEL:\n-      download_item->Remove();\n-      break;\n-    case DownloadDangerPrompt::DISMISS:\n-      break;\n-  }\n-  Respond(NoArguments());\n-}\n-\n DownloadsShowFunction::DownloadsShowFunction() = default;\n \n DownloadsShowFunction::~DownloadsShowFunction() = default;\n--- a/chrome/browser/extensions/api/downloads/downloads_api.h\n+++ b/chrome/browser/extensions/api/downloads/downloads_api.h\n@@ -13,7 +13,6 @@\n #include \"base/memory/raw_ptr.h\"\n #include \"base/scoped_observation.h\"\n #include \"base/time/time.h\"\n-#include \"chrome/browser/download/download_danger_prompt.h\"\n #include \"chrome/common/extensions/api/downloads.h\"\n #include \"components/download/content/public/all_download_item_notifier.h\"\n #include \"components/download/public/common/download_path_reservation_tracker.h\"\n@@ -169,13 +168,6 @@ class DownloadsRemoveFileFunction : publ\n \n class DownloadsAcceptDangerFunction : public ExtensionFunction {\n  public:\n-  using OnPromptCreatedCallback =\n-      base::OnceCallback<void(DownloadDangerPrompt*)>;\n-  static void OnPromptCreatedForTesting(\n-      OnPromptCreatedCallback* callback) {\n-    on_prompt_created_ = callback;\n-  }\n-\n   DECLARE_EXTENSION_FUNCTION(\"downloads.acceptDanger\", DOWNLOADS_ACCEPTDANGER)\n   DownloadsAcceptDangerFunction();\n \n@@ -187,13 +179,10 @@ class DownloadsAcceptDangerFunction : pu\n \n  protected:\n   ~DownloadsAcceptDangerFunction() override;\n-  void DangerPromptCallback(int download_id,\n-                            DownloadDangerPrompt::Action action);\n \n  private:\n   void PromptOrWait(int download_id, int retries);\n \n-  static OnPromptCreatedCallback* on_prompt_created_;\n };\n \n class DownloadsShowFunction : public ExtensionFunction {\n--- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc\n+++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc\n@@ -728,18 +728,6 @@ void WebstorePrivateBeginInstallWithMani\n \n void WebstorePrivateBeginInstallWithManifest3Function::\n     ReportFrictionAcceptedEvent() {\n-  if (!profile_) {\n-    return;\n-  }\n-  auto* metrics_collector =\n-      safe_browsing::SafeBrowsingMetricsCollectorFactory::GetForProfile(\n-          profile_);\n-  // `metrics_collector` can be null in incognito.\n-  if (metrics_collector) {\n-    metrics_collector->AddSafeBrowsingEventToPref(\n-        safe_browsing::SafeBrowsingMetricsCollector::EventType::\n-            EXTENSION_ALLOWLIST_INSTALL_BYPASS);\n-  }\n }\n \n void WebstorePrivateBeginInstallWithManifest3Function::OnInstallPromptDone(\n--- a/chrome/browser/safe_browsing/BUILD.gn\n+++ b/chrome/browser/safe_browsing/BUILD.gn\n@@ -7,6 +7,7 @@ import(\"//components/safe_browsing/build\n import(\"//extensions/buildflags/buildflags.gni\")\n \n static_library(\"safe_browsing\") {\n+  if (false) {\n   sources = [\n     \"chrome_controller_client.cc\",\n     \"chrome_controller_client.h\",\n@@ -85,6 +86,7 @@ static_library(\"safe_browsing\") {\n     \"//services/metrics/public/cpp:ukm_builders\",\n     \"//services/preferences/public/cpp\",\n   ]\n+  }\n \n   if (enable_extensions) {\n     deps += [ \"//chrome/browser/ui/web_applications\" ]\n@@ -626,6 +628,7 @@ static_library(\"advanced_protection\") {\n }\n \n source_set(\"metrics_collector\") {\n+  if (false) {\n   sources = [\n     \"safe_browsing_metrics_collector_factory.cc\",\n     \"safe_browsing_metrics_collector_factory.h\",\n@@ -645,6 +648,7 @@ source_set(\"metrics_collector\") {\n     \"//components/safe_browsing/core/common:safe_browsing_prefs\",\n     \"//content/public/browser\",\n   ]\n+  }\n }\n \n source_set(\"unit_tests\") {\n--- a/chrome/browser/ui/views/download/BUILD.gn\n+++ b/chrome/browser/ui/views/download/BUILD.gn\n@@ -6,7 +6,6 @@ assert(is_win || is_mac || is_linux || i\n \n source_set(\"download\") {\n   sources = [\n-    \"download_danger_prompt_views.cc\",\n     \"download_in_progress_dialog_view.cc\",\n     \"download_in_progress_dialog_view.h\",\n   ]\n--- a/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc\n+++ b/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc\n@@ -24,7 +24,6 @@\n #include \"base/threading/thread.h\"\n #include \"base/values.h\"\n #include \"chrome/browser/browser_process.h\"\n-#include \"chrome/browser/download/download_danger_prompt.h\"\n #include \"chrome/browser/download/download_history.h\"\n #include \"chrome/browser/download/download_item_model.h\"\n #include \"chrome/browser/download/download_item_warning_data.h\"\n@@ -550,12 +549,6 @@ void DownloadsDOMHandler::RemoveDownload\n   IdSet ids;\n \n   for (download::DownloadItem* download : to_remove) {\n-    if (download->IsDangerous() || download->IsInsecure()) {\n-      // Don't allow users to revive dangerous downloads; just nuke 'em.\n-      download->Remove();\n-      continue;\n-    }\n-\n     DownloadItemModel item_model(download);\n     if (!item_model.ShouldShowInUi() ||\n         download->GetState() == download::DownloadItem::IN_PROGRESS) {\n--- a/chrome/browser/ui/webui/downloads/downloads_dom_handler.h\n+++ b/chrome/browser/ui/webui/downloads/downloads_dom_handler.h\n@@ -13,7 +13,6 @@\n #include \"base/memory/raw_ptr.h\"\n #include \"base/memory/weak_ptr.h\"\n #include \"base/time/time.h\"\n-#include \"chrome/browser/download/download_danger_prompt.h\"\n #include \"chrome/browser/download/download_warning_desktop_hats_utils.h\"\n #include \"chrome/browser/ui/webui/downloads/downloads.mojom-forward.h\"\n #include \"chrome/browser/ui/webui/downloads/downloads_list_tracker.h\"\n--- a/chrome/renderer/chrome_content_renderer_client.cc\n+++ b/chrome/renderer/chrome_content_renderer_client.cc\n@@ -111,7 +111,6 @@\n #include \"components/pdf/common/pdf_util.h\"\n #include \"components/permissions/features.h\"\n #include \"components/safe_browsing/buildflags.h\"\n-#include \"components/safe_browsing/content/renderer/threat_dom_details.h\"\n #include \"components/sampling_profiler/process_type.h\"\n #include \"components/sampling_profiler/thread_profiler.h\"\n #include \"components/security_interstitials/content/renderer/security_interstitial_page_controller_delegate_impl.h\"\n--- a/extensions/browser/blocklist_state_fetcher.cc\n+++ b/extensions/browser/blocklist_state_fetcher.cc\n@@ -69,8 +69,7 @@ void BlocklistStateFetcher::SendRequest(\n   std::string request_str;\n   request.SerializeToString(&request_str);\n \n-  GURL request_url = GURL(safe_browsing::GetReportUrl(\n-      *safe_browsing_config_, \"clientreport/crx-list-info\"));\n+  GURL request_url = GURL();\n   net::NetworkTrafficAnnotationTag traffic_annotation =\n       net::DefineNetworkTrafficAnnotation(\"extension_blacklist\", R\"(\n         semantics {\n@@ -134,12 +133,6 @@ void BlocklistStateFetcher::SendRequest(\n                      base::Unretained(this), fetcher));\n }\n \n-void BlocklistStateFetcher::SetSafeBrowsingConfig(\n-    const safe_browsing::V4ProtocolConfig& config) {\n-  safe_browsing_config_ =\n-      std::make_unique<safe_browsing::V4ProtocolConfig>(config);\n-}\n-\n void BlocklistStateFetcher::OnURLLoaderComplete(\n     network::SimpleURLLoader* url_loader,\n     std::optional<std::string> response_body) {\n--- a/extensions/browser/blocklist_state_fetcher.h\n+++ b/extensions/browser/blocklist_state_fetcher.h\n@@ -41,8 +41,6 @@ class BlocklistStateFetcher {\n \n   virtual void Request(const std::string& id, RequestCallback callback);\n \n-  void SetSafeBrowsingConfig(const safe_browsing::V4ProtocolConfig& config);\n-\n  protected:\n   void OnURLLoaderComplete(network::SimpleURLLoader* url_loader,\n                            std::optional<std::string> response_body);\n"
  },
  {
    "path": "patches/core/inox-patchset/0003-disable-autofill-download-manager.patch",
    "content": "--- a/components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc\n+++ b/components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc\n@@ -916,94 +916,6 @@ std::tuple<GURL, std::string> AutofillCr\n }\n \n bool AutofillCrowdsourcingManager::StartRequest(FormRequestData request_data) {\n-  // kRequestUploads take no IsolationInfo because Password Manager uploads when\n-  // RenderFrameHostImpl::DidCommitNavigation() is called, in which case\n-  // AutofillDriver::IsolationInfo() may crash because there is no committing\n-  // NavigationRequest. Not setting an IsolationInfo is safe because no\n-  // information about the response is passed to the renderer, or is otherwise\n-  // visible to a page. See crbug/1176635#c22.\n-#if BUILDFLAG(IS_IOS)\n-  DCHECK(!request_data.isolation_info);\n-#else\n-  DCHECK(\n-      (request_data.request_type == CrowdsourcingRequestType::kRequestUpload) ==\n-      !request_data.isolation_info);\n-#endif\n-  // Get the URL and method to use for this request.\n-  auto [request_url, method] = GetRequestURLAndMethod(request_data);\n-\n-  // Track the URL length for GET queries because the URL length can be in the\n-  // thousands when rich metadata is enabled.\n-  if (request_data.request_type == CrowdsourcingRequestType::kRequestQuery &&\n-      method == \"GET\") {\n-    base::UmaHistogramCounts100000(kUmaGetUrlLength,\n-                                   request_url.spec().length());\n-  }\n-\n-  auto resource_request = std::make_unique<network::ResourceRequest>();\n-  resource_request->url = request_url;\n-  resource_request->credentials_mode = network::mojom::CredentialsMode::kOmit;\n-  resource_request->method = method;\n-\n-  if (request_data.isolation_info) {\n-    resource_request->trusted_params =\n-        network::ResourceRequest::TrustedParams();\n-    resource_request->trusted_params->isolation_info =\n-        *request_data.isolation_info;\n-  }\n-\n-  // Add Chrome experiment state to the request headers.\n-  variations::AppendVariationsHeaderUnknownSignedIn(\n-      request_url,\n-      client_->IsOffTheRecord() ? variations::InIncognito::kYes\n-                                : variations::InIncognito::kNo,\n-      resource_request.get());\n-\n-  // Set headers specific to the API.\n-  // Encode response serialized proto in base64 for safety.\n-  resource_request->headers.SetHeader(kGoogEncodeResponseIfExecutable,\n-                                      \"base64\");\n-\n-  // Add API key to the request if a key exists, and the endpoint is trusted by\n-  // Google.\n-  if (!api_key_.empty() && request_url.SchemeIs(url::kHttpsScheme) &&\n-      google_util::IsGoogleAssociatedDomainUrl(request_url)) {\n-    google_apis::AddAPIKeyToRequest(*resource_request, api_key_);\n-  }\n-\n-  auto simple_loader = network::SimpleURLLoader::Create(\n-      std::move(resource_request),\n-      GetNetworkTrafficAnnotation(request_data.request_type));\n-\n-  // This allows reading the error message within the API response when status\n-  // is not 200 (e.g., 400). Otherwise, URL loader will not give any content in\n-  // the response when there is a failure, which makes debugging hard.\n-  simple_loader->SetAllowHttpErrorResults(true);\n-\n-  if (method == \"POST\") {\n-    static constexpr char content_type[] = \"application/x-protobuf\";\n-    std::optional<std::string> payload =\n-        GetAPIBodyPayload(request_data.payload, request_data.request_type);\n-    if (!payload) {\n-      return false;\n-    }\n-    // Attach payload data and add data format header.\n-    simple_loader->AttachStringForUpload(std::move(payload).value(),\n-                                         content_type);\n-  }\n-\n-  // Transfer ownership of the loader into url_loaders_. Temporarily hang\n-  // onto the raw pointer to use it as a key and to kick off the request;\n-  // transferring ownership (std::move) invalidates the `simple_loader`\n-  // variable.\n-  auto* raw_simple_loader = simple_loader.get();\n-  url_loaders_.push_back(std::move(simple_loader));\n-  raw_simple_loader->SetTimeoutDuration(kFetchTimeout);\n-  raw_simple_loader->DownloadToStringOfUnboundedSizeUntilCrashAndDie(\n-      client_->GetURLLoaderFactory().get(),\n-      base::BindOnce(&AutofillCrowdsourcingManager::OnSimpleLoaderComplete,\n-                     base::Unretained(this), std::move(--url_loaders_.end()),\n-                     std::move(request_data), base::TimeTicks::Now()));\n   return true;\n }\n \n"
  },
  {
    "path": "patches/core/inox-patchset/0005-disable-default-extensions.patch",
    "content": "--- a/chrome/browser/extensions/component_extensions_allowlist/allowlist.cc\n+++ b/chrome/browser/extensions/component_extensions_allowlist/allowlist.cc\n@@ -32,7 +32,6 @@ namespace extensions {\n \n bool IsComponentExtensionAllowlisted(const std::string& extension_id) {\n   constexpr auto kAllowed = base::MakeFixedFlatSet<std::string_view>({\n-      extension_misc::kInAppPaymentsSupportAppId,\n       extension_misc::kPdfExtensionId,\n #if BUILDFLAG(IS_CHROMEOS)\n       extension_misc::kAssessmentAssistantExtensionId,\n--- a/chrome/browser/extensions/component_loader.cc\n+++ b/chrome/browser/extensions/component_loader.cc\n@@ -422,11 +422,6 @@ void ComponentLoader::AddWebStoreApp() {\n     return;\n   }\n #endif\n-\n-  AddWithNameAndDescription(\n-      IDR_WEBSTORE_MANIFEST, base::FilePath(FILE_PATH_LITERAL(\"web_store\")),\n-      l10n_util::GetStringUTF8(IDS_WEBSTORE_NAME_STORE),\n-      l10n_util::GetStringUTF8(IDS_WEBSTORE_APP_DESCRIPTION));\n }\n \n #if BUILDFLAG(IS_CHROMEOS)\n--- a/chrome/browser/extensions/external_component_loader.cc\n+++ b/chrome/browser/extensions/external_component_loader.cc\n@@ -41,9 +41,6 @@ ExternalComponentLoader::~ExternalCompon\n void ExternalComponentLoader::StartLoading() {\n   auto prefs = base::DictValue();\n   // Skip in-app payments app on Android. crbug.com/409396604\n-#if BUILDFLAG(GOOGLE_CHROME_BRANDING) && !BUILDFLAG(IS_ANDROID)\n-  AddExternalExtension(extension_misc::kInAppPaymentsSupportAppId, prefs);\n-#endif  // BUILDFLAG(GOOGLE_CHROME_BRANDING) && !BUILDFLAG(IS_ANDROID)\n \n #if BUILDFLAG(IS_CHROMEOS)\n   {\n--- a/chrome/browser/extensions/webstore_installer.cc\n+++ b/chrome/browser/extensions/webstore_installer.cc\n@@ -489,20 +489,6 @@ void WebstoreInstaller::DownloadNextPend\n \n void WebstoreInstaller::DownloadCrx(const extensions::ExtensionId& extension_id,\n                                     InstallSource source) {\n-  download_url_ = GetWebstoreInstallURL(extension_id, source);\n-  MaybeAppendAuthUserParameter(approval_->authuser, &download_url_);\n-\n-  base::FilePath user_data_dir;\n-  base::PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);\n-  base::FilePath download_path = user_data_dir.Append(kWebstoreDownloadFolder);\n-\n-  base::FilePath download_directory(g_download_directory_for_tests ?\n-      *g_download_directory_for_tests : download_path);\n-\n-  GetExtensionFileTaskRunner()->PostTaskAndReplyWithResult(\n-      FROM_HERE,\n-      base::BindOnce(&GetDownloadFilePath, download_directory, extension_id),\n-      base::BindOnce(&WebstoreInstaller::StartDownload, this, extension_id));\n }\n \n // http://crbug.com/165634\n@@ -657,21 +643,6 @@ void WebstoreInstaller::UpdateDownloadPr\n void WebstoreInstaller::StartCrxInstaller(const DownloadItem& download) {\n   DCHECK_CURRENTLY_ON(BrowserThread::UI);\n   DCHECK(!crx_installer_.get());\n-\n-  const InstallApproval* approval = GetAssociatedApproval(download);\n-  DCHECK(approval);\n-\n-  crx_installer_ = download_crx_util::CreateCrxInstaller(profile_, download);\n-\n-  crx_installer_->set_expected_id(approval->extension_id);\n-  crx_installer_->set_is_gallery_install(true);\n-  crx_installer_->set_allow_silent_install(true);\n-  crx_installer_->AddInstallerCallback(base::BindOnce(\n-      &WebstoreInstaller::OnInstallerDone, weak_ptr_factory_.GetWeakPtr()));\n-  if (approval->withhold_permissions)\n-    crx_installer_->set_withhold_permissions();\n-\n-  crx_installer_->InstallCrx(download.GetFullPath());\n }\n \n void WebstoreInstaller::ReportFailure(const std::string& error,\n"
  },
  {
    "path": "patches/core/inox-patchset/0015-disable-update-pings.patch",
    "content": "--- a/chrome/updater/configurator.cc\n+++ b/chrome/updater/configurator.cc\n@@ -133,7 +133,7 @@ base::TimeDelta Configurator::UpdateDela\n \n std::vector<GURL> Configurator::UpdateUrl() const {\n   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);\n-  return external_constants_->UpdateURL();\n+  return std::vector<GURL>();\n }\n \n std::vector<GURL> Configurator::PingUrl() const {\n"
  },
  {
    "path": "patches/core/inox-patchset/0021-disable-rlz.patch",
    "content": "# Disable rlz\n\n--- a/BUILD.gn\n+++ b/BUILD.gn\n@@ -456,14 +456,6 @@ group(\"gn_all\") {\n       ]\n     }\n \n-    if (is_chromeos || is_mac || is_win) {\n-      deps += [\n-        \"//rlz:rlz_id\",\n-        \"//rlz:rlz_lib\",\n-        \"//rlz:rlz_unittests\",\n-      ]\n-    }\n-\n     if (is_linux || is_chromeos) {\n       # The following are definitely linux-only.\n       deps += [\n--- a/rlz/buildflags/buildflags.gni\n+++ b/rlz/buildflags/buildflags.gni\n@@ -6,7 +6,7 @@ import(\"//build/config/chrome_build.gni\"\n \n # Whether we are using the rlz library or not.  Platforms like Android send\n # rlz codes for searches but do not use the library.\n-enable_rlz_support = is_win || is_apple || is_chromeos\n+enable_rlz_support = false\n \n declare_args() {\n   enable_rlz = is_chrome_branded && enable_rlz_support\n"
  },
  {
    "path": "patches/core/iridium-browser/all-add-trk-prefixes-to-possibly-evil-connections.patch",
    "content": "From 06f6141610cb2aa562c94dbb9f1f4355e4b34c5d Mon Sep 17 00:00:00 2001\nFrom: Jan Engelhardt <jengelh@inai.de>\nDate: Mon, 30 Sep 2019 09:37:51 +0200\nSubject: [PATCH 75/76] all: add trk: prefixes to possibly evil connections\n\nPrefix URLs to Google services with trk: so that whenever something\ntries to load them, the developer will be informed via printf and\ndialog (extra info bar between URLbar and content window) about this.\n\nIf you see such dialog, we know that (a) either the URL needs to be\nwhitelisted, or (b) the feature that triggered it needs to be disabled\nby default.\n---\n build/mac/tweak_info_plist.py                 |  2 +-\n .../customization/customization_document.cc   |  2 +-\n .../file_manager/private_api_drive.cc         |  2 +-\n .../file_manager/private_api_misc.cc          |  2 +-\n .../remote_commands/crd_host_delegate.cc      |  6 +++---\n .../cryptotoken_private_api.cc                |  4 ++--\n chrome/browser/extensions/install_signer.cc   |  2 +-\n .../media/webrtc/webrtc_event_log_uploader.cc |  2 +-\n .../media/webrtc/webrtc_log_uploader.cc       |  2 +-\n .../nacl_host/nacl_infobar_delegate.cc        |  2 +-\n .../profiles/profile_avatar_downloader.cc     |  2 +-\n .../default_apps/external_extensions.json     |  6 +++---\n .../client_side_detection_service.cc          |  2 +-\n .../download_protection/download_feedback.cc  |  2 +-\n .../spellcheck_hunspell_dictionary.cc         |  2 +-\n .../supervised_user_service.cc                |  2 +-\n .../browser/tracing/crash_service_uploader.cc |  2 +-\n .../ui/views/outdated_upgrade_bubble_view.cc  |  2 +-\n .../ui/webui/ntp/ntp_resource_cache.cc        |  8 ++++----\n .../components/recovery_component.cc          |  2 +-\n .../crash/crashpad_crash_reporter.cc          |  2 +-\n .../extensions/chrome_extensions_client.cc    |  4 ++--\n .../setup/google_chrome_behaviors.cc          |  2 +-\n .../browser/service/cast_service_simple.cc    |  2 +-\n chromecast/crash/linux/minidump_uploader.cc   |  2 +-\n .../simple_geolocation_provider.cc            |  2 +-\n .../common/cloud_devices_urls.cc              |  8 ++++----\n components/drive/service/drive_api_service.cc |  4 ++--\n components/feedback/feedback_uploader.cc      |  2 +-\n components/gcm_driver/gcm_account_tracker.cc  |  4 ++--\n components/google/core/common/google_util.cc  |  2 +-\n .../core/browser/web_history_service.cc       |  6 +++---\n components/metrics/url_constants.cc           |  2 +-\n .../core/browser/password_store.cc            |  8 ++++----\n .../safe_search_url_checker_client.cc         |  2 +-\n .../safe_search_api/stub_url_checker.cc       |  2 +-\n .../core/browser/translate_url_fetcher.cc     |  1 +\n .../translate/core/common/translate_util.cc   |  2 +-\n .../variations/variations_url_constants.cc    |  2 +-\n .../speech/speech_recognition_engine.cc       |  2 +-\n .../browser/webauth/authenticator_common.cc   |  4 ++--\n .../shell/browser/shell_browser_main_parts.cc |  2 +-\n google_apis/gaia/gaia_constants.cc            | 20 +++++++++----------\n google_apis/gaia/gaia_urls.cc                 |  1 +\n google_apis/gcm/engine/gservices_settings.cc  |  6 +++---\n .../notifier/base/gaia_token_pre_xmpp_auth.cc |  2 +-\n remoting/base/breakpad_mac.mm                 |  2 +-\n remoting/protocol/jingle_messages.cc          |  2 +-\n rlz/lib/lib_values.cc                         |  2 +-\n third_party/libjingle_xmpp/xmpp/constants.cc  |  6 +++---\n .../chromevox/background/prefs.js             |  4 ++--\n .../chromevoxclassic/host/chrome/host.js      |  4 ++--\n ui/views/examples/webview_example.cc          |  2 +-\n 54 files changed, 89 insertions(+), 87 deletions(-)\n\n--- a/build/apple/tweak_info_plist.py\n+++ b/build/apple/tweak_info_plist.py\n@@ -218,7 +218,7 @@ def _AddKeystoneKeys(plist, bundle_ident\n   also requires the |bundle_identifier| argument (com.example.product).\"\"\"\n   plist['KSVersion'] = plist['CFBundleShortVersionString']\n   plist['KSProductID'] = bundle_identifier\n-  plist['KSUpdateURL'] = 'https://tools.google.com/service/update2'\n+  plist['KSUpdateURL'] = 'trk:132:https://tools.google.com/service/update2'\n \n   _RemoveKeys(plist, 'KSChannelID')\n   if base_tag != '':\n--- a/chrome/browser/ash/customization/customization_document.h\n+++ b/chrome/browser/ash/customization/customization_document.h\n@@ -155,7 +155,7 @@ class ServicesCustomizationDocument : pu\n \n   // Template URL where to fetch OEM services customization manifest from.\n   static constexpr char kManifestUrl[] =\n-      \"https://ssl.gstatic.com/chrome/chromeos-customization/%s.json\";\n+      \"trk:151:https://ssl.gstatic.com/chrome/chromeos-customization/%s.json\";\n \n   // Return true if the customization was applied. Customization is applied only\n   // once per machine.\n--- a/chrome/browser/media/webrtc/webrtc_event_log_uploader.cc\n+++ b/chrome/browser/media/webrtc/webrtc_event_log_uploader.cc\n@@ -110,7 +110,7 @@ void OnURLLoadUploadProgress(uint64_t cu\n }  // namespace\n \n const char WebRtcEventLogUploaderImpl::kUploadURL[] =\n-    \"https://clients2.google.com/cr/report\";\n+    \"trk:300:https://clients2.google.com/cr/report\";\n \n WebRtcEventLogUploaderImpl::Factory::Factory(\n     scoped_refptr<base::SequencedTaskRunner> task_runner)\n--- a/chrome/browser/media/webrtc/webrtc_log_uploader.cc\n+++ b/chrome/browser/media/webrtc/webrtc_log_uploader.cc\n@@ -473,7 +473,7 @@ void WebRtcLogUploader::UploadCompressed\n           }\n         })\");\n \n-  constexpr char kUploadURL[] = \"https://clients2.google.com/cr/report\";\n+  constexpr char kUploadURL[] = \"trk:301:https://clients2.google.com/cr/report\";\n   auto resource_request = std::make_unique<network::ResourceRequest>();\n   resource_request->url = !upload_url_for_testing_.is_empty()\n                               ? upload_url_for_testing_\n--- a/chrome/browser/profiles/profile_avatar_downloader.cc\n+++ b/chrome/browser/profiles/profile_avatar_downloader.cc\n@@ -20,7 +20,7 @@\n \n namespace {\n const char kHighResAvatarDownloadUrlPrefix[] =\n-    \"https://www.gstatic.com/chrome/profile_avatars/\";\n+    \"trk:271:https://www.gstatic.com/chrome/profile_avatars/\";\n }\n \n ProfileAvatarDownloader::ProfileAvatarDownloader(size_t icon_index,\n--- a/chrome/browser/resources/default_apps/external_extensions.json\n+++ b/chrome/browser/resources/default_apps/external_extensions.json\n@@ -3,7 +3,7 @@\n {\n   // Drive extension\n   \"ghbmnnjooekpmoecnnnilnnbdlolhkhi\" : {\n-    \"external_update_url\": \"https://clients2.google.com/service/update2/crx\"\n+    \"external_update_url\": \"trk:04:https://clients2.google.com/service/update2/crx\"\n   }\n }\n \n--- a/chrome/browser/safe_browsing/download_protection/download_feedback.cc\n+++ b/chrome/browser/safe_browsing/download_protection/download_feedback.cc\n@@ -178,7 +178,7 @@ const int64_t DownloadFeedback::kMaxUplo\n \n // static\n const char DownloadFeedback::kSbFeedbackURL[] =\n-    \"https://safebrowsing.google.com/safebrowsing/uploads/chrome\";\n+    \"trk:164:https://safebrowsing.google.com/safebrowsing/uploads/chrome\";\n \n // static\n DownloadFeedbackFactory* DownloadFeedback::factory_ = nullptr;\n--- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc\n+++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc\n@@ -278,7 +278,7 @@ GURL SpellcheckHunspellDictionary::GetDi\n   DCHECK(!bdict_file.empty());\n \n   static const char kDownloadServerUrl[] =\n-      \"https://redirector.gvt1.com/edgedl/chrome/dict/\";\n+      \"trk:173:https://redirector.gvt1.com/edgedl/chrome/dict/\";\n \n   return GURL(std::string(kDownloadServerUrl) +\n               base::ToLowerASCII(bdict_file));\n--- a/chrome/browser/ui/dialogs/outdated_upgrade_bubble.cc\n+++ b/chrome/browser/ui/dialogs/outdated_upgrade_bubble.cc\n@@ -33,7 +33,7 @@\n namespace {\n \n // The URL to be used to re-install Chrome when auto-update failed for too long.\n-const char* kUpdateBrowserRedirectUrl = \"https://www.google.com/chrome\";\n+const char* kUpdateBrowserRedirectUrl = \"trk:242:https://www.google.com/chrome\";\n \n bool g_upgrade_bubble_is_showing = false;\n \n--- a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc\n+++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc\n@@ -65,17 +65,17 @@ namespace {\n // The URL for the the Learn More page shown on incognito new tab.\n const char kLearnMoreIncognitoUrl[] =\n #if BUILDFLAG(IS_CHROMEOS)\n-    \"https://support.google.com/chromebook/?p=incognito\";\n+    \"trk:246:https://support.google.com/chromebook/?p=incognito\";\n #else\n-    \"https://support.google.com/chrome/?p=incognito\";\n+    \"trk:247:https://support.google.com/chrome/?p=incognito\";\n #endif\n \n // The URL for the Learn More page shown on guest session new tab.\n const char kLearnMoreGuestSessionUrl[] =\n #if BUILDFLAG(IS_CHROMEOS)\n-    \"https://support.google.com/chromebook/?p=chromebook_guest\";\n+    \"trk:248:https://support.google.com/chromebook/?p=chromebook_guest\";\n #else\n-    \"https://support.google.com/chrome/?p=ui_guest\";\n+    \"trk:261:https://support.google.com/chrome/?p=ui_guest\";\n #endif\n \n std::string ReplaceTemplateExpressions(\n--- a/chrome/common/extensions/chrome_extensions_client.cc\n+++ b/chrome/common/extensions/chrome_extensions_client.cc\n@@ -46,9 +46,9 @@ namespace {\n \n // TODO(battre): Delete the HTTP URL once the blocklist is downloaded via HTTPS.\n const char kExtensionBlocklistUrlPrefix[] =\n-    \"http://www.gstatic.com/chrome/extensions/blocklist\";\n+    \"trk:269:http://www.gstatic.com/chrome/extensions/blocklist\";\n const char kExtensionBlocklistHttpsUrlPrefix[] =\n-    \"https://www.gstatic.com/chrome/extensions/blocklist\";\n+    \"trk:270:https://www.gstatic.com/chrome/extensions/blocklist\";\n \n }  // namespace\n \n--- a/chrome/installer/setup/google_chrome_behaviors.cc\n+++ b/chrome/installer/setup/google_chrome_behaviors.cc\n@@ -38,7 +38,7 @@ namespace installer {\n namespace {\n \n constexpr std::wstring_view kUninstallSurveyUrl(\n-    L\"https://support.google.com/chrome?p=chrome_uninstall_survey\");\n+    L\"trk:253:https://support.google.com/chrome?p=chrome_uninstall_survey\");\n \n // Launches the url directly with the user's default handler for |url|.\n bool NavigateToUrlWithHttps(const std::wstring& url) {\n--- a/chromeos/ash/components/geolocation/location_fetcher.h\n+++ b/chromeos/ash/components/geolocation/location_fetcher.h\n@@ -36,7 +36,7 @@ class GeolocationHandler;\n class COMPONENT_EXPORT(CHROMEOS_ASH_COMPONENTS_GEOLOCATION) LocationFetcher {\n  public:\n   static constexpr char kDefaultGeolocationProviderUrl[] =\n-      \"https://www.googleapis.com/geolocation/v1/geolocate?\";\n+      \"trk:215:https://www.googleapis.com/geolocation/v1/geolocate?\";\n \n   explicit LocationFetcher(\n       scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory);\n--- a/components/feedback/feedback_uploader.cc\n+++ b/components/feedback/feedback_uploader.cc\n@@ -43,7 +43,7 @@ constexpr base::FilePath::CharType kFeed\n     FILE_PATH_LITERAL(\"Feedback Reports\");\n \n constexpr char kFeedbackPostUrl[] =\n-    \"https://www.google.com/tools/feedback/chrome/__submit\";\n+    \"trk:232:https://www.google.com/tools/feedback/chrome/__submit\";\n \n constexpr char kProtoBufMimeType[] = \"application/x-protobuf\";\n \n--- a/components/google/core/common/google_util.cc\n+++ b/components/google/core/common/google_util.cc\n@@ -150,7 +150,7 @@ BASE_FEATURE(kIsViewerGoogleSearchUrl, b\n \n // Global functions -----------------------------------------------------------\n \n-const char kGoogleHomepageURL[] = \"https://www.google.com/\";\n+const char kGoogleHomepageURL[] = \"trk:113:https://www.google.com/\";\n \n bool HasGoogleSearchQueryParam(std::string_view str) {\n   url::Component query(0, static_cast<int>(str.length())), key, value;\n--- a/components/history/core/browser/web_history_service.cc\n+++ b/components/history/core/browser/web_history_service.cc\n@@ -47,19 +47,19 @@ namespace history {\n namespace {\n \n const char kOldQueryHistoryUrl[] =\n-    \"https://history.google.com/history/api/lookup?client=chrome\";\n+    \"trk:134:https://history.google.com/history/api/lookup?client=chrome\";\n const char kNewQueryHistoryUrl[] =\n-    \"https://footprints-pa.googleapis.com/v1/read_chrome_history\";\n+    \"trk:135:https://footprints-pa.googleapis.com/v1/read_chrome_history\";\n \n const char kOldHistoryDeleteHistoryUrl[] =\n-    \"https://history.google.com/history/api/delete?client=chrome\";\n+    \"trk:136:https://history.google.com/history/api/delete?client=chrome\";\n const char kNewHistoryDeleteHistoryUrl[] =\n-    \"https://footprints-pa.googleapis.com/v1/delete_chrome_history\";\n+    \"trk:137:https://footprints-pa.googleapis.com/v1/delete_chrome_history\";\n \n const char kOldQueryWebAndAppActivityUrl[] =\n-    \"https://history.google.com/history/api/lookup?client=web_app\";\n+    \"trk:138:https://history.google.com/history/api/lookup?client=web_app\";\n const char kNewQueryWebAndAppActivityUrl[] =\n-    \"https://footprints-pa.googleapis.com/v1/get_facs\";\n+    \"trk:139:https://footprints-pa.googleapis.com/v1/get_facs\";\n \n const char kQueryOtherFormsOfBrowsingHistoryUrlSuffix[] = \"/historystatus\";\n \n--- a/components/safe_browsing/content/browser/client_side_detection_service.cc\n+++ b/components/safe_browsing/content/browser/client_side_detection_service.cc\n@@ -72,7 +72,7 @@ const int ClientSideDetectionService::kN\n const int ClientSideDetectionService::kPositiveCacheIntervalMinutes = 30;\n \n const char ClientSideDetectionService::kClientReportPhishingUrl[] =\n-    \"https://sb-ssl.google.com/safebrowsing/clientreport/phishing\";\n+    \"trk:148:https://sb-ssl.google.com/safebrowsing/clientreport/phishing\";\n \n struct ClientSideDetectionService::ClientPhishingReportInfo {\n   std::unique_ptr<network::SimpleURLLoader> loader;\n--- a/components/safe_search_api/safe_search/safe_search_url_checker_client.cc\n+++ b/components/safe_search_api/safe_search/safe_search_url_checker_client.cc\n@@ -28,7 +28,7 @@ namespace safe_search_api {\n namespace {\n \n const char kSafeSearchApiUrl[] =\n-    \"https://safesearch.googleapis.com/v1:classify\";\n+    \"trk:238:https://safesearch.googleapis.com/v1:classify\";\n const char kDataContentType[] = \"application/x-www-form-urlencoded\";\n const char kDataFormat[] = \"key=%s&urls=%s\";\n \n--- a/components/safe_search_api/stub_url_checker.cc\n+++ b/components/safe_search_api/stub_url_checker.cc\n@@ -21,7 +21,7 @@ namespace safe_search_api {\n namespace {\n \n constexpr char kSafeSearchApiUrl[] =\n-    \"https://safesearch.googleapis.com/v1:classify\";\n+    \"trk:238:https://safesearch.googleapis.com/v1:classify\";\n \n std::string BuildResponse(bool is_porn) {\n   base::DictValue dict;\n--- a/components/translate/core/browser/translate_url_fetcher.cc\n+++ b/components/translate/core/browser/translate_url_fetcher.cc\n@@ -101,6 +101,7 @@ bool TranslateURLFetcher::Request(const\n   resource_request->credentials_mode = network::mojom::CredentialsMode::kOmit;\n   resource_request->headers.MergeFrom(extra_request_header_);\n \n+  fprintf(stderr, \"translator: fetching something from %s\\n\", url_.spec().c_str());\n   simple_loader_ =\n       variations::CreateSimpleURLLoaderWithVariationsHeaderUnknownSignedIn(\n           std::move(resource_request),\n--- a/components/translate/core/common/translate_util.cc\n+++ b/components/translate/core/common/translate_util.cc\n@@ -28,7 +28,7 @@ constexpr int kMaxNumberOfAutoNever = 2;\n \n namespace translate {\n \n-const char kSecurityOrigin[] = \"https://translate.googleapis.com/\";\n+const char kSecurityOrigin[] = \"trk:220:https://translate.googleapis.com/\";\n \n GURL GetTranslateSecurityOrigin() {\n   std::string security_origin(kSecurityOrigin);\n--- a/components/variations/variations_url_constants.cc\n+++ b/components/variations/variations_url_constants.cc\n@@ -8,7 +8,7 @@ namespace variations {\n \n // Default server of Variations seed info.\n const char kDefaultServerUrl[] =\n-    \"https://clientservices.googleapis.com/chrome-variations/seed\";\n+    \"trk:142:https://clientservices.googleapis.com/chrome-variations/seed\";\n \n const char kDefaultInsecureServerUrl[] =\n     \"http://clientservices.googleapis.com/chrome-variations/seed\";\n--- a/content/browser/speech/network_speech_recognition_engine_impl.cc\n+++ b/content/browser/speech/network_speech_recognition_engine_impl.cc\n@@ -35,7 +35,7 @@ namespace content {\n namespace {\n \n const char kWebServiceBaseUrl[] =\n-    \"https://www.google.com/speech-api/full-duplex/v1\";\n+    \"trk:184:https://www.google.com/speech-api/full-duplex/v1\";\n const char kDownstreamUrl[] = \"/down?\";\n const char kUpstreamUrl[] = \"/up?\";\n \n--- a/content/browser/webauth/webauth_request_security_checker.h\n+++ b/content/browser/webauth/webauth_request_security_checker.h\n@@ -44,9 +44,9 @@ class CONTENT_EXPORT WebAuthRequestSecur\n   // Legacy App IDs, which google.com origins are allowed to assert for\n   // compatibility reasons.\n   static constexpr char kGstaticAppId[] =\n-      \"https://www.gstatic.com/securitykey/origins.json\";\n+      \"trk:276:https://www.gstatic.com/securitykey/origins.json\";\n   static constexpr char kGstaticCorpAppId[] =\n-      \"https://www.gstatic.com/securitykey/a/google.com/origins.json\";\n+      \"trk:277:https://www.gstatic.com/securitykey/a/google.com/origins.json\";\n \n   explicit WebAuthRequestSecurityChecker(RenderFrameHost* host);\n   WebAuthRequestSecurityChecker(const WebAuthRequestSecurityChecker&) = delete;\n--- a/content/shell/browser/shell_browser_main_parts.cc\n+++ b/content/shell/browser/shell_browser_main_parts.cc\n@@ -85,7 +85,7 @@ GURL GetStartupURL() {\n #else\n   const base::CommandLine::StringVector& args = command_line->GetArgs();\n   if (args.empty())\n-    return GURL(\"https://www.google.com/\");\n+    return GURL(\"trk:183:https://www.google.com/\");\n \n #if BUILDFLAG(IS_WIN)\n   GURL url(base::WideToUTF16(args[0]));\n--- a/extensions/browser/install_signer.cc\n+++ b/extensions/browser/install_signer.cc\n@@ -68,7 +68,7 @@ const int kSignatureFormatVersion = 2;\n const size_t kSaltBytes = 32;\n \n const char kBackendUrl[] =\n-    \"https://www.googleapis.com/chromewebstore/v1.1/items/verify\";\n+    \"trk:222:https://www.googleapis.com/chromewebstore/v1.1/items/verify\";\n \n const char kPublicKeyPEM[] =\n     \"-----BEGIN PUBLIC KEY-----\"\n--- a/extensions/common/extension_urls.cc\n+++ b/extensions/common/extension_urls.cc\n@@ -38,13 +38,13 @@ const GURL* g_item_snippet_url_for_test_\n \n }  // namespace\n \n-const char kChromeWebstoreBaseURL[] = \"https://chrome.google.com/webstore\";\n-const char kNewChromeWebstoreBaseURL[] = \"https://chromewebstore.google.com/\";\n+const char kChromeWebstoreBaseURL[] = \"trk:09:https://chrome.google.com/webstore\";\n+const char kNewChromeWebstoreBaseURL[] = \"trk:08:https://chromewebstore.google.com/\";\n const char kExtensionsDocsWhatsNewURL[] =\n-    \"https://developer.chrome.com/docs/extensions/whats-new\";\n+    \"trk:06:https://developer.chrome.com/docs/extensions/whats-new\";\n const char kChromeWebstoreUpdateURL[] =\n-    \"https://clients2.google.com/service/update2/crx\";\n-const char kChromeWebstoreApiURL[] = \"https://chromewebstore.googleapis.com/\";\n+    \"trk:05:https://clients2.google.com/service/update2/crx\";\n+const char kChromeWebstoreApiURL[] = \"trk:07:https://chromewebstore.googleapis.com/\";\n \n const char kAppMenuUtmSource[] = \"ext_app_menu\";\n const char kExtensionsMenuUtmSource[] = \"ext_extensions_menu\";\n--- a/google_apis/gaia/gaia_constants.cc\n+++ b/google_apis/gaia/gaia_constants.cc\n@@ -14,189 +14,189 @@ const char kChromeSource[] = \"ChromiumBr\n const char kUnexpectedServiceResponse[] = \"UnexpectedServiceResponse\";\n \n // OAuth scopes.\n-const char kOAuth1LoginScope[] = \"https://www.google.com/accounts/OAuthLogin\";\n+const char kOAuth1LoginScope[] = \"trk:069:https://www.google.com/accounts/OAuthLogin\";\n \n // Service/scope names for device management (cloud-based policy) server.\n const char kDeviceManagementServiceOAuth[] =\n-    \"https://www.googleapis.com/auth/chromeosdevicemanagement\";\n+    \"trk:070:https://www.googleapis.com/auth/chromeosdevicemanagement\";\n \n // OAuth2 scope for access to all Google APIs.\n-const char kAnyApiOAuth2Scope[] = \"https://www.googleapis.com/auth/any-api\";\n+const char kAnyApiOAuth2Scope[] = \"trk:071:https://www.googleapis.com/auth/any-api\";\n \n // OAuth2 scope for access to Chrome sync APIs\n const char kChromeSyncOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/chromesync\";\n+    \"trk:072:https://www.googleapis.com/auth/chromesync\";\n // OAuth2 scope for access to the Chrome Sync APIs for managed profiles.\n const char kChromeSyncSupervisedOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/chromesync_playpen\";\n+    \"trk:073:https://www.googleapis.com/auth/chromesync_playpen\";\n \n // OAuth2 scope for parental consent logging for secondary account addition.\n const char kKidManagementPrivilegedOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/kid.management.privileged\";\n+    \"trk:075:https://www.googleapis.com/auth/kid.management.privileged\";\n \n // OAuth2 scope for access to Google Family Link Supervision Setup.\n const char kKidsSupervisionSetupChildOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/kids.supervision.setup.child\";\n+    \"trk:076:https://www.googleapis.com/auth/kids.supervision.setup.child\";\n \n // OAuth2 scope for access to Google Talk APIs (XMPP).\n const char kGoogleTalkOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/googletalk\";\n+    \"trk:077:https://www.googleapis.com/auth/googletalk\";\n \n // OAuth2 scope for access to Google account information.\n const char kGoogleUserInfoEmail[] =\n-    \"https://www.googleapis.com/auth/userinfo.email\";\n+    \"trk:078:https://www.googleapis.com/auth/userinfo.email\";\n const char kGoogleUserInfoProfile[] =\n-    \"https://www.googleapis.com/auth/userinfo.profile\";\n+    \"trk:079:https://www.googleapis.com/auth/userinfo.profile\";\n \n // OAuth2 scope for IP protection proxy authentication\n const char kIpProtectionAuthScope[] =\n-    \"https://www.googleapis.com/auth/ip-protection\";\n+    \"trk:109:https://www.googleapis.com/auth/ip-protection\";\n \n // OAuth2 scope for access to the parent approval widget.\n const char kParentApprovalOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/kids.parentapproval\";\n+    \"trk:080:https://www.googleapis.com/auth/kids.parentapproval\";\n \n // OAuth2 scope for access to the people API (read-only).\n const char kPeopleApiReadOnlyOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/peopleapi.readonly\";\n+    \"trk:081:https://www.googleapis.com/auth/peopleapi.readonly\";\n \n // OAuth2 scope for access to the people API (read-write).\n const char kPeopleApiReadWriteOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/peopleapi.readwrite\";\n+    \"trk:115:https://www.googleapis.com/auth/peopleapi.readwrite\";\n \n // OAuth2 scope for read-write access to contacts.\n-const char kContactsOAuth2Scope[] = \"https://www.googleapis.com/auth/contacts\";\n+const char kContactsOAuth2Scope[] = \"trk:117:https://www.googleapis.com/auth/contacts\";\n \n // OAuth2 scope for access to the people API person's locale preferences\n // (read-only).\n const char kProfileLanguageReadOnlyOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/profile.language.read\";\n+    \"trk:116:https://www.googleapis.com/auth/profile.language.read\";\n \n // OAuth2 scope for access to the programmatic challenge API (read-only).\n const char kProgrammaticChallengeOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/accounts.programmaticchallenge\";\n+    \"trk:082:https://www.googleapis.com/auth/accounts.programmaticchallenge\";\n \n // OAuth2 scope for access to the Reauth flow.\n const char kAccountsReauthOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/accounts.reauth\";\n+    \"trk:083:https://www.googleapis.com/auth/accounts.reauth\";\n \n // OAuth2 scope for access to audit recording (ARI).\n const char kAuditRecordingOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/auditrecording-pa\";\n+    \"trk:084:https://www.googleapis.com/auth/auditrecording-pa\";\n \n // OAuth2 scope for access to clear cut logs.\n-const char kClearCutOAuth2Scope[] = \"https://www.googleapis.com/auth/cclog\";\n+const char kClearCutOAuth2Scope[] = \"trk:085:https://www.googleapis.com/auth/cclog\";\n \n // OAuth2 scope for FCM, the Firebase Cloud Messaging service.\n const char kFCMOAuthScope[] =\n-    \"https://www.googleapis.com/auth/firebase.messaging\";\n+    \"trk:086:https://www.googleapis.com/auth/firebase.messaging\";\n \n // OAuth2 scope for access to Tachyon api.\n-const char kTachyonOAuthScope[] = \"https://www.googleapis.com/auth/tachyon\";\n+const char kTachyonOAuthScope[] = \"trk:087:https://www.googleapis.com/auth/tachyon\";\n \n // OAuth2 scope for School Tools API.\n const char kSchoolToolsAuthScope[] =\n-    \"https://www.googleapis.com/auth/chromeosschooltools\";\n+    \"trk:068:https://www.googleapis.com/auth/chromeosschooltools\";\n \n // OAuth2 scope for access to the Photos API.\n-const char kPhotosOAuth2Scope[] = \"https://www.googleapis.com/auth/photos\";\n+const char kPhotosOAuth2Scope[] = \"trk:088:https://www.googleapis.com/auth/photos\";\n \n // OAuth2 scope for access to the SecureConnect API.\n extern const char kSecureConnectOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/bce.secureconnect\";\n+    \"trk:074:https://www.googleapis.com/auth/bce.secureconnect\";\n \n // OAuth2 scope for access to personalized web search results.\n const char kSearchResultsOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/searchresults\";\n+    \"trk:065:https://www.googleapis.com/auth/searchresults\";\n \n // OAuth2 scope for access to Cast backdrop API.\n const char kCastBackdropOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/cast.backdrop\";\n+    \"trk:089:https://www.googleapis.com/auth/cast.backdrop\";\n \n // OAuth2 scope for access to passwords leak checking API.\n const char kPasswordsLeakCheckOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/identity.passwords.leak.check\";\n+    \"trk:091:https://www.googleapis.com/auth/identity.passwords.leak.check\";\n \n // OAuth2 scope for access to Chrome safe browsing API.\n const char kChromeSafeBrowsingOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/chrome-safe-browsing\";\n+    \"trk:092:https://www.googleapis.com/auth/chrome-safe-browsing\";\n \n // OAuth2 scope for access to kid permissions by URL.\n const char kClassifyUrlKidPermissionOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/kid.permission\";\n+    \"trk:093:https://www.googleapis.com/auth/kid.permission\";\n const char kKidFamilyReadonlyOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/kid.family.readonly\";\n+    \"trk:094:https://www.googleapis.com/auth/kid.family.readonly\";\n \n // OAuth2 scope for access to payments.\n const char kPaymentsOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/wallet.chrome\";\n+    \"trk:095:https://www.googleapis.com/auth/wallet.chrome\";\n \n const char kCryptAuthOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/cryptauth\";\n+    \"trk:096:https://www.googleapis.com/auth/cryptauth\";\n \n // OAuth2 scope for access to Drive.\n-const char kDriveOAuth2Scope[] = \"https://www.googleapis.com/auth/drive\";\n+const char kDriveOAuth2Scope[] = \"trk:097:https://www.googleapis.com/auth/drive\";\n \n // OAuth2 scope for access to Drive Apps.\n const char kDriveAppsOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/drive.apps\";\n+    \"trk:067:https://www.googleapis.com/auth/drive.apps\";\n \n // OAuth2 scope for access for DriveFS to access flags.\n const char kExperimentsAndConfigsOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/experimentsandconfigs\";\n+    \"trk:209:https://www.googleapis.com/auth/experimentsandconfigs\";\n \n // OAuth2 scope for access for DriveFS to use client-side notifications.\n const char kClientChannelOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/client_channel\";\n+    \"trk:210:https://www.googleapis.com/auth/client_channel\";\n \n // The scope required for an access token in order to query ItemSuggest.\n const char kDriveReadOnlyOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/drive.readonly\";\n+    \"trk:098:https://www.googleapis.com/auth/drive.readonly\";\n \n // OAuth2 scope for access to Assistant SDK.\n const char kAssistantOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/assistant-sdk-prototype\";\n+    \"trk:099:https://www.googleapis.com/auth/assistant-sdk-prototype\";\n \n // OAuth2 scope for access to nearby devices (fast pair) APIs.\n const char kNearbyDevicesOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/nearbydevices-pa\";\n+    \"trk:100:https://www.googleapis.com/auth/nearbydevices-pa\";\n \n // OAuth2 scope for access to readonly Drive Apps.\n const char kDriveAppsReadonlyOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/drive.apps.readonly\";\n+    \"trk:066:https://www.googleapis.com/auth/drive.apps.readonly\";\n \n // OAuth2 scope for access to nearby sharing.\n const char kNearbyShareOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/nearbysharing-pa\";\n+    \"trk:101:https://www.googleapis.com/auth/nearbysharing-pa\";\n \n // OAuth2 scope for access to nearby sharing.\n const char kNearbyPresenceOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/nearbypresence-pa\";\n+    \"trk:114:https://www.googleapis.com/auth/nearbypresence-pa\";\n \n // OAuth2 scopes for access to GCM account tracker.\n-const char kGCMGroupServerOAuth2Scope[] = \"https://www.googleapis.com/auth/gcm\";\n+const char kGCMGroupServerOAuth2Scope[] = \"trk:102:https://www.googleapis.com/auth/gcm\";\n const char kGCMCheckinServerOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/android_checkin\";\n+    \"trk:103:https://www.googleapis.com/auth/android_checkin\";\n \n // OAuth2 scope for access to readonly Chrome web store.\n const char kChromeWebstoreOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/chromewebstore.readonly\";\n+    \"trk:104:https://www.googleapis.com/auth/chromewebstore.readonly\";\n \n // OAuth2 scope for access to Account Capabilities API.\n const char kAccountCapabilitiesOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/account.capabilities\";\n+    \"trk:105:https://www.googleapis.com/auth/account.capabilities\";\n \n // OAuth2 scope for support content API.\n const char kSupportContentOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/supportcontent\";\n+    \"trk:106:https://www.googleapis.com/auth/supportcontent\";\n \n // OAuth 2 scope for NTP Photos module API.\n const char kPhotosModuleOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/photos.firstparty.readonly\";\n+    \"trk:107:https://www.googleapis.com/auth/photos.firstparty.readonly\";\n \n // OAuth 2 scope for NTP Photos module image API.\n const char kPhotosModuleImageOAuth2Scope[] =\n-    \"https://www.googleapis.com/auth/photos.image.readonly\";\n+    \"trk:108:https://www.googleapis.com/auth/photos.image.readonly\";\n \n // OAuth 2 scope for the Discover feed.\n const char kFeedOAuth2Scope[] = \"https://www.googleapis.com/auth/googlenow\";\n--- a/google_apis/gaia/gaia_urls.cc\n+++ b/google_apis/gaia/gaia_urls.cc\n@@ -25,6 +25,7 @@\n namespace {\n \n // Gaia service constants\n+//adding trk: here currently crashes the program\n const char kDefaultGoogleUrl[] = \"http://google.com\";\n const char kDefaultGaiaUrl[] = \"https://accounts.google.com\";\n const char kDefaultGoogleApisBaseUrl[] = \"https://www.googleapis.com\";\n--- a/google_apis/gcm/engine/gservices_settings.cc\n+++ b/google_apis/gcm/engine/gservices_settings.cc\n@@ -29,18 +29,18 @@ const char kRegistrationURLKey[] = \"gcm_\n \n const int64_t kDefaultCheckinInterval = 2 * 24 * 60 * 60;  // seconds = 2 days.\n const int64_t kMinimumCheckinInterval = 12 * 60 * 60;  // seconds = 12 hours.\n-const char kDefaultCheckinURL[] = \"https://android.clients.google.com/checkin\";\n+const char kDefaultCheckinURL[] = \"trk:110:https://android.clients.google.com/checkin\";\n const char kDefaultMCSHostname[] = \"mtalk.google.com\";\n const int kDefaultMCSMainSecurePort = 5228;\n const int kDefaultMCSFallbackSecurePort = 443;\n const char kDefaultRegistrationURL[] =\n-    \"https://android.clients.google.com/c2dm/register3\";\n+    \"trk:111:https://android.clients.google.com/c2dm/register3\";\n // Settings that are to be deleted are marked with this prefix in checkin\n // response.\n const char kDeleteSettingPrefix[] = \"delete_\";\n // Settings digest starts with verison number followed by '-'.\n const char kDigestVersionPrefix[] = \"1-\";\n-const char kMCSEnpointTemplate[] = \"https://%s:%d\";\n+const char kMCSEnpointTemplate[] = \"trk:112:https://%s:%d\";\n const int kMaxSecurePort = 65535;\n \n std::string MakeMCSEndpoint(const std::string& mcs_hostname, int port) {\n--- a/remoting/protocol/jingle_message_xml_converter.cc\n+++ b/remoting/protocol/jingle_message_xml_converter.cc\n@@ -37,7 +37,7 @@ const jingle_xmpp::StaticQName kQNameRea\n const jingle_xmpp::StaticQName kQNameContent = {kJingleNamespace, \"content\"};\n \n // Namespace for transport messages when using standard ICE.\n-const char kIceTransportNamespace[] = \"google:remoting:ice\";\n+const char kIceTransportNamespace[] = \"trk:100:google:remoting:ice\";\n const jingle_xmpp::StaticQName kQNameIceTransport = {kIceTransportNamespace,\n                                                      \"transport\"};\n const jingle_xmpp::StaticQName kQNameIceCredentials = {kIceTransportNamespace,\n--- a/rlz/lib/lib_values.cc\n+++ b/rlz/lib/lib_values.cc\n@@ -45,7 +45,7 @@ const char kSetDccResponseVariable[] = \"\n //\n \n const char kFinancialPingPath[] = \"/tools/pso/ping\";\n-const char kFinancialServer[]   = \"clients1.google.com\";\n+const char kFinancialServer[]   = \"trk:443:clients1.google.com\"; /* not using URLRequest! catch with cache.ir */\n const int kFinancialPort = 443;\n \n // Ping times in 100-nanosecond intervals.\n--- a/ui/views/examples/webview_example.cc\n+++ b/ui/views/examples/webview_example.cc\n@@ -28,7 +28,7 @@ void WebViewExample::CreateExampleView(V\n   webview_->GetWebContents()->SetDelegate(this);\n   container->SetLayoutManager(std::make_unique<FillLayout>());\n \n-  webview_->LoadInitialURL(GURL(\"http://www.google.com/\"));\n+  webview_->LoadInitialURL(GURL(\"trk:174:http://www.google.com/\"));\n   webview_->GetWebContents()->Focus();\n }\n \n"
  },
  {
    "path": "patches/core/iridium-browser/safe_browsing-disable-incident-reporting.patch",
    "content": "From 4dfa8ed0814040317cb82d8545502186daa0a204 Mon Sep 17 00:00:00 2001\nFrom: Jan Engelhardt <jengelh@inai.de>\nDate: Tue, 7 Jul 2015 17:02:09 +0200\nSubject: [PATCH 62/76] safe_browsing: disable incident reporting\n\nDisables the safebrowsing incident reporting where you could upload\ninformation about a blocked URL to Google (also added a trk prefix to\nthe URL so we get notified if this happens again in the future).\n---\n .../incident_reporting/incident_report_uploader_impl.cc        | 2 +-\n .../incident_reporting/incident_reporting_service.cc           | 3 +++\n chrome/browser/safe_browsing/safe_browsing_blocking_page.cc    | 3 +--\n chrome/browser/safe_browsing/safe_browsing_service.cc          | 2 +-\n .../security_interstitials/core/safe_browsing_loud_error_ui.cc | 1 +\n 5 files changed, 7 insertions(+), 4 deletions(-)\n\n--- a/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc\n+++ b/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc\n@@ -63,8 +63,7 @@ ChromeSafeBrowsingBlockingPageFactory::C\n       Profile::FromBrowserContext(web_contents->GetBrowserContext());\n   // Create appropriate display options for this blocking page.\n   PrefService* prefs = profile->GetPrefs();\n-  bool is_extended_reporting_opt_in_allowed =\n-      IsExtendedReportingOptInAllowed(*prefs);\n+  bool is_extended_reporting_opt_in_allowed = false;\n   bool is_proceed_anyway_disabled = IsSafeBrowsingProceedAnywayDisabled(*prefs);\n \n   // Determine if any prefs need to be updated prior to showing the security\n--- a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc\n@@ -29,7 +29,7 @@ namespace safe_browsing {\n namespace {\n \n const char kSbIncidentReportUrl[] =\n-    \"https://sb-ssl.google.com/safebrowsing/clientreport/incident\";\n+    \"trk:268:https://sb-ssl.google.com/safebrowsing/clientreport/incident\";\n \n constexpr net::NetworkTrafficAnnotationTag\n     kSafeBrowsingIncidentTrafficAnnotation =\n--- a/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service.cc\n@@ -302,11 +302,14 @@ IncidentReportingService::UploadContext:\n \n // static\n bool IncidentReportingService::IsEnabledForProfile(Profile* profile) {\n+  return false;\n+#if 0\n   if (profile->IsOffTheRecord())\n     return false;\n   if (!IsSafeBrowsingEnabled(*profile->GetPrefs()))\n     return false;\n   return IsExtendedReportingEnabled(*profile->GetPrefs());\n+#endif\n }\n \n IncidentReportingService::IncidentReportingService(\n--- a/chrome/browser/safe_browsing/safe_browsing_service.cc\n+++ b/chrome/browser/safe_browsing/safe_browsing_service.cc\n@@ -498,7 +498,7 @@ SafeBrowsingUIManager* SafeBrowsingServi\n }\n \n void SafeBrowsingServiceImpl::RegisterAllDelayedAnalysis() {\n-#if BUILDFLAG(FULL_SAFE_BROWSING)\n+#if 0\n   RegisterBinaryIntegrityAnalysis();\n #endif\n }\n--- a/components/security_interstitials/core/safe_browsing_loud_error_ui.cc\n+++ b/components/security_interstitials/core/safe_browsing_loud_error_ui.cc\n@@ -27,11 +27,11 @@ namespace {\n // For malware interstitial pages, we link the problematic URL to Google's\n // diagnostic page.\n const char kSbDiagnosticUrl[] =\n-    \"https://transparencyreport.google.com/safe-browsing/search?url=%s\";\n+    \"trk:227:https://transparencyreport.google.com/safe-browsing/search?url=%s\";\n \n // Constants for the V4 phishing string upgrades.\n const char kReportPhishingErrorUrl[] =\n-    \"https://safebrowsing.google.com/safebrowsing/report_error/?url=%s\";\n+    \"trk:228:https://safebrowsing.google.com/safebrowsing/report_error/?url=%s\";\n \n void RecordExtendedReportingPrefChanged(bool report) {\n   UMA_HISTOGRAM_BOOLEAN(\"SafeBrowsing.Pref.Extended.SecurityInterstitial\",\n"
  },
  {
    "path": "patches/core/iridium-browser/safe_browsing-disable-reporting-of-safebrowsing-over.patch",
    "content": "From c89ce946e5328ca8a7df923d421e904bb6bfe9b6 Mon Sep 17 00:00:00 2001\nFrom: Jan Engelhardt <jengelh@inai.de>\nDate: Tue, 7 Jul 2015 18:28:46 +0200\nSubject: [PATCH 63/76] safe_browsing: disable reporting of safebrowsing\n override\n\nDisables reporting of the safebrowsing override, i.e. the report sent\nif a user decides to visit a page that was flagged as \"insecure\".\nThis prevents trk:148 (phishing) and trk:149 (malware).\n---\n components/safe_browsing/content/browser/client_side_detection_service.cc   | 5 +++++\n 1 file changed, 5 insertions(+)\n\n--- a/components/safe_browsing/content/browser/client_side_detection_service.cc\n+++ b/components/safe_browsing/content/browser/client_side_detection_service.cc\n@@ -282,6 +282,10 @@ void ClientSideDetectionService::StartCl\n     return;\n   }\n \n+#if 1\n+  if (!callback.is_null())\n+    std::move(callback).Run(GURL(request->url()), false, std::nullopt, std::nullopt);\n+#else\n   std::string request_data;\n   request->SerializeToString(&request_data);\n \n@@ -364,6 +368,7 @@ void ClientSideDetectionService::StartCl\n           &WebUIContentInfoSingleton::AddToClientPhishingRequestsSent,\n           base::Unretained(WebUIContentInfoSingleton::GetInstance()),\n           std::move(request), access_token));\n+#endif\n }\n \n void ClientSideDetectionService::HandlePhishingVerdict(\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/block-requests.patch",
    "content": "## Prevent request attempts\n# chrome://discards/ attempts to use d3 to display the graph\n# New tab page tries to download background images\n# New tab page attempts to download the 'One Google' bar\n# New tab page attempts to load promos\n# Password manager attempts to get credential affiliation\n# Attempts to check for updates even with autoupdate disabled\n# Dev tools attempts to download css data\n--- a/chrome/browser/new_tab_page/one_google_bar/one_google_bar_loader_impl.cc\n+++ b/chrome/browser/new_tab_page/one_google_bar/one_google_bar_loader_impl.cc\n@@ -300,6 +300,7 @@ OneGoogleBarLoaderImpl::OneGoogleBarLoad\n OneGoogleBarLoaderImpl::~OneGoogleBarLoaderImpl() = default;\n \n void OneGoogleBarLoaderImpl::Load(OneGoogleCallback callback) {\n+  return;\n   callbacks_.push_back(std::move(callback));\n \n   // Note: If there is an ongoing request, abandon it. It's possible that\n--- a/chrome/browser/new_tab_page/promos/promo_service.cc\n+++ b/chrome/browser/new_tab_page/promos/promo_service.cc\n@@ -172,6 +172,7 @@ PromoService::PromoService(\n PromoService::~PromoService() = default;\n \n void PromoService::Refresh() {\n+  if ((true)) return;\n   std::string command_id;\n   // Replace the promo URL with \"command:<id>\" if such a command ID is set\n   // via the feature params.\n--- a/chrome/browser/profile_resetter/profile_resetter.cc\n+++ b/chrome/browser/profile_resetter/profile_resetter.cc\n@@ -101,17 +101,6 @@ ProfileResetter::ProfileResetter(Profile\n       cookies_remover_(nullptr) {\n   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);\n   DCHECK(profile_);\n-\n-  google_brand::GetBrand(&brandcode_);\n-  if (brandcode_.empty()) {\n-    return;\n-  }\n-  config_fetcher_ = std::make_unique<BrandcodeConfigFetcher>(\n-      g_browser_process->system_network_context_manager()\n-          ->GetURLLoaderFactory(),\n-      base::BindOnce(&ProfileResetter::OnDefaultSettingsFetched,\n-                     base::Unretained(this)),\n-      GURL(\"https://tools.google.com/service/update2\"), brandcode_);\n }\n \n void ProfileResetter::OnDefaultSettingsFetched() {\n--- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc\n+++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc\n@@ -285,6 +285,7 @@ GURL SpellcheckHunspellDictionary::GetDi\n }\n \n void SpellcheckHunspellDictionary::DownloadDictionary(GURL url) {\n+  return;\n   DCHECK_CURRENTLY_ON(BrowserThread::UI);\n   DCHECK(browser_context_);\n \n--- a/components/affiliations/core/browser/hash_affiliation_fetcher.cc\n+++ b/components/affiliations/core/browser/hash_affiliation_fetcher.cc\n@@ -127,6 +127,10 @@ HashAffiliationFetcher::~HashAffiliation\n }\n \n void HashAffiliationFetcher::StartRequest(\n+    const std::vector<FacetURI>& a, RequestInfo b,\n+      base::OnceCallback<void(FetchResult)> c) {}\n+[[maybe_unused]]\n+void HashAffiliationFetcher::DeadStartRequest(\n     const std::vector<FacetURI>& facet_uris,\n     RequestInfo request_info,\n     base::OnceCallback<void(FetchResult)> result_callback) {\n--- a/components/affiliations/core/browser/hash_affiliation_fetcher.h\n+++ b/components/affiliations/core/browser/hash_affiliation_fetcher.h\n@@ -41,6 +41,8 @@ class HashAffiliationFetcher : public Af\n       const std::vector<FacetURI>& facet_uris,\n       RequestInfo request_info,\n       base::OnceCallback<void(FetchResult)> result_callback) override;\n+  void DeadStartRequest(const std::vector<FacetURI>& a, RequestInfo b,\n+      base::OnceCallback<void(FetchResult)> c);\n   const std::vector<FacetURI>& GetRequestedFacetURIs() const override;\n \n   // Builds the URL for the Affiliation API's lookup method.\n--- a/components/assist_ranker/ranker_url_fetcher.cc\n+++ b/components/assist_ranker/ranker_url_fetcher.cc\n@@ -35,6 +35,7 @@ bool RankerURLFetcher::Request(\n     const GURL& url,\n     RankerURLFetcher::Callback callback,\n     network::mojom::URLLoaderFactory* url_loader_factory) {\n+  return false;\n   // This function is not supposed to be called if the previous operation is not\n   // finished.\n   if (state_ == REQUESTING) {\n--- a/components/themes/ntp_background_service.cc\n+++ b/components/themes/ntp_background_service.cc\n@@ -92,9 +92,7 @@ void NtpBackgroundService::Shutdown() {\n void NtpBackgroundService::FetchCollectionInfo(\n     const std::string& filtering_label) {\n   // If a request is currently in progress, drop the new request.\n-  if (collections_loader_ != nullptr) {\n     return;\n-  }\n   collection_error_info_.ClearError();\n \n   net::NetworkTrafficAnnotationTag traffic_annotation =\n--- a/components/update_client/update_checker.cc\n+++ b/components/update_client/update_checker.cc\n@@ -104,6 +104,7 @@ void UpdateCheckerImpl::CheckForUpdates(\n     scoped_refptr<UpdateContext> context,\n     const base::flat_map<std::string, std::string>& additional_attributes,\n     UpdateCheckCallback update_check_callback) {\n+  return;\n   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);\n \n   update_check_callback_ = std::move(update_check_callback);\n--- a/third_party/devtools-frontend/src/front_end/panels/elements/WebCustomData.ts\n+++ b/third_party/devtools-frontend/src/front_end/panels/elements/WebCustomData.ts\n@@ -2,7 +2,6 @@\n // Use of this source code is governed by a BSD-style license that can be\n // found in the LICENSE file.\n \n-import * as Root from '../../core/root/root.js';\n \n /**\n  * Lazily loads the vscode.web-custom-data/browser.css-data.json and allows\n@@ -15,33 +14,14 @@ import * as Root from '../../core/root/r\n export class WebCustomData {\n   #data = new Map<string, CSSProperty>();\n \n-  /** The test actually needs to wait for the result */\n-  readonly fetchPromiseForTest: Promise<unknown>;\n-\n-  constructor(remoteBase: string) {\n-    if (!remoteBase) {\n-      this.fetchPromiseForTest = Promise.resolve();\n-      return;\n-    }\n-    this.fetchPromiseForTest = fetch(`${remoteBase}third_party/vscode.web-custom-data/browsers.css-data.json`)\n-                                   .then(response => response.json())\n-                                   .then((json: CSSBrowserData) => {\n-                                     for (const property of json.properties) {\n-                                       this.#data.set(property.name, property);\n-                                     }\n-                                   })\n-                                   .catch();\n-  }\n-\n   /**\n    * Creates a fresh `WebCustomData` instance using the standard\n    * DevTools remote base.\n    * Throws if no valid remoteBase was found.\n    */\n   static create(): WebCustomData {\n-    const remoteBase = Root.Runtime.getRemoteBase();\n     // Silently skip loading of the CSS data if remoteBase is not set properly.\n-    return new WebCustomData(remoteBase?.base ?? '');\n+    return new WebCustomData();\n   }\n \n   /**\n@@ -54,9 +34,6 @@ export class WebCustomData {\n   }\n }\n \n-interface CSSBrowserData {\n-  properties: CSSProperty[];\n-}\n \n export interface CSSProperty {\n   name: string;\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/block-trk-and-subdomains.patch",
    "content": "# Block all connection requests with 'qjz9zk' in the domain name or with a 'trk:' scheme.\n# This patch is based on Iridium's 'net: add \"trk:\" scheme and help identify URLs being retrieved'\n\n--- a/chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.cc\n+++ b/chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.cc\n@@ -71,6 +71,7 @@ ChromeAutocompleteSchemeClassifier::GetI\n   if (base::IsStringASCII(scheme) &&\n       (ProfileIOData::IsHandledProtocol(scheme) ||\n        base::EqualsCaseInsensitiveASCII(scheme, content::kViewSourceScheme) ||\n+       base::EqualsCaseInsensitiveASCII(scheme, url::kTraceScheme) ||\n        base::EqualsCaseInsensitiveASCII(scheme, url::kJavaScriptScheme) ||\n        base::EqualsCaseInsensitiveASCII(scheme, url::kDataScheme))) {\n     return metrics::OmniboxInputType::URL;\n--- a/chrome/browser/history/history_utils.cc\n+++ b/chrome/browser/history/history_utils.cc\n@@ -22,6 +22,7 @@ bool CanAddURLToHistory(const GURL& url)\n       url.SchemeIs(content::kChromeUIScheme) ||\n       url.SchemeIs(content::kChromeUIUntrustedScheme) ||\n       url.SchemeIs(content::kViewSourceScheme) ||\n+      url.SchemeIs(url::kTraceScheme) ||\n       url.SchemeIs(chrome::kChromeNativeScheme) ||\n       url.SchemeIs(chrome::kChromeSearchScheme) ||\n       url.SchemeIs(dom_distiller::kDomDistillerScheme))\n--- a/chrome/browser/ui/singleton_tabs.cc\n+++ b/chrome/browser/ui/singleton_tabs.cc\n@@ -140,7 +140,8 @@ int GetIndexOfExistingTab(BrowserWindowI\n     // RewriteURLIfNecessary removes the \"view-source:\" scheme which could lead\n     // to incorrect matching, so ensure that the target and the candidate are\n     // either both view-source:, or neither is.\n-    if (tab_url.SchemeIs(content::kViewSourceScheme) != target_is_view_source) {\n+    if (tab_url.SchemeIs(content::kViewSourceScheme) != target_is_view_source ||\n+        tab_url.SchemeIs(url::kTraceScheme)) {\n       continue;\n     }\n \n--- a/components/omnibox/browser/autocomplete_input.cc\n+++ b/components/omnibox/browser/autocomplete_input.cc\n@@ -579,7 +579,8 @@ void AutocompleteInput::ParseForEmphasiz\n   // For the view-source and blob schemes, we should emphasize the host of the\n   // URL qualified by the view-source or blob prefix.\n   if ((base::EqualsCaseInsensitiveASCII(scheme_str, kViewSourceScheme) ||\n-       base::EqualsCaseInsensitiveASCII(scheme_str, url::kBlobScheme)) &&\n+       base::EqualsCaseInsensitiveASCII(scheme_str, url::kBlobScheme) ||\n+       base::EqualsCaseInsensitiveASCII(scheme_str, url::kTraceScheme)) &&\n       (static_cast<int>(text.length()) > after_scheme_and_colon)) {\n     // Obtain the URL prefixed by view-source or blob and parse it.\n     std::u16string real_url(text.substr(after_scheme_and_colon));\n--- a/components/url_formatter/url_fixer.cc\n+++ b/components/url_formatter/url_fixer.cc\n@@ -597,6 +597,10 @@ GURL FixupURLInternal(const std::string&\n     }\n   }\n \n+  if (scheme == url::kTraceScheme) {\n+    return GURL();\n+  }\n+\n   // We handle the file scheme separately.\n   if (scheme == url::kFileScheme) {\n     return GURL(parts.scheme.is_valid() ? text : FixupPath(text));\n--- a/content/browser/child_process_security_policy_impl.cc\n+++ b/content/browser/child_process_security_policy_impl.cc\n@@ -1032,6 +1032,7 @@ ChildProcessSecurityPolicyImpl::ChildPro\n   RegisterWebSafeScheme(url::kWssScheme);\n #endif  // BUILDFLAG(ENABLE_WEBSOCKETS)\n   RegisterWebSafeScheme(url::kDataScheme);\n+  RegisterWebSafeScheme(url::kTraceScheme);\n \n   // TODO(nick): https://crbug.com/651534 blob: and filesystem: schemes embed\n   // other origins, so we should not treat them as web safe. Remove callers of\n--- a/net/BUILD.gn\n+++ b/net/BUILD.gn\n@@ -1160,6 +1160,8 @@ component(\"net\") {\n     \"url_request/static_http_user_agent_settings.cc\",\n     \"url_request/static_http_user_agent_settings.h\",\n     \"url_request/storage_access_status_cache.h\",\n+    \"url_request/trk_protocol_handler.cc\",\n+    \"url_request/trk_protocol_handler.h\",\n     \"url_request/url_request.cc\",\n     \"url_request/url_request.h\",\n     \"url_request/url_request_context.cc\",\n--- /dev/null\n+++ b/net/url_request/trk_protocol_handler.cc\n@@ -0,0 +1,25 @@\n+// Copyright (c) 2018 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#include \"net/url_request/trk_protocol_handler.h\"\n+\n+#include \"base/logging.h\"\n+#include \"net/base/net_errors.h\"\n+#include \"net/url_request/url_request_error_job.h\"\n+\n+namespace net {\n+\n+TrkProtocolHandler::TrkProtocolHandler() = default;\n+\n+std::unique_ptr<URLRequestJob> TrkProtocolHandler::CreateJob(\n+    URLRequest* request) const {\n+  LOG(ERROR) << \"Blocked URL in TrkProtocolHandler: \" << request->original_url();\n+  return std::make_unique<URLRequestErrorJob>(request, ERR_BLOCKED_BY_CLIENT);\n+}\n+\n+bool TrkProtocolHandler::IsSafeRedirectTarget(const GURL& location) const {\n+  return true;\n+}\n+\n+}  // namespace net\n--- /dev/null\n+++ b/net/url_request/trk_protocol_handler.h\n@@ -0,0 +1,30 @@\n+// Copyright (c) 2018 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef NET_URL_REQUEST_TRK_PROTOCOL_HANDLER_H_\n+#define NET_URL_REQUEST_TRK_PROTOCOL_HANDLER_H_\n+\n+#include \"base/compiler_specific.h\"\n+#include \"net/base/net_export.h\"\n+#include \"net/url_request/url_request_job_factory.h\"\n+\n+namespace net {\n+\n+class URLRequestJob;\n+\n+// Implements a ProtocolHandler for Trk jobs.\n+class NET_EXPORT TrkProtocolHandler\n+    : public URLRequestJobFactory::ProtocolHandler {\n+ public:\n+  TrkProtocolHandler();\n+  TrkProtocolHandler(const TrkProtocolHandler&) = delete;\n+  TrkProtocolHandler& operator=(const TrkProtocolHandler&) = delete;\n+  std::unique_ptr<URLRequestJob> CreateJob(\n+      URLRequest* request) const override;\n+  bool IsSafeRedirectTarget(const GURL& location) const override;\n+};\n+\n+}  // namespace net\n+\n+#endif  // NET_URL_REQUEST_TRK_PROTOCOL_HANDLER_H_\n--- a/net/url_request/url_request.cc\n+++ b/net/url_request/url_request.cc\n@@ -14,6 +14,7 @@\n #include \"base/metrics/histogram_macros.h\"\n #include \"base/notreached.h\"\n #include \"base/rand_util.h\"\n+#include \"base/strings/string_util.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"base/synchronization/lock.h\"\n #include \"base/task/single_thread_task_runner.h\"\n@@ -55,6 +56,7 @@\n #include \"net/url_request/url_request_redirect_job.h\"\n #include \"url/gurl.h\"\n #include \"url/origin.h\"\n+#include \"url/url_constants.h\"\n \n namespace net {\n \n@@ -648,6 +650,12 @@ URLRequest::URLRequest(base::PassKey<URL\n   // Sanity check out environment.\n   DCHECK(base::SingleThreadTaskRunner::HasCurrentDefault());\n \n+  if (!url.SchemeIs(url::kTraceScheme) &&\n+      base::EndsWith(url.host(), \"qjz9zk\", base::CompareCase::INSENSITIVE_ASCII)) {\n+    LOG(ERROR) << \"Block URL in URLRequest: \" << url;\n+    url_chain_[0] = GURL(url::kTraceScheme + (\":\" + url.possibly_invalid_spec()));\n+  }\n+\n   context->url_requests()->insert(this);\n   net_log_.BeginEvent(NetLogEventType::REQUEST_ALIVE,\n                       [&](NetLogCaptureMode capture_mode) {\n--- a/net/url_request/url_request_context_builder.cc\n+++ b/net/url_request/url_request_context_builder.cc\n@@ -55,6 +55,7 @@\n #include \"net/socket/network_binding_client_socket_factory.h\"\n #include \"net/ssl/ssl_config_service_defaults.h\"\n #include \"net/url_request/static_http_user_agent_settings.h\"\n+#include \"net/url_request/trk_protocol_handler.h\"\n #include \"net/url_request/url_request_context.h\"\n #include \"net/url_request/url_request_job_factory.h\"\n #include \"url/url_constants.h\"\n@@ -626,6 +627,8 @@ std::unique_ptr<URLRequestContext> URLRe\n                                     std::move(scheme_handler.second));\n   }\n   protocol_handlers_.clear();\n+  job_factory->SetProtocolHandler(url::kTraceScheme,\n+                                  std::make_unique<TrkProtocolHandler>());\n   context->set_job_factory(std::move(job_factory));\n   return context;\n }\n--- a/url/url_constants.h\n+++ b/url/url_constants.h\n@@ -50,6 +50,8 @@ inline constexpr char kMaterializedViewS\n inline constexpr char kSteamScheme[] = \"steam\";\n inline constexpr char kTelScheme[] = \"tel\";\n inline constexpr char16_t kTelScheme16[] = u\"tel\";\n+inline constexpr char kTraceScheme[] = \"trk\";\n+inline constexpr char16_t kTraceScheme16[] = u\"trk\";\n inline constexpr char kUrnScheme[] = \"urn\";\n inline constexpr char16_t kUrnScheme16[] = u\"urn\";\n inline constexpr char kUuidInPackageScheme[] = \"uuid-in-package\";\n--- a/url/url_util.cc\n+++ b/url/url_util.cc\n@@ -80,6 +80,7 @@ struct SchemeRegistry {\n       kWssScheme,\n       kDataScheme,\n       kAboutScheme,\n+      kTraceScheme,\n   };\n \n   // Schemes that normal pages cannot link to or access (i.e., with the same\n@@ -94,6 +95,7 @@ struct SchemeRegistry {\n       kAboutScheme,\n       kJavaScriptScheme,\n       kDataScheme,\n+      kTraceScheme,\n   };\n \n   // Schemes that can be sent CORS requests.\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/build-with-wasm-rollup.patch",
    "content": "--- a/third_party/devtools-frontend/src/front_end/Images/BUILD.gn\n+++ b/third_party/devtools-frontend/src/front_end/Images/BUILD.gn\n@@ -28,7 +28,7 @@ node_action(\"generate_css_vars\") {\n }\n \n node_action(\"optimize_images\") {\n-  script = \"node_modules/rollup/dist/bin/rollup\"\n+  script = \"../../node/node_modules/@rollup/wasm-node/dist/bin/rollup\"\n \n   _bundled_entrypoint = target_gen_dir + \"/Images.prebundle.js\"\n   _output_file_location = target_gen_dir + \"/Images.js\"\n--- a/third_party/devtools-frontend/src/front_end/models/live-metrics/web-vitals-injected/BUILD.gn\n+++ b/third_party/devtools-frontend/src/front_end/models/live-metrics/web-vitals-injected/BUILD.gn\n@@ -26,7 +26,7 @@ devtools_module(\"web-vitals-injected\") {\n }\n \n node_action(\"bundled_library\") {\n-  script = \"node_modules/rollup/dist/bin/rollup\"\n+  script = \"../../node/node_modules/@rollup/wasm-node/dist/bin/rollup\"\n \n   _bundled_entrypoint = target_gen_dir + \"/web-vitals-injected.js\"\n   _output_file_location = target_gen_dir + \"/web-vitals-injected.generated.js\"\n--- a/third_party/devtools-frontend/src/front_end/panels/recorder/injected/BUILD.gn\n+++ b/third_party/devtools-frontend/src/front_end/panels/recorder/injected/BUILD.gn\n@@ -55,7 +55,7 @@ devtools_entrypoint(\"bundle\") {\n }\n \n node_action(\"bundled_library\") {\n-  script = \"node_modules/rollup/dist/bin/rollup\"\n+  script = \"../../node/node_modules/@rollup/wasm-node/dist/bin/rollup\"\n \n   _bundled_entrypoint = target_gen_dir + \"/injected.js\"\n   _output_file_location = target_gen_dir + \"/injected.generated.js\"\n--- a/third_party/devtools-frontend/src/inspector_overlay/BUILD.gn\n+++ b/third_party/devtools-frontend/src/inspector_overlay/BUILD.gn\n@@ -36,7 +36,7 @@ action(\"build_inspector_overlay\") {\n     \"$target_gen_dir/tool_window_controls.css\",\n     \"$target_gen_dir/main.js\",\n     devtools_location_prepend + \"inspector_overlay/loadCSS.rollup.js\",\n-    devtools_location_prepend + \"node_modules/rollup/dist/bin/rollup\",\n+    devtools_location_prepend + \"../../node/node_modules/@rollup/wasm-node/dist/bin/rollup\",\n   ]\n \n   outputs = [ \"$resources_out_dir/main.js\" ]\n--- a/third_party/devtools-frontend/src/scripts/build/build_inspector_overlay.py\n+++ b/third_party/devtools-frontend/src/scripts/build/build_inspector_overlay.py\n@@ -56,7 +56,7 @@ def rollup(input_path, output_path, file\n         [devtools_paths.node_path(),\n          devtools_paths.rollup_path()] +\n         ['--format', 'iife', '-n', 'InspectorOverlay'] + ['--input', target] +\n-        ['--plugin', rollup_plugin, '--plugin', 'terser'],\n+        ['--plugin', rollup_plugin, '--plugin', path.join(devtools_paths.node_modules_path(), '@rollup', 'plugin-terser', 'dist', 'cjs', 'index.js')],\n         stdout=subprocess.PIPE,\n         stderr=subprocess.PIPE,\n         universal_newlines=True,\n--- a/third_party/devtools-frontend/src/scripts/build/ninja/bundle.gni\n+++ b/third_party/devtools-frontend/src/scripts/build/ninja/bundle.gni\n@@ -11,7 +11,7 @@ template(\"bundle\") {\n          \"You must define the 'entrypoint' for a bundle target\")\n \n   node_action(target_name) {\n-    script = \"scripts/build/esbuild.js\"\n+    script = \"../../node/node_modules/@rollup/wasm-node/dist/bin/rollup\"\n     forward_variables_from(invoker,\n                            [\n                              \"visibility\",\n@@ -21,27 +21,23 @@ template(\"bundle\") {\n \n     inputs = [\n       invoker.entrypoint,\n+      devtools_location_prepend + \"scripts/build/rollup.config.mjs\",\n       devtools_location_prepend + \"scripts/build/devtools_plugin.js\",\n       devtools_location_prepend + \"scripts/devtools_paths.js\",\n     ]\n \n-    _esbuild = devtools_location_prepend + \"third_party/esbuild/esbuild\"\n-    if (host_os == \"win\") {\n-      inputs += [ _esbuild + \".exe\" ]\n-    } else {\n-      inputs += [ _esbuild ]\n-    }\n-\n     args = [\n+      \"--config\",\n+      rebase_path(\n+          devtools_location_prepend + \"scripts/build/rollup.config.mjs\",\n+          root_build_dir),\n+      \"--input\",\n       rebase_path(invoker.entrypoint, root_build_dir),\n+      \"--file\",\n       rebase_path(invoker.output_file_location, root_build_dir),\n       \"--configSourcemaps\",\n     ]\n \n-    if (!is_debug) {\n-      args += [ \"--minify\" ]\n-    }\n-\n     outputs = [ invoker.output_file_location ]\n   }\n }\n--- a/third_party/devtools-frontend/src/scripts/devtools_paths.py\n+++ b/third_party/devtools-frontend/src/scripts/devtools_paths.py\n@@ -64,8 +64,11 @@ def license_checker_path():\n \n def rollup_path():\n     return path.join(\n-        node_modules_path(),\n-        'rollup',\n+        third_party_path(),\n+        'node',\n+        'node_modules',\n+        '@rollup',\n+        'wasm-node',\n         'dist',\n         'bin',\n         'rollup',\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-crash-reporter.patch",
    "content": "# Disable some background communication with clients2.google.com\n\n--- a/components/crash/core/app/crash_reporter_client.cc\n+++ b/components/crash/core/app/crash_reporter_client.cc\n@@ -146,7 +146,7 @@ void CrashReporterClient::GetSanitizatio\n #endif\n \n std::string CrashReporterClient::GetUploadUrl() {\n-#if BUILDFLAG(GOOGLE_CHROME_BRANDING) && defined(OFFICIAL_BUILD)\n+#if 0\n   return kDefaultUploadURL;\n #else\n   return std::string();\n--- a/components/crash/core/app/crashpad.cc\n+++ b/components/crash/core/app/crashpad.cc\n@@ -73,6 +73,13 @@ bool InitializeCrashpadImpl(bool initial\n                             const std::vector<std::string>& initial_arguments,\n                             bool embedded_handler,\n                             const std::vector<base::FilePath>& attachments) {\n+// Crashpad is needed on Linux because it's used as a WASM signal handler.\n+// This is not the case on other platforms, and so it can remain entirely\n+// disabled there.\n+#if !BUILDFLAG(IS_LINUX)\n+  return false;\n+#endif\n+\n   static bool initialized = false;\n   DCHECK(!initialized);\n   initialized = true;\n--- a/third_party/crashpad/crashpad/handler/handler_main.cc\n+++ b/third_party/crashpad/crashpad/handler/handler_main.cc\n@@ -876,7 +876,7 @@ int HandlerMain(int argc,\n #endif  // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) ||\n         // BUILDFLAG(IS_ANDROID)\n       case kOptionURL: {\n-        options.url = optarg;\n+        options.url = \"\";\n         break;\n       }\n #if BUILDFLAG(IS_CHROMEOS)\n@@ -1017,7 +1017,7 @@ int HandlerMain(int argc,\n   }\n \n   ScopedStoppable upload_thread;\n-  if (!options.url.empty()) {\n+  if ((false)) {\n     // TODO(scottmg): options.rate_limit should be removed when we have a\n     // configurable database setting to control upload limiting.\n     // See https://crashpad.chromium.org/bug/23.\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-domain-reliability.patch",
    "content": "## Disable domain reliability component\n# Many of these changes are for thoroughness,\n# the most significant changes are in service_factory.cc and uploader.cc\n\n--- a/chrome/browser/domain_reliability/service_factory.cc\n+++ b/chrome/browser/domain_reliability/service_factory.cc\n@@ -14,40 +14,10 @@\n \n namespace domain_reliability {\n \n-namespace {\n-\n-// If Domain Reliability is enabled in the absence of a flag or field trial.\n-const bool kDefaultEnabled = true;\n-\n-// The name and value of the field trial to turn Domain Reliability on.\n-const char kFieldTrialName[] = \"DomRel-Enable\";\n-const char kFieldTrialValueEnable[] = \"enable\";\n-\n-bool IsDomainReliabilityAllowed() {\n-  return g_browser_process->local_state()->GetBoolean(\n-      prefs::kDomainReliabilityAllowedByPolicy);\n-}\n-\n-}  // namespace\n-\n const char kUploadReporterString[] = \"chrome\";\n \n bool ShouldCreateService() {\n-  base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();\n-  if (command_line->HasSwitch(switches::kDisableDomainReliability))\n-    return false;\n-  if (command_line->HasSwitch(switches::kEnableDomainReliability))\n-    return true;\n-  if (!IsDomainReliabilityAllowed()) {\n-    return false;\n-  }\n-  if (!ChromeMetricsServiceAccessor::IsMetricsAndCrashReportingEnabled())\n-    return false;\n-  if (base::FieldTrialList::TrialExists(kFieldTrialName)) {\n-    std::string value = base::FieldTrialList::FindFullName(kFieldTrialName);\n-    return (value == kFieldTrialValueEnable);\n-  }\n-  return kDefaultEnabled;\n+  return false;\n }\n \n }  // namespace domain_reliability\n--- a/components/domain_reliability/BUILD.gn\n+++ b/components/domain_reliability/BUILD.gn\n@@ -7,26 +7,6 @@ action(\"bake_in_configs\") {\n   script = \"bake_in_configs.py\"\n \n   inputs = [\n-    \"baked_in_configs/c_android_clients_google_com.json\",\n-    \"baked_in_configs/c_bigcache_googleapis_com.json\",\n-    \"baked_in_configs/c_doc-0-0-sj_sj_googleusercontent_com.json\",\n-    \"baked_in_configs/c_docs_google_com.json\",\n-    \"baked_in_configs/c_drive_google_com.json\",\n-    \"baked_in_configs/c_googlesyndication_com.json\",\n-    \"baked_in_configs/c_pack_google_com.json\",\n-    \"baked_in_configs/c_play_google_com.json\",\n-    \"baked_in_configs/c_youtube_com.json\",\n-    \"baked_in_configs/clients2_google_com.json\",\n-    \"baked_in_configs/docs_google_com.json\",\n-    \"baked_in_configs/gcp_gvt2_com.json\",\n-    \"baked_in_configs/gcp_gvt6_com.json\",\n-    \"baked_in_configs/google-analytics_com.json\",\n-    \"baked_in_configs/googlevideo_com.json\",\n-    \"baked_in_configs/gvt1_com.json\",\n-    \"baked_in_configs/gvt2_com.json\",\n-    \"baked_in_configs/gvt6_com.json\",\n-    \"baked_in_configs/ssl_gstatic_com.json\",\n-    \"baked_in_configs/www_google_com.json\",\n   ]\n \n   output_file = \"$target_gen_dir/baked_in_configs.cc\"\n@@ -34,13 +14,21 @@ action(\"bake_in_configs\") {\n \n   # The JSON file list is too long for the command line on Windows, so put\n   # them in a response file.\n-  response_file_contents = rebase_path(inputs, root_build_dir)\n-  args = [\n-    \"--file-list\",\n-    \"{{response_file_name}}\",\n-    \"--output\",\n-    rebase_path(output_file, root_build_dir),\n-  ]\n+  if (host_os == \"win\") {\n+      args = [\n+        \"--file-list\",\n+        \"nul\",\n+        \"--output\",\n+        rebase_path(output_file, root_build_dir),\n+      ]\n+  } else {\n+        args = [\n+        \"--file-list\",\n+        \"/dev/null\",\n+        \"--output\",\n+        rebase_path(output_file, root_build_dir),\n+      ]\n+  }\n }\n \n component(\"domain_reliability\") {\n--- a/components/domain_reliability/bake_in_configs.py\n+++ b/components/domain_reliability/bake_in_configs.py\n@@ -490,7 +490,7 @@ def origin_is_whitelisted(origin):\n     domain = origin[8:-1]\n   else:\n     return False\n-  return any(domain == e or domain.endswith('.' + e)  for e in DOMAIN_WHITELIST)\n+  return False\n \n \n def quote_and_wrap_text(text, width=79, prefix='  \"', suffix='\"'):\n--- a/components/domain_reliability/google_configs.cc\n+++ b/components/domain_reliability/google_configs.cc\n@@ -13,569 +13,8 @@\n \n namespace domain_reliability {\n \n-namespace {\n-\n-struct GoogleConfigParams {\n-  bool include_subdomains;\n-\n-  // If true, prepend a collector URL within https://|hostname|/.\n-  bool include_origin_specific_collector;\n-\n-  // If true, also add a config for www.|hostname|.\n-  //\n-  // |include_subdomains| will be false in the extra config, but\n-  // |include_origin_specific_collector| will be respected, and will use the\n-  // www subdomain as the origin for the collector so it matches the config.\n-  bool duplicate_for_www;\n-};\n-\n-const auto kGoogleConfigs = base::MakeFixedFlatMap<std::string_view,\n-                                                   GoogleConfigParams>({\n-    // Origins with subdomains and same-origin collectors. Currently, all\n-    // origins with same-origin collectors also run collectors on their www\n-    // subdomain. (e.g., both foo.com and www.foo.com.)\n-    {\"google.ac\", {true, true, true}},\n-    {\"google.ad\", {true, true, true}},\n-    {\"google.ae\", {true, true, true}},\n-    {\"google.af\", {true, true, true}},\n-    {\"google.ag\", {true, true, true}},\n-    {\"google.al\", {true, true, true}},\n-    {\"google.am\", {true, true, true}},\n-    {\"google.as\", {true, true, true}},\n-    {\"google.at\", {true, true, true}},\n-    {\"google.az\", {true, true, true}},\n-    {\"google.ba\", {true, true, true}},\n-    {\"google.be\", {true, true, true}},\n-    {\"google.bf\", {true, true, true}},\n-    {\"google.bg\", {true, true, true}},\n-    {\"google.bi\", {true, true, true}},\n-    {\"google.bj\", {true, true, true}},\n-    {\"google.bs\", {true, true, true}},\n-    {\"google.bt\", {true, true, true}},\n-    {\"google.by\", {true, true, true}},\n-    {\"google.ca\", {true, true, true}},\n-    {\"google.cc\", {true, true, true}},\n-    {\"google.cd\", {true, true, true}},\n-    {\"google.cf\", {true, true, true}},\n-    {\"google.cg\", {true, true, true}},\n-    {\"google.ch\", {true, true, true}},\n-    {\"google.ci\", {true, true, true}},\n-    {\"google.cl\", {true, true, true}},\n-    {\"google.cm\", {true, true, true}},\n-    {\"google.cn\", {true, true, true}},\n-    {\"google.co.ao\", {true, true, true}},\n-    {\"google.co.bw\", {true, true, true}},\n-    {\"google.co.ck\", {true, true, true}},\n-    {\"google.co.cr\", {true, true, true}},\n-    {\"google.co.hu\", {true, true, true}},\n-    {\"google.co.id\", {true, true, true}},\n-    {\"google.co.il\", {true, true, true}},\n-    {\"google.co.im\", {true, true, true}},\n-    {\"google.co.in\", {true, true, true}},\n-    {\"google.co.je\", {true, true, true}},\n-    {\"google.co.jp\", {true, true, true}},\n-    {\"google.co.ke\", {true, true, true}},\n-    {\"google.co.kr\", {true, true, true}},\n-    {\"google.co.ls\", {true, true, true}},\n-    {\"google.co.ma\", {true, true, true}},\n-    {\"google.co.mz\", {true, true, true}},\n-    {\"google.co.nz\", {true, true, true}},\n-    {\"google.co.th\", {true, true, true}},\n-    {\"google.co.tz\", {true, true, true}},\n-    {\"google.co.ug\", {true, true, true}},\n-    {\"google.co.uk\", {true, true, true}},\n-    {\"google.co.uz\", {true, true, true}},\n-    {\"google.co.ve\", {true, true, true}},\n-    {\"google.co.vi\", {true, true, true}},\n-    {\"google.co.za\", {true, true, true}},\n-    {\"google.co.zm\", {true, true, true}},\n-    {\"google.co.zw\", {true, true, true}},\n-    {\"google.com.af\", {true, true, true}},\n-    {\"google.com.ag\", {true, true, true}},\n-    {\"google.com.ai\", {true, true, true}},\n-    {\"google.com.ar\", {true, true, true}},\n-    {\"google.com.au\", {true, true, true}},\n-    {\"google.com.bd\", {true, true, true}},\n-    {\"google.com.bh\", {true, true, true}},\n-    {\"google.com.bn\", {true, true, true}},\n-    {\"google.com.bo\", {true, true, true}},\n-    {\"google.com.br\", {true, true, true}},\n-    {\"google.com.by\", {true, true, true}},\n-    {\"google.com.bz\", {true, true, true}},\n-    {\"google.com.cn\", {true, true, true}},\n-    {\"google.com.co\", {true, true, true}},\n-    {\"google.com.cu\", {true, true, true}},\n-    {\"google.com.cy\", {true, true, true}},\n-    {\"google.com.do\", {true, true, true}},\n-    {\"google.com.ec\", {true, true, true}},\n-    {\"google.com.eg\", {true, true, true}},\n-    {\"google.com.et\", {true, true, true}},\n-    {\"google.com.fj\", {true, true, true}},\n-    {\"google.com.ge\", {true, true, true}},\n-    {\"google.com.gh\", {true, true, true}},\n-    {\"google.com.gi\", {true, true, true}},\n-    {\"google.com.gr\", {true, true, true}},\n-    {\"google.com.gt\", {true, true, true}},\n-    {\"google.com.hk\", {true, true, true}},\n-    {\"google.com.iq\", {true, true, true}},\n-    {\"google.com.jm\", {true, true, true}},\n-    {\"google.com.jo\", {true, true, true}},\n-    {\"google.com.kh\", {true, true, true}},\n-    {\"google.com.kw\", {true, true, true}},\n-    {\"google.com.lb\", {true, true, true}},\n-    {\"google.com.ly\", {true, true, true}},\n-    {\"google.com.mm\", {true, true, true}},\n-    {\"google.com.mt\", {true, true, true}},\n-    {\"google.com.mx\", {true, true, true}},\n-    {\"google.com.my\", {true, true, true}},\n-    {\"google.com.na\", {true, true, true}},\n-    {\"google.com.nf\", {true, true, true}},\n-    {\"google.com.ng\", {true, true, true}},\n-    {\"google.com.ni\", {true, true, true}},\n-    {\"google.com.np\", {true, true, true}},\n-    {\"google.com.nr\", {true, true, true}},\n-    {\"google.com.om\", {true, true, true}},\n-    {\"google.com.pa\", {true, true, true}},\n-    {\"google.com.pe\", {true, true, true}},\n-    {\"google.com.pg\", {true, true, true}},\n-    {\"google.com.ph\", {true, true, true}},\n-    {\"google.com.pk\", {true, true, true}},\n-    {\"google.com.pl\", {true, true, true}},\n-    {\"google.com.pr\", {true, true, true}},\n-    {\"google.com.py\", {true, true, true}},\n-    {\"google.com.qa\", {true, true, true}},\n-    {\"google.com.ru\", {true, true, true}},\n-    {\"google.com.sa\", {true, true, true}},\n-    {\"google.com.sb\", {true, true, true}},\n-    {\"google.com.sg\", {true, true, true}},\n-    {\"google.com.sl\", {true, true, true}},\n-    {\"google.com.sv\", {true, true, true}},\n-    {\"google.com.tj\", {true, true, true}},\n-    {\"google.com.tn\", {true, true, true}},\n-    {\"google.com.tr\", {true, true, true}},\n-    {\"google.com.tw\", {true, true, true}},\n-    {\"google.com.ua\", {true, true, true}},\n-    {\"google.com.uy\", {true, true, true}},\n-    {\"google.com.vc\", {true, true, true}},\n-    {\"google.com.ve\", {true, true, true}},\n-    {\"google.com.vn\", {true, true, true}},\n-    {\"google.cv\", {true, true, true}},\n-    {\"google.cz\", {true, true, true}},\n-    {\"google.de\", {true, true, true}},\n-    {\"google.dj\", {true, true, true}},\n-    {\"google.dk\", {true, true, true}},\n-    {\"google.dm\", {true, true, true}},\n-    {\"google.dz\", {true, true, true}},\n-    {\"google.ee\", {true, true, true}},\n-    {\"google.es\", {true, true, true}},\n-    {\"google.fi\", {true, true, true}},\n-    {\"google.fm\", {true, true, true}},\n-    {\"google.fr\", {true, true, true}},\n-    {\"google.ga\", {true, true, true}},\n-    {\"google.ge\", {true, true, true}},\n-    {\"google.gg\", {true, true, true}},\n-    {\"google.gl\", {true, true, true}},\n-    {\"google.gm\", {true, true, true}},\n-    {\"google.gp\", {true, true, true}},\n-    {\"google.gr\", {true, true, true}},\n-    {\"google.gy\", {true, true, true}},\n-    {\"google.hk\", {true, true, true}},\n-    {\"google.hn\", {true, true, true}},\n-    {\"google.hr\", {true, true, true}},\n-    {\"google.ht\", {true, true, true}},\n-    {\"google.hu\", {true, true, true}},\n-    {\"google.ie\", {true, true, true}},\n-    {\"google.im\", {true, true, true}},\n-    {\"google.iq\", {true, true, true}},\n-    {\"google.ir\", {true, true, true}},\n-    {\"google.is\", {true, true, true}},\n-    {\"google.it\", {true, true, true}},\n-    {\"google.it.ao\", {true, true, true}},\n-    {\"google.je\", {true, true, true}},\n-    {\"google.jo\", {true, true, true}},\n-    {\"google.jp\", {true, true, true}},\n-    {\"google.kg\", {true, true, true}},\n-    {\"google.ki\", {true, true, true}},\n-    {\"google.kz\", {true, true, true}},\n-    {\"google.la\", {true, true, true}},\n-    {\"google.li\", {true, true, true}},\n-    {\"google.lk\", {true, true, true}},\n-    {\"google.lt\", {true, true, true}},\n-    {\"google.lu\", {true, true, true}},\n-    {\"google.lv\", {true, true, true}},\n-    {\"google.md\", {true, true, true}},\n-    {\"google.me\", {true, true, true}},\n-    {\"google.mg\", {true, true, true}},\n-    {\"google.mk\", {true, true, true}},\n-    {\"google.ml\", {true, true, true}},\n-    {\"google.mn\", {true, true, true}},\n-    {\"google.ms\", {true, true, true}},\n-    {\"google.mu\", {true, true, true}},\n-    {\"google.mv\", {true, true, true}},\n-    {\"google.mw\", {true, true, true}},\n-    {\"google.ne\", {true, true, true}},\n-    {\"google.ne.jp\", {true, true, true}},\n-    {\"google.ng\", {true, true, true}},\n-    {\"google.nl\", {true, true, true}},\n-    {\"google.no\", {true, true, true}},\n-    {\"google.nr\", {true, true, true}},\n-    {\"google.nu\", {true, true, true}},\n-    {\"google.off.ai\", {true, true, true}},\n-    {\"google.pk\", {true, true, true}},\n-    {\"google.pl\", {true, true, true}},\n-    {\"google.pn\", {true, true, true}},\n-    {\"google.ps\", {true, true, true}},\n-    {\"google.pt\", {true, true, true}},\n-    {\"google.ro\", {true, true, true}},\n-    {\"google.rs\", {true, true, true}},\n-    {\"google.ru\", {true, true, true}},\n-    {\"google.rw\", {true, true, true}},\n-    {\"google.sc\", {true, true, true}},\n-    {\"google.se\", {true, true, true}},\n-    {\"google.sh\", {true, true, true}},\n-    {\"google.si\", {true, true, true}},\n-    {\"google.sk\", {true, true, true}},\n-    {\"google.sm\", {true, true, true}},\n-    {\"google.sn\", {true, true, true}},\n-    {\"google.so\", {true, true, true}},\n-    {\"google.sr\", {true, true, true}},\n-    {\"google.st\", {true, true, true}},\n-    {\"google.td\", {true, true, true}},\n-    {\"google.tg\", {true, true, true}},\n-    {\"google.tk\", {true, true, true}},\n-    {\"google.tl\", {true, true, true}},\n-    {\"google.tm\", {true, true, true}},\n-    {\"google.tn\", {true, true, true}},\n-    {\"google.to\", {true, true, true}},\n-    {\"google.tt\", {true, true, true}},\n-    {\"google.us\", {true, true, true}},\n-    {\"google.uz\", {true, true, true}},\n-    {\"google.vg\", {true, true, true}},\n-    {\"google.vu\", {true, true, true}},\n-    {\"google.ws\", {true, true, true}},\n-    {\"l.google.com\", {true, true, true}},\n-\n-    // google.com is a special case. We have a custom config for www.google.com,\n-    // so set duplicate_for_www = false.\n-    {\"google.com\", {true, true, false}},\n-\n-    // Origins with subdomains and without same-origin collectors.\n-    {\"2mdn.net\", {true, false, false}},\n-    {\"adgoogle.net\", {true, false, false}},\n-    {\"admeld.com\", {true, false, false}},\n-    {\"admob.biz\", {true, false, false}},\n-    {\"admob.co.in\", {true, false, false}},\n-    {\"admob.co.kr\", {true, false, false}},\n-    {\"admob.co.nz\", {true, false, false}},\n-    {\"admob.co.uk\", {true, false, false}},\n-    {\"admob.co.za\", {true, false, false}},\n-    {\"admob.com\", {true, false, false}},\n-    {\"admob.com.br\", {true, false, false}},\n-    {\"admob.com.es\", {true, false, false}},\n-    {\"admob.com.fr\", {true, false, false}},\n-    {\"admob.com.mx\", {true, false, false}},\n-    {\"admob.com.pt\", {true, false, false}},\n-    {\"admob.de\", {true, false, false}},\n-    {\"admob.dk\", {true, false, false}},\n-    {\"admob.es\", {true, false, false}},\n-    {\"admob.fi\", {true, false, false}},\n-    {\"admob.fr\", {true, false, false}},\n-    {\"admob.gr\", {true, false, false}},\n-    {\"admob.hk\", {true, false, false}},\n-    {\"admob.ie\", {true, false, false}},\n-    {\"admob.in\", {true, false, false}},\n-    {\"admob.it\", {true, false, false}},\n-    {\"admob.jp\", {true, false, false}},\n-    {\"admob.kr\", {true, false, false}},\n-    {\"admob.mobi\", {true, false, false}},\n-    {\"admob.no\", {true, false, false}},\n-    {\"admob.ph\", {true, false, false}},\n-    {\"admob.pt\", {true, false, false}},\n-    {\"admob.sg\", {true, false, false}},\n-    {\"admob.tw\", {true, false, false}},\n-    {\"admob.us\", {true, false, false}},\n-    {\"admob.vn\", {true, false, false}},\n-    {\"adwhirl.com\", {true, false, false}},\n-    {\"ampproject.com\", {true, false, false}},\n-    {\"ampproject.net\", {true, false, false}},\n-    {\"ampproject.org\", {true, false, false}},\n-    {\"android.com\", {true, false, false}},\n-    {\"cdn.ampproject.org\", {true, false, false}},\n-    {\"chromecast.com\", {true, false, false}},\n-    {\"chromeexperiments.com\", {true, false, false}},\n-    {\"chromestatus.com\", {true, false, false}},\n-    {\"chromium.org\", {true, false, false}},\n-    {\"clients6.google.com\", {true, false, false}},\n-    {\"cloudendpointsapis.com\", {true, false, false}},\n-    {\"dartmotif.com\", {true, false, false}},\n-    {\"dartsearch.net\", {true, false, false}},\n-    {\"doubleclick.com\", {true, false, false}},\n-    {\"doubleclick.ne.jp\", {true, false, false}},\n-    {\"doubleclick.net\", {true, false, false}},\n-    {\"doubleclickusercontent.com\", {true, false, false}},\n-    {\"fls.doubleclick.net\", {true, false, false}},\n-    {\"g.co\", {true, false, false}},\n-    {\"g.doubleclick.net\", {true, false, false}},\n-    {\"ggpht.com\", {true, false, false}},\n-    {\"gmodules.com\", {true, false, false}},\n-    {\"goo.gl\", {true, false, false}},\n-    {\"google-syndication.com\", {true, false, false}},\n-    {\"google.cat\", {true, false, false}},\n-    {\"google.info\", {true, false, false}},\n-    {\"google.jobs\", {true, false, false}},\n-    {\"google.net\", {true, false, false}},\n-    {\"google.org\", {true, false, false}},\n-    {\"google.stackdriver.com\", {true, false, false}},\n-    {\"googleadservices.com\", {true, false, false}},\n-    {\"googleadsserving.cn\", {true, false, false}},\n-    {\"googlealumni.com\", {true, false, false}},\n-    {\"googleapis.cn\", {true, false, false}},\n-    {\"googleapis.com\", {true, false, false}},\n-    {\"googleapps.com\", {true, false, false}},\n-    {\"googlecbs.com\", {true, false, false}},\n-    {\"googlecode.com\", {true, false, false}},\n-    {\"googlecommerce.com\", {true, false, false}},\n-    {\"googledrive.com\", {true, false, false}},\n-    {\"googleenterprise.com\", {true, false, false}},\n-    {\"googlefiber.com\", {true, false, false}},\n-    {\"googlefiber.net\", {true, false, false}},\n-    {\"googlegoro.com\", {true, false, false}},\n-    {\"googlehosted.com\", {true, false, false}},\n-    {\"googlepayments.com\", {true, false, false}},\n-    {\"googlesource.com\", {true, false, false}},\n-    {\"googlesyndication.com\", {true, false, false}},\n-    {\"googletagmanager.com\", {true, false, false}},\n-    {\"googletagservices.com\", {true, false, false}},\n-    {\"googleusercontent.com\", {true, false, false}},\n-    {\"googlezip.net\", {true, false, false}},\n-    {\"gstatic.cn\", {true, false, false}},\n-    {\"gstatic.com\", {true, false, false}},\n-    {\"gvt3.com\", {true, false, false}},\n-    {\"gvt9.com\", {true, false, false}},\n-    {\"picasa.com\", {true, false, false}},\n-    {\"recaptcha.net\", {true, false, false}},\n-    {\"stackdriver.com\", {true, false, false}},\n-    {\"usercontent.google.com\", {true, false, false}},\n-    {\"waze.com\", {true, false, false}},\n-    {\"withgoogle.com\", {true, false, false}},\n-    {\"youtu.be\", {true, false, false}},\n-    {\"youtube-3rd-party.com\", {true, false, false}},\n-    {\"youtube-nocookie.com\", {true, false, false}},\n-    {\"youtube.ae\", {true, false, false}},\n-    {\"youtube.al\", {true, false, false}},\n-    {\"youtube.am\", {true, false, false}},\n-    {\"youtube.at\", {true, false, false}},\n-    {\"youtube.az\", {true, false, false}},\n-    {\"youtube.ba\", {true, false, false}},\n-    {\"youtube.be\", {true, false, false}},\n-    {\"youtube.bg\", {true, false, false}},\n-    {\"youtube.bh\", {true, false, false}},\n-    {\"youtube.bo\", {true, false, false}},\n-    {\"youtube.ca\", {true, false, false}},\n-    {\"youtube.cat\", {true, false, false}},\n-    {\"youtube.ch\", {true, false, false}},\n-    {\"youtube.cl\", {true, false, false}},\n-    {\"youtube.co\", {true, false, false}},\n-    {\"youtube.co.ae\", {true, false, false}},\n-    {\"youtube.co.at\", {true, false, false}},\n-    {\"youtube.co.hu\", {true, false, false}},\n-    {\"youtube.co.id\", {true, false, false}},\n-    {\"youtube.co.il\", {true, false, false}},\n-    {\"youtube.co.in\", {true, false, false}},\n-    {\"youtube.co.jp\", {true, false, false}},\n-    {\"youtube.co.ke\", {true, false, false}},\n-    {\"youtube.co.kr\", {true, false, false}},\n-    {\"youtube.co.ma\", {true, false, false}},\n-    {\"youtube.co.nz\", {true, false, false}},\n-    {\"youtube.co.th\", {true, false, false}},\n-    {\"youtube.co.ug\", {true, false, false}},\n-    {\"youtube.co.uk\", {true, false, false}},\n-    {\"youtube.co.ve\", {true, false, false}},\n-    {\"youtube.co.za\", {true, false, false}},\n-    {\"youtube.com\", {true, false, false}},\n-    {\"youtube.com.ar\", {true, false, false}},\n-    {\"youtube.com.au\", {true, false, false}},\n-    {\"youtube.com.az\", {true, false, false}},\n-    {\"youtube.com.bh\", {true, false, false}},\n-    {\"youtube.com.bo\", {true, false, false}},\n-    {\"youtube.com.br\", {true, false, false}},\n-    {\"youtube.com.by\", {true, false, false}},\n-    {\"youtube.com.co\", {true, false, false}},\n-    {\"youtube.com.do\", {true, false, false}},\n-    {\"youtube.com.ee\", {true, false, false}},\n-    {\"youtube.com.eg\", {true, false, false}},\n-    {\"youtube.com.es\", {true, false, false}},\n-    {\"youtube.com.gh\", {true, false, false}},\n-    {\"youtube.com.gr\", {true, false, false}},\n-    {\"youtube.com.gt\", {true, false, false}},\n-    {\"youtube.com.hk\", {true, false, false}},\n-    {\"youtube.com.hr\", {true, false, false}},\n-    {\"youtube.com.jm\", {true, false, false}},\n-    {\"youtube.com.jo\", {true, false, false}},\n-    {\"youtube.com.kw\", {true, false, false}},\n-    {\"youtube.com.lb\", {true, false, false}},\n-    {\"youtube.com.lv\", {true, false, false}},\n-    {\"youtube.com.mk\", {true, false, false}},\n-    {\"youtube.com.mt\", {true, false, false}},\n-    {\"youtube.com.mx\", {true, false, false}},\n-    {\"youtube.com.my\", {true, false, false}},\n-    {\"youtube.com.ng\", {true, false, false}},\n-    {\"youtube.com.om\", {true, false, false}},\n-    {\"youtube.com.pe\", {true, false, false}},\n-    {\"youtube.com.ph\", {true, false, false}},\n-    {\"youtube.com.pk\", {true, false, false}},\n-    {\"youtube.com.pt\", {true, false, false}},\n-    {\"youtube.com.qa\", {true, false, false}},\n-    {\"youtube.com.ro\", {true, false, false}},\n-    {\"youtube.com.sa\", {true, false, false}},\n-    {\"youtube.com.sg\", {true, false, false}},\n-    {\"youtube.com.tn\", {true, false, false}},\n-    {\"youtube.com.tr\", {true, false, false}},\n-    {\"youtube.com.tw\", {true, false, false}},\n-    {\"youtube.com.ua\", {true, false, false}},\n-    {\"youtube.com.uy\", {true, false, false}},\n-    {\"youtube.com.ve\", {true, false, false}},\n-    {\"youtube.cz\", {true, false, false}},\n-    {\"youtube.de\", {true, false, false}},\n-    {\"youtube.dk\", {true, false, false}},\n-    {\"youtube.ee\", {true, false, false}},\n-    {\"youtube.es\", {true, false, false}},\n-    {\"youtube.fi\", {true, false, false}},\n-    {\"youtube.fr\", {true, false, false}},\n-    {\"youtube.ge\", {true, false, false}},\n-    {\"youtube.gr\", {true, false, false}},\n-    {\"youtube.gt\", {true, false, false}},\n-    {\"youtube.hk\", {true, false, false}},\n-    {\"youtube.hr\", {true, false, false}},\n-    {\"youtube.hu\", {true, false, false}},\n-    {\"youtube.ie\", {true, false, false}},\n-    {\"youtube.in\", {true, false, false}},\n-    {\"youtube.is\", {true, false, false}},\n-    {\"youtube.it\", {true, false, false}},\n-    {\"youtube.jo\", {true, false, false}},\n-    {\"youtube.jp\", {true, false, false}},\n-    {\"youtube.kr\", {true, false, false}},\n-    {\"youtube.lk\", {true, false, false}},\n-    {\"youtube.lt\", {true, false, false}},\n-    {\"youtube.lv\", {true, false, false}},\n-    {\"youtube.ma\", {true, false, false}},\n-    {\"youtube.md\", {true, false, false}},\n-    {\"youtube.me\", {true, false, false}},\n-    {\"youtube.mk\", {true, false, false}},\n-    {\"youtube.mx\", {true, false, false}},\n-    {\"youtube.my\", {true, false, false}},\n-    {\"youtube.ng\", {true, false, false}},\n-    {\"youtube.nl\", {true, false, false}},\n-    {\"youtube.no\", {true, false, false}},\n-    {\"youtube.pe\", {true, false, false}},\n-    {\"youtube.ph\", {true, false, false}},\n-    {\"youtube.pk\", {true, false, false}},\n-    {\"youtube.pl\", {true, false, false}},\n-    {\"youtube.pr\", {true, false, false}},\n-    {\"youtube.pt\", {true, false, false}},\n-    {\"youtube.qa\", {true, false, false}},\n-    {\"youtube.ro\", {true, false, false}},\n-    {\"youtube.rs\", {true, false, false}},\n-    {\"youtube.ru\", {true, false, false}},\n-    {\"youtube.sa\", {true, false, false}},\n-    {\"youtube.se\", {true, false, false}},\n-    {\"youtube.sg\", {true, false, false}},\n-    {\"youtube.si\", {true, false, false}},\n-    {\"youtube.sk\", {true, false, false}},\n-    {\"youtube.sn\", {true, false, false}},\n-    {\"youtube.tn\", {true, false, false}},\n-    {\"youtube.ua\", {true, false, false}},\n-    {\"youtube.ug\", {true, false, false}},\n-    {\"youtube.uy\", {true, false, false}},\n-    {\"youtube.vn\", {true, false, false}},\n-    {\"youtubeeducation.com\", {true, false, false}},\n-    {\"youtubemobilesupport.com\", {true, false, false}},\n-    {\"ytimg.com\", {true, false, false}},\n-\n-    // Origins without subdomains and with same-origin collectors.\n-    {\"accounts.google.com\", {false, true, false}},\n-    {\"apis.google.com\", {false, true, false}},\n-    {\"app.google.stackdriver.com\", {false, true, false}},\n-    {\"b.mail.google.com\", {false, true, false}},\n-    {\"chatenabled.mail.google.com\", {false, true, false}},\n-    {\"ddm.google.com\", {false, true, false}},\n-    {\"gmail.com\", {false, true, false}},\n-    {\"gmail.google.com\", {false, true, false}},\n-    {\"mail-attachment.googleusercontent.com\", {false, true, false}},\n-    {\"mail.google.com\", {false, true, false}},\n-    {\"www.gmail.com\", {false, true, false}},\n-\n-    // Origins without subdomains or same-origin collectors.\n-    {\"ad.doubleclick.net\", {false, false, false}},\n-    {\"drive.google.com\", {false, false, false}},\n-    {\"redirector.googlevideo.com\", {false, false, false}},\n-});\n-\n-const char* const kGoogleStandardCollectors[] = {\n-    \"https://beacons.gcp.gvt2.com/domainreliability/upload\",\n-    \"https://beacons.gvt2.com/domainreliability/upload\",\n-    \"https://beacons2.gvt2.com/domainreliability/upload\",\n-    \"https://beacons3.gvt2.com/domainreliability/upload\",\n-    \"https://beacons4.gvt2.com/domainreliability/upload\",\n-    \"https://beacons5.gvt2.com/domainreliability/upload\",\n-    \"https://beacons5.gvt3.com/domainreliability/upload\",\n-    \"https://clients2.google.com/domainreliability/upload\",\n-};\n-\n-const char* const kGoogleOriginSpecificCollectorPathString =\n-    \"/domainreliability/upload\";\n-\n-std::unique_ptr<const DomainReliabilityConfig> CreateGoogleConfig(\n-    std::string_view hostname,\n-    const GoogleConfigParams& params,\n-    bool is_www) {\n-  CHECK(params.duplicate_for_www || !is_www);\n-\n-  bool include_subdomains = params.include_subdomains && !is_www;\n-\n-  auto config = std::make_unique<DomainReliabilityConfig>();\n-  GURL url(base::StrCat({\"https://\", (is_www ? \"www.\" : \"\"), hostname, \"/\"}));\n-  config->origin = url::Origin::Create(url);\n-  config->include_subdomains = include_subdomains;\n-  config->collectors.clear();\n-  if (params.include_origin_specific_collector) {\n-    GURL::Replacements replacements;\n-    replacements.SetPathStr(kGoogleOriginSpecificCollectorPathString);\n-    config->collectors.push_back(\n-        std::make_unique<GURL>(url.ReplaceComponents(replacements)));\n-  }\n-  for (const char* collector : kGoogleStandardCollectors) {\n-    config->collectors.push_back(std::make_unique<GURL>(collector));\n-  }\n-  config->success_sample_rate = 0.05;\n-  config->failure_sample_rate = 1.00;\n-  config->path_prefixes.clear();\n-  return config;\n-}\n-\n-}  // namespace\n-\n std::unique_ptr<const DomainReliabilityConfig> MaybeGetGoogleConfig(\n     const std::string& hostname) {\n-  bool is_www_subdomain =\n-      base::StartsWith(hostname, \"www.\", base::CompareCase::SENSITIVE);\n-\n-  const auto itr = kGoogleConfigs.find(hostname);\n-  if (itr != std::end(kGoogleConfigs)) {\n-    return CreateGoogleConfig(hostname, itr->second, /*is_www=*/false);\n-  }\n-  std::string hostname_parent = net::GetSuperdomain(hostname);\n-  const auto parent_it = kGoogleConfigs.find(hostname_parent);\n-  if (parent_it != std::end(kGoogleConfigs)) {\n-    const GoogleConfigParams& params = parent_it->second;\n-    if (is_www_subdomain && params.duplicate_for_www) {\n-      return CreateGoogleConfig(hostname_parent, params, /*is_www=*/true);\n-    }\n-    if (params.include_subdomains) {\n-      return CreateGoogleConfig(hostname_parent, params, /*is_www=*/false);\n-    }\n-  }\n-\n   return nullptr;\n }\n \n@@ -583,12 +22,6 @@ std::vector<std::unique_ptr<const Domain\n GetAllGoogleConfigsForTesting() {\n   std::vector<std::unique_ptr<const DomainReliabilityConfig>> configs_out;\n \n-  for (const auto& [hostname, params] : kGoogleConfigs) {\n-    configs_out.push_back(CreateGoogleConfig(hostname, params, false));\n-    if (params.duplicate_for_www) {\n-      configs_out.push_back(CreateGoogleConfig(hostname, params, true));\n-    }\n-  }\n   return configs_out;\n }\n \n--- a/components/domain_reliability/uploader.cc\n+++ b/components/domain_reliability/uploader.cc\n@@ -80,7 +80,7 @@ class DomainReliabilityUploaderImpl : pu\n     if (discard_uploads_)\n       discarded_upload_count_++;\n \n-    if (discard_uploads_ || shutdown_) {\n+    if (true) {\n       DVLOG(1) << \"Discarding report instead of uploading.\";\n       UploadResult result;\n       result.status = UploadResult::SUCCESS;\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-fonts-googleapis-references.patch",
    "content": "# Disables references to fonts.googleapis.com\n\n--- a/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc\n+++ b/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc\n@@ -309,7 +309,7 @@ bool DomDistillerViewerSource::ShouldSer\n std::string DomDistillerViewerSource::GetContentSecurityPolicy(\n     network::mojom::CSPDirectiveName directive) {\n   if (directive == network::mojom::CSPDirectiveName::StyleSrc) {\n-    return \"style-src 'self' https://fonts.googleapis.com;\";\n+    return \"style-src 'self';\";\n   } else if (directive == network::mojom::CSPDirectiveName::ChildSrc) {\n     return \"child-src *;\";\n   } else if (directive ==\n--- a/components/dom_distiller/core/html/preview.html\n+++ b/components/dom_distiller/core/html/preview.html\n@@ -11,7 +11,7 @@ found in the LICENSE file.\n   <meta name=\"theme-color\" id=\"theme-color\">\n   <title>Title goes here and it could be kind of lengthy - Publisher name</title>\n   <link href=\"../css/distilledpage.css\" rel=\"stylesheet\" type=\"text/css\">\n-  <link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>\n+  <link href='chrome://resources/css/roboto.css' rel='stylesheet' type='text/css'>\n   <style>\n     .english :lang(th) {display: none}\n     .english :lang(zh) {display: none}\n--- a/third_party/crashpad/crashpad/doc/support/crashpad_doxygen.css\n+++ b/third_party/crashpad/crashpad/doc/support/crashpad_doxygen.css\n@@ -12,11 +12,11 @@\n  * See the License for the specific language governing permissions and\n  * limitations under the License. */\n \n-@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');\n-@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');\n+@import \"chrome://resources/css/roboto.css\";\n \n :root {\n   --font-family-normal: 'Noto Sans',\n+    'Roboto',\n     'Lucida Grande',\n     'Lucida Sans Unicode',\n     Helvetica,\n--- a/tools/md_browser/base.css\n+++ b/tools/md_browser/base.css\n@@ -16,8 +16,7 @@\n \n /* Common styles and definitions. */\n \n-@import \"//fonts.googleapis.com/css?family=Open+Sans:300,400,700&subset=latin,cyrillic-ext,greek-ext,cyrillic,greek,vietnamese,latin-ext\";\n-@import \"//fonts.googleapis.com/css?family=Source+Code+Pro\";\n+@import \"chrome://resources/css/roboto.css\";\n *,\n *::after,\n *::before {\n@@ -72,7 +71,7 @@ ul, ol {\n   user-select: none;\n }\n .u-monospace {\n-  font-family: 'Source Code Pro', monospace;\n+  font-family: monospace;\n }\n \n /* Common.soy */\n@@ -82,7 +81,7 @@ ul, ol {\n   color: #000;\n   display: -ms-flexbox;\n   display: flex;\n-  font: 14px/1.54 'Open Sans', sans-serif;\n+  font: 14px/1.54 'Roboto', sans-serif;\n   min-height: 100vh;\n   -ms-flex-direction: column;\n   flex-direction: column;\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-gaia.patch",
    "content": "# Disables Gaia code\n# Somehow it is still activated even without being signed-in: https://github.com/ungoogled-software/ungoogled-chromium/issues/104\n\n--- a/google_apis/gaia/gaia_auth_fetcher.cc\n+++ b/google_apis/gaia/gaia_auth_fetcher.cc\n@@ -236,61 +236,6 @@ void GaiaAuthFetcher::CreateAndStartGaia\n     network::mojom::CredentialsMode credentials_mode,\n     const net::NetworkTrafficAnnotationTag& traffic_annotation) {\n   DCHECK(!fetch_pending_) << \"Tried to fetch two things at once!\";\n-\n-  auto resource_request = std::make_unique<network::ResourceRequest>();\n-  resource_request->url = gaia_gurl;\n-  original_url_ = gaia_gurl;\n-\n-  if (credentials_mode != network::mojom::CredentialsMode::kOmit &&\n-      credentials_mode !=\n-          network::mojom::CredentialsMode::kOmitBug_775438_Workaround) {\n-    CHECK(gaia::HasGaiaSchemeHostPort(gaia_gurl)) << gaia_gurl;\n-\n-    url::Origin origin = GaiaUrls::GetInstance()->gaia_origin();\n-    resource_request->site_for_cookies =\n-        net::SiteForCookies::FromOrigin(origin);\n-    resource_request->trusted_params =\n-        network::ResourceRequest::TrustedParams();\n-    resource_request->trusted_params->isolation_info =\n-        net::IsolationInfo::CreateForInternalRequest(origin);\n-  }\n-\n-  if (!body.empty())\n-    resource_request->method = \"POST\";\n-\n-  resource_request->headers = request_headers;\n-\n-  resource_request->credentials_mode = credentials_mode;\n-\n-  url_loader_ = network::SimpleURLLoader::Create(std::move(resource_request),\n-                                                 traffic_annotation);\n-  if (!body.empty()) {\n-    DCHECK(!body_content_type.empty());\n-    url_loader_->AttachStringForUpload(body, body_content_type);\n-  }\n-\n-  url_loader_->SetAllowHttpErrorResults(true);\n-\n-  VLOG(2) << \"Gaia fetcher URL: \" << gaia_gurl.spec();\n-  VLOG(2) << \"Gaia fetcher headers: \" << request_headers.ToString();\n-  VLOG(2) << \"Gaia fetcher body: \" << body;\n-\n-  // Fetchers are sometimes cancelled because a network change was detected,\n-  // especially at startup and after sign-in on ChromeOS. Retrying once should\n-  // be enough in those cases; let the fetcher retry up to 3 times just in case.\n-  // http://crbug.com/163710\n-  url_loader_->SetRetryOptions(\n-      3, network::SimpleURLLoader::RETRY_ON_NETWORK_CHANGE);\n-\n-  fetch_pending_ = true;\n-\n-  // Unretained is OK below as |url_loader_| is owned by this.\n-  url_loader_->DownloadToString(\n-      url_loader_factory_.get(),\n-      base::BindOnce(&GaiaAuthFetcher::OnURLLoadComplete,\n-                     base::Unretained(this)),\n-      // Limit to 1 MiB.\n-      1024 * 1024);\n }\n \n // static\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-gcm.patch",
    "content": "# Disable Google Cloud Messaging (GCM) client\n\n--- a/components/gcm_driver/gcm_client_impl.cc\n+++ b/components/gcm_driver/gcm_client_impl.cc\n@@ -296,38 +296,6 @@ void GCMClientImpl::Initialize(\n }\n \n void GCMClientImpl::Start(StartMode start_mode) {\n-  DCHECK_NE(UNINITIALIZED, state_);\n-  DCHECK(io_task_runner_->RunsTasksInCurrentSequence());\n-\n-  if (state_ == LOADED) {\n-    // Start the GCM if not yet.\n-    if (start_mode == IMMEDIATE_START) {\n-      // Give up the scheduling to wipe out the store since now some one starts\n-      // to use GCM.\n-      destroying_gcm_store_ptr_factory_.InvalidateWeakPtrs();\n-\n-      StartGCM();\n-    }\n-    return;\n-  }\n-\n-  // The delay start behavior will be abandoned when Start has been called\n-  // once with IMMEDIATE_START behavior.\n-  if (start_mode == IMMEDIATE_START)\n-    start_mode_ = IMMEDIATE_START;\n-\n-  // Bail out if the loading is not started or completed.\n-  if (state_ != INITIALIZED)\n-    return;\n-\n-  // Once the loading is completed, the check-in will be initiated.\n-  // If we're in lazy start mode, don't create a new store since none is really\n-  // using GCM functionality yet.\n-  gcm_store_->Load((start_mode == IMMEDIATE_START) ? GCMStore::CREATE_IF_MISSING\n-                                                   : GCMStore::DO_NOT_CREATE,\n-                   base::BindOnce(&GCMClientImpl::OnLoadCompleted,\n-                                  weak_ptr_factory_.GetWeakPtr()));\n-  state_ = LOADING;\n }\n \n void GCMClientImpl::OnLoadCompleted(\n@@ -431,6 +399,7 @@ void GCMClientImpl::StartGCM() {\n \n void GCMClientImpl::InitializeMCSClient() {\n   DCHECK(network_connection_tracker_);\n+  return;\n   std::vector<GURL> endpoints;\n   endpoints.push_back(gservices_settings_.GetMCSMainEndpoint());\n   GURL fallback_endpoint = gservices_settings_.GetMCSFallbackEndpoint();\n@@ -482,8 +451,6 @@ void GCMClientImpl::OnReady(const std::v\n void GCMClientImpl::StartMCSLogin() {\n   DCHECK_EQ(READY, state_);\n   DCHECK(device_checkin_info_.IsValid());\n-  mcs_client_->Login(device_checkin_info_.android_id,\n-                     device_checkin_info_.secret);\n }\n \n void GCMClientImpl::DestroyStoreWhenNotNeeded() {\n@@ -554,8 +521,6 @@ void GCMClientImpl::SetLastTokenFetchTim\n void GCMClientImpl::UpdateHeartbeatTimer(\n     std::unique_ptr<base::RetainingOneShotTimer> timer) {\n   DCHECK(io_task_runner_->RunsTasksInCurrentSequence());\n-  DCHECK(mcs_client_);\n-  mcs_client_->UpdateHeartbeatTimer(std::move(timer));\n }\n \n void GCMClientImpl::AddInstanceIDData(const std::string& app_id,\n@@ -598,35 +563,14 @@ void GCMClientImpl::GetInstanceIDData(co\n void GCMClientImpl::AddHeartbeatInterval(const std::string& scope,\n                                          int interval_ms) {\n   DCHECK(io_task_runner_->RunsTasksInCurrentSequence());\n-  DCHECK(mcs_client_);\n-  mcs_client_->AddHeartbeatInterval(scope, interval_ms);\n }\n \n void GCMClientImpl::RemoveHeartbeatInterval(const std::string& scope) {\n   DCHECK(io_task_runner_->RunsTasksInCurrentSequence());\n-  DCHECK(mcs_client_);\n-  mcs_client_->RemoveHeartbeatInterval(scope);\n }\n \n void GCMClientImpl::StartCheckin() {\n   DCHECK(io_task_runner_->RunsTasksInCurrentSequence());\n-\n-  // Make sure no checkin is in progress.\n-  if (checkin_request_)\n-    return;\n-\n-  checkin_proto::ChromeBuildProto chrome_build_proto;\n-  ToCheckinProtoVersion(chrome_build_info_, &chrome_build_proto);\n-\n-  CheckinRequest::RequestInfo request_info(\n-      device_checkin_info_.android_id, device_checkin_info_.secret,\n-      gservices_settings_.digest(), chrome_build_proto);\n-  checkin_request_ = std::make_unique<CheckinRequest>(\n-      gservices_settings_.GetCheckinURL(), request_info, GetGCMBackoffPolicy(),\n-      base::BindOnce(&GCMClientImpl::OnCheckinCompleted,\n-                     weak_ptr_factory_.GetWeakPtr()),\n-      url_loader_factory_, io_task_runner_, &recorder_);\n-  checkin_request_->Start();\n }\n \n void GCMClientImpl::OnCheckinCompleted(\n@@ -683,24 +627,6 @@ void GCMClientImpl::SetGServicesSettings\n \n void GCMClientImpl::SchedulePeriodicCheckin() {\n   DCHECK(io_task_runner_->RunsTasksInCurrentSequence());\n-\n-  // Make sure no checkin is in progress.\n-  if (checkin_request_.get() || !device_checkin_info_.accounts_set)\n-    return;\n-\n-  // There should be only one periodic checkin pending at a time. Removing\n-  // pending periodic checkin to schedule a new one.\n-  periodic_checkin_ptr_factory_.InvalidateWeakPtrs();\n-\n-  base::TimeDelta time_to_next_checkin = GetTimeToNextCheckin();\n-  if (time_to_next_checkin.is_negative())\n-    time_to_next_checkin = base::TimeDelta();\n-\n-  io_task_runner_->PostDelayedTask(\n-      FROM_HERE,\n-      base::BindOnce(&GCMClientImpl::StartCheckin,\n-                     periodic_checkin_ptr_factory_.GetWeakPtr()),\n-      time_to_next_checkin);\n }\n \n base::TimeDelta GCMClientImpl::GetTimeToNextCheckin() const {\n@@ -1124,25 +1050,6 @@ void GCMClientImpl::Send(const std::stri\n                          const OutgoingMessage& message) {\n   DCHECK_EQ(state_, READY);\n   DCHECK(io_task_runner_->RunsTasksInCurrentSequence());\n-\n-  mcs_proto::DataMessageStanza stanza;\n-  stanza.set_ttl(message.time_to_live);\n-  stanza.set_sent(clock_->Now().ToInternalValue() /\n-                  base::Time::kMicrosecondsPerSecond);\n-  stanza.set_id(message.id);\n-  stanza.set_from(kSendMessageFromValue);\n-  stanza.set_to(receiver_id);\n-  stanza.set_category(app_id);\n-\n-  for (auto iter = message.data.begin(); iter != message.data.end(); ++iter) {\n-    mcs_proto::AppData* app_data = stanza.add_app_data();\n-    app_data->set_key(iter->first);\n-    app_data->set_value(iter->second);\n-  }\n-\n-  MCSMessage mcs_message(stanza);\n-  DVLOG(1) << \"MCS message size: \" << mcs_message.size();\n-  mcs_client_->SendMessage(mcs_message);\n }\n \n std::string GCMClientImpl::GetStateString() const {\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-google-host-detection.patch",
    "content": "# Disables various detections of Google hosts and functionality specific to them\n\n--- a/chrome/browser/ui/webui/suggest_internals/suggest_internals_handler.cc\n+++ b/chrome/browser/ui/webui/suggest_internals/suggest_internals_handler.cc\n@@ -70,9 +70,6 @@ void SuggestInternalsHandler::OnRequestC\n       suggest_internals::mojom::Request::New();\n   mojom_request->id = request_id;\n   mojom_request->url = request->url;\n-  std::string variations_header;\n-  variations::GetVariationsHeader(*request, &variations_header);\n-  mojom_request->data[variations::kClientDataHeader] = variations_header;\n   mojom_request->data[request->method] = request->url.spec();\n   mojom_request->status = suggest_internals::mojom::RequestStatus::kCreated;\n   page_->OnRequestCreated(std::move(mojom_request));\n--- a/chrome/common/google_url_loader_throttle.cc\n+++ b/chrome/common/google_url_loader_throttle.cc\n@@ -25,10 +25,6 @@\n #include \"services/network/public/mojom/x_frame_options.mojom.h\"\n #include \"url/origin.h\"\n \n-#if BUILDFLAG(ENABLE_EXTENSIONS)\n-#include \"extensions/common/extension_urls.h\"\n-#endif\n-\n #if BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)\n #include \"chrome/common/bound_session_request_throttled_handler.h\"\n #include \"net/cookies/cookie_util.h\"\n@@ -173,71 +169,6 @@ void GoogleURLLoaderThrottle::DetachFrom\n void GoogleURLLoaderThrottle::WillStartRequest(\n     network::ResourceRequest* request,\n     bool* defer) {\n-  if (dynamic_params_->force_safe_search) {\n-    GURL new_url;\n-    safe_search_api::ForceGoogleSafeSearch(request->url, &new_url);\n-    if (!new_url.is_empty()) {\n-      request->url = new_url;\n-    }\n-  }\n-\n-  static_assert(safe_search_api::YOUTUBE_RESTRICT_OFF == 0,\n-                \"OFF must be first\");\n-  if (dynamic_params_->youtube_restrict >\n-          safe_search_api::YOUTUBE_RESTRICT_OFF &&\n-      dynamic_params_->youtube_restrict <\n-          safe_search_api::YOUTUBE_RESTRICT_COUNT) {\n-    safe_search_api::ForceYouTubeRestrict(\n-        request->url, &request->cors_exempt_headers,\n-        static_cast<safe_search_api::YouTubeRestrictMode>(\n-            dynamic_params_->youtube_restrict));\n-  }\n-\n-  if (!dynamic_params_->allowed_domains_for_apps.empty() &&\n-      request->url.DomainIs(\"google.com\")) {\n-    request->cors_exempt_headers.SetHeader(\n-        safe_search_api::kGoogleAppsAllowedDomains,\n-        dynamic_params_->allowed_domains_for_apps);\n-  }\n-\n-#if BUILDFLAG(IS_ANDROID)\n-  if (!client_data_header_.empty() &&\n-      google_util::IsGoogleAssociatedDomainUrl(request->url)) {\n-    request->cors_exempt_headers.SetHeader(kCCTClientDataHeader,\n-                                           client_data_header_);\n-  }\n-#endif\n-#if BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)\n-  // `network::mojom::RequestDestination::kDocument` means that this is a\n-  // navigation request.\n-  is_main_frame_navigation_ =\n-      request->is_outermost_main_frame &&\n-      request->destination == network::mojom::RequestDestination::kDocument;\n-  // TODO(crbug.com/372169462): `request->SendsCookies()` cannot be used for now\n-  // because it excludes `kSameOrigin` requests.\n-  sends_cookies_ =\n-      request->credentials_mode == network::mojom::CredentialsMode::kInclude ||\n-      request->credentials_mode == network::mojom::CredentialsMode::kSameOrigin;\n-  if (sends_cookies_) {\n-    RequestBoundSessionStatus status = GetRequestBoundSessionStatus(\n-        request->url, dynamic_params_->bound_session_throttler_params);\n-    if (IsCoveredRequestBoundSessionStatus(status)) {\n-      is_covered_by_bound_session_ = true;\n-    }\n-    if (status == RequestBoundSessionStatus::kCoveredWithMissingCookie) {\n-      CHECK(bound_session_request_throttled_handler_);\n-      *defer = true;\n-      is_deferred_for_bound_session_ = true;\n-      CHECK(!bound_session_request_throttled_start_time_.has_value());\n-      bound_session_request_throttled_start_time_ = base::TimeTicks::Now();\n-      bound_session_request_throttled_handler_->HandleRequestBlockedOnCookie(\n-          request->url,\n-          base::BindOnce(\n-              &GoogleURLLoaderThrottle::OnDeferRequestForBoundSessionCompleted,\n-              weak_factory_.GetWeakPtr()));\n-    }\n-  }\n-#endif\n }\n \n void GoogleURLLoaderThrottle::WillRedirectRequest(\n@@ -247,97 +178,12 @@ void GoogleURLLoaderThrottle::WillRedire\n     std::vector<std::string>* to_be_removed_headers,\n     net::HttpRequestHeaders* modified_headers,\n     net::HttpRequestHeaders* modified_cors_exempt_headers) {\n-  // URLLoaderThrottles can only change the redirect URL when the network\n-  // service is enabled. The non-network service path handles this in\n-  // ChromeNetworkDelegate.\n-  if (dynamic_params_->force_safe_search) {\n-    safe_search_api::ForceGoogleSafeSearch(redirect_info->new_url,\n-                                           &redirect_info->new_url);\n-  }\n-\n-  if (dynamic_params_->youtube_restrict >\n-          safe_search_api::YOUTUBE_RESTRICT_OFF &&\n-      dynamic_params_->youtube_restrict <\n-          safe_search_api::YOUTUBE_RESTRICT_COUNT) {\n-    safe_search_api::ForceYouTubeRestrict(\n-        redirect_info->new_url, modified_cors_exempt_headers,\n-        static_cast<safe_search_api::YouTubeRestrictMode>(\n-            dynamic_params_->youtube_restrict));\n-  }\n-\n-  if (!dynamic_params_->allowed_domains_for_apps.empty() &&\n-      redirect_info->new_url.DomainIs(\"google.com\")) {\n-    modified_cors_exempt_headers->SetHeader(\n-        safe_search_api::kGoogleAppsAllowedDomains,\n-        dynamic_params_->allowed_domains_for_apps);\n-  }\n-\n-#if BUILDFLAG(IS_ANDROID)\n-  if (!client_data_header_.empty() &&\n-      !google_util::IsGoogleAssociatedDomainUrl(redirect_info->new_url)) {\n-    to_be_removed_headers->push_back(kCCTClientDataHeader);\n-  }\n-#endif\n-#if BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)\n-  if (sends_cookies_) {\n-    RequestBoundSessionStatus status = GetRequestBoundSessionStatus(\n-        redirect_info->new_url,\n-        dynamic_params_->bound_session_throttler_params);\n-    if (IsCoveredRequestBoundSessionStatus(status)) {\n-      is_covered_by_bound_session_ = true;\n-    }\n-    if (status == RequestBoundSessionStatus::kCoveredWithMissingCookie) {\n-      CHECK(bound_session_request_throttled_handler_);\n-      *defer = true;\n-      is_deferred_for_bound_session_ = true;\n-      CHECK(!bound_session_request_throttled_start_time_.has_value());\n-      bound_session_request_throttled_start_time_ = base::TimeTicks::Now();\n-      bound_session_request_throttled_handler_->HandleRequestBlockedOnCookie(\n-          redirect_info->new_url,\n-          base::BindOnce(\n-              &GoogleURLLoaderThrottle::OnDeferRequestForBoundSessionCompleted,\n-              weak_factory_.GetWeakPtr()));\n-    }\n-  }\n-#endif\n }\n \n void GoogleURLLoaderThrottle::WillProcessResponse(\n     const GURL& response_url,\n     network::mojom::URLResponseHead* response_head,\n     bool* defer) {\n-#if BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)\n-  if (is_covered_by_bound_session_) {\n-    RecordBoundSessionStatusMetrics(is_deferred_for_bound_session_,\n-                                    is_main_frame_navigation_,\n-                                    /*is_request_succeeded=*/true);\n-  }\n-  if (deferred_request_resume_trigger_) {\n-    UMA_HISTOGRAM_ENUMERATION(\n-        \"Signin.BoundSessionCredentials.DeferredRequestUnblockTrigger.Success\",\n-        deferred_request_resume_trigger_.value());\n-  }\n-#endif  // BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)\n-\n-#if BUILDFLAG(ENABLE_EXTENSIONS)\n-  // Built-in additional protection for the chrome web store origin by\n-  // ensuring that the X-Frame-Options protection mechanism is set to either\n-  // DENY or SAMEORIGIN.\n-  if (response_url.SchemeIsHTTPOrHTTPS() &&\n-      extension_urls::IsWebstoreDomain(response_url)) {\n-    // TODO(mkwst): Consider shifting this to a NavigationThrottle rather than\n-    // relying on implicit ordering between this check and the time at which\n-    // ParsedHeaders is created.\n-    CHECK(response_head);\n-    CHECK(response_head->parsed_headers);\n-    if (response_head->parsed_headers->xfo !=\n-        network::mojom::XFrameOptionsValue::kDeny) {\n-      response_head->headers->SetHeader(\"X-Frame-Options\", \"SAMEORIGIN\");\n-      response_head->parsed_headers->xfo =\n-          network::mojom::XFrameOptionsValue::kSameOrigin;\n-    }\n-  }\n-#endif  // BUILDFLAG(ENABLE_EXTENSIONS)\n }\n \n #if BUILDFLAG(ENABLE_BOUND_SESSION_CREDENTIALS)\n--- a/components/google/core/common/google_util.cc\n+++ b/components/google/core/common/google_util.cc\n@@ -33,117 +33,6 @@ namespace google_util {\n \n namespace {\n \n-bool IsPathHomePageBase(std::string_view path) {\n-  return (path == \"/\") || (path == \"/webhp\");\n-}\n-\n-// Removes a single trailing dot if present in |host|.\n-void StripTrailingDot(std::string_view* host) {\n-  if (base::EndsWith(*host, \".\")) {\n-    host->remove_suffix(1);\n-  }\n-}\n-\n-// True if the given canonical |host| is \"[www.]<domain_in_lower_case>.<TLD>\"\n-// with a valid TLD that appears in |allowed_tlds|. If |subdomain_permission| is\n-// ALLOW_SUBDOMAIN, we check against host \"*.<domain_in_lower_case>.<TLD>\"\n-// instead.\n-template <typename Container>\n-bool IsValidHostName(std::string_view host,\n-                     std::string_view domain_in_lower_case,\n-                     SubdomainPermission subdomain_permission,\n-                     const Container& allowed_tlds) {\n-  // Fast path to avoid searching the registry set.\n-  if (host.find(domain_in_lower_case) == std::string_view::npos) {\n-    return false;\n-  }\n-\n-  size_t tld_length =\n-      net::registry_controlled_domains::GetCanonicalHostRegistryLength(\n-          host, net::registry_controlled_domains::EXCLUDE_UNKNOWN_REGISTRIES,\n-          net::registry_controlled_domains::EXCLUDE_PRIVATE_REGISTRIES);\n-  if ((tld_length == 0) || (tld_length == std::string::npos)) {\n-    return false;\n-  }\n-\n-  // Removes the tld and the preceding dot.\n-  std::string_view host_minus_tld =\n-      host.substr(0, host.length() - tld_length - 1);\n-\n-  std::string_view tld = host.substr(host.length() - tld_length);\n-  // Remove the trailing dot from tld if present, as for Google domains it's the\n-  // same page.\n-  StripTrailingDot(&tld);\n-  if (!allowed_tlds.contains(tld)) {\n-    return false;\n-  }\n-\n-  if (base::EqualsCaseInsensitiveASCII(host_minus_tld, domain_in_lower_case)) {\n-    return true;\n-  }\n-\n-  if (subdomain_permission == ALLOW_SUBDOMAIN) {\n-    std::string dot_domain = base::StrCat({\".\", domain_in_lower_case});\n-    return base::EndsWith(host_minus_tld, dot_domain,\n-                          base::CompareCase::INSENSITIVE_ASCII);\n-  }\n-\n-  std::string www_domain = base::StrCat({\"www.\", domain_in_lower_case});\n-  return base::EqualsCaseInsensitiveASCII(host_minus_tld, www_domain);\n-}\n-\n-// True if |url| is a valid URL with HTTP or HTTPS scheme. If |port_permission|\n-// is DISALLOW_NON_STANDARD_PORTS, this also requires |url| to use the standard\n-// port for its scheme (80 for HTTP, 443 for HTTPS).\n-bool IsValidURL(const GURL& url, PortPermission port_permission) {\n-  static bool g_ignore_port_numbers =\n-      base::CommandLine::ForCurrentProcess()->HasSwitch(\n-          switches::kIgnoreGooglePortNumbers);\n-  return url.is_valid() && url.SchemeIsHTTPOrHTTPS() &&\n-         (!url.has_port() || g_ignore_port_numbers ||\n-          (port_permission == ALLOW_NON_STANDARD_PORTS));\n-}\n-\n-bool IsCanonicalHostGoogleHostname(std::string_view canonical_host,\n-                                   SubdomainPermission subdomain_permission) {\n-  const GURL& base_url(CommandLineGoogleBaseURL());\n-  if (base_url.is_valid() && (canonical_host == base_url.host())) {\n-    return true;\n-  }\n-\n-  static constexpr auto google_tlds =\n-      base::MakeFixedFlatSet<std::string_view>({GOOGLE_TLD_LIST});\n-  return IsValidHostName(canonical_host, \"google\", subdomain_permission,\n-                         google_tlds);\n-}\n-\n-bool IsCanonicalHostYoutubeHostname(std::string_view canonical_host,\n-                                    SubdomainPermission subdomain_permission) {\n-  static constexpr auto youtube_tlds =\n-      base::MakeFixedFlatSet<std::string_view>({YOUTUBE_TLD_LIST});\n-\n-  return IsValidHostName(canonical_host, \"youtube\", subdomain_permission,\n-                         youtube_tlds);\n-}\n-\n-// True if |url| is a valid URL with a host that is in the static list of\n-// Google subdomains for google search, and an HTTP or HTTPS scheme. Requires\n-// |url| to use the standard port for its scheme (80 for HTTP, 443 for HTTPS).\n-bool IsGoogleSearchSubdomainUrl(const GURL& url) {\n-  if (!IsValidURL(url, PortPermission::DISALLOW_NON_STANDARD_PORTS)) {\n-    return false;\n-  }\n-\n-  std::string_view host(url.host());\n-  StripTrailingDot(&host);\n-\n-  static constexpr auto google_subdomains =\n-      base::MakeFixedFlatSet<std::string_view>(\n-          {\"ipv4.google.com\", \"ipv6.google.com\"});\n-\n-  return google_subdomains.contains(host);\n-}\n-\n }  // namespace\n \n BASE_FEATURE(kIsViewerGoogleSearchUrl, base::FEATURE_ENABLED_BY_DEFAULT);\n@@ -153,13 +42,6 @@ BASE_FEATURE(kIsViewerGoogleSearchUrl, b\n const char kGoogleHomepageURL[] = \"trk:113:https://www.google.com/\";\n \n bool HasGoogleSearchQueryParam(std::string_view str) {\n-  url::Component query(0, static_cast<int>(str.length())), key, value;\n-  while (url::ExtractQueryKeyValue(str, &query, &key, &value)) {\n-    std::string_view key_str = str.substr(key.begin, key.len);\n-    if (key_str == \"q\" || key_str == \"as_q\" || key_str == \"imgurl\") {\n-      return true;\n-    }\n-  }\n   return false;\n }\n \n@@ -170,175 +52,53 @@ std::string GetGoogleLocale(const std::s\n \n GURL AppendGoogleLocaleParam(const GURL& url,\n                              const std::string& application_locale) {\n-  return net::AppendQueryParameter(url, \"hl\",\n-                                   GetGoogleLocale(application_locale));\n+  return url;\n }\n \n std::string GetGoogleCountryCode(const GURL& google_homepage_url) {\n-  std::string_view google_hostname = google_homepage_url.host();\n-  // TODO(igorcov): This needs a fix for case when the host has a trailing dot,\n-  // like \"google.com./\". https://crbug.com/720295.\n-  const size_t last_dot = google_hostname.find_last_of('.');\n-  if (last_dot == std::string::npos) {\n-    return std::string();\n-  }\n-  std::string_view country_code = google_hostname.substr(last_dot + 1);\n-  // Assume the com TLD implies the US.\n-  if (country_code == \"com\") {\n-    return \"us\";\n-  }\n-  // Google uses the Unicode Common Locale Data Repository (CLDR), and the CLDR\n-  // code for the UK is \"gb\".\n-  if (country_code == \"uk\") {\n-    return \"gb\";\n-  }\n-  // Catalonia does not have a CLDR country code, since it's a region in Spain,\n-  // so use Spain instead.\n-  if (country_code == \"cat\") {\n-    return \"es\";\n-  }\n-  return std::string(country_code);\n+  return \"nolocale\";\n }\n \n GURL GetGoogleSearchURL(const GURL& google_homepage_url) {\n-  // To transform the homepage URL into the corresponding search URL, add the\n-  // \"search\" and the \"q=\" query string.\n-  GURL::Replacements replacements;\n-  replacements.SetPathStr(\"search\");\n-  replacements.SetQueryStr(\"q=\");\n-  return google_homepage_url.ReplaceComponents(replacements);\n+  return google_homepage_url;\n }\n \n const GURL& CommandLineGoogleBaseURL() {\n-  // Unit tests may add command-line flags after the first call to this\n-  // function, so we don't simply initialize a static |base_url| directly and\n-  // then unconditionally return it.\n-  static base::NoDestructor<std::string> switch_value;\n   static base::NoDestructor<GURL> base_url;\n-  std::string current_switch_value(\n-      base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\n-          switches::kGoogleBaseURL));\n-  if (current_switch_value != *switch_value) {\n-    *switch_value = current_switch_value;\n-    *base_url = url_formatter::FixupURL(*switch_value);\n-    if (!base_url->is_valid() || base_url->has_query() || base_url->has_ref()) {\n-      *base_url = GURL();\n-    }\n-  }\n+  *base_url = GURL();\n   return *base_url;\n }\n \n bool StartsWithCommandLineGoogleBaseURL(const GURL& url) {\n-  const GURL& base_url(CommandLineGoogleBaseURL());\n-  return base_url.is_valid() &&\n-         base::StartsWith(url.possibly_invalid_spec(), base_url.spec(),\n-                          base::CompareCase::SENSITIVE);\n+  return false;\n }\n \n bool IsGoogleDomainUrl(const GURL& url,\n                        SubdomainPermission subdomain_permission,\n                        PortPermission port_permission) {\n-  return IsValidURL(url, port_permission) &&\n-         IsCanonicalHostGoogleHostname(url.host(), subdomain_permission);\n+  return false;\n }\n \n bool IsGoogleHostname(std::string_view host,\n                       SubdomainPermission subdomain_permission) {\n-  url::CanonHostInfo host_info;\n-  return IsCanonicalHostGoogleHostname(net::CanonicalizeHost(host, &host_info),\n-                                       subdomain_permission);\n+  return false;\n }\n \n bool IsGoogleHomePageUrl(const GURL& url) {\n-  // First check to see if this has a Google domain.\n-  if (!IsGoogleDomainUrl(url, DISALLOW_SUBDOMAIN,\n-                         DISALLOW_NON_STANDARD_PORTS) &&\n-      !IsGoogleSearchSubdomainUrl(url)) {\n-    return false;\n-  }\n-\n-  // Make sure the path is a known home page path.\n-  std::string_view path(url.path());\n-  return IsPathHomePageBase(path) ||\n-         base::StartsWith(path, \"/ig\", base::CompareCase::INSENSITIVE_ASCII);\n+  return false;\n }\n \n bool IsGoogleSearchUrl(const GURL& url) {\n-  // First check to see if this has a Google domain.\n-  if (!IsGoogleDomainUrl(url, DISALLOW_SUBDOMAIN,\n-                         DISALLOW_NON_STANDARD_PORTS) &&\n-      !IsGoogleSearchSubdomainUrl(url)) {\n-    return false;\n-  }\n-\n-  // Make sure the path is a known search path.\n-  std::string_view path(url.path());\n-  bool is_home_page_base = IsPathHomePageBase(path);\n-  bool is_search_url =\n-      is_home_page_base || path == \"/search\" || path == \"/imgres\";\n-  if (base::FeatureList::IsEnabled(kIsViewerGoogleSearchUrl)) {\n-    is_search_url |= path == \"/viewer\" || base::StartsWith(path, \"/viewer/\");\n-  }\n-  if (!is_search_url) {\n-    return false;\n-  }\n-\n-  // Check for query parameter in URL parameter and hash fragment, depending on\n-  // the path type.\n-  return HasGoogleSearchQueryParam(url.ref()) ||\n-         (!is_home_page_base && HasGoogleSearchQueryParam(url.query()));\n+  return false;\n }\n \n bool IsYoutubeDomainUrl(const GURL& url,\n                         SubdomainPermission subdomain_permission,\n                         PortPermission port_permission) {\n-  return IsValidURL(url, port_permission) &&\n-         IsCanonicalHostYoutubeHostname(url.host(), subdomain_permission);\n+  return false;\n }\n \n bool IsGoogleAssociatedDomainUrl(const GURL& url) {\n-  if (IsGoogleDomainUrl(url, ALLOW_SUBDOMAIN, ALLOW_NON_STANDARD_PORTS)) {\n-    return true;\n-  }\n-\n-  if (IsYoutubeDomainUrl(url, ALLOW_SUBDOMAIN, ALLOW_NON_STANDARD_PORTS)) {\n-    return true;\n-  }\n-\n-  // Some domains don't have international TLD extensions, so testing for them\n-  // is very straightforward.\n-  static auto kSuffixesToSetHeadersFor = std::to_array<const char*>({\n-      \".android.com\",\n-      \".doubleclick.com\",\n-      \".doubleclick.net\",\n-      \".ggpht.com\",\n-      \".googleadservices.com\",\n-      \".googleapis.com\",\n-      \".googlesyndication.com\",\n-      \".googleusercontent.com\",\n-      \".googlevideo.com\",\n-      \".gstatic.com\",\n-      \".litepages.googlezip.net\",\n-      \".youtubekids.com\",\n-      \".ytimg.com\",\n-  });\n-  const std::string_view host(url.host());\n-  for (auto* i : kSuffixesToSetHeadersFor) {\n-    if (base::EndsWith(host, i, base::CompareCase::INSENSITIVE_ASCII)) {\n-      return true;\n-    }\n-  }\n-\n-  // Exact hostnames in lowercase to set headers for.\n-  static auto kHostsToSetHeadersFor = std::to_array<const char*>({\n-      \"googleweblight.com\",\n-  });\n-  for (auto* i : kHostsToSetHeadersFor) {\n-    if (base::EqualsCaseInsensitiveASCII(host, i)) {\n-      return true;\n-    }\n-  }\n-\n   return false;\n }\n \n--- a/components/page_load_metrics/google/browser/google_url_util.cc\n+++ b/components/page_load_metrics/google/browser/google_url_util.cc\n@@ -14,39 +14,7 @@\n namespace page_load_metrics {\n \n std::optional<std::string> GetGoogleHostnamePrefix(const GURL& url) {\n-  const size_t registry_length =\n-      net::registry_controlled_domains::GetRegistryLength(\n-          url,\n-\n-          // Do not include unknown registries (registries that don't have any\n-          // matches in effective TLD names).\n-          net::registry_controlled_domains::EXCLUDE_UNKNOWN_REGISTRIES,\n-\n-          // Do not include private registries, such as appspot.com. We don't\n-          // want to match URLs like www.google.appspot.com.\n-          net::registry_controlled_domains::EXCLUDE_PRIVATE_REGISTRIES);\n-\n-  const std::string_view hostname = url.host();\n-  if (registry_length == 0 || registry_length == std::string::npos ||\n-      registry_length >= hostname.length()) {\n-    return std::nullopt;\n-  }\n-\n-  // Removes the tld and the preceding dot.\n-  const std::string_view hostname_minus_registry =\n-      hostname.substr(0, hostname.length() - (registry_length + 1));\n-\n-  if (hostname_minus_registry == \"google\") {\n-    return std::string(\"\");\n-  }\n-\n-  if (!base::EndsWith(hostname_minus_registry, \".google\",\n-                      base::CompareCase::INSENSITIVE_ASCII)) {\n     return std::nullopt;\n-  }\n-\n-  return std::string(hostname_minus_registry.substr(\n-      0, hostname_minus_registry.length() - strlen(\".google\")));\n }\n \n bool IsGoogleHostname(const GURL& url) {\n@@ -54,9 +22,7 @@ bool IsGoogleHostname(const GURL& url) {\n }\n \n bool IsGoogleSearchHostname(const GURL& url) {\n-  std::optional<std::string> result =\n-      page_load_metrics::GetGoogleHostnamePrefix(url);\n-  return result && result.value() == \"www\";\n+  return false;\n }\n \n bool IsProbablyGoogleSearchUrl(const GURL& url) {\n--- a/components/search_engines/template_url.cc\n+++ b/components/search_engines/template_url.cc\n@@ -624,10 +624,7 @@ std::u16string TemplateURLRef::SearchTer\n bool TemplateURLRef::HasGoogleBaseURLs(\n     const SearchTermsData& search_terms_data) const {\n   ParseIfNecessary(search_terms_data);\n-  return std::ranges::any_of(replacements_, [](const Replacement& replacement) {\n-    return replacement.type == GOOGLE_BASE_URL ||\n-           replacement.type == GOOGLE_BASE_SUGGEST_URL;\n-  });\n+  return false;\n }\n \n bool TemplateURLRef::ExtractSearchTermsFromURL(\n--- a/components/variations/net/variations_http_headers.cc\n+++ b/components/variations/net/variations_http_headers.cc\n@@ -31,10 +31,6 @@\n \n namespace variations {\n \n-// The name string for the header for variations information.\n-// Note that prior to M33 this header was named X-Chrome-Variations.\n-const char kClientDataHeader[] = \"X-Client-Data\";\n-\n namespace {\n \n // The result of checking whether a request to a URL should have variations\n@@ -116,16 +112,6 @@ URLValidationResult GetUrlValidationResu\n   return URLValidationResult::kShouldAppend;\n }\n \n-// Returns true if the request to |url| should include a variations header.\n-// Also, logs the result of validating |url| in histograms, one of which ends in\n-// |suffix|.\n-bool ShouldAppendVariationsHeader(const GURL& url, const std::string& suffix) {\n-  URLValidationResult result = GetUrlValidationResult(url);\n-  base::UmaHistogramEnumeration(\n-      \"Variations.Headers.URLValidationResult.\" + suffix, result);\n-  return result == URLValidationResult::kShouldAppend;\n-}\n-\n // Returns true if the request is sent from a Google web property, i.e. from a\n // first-party context.\n //\n@@ -252,30 +238,7 @@ class VariationsHeaderHelper {\n   VariationsHeaderHelper& operator=(const VariationsHeaderHelper&) = delete;\n \n   bool AppendHeaderIfNeeded(const GURL& url, InIncognito incognito) {\n-    // Note the criteria for attaching client experiment headers:\n-    // 1. We only transmit to Google owned domains which can evaluate\n-    // experiments.\n-    //    1a. These include hosts which have a standard postfix such as:\n-    //         *.doubleclick.net or *.googlesyndication.com or\n-    //         exactly www.googleadservices.com or\n-    //         international TLD domains *.google.<TLD> or *.youtube.<TLD>.\n-    // 2. Only transmit for non-Incognito profiles.\n-    // 3. For the X-Client-Data header, only include non-empty variation IDs.\n-    if ((incognito == InIncognito::kYes) ||\n-        !ShouldAppendVariationsHeader(url, \"Append\")) {\n-      return false;\n-    }\n-\n-    if (variations_header_.empty()) {\n-      return false;\n-    }\n-\n-    // Set the variations header to cors_exempt_headers rather than headers to\n-    // be exempted from CORS checks, and to avoid exposing the header to service\n-    // workers.\n-    resource_request_->cors_exempt_headers.SetHeaderIfMissing(\n-        kClientDataHeader, variations_header_);\n-    return true;\n+    return false;\n   }\n \n  private:\n@@ -341,9 +304,6 @@ void RemoveVariationsHeaderIfNeeded(\n     const net::RedirectInfo& redirect_info,\n     const network::mojom::URLResponseHead& response_head,\n     std::vector<std::string>* to_be_removed_headers) {\n-  if (!ShouldAppendVariationsHeader(redirect_info.new_url, \"Remove\")) {\n-    to_be_removed_headers->push_back(kClientDataHeader);\n-  }\n }\n \n std::unique_ptr<network::SimpleURLLoader>\n@@ -379,29 +339,22 @@ CreateSimpleURLLoaderWithVariationsHeade\n }\n \n bool HasVariationsHeader(const network::ResourceRequest& request) {\n-  std::string unused_header;\n-  return GetVariationsHeader(request, &unused_header);\n+  return false;\n }\n \n bool GetVariationsHeader(const network::ResourceRequest& request,\n                          std::string* out) {\n-  std::optional<std::string> header_value =\n-      request.cors_exempt_headers.GetHeader(kClientDataHeader);\n-  if (header_value) {\n-    out->swap(header_value.value());\n-  }\n-  return header_value.has_value();\n+  return false;\n }\n \n bool ShouldAppendVariationsHeaderForTesting(\n     const GURL& url,\n     const std::string& histogram_suffix) {\n-  return ShouldAppendVariationsHeader(url, histogram_suffix);\n+  return false;\n }\n \n void UpdateCorsExemptHeaderForVariations(\n     network::mojom::NetworkContextParams* params) {\n-  params->cors_exempt_header_list.push_back(kClientDataHeader);\n }\n \n }  // namespace variations\n--- a/content/browser/preloading/prefetch/prefetch_container.cc\n+++ b/content/browser/preloading/prefetch/prefetch_container.cc\n@@ -899,23 +899,6 @@ void PrefetchContainer::UpdateResourceRe\n \n   resource_request_->UpdateOnRedirect(redirect_info);\n \n-  // Remove `variations::kClientDataHeader` from `resource_request_->headers`,\n-  // to keep the existing behavior. While `AddXClientDataHeader()` adds\n-  // `variations::kClientDataHeader` to `resource_request->cors_exempt_headers`,\n-  // it's also possible that `variations::kClientDataHeader` is added to\n-  // `resource_request_->headers` via `request().additional_headers()`.\n-  //\n-  // TODO(crbug.com/467177773): The processing of\n-  // `variations::kClientDataHeader` is separated from other headers, to keep\n-  // the behavior of `variations::kClientDataHeader` during the main fixes for\n-  // crbug.com/467177773. The behavior of `variations::kClientDataHeader` should\n-  // be fixed together with other related bugs, by e.g. restructuring\n-  // `variations::AppendVariationsHeader()` and plumbing the\n-  // `variations::kClientDataHeader` removal and modification to\n-  // `FollowRedirect()`.\n-  // TODO(crbug.com/454082776): Remove `variations::kClientDataHeader` from\n-  // `resource_request->cors_exempt_headers`.\n-  resource_request_->headers.RemoveHeader(variations::kClientDataHeader);\n   AddXClientDataHeader(*resource_request_.get());\n }\n \n--- a/net/base/url_util.cc\n+++ b/net/base/url_util.cc\n@@ -549,28 +549,6 @@ bool HasGoogleHost(const GURL& url) {\n }\n \n bool IsGoogleHost(std::string_view host) {\n-  static const char* kGoogleHostSuffixes[] = {\n-      \".google.com\",\n-      \".youtube.com\",\n-      \".gmail.com\",\n-      \".doubleclick.net\",\n-      \".gstatic.com\",\n-      \".googlevideo.com\",\n-      \".googleusercontent.com\",\n-      \".googlesyndication.com\",\n-      \".google-analytics.com\",\n-      \".googleadservices.com\",\n-      \".googleapis.com\",\n-      \".ytimg.com\",\n-  };\n-  for (const char* suffix : kGoogleHostSuffixes) {\n-    // Here it's possible to get away with faster case-sensitive comparisons\n-    // because the list above is all lowercase, and a GURL's host name will\n-    // always be canonicalized to lowercase as well.\n-    if (host.ends_with(suffix)) {\n-      return true;\n-    }\n-  }\n   return false;\n }\n \n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-mei-preload.patch",
    "content": "# Disables use of a binary for preloading the Media Engagement index\n# Said binary is: chrome/browser/resources/media/mei_preload/preloaded_data.pb\n# According to media/base/media_switches (for PreloadMediaEngagementData), it\n# \"enables a list of origins to be considered as having a high MEI until there\n# is enough local data to determine the user's preferred behavior.\" This feature\n# does not seem to outweigh the benefit of removing the binary, thus this patch.\n\n--- a/chrome/BUILD.gn\n+++ b/chrome/BUILD.gn\n@@ -370,7 +370,6 @@ if (!is_android && !is_mac) {\n     }\n \n     data_deps += [\n-      \"//chrome/browser/resources/media/mei_preload:component\",\n       \"//chrome/browser/web_applications/isolated_web_apps/key_distribution/preload:component\",\n       \"//third_party/widevine/cdm\",\n     ]\n@@ -1179,7 +1178,6 @@ if (is_win) {\n       \":optimization_guide_library\",\n       \":swiftshader_binaries\",\n       \":widevine_cdm_library\",\n-      \"//chrome/browser/resources/media/mei_preload:component_bundle\",\n       \"//chrome/browser/web_applications/isolated_web_apps/key_distribution/preload:component_bundle\",\n     ]\n \n--- a/chrome/browser/resources/BUILD.gn\n+++ b/chrome/browser/resources/BUILD.gn\n@@ -111,7 +111,6 @@ group(\"resources\") {\n   if (is_mac) {\n     public_deps += [\n       \"unexportable_keys_internals:resources\",\n-      \"//chrome/browser/resources/media/mei_preload:component\",\n     ]\n   }\n \n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-network-time-tracker.patch",
    "content": "# Disable Network Time Tracker\n# This connects to Google to check if the system time is correct when a website certificate\n# date seems incorrect, according to https://bugs.chromium.org/p/chromium/issues/detail?id=725232,\n# Fixes https://github.com/ungoogled-software/ungoogled-chromium/issues/302\n\n--- a/components/network_time/network_time_tracker.cc\n+++ b/components/network_time/network_time_tracker.cc\n@@ -324,8 +324,7 @@ void NetworkTimeTracker::UpdateNetworkTi\n }\n \n bool NetworkTimeTracker::AreTimeFetchesEnabled() const {\n-  return is_initialized() &&\n-         base::FeatureList::IsEnabled(kNetworkTimeServiceQuerying);\n+  return false;\n }\n \n NetworkTimeTracker::FetchBehavior NetworkTimeTracker::GetFetchBehavior() const {\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-privacy-sandbox.patch",
    "content": "--- a/components/browsing_data/content/browsing_data_model.cc\n+++ b/components/browsing_data/content/browsing_data_model.cc\n@@ -996,12 +996,6 @@ void BrowsingDataModel::PopulateFromDisk\n       base::FeatureList::IsEnabled(network::features::kSharedStorageAPI);\n   bool is_shared_dictionary_enabled = base::FeatureList::IsEnabled(\n       network::features::kCompressionDictionaryTransport);\n-  bool is_interest_group_enabled =\n-      base::FeatureList::IsEnabled(network::features::kInterestGroupStorage);\n-  bool is_attribution_reporting_enabled = base::FeatureList::IsEnabled(\n-      attribution_reporting::features::kConversionMeasurement);\n-  bool is_private_aggregation_enabled =\n-      base::FeatureList::IsEnabled(blink::features::kPrivateAggregationApi);\n \n   base::RepeatingClosure completion =\n       base::BindRepeating([](const base::OnceClosure&) {},\n@@ -1038,27 +1032,7 @@ void BrowsingDataModel::PopulateFromDisk\n         base::BindOnce(&OnSharedDictionaryUsageLoaded, this, completion));\n   }\n \n-  // Interest Groups\n-  if (is_interest_group_enabled) {\n-    content::InterestGroupManager* manager =\n-        storage_partition_->GetInterestGroupManager();\n-    if (manager) {\n-      manager->GetAllInterestGroupDataKeys(\n-          base::BindOnce(&OnInterestGroupsLoaded, this, completion));\n-    }\n-  }\n-\n-  // Attribution Reporting\n-  if (is_attribution_reporting_enabled) {\n-    storage_partition_->GetAttributionDataModel()->GetAllDataKeys(\n-        base::BindOnce(&OnAttributionReportingLoaded, this, completion));\n-  }\n \n-  // Private Aggregation\n-  if (is_private_aggregation_enabled) {\n-    storage_partition_->GetPrivateAggregationDataModel()->GetAllDataKeys(\n-        base::BindOnce(&OnPrivateAggregationLoaded, this, completion));\n-  }\n \n #if BUILDFLAG(ENABLE_LIBRARY_CDMS)\n   storage_partition_->GetCdmStorageDataModel()->GetUsagePerAllStorageKeys(\n--- a/components/privacy_sandbox/privacy_sandbox_settings_impl.cc\n+++ b/components/privacy_sandbox/privacy_sandbox_settings_impl.cc\n@@ -131,7 +131,7 @@ std::set<browsing_topics::Topic> GetTopi\n \n // static\n bool PrivacySandboxSettingsImpl::IsAllowed(Status status) {\n-  return status == Status::kAllowed;\n+  return false;\n }\n \n // static\n@@ -861,7 +861,7 @@ void PrivacySandboxSettingsImpl::SetTopi\n }\n \n bool PrivacySandboxSettingsImpl::IsPrivacySandboxRestricted() const {\n-  return delegate_->IsPrivacySandboxRestricted();\n+  return true;\n }\n \n bool PrivacySandboxSettingsImpl::IsPrivacySandboxCurrentlyUnrestricted() const {\n@@ -930,11 +930,7 @@ PrivacySandboxSettingsImpl::GetPrivacySa\n     return Status::kIncognitoProfile;\n   }\n \n-  if (IsPrivacySandboxRestricted() && !should_ignore_restriction) {\n     return Status::kRestricted;\n-  }\n-\n-  return Status::kAllowed;\n }\n \n PrivacySandboxSettingsImpl::Status\n--- a/content/browser/attribution_reporting/attribution_suitable_context.cc\n+++ b/content/browser/attribution_reporting/attribution_suitable_context.cc\n@@ -44,82 +44,13 @@ bool UkmSourceIdAllowed(RenderFrameHostI\n // static\n std::optional<AttributionSuitableContext> AttributionSuitableContext::Create(\n     NavigationHandle* navigation_handle) {\n-  RenderFrameHostImpl* rfh = static_cast<RenderFrameHostImpl*>(\n-      navigation_handle->GetRenderFrameHost());\n-  std::optional<AttributionSuitableContext> context = Create(rfh);\n-  // Override the UKM source ID from the associated ongoing navigation handle as\n-  // `AttributionHost::GetPageUkmSourceId()` is not updated until the navigation\n-  // finishes.\n-  if (context && UkmSourceIdAllowed(rfh)) {\n-    context->ukm_source_id_ = navigation_handle->GetNextPageUkmSourceId();\n-  }\n-  return context;\n+  return std::nullopt;\n }\n \n // static\n std::optional<AttributionSuitableContext> AttributionSuitableContext::Create(\n     RenderFrameHostImpl* initiator_frame) {\n-  if (!initiator_frame) {\n     return std::nullopt;\n-  }\n-\n-  if (!base::FeatureList::IsEnabled(\n-          attribution_reporting::features::kConversionMeasurement)) {\n-    return std::nullopt;\n-  }\n-\n-  if (!initiator_frame->IsFeatureEnabled(\n-          network::mojom::PermissionsPolicyFeature::kAttributionReporting)) {\n-    return std::nullopt;\n-  }\n-  RenderFrameHostImpl* initiator_root_frame =\n-      initiator_frame->GetOutermostMainFrame();\n-  CHECK(initiator_root_frame);\n-\n-  // We need a suitable origin here because we need to be able to eventually\n-  // store it as either the source or destination origin. Using\n-  // `is_web_secure_context` only would allow opaque origins to pass through,\n-  // but they cannot be handled by the storage layer.\n-  std::optional<attribution_reporting::SuitableOrigin>\n-      initiator_root_frame_origin = SuitableOrigin::Create(\n-          initiator_root_frame->GetLastCommittedOrigin());\n-  if (!initiator_root_frame_origin.has_value()) {\n-    return std::nullopt;\n-  }\n-  // If the `initiator_frame` is a subframe, it's origin's security isn't\n-  // covered by the SuitableOrigin check above, we therefore validate that it's\n-  // origin is secure using `is_web_secure_context`.\n-  if (initiator_frame != initiator_root_frame &&\n-      !initiator_frame->policy_container_host()\n-           ->policies()\n-           .is_web_secure_context) {\n-    return std::nullopt;\n-  }\n-\n-  auto* web_contents = WebContents::FromRenderFrameHost(initiator_frame);\n-  if (!web_contents) {\n-    return std::nullopt;\n-  }\n-  auto* manager = AttributionManager::FromWebContents(web_contents);\n-  CHECK(manager);\n-\n-  auto* attribution_host = AttributionHost::FromWebContents(web_contents);\n-  CHECK(attribution_host);\n-\n-  AttributionDataHostManager* data_host_manager = manager->GetDataHostManager();\n-  CHECK(data_host_manager);\n-\n-  return AttributionSuitableContext(\n-      /*context_origin=*/std::move(initiator_root_frame_origin.value()),\n-      initiator_frame->IsNestedWithinFencedFrame(),\n-      initiator_root_frame->GetGlobalId(), initiator_frame->navigation_id(),\n-      attribution_host->GetMostRecentNavigationInputEvent(),\n-      AttributionOsLevelManager::GetAttributionReportingOsRegistrars(\n-          web_contents),\n-      UkmSourceIdAllowed(initiator_root_frame)\n-          ? attribution_host->GetPageUkmSourceId()\n-          : ukm::kInvalidSourceId,\n-      data_host_manager->AsWeakPtr());\n }\n \n // static\n--- a/content/browser/interest_group/ad_auction_service_impl.cc\n+++ b/content/browser/interest_group/ad_auction_service_impl.cc\n@@ -190,11 +190,6 @@ AdAuctionServiceImpl::BiddingAndAuctionD\n void AdAuctionServiceImpl::CreateMojoService(\n     RenderFrameHost* render_frame_host,\n     mojo::PendingReceiver<blink::mojom::AdAuctionService> receiver) {\n-  CHECK(render_frame_host);\n-\n-  // The object is bound to the lifetime of `render_frame_host` and the mojo\n-  // connection. See DocumentService for details.\n-  new AdAuctionServiceImpl(*render_frame_host, std::move(receiver));\n }\n \n void AdAuctionServiceImpl::JoinInterestGroup(\n--- a/content/browser/storage_partition_impl.cc\n+++ b/content/browser/storage_partition_impl.cc\n@@ -1512,38 +1512,7 @@ void StoragePartitionImpl::Initialize(\n \n   bucket_manager_ = std::make_unique<BucketManager>(this);\n \n-  if (base::FeatureList::IsEnabled(\n-          attribution_reporting::features::kConversionMeasurement)) {\n-    // The Conversion Measurement API is not available in Incognito mode, but\n-    // this is enforced by the `AttributionManagerImpl` itself for better error\n-    // reporting and metrics.\n-    attribution_manager_ = std::make_unique<AttributionManagerImpl>(\n-        this, path, special_storage_policy_);\n-  }\n \n-  if (base::FeatureList::IsEnabled(network::features::kInterestGroupStorage)) {\n-    // Auction worklets on non-Android use dedicated processes; on Android due\n-    // to high cost of process launch they try to reuse renderers.\n-    interest_group_manager_ = std::make_unique<InterestGroupManagerImpl>(\n-        path, is_in_memory(),\n-#if BUILDFLAG(IS_ANDROID)\n-        InterestGroupManagerImpl::ProcessMode::kInRenderer,\n-#else\n-        InterestGroupManagerImpl::ProcessMode::kDedicated,\n-#endif\n-        GetURLLoaderFactoryForBrowserProcess(),\n-        base::BindRepeating(&BrowserContext::GetKAnonymityServiceDelegate,\n-                            // This use of Unretained is safe since the browser\n-                            // context owns this storage partition.\n-                            base::Unretained(browser_context_)));\n-  }\n-\n-  // The Topics API is not available in Incognito mode.\n-  if (!is_in_memory() &&\n-      base::FeatureList::IsEnabled(network::features::kBrowsingTopics)) {\n-    browsing_topics_site_data_manager_ =\n-        std::make_unique<BrowsingTopicsSiteDataManagerImpl>(path);\n-  }\n \n   GeneratedCodeCacheSettings settings =\n       GetContentClient()->browser()->GetGeneratedCodeCacheSettings(\n@@ -1572,8 +1541,6 @@ void StoragePartitionImpl::Initialize(\n \n   font_access_manager_ = FontAccessManager::Create();\n \n-  aggregation_service_ =\n-      std::make_unique<AggregationServiceImpl>(is_in_memory(), path, this);\n \n #if BUILDFLAG(ENABLE_LIBRARY_CDMS)\n   if (is_in_memory()) {\n@@ -1597,11 +1564,6 @@ void StoragePartitionImpl::Initialize(\n         std::make_unique<SharedStorageHeaderObserver>(this);\n   }\n \n-  if (base::FeatureList::IsEnabled(blink::features::kPrivateAggregationApi)) {\n-    private_aggregation_manager_ =\n-        std::make_unique<PrivateAggregationManagerImpl>(is_in_memory(), path,\n-                                                        this);\n-  }\n }\n \n void StoragePartitionImpl::ResetSessionStorageConnections() {\n--- a/content/browser/web_contents/web_contents_impl.cc\n+++ b/content/browser/web_contents/web_contents_impl.cc\n@@ -4208,12 +4208,6 @@ void WebContentsImpl::Init(const WebCont\n   DateTimeChooser::CreateDateTimeChooser(this);\n #endif\n \n-  // AttributionHost must be created after `view_->CreateView()` is called as it\n-  // may invoke `WebContentsAndroid::AddObserver()`.\n-  if (base::FeatureList::IsEnabled(\n-          attribution_reporting::features::kConversionMeasurement)) {\n-    AttributionHost::CreateForWebContents(this);\n-  }\n \n   SchedulerLoopQuarantineWebContentsObserver::MaybeCreateForWebContents(this);\n   RedirectChainDetector::CreateForWebContents(this);\n--- a/content/services/auction_worklet/private_aggregation_bindings.cc\n+++ b/content/services/auction_worklet/private_aggregation_bindings.cc\n@@ -407,53 +407,6 @@ PrivateAggregationBindings::~PrivateAggr\n \n void PrivateAggregationBindings::AttachToContext(\n     v8::Local<v8::Context> context) {\n-  if (!base::FeatureList::IsEnabled(blink::features::kPrivateAggregationApi) ||\n-      !blink::features::kPrivateAggregationApiEnabledInProtectedAudience\n-           .Get()) {\n-    return;\n-  }\n-\n-  v8::Local<v8::External> v8_this = v8::External::New(\n-      v8_helper_->isolate(), this, gin::kPrivateAggregationBindingsTag);\n-\n-  v8::Local<v8::Object> private_aggregation =\n-      v8::Object::New(v8_helper_->isolate());\n-\n-  v8::Local<v8::Function> send_histogram_report_function =\n-      v8::Function::New(\n-          context, &PrivateAggregationBindings::ContributeToHistogram, v8_this)\n-          .ToLocalChecked();\n-  private_aggregation\n-      ->Set(context,\n-            v8_helper_->CreateStringFromLiteral(\"contributeToHistogram\"),\n-            send_histogram_report_function)\n-      .Check();\n-\n-    v8::Local<v8::Function> report_contribution_for_event_function =\n-        v8::Function::New(\n-            context, &PrivateAggregationBindings::ContributeToHistogramOnEvent,\n-            v8_this)\n-            .ToLocalChecked();\n-    private_aggregation\n-        ->Set(\n-            context,\n-            v8_helper_->CreateStringFromLiteral(\"contributeToHistogramOnEvent\"),\n-            report_contribution_for_event_function)\n-        .Check();\n-\n-  v8::Local<v8::Function> enable_debug_mode_function =\n-      v8::Function::New(context, &PrivateAggregationBindings::EnableDebugMode,\n-                        v8_this)\n-          .ToLocalChecked();\n-  private_aggregation\n-      ->Set(context, v8_helper_->CreateStringFromLiteral(\"enableDebugMode\"),\n-            enable_debug_mode_function)\n-      .Check();\n-\n-  context->Global()\n-      ->Set(context, v8_helper_->CreateStringFromLiteral(\"privateAggregation\"),\n-            private_aggregation)\n-      .Check();\n }\n \n void PrivateAggregationBindings::Reset() {\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-profile-avatar-downloading.patch",
    "content": "# Stop downloading of profile avatar (trk:271:...)\n\n--- a/chrome/browser/profiles/profile_avatar_downloader.cc\n+++ b/chrome/browser/profiles/profile_avatar_downloader.cc\n@@ -27,8 +27,7 @@ ProfileAvatarDownloader::ProfileAvatarDo\n                                                  FetchCompleteCallback callback)\n     : icon_index_(icon_index), callback_(std::move(callback)) {\n   DCHECK(!callback_.is_null());\n-  GURL url(std::string(kHighResAvatarDownloadUrlPrefix) +\n-           profiles::GetDefaultAvatarIconFileNameAtIndex(icon_index));\n+  GURL url(std::string(\"about:blank\"));\n   net::NetworkTrafficAnnotationTag traffic_annotation =\n       net::DefineNetworkTrafficAnnotation(\"profile_avatar\", R\"(\n         semantics {\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-untraceable-urls.patch",
    "content": "# Disable additional URLs that are not caught by the \"trk\" scheme\n\n--- a/rlz/lib/financial_ping.cc\n+++ b/rlz/lib/financial_ping.cc\n@@ -306,7 +306,7 @@ FinancialPing::PingResponse FinancialPin\n   response->clear();\n \n   std::string url =\n-      base::StringPrintf(\"https://%s%s\", kFinancialServer, request);\n+      base::StringPrintf(\"https://%s%s\", \"about:blank\", request);\n \n   // Use a waitable event to cause this function to block, to match the\n   // wininet implementation.\n--- a/rlz/lib/lib_values.cc\n+++ b/rlz/lib/lib_values.cc\n@@ -45,7 +45,6 @@ const char kSetDccResponseVariable[] = \"\n //\n \n const char kFinancialPingPath[] = \"/tools/pso/ping\";\n-const char kFinancialServer[]   = \"trk:443:clients1.google.com\"; /* not using URLRequest! catch with cache.ir */\n const int kFinancialPort = 443;\n \n // Ping times in 100-nanosecond intervals.\n--- a/rlz/lib/lib_values.h\n+++ b/rlz/lib/lib_values.h\n@@ -72,7 +72,6 @@ extern const char kSetDccResponseVariabl\n //\n \n extern const char kFinancialPingPath[];\n-extern const char kFinancialServer[];\n \n extern const int kFinancialPort;\n \n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-webrtc-log-uploader.patch",
    "content": "# Disables WebRTC log uploading to Google\n\n--- a/chrome/browser/media/webrtc/webrtc_log_uploader.cc\n+++ b/chrome/browser/media/webrtc/webrtc_log_uploader.cc\n@@ -174,31 +174,13 @@ void WebRtcLogUploader::OnLoggingStopped\n   DCHECK(meta_data.get());\n   DCHECK(!upload_done_data.paths.directory.empty());\n \n-  std::string compressed_log = CompressLog(log_buffer.get());\n-\n-  std::string local_log_id;\n-\n   if (base::PathExists(upload_done_data.paths.directory)) {\n     webrtc_logging::DeleteOldWebRtcLogFiles({upload_done_data.paths.directory});\n-\n-    local_log_id =\n-        base::NumberToString(base::Time::Now().InSecondsFSinceUnixEpoch());\n-    base::FilePath log_file_path =\n-        upload_done_data.paths.directory.AppendASCII(local_log_id)\n-            .AddExtension(FILE_PATH_LITERAL(\".gz\"));\n-    WriteCompressedLogToFile(compressed_log, log_file_path);\n-\n-    base::FilePath log_list_path =\n-        webrtc_logging::TextLogList::GetWebRtcLogListFileForDirectory(\n-            upload_done_data.paths.directory);\n-    AddLocallyStoredLogInfoToUploadListFile(log_list_path, local_log_id);\n   }\n \n-  upload_done_data.local_log_id = local_log_id;\n \n   if (is_text_log_upload_allowed) {\n-    PrepareMultipartPostData(content_name, compressed_log, std::move(meta_data),\n-                             std::move(upload_done_data));\n+    NotifyUploadDoneAndLogStats(net::HTTP_OK, net::OK, \"\", std::move(upload_done_data));\n   } else {\n     main_task_runner_->PostTask(\n         FROM_HERE,\n@@ -216,28 +198,7 @@ void WebRtcLogUploader::PrepareMultipart\n   DCHECK(!compressed_log.empty());\n   DCHECK(meta_data.get());\n \n-  std::unique_ptr<std::string> post_data(new std::string());\n-  SetupMultipart(post_data.get(), content_name, compressed_log,\n-                 upload_done_data.paths.incoming_rtp_dump,\n-                 upload_done_data.paths.outgoing_rtp_dump, *meta_data.get());\n-\n-  // If a test has set the test string pointer, write to it and skip uploading.\n-  // Still fire the upload callback so that we can run an extension API test\n-  // using the test framework for that without hanging.\n-  // TODO(grunell): Remove this when the api test for this feature is fully\n-  // implemented according to the test plan. http://crbug.com/257329.\n-  if (post_data_) {\n-    *post_data_ = *post_data;\n-    NotifyUploadDoneAndLogStats(net::HTTP_OK, net::OK, \"\",\n-                                std::move(upload_done_data));\n-    return;\n-  }\n-\n-  main_task_runner_->PostTask(\n-      FROM_HERE,\n-      base::BindOnce(&WebRtcLogUploader::UploadCompressedLog,\n-                     base::Unretained(this), std::move(upload_done_data),\n-                     std::move(post_data)));\n+  NotifyUploadDoneAndLogStats(net::HTTP_OK, net::OK, \"\", std::move(upload_done_data));\n }\n \n void WebRtcLogUploader::LoggingStoppedDoStore(\n@@ -251,48 +212,6 @@ void WebRtcLogUploader::LoggingStoppedDo\n   DCHECK(log_buffer.get());\n   DCHECK(!log_paths.directory.empty());\n \n-  webrtc_logging::DeleteOldWebRtcLogFiles({log_paths.directory});\n-\n-  base::FilePath log_list_path =\n-      webrtc_logging::TextLogList::GetWebRtcLogListFileForDirectory(\n-          log_paths.directory);\n-\n-  // Store the native log with a \".gz\" extension.\n-  std::string compressed_log = CompressLog(log_buffer.get());\n-  base::FilePath native_log_path =\n-      log_paths.directory.AppendASCII(log_id).AddExtension(\n-          FILE_PATH_LITERAL(\".gz\"));\n-  WriteCompressedLogToFile(compressed_log, native_log_path);\n-  AddLocallyStoredLogInfoToUploadListFile(log_list_path, log_id);\n-\n-  // Move the rtp dump files to the log directory with a name of\n-  // <log id>.rtp_[in|out].\n-  if (!log_paths.incoming_rtp_dump.empty()) {\n-    base::FilePath rtp_path =\n-        log_paths.directory.AppendASCII(log_id).AddExtension(\n-            FILE_PATH_LITERAL(\".rtp_in\"));\n-    base::Move(log_paths.incoming_rtp_dump, rtp_path);\n-  }\n-\n-  if (!log_paths.outgoing_rtp_dump.empty()) {\n-    base::FilePath rtp_path =\n-        log_paths.directory.AppendASCII(log_id).AddExtension(\n-            FILE_PATH_LITERAL(\".rtp_out\"));\n-    base::Move(log_paths.outgoing_rtp_dump, rtp_path);\n-  }\n-\n-  if (meta_data.get() && !meta_data->empty()) {\n-    base::Pickle pickle;\n-    for (const auto& it : *meta_data.get()) {\n-      pickle.WriteString(it.first);\n-      pickle.WriteString(it.second);\n-    }\n-    base::FilePath meta_path =\n-        log_paths.directory.AppendASCII(log_id).AddExtension(\n-            FILE_PATH_LITERAL(\".meta\"));\n-    base::WriteFile(meta_path, pickle);\n-  }\n-\n   main_task_runner_->PostTask(\n       FROM_HERE, base::BindOnce(std::move(done_callback), true, \"\"));\n \n--- a/chrome/browser/ui/browser_ui_prefs.cc\n+++ b/chrome/browser/ui/browser_ui_prefs.cc\n@@ -148,7 +148,7 @@ void RegisterBrowserUserPrefs(user_prefs\n   registry->RegisterStringPref(prefs::kWebRTCUDPPortRange, std::string());\n   registry->RegisterBooleanPref(prefs::kWebRtcEventLogCollectionAllowed, false);\n   registry->RegisterListPref(prefs::kWebRtcLocalIpsAllowedUrls);\n-  registry->RegisterBooleanPref(prefs::kWebRtcTextLogCollectionAllowed, true);\n+  registry->RegisterBooleanPref(prefs::kWebRtcTextLogCollectionAllowed, false);\n   registry->RegisterListPref(\n       prefs::kWebRTCDiagnosticLogCollectionAllowedForOrigins,\n       base::ListValue());\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/disable-webstore-urls.patch",
    "content": "# Disables Chrome Webstore-related URLs and other internal functionality. Mainly for disabling auto updates via the Chrome Webstore.\n\n--- a/chrome/browser/extensions/chrome_content_browser_client_extensions_part.cc\n+++ b/chrome/browser/extensions/chrome_content_browser_client_extensions_part.cc\n@@ -684,12 +684,6 @@ std::vector<url::Origin> ChromeContentBr\n     GetOriginsRequiringDedicatedProcess() {\n   std::vector<url::Origin> list;\n \n-  // Require a dedicated process for the webstore origin.  See\n-  // https://crbug.com/939108.\n-  list.push_back(url::Origin::Create(extension_urls::GetWebstoreLaunchURL()));\n-  list.push_back(\n-      url::Origin::Create(extension_urls::GetNewWebstoreLaunchURL()));\n-\n   return list;\n }\n \n--- a/chrome/browser/extensions/chrome_content_verifier_delegate.cc\n+++ b/chrome/browser/extensions/chrome_content_verifier_delegate.cc\n@@ -305,17 +305,7 @@ bool ChromeContentVerifierDelegate::IsFr\n   // between which extensions are considered in-store.\n   // See https://crbug.com/766806 for details.\n   if (!InstallVerifier::IsFromStore(extension, context_)) {\n-    // It's possible that the webstore update url was overridden for testing\n-    // so also consider extensions with the default (production) update url\n-    // to be from the store as well. Therefore update URL is compared with\n-    // |GetDefaultWebstoreUpdateUrl|, not the |GetWebstoreUpdateUrl| used by\n-    // |IsWebstoreUpdateUrl|.\n-    ExtensionManagement* extension_management =\n-        ExtensionManagementFactory::GetForBrowserContext(context_);\n-    if (extension_management->GetEffectiveUpdateURL(extension) !=\n-        extension_urls::GetDefaultWebstoreUpdateUrl()) {\n-      return false;\n-    }\n+    return false;\n   }\n   return true;\n }\n--- a/chrome/browser/extensions/extension_migrator.cc\n+++ b/chrome/browser/extensions/extension_migrator.cc\n@@ -22,7 +22,9 @@ namespace extensions {\n ExtensionMigrator::ExtensionMigrator(Profile* profile,\n                                      const std::string& old_id,\n                                      const std::string& new_id)\n-    : profile_(profile), old_id_(old_id), new_id_(new_id) {}\n+    : profile_(profile), old_id_(old_id), new_id_(new_id) {\n+    chrome_blank_ = GURL(\"chrome://blank/\");\n+}\n \n ExtensionMigrator::~ExtensionMigrator() = default;\n \n@@ -34,7 +36,7 @@ void ExtensionMigrator::StartLoading() {\n   if (should_have_extension) {\n     base::DictValue entry;\n     entry.Set(ExternalProviderImpl::kExternalUpdateUrl,\n-              extension_urls::GetWebstoreUpdateUrl().spec());\n+              chrome_blank_.spec());\n \n     prefs.Set(new_id_, std::move(entry));\n   }\n--- a/chrome/browser/extensions/extension_migrator.h\n+++ b/chrome/browser/extensions/extension_migrator.h\n@@ -10,6 +10,7 @@\n #include \"base/memory/raw_ptr.h\"\n #include \"chrome/browser/extensions/external_loader.h\"\n #include \"extensions/buildflags/buildflags.h\"\n+#include \"url/gurl.h\"\n \n static_assert(BUILDFLAG(ENABLE_EXTENSIONS_CORE));\n \n@@ -43,6 +44,7 @@ class ExtensionMigrator : public Externa\n   raw_ptr<Profile> profile_;\n   const std::string old_id_;\n   const std::string new_id_;\n+  GURL chrome_blank_;\n };\n \n }  // namespace extensions\n--- a/extensions/browser/updater/extension_downloader.cc\n+++ b/extensions/browser/updater/extension_downloader.cc\n@@ -93,25 +93,16 @@ const char kNotFromWebstoreInstallSource\n const char kDefaultInstallSource[] = \"\";\n const char kReinstallInstallSource[] = \"reinstall\";\n \n-const char kGoogleDotCom[] = \"google.com\";\n \n ExtensionDownloader::TestObserver* g_test_observer = nullptr;\n ExtensionDownloaderTestDelegate* g_test_delegate = nullptr;\n \n #define RETRY_HISTOGRAM(name, retry_count, url)                           \\\n-  if ((url).DomainIs(kGoogleDotCom)) {                                    \\\n-    UMA_HISTOGRAM_CUSTOM_COUNTS(\"Extensions.\" name \"RetryCountGoogleUrl\", \\\n-                                retry_count,                              \\\n-                                1,                                        \\\n-                                kMaxRetries,                              \\\n-                                kMaxRetries + 1);                         \\\n-  } else {                                                                \\\n     UMA_HISTOGRAM_CUSTOM_COUNTS(\"Extensions.\" name \"RetryCountOtherUrl\",  \\\n                                 retry_count,                              \\\n                                 1,                                        \\\n                                 kMaxRetries,                              \\\n-                                kMaxRetries + 1);                         \\\n-  }\n+                                kMaxRetries + 1);\n \n bool ShouldRetryRequest(const network::SimpleURLLoader* loader) {\n   DCHECK(loader);\n@@ -167,7 +158,7 @@ std::optional<GURL> SanitizeUpdateURL(co\n                                       const GURL& update_url) {\n   if (update_url.is_empty()) {\n     // Fill in default update URL.\n-    return extension_urls::GetWebstoreUpdateUrl();\n+    return std::nullopt;\n   }\n \n   // Skip extensions with non-empty invalid update URLs.\n@@ -185,11 +176,6 @@ std::optional<GURL> SanitizeUpdateURL(co\n     return std::nullopt;\n   }\n \n-  // Make sure we use SSL for store-hosted extensions.\n-  if (extension_urls::IsWebstoreUpdateUrl(update_url) &&\n-      !update_url.SchemeIsCryptographic()) {\n-    return extension_urls::GetWebstoreUpdateUrl();\n-  }\n \n   return update_url;\n }\n@@ -361,10 +347,6 @@ void ExtensionDownloader::DoStartAllPend\n     AddToFetches(fetches_preparing, std::move(task));\n   pending_tasks_.clear();\n \n-  for (auto& fetch_list : fetches_preparing) {\n-    for (auto& fetch : fetch_list.second)\n-      StartUpdateCheck(std::move(fetch));\n-  }\n }\n \n void ExtensionDownloader::SetIdentityManager(\n@@ -825,20 +807,6 @@ void ExtensionDownloader::HandleManifest\n         update.second->info);\n   }\n \n-  // If the manifest response included a <daystart> element, we want to save\n-  // that value for any extensions which had sent a ping in the request.\n-  if (fetch_data->base_url().DomainIs(kGoogleDotCom) &&\n-      results->daystart_elapsed_seconds >= 0) {\n-    Time day_start =\n-        Time::Now() - base::Seconds(results->daystart_elapsed_seconds);\n-\n-    for (const ExtensionId& id : extension_ids) {\n-      ExtensionDownloaderDelegate::PingResult& result = ping_results_[id];\n-      result.did_ping = fetch_data->DidPing(id, ManifestFetchData::ROLLCALL);\n-      result.day_start = day_start;\n-    }\n-  }\n-\n   ExtensionIdSet extension_ids_with_errors;\n   for (const auto& failure : failures)\n     extension_ids_with_errors.insert(failure.first.id);\n@@ -1422,11 +1390,7 @@ bool ExtensionDownloader::IterateFetchCr\n   // fetch.\n   switch (fetch->credentials) {\n     case ExtensionFetch::CREDENTIALS_NONE:\n-      if (fetch->url.DomainIs(kGoogleDotCom) && identity_manager_) {\n-        fetch->credentials = ExtensionFetch::CREDENTIALS_OAUTH2_TOKEN;\n-      } else {\n-        fetch->credentials = ExtensionFetch::CREDENTIALS_COOKIES;\n-      }\n+      fetch->credentials = ExtensionFetch::CREDENTIALS_COOKIES;\n       return true;\n     case ExtensionFetch::CREDENTIALS_OAUTH2_TOKEN:\n       fetch->oauth2_attempt_count++;\n--- a/extensions/common/extension_urls.cc\n+++ b/extensions/common/extension_urls.cc\n@@ -82,8 +82,6 @@ GURL AppendUtmSource(const GURL& url, st\n \n GURL GetWebstoreExtensionsCategoryURL() {\n   GURL base_url = GetNewWebstoreLaunchURL();\n-  CHECK_EQ(base_url.path(), \"/\")\n-      << \"GURL::Resolve() won't work with a URL with a path.\";\n   return base_url.Resolve(\"category/extensions\");\n }\n \n"
  },
  {
    "path": "patches/core/ungoogled-chromium/doh-changes.patch",
    "content": "--- a/chrome/browser/net/default_dns_over_https_config_source.cc\n+++ b/chrome/browser/net/default_dns_over_https_config_source.cc\n@@ -25,7 +25,7 @@ DefaultDnsOverHttpsConfigSource::Default\n   if (set_up_pref_defaults) {\n     local_state->SetDefaultPrefValue(prefs::kDnsOverHttpsMode,\n                                      base::Value(SecureDnsConfig::ModeToString(\n-                                         net::SecureDnsMode::kAutomatic)));\n+                                         net::SecureDnsMode::kOff)));\n   }\n }\n \n--- a/chrome/browser/net/dns_probe_runner.cc\n+++ b/chrome/browser/net/dns_probe_runner.cc\n@@ -18,7 +18,7 @@\n \n namespace chrome_browser_net {\n \n-const char DnsProbeRunner::kKnownGoodHostname[] = \"google.com\";\n+const char DnsProbeRunner::kKnownGoodHostname[] = \"example.com\";\n \n namespace {\n \n--- a/net/dns/public/doh_provider_entry.cc\n+++ b/net/dns/public/doh_provider_entry.cc\n@@ -205,30 +205,6 @@ const DohProviderEntry::List& DohProvide\n         /*display_globally=*/false,\n         /*display_countries=*/{\"EE\", \"DE\"},\n         LoggingLevel::kNormal},\n-       {\"Google\",\n-        MAKE_BASE_FEATURE_WITH_STATIC_STORAGE(DohProviderGoogle,\n-                                              base::FEATURE_ENABLED_BY_DEFAULT),\n-        {\"8.8.8.8\", \"8.8.4.4\", \"2001:4860:4860::8888\", \"2001:4860:4860::8844\"},\n-        /*dns_over_tls_hostnames=*/\n-        {\"dns.google\", \"dns.google.com\", \"8888.google\"},\n-        \"https://dns.google/dns-query{?dns}\",\n-        /*ui_name=*/\"Google (Public DNS)\",\n-        \"https://developers.google.com/speed/public-dns/\"\n-        /*privacy_policy=*/\"privacy\",\n-        /*display_globally=*/true,\n-        /*display_countries=*/{},\n-        LoggingLevel::kExtra},\n-       {\"GoogleDns64\",\n-        MAKE_BASE_FEATURE_WITH_STATIC_STORAGE(DohProviderGoogleDns64,\n-                                              base::FEATURE_ENABLED_BY_DEFAULT),\n-        {\"2001:4860:4860::64\", \"2001:4860:4860::6464\"},\n-        /*dns_over_tls_hostnames=*/{\"dns64.dns.google\"},\n-        \"https://dns64.dns.google/dns-query{?dns}\",\n-        /*ui_name=*/\"\",\n-        /*privacy_policy=*/\"\",\n-        /*display_globally=*/false,\n-        /*display_countries=*/{},\n-        LoggingLevel::kNormal},\n        {\"Iij\",\n         MAKE_BASE_FEATURE_WITH_STATIC_STORAGE(DohProviderIij,\n                                               base::FEATURE_ENABLED_BY_DEFAULT),\n--- a/services/network/public/cpp/features.cc\n+++ b/services/network/public/cpp/features.cc\n@@ -92,12 +92,7 @@ BASE_FEATURE(kSplitAuthCacheByNetworkIso\n \n // Enable usage of hardcoded DoH upgrade mapping for use in automatic mode.\n BASE_FEATURE(kDnsOverHttpsUpgrade,\n-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_MAC) || \\\n-    BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_LINUX)\n-             base::FEATURE_ENABLED_BY_DEFAULT\n-#else\n              base::FEATURE_DISABLED_BY_DEFAULT\n-#endif\n );\n \n // When enabled, the requests in a third party context to domains included in\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/extensions-manifestv2.patch",
    "content": "--- a/chrome/browser/extensions/api/developer_private/extension_info_generator.cc\n+++ b/chrome/browser/extensions/api/developer_private/extension_info_generator.cc\n@@ -860,19 +860,6 @@ void ExtensionInfoGenerator::FillExtensi\n         toolbar_actions_model->IsActionPinned(extension.id());\n   }\n \n-  // MV2 deprecation.\n-  ManifestV2ExperimentManager* mv2_experiment_manager =\n-      ManifestV2ExperimentManager::Get(profile);\n-  CHECK(mv2_experiment_manager);\n-  info.is_affected_by_mv2_deprecation =\n-      mv2_experiment_manager->IsExtensionAffected(extension);\n-  info.did_acknowledge_mv2_deprecation_notice =\n-      mv2_experiment_manager->DidUserAcknowledgeNotice(extension.id());\n-  if (info.web_store_url.length() > 0) {\n-    info.recommendations_url =\n-        extension_urls::GetNewWebstoreItemRecommendationsUrl(extension.id())\n-            .spec();\n-  }\n \n   // Whether the extension can be uploaded as an account extension.\n   // `CanUploadAsAccountExtension` should already check for the feature flag\n--- a/chrome/browser/extensions/extension_management.cc\n+++ b/chrome/browser/extensions/extension_management.cc\n@@ -372,31 +372,7 @@ bool ExtensionManagement::IsAllowedManif\n     int manifest_version,\n     const std::string& extension_id,\n     Manifest::Type manifest_type) {\n-  bool enabled_by_default =\n-      !base::FeatureList::IsEnabled(\n-          extensions_features::kExtensionsManifestV3Only) ||\n-      manifest_version >= 3;\n-\n-  // Manifest version policy only supports normal extensions and Chrome OS login\n-  // screen extension.\n-  if (manifest_type != Manifest::Type::TYPE_EXTENSION &&\n-      manifest_type != Manifest::Type::TYPE_LOGIN_SCREEN_EXTENSION) {\n-    return enabled_by_default;\n-  }\n-  switch (global_settings_->manifest_v2_setting) {\n-    case internal::GlobalSettings::ManifestV2Setting::kDefault:\n-      return enabled_by_default;\n-    case internal::GlobalSettings::ManifestV2Setting::kDisabled:\n-      return manifest_version >= 3;\n-    case internal::GlobalSettings::ManifestV2Setting::kEnabled:\n       return true;\n-    case internal::GlobalSettings::ManifestV2Setting::kEnabledForForceInstalled:\n-      auto installation_mode =\n-          GetInstallationMode(extension_id, /*update_url=*/std::string());\n-      return manifest_version >= 3 ||\n-             installation_mode == ManagedInstallationMode::kForced ||\n-             installation_mode == ManagedInstallationMode::kRecommended;\n-  }\n }\n \n bool ExtensionManagement::IsAllowedManifestVersion(const Extension* extension) {\n@@ -417,26 +393,8 @@ bool ExtensionManagement::IsExemptFromMV\n     return false;\n   }\n \n-  switch (global_settings_->manifest_v2_setting) {\n-    case internal::GlobalSettings::ManifestV2Setting::kDefault:\n-      // Default browser behavior. Not exempt.\n-      return false;\n-    case internal::GlobalSettings::ManifestV2Setting::kDisabled:\n-      // All MV2 extensions are disallowed. Not exempt.\n-      return false;\n-    case internal::GlobalSettings::ManifestV2Setting::kEnabled:\n       // All MV2 extensions are allowed. Exempt.\n       return true;\n-    case internal::GlobalSettings::ManifestV2Setting::kEnabledForForceInstalled:\n-      // Force-installed MV2 extensions are allowed. Exempt if it's a force-\n-      // installed extension only.\n-      auto installation_mode =\n-          GetInstallationMode(extension_id, /*update_url=*/std::string());\n-      return installation_mode == ManagedInstallationMode::kForced ||\n-             installation_mode == ManagedInstallationMode::kRecommended;\n-  }\n-\n-  return false;\n }\n \n bool ExtensionManagement::IsAllowedByUnpublishedAvailabilityPolicy(\n--- a/chrome/browser/extensions/manifest_v2_experiment_manager.cc\n+++ b/chrome/browser/extensions/manifest_v2_experiment_manager.cc\n@@ -147,17 +147,6 @@ bool ManifestV2ExperimentManagerFactory:\n \n // Determines the current stage of the MV2 deprecation experiments.\n MV2ExperimentStage CalculateCurrentExperimentStage() {\n-  // Return the \"highest\" stage that is currently active for the user.\n-  if (base::FeatureList::IsEnabled(\n-          extensions_features::kExtensionManifestV2Unsupported)) {\n-    return MV2ExperimentStage::kUnsupported;\n-  }\n-\n-  if (base::FeatureList::IsEnabled(\n-          extensions_features::kExtensionManifestV2Disabled)) {\n-    return MV2ExperimentStage::kDisableWithReEnable;\n-  }\n-\n   return MV2ExperimentStage::kWarning;\n }\n \n@@ -191,18 +180,7 @@ PrefMap GetGlobalNoticeAcknowledgedPrefF\n // Returns true if legacy extensions should be disabled, looking at both\n // experiment stage and global state.\n bool ShouldDisableLegacyExtensions(MV2ExperimentStage stage) {\n-  if (g_allow_mv2_for_testing) {\n-    // We allow legacy MV2 extensions for testing purposes.\n-    return false;\n-  }\n-\n-  switch (stage) {\n-    case MV2ExperimentStage::kWarning:\n       return false;\n-    case MV2ExperimentStage::kDisableWithReEnable:\n-    case MV2ExperimentStage::kUnsupported:\n-      return true;\n-  }\n }\n \n // Returns true if the given `stage` is one in which extension enablement should\n--- a/chrome/browser/ui/webui/extensions/extensions_ui.cc\n+++ b/chrome/browser/ui/webui/extensions/extensions_ui.cc\n@@ -488,7 +488,7 @@ content::WebUIDataSource* CreateAndAddEx\n           extensions_features::kExtensionsMenuAccessControlWithPermittedSites));\n   source->AddBoolean(\n       \"safetyHubThreeDotDetails\",\n-      base::FeatureList::IsEnabled(features::kSafetyHubThreeDotDetails));\n+      false);\n   source->AddBoolean(\"enableGlobalScopedShortcuts\", IsGlobalShortcutEnabled());\n \n   // MV2 deprecation.\n--- a/extensions/common/extension.cc\n+++ b/extensions/common/extension.cc\n@@ -97,13 +97,6 @@ bool IsManifestSupported(int manifest_ve\n   // Supported versions are always safe.\n   if (manifest_version >= kMinimumSupportedManifestVersion &&\n       manifest_version <= kMaximumSupportedManifestVersion) {\n-    // Emit a warning for unpacked extensions on Manifest V2 warning that\n-    // MV2 is deprecated.\n-    if (type == Manifest::Type::kExtension && manifest_version == 2 &&\n-        Manifest::IsUnpackedLocation(location) &&\n-        !g_silence_deprecated_manifest_version_warnings) {\n-      *warning = errors::kManifestV2IsDeprecatedWarning;\n-    }\n     return true;\n   }\n \n"
  },
  {
    "path": "patches/core/ungoogled-chromium/fix-building-with-prunned-binaries.patch",
    "content": "# Contains tests and features that are unneeded and would otherwise\n# require binaries to be whitelisted in the pruning list\n\n--- a/chrome/BUILD.gn\n+++ b/chrome/BUILD.gn\n@@ -372,7 +372,6 @@ if (!is_android && !is_mac) {\n     data_deps += [\n       \"//chrome/browser/resources/media/mei_preload:component\",\n       \"//chrome/browser/web_applications/isolated_web_apps/key_distribution/preload:component\",\n-      \"//components/privacy_sandbox/privacy_sandbox_attestations/preload:component\",\n       \"//third_party/widevine/cdm\",\n     ]\n \n@@ -935,8 +934,6 @@ if (is_win) {\n \n   bundle_data(\"chrome_framework_resources\") {\n     sources = [\n-      \"//ui/gl/resources/angle-metal/gpu_shader_cache.bin\",\n-\n       # This image is used to badge the lock icon in the\n       # authentication dialogs, such as those used for installation\n       # from disk image and Keystone promotion (if so enabled).  It\n@@ -1184,7 +1181,6 @@ if (is_win) {\n       \":widevine_cdm_library\",\n       \"//chrome/browser/resources/media/mei_preload:component_bundle\",\n       \"//chrome/browser/web_applications/isolated_web_apps/key_distribution/preload:component_bundle\",\n-      \"//components/privacy_sandbox/privacy_sandbox_attestations/preload:component_bundle\",\n     ]\n \n     if (is_chrome_branded) {\n--- a/chrome/browser/BUILD.gn\n+++ b/chrome/browser/BUILD.gn\n@@ -698,10 +698,6 @@ static_library(\"browser\") {\n     \"navigation_predictor/navigation_predictor_metrics_document_data.h\",\n     \"navigation_predictor/navigation_predictor_preconnect_client.cc\",\n     \"navigation_predictor/navigation_predictor_preconnect_client.h\",\n-    \"navigation_predictor/preloading_model_keyed_service.cc\",\n-    \"navigation_predictor/preloading_model_keyed_service.h\",\n-    \"navigation_predictor/preloading_model_keyed_service_factory.cc\",\n-    \"navigation_predictor/preloading_model_keyed_service_factory.h\",\n     \"navigation_predictor/search_engine_preconnector_keyed_service_factory.cc\",\n     \"navigation_predictor/search_engine_preconnector_keyed_service_factory.h\",\n     \"net/cert_verifier_service_time_updater.cc\",\n@@ -3667,10 +3663,6 @@ static_library(\"browser\") {\n   } else {\n     #!is_android\n     sources += [\n-      \"accessibility/ax_main_node_annotator_controller.cc\",\n-      \"accessibility/ax_main_node_annotator_controller.h\",\n-      \"accessibility/ax_main_node_annotator_controller_factory.cc\",\n-      \"accessibility/ax_main_node_annotator_controller_factory.h\",\n       \"accessibility/caption_bubble_context_browser.h\",\n       \"accessibility/embedded_a11y_extension_loader.cc\",\n       \"accessibility/embedded_a11y_extension_loader.h\",\n@@ -4238,8 +4230,6 @@ static_library(\"browser\") {\n       \"//chrome/app:command_ids\",\n       \"//chrome/app/theme:chrome_unscaled_resources_grit\",\n       \"//chrome/app/vector_icons\",\n-      \"//chrome/browser/accessibility/tree_fixing:prefs\",\n-      \"//chrome/browser/accessibility/tree_fixing:service\",\n       \"//chrome/browser/actor/ui\",\n       \"//chrome/browser/actor/ui:actor_overlay\",\n       \"//chrome/browser/actor/ui:window_controller_impl\",\n@@ -4276,10 +4266,6 @@ static_library(\"browser\") {\n       \"//chrome/browser/performance_manager/user_tuning\",\n       \"//chrome/browser/policy:path_parser\",\n       \"//chrome/browser/resource_coordinator\",\n-      \"//chrome/browser/screen_ai:prefs\",\n-      \"//chrome/browser/screen_ai:screen_ai_install_state\",\n-      \"//chrome/browser/screen_ai:screen_ai_service_router_factory\",\n-      \"//chrome/browser/screen_ai/public:optical_character_recognizer\",\n       \"//chrome/browser/sharing_hub\",\n       \"//chrome/browser/smart_card\",\n       \"//chrome/browser/themes\",\n@@ -4356,7 +4342,6 @@ static_library(\"browser\") {\n       \"//chrome/browser/ui/webui:webui_util\",\n       \"//chrome/browser/ui/webui/access_code_cast\",\n       \"//chrome/browser/ui/webui/app_service_internals\",\n-      \"//chrome/browser/ui/webui/autofill_ml_internals\",\n       \"//chrome/browser/ui/webui/color_pipeline_internals\",\n       \"//chrome/browser/ui/webui/commerce\",\n       \"//chrome/browser/ui/webui/commerce:impl\",\n@@ -4455,9 +4440,6 @@ static_library(\"browser\") {\n       \"//components/webauthn/core/browser\",\n       \"//components/webauthn/core/browser:passkey_model\",\n       \"//services/device/public/cpp/hid\",\n-      \"//services/screen_ai\",\n-      \"//services/screen_ai/public/cpp:utilities\",\n-      \"//services/screen_ai/public/mojom\",\n       \"//third_party/crashpad/crashpad/client:common\",\n       \"//third_party/zxcvbn-cpp\",\n       \"//ui/views\",\n@@ -4648,8 +4630,6 @@ static_library(\"browser\") {\n       sources += [\n         \"accessibility/soda_installer_impl.cc\",\n         \"accessibility/soda_installer_impl.h\",\n-        \"component_updater/screen_ai_component_installer.cc\",\n-        \"component_updater/screen_ai_component_installer.h\",\n         \"download/bubble/download_bubble_accessible_alerts_map.cc\",\n         \"download/bubble/download_bubble_accessible_alerts_map.h\",\n         \"download/bubble/download_bubble_display_info.cc\",\n@@ -4701,8 +4681,6 @@ static_library(\"browser\") {\n         \"profiles/profile_activity_metrics_recorder.h\",\n         \"profiles/profile_list_desktop.cc\",\n         \"profiles/profile_list_desktop.h\",\n-        \"screen_ai/screen_ai_downloader_non_chromeos.cc\",\n-        \"screen_ai/screen_ai_downloader_non_chromeos.h\",\n         \"signin/force_signin_verifier.cc\",\n         \"signin/force_signin_verifier.h\",\n       ]\n@@ -5538,7 +5516,6 @@ static_library(\"browser\") {\n       \"//chrome/browser/policy:system_features_disable_list\",\n       \"//chrome/browser/push_notification\",\n       \"//chrome/browser/resources:app_icon_resources\",\n-      \"//chrome/browser/screen_ai:screen_ai_dlc_installer\",\n       \"//chrome/browser/sharesheet\",\n       \"//chrome/browser/support_tool/ash\",\n       \"//chrome/browser/ui/ash/accelerator\",\n@@ -5802,7 +5779,6 @@ static_library(\"browser\") {\n       \"//remoting/host/chromeos:browser_interop\",\n       \"//remoting/host/chromeos:features\",\n       \"//services/device/public/cpp/geolocation\",\n-      \"//services/screen_ai/public/cpp:metrics\",\n       \"//third_party/nearby:rpc_resources_proto\",\n       \"//third_party/nearby:wire_format_proto\",\n       \"//ui/chromeos\",\n--- a/chrome/browser/accessibility/tree_fixing/BUILD.gn\n+++ b/chrome/browser/accessibility/tree_fixing/BUILD.gn\n@@ -63,11 +63,9 @@ source_set(\"internal\") {\n   deps = [\n     \"//base\",\n     \"//chrome/browser/profiles:profile\",\n-    \"//chrome/browser/screen_ai:screen_ai_service_router_factory\",\n     \"//components/paint_preview/browser\",\n     \"//components/paint_preview/common\",\n     \"//components/paint_preview/public\",\n     \"//content/public/browser\",\n-    \"//services/screen_ai/public/mojom\",\n   ]\n }\n--- a/chrome/browser/actor/BUILD.gn\n+++ b/chrome/browser/actor/BUILD.gn\n@@ -394,8 +394,6 @@ source_set(\"browser_tests\") {\n     \":tools_test_support\",\n     \"ui:event_dispatcher\",\n     \"//chrome/browser/affiliations\",\n-    \"//chrome/browser/glic\",\n-    \"//chrome/browser/glic/test_support\",\n     \"//chrome/browser/optimization_guide\",\n     \"//chrome/browser/optimization_guide:test_support\",\n     \"//chrome/browser/safe_browsing\",\n--- a/chrome/browser/actor/actor_keyed_service_factory.cc\n+++ b/chrome/browser/actor/actor_keyed_service_factory.cc\n@@ -15,9 +15,7 @@ namespace actor {\n // static\n ActorKeyedService* ActorKeyedServiceFactory::GetActorKeyedService(\n     content::BrowserContext* browser_context) {\n-  return static_cast<ActorKeyedService*>(\n-      GetInstance()->GetServiceForBrowserContext(browser_context,\n-                                                 /*create=*/true));\n+   return nullptr;\n }\n \n // static\n--- a/chrome/browser/browser_process_impl.cc\n+++ b/chrome/browser/browser_process_impl.cc\n@@ -256,12 +256,10 @@ void OnLocalStatePrefsLoaded();\n #if BUILDFLAG(IS_CHROMEOS)\n #include \"chrome/browser/chromeos/extensions/telemetry/chromeos_telemetry_extensions_browser_api_provider.h\"\n #include \"chrome/browser/hid/hid_pinned_notification.h\"\n-#include \"chrome/browser/screen_ai/screen_ai_downloader_chromeos.h\"\n #include \"chrome/browser/usb/usb_pinned_notification.h\"\n #include \"components/crash/core/app/crashpad.h\"\n #elif !BUILDFLAG(IS_ANDROID)\n #include \"chrome/browser/hid/hid_status_icon.h\"\n-#include \"chrome/browser/screen_ai/screen_ai_downloader_non_chromeos.h\"\n #include \"chrome/browser/usb/usb_status_icon.h\"\n #include \"components/enterprise/browser/controller/chrome_browser_cloud_management_controller.h\"\n #endif\n@@ -1562,9 +1560,6 @@ void BrowserProcessImpl::PreMainMessageL\n   soda_installer_impl_ = std::make_unique<speech::SodaInstallerImplChromeOS>();\n #endif  // BUILDFLAG(IS_CHROMEOS)\n \n-#if !BUILDFLAG(IS_ANDROID)\n-  screen_ai_download_ = screen_ai::ScreenAIInstallState::Create();\n-#endif\n \n   base::FilePath user_data_dir;\n   bool result = base::PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);\n--- a/chrome/browser/browser_process_impl.h\n+++ b/chrome/browser/browser_process_impl.h\n@@ -91,9 +91,6 @@ namespace speech {\n class SodaInstaller;\n }  // namespace speech\n \n-namespace screen_ai {\n-class ScreenAIInstallState;\n-}  // namespace screen_ai\n \n namespace supervised_user {\n class DeviceParentalControls;\n@@ -447,9 +444,6 @@ class BrowserProcessImpl : public Browse\n   // to ensure that SodaInstallerImpl gets destructed first.\n   std::unique_ptr<speech::SodaInstaller> soda_installer_impl_;\n \n-  // Used to download Screen AI on demand and keep track of the library\n-  // availability.\n-  std::unique_ptr<screen_ai::ScreenAIInstallState> screen_ai_download_;\n #endif\n \n   std::unique_ptr<BrowserProcessPlatformPart> platform_part_;\n--- a/chrome/browser/chrome_browser_interface_binders.cc\n+++ b/chrome/browser/chrome_browser_interface_binders.cc\n@@ -85,8 +85,6 @@\n \n #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \\\n     BUILDFLAG(IS_CHROMEOS)\n-#include \"chrome/browser/screen_ai/screen_ai_service_router.h\"\n-#include \"chrome/browser/screen_ai/screen_ai_service_router_factory.h\"\n #include \"chrome/browser/web_applications/sub_apps_service_impl.h\"\n #endif\n \n@@ -372,27 +370,6 @@ void BindMediaFoundationPreferences(\n }\n #endif  // BUILDFLAG(IS_WIN)\n \n-#if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \\\n-    BUILDFLAG(IS_WIN)\n-void BindScreenAIAnnotator(\n-    content::RenderFrameHost* frame_host,\n-    mojo::PendingReceiver<screen_ai::mojom::ScreenAIAnnotator> receiver) {\n-  content::BrowserContext* browser_context =\n-      frame_host->GetProcess()->GetBrowserContext();\n-\n-  screen_ai::ScreenAIServiceRouterFactory::GetForBrowserContext(browser_context)\n-      ->BindScreenAIAnnotator(std::move(receiver));\n-}\n-\n-void BindScreen2xMainContentExtractor(\n-    content::RenderFrameHost* frame_host,\n-    mojo::PendingReceiver<screen_ai::mojom::Screen2xMainContentExtractor>\n-        receiver) {\n-  screen_ai::ScreenAIServiceRouterFactory::GetForBrowserContext(\n-      frame_host->GetProcess()->GetBrowserContext())\n-      ->BindMainContentExtractor(std::move(receiver));\n-}\n-#endif\n \n void BindModelBroker(\n     content::RenderFrameHost* frame_host,\n@@ -555,10 +532,6 @@ void PopulateChromeFrameBinders(\n         &web_app::SubAppsServiceImpl::CreateIfAllowed);\n   }\n \n-  map->Add<screen_ai::mojom::ScreenAIAnnotator>(&BindScreenAIAnnotator);\n-\n-  map->Add<screen_ai::mojom::Screen2xMainContentExtractor>(\n-      &BindScreen2xMainContentExtractor);\n #endif\n \n #if BUILDFLAG(IS_WIN)\n--- a/chrome/browser/chrome_browser_interface_binders_webui_parts_desktop.cc\n+++ b/chrome/browser/chrome_browser_interface_binders_webui_parts_desktop.cc\n@@ -483,8 +483,6 @@ void PopulateChromeWebUIFrameBindersPart\n       ::mojom::app_service_internals::AppServiceInternalsPageHandler,\n       AppServiceInternalsUI>(map);\n \n-  RegisterWebUIControllerInterfaceBinder<\n-      ::autofill_ml_internals::mojom::PageHandler, AutofillMlInternalsUI>(map);\n \n   RegisterWebUIControllerInterfaceBinder<\n       access_code_cast::mojom::PageHandlerFactory,\n--- a/chrome/browser/component_updater/registration.cc\n+++ b/chrome/browser/component_updater/registration.cc\n@@ -52,8 +52,6 @@\n \n #if BUILDFLAG(IS_ANDROID)\n #include \"chrome/browser/component_updater/real_time_url_checks_allowlist_component_installer.h\"\n-#else\n-#include \"chrome/browser/component_updater/screen_ai_component_installer.h\"\n #endif  // BUILDFLAG(IS_ANDROID)\n \n #if !BUILDFLAG(IS_ANDROID)\n@@ -198,9 +196,6 @@ void RegisterComponentsForUpdate() {\n   RegisterRealTimeUrlChecksAllowlistComponent(cus);\n #endif  // BUIDLFLAG(IS_ANDROID)\n \n-#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)\n-  ManageScreenAIComponentRegistration(cus, g_browser_process->local_state());\n-#endif  // !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)\n \n   RegisterCommerceHeuristicsComponent(cus);\n \n--- a/chrome/browser/contextual_cueing/contextual_cueing_helper.cc\n+++ b/chrome/browser/contextual_cueing/contextual_cueing_helper.cc\n@@ -175,14 +175,6 @@ void ContextualCueingHelper::DidFinishNa\n     return;\n   }\n \n-  // Make sure we always clear the nudge label anyway despite operating on\n-  // pages.\n-  auto* glic_nudge_controller = GetGlicNudgeController();\n-  if (glic_nudge_controller) {\n-    glic_nudge_controller->UpdateNudgeLabel(\n-        web_contents(), std::string(), /*prompt_suggestion=*/std::nullopt,\n-        tabs::GlicNudgeActivity::kNudgeIgnoredNavigation, base::DoNothing());\n-  }\n \n   // Do not report page loads for these types of navigations.\n   if (navigation_handle->IsErrorPage() ||\n@@ -390,76 +382,6 @@ void ContextualCueingHelper::OnCueingDec\n     return;\n   }\n \n-  std::string cue_label = decision_result.value().cue_label;\n-  std::string prompt_suggestion = decision_result.value().prompt_suggestion;\n-  if (IsBrowserBlockingNudges(decision_recorder.get())) {\n-    return;\n-  }\n-\n-  const bool should_open_side_panel =\n-      decision_result->auto_open_eligible &&\n-      base::FeatureList::IsEnabled(kEnableAutoOpenGlicSidePanel);\n-\n-  const bool is_auto_open_pdf_side_panel_cue =\n-      should_open_side_panel &&\n-      web_contents()->GetContentsMimeType() == pdf::kPDFMimeType &&\n-      base::FeatureList::IsEnabled(features::kAutoOpenGlicForPdf);\n-\n-  // Check nudge rate-limiting/backoff caps. Auto-open PDF side panel bypasses\n-  // this check for a more detemrinistic feel.\n-  NudgeDecision can_show_decision;\n-  if (is_auto_open_pdf_side_panel_cue) {\n-    can_show_decision = NudgeDecision::kSuccess;\n-  } else {\n-    const GURL& url = web_contents()->GetLastCommittedURL();\n-    can_show_decision = contextual_cueing_service_->CanShowNudge(url);\n-  }\n-  decision_recorder->set_nudge_decision(can_show_decision);\n-  if (can_show_decision != NudgeDecision::kSuccess) {\n-    return;\n-  }\n-\n-  // Handle side panel auto-open case: bypass nudge and open panel directly.\n-  // If auto-open fails or is disabled, falls through to standard nudge.\n-  if (should_open_side_panel) {\n-    auto* tab_interface = tabs::TabInterface::GetFromContents(web_contents());\n-    auto* browser_window_interface = tab_interface->GetBrowserWindowInterface();\n-    Profile* profile =\n-        Profile::FromBrowserContext(web_contents()->GetBrowserContext());\n-    auto* glic_service =\n-        glic::GlicKeyedServiceFactory::GetGlicKeyedService(profile);\n-    if (glic_service && browser_window_interface) {\n-      const bool auto_send_prompt =\n-          decision_result->auto_send_params.has_value() &&\n-          decision_result->auto_send_params->auto_send_eligible &&\n-          !prompt_suggestion.empty();\n-\n-      glic::mojom::InvocationSource invocation_source =\n-          glic::mojom::InvocationSource::kAutoOpenedByContextualCue;\n-      if (is_auto_open_pdf_side_panel_cue) {\n-        invocation_source = glic::mojom::InvocationSource::kAutoOpenedForPdf;\n-      }\n-\n-      glic_service->ToggleUI(browser_window_interface,\n-                             /*prevent_close=*/true, invocation_source,\n-                             prompt_suggestion.empty()\n-                                 ? std::nullopt\n-                                 : std::make_optional(prompt_suggestion),\n-                             auto_send_prompt);\n-      return;\n-    }\n-    // Fall through to nudge if side panel open fails.\n-  }\n-\n-  GetGlicNudgeController()->UpdateNudgeLabel(\n-      web_contents(), cue_label,\n-      prompt_suggestion.empty() ? std::nullopt\n-                                : std::make_optional(prompt_suggestion),\n-      /*activity=*/std::nullopt,\n-      base::BindRepeating(&ContextualCueingService::OnNudgeActivity,\n-                          contextual_cueing_service_->GetWeakPtr(),\n-                          web_contents(), document_available_time,\n-                          decision_result->is_dynamic));\n }\n \n // static\n--- a/chrome/browser/contextual_cueing/contextual_cueing_page_data.cc\n+++ b/chrome/browser/contextual_cueing/contextual_cueing_page_data.cc\n@@ -116,12 +116,6 @@ void ContextualCueingPageData::FindMatch\n                     : std::nullopt}));\n         return;\n       } else if (config.has_cue_label()) {\n-        std::move(cueing_decision_callback_)\n-            .Run(base::ok(CueingResult{\n-                l10n_util::GetStringUTF8(\n-                    IDS_GLIC_BUTTON_ENTRYPOINT_ASK_ABOUT_THIS_PAGE_LABEL),\n-                /*prompt_suggestion=*/\"\",\n-                /*is_dynamic=*/false, /*auto_open_eligible=*/false}));\n         return;\n       }\n     } else if (decision == kNeedsPdfPageCount) {\n--- a/chrome/browser/contextual_tasks/contextual_tasks_side_panel_coordinator.cc\n+++ b/chrome/browser/contextual_tasks/contextual_tasks_side_panel_coordinator.cc\n@@ -343,14 +343,6 @@ void ContextualTasksSidePanelCoordinator\n   ObserveWebContentsOnActiveTab();\n   NotifyActiveTaskContextProvider();\n \n-  // Hide the GLIC nudge when the side panel is opened.\n-  if (auto* glic_nudge_controller =\n-          browser_window_->GetFeatures().glic_nudge_controller()) {\n-    glic_nudge_controller->UpdateNudgeLabel(\n-        active_tab_interface->GetContents(), \"\", std::nullopt,\n-        tabs::GlicNudgeActivity::kNudgeIgnoredOpenedContextualTasksSidePanel,\n-        base::DoNothing());\n-  }\n }\n \n void ContextualTasksSidePanelCoordinator::Close() {\n--- a/chrome/browser/extensions/api/pdf_viewer_private/BUILD.gn\n+++ b/chrome/browser/extensions/api/pdf_viewer_private/BUILD.gn\n@@ -18,7 +18,6 @@ source_set(\"pdf_viewer_private\") {\n \n   deps = [\n     \"//base\",\n-    \"//chrome/browser/glic\",\n     \"//chrome/browser/pdf\",\n     \"//chrome/browser/pdf:pdf_pref_names\",\n     \"//chrome/browser/profiles:profile\",\n@@ -46,8 +45,6 @@ source_set(\"browser_tests\") {\n   sources = [ \"pdf_viewer_private_browsertest.cc\" ]\n   deps = [\n     \":pdf_viewer_private\",\n-    \"//chrome/browser/glic\",\n-    \"//chrome/browser/glic/test_support\",\n     \"//chrome/test:test_support\",\n     \"//content/test:test_support\",\n   ]\n--- a/chrome/browser/extensions/api/pdf_viewer_private/pdf_viewer_private_api.cc\n+++ b/chrome/browser/extensions/api/pdf_viewer_private/pdf_viewer_private_api.cc\n@@ -12,9 +12,6 @@\n #include \"base/numerics/safe_conversions.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"base/values.h\"\n-#include \"chrome/browser/glic/public/glic_enabling.h\"\n-#include \"chrome/browser/glic/public/glic_keyed_service.h\"\n-#include \"chrome/browser/glic/public/glic_keyed_service_factory.h\"\n #include \"chrome/browser/pdf/pdf_pref_names.h\"\n #include \"chrome/browser/pdf/pdf_viewer_stream_manager.h\"\n #include \"chrome/browser/profiles/profile.h\"\n@@ -305,24 +302,7 @@ ExtensionFunction::ResponseAction PdfVie\n     return RespondNow(Error(\"No tab.\"));\n   }\n \n-  if (!glic::GlicEnabling::IsEnabledForProfile(\n-          Profile::FromBrowserContext(contents->GetBrowserContext()))) {\n     return RespondNow(Error(\"Glic is not enabled.\"));\n-  }\n-\n-  glic::GlicKeyedService* glic_service =\n-      glic::GlicKeyedServiceFactory::GetGlicKeyedService(\n-          contents->GetBrowserContext());\n-  CHECK(glic_service);\n-\n-  glic_service->ToggleUI(tab_interface->GetBrowserWindowInterface(),\n-                         /*prevent_close=*/true,\n-                         glic::mojom::InvocationSource::kPdfSummarizeButton,\n-                         /*prompt_suggestion=*/\"summarize the pdf\",\n-                         /*auto_send=*/true);\n-\n-  success = true;\n-  return RespondNow(NoArguments());\n }\n \n }  // namespace extensions\n--- a/chrome/browser/glic/public/glic_enabling.cc\n+++ b/chrome/browser/glic/public/glic_enabling.cc\n@@ -388,35 +388,11 @@ GlicGlobalEnabling::GlicGlobalEnabling(D\n GlicGlobalEnabling::~GlicGlobalEnabling() = default;\n \n bool GlicGlobalEnabling::IsEnabledByFlags() {\n-  // It is important that this value not change at runtime in production. Any\n-  // future updates to this function must maintain that property.\n-  bool is_enabled = base::FeatureList::IsEnabled(features::kGlic) &&\n-                    locale_enablement_.value_or(true) &&\n-                    country_enablement_.value_or(true);\n-#if BUILDFLAG(IS_CHROMEOS)\n-  static const bool supported_system_requirements = [] {\n-    constexpr base::ByteCount kMinimumMemoryThreshold = base::GiB(8);\n-\n-    // TODO(b:468055370): Remove the bypassing once the glic is fully launched.\n-    const bool bypass_cbx_requirement =\n-        base::FeatureList::IsEnabled(\n-            chromeos::features::kGlicEnableFor8GbDevices) &&\n-        base::SysInfo::AmountOfPhysicalMemory() >= kMinimumMemoryThreshold;\n-\n-    return (bypass_cbx_requirement ||\n-            base::FeatureList::IsEnabled(\n-                chromeos::features::kFeatureManagementGlic));\n-  }();\n-\n-  is_enabled = is_enabled && supported_system_requirements;\n-#endif  // BUILDFLAG(IS_CHROMEOS)\n-  return is_enabled;\n+  return false;\n }\n \n bool GlicEnabling::IsEnabledByFlags() {\n-  return g_browser_process->GetFeatures()\n-      ->glic_global_enabling()\n-      .IsEnabledByFlags();\n+  return false;\n }\n \n bool GlicEnabling::IsProfileEligible(const Profile* profile) {\n--- a/chrome/browser/navigation_predictor/navigation_predictor.cc\n+++ b/chrome/browser/navigation_predictor/navigation_predictor.cc\n@@ -17,8 +17,6 @@\n #include \"base/time/default_tick_clock.h\"\n #include \"chrome/browser/navigation_predictor/navigation_predictor_keyed_service.h\"\n #include \"chrome/browser/navigation_predictor/navigation_predictor_keyed_service_factory.h\"\n-#include \"chrome/browser/navigation_predictor/preloading_model_keyed_service.h\"\n-#include \"chrome/browser/navigation_predictor/preloading_model_keyed_service_factory.h\"\n #include \"chrome/browser/preloading/preloading_prefs.h\"\n #include \"chrome/browser/profiles/profile.h\"\n #include \"components/no_state_prefetch/browser/no_state_prefetch_manager.h\"\n@@ -105,10 +103,6 @@ base::TimeDelta MLModelExecutionTimerSta\n       blink::features::kPreloadingModelTimerStartDelay.Get());\n }\n \n-base::TimeDelta MLModelExecutionTimerInterval() {\n-  return base::Milliseconds(\n-      blink::features::kPreloadingModelTimerInterval.Get());\n-}\n \n base::TimeDelta MLModelMaxHoverTime() {\n   return blink::features::kPreloadingModelMaxHoverTime.Get();\n@@ -415,80 +409,6 @@ void NavigationPredictor::ProcessPointer\n }\n \n void NavigationPredictor::OnMLModelExecutionTimerFired() {\n-  // Check whether preloading is enabled or not.\n-  Profile* profile =\n-      Profile::FromBrowserContext(render_frame_host().GetBrowserContext());\n-  if (prefetch::IsSomePreloadingEnabled(*profile->GetPrefs()) !=\n-      content::PreloadingEligibility::kEligible) {\n-    return;\n-  }\n-\n-  // Execute the model.\n-  PreloadingModelKeyedService* model_service =\n-      PreloadingModelKeyedServiceFactory::GetForProfile(profile);\n-  if (!model_service) {\n-    return;\n-  }\n-\n-  if (!ml_model_candidate_.has_value()) {\n-    return;\n-  }\n-  auto it = anchors_.find(ml_model_candidate_.value());\n-  if (it == anchors_.end()) {\n-    return;\n-  }\n-\n-  AnchorElementData& anchor = it->second;\n-\n-  PreloadingModelKeyedService::Inputs inputs;\n-  inputs.contains_image = anchor.contains_image;\n-  inputs.font_size = anchor.font_size;\n-  inputs.has_text_sibling = anchor.has_text_sibling;\n-  inputs.is_bold = anchor.is_bold_font;\n-  inputs.is_in_iframe = anchor.is_in_iframe;\n-  inputs.is_url_incremented_by_one = anchor.is_url_incremented_by_one;\n-  inputs.navigation_start_to_link_logged =\n-      anchor.first_report_timestamp - navigation_start_;\n-  auto path_info = GetUrlPathLengthDepthAndHash(anchor.target_url);\n-  inputs.path_length = path_info.path_length;\n-  inputs.path_depth = path_info.path_depth;\n-  inputs.percent_clickable_area = anchor.ratio_area;\n-  inputs.percent_vertical_distance =\n-      static_cast<int>(anchor.ratio_distance_root_top * 100);\n-\n-  inputs.is_same_host = anchor.is_same_host;\n-  auto to_timedelta = [this](std::optional<base::TimeTicks> ts) {\n-    return ts.has_value() ? NowTicks() - ts.value() : base::TimeDelta();\n-  };\n-  // TODO(329691634): Using the real viewport entry time for\n-  // `entered_viewport_to_left_viewport` produces low quality results.\n-  // We could remove it from the model, if we can't get this to be useful.\n-  inputs.entered_viewport_to_left_viewport = base::TimeDelta();\n-  inputs.hover_dwell_time = to_timedelta(anchor.pointer_over_timestamp);\n-  inputs.pointer_hovering_over_count = anchor.pointer_hovering_over_count;\n-  if (model_score_callback_) {\n-    std::move(model_score_callback_).Run(inputs);\n-  }\n-\n-  content::PreloadingData* preloading_data =\n-      content::PreloadingData::GetOrCreateForWebContents(\n-          content::WebContents::FromRenderFrameHost(&render_frame_host()));\n-  preloading_data->OnPreloadingHeuristicsModelInput(\n-      anchor.target_url,\n-      base::BindOnce(&RecordMetricsForModelTraining, inputs,\n-                     render_frame_host().GetPageUkmSourceId()));\n-  model_service->Score(\n-      &scoring_model_task_tracker_, inputs,\n-      base::BindOnce(&NavigationPredictor::OnPreloadingHeuristicsModelDone,\n-                     weak_ptr_factory_.GetWeakPtr(), anchor.target_url));\n-\n-  if (inputs.hover_dwell_time < MLModelMaxHoverTime() &&\n-      !ml_model_execution_timer_.IsRunning()) {\n-    ml_model_execution_timer_.Start(\n-        FROM_HERE, MLModelExecutionTimerInterval(),\n-        base::BindOnce(&NavigationPredictor::OnMLModelExecutionTimerFired,\n-                       base::Unretained(this)));\n-  }\n }\n \n void NavigationPredictor::SetModelScoreCallbackForTesting(\n--- a/chrome/browser/password_manager/password_change_delegate_impl.cc\n+++ b/chrome/browser/password_manager/password_change_delegate_impl.cc\n@@ -339,16 +339,6 @@ void PasswordChangeDelegateImpl::StartPa\n       base::BindRepeating(&PasswordChangeDelegateImpl::OnLoginStateCheckResult,\n                           weak_ptr_factory_.GetWeakPtr()));\n \n-  // This creates FieldClassificationModelHandler and should trigger download of\n-  // a local ML model for field classification.\n-  // TODO(452883239): Clean this up when model is downloaded on start-up for\n-  // everybody.\n-  if (base::FeatureList::IsEnabled(\n-          password_manager::features::\n-              kProactivelyDownloadModelForPasswordChange)) {\n-    PasswordFieldClassificationModelHandlerFactory::GetForBrowserContext(\n-        originator_->GetBrowserContext());\n-  }\n }\n \n void PasswordChangeDelegateImpl::OnLoginStateCheckResult(\n--- a/chrome/browser/pdf/BUILD.gn\n+++ b/chrome/browser/pdf/BUILD.gn\n@@ -32,7 +32,6 @@ source_set(\"pdf\") {\n     \"//build:chromeos_buildflags\",\n     \"//chrome/browser:browser_process\",\n     \"//chrome/browser:resources\",\n-    \"//chrome/browser/glic\",\n     \"//chrome/browser/pdf:pdf_pref_names\",\n     \"//chrome/browser/profiles:profile\",\n     \"//chrome/browser/resources/pdf:resources\",\n--- a/chrome/browser/pdf/pdf_extension_util.cc\n+++ b/chrome/browser/pdf/pdf_extension_util.cc\n@@ -128,7 +128,6 @@ base::DictValue GetPdfViewerStrings() {\n       {\"rotationStateLabel90\", IDS_PDF_ROTATION_STATE_LABEL_90},\n       {\"rotationStateLabel180\", IDS_PDF_ROTATION_STATE_LABEL_180},\n       {\"rotationStateLabel270\", IDS_PDF_ROTATION_STATE_LABEL_270},\n-      {\"searchifyInProgress\", IDS_PDF_SEARCHIFY_IN_PROGRESS},\n       {\"sidebarLabel\", IDS_PDF_SIDEBAR_LABEL},\n       {\"thumbnailPageAriaLabel\", IDS_PDF_THUMBNAIL_PAGE_ARIA_LABEL},\n       {\"tooltipAttachments\", IDS_PDF_TOOLTIP_ATTACHMENTS},\n--- a/chrome/browser/permissions/BUILD.gn\n+++ b/chrome/browser/permissions/BUILD.gn\n@@ -42,10 +42,6 @@ source_set(\"permissions\") {\n     \"prediction_service/language_detection_observer.h\",\n     \"prediction_service/passage_embedder_delegate.cc\",\n     \"prediction_service/passage_embedder_delegate.h\",\n-    \"prediction_service/permissions_ai_ui_selector.cc\",\n-    \"prediction_service/permissions_ai_ui_selector.h\",\n-    \"prediction_service/prediction_model_handler_provider.cc\",\n-    \"prediction_service/prediction_model_handler_provider.h\",\n     \"prediction_service/prediction_service_factory.cc\",\n     \"prediction_service/prediction_service_factory.h\",\n     \"prediction_service/prediction_service_request.cc\",\n--- a/chrome/browser/permissions/chrome_permissions_client.cc\n+++ b/chrome/browser/permissions/chrome_permissions_client.cc\n@@ -28,7 +28,6 @@\n #include \"chrome/browser/permissions/permission_actions_history_factory.h\"\n #include \"chrome/browser/permissions/permission_decision_auto_blocker_factory.h\"\n #include \"chrome/browser/permissions/permission_revocation_request.h\"\n-#include \"chrome/browser/permissions/prediction_service/permissions_ai_ui_selector.h\"\n #include \"chrome/browser/permissions/pref_based_quiet_permission_ui_selector.h\"\n #include \"chrome/browser/permissions/quiet_notification_permission_ui_config.h\"\n #include \"chrome/browser/permissions/system/system_permission_settings.h\"\n@@ -477,8 +476,6 @@ ChromePermissionsClient::CreatePermissio\n #endif\n   selectors.emplace_back(std::make_unique<PrefBasedQuietPermissionUiSelector>(\n       Profile::FromBrowserContext(browser_context)));\n-  selectors.emplace_back(std::make_unique<PermissionsAiUiSelector>(\n-      Profile::FromBrowserContext(browser_context)));\n   return selectors;\n }\n \n@@ -500,8 +497,6 @@ void ChromePermissionsClient::OnPromptRe\n \n   Profile* profile =\n       Profile::FromBrowserContext(web_contents->GetBrowserContext());\n-  PermissionActionsHistoryFactory::GetForProfile(profile)->RecordAction(\n-      action, request_type, prompt_disposition);\n \n   if (request_type == permissions::RequestType::kNotifications) {\n     if (action == permissions::PermissionAction::GRANTED &&\n--- a/chrome/browser/permissions/prediction_service/passage_embedder_delegate.cc\n+++ b/chrome/browser/permissions/prediction_service/passage_embedder_delegate.cc\n@@ -17,18 +17,6 @@ PassageEmbedderDelegate::PassageEmbedder\n     : profile_(profile) {}\n \n Embedder* PassageEmbedderDelegate::get_passage_embedder() {\n-  if (auto* prediction_model_handler_provider =\n-          PredictionModelHandlerProviderFactory::GetForBrowserContext(\n-              profile_)) {\n-    bool is_ready = prediction_model_handler_provider->IsPassageEmbedderReady();\n-    PermissionUmaUtil::RecordPassageEmbedderMetadataValid(is_ready);\n-    if (!is_ready) {\n-      VLOG(1) << \"[PermissionsAIv4] \"\n-                 \"PassageEmbedderDelegate::get_passage_embedder is not ready.\";\n-      return nullptr;\n-    }\n-    return prediction_model_handler_provider->GetPassageEmbedder();\n-  }\n   PermissionUmaUtil::RecordPassageEmbedderMetadataValid(false);\n   return nullptr;\n }\n--- a/chrome/browser/permissions/prediction_service/permissions_ai_ui_selector.cc\n+++ b/chrome/browser/permissions/prediction_service/permissions_ai_ui_selector.cc\n@@ -843,7 +843,7 @@ void PermissionsAiUiSelector::ExecuteOnD\n     ModelExecutionData model_data) {\n   VLOG(1) << \"[PermissionsAI] ExecuteOnDeviceAivXModel\";\n   PredictionModelHandlerProvider* prediction_model_handler_provider =\n-      PredictionModelHandlerProviderFactory::GetForBrowserContext(profile_);\n+      nullptr;\n   if (prediction_model_handler_provider) {\n     permissions::RequestType request_type =\n         model_data.request_metadata.request_type;\n--- a/chrome/browser/prefs/BUILD.gn\n+++ b/chrome/browser/prefs/BUILD.gn\n@@ -312,7 +312,6 @@ source_set(\"impl\") {\n       \"//chrome/browser/actor/ui\",\n       \"//chrome/browser/device_identity\",\n       \"//chrome/browser/promos:utils\",\n-      \"//chrome/browser/screen_ai:prefs\",\n       \"//chrome/browser/search_engine_choice\",\n       \"//chrome/browser/search_engines\",\n       \"//chrome/browser/sharing_hub\",\n--- a/chrome/browser/prefs/browser_prefs.cc\n+++ b/chrome/browser/prefs/browser_prefs.cc\n@@ -1622,9 +1622,6 @@ void RegisterLocalState(PrefRegistrySimp\n   DeviceOAuth2TokenStoreDesktop::RegisterPrefs(registry);\n #endif\n \n-#if !BUILDFLAG(IS_ANDROID)\n-  screen_ai::RegisterLocalStatePrefs(registry);\n-#endif  // !BUILDFLAG(IS_ANDROID)\n \n #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)\n   PlatformAuthPolicyObserver::RegisterPrefs(registry);\n--- a/chrome/browser/profiles/BUILD.gn\n+++ b/chrome/browser/profiles/BUILD.gn\n@@ -384,7 +384,6 @@ source_set(\"profiles_extra_parts_impl\")\n     ]\n   } else {\n     deps += [\n-      \"//chrome/browser/accessibility/tree_fixing:service\",\n       \"//chrome/browser/accessibility_annotator/content_annotator\",\n       \"//chrome/browser/apps/app_service\",\n       \"//chrome/browser/autofill\",\n@@ -396,7 +395,6 @@ source_set(\"profiles_extra_parts_impl\")\n       \"//chrome/browser/hid\",\n       \"//chrome/browser/legion\",\n       \"//chrome/browser/media/router/discovery/access_code:access_code_sink_service\",\n-      \"//chrome/browser/screen_ai:screen_ai_service_router_factory\",\n       \"//chrome/browser/search\",\n       \"//chrome/browser/search_engine_choice\",\n       \"//chrome/browser/themes\",\n--- a/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc\n+++ b/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc\n@@ -112,7 +112,6 @@\n #include \"chrome/browser/media/webrtc/webrtc_event_log_manager_keyed_service_factory.h\"\n #include \"chrome/browser/metrics/variations/google_groups_manager_factory.h\"\n #include \"chrome/browser/navigation_predictor/navigation_predictor_keyed_service_factory.h\"\n-#include \"chrome/browser/navigation_predictor/preloading_model_keyed_service_factory.h\"\n #include \"chrome/browser/navigation_predictor/search_engine_preconnector.h\"\n #include \"chrome/browser/navigation_predictor/search_engine_preconnector_keyed_service_factory.h\"\n #include \"chrome/browser/net/dns_probe_service_factory.h\"\n@@ -342,7 +341,6 @@\n #include \"chrome/browser/prefs/persistent_renderer_prefs_manager_factory.h\"\n #include \"chrome/browser/privacy_sandbox/privacy_sandbox_survey_desktop_controller_factory.h\"\n #include \"chrome/browser/profile_resetter/reset_report_uploader_factory.h\"\n-#include \"chrome/browser/screen_ai/screen_ai_service_router_factory.h\"\n #include \"chrome/browser/search/instant_service_factory.h\"\n #include \"chrome/browser/search_engine_choice/search_engine_choice_dialog_service_factory.h\"\n #include \"chrome/browser/speech/speech_recognition_client_browser_interface_factory.h\"\n@@ -1079,7 +1077,6 @@ void ChromeBrowserMainExtraPartsProfiles\n #if BUILDFLAG(CHROME_ROOT_STORE_CERT_MANAGEMENT_UI)\n   net::ServerCertificateDatabaseServiceFactory::GetInstance();\n #endif\n-  PreloadingModelKeyedServiceFactory::GetInstance();\n #if BUILDFLAG(ENABLE_DICE_SUPPORT)\n   HistorySyncOptinServiceFactory::GetInstance();\n   ProfileManagementDisclaimerServiceFactory::GetInstance();\n@@ -1128,9 +1125,6 @@ void ChromeBrowserMainExtraPartsProfiles\n   OneGoogleBarServiceFactory::GetInstance();\n   OneTimePermissionsTrackerFactory::GetInstance();\n #endif\n-  if (optimization_guide::ShouldStartModelValidator()) {\n-    optimization_guide::ModelValidatorKeyedServiceFactory::GetInstance();\n-  }\n   OptimizationGuideKeyedServiceFactory::GetInstance();\n   OriginKeyedPermissionActionServiceFactory::GetInstance();\n   OriginTrialsFactory::GetInstance();\n@@ -1216,7 +1210,6 @@ void ChromeBrowserMainExtraPartsProfiles\n #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)\n   policy::UserPolicyOidcSigninServiceFactory::GetInstance();\n #endif\n-  PredictionModelHandlerProviderFactory::GetInstance();\n   PredictionServiceFactory::GetInstance();\n   predictors::AutocompleteActionPredictorFactory::GetInstance();\n   predictors::LoadingPredictorFactory::GetInstance();\n@@ -1296,10 +1289,6 @@ void ChromeBrowserMainExtraPartsProfiles\n   SafetyHubMenuNotificationServiceFactory::GetInstance();\n #if !BUILDFLAG(IS_ANDROID)\n   SafetyHubHatsServiceFactory::GetInstance();\n-  if (features::IsMainNodeAnnotationsEnabled()) {\n-    screen_ai::AXMainNodeAnnotatorControllerFactory::GetInstance();\n-  }\n-  screen_ai::ScreenAIServiceRouterFactory::EnsureFactoryBuilt();\n #endif\n #if BUILDFLAG(IS_CHROMEOS)\n   if (ash::features::IsScannerEnabled()) {\n@@ -1418,7 +1407,6 @@ void ChromeBrowserMainExtraPartsProfiles\n   TopSitesFactory::GetInstance();\n   translate::TranslateRankerFactory::GetInstance();\n #if !BUILDFLAG(IS_ANDROID)\n-  tree_fixing::AXTreeFixingServicesRouterFactory::GetInstance();\n   TriggeredProfileResetterFactory::GetInstance();\n #endif\n #if !BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_ANDROID)\n--- a/chrome/browser/profiles/off_the_record_profile_impl.cc\n+++ b/chrome/browser/profiles/off_the_record_profile_impl.cc\n@@ -227,11 +227,6 @@ void OffTheRecordProfileImpl::Init() {\n   // AccessibilityLabelsService has a default prefs behavior in incognito.\n   AccessibilityLabelsService::InitOffTheRecordPrefs(this);\n \n-#if !BUILDFLAG(IS_ANDROID)\n-  // To avoid using any server-side tree fixing service, it is disabled in\n-  // Incognito profiles.\n-  tree_fixing::InitOffTheRecordPrefs(this);\n-#endif  // !BUILDFLAG(IS_ANDROID)\n \n   // The ad service might not be available for some irregular profiles, like the\n   // System Profile.\n--- a/chrome/browser/profiles/profile_impl.cc\n+++ b/chrome/browser/profiles/profile_impl.cc\n@@ -847,11 +847,6 @@ void ProfileImpl::DoFinalInit(CreateMode\n   // The password settings service needs to start listening to settings\n   // changes from Google Mobile Services, as early as possible.\n   PasswordManagerSettingsServiceFactory::GetForProfile(this);\n-#else\n-\n-  if (features::IsMainNodeAnnotationsEnabled()) {\n-    screen_ai::AXMainNodeAnnotatorControllerFactory::GetForProfile(this);\n-  }\n #endif  // BUILDFLAG(IS_ANDROID)\n \n   // The announcement notification  service might not be available for some\n--- a/chrome/browser/profiles/profile_manager.cc\n+++ b/chrome/browser/profiles/profile_manager.cc\n@@ -51,7 +51,6 @@\n #include \"chrome/browser/buildflags.h\"\n #include \"chrome/browser/lifetime/application_lifetime.h\"\n #include \"chrome/browser/navigation_predictor/navigation_predictor_keyed_service_factory.h\"\n-#include \"chrome/browser/navigation_predictor/preloading_model_keyed_service_factory.h\"\n #include \"chrome/browser/prefs/incognito_mode_prefs.h\"\n #include \"chrome/browser/profiles/delete_profile_helper.h\"\n #include \"chrome/browser/profiles/keep_alive/profile_keep_alive_types.h\"\n@@ -1593,9 +1592,6 @@ void ProfileManager::DoFinalInitForServi\n   // Ensure NavigationPredictorKeyedService is started.\n   NavigationPredictorKeyedServiceFactory::GetForProfile(profile);\n \n-  // Ensure PreloadingModelKeyedService is started.\n-  PreloadingModelKeyedServiceFactory::GetForProfile(profile);\n-\n   IdentityManagerFactory::GetForProfile(profile)->OnNetworkInitialized();\n   AccountReconcilorFactory::GetForProfile(profile);\n #if BUILDFLAG(IS_ANDROID)\n--- a/chrome/browser/resources/BUILD.gn\n+++ b/chrome/browser/resources/BUILD.gn\n@@ -112,7 +112,6 @@ group(\"resources\") {\n     public_deps += [\n       \"unexportable_keys_internals:resources\",\n       \"//chrome/browser/resources/media/mei_preload:component\",\n-      \"//components/privacy_sandbox/privacy_sandbox_attestations/preload:component\",\n     ]\n   }\n \n--- a/chrome/browser/resources/pdf/pdf_viewer.html\n+++ b/chrome/browser/resources/pdf/pdf_viewer.html\n@@ -108,10 +108,6 @@ import {AnnotationMode} from './constant\n       </cr-page-selector>\n     ` : ''}\n   </if>\n-  <cr-toast id=\"searchifyProgress\">\n-    <div class=\"spinner\"></div>\n-    <span>$i18n{searchifyInProgress}</span>\n-  </cr-toast>\n </div>\n \n ${this.showErrorDialog ? html`<viewer-error-dialog id=\"error-dialog\">\n--- a/chrome/browser/skills/BUILD.gn\n+++ b/chrome/browser/skills/BUILD.gn\n@@ -50,11 +50,7 @@ source_set(\"public\") {\n source_set(\"ui\") {\n   sources = [\n     \"skills_dialog_launcher.cc\",\n-    \"skills_ui_tab_controller.cc\",\n-    \"skills_ui_tab_controller.h\",\n     \"skills_ui_window_controller.cc\",\n-    \"skills_update_observer.cc\",\n-    \"skills_update_observer.h\",\n   ]\n \n   public_deps = [\n--- a/chrome/browser/ui/BUILD.gn\n+++ b/chrome/browser/ui/BUILD.gn\n@@ -1462,8 +1462,6 @@ static_library(\"ui\") {\n       \"//chrome/browser/ui/shared_highlighting\",\n       \"//chrome/browser/ui/tab_sharing\",\n       \"//chrome/browser/ui/tab_sharing:impl\",\n-      \"//chrome/browser/ui/tabs:glic\",\n-      \"//chrome/browser/ui/tabs:glic_impl\",\n       \"//chrome/browser/ui/tabs/organization\",\n       \"//chrome/browser/ui/tabs/organization:impl\",\n       \"//chrome/browser/ui/tabs/saved_tab_groups\",\n@@ -1503,8 +1501,6 @@ static_library(\"ui\") {\n       \"//chrome/browser/regional_capabilities\",\n       \"//chrome/browser/safe_browsing\",\n       \"//chrome/browser/safe_browsing:advanced_protection\",\n-      \"//chrome/browser/screen_ai:screen_ai_install_state\",\n-      \"//chrome/browser/screen_ai:screen_ai_service_router_factory\",\n       \"//chrome/browser/smart_card\",\n       \"//chrome/browser/tab_group_sync:utils\",\n       \"//chrome/browser/themes\",\n@@ -1824,9 +1820,6 @@ static_library(\"ui\") {\n       # or get componentized: c/b/ui/browser_dialogs.h, browser_navigation.h, browser.h.\n       \"//chrome/browser/ui/sync:impl\",\n \n-      # TODO(crbug.com/364501603): Remove this circular dependency when\n-      # c/b/ui/views/tabs/tab_strip_action_container.h gets componentized.\n-      \"//chrome/browser/ui/tabs:glic_impl\",\n \n       # TODO(crbug.com/438226511): Remove this circular dependency when the following headers\n       # get componentized:\n@@ -2288,7 +2281,6 @@ static_library(\"ui\") {\n       \"//chrome/browser/policy:onc\",\n       \"//chrome/browser/policy:system_features_disable_list\",\n       \"//chrome/browser/push_notification\",\n-      \"//chrome/browser/screen_ai/public:optical_character_recognizer\",\n       \"//chrome/browser/ui/ash/accessibility\",\n       \"//chrome/browser/ui/ash/app_access\",\n       \"//chrome/browser/ui/ash/arc\",\n@@ -4794,7 +4786,6 @@ static_library(\"ui\") {\n       \"//chrome/browser/ui/waap:waap_utils\",\n       \"//chrome/browser/ui/webauthn:impl\",\n       \"//chrome/browser/ui/webui/app_service_internals\",\n-      \"//chrome/browser/ui/webui/autofill_ml_internals\",\n       \"//chrome/browser/ui/webui/side_panel/customize_chrome\",\n       \"//chrome/browser/ui/window_name_prompt\",\n       \"//components/collaboration/public\",\n--- a/chrome/browser/ui/pdf/BUILD.gn\n+++ b/chrome/browser/ui/pdf/BUILD.gn\n@@ -6,7 +6,6 @@ import(\"//pdf/features.gni\")\n import(\"//services/screen_ai/buildflags/features.gni\")\n \n assert(enable_pdf)\n-assert(enable_screen_ai_service)\n \n source_set(\"pdf\") {\n   sources = [\n@@ -15,9 +14,7 @@ source_set(\"pdf\") {\n   ]\n   deps = [\n     \"//chrome/browser/download\",\n-    \"//chrome/browser/glic\",\n     \"//chrome/browser/pdf\",\n-    \"//chrome/browser/screen_ai:screen_ai_install_state\",\n     \"//chrome/browser/ui/tab_contents\",\n     \"//chrome/browser/ui/user_education\",\n     \"//chrome/common\",\n--- a/chrome/browser/ui/pdf/chrome_pdf_document_helper_client.cc\n+++ b/chrome/browser/ui/pdf/chrome_pdf_document_helper_client.cc\n@@ -58,22 +58,6 @@ void MaybeHideSearchifyFeaturePromo(tabs\n   }\n }\n \n-void LogGlicSummarizeMetrics(content::RenderFrameHost* render_frame_host) {\n-  content::WebContents* web_contents_to_use =\n-      GetWebContentsToUse(render_frame_host);\n-  if (!web_contents_to_use) {\n-    return;\n-  }\n-\n-  bool glic_enabled = glic::GlicEnabling::IsEnabledForProfile(\n-      Profile::FromBrowserContext(web_contents_to_use->GetBrowserContext()));\n-  base::UmaHistogramBoolean(\"PDF.GlicEnabled\", glic_enabled);\n-  bool glic_summarize_button_enabled =\n-      pdf_extension_util::ShouldShowGlicSummarizeButton(\n-          web_contents_to_use->GetBrowserContext());\n-  base::UmaHistogramBoolean(\"PDF.GlicSummarizeButtonEnabled\",\n-                            glic_summarize_button_enabled);\n-}\n \n }  // namespace\n \n@@ -86,15 +70,6 @@ void ChromePDFDocumentHelperClient::OnDo\n   MaybeShowFeaturePromo(feature_engagement::kIPHPdfInkSignaturesFeature,\n                         GetWebContentsToUse(render_frame_host));\n \n-  auto* parent = render_frame_host->GetParent();\n-  bool is_pdf_viewer =\n-      parent && parent->GetLastCommittedURL().GetWithEmptyPath() ==\n-                    base::FilePath(ChromeContentClient::kPDFExtensionPluginPath)\n-                        .MaybeAsASCII();\n-\n-  if (is_pdf_viewer) {\n-    LogGlicSummarizeMetrics(render_frame_host);\n-  }\n }\n \n void ChromePDFDocumentHelperClient::UpdateContentRestrictions(\n@@ -146,22 +121,3 @@ void ChromePDFDocumentHelperClient::SetP\n   }\n }\n \n-void ChromePDFDocumentHelperClient::OnSearchifyStarted(\n-    content::RenderFrameHost* render_frame_host) {\n-  // Show the promo only when ScreenAI component is available and OCR can be\n-  // done.\n-  if (!screen_ai::ScreenAIInstallState::GetInstance()->IsComponentAvailable()) {\n-    return;\n-  }\n-  content::WebContents* web_contents = GetWebContentsToUse(render_frame_host);\n-  if (!MaybeShowFeaturePromo(feature_engagement::kIPHPdfSearchifyFeature,\n-                             web_contents)) {\n-    return;\n-  }\n-  auto* const tab = tabs::TabInterface::MaybeGetFromContents(web_contents);\n-  if (!tab) {\n-    return;\n-  }\n-  tab_subscriptions_.push_back(tab->RegisterWillDeactivate(\n-      base::BindRepeating(&MaybeHideSearchifyFeaturePromo)));\n-}\n--- a/chrome/browser/ui/pdf/chrome_pdf_document_helper_client.h\n+++ b/chrome/browser/ui/pdf/chrome_pdf_document_helper_client.h\n@@ -27,7 +27,6 @@ class ChromePDFDocumentHelperClient : pu\n   void OnSaveURL() override;\n   void SetPluginCanSave(content::RenderFrameHost* render_frame_host,\n                         bool can_save) override;\n-  void OnSearchifyStarted(content::RenderFrameHost* render_frame_host) override;\n \n   // Holds subscriptions for TabInterface callbacks.\n   std::vector<base::CallbackListSubscription> tab_subscriptions_;\n--- a/chrome/browser/ui/safety_hub/BUILD.gn\n+++ b/chrome/browser/ui/safety_hub/BUILD.gn\n@@ -37,7 +37,6 @@ source_set(\"safety_hub\") {\n     \"//components/content_settings/core/browser\",\n     \"//components/content_settings/core/common\",\n     \"//components/keyed_service/core\",\n-    \"//components/safe_browsing/content/browser/notification_content_detection\",\n     \"//components/safe_browsing/core/browser:safe_browsing_metrics_collector\",\n     \"//components/safe_browsing/core/browser/db:database_manager\",\n     \"//components/safety_check:features\",\n--- a/chrome/browser/ui/tab_search_feature.cc\n+++ b/chrome/browser/ui/tab_search_feature.cc\n@@ -12,6 +12,6 @@ namespace features {\n bool HasTabSearchToolbarButton() {\n   // It is important that this value not change at runtime in production. Any\n   // future updates to this function must maintain that property.\n-  return glic::GlicEnabling::IsEnabledByFlags();\n+  return true;\n }\n }  // namespace features\n--- a/chrome/browser/ui/tabs/alert/tab_alert_controller.cc\n+++ b/chrome/browser/ui/tabs/alert/tab_alert_controller.cc\n@@ -178,7 +178,6 @@ std::u16string TabAlertController::GetTa\n     case TabAlert::kActorWaitingOnUser:\n       return l10n_util::GetStringUTF16(\n           IDS_TOOLTIP_TAB_ALERT_STATE_ACTOR_ACCESSING);\n-    case TabAlert::kGlicAccessing:\n #if BUILDFLAG(ENABLE_GLIC)\n       return l10n_util::GetStringUTF16(\n           IDS_TOOLTIP_TAB_ALERT_STATE_GLIC_ACCESSING);\n--- a/chrome/browser/ui/tabs/tab_features.cc\n+++ b/chrome/browser/ui/tabs/tab_features.cc\n@@ -366,23 +366,6 @@ void TabFeatures::Init(TabInterface& tab\n                   tab, &tab, side_panel_registry_.get());\n     }\n #endif  // BUILDFLAG(ENABLE_GLIC)\n-    // TODO(crbug.com/433973411): Move this logic to a helper function.\n-    if (base::FeatureList::IsEnabled(features::kGlicActorUi) &&\n-        profile->IsRegularProfile()) {\n-      // The associated tab is passed to CreateInstance twice: for dependency\n-      // injection callbacks and as a direct constructor argument.\n-      actor_ui_tab_controller_ =\n-          GetUserDataFactory().CreateInstance<actor::ui::ActorUiTabController>(\n-              tab, tab, actor::ActorKeyedService::Get(profile));\n-    }\n-    actor_tab_data_ =\n-        GetUserDataFactory().CreateInstance<actor::ActorTabData>(tab, &tab);\n-\n-    if (base::FeatureList::IsEnabled(features::kSkillsEnabled)) {\n-      skills_ui_tab_controller_ =\n-          GetUserDataFactory().CreateInstance<skills::SkillsUiTabController>(\n-              tab, tab);\n-    }\n   }  // IsInNormalWindow() end.\n \n   // This block instantiates the page action controllers that depends on the\n--- a/chrome/browser/ui/tabs/tab_strip_api/converters/tab_converters.cc\n+++ b/chrome/browser/ui/tabs/tab_strip_api/converters/tab_converters.cc\n@@ -203,10 +203,6 @@ tabs::TabAlert FromMojo(mojom::AlertStat\n       return tabs::TabAlert::kAudioRecording;\n     case mojom::AlertState::kVideoRecording:\n       return tabs::TabAlert::kVideoRecording;\n-    case mojom::AlertState::kGlicAccessing:\n-      return tabs::TabAlert::kGlicAccessing;\n-    case mojom::AlertState::kGlicSharing:\n-      return tabs::TabAlert::kGlicSharing;\n     case mojom::AlertState::kActorAccessing:\n       return tabs::TabAlert::kActorAccessing;\n     case mojom::AlertState::kActorWaitingOnUser:\n--- a/chrome/browser/ui/views/glic/glic_button_interface.h\n+++ b/chrome/browser/ui/views/glic/glic_button_interface.h\n@@ -18,13 +18,7 @@ namespace glic {\n class GlicButtonInterface {\n  public:\n   static views::LabelButton* FromBrowser(BrowserWindowInterface* browser) {\n-    if (!browser) {\n       return nullptr;\n-    }\n-\n-    BrowserView* browser_view = BrowserView::GetBrowserViewForBrowser(browser);\n-    CHECK(browser_view);\n-    return browser_view->GetGlicButton();\n   }\n };\n }  // namespace glic\n--- a/chrome/browser/ui/views/tabs/tab_strip_action_container.cc\n+++ b/chrome/browser/ui/views/tabs/tab_strip_action_container.cc\n@@ -532,41 +532,6 @@ void TabStripActionContainer::OnGlicActo\n \n #endif  // BUILDFLAG(ENABLE_GLIC)\n \n-void TabStripActionContainer::OnTriggerGlicNudgeUI(std::string label) {\n-#if BUILDFLAG(ENABLE_GLIC)\n-  if (GetIsShowingGlicActorTaskIconNudge()) {\n-    return;\n-  }\n-\n-  CHECK(glic_button_);\n-  if (!label.empty()) {\n-    glic_button_->SetNudgeLabel(std::move(label));\n-    ShowTabStripNudge(glic_button_);\n-  }\n-\n-#else\n-  NOTREACHED();\n-#endif  // BUILDFLAG(ENABLE_GLIC)\n-}\n-\n-void TabStripActionContainer::OnHideGlicNudgeUI() {\n-#if BUILDFLAG(ENABLE_GLIC)\n-\n-  CHECK(glic_button_);\n-  HideTabStripNudge(glic_button_);\n-\n-#else\n-  NOTREACHED();\n-#endif  // BUILDFLAG(ENABLE_GLIC)\n-}\n-\n-bool TabStripActionContainer::GetIsShowingGlicNudge() {\n-#if BUILDFLAG(ENABLE_GLIC)\n-  return glic_button_ && glic_button_->GetIsShowingNudge();\n-#else\n-  return false;\n-#endif  // BUILDFLAG(ENABLE_GLIC)\n-}\n \n #if BUILDFLAG(ENABLE_GLIC)\n views::FlexLayoutView* TabStripActionContainer::glic_actor_button_container() {\n@@ -670,23 +635,6 @@ void TabStripActionContainer::HideGlicAc\n }\n \n void TabStripActionContainer::FinalizeHideGlicActorTaskIcon() {\n-  // 1. Reset Nudge State\n-  if (glic_actor_task_icon_->GetIsShowingNudge()) {\n-    if (animation_session_ &&\n-        animation_session_->button() == glic_actor_task_icon_) {\n-      animation_session_.reset();\n-    }\n-    glic_actor_task_icon_->SetIsShowingNudge(false);\n-  }\n-  glic_actor_task_icon_->SetVisible(false);\n-  glic_actor_task_icon_->SetTaskIconToDefault();\n-  glic_button_ = AddChildView(std::move(glic_button_));\n-  glic_actor_button_container_->SetVisible(false);\n-  glic_button_->Expand();\n-  glic_button_->ResetSplitButtonCornerStyling();\n-  // Reset the animation mode for the next time the icon is shown.\n-  glic_actor_task_icon_->SetAnimationMode(TaskIconAnimationMode::kEntry);\n-  UpdateGlicActorButtonContainerBorders();\n #if !BUILDFLAG(IS_MAC)\n   // Re-add the separator so it's ordered after the GlicButton.\n   separator_ = AddChildView(std::move(separator_));\n--- a/chrome/browser/ui/views/tabs/tab_strip_action_container.h\n+++ b/chrome/browser/ui/views/tabs/tab_strip_action_container.h\n@@ -9,7 +9,6 @@\n #include \"chrome/browser/glic/browser_ui/glic_button_controller_delegate.h\"\n #include \"chrome/browser/ui/tabs/glic_nudge_controller.h\"\n #include \"chrome/browser/ui/tabs/glic_nudge_delegate.h\"\n-#include \"chrome/browser/ui/views/glic/glic_button.h\"\n #include \"chrome/browser/ui/views/glic/glic_button_interface.h\"\n #include \"chrome/browser/ui/views/tabs/glic/glic_actor_task_icon.h\"\n #include \"chrome/browser/ui/views/tabs/glic/tab_strip_glic_button.h\"\n@@ -35,7 +34,6 @@ class GlicAndActorButtonsContainer;\n class TabStripActionContainer : public views::View,\n                                 public views::AnimationDelegateViews,\n                                 public views::MouseWatcherListener,\n-                                public GlicNudgeDelegate,\n                                 public glic::GlicButtonControllerDelegate {\n   METADATA_HEADER(TabStripActionContainer, views::View)\n \n@@ -109,10 +107,6 @@ class TabStripActionContainer : public v\n   // views::MouseWatcherListener:\n   void MouseMovedOutOfHost() override;\n \n-  // GlicNudgeDelegate:\n-  void OnTriggerGlicNudgeUI(std::string label) override;\n-  void OnHideGlicNudgeUI() override;\n-  bool GetIsShowingGlicNudge() override;\n \n   // GlicButtonControllerDelegate:\n   void SetGlicShowState(bool show) override;\n--- a/chrome/browser/ui/views/toolbar/BUILD.gn\n+++ b/chrome/browser/ui/views/toolbar/BUILD.gn\n@@ -34,7 +34,6 @@ source_set(\"toolbar\") {\n     \"toolbar_button_menu_highlighter.h\",\n     \"toolbar_chip_button.h\",\n     \"toolbar_controller.h\",\n-    \"toolbar_glic_button.h\",\n     \"toolbar_icon_container_view.h\",\n     \"toolbar_ink_drop_util.h\",\n     \"toolbar_view.h\",\n@@ -46,7 +45,6 @@ source_set(\"toolbar\") {\n   public_deps = [\n     \"//base\",\n     \"//build:buildflag_header_h\",\n-    \"//chrome/browser/glic\",\n     \"//chrome/browser/ui:browser_element_identifiers\",\n     \"//chrome/browser/ui/browser_window\",\n     \"//chrome/browser/ui/color:color_headers\",\n@@ -58,7 +56,6 @@ source_set(\"toolbar\") {\n     \"//chrome/browser/ui/views\",\n     \"//chrome/browser/ui/views/frame\",\n     \"//chrome/browser/ui/views/frame:toolbar_button_provider\",\n-    \"//chrome/browser/ui/views/glic\",\n     \"//chrome/browser/ui/views/location_bar\",\n     \"//chrome/browser/ui/webui/webui_toolbar\",\n     \"//components/bookmarks/browser\",\n@@ -114,7 +111,6 @@ source_set(\"impl\") {\n     \"toolbar_button_menu_highlighter.cc\",\n     \"toolbar_chip_button.cc\",\n     \"toolbar_controller.cc\",\n-    \"toolbar_glic_button.cc\",\n     \"toolbar_icon_container_view.cc\",\n     \"toolbar_ink_drop_util.cc\",\n     \"toolbar_view.cc\",\n@@ -176,12 +172,10 @@ source_set(\"impl\") {\n     \"//chrome/browser/ui/views/contextual_tasks\",\n     \"//chrome/browser/ui/views/download\",\n     \"//chrome/browser/ui/views/frame:toolbar_button_provider\",\n-    \"//chrome/browser/ui/views/glic\",\n     \"//chrome/browser/ui/views/interaction\",\n     \"//chrome/browser/ui/views/page_action\",\n     \"//chrome/browser/ui/views/side_panel\",\n     \"//chrome/browser/ui/views/side_panel:side_panel_enums\",\n-    \"//chrome/browser/ui/views/tabs/glic\",\n     \"//chrome/browser/ui/waap\",\n     \"//chrome/browser/ui/waap:window_metrics_manager\",\n     \"//chrome/browser/ui/web_applications\",\n--- a/chrome/browser/ui/views/toolbar/toolbar_view.cc\n+++ b/chrome/browser/ui/views/toolbar/toolbar_view.cc\n@@ -23,7 +23,6 @@\n #include \"chrome/app/chrome_command_ids.h\"\n #include \"chrome/browser/command_updater.h\"\n #include \"chrome/browser/glic/public/glic_enabling.h\"\n-#include \"chrome/browser/glic/public/glic_keyed_service.h\"\n #include \"chrome/browser/glic/public/glic_keyed_service_factory.h\"\n #include \"chrome/browser/media/router/media_router_feature.h\"\n #include \"chrome/browser/performance_manager/public/user_tuning/user_tuning_utils.h\"\n@@ -89,7 +88,6 @@\n #include \"chrome/browser/ui/views/toolbar/split_tabs_button.h\"\n #include \"chrome/browser/ui/views/toolbar/toolbar_button.h\"\n #include \"chrome/browser/ui/views/toolbar/toolbar_controller.h\"\n-#include \"chrome/browser/ui/views/toolbar/toolbar_glic_button.h\"\n #include \"chrome/browser/ui/views/toolbar/webui_toolbar_web_view.h\"\n #include \"chrome/browser/ui/views/zoom/zoom_view_controller.h\"\n #include \"chrome/browser/ui/waap/initial_webui_window_metrics_manager.h\"\n@@ -524,7 +522,6 @@ void ToolbarView::Init() {\n void ToolbarView::OnVerticalTabStripModeChanged(\n     tabs::VerticalTabStripStateController* controller) {\n   should_display_vertical_tabs_ = controller->ShouldDisplayVerticalTabs();\n-  UpdateGlicButtonVisibility();\n }\n \n #if BUILDFLAG(ENABLE_GLIC)\n@@ -670,6 +667,11 @@ void ToolbarView::SetGlicPanelIsOpen(boo\n \n   glic_button_->SetGlicPanelIsOpen(open);\n }\n+#else\n+void ToolbarView::SetGlicShowState(bool show) {\n+}\n+void ToolbarView::SetGlicPanelIsOpen(bool open) {\n+}\n #endif  // ENABLE_GLIC\n \n void ToolbarView::AnimationEnded(const gfx::Animation* animation) {\n--- a/chrome/browser/ui/views/user_education/browser_user_education_service.cc\n+++ b/chrome/browser/ui/views/user_education/browser_user_education_service.cc\n@@ -856,40 +856,6 @@ void MaybeRegisterChromeFeaturePromos(\n                        \"Triggered when the PDF Viewer opens.\")));\n #endif\n \n-  // kIPHPdfSearchifyFeature:\n-  registry.RegisterFeature(std::move(\n-      FeaturePromoSpecification::CreateForToastPromo(\n-          feature_engagement::kIPHPdfSearchifyFeature,\n-          kBrowserDialogAnchorElementId, IDS_PDF_SEARCHIFY_IPH_BODY,\n-          IDS_PDF_SEARCHIFY_IPH_BODY_SCREEN_READER,\n-          FeaturePromoSpecification::AcceleratorInfo())\n-          .SetBubbleArrow(HelpBubbleArrow::kNone)\n-          .SetBubbleTitleText(IDS_PDF_SEARCHIFY_IPH_TITLE)\n-          .SetMetadata(132, \"rhalavati@chromium.org\",\n-                       \"Triggered once when user opens a PDF which gets OCRed.\")\n-          .SetAnchorElementFilter(base::BindRepeating(\n-              [](const ui::ElementTracker::ElementList& elements)\n-                  -> ui::TrackedElement* {\n-                if (elements.empty()) {\n-                  return nullptr;\n-                }\n-                // Ensure a searchified PDF is visible before showing the IPH.\n-                auto* const browser_view =\n-                    views::ElementTrackerViews::GetInstance()\n-                        ->GetFirstMatchingViewAs<BrowserView>(\n-                            kBrowserViewElementId, elements[0]->context());\n-                std::vector<ContentsWebView*> contents_web_views =\n-                    browser_view->GetAllVisibleContentsWebViews();\n-                for (auto* contents_web_view : contents_web_views) {\n-                  auto* pdf_doc_helper =\n-                      pdf::PDFDocumentHelper::MaybeGetForWebContents(\n-                          contents_web_view->GetWebContents());\n-                  if (pdf_doc_helper && pdf_doc_helper->SearchifyStarted()) {\n-                    return elements[0];\n-                  }\n-                }\n-                return nullptr;\n-              }))));\n \n   // kIPHLensOverlayFeature:\n   registry.RegisterFeature(std::move(\n--- a/chrome/browser/ui/webui/BUILD.gn\n+++ b/chrome/browser/ui/webui/BUILD.gn\n@@ -75,7 +75,6 @@ source_set(\"configs\") {\n       \"//chrome/browser/contextual_tasks:ui\",\n       \"//chrome/browser/ui/webui/access_code_cast\",\n       \"//chrome/browser/ui/webui/app_service_internals\",\n-      \"//chrome/browser/ui/webui/autofill_ml_internals\",\n       \"//chrome/browser/ui/webui/color_pipeline_internals\",\n       \"//chrome/browser/ui/webui/infobar_internals\",\n       \"//chrome/browser/ui/webui/legion_internals\",\n--- a/chrome/browser/ui/webui/chrome_web_ui_configs.cc\n+++ b/chrome/browser/ui/webui/chrome_web_ui_configs.cc\n@@ -315,7 +315,6 @@ void RegisterChromeWebUIConfigs() {\n #endif  // BUILDFLAG(GOOGLE_CHROME_BRANDING)\n   map.AddWebUIConfig(std::make_unique<actor::ui::ActorOverlayUIConfig>());\n   map.AddWebUIConfig(std::make_unique<AppServiceInternalsUIConfig>());\n-  map.AddWebUIConfig(std::make_unique<AutofillMlInternalsUIConfig>());\n   map.AddWebUIConfig(std::make_unique<media_router::AccessCodeCastUIConfig>());\n   map.AddWebUIConfig(std::make_unique<BookmarksSidePanelUIConfig>());\n   map.AddWebUIConfig(std::make_unique<BookmarksUIConfig>());\n--- a/chrome/browser/ui/webui/settings/accessibility_main_handler.cc\n+++ b/chrome/browser/ui/webui/settings/accessibility_main_handler.cc\n@@ -35,11 +35,6 @@ void AccessibilityMainHandler::RegisterM\n       base::BindRepeating(\n           &AccessibilityMainHandler::HandleCheckAccessibilityImageLabels,\n           base::Unretained(this)));\n-  web_ui()->RegisterMessageCallback(\n-      \"getScreenAiInstallState\",\n-      base::BindRepeating(\n-          &AccessibilityMainHandler::HandleGetScreenAIInstallState,\n-          base::Unretained(this)));\n }\n \n void AccessibilityMainHandler::OnJavascriptAllowed() {\n@@ -50,11 +45,6 @@ void AccessibilityMainHandler::OnJavascr\n           base::Unretained(this)));\n #endif  // BUILDFLAG(IS_CHROMEOS)\n \n-  if (features::IsMainNodeAnnotationsEnabled()) {\n-    CHECK(!component_ready_observer_.IsObserving());\n-    component_ready_observer_.Observe(\n-        screen_ai::ScreenAIInstallState::GetInstance());\n-  }\n }\n \n void AccessibilityMainHandler::OnJavascriptDisallowed() {\n@@ -62,35 +52,6 @@ void AccessibilityMainHandler::OnJavascr\n   accessibility_subscription_ = {};\n #endif  // BUILDFLAG(IS_CHROMEOS)\n \n-  if (features::IsMainNodeAnnotationsEnabled()) {\n-    component_ready_observer_.Reset();\n-  }\n-}\n-\n-void AccessibilityMainHandler::DownloadProgressChanged(double progress) {\n-  CHECK_GE(progress, 0.0);\n-  CHECK_LE(progress, 1.0);\n-  const int progress_num = progress * 100;\n-  FireWebUIListener(\"screen-ai-downloading-progress-changed\",\n-                    base::Value(progress_num));\n-}\n-\n-void AccessibilityMainHandler::StateChanged(\n-    screen_ai::ScreenAIInstallState::State state) {\n-  base::Value state_value = base::Value(static_cast<int>(state));\n-  FireWebUIListener(\"screen-ai-state-changed\", state_value);\n-}\n-\n-void AccessibilityMainHandler::HandleGetScreenAIInstallState(\n-    const base::ListValue& args) {\n-  CHECK_EQ(1U, args.size());\n-  const base::Value& callback_id = args[0];\n-  AllowJavascript();\n-  // Get the current install state and send it back to a UI callback.\n-  screen_ai::ScreenAIInstallState::State current_install_state =\n-      screen_ai::ScreenAIInstallState::GetInstance()->get_state();\n-  ResolveJavascriptCallback(\n-      callback_id, base::Value(static_cast<int>(current_install_state)));\n }\n \n void AccessibilityMainHandler::HandleGetScreenReaderState(\n--- a/chrome/browser/ui/webui/settings/accessibility_main_handler.h\n+++ b/chrome/browser/ui/webui/settings/accessibility_main_handler.h\n@@ -19,8 +19,7 @@ namespace settings {\n // Settings handler for the main accessibility settings page,\n // chrome://settings/accessibility.\n class AccessibilityMainHandler\n-    : public ::settings::SettingsPageUIHandler,\n-      public screen_ai::ScreenAIInstallState::Observer {\n+    : public ::settings::SettingsPageUIHandler {\n  public:\n   AccessibilityMainHandler();\n   ~AccessibilityMainHandler() override;\n@@ -32,9 +31,6 @@ class AccessibilityMainHandler\n   void OnJavascriptAllowed() override;\n   void OnJavascriptDisallowed() override;\n \n-  // screen_ai::ScreenAIInstallState::Observer:\n-  void DownloadProgressChanged(double progress) override;\n-  void StateChanged(screen_ai::ScreenAIInstallState::State state) override;\n \n  private:\n   void HandleGetScreenReaderState(const base::ListValue& args);\n@@ -51,9 +47,6 @@ class AccessibilityMainHandler\n   base::CallbackListSubscription accessibility_subscription_;\n #endif  // BUILDFLAG(IS_CHROMEOS)\n \n-  base::ScopedObservation<screen_ai::ScreenAIInstallState,\n-                          screen_ai::ScreenAIInstallState::Observer>\n-      component_ready_observer_{this};\n };\n \n }  // namespace settings\n--- a/chrome/browser/ui/webui/side_panel/read_anything/read_anything_untrusted_page_handler.cc\n+++ b/chrome/browser/ui/webui/side_panel/read_anything/read_anything_untrusted_page_handler.cc\n@@ -21,8 +21,6 @@\n #include \"chrome/browser/dom_distiller/dom_distiller_service_factory.h\"\n #include \"chrome/browser/language/language_model_manager_factory.h\"\n #include \"chrome/browser/profiles/profile.h\"\n-#include \"chrome/browser/screen_ai/screen_ai_service_router.h\"\n-#include \"chrome/browser/screen_ai/screen_ai_service_router_factory.h\"\n #include \"chrome/browser/speech/extension_api/tts_engine_extension_api.h\"\n #include \"chrome/browser/translate/chrome_translate_client.h\"\n #include \"chrome/browser/ui/browser.h\"\n@@ -406,14 +404,6 @@ ReadAnythingUntrustedPageHandler::ReadAn\n   prefs_lang = language::ExtractBaseLanguage(prefs_lang);\n   SetDefaultLanguageCode(prefs_lang);\n \n-  if (use_screen_ai_service_) {\n-    screen_ai::ScreenAIServiceRouterFactory::GetForBrowserContext(profile_)\n-        ->GetServiceStateAsync(\n-            screen_ai::ScreenAIServiceRouter::Service::kMainContentExtraction,\n-            base::BindOnce(\n-                &ReadAnythingUntrustedPageHandler::OnScreenAIServiceInitialized,\n-                weak_factory_.GetWeakPtr()));\n-  }\n \n   if (features::IsReadAnythingWithReadabilityEnabled()) {\n     // Set the JavaScript world ID.\n--- a/chrome/browser/ui/webui/tab_search/tab_search_page_handler.cc\n+++ b/chrome/browser/ui/webui/tab_search/tab_search_page_handler.cc\n@@ -1499,8 +1499,7 @@ tab_search::mojom::TabPtr TabSearchPageH\n                                 alert == tabs::TabAlert::kAudioRecording ||\n                                 alert == tabs::TabAlert::kVideoRecording ||\n                                 alert == tabs::TabAlert::kAudioPlaying ||\n-                                alert == tabs::TabAlert::kAudioMuting ||\n-                                alert == tabs::TabAlert::kGlicAccessing;\n+                                alert == tabs::TabAlert::kAudioMuting;\n                        });\n \n   return tab_data;\n--- a/chrome/browser/ui/webui/tabs/tabs_mojom_traits.cc\n+++ b/chrome/browser/ui/webui/tabs/tabs_mojom_traits.cc\n@@ -141,12 +141,6 @@ bool EnumTraits<MojoTabAlertState, Nativ\n     case MojoTabAlertState::kActorWaitingOnUser:\n       *out = NativeTabAlertState::kActorWaitingOnUser;\n       return true;\n-    case MojoTabAlertState::kGlicAccessing:\n-      *out = NativeTabAlertState::kGlicAccessing;\n-      return true;\n-    case MojoTabAlertState::kGlicSharing:\n-      *out = NativeTabAlertState::kGlicSharing;\n-      return true;\n   }\n   NOTREACHED();\n }\n--- a/chrome/common/features.gni\n+++ b/chrome/common/features.gni\n@@ -46,7 +46,7 @@ declare_args() {\n   enable_chrome_notifications = is_mac || is_win || is_linux\n \n   # Enables inclusion of glic in the build.\n-  enable_glic = is_mac || is_win || is_linux || is_chromeos || is_android\n+  enable_glic = false\n \n   # Skips unmigrated actor files in the build on Android. This is temporary, and\n   # will eventually be removed once migration is done. Adding this flag likely\n--- a/chrome/renderer/BUILD.gn\n+++ b/chrome/renderer/BUILD.gn\n@@ -355,18 +355,6 @@ static_library(\"renderer\") {\n     ]\n   } else {\n     sources += [\n-      \"accessibility/ax_tree_distiller.cc\",\n-      \"accessibility/ax_tree_distiller.h\",\n-      \"accessibility/read_anything/read_aloud_app_model.cc\",\n-      \"accessibility/read_anything/read_aloud_app_model.h\",\n-      \"accessibility/read_anything/read_aloud_traversal_utils.cc\",\n-      \"accessibility/read_anything/read_aloud_traversal_utils.h\",\n-      \"accessibility/read_anything/read_anything_app_controller.cc\",\n-      \"accessibility/read_anything/read_anything_app_controller.h\",\n-      \"accessibility/read_anything/read_anything_app_model.cc\",\n-      \"accessibility/read_anything/read_anything_app_model.h\",\n-      \"accessibility/read_anything/read_anything_node_utils.cc\",\n-      \"accessibility/read_anything/read_anything_node_utils.h\",\n       \"media/chrome_speech_recognition_client.cc\",\n       \"media/chrome_speech_recognition_client.h\",\n       \"searchbox/searchbox.cc\",\n@@ -381,7 +369,6 @@ static_library(\"renderer\") {\n       \"//components/crx_file\",\n       \"//components/trusted_vault\",\n       \"//services/screen_ai/buildflags\",\n-      \"//services/screen_ai/public/mojom\",\n       \"//services/strings\",\n       \"//third_party/re2\",\n     ]\n--- a/chrome/renderer/chrome_render_frame_observer.cc\n+++ b/chrome/renderer/chrome_render_frame_observer.cc\n@@ -78,7 +78,6 @@\n #include \"url/gurl.h\"\n \n #if !BUILDFLAG(IS_ANDROID)\n-#include \"chrome/renderer/accessibility/read_anything/read_anything_app_controller.h\"\n #include \"chrome/renderer/searchbox/searchbox_extension.h\"\n #endif  // !BUILDFLAG(IS_ANDROID)\n \n@@ -336,20 +335,6 @@ void ChromeRenderFrameObserver::DidCommi\n }\n \n void ChromeRenderFrameObserver::DidClearWindowObject() {\n-#if !BUILDFLAG(IS_ANDROID)\n-  if (process_state::IsInstantProcess()) {\n-    SearchBoxExtension::Install(render_frame()->GetWebFrame());\n-  }\n-\n-  // Install ReadAnythingAppController on render frames with the Read Anything\n-  // url, which is chrome-untrusted. ReadAnythingAppController installs v8\n-  // bindings in the chrome.readingMode namespace which are consumed by\n-  // read_anything/app.ts, the resource of the Read Anything WebUI.\n-  if (render_frame()->GetWebFrame()->GetDocument().Url() ==\n-      chrome::kChromeUIUntrustedReadAnythingSidePanelURL) {\n-    ReadAnythingAppController::Install(render_frame());\n-  }\n-#endif  // !BUILDFLAG(IS_ANDROID)\n #if BUILDFLAG(ENABLE_GUEST_VIEW) && !BUILDFLAG(ENABLE_EXTENSIONS_CORE)\n   guest_view::SlimWebViewBindings::MaybeInstall(*render_frame());\n #endif  // BUILDFLAG(ENABLE_GUEST_VIEW) && !BUILDFLAG(ENABLE_EXTENSIONS_CORE)\n--- a/chrome/test/BUILD.gn\n+++ b/chrome/test/BUILD.gn\n@@ -2585,9 +2585,6 @@ if (!is_android) {\n       \"//chrome/browser/resource_coordinator:mojo_bindings\",\n       \"//chrome/browser/safe_browsing:advanced_protection\",\n       \"//chrome/browser/safe_browsing:verdict_cache_manager_factory\",\n-      \"//chrome/browser/screen_ai:screen_ai_install_state\",\n-      \"//chrome/browser/screen_ai:screen_ai_service_router_factory\",\n-      \"//chrome/browser/screen_ai/public:test_support\",\n       \"//chrome/browser/search\",\n       \"//chrome/browser/search_engines\",\n       \"//chrome/browser/segmentation_platform:test_utils\",\n@@ -3041,8 +3038,6 @@ if (!is_android) {\n       \"//services/preferences/public/cpp\",\n       \"//services/preferences/public/cpp/tracked\",\n       \"//services/preferences/tracked:features\",\n-      \"//services/screen_ai/public/cpp:utilities\",\n-      \"//services/screen_ai/public/mojom\",\n       \"//services/service_manager/public/cpp\",\n       \"//services/strings\",\n       \"//services/test/echo/public/mojom\",\n@@ -6354,7 +6349,6 @@ template(\"performance_test_suite_templat\n       data_deps += [\n         \"//chrome/test:load_library_perf_tests\",\n         \"//components/tracing:tracing_perftests\",\n-        \"//components/variations/test_data/cipd:single_group_per_study_prefer_existing_behavior_seed\",\n         \"//testing:run_perf_test\",\n         \"//ui/views:views_perftests\",\n       ]\n@@ -7374,9 +7368,6 @@ test(\"unit_tests\") {\n     \"//components/safe_browsing/content/browser\",\n     \"//components/safe_browsing/content/browser:client_side_detection_images_cache\",\n     \"//components/safe_browsing/content/browser:credit_card_form_event\",\n-    \"//components/safe_browsing/content/browser/notification_content_detection\",\n-    \"//components/safe_browsing/content/browser/notification_content_detection:notifications_global_cache_list\",\n-    \"//components/safe_browsing/content/browser/notification_content_detection:test_utils\",\n     \"//components/safe_browsing/content/browser/password_protection\",\n     \"//components/safe_browsing/content/browser/password_protection:mock_password_protection\",\n     \"//components/safe_browsing/content/browser/web_ui\",\n@@ -8759,7 +8750,6 @@ test(\"unit_tests\") {\n     #\n     # TODO(crbug.com/417513088): Maybe merge with the non-android `deps` declaration above?\n     deps += [\n-      \"../browser/screen_ai:screen_ai_install_state\",\n       \"//chrome:packed_resources_integrity_header\",\n       \"//chrome/browser/apps:icon_standardizer\",\n       \"//chrome/browser/apps/app_service\",\n@@ -8794,7 +8784,6 @@ test(\"unit_tests\") {\n       \"//chrome/browser/page_content_annotations\",\n       \"//chrome/browser/profile_resetter:fake_profile_resetter\",\n       \"//chrome/browser/resources/new_tab_page_instant:resources_grit\",\n-      \"//chrome/browser/screen_ai:unit_tests\",\n       \"//chrome/browser/search/background\",\n       \"//chrome/browser/search/background:constants\",\n       \"//chrome/browser/search_engine_choice:unit_tests\",\n--- a/chrome/test/chromedriver/BUILD.gn\n+++ b/chrome/test/chromedriver/BUILD.gn\n@@ -416,7 +416,7 @@ source_set(\"lib\") {\n   configs += [ \"//build/config/compiler:no_exit_time_destructors\" ]\n }\n \n-if (is_linux) {\n+if (false) {\n   # Linux\n   executable(\"chromedriver_server.unstripped\") {\n     testonly = true\n--- a/chrome/test/variations/BUILD.gn\n+++ b/chrome/test/variations/BUILD.gn\n@@ -18,7 +18,6 @@ python_library(\"test_utils\") {\n \n   data = [ \"//chrome/test/variations/test_utils/\" ]\n \n-  data_deps = [ \"//third_party/catapult/third_party/gsutil\" ]\n }\n \n python_library(\"fixtures\") {\n--- a/chrome/utility/BUILD.gn\n+++ b/chrome/utility/BUILD.gn\n@@ -147,7 +147,6 @@ static_library(\"utility\") {\n       \"//components/user_data_importer/content\",\n       \"//components/user_data_importer/utility:bookmarks\",\n       \"//services/proxy_resolver:lib\",\n-      \"//services/screen_ai\",\n     ]\n   }\n \n--- a/chrome/utility/services.cc\n+++ b/chrome/utility/services.cc\n@@ -62,8 +62,6 @@\n #include \"components/mirroring/service/mirroring_service.h\"\n #include \"services/proxy_resolver/proxy_resolver_factory_impl.h\"  // nogncheck\n #include \"services/proxy_resolver/public/mojom/proxy_resolver.mojom.h\"\n-#include \"services/screen_ai/public/mojom/screen_ai_factory.mojom.h\"  // nogncheck\n-#include \"services/screen_ai/screen_ai_service_impl.h\"  // nogncheck\n #endif  // !BUILDFLAG(IS_ANDROID)\n \n #if BUILDFLAG(ENABLE_BROWSER_SPEECH_SERVICE)\n@@ -266,12 +264,6 @@ auto RunSpeechRecognitionService(\n }\n #endif  // !BUILDFLAG(ENABLE_BROWSER_SPEECH_SERVICE)\n \n-#if !BUILDFLAG(IS_ANDROID)\n-auto RunScreenAIServiceFactory(\n-    mojo::PendingReceiver<screen_ai::mojom::ScreenAIServiceFactory> receiver) {\n-  return std::make_unique<screen_ai::ScreenAIService>(std::move(receiver));\n-}\n-#endif\n \n #if (BUILDFLAG(SAFE_BROWSING_DOWNLOAD_PROTECTION) && \\\n      !BUILDFLAG(IS_ANDROID)) ||                      \\\n@@ -451,7 +443,6 @@ void RegisterMainThreadServices(mojo::Se\n   services.Add(RunOakSessionService);\n   services.Add(RunProfileImporter);\n   services.Add(RunMirroringService);\n-  services.Add(RunScreenAIServiceFactory);\n #endif  // !BUILDFLAG(IS_ANDROID)\n \n #if BUILDFLAG(ENABLE_BROWSER_SPEECH_SERVICE)\n--- a/components/BUILD.gn\n+++ b/components/BUILD.gn\n@@ -627,7 +627,6 @@ test(\"components_unittests\") {\n       \"//components/media_router/common/providers/cast/channel:unit_tests\",\n       \"//components/one_time_tokens/core/browser:unit_tests\",\n       \"//components/page_info:unit_tests\",\n-      \"//components/permissions/prediction_service:unit_tests\",\n       \"//components/privacy_sandbox/privacy_sandbox_attestations:unit_tests\",\n       \"//components/safety_check:unit_tests\",\n       \"//components/security_interstitials/content:unit_tests\",\n--- a/components/autofill/core/browser/autofill_field.cc\n+++ b/components/autofill/core/browser/autofill_field.cc\n@@ -23,7 +23,6 @@\n #include \"components/autofill/core/browser/field_type_utils.h\"\n #include \"components/autofill/core/browser/field_types.h\"\n #include \"components/autofill/core/browser/heuristic_source.h\"\n-#include \"components/autofill/core/browser/ml_model/field_classification_model_handler.h\"\n #include \"components/autofill/core/browser/proto/api_v1.pb.h\"\n #include \"components/autofill/core/browser/proto/server.pb.h\"\n #include \"components/autofill/core/common/autofill_constants.h\"\n--- a/components/autofill/core/browser/foundations/autofill_manager.cc\n+++ b/components/autofill/core/browser/foundations/autofill_manager.cc\n@@ -140,8 +140,6 @@ struct AutofillManager::AsyncContext {\n \n   std::vector<FormData> forms;\n   std::vector<RegexPredictions> regex_predictions;\n-  std::vector<ModelPredictions> autofill_predictions;\n-  std::vector<ModelPredictions> password_manager_predictions;\n   GeoIpCountryCode country_code;\n   LanguageCode current_page_language;\n   std::unique_ptr<BufferingLogManager> log_manager;\n@@ -1046,12 +1044,6 @@ void AutofillManager::UpdateFormCache(\n \n   auto apply_predictions = [](FormStructure& form_structure,\n                               const AsyncContext& context, size_t i) {\n-    if (!context.autofill_predictions.empty()) {\n-      context.autofill_predictions[i].ApplyTo(form_structure.fields());\n-    }\n-    if (!context.password_manager_predictions.empty()) {\n-      context.password_manager_predictions[i].ApplyTo(form_structure.fields());\n-    }\n     if (!context.regex_predictions.empty()) {\n       context.regex_predictions[i].ApplyTo(form_structure.fields());\n     }\n@@ -1169,26 +1161,6 @@ void AutofillManager::LogCurrentFieldTyp\n \n void AutofillManager::SubscribeToMlModelChanges(\n     FieldClassificationModelHandler& handler) {\n-  switch (handler.optimization_target()) {\n-    case optimization_guide::proto::OptimizationTarget::\n-        OPTIMIZATION_TARGET_AUTOFILL_FIELD_CLASSIFICATION:\n-      if (!autofill_model_change_subscription_) {\n-        autofill_model_change_subscription_ =\n-            handler.RegisterModelChangeCallback(base::BindRepeating(\n-                &AutofillManager::ReparseKnownForms, base::Unretained(this)));\n-      }\n-      break;\n-    case optimization_guide::proto::OptimizationTarget::\n-        OPTIMIZATION_TARGET_PASSWORD_MANAGER_FORM_CLASSIFICATION:\n-      if (!password_manager_model_change_subscription_) {\n-        password_manager_model_change_subscription_ =\n-            handler.RegisterModelChangeCallback(base::BindRepeating(\n-                &AutofillManager::ReparseKnownForms, base::Unretained(this)));\n-      }\n-      break;\n-    default:\n-      NOTREACHED();\n-  }\n }\n \n }  // namespace autofill\n--- a/components/omnibox/browser/autocomplete_classifier.cc\n+++ b/components/omnibox/browser/autocomplete_classifier.cc\n@@ -132,8 +132,6 @@ void AutocompleteClassifier::Classify(\n     metrics::OmniboxEventProto::PageClassification page_classification,\n     AutocompleteMatch* match,\n     GURL* alternate_nav_url) {\n-  TRACE_EVENT1(\"omnibox\", \"AutocompleteClassifier::Classify\", \"text\",\n-               base::UTF16ToUTF8(text));\n   DCHECK(!inside_classify_);\n   base::AutoReset<bool> reset(&inside_classify_, true);\n   AutocompleteInput input(text, page_classification, *scheme_classifier_);\n--- a/components/pdf/renderer/pdf_view_web_plugin_client.h\n+++ b/components/pdf/renderer/pdf_view_web_plugin_client.h\n@@ -12,7 +12,6 @@\n #include \"base/memory/weak_ptr.h\"\n #include \"mojo/public/cpp/bindings/remote.h\"\n #include \"pdf/pdf_view_web_plugin.h\"\n-#include \"services/screen_ai/public/mojom/screen_ai_service.mojom.h\"\n \n namespace blink {\n class WebLocalFrame;\n@@ -110,8 +109,6 @@ class PdfViewWebPluginClient : public ch\n \n   raw_ptr<blink::WebPluginContainer> plugin_container_;\n \n-  mojo::Remote<screen_ai::mojom::ScreenAIAnnotator> screen_ai_annotator_;\n-  base::RepeatingClosure ocr_disconnect_callback_;\n \n   base::WeakPtrFactory<PdfViewWebPluginClient> weak_factory_{this};\n };\n--- a/components/update_client/BUILD.gn\n+++ b/components/update_client/BUILD.gn\n@@ -357,8 +357,6 @@ source_set(\"unit_tests\") {\n     \"//third_party/puffin:libpuffpatch\",\n     \"//third_party/re2\",\n   ]\n-\n-  data_deps = [ \"//components/test/data/update_client/puffin_patch_test:puffin_patch_test_files\" ]\n }\n \n fuzzer_test(\"update_client_protocol_serializer_fuzzer\") {\n--- a/content/shell/BUILD.gn\n+++ b/content/shell/BUILD.gn\n@@ -849,10 +849,6 @@ if (is_apple) {\n       deps = [ \"//third_party/icu:icudata\" ]\n     }\n \n-    if (is_mac) {\n-      sources += [ \"//ui/gl/resources/angle-metal/gpu_shader_cache.bin\" ]\n-    }\n-\n     if (v8_use_external_startup_data) {\n       public_deps += [ \"//v8\" ]\n       if (use_v8_context_snapshot) {\n--- a/media/webrtc/BUILD.gn\n+++ b/media/webrtc/BUILD.gn\n@@ -26,7 +26,6 @@ component(\"webrtc\") {\n   deps = [\n     \"//base\",\n     \"//build:chromecast_buildflags\",\n-    \"//components/optimization_guide/core/inference:op_resolver\",\n     \"//media\",\n     \"//third_party/webrtc_overrides:webrtc_component\",\n   ]\n--- a/media/webrtc/helpers.cc\n+++ b/media/webrtc/helpers.cc\n@@ -158,23 +158,6 @@ CreateWebRtcAudioProcessingModule(\n       webrtc::EchoCanceller3Config::CreateDefaultMultichannelConfig();\n   std::unique_ptr<webrtc::NeuralResidualEchoEstimator> echo_estimator;\n \n-  // Fuchsia does not use the optimization guide.\n-  // Avoid linking the op resolver to keep Fuchsia binary size down.\n-  // TODO(crbug.com/450466837): Investigate if this build guard can be avoided.\n-#if !BUILDFLAG(IS_FUCHSIA)\n-  if (residual_echo_estimator_model) {\n-    optimization_guide::TFLiteOpResolver op_resolver;\n-    echo_estimator = webrtc::CreateNeuralResidualEchoEstimator(\n-        residual_echo_estimator_model, &op_resolver);\n-    if (echo_estimator) {\n-      aec3_config = echo_estimator->GetConfiguration(/*multi_channel=*/false);\n-      multichannel_aec3_config =\n-          echo_estimator->GetConfiguration(/*multi_channel=*/true);\n-    } else {\n-      LOG(ERROR) << \"Failed to initialize neural residual echo estimator.\";\n-    }\n-  }\n-#endif  // !BUILDFLAG(IS_FUCHSIA)\n \n #if BUILDFLAG(SYSTEM_LOOPBACK_AS_AEC_REFERENCE)\n   if (settings.use_loopback_aec_reference) {\n--- a/services/on_device_model/on_device_model.gni\n+++ b/services/on_device_model/on_device_model.gni\n@@ -14,7 +14,7 @@ declare_args() {\n declare_args() {\n   # The on device model service is only enabled on a subset of platforms.\n   # Exclude it on other platforms due to binary size.\n-  use_on_device_model_service = is_win || is_mac || is_linux || is_ios || is_cbx\n+  use_on_device_model_service = false\n }\n \n declare_args() {\n--- a/services/passage_embeddings/passage_embeddings_service.cc\n+++ b/services/passage_embeddings/passage_embeddings_service.cc\n@@ -23,7 +23,6 @@ PassageEmbeddingsService::~PassageEmbedd\n \n #if BUILDFLAG(BUILD_WITH_TFLITE_LIB)\n void PassageEmbeddingsService::OnEmbedderDisconnect() {\n-  embedder_.reset();\n }\n #endif\n \n--- a/services/passage_embeddings/passage_embeddings_service.h\n+++ b/services/passage_embeddings/passage_embeddings_service.h\n@@ -11,7 +11,6 @@\n \n namespace passage_embeddings {\n \n-class PassageEmbedder;\n \n // Class implementation of the passage embeddings service mojo interface.\n class PassageEmbeddingsService : public mojom::PassageEmbeddingsService {\n--- a/services/screen_ai/buildflags/features.gni\n+++ b/services/screen_ai/buildflags/features.gni\n@@ -6,14 +6,13 @@ import(\"//build/config/sanitizers/saniti\n \n declare_args() {\n   # Screen AI service is only supported on desktop platforms.\n-  enable_screen_ai_service = is_linux || is_mac || is_chromeos || is_win\n+  enable_screen_ai_service = false\n \n   # Screen AI library is not available for browser tests on ChromeOS. Tast tests\n   # cover library's OCR functionality on ChromeOS.\n   enable_screen_ai_browsertests =\n-      is_linux || (is_mac && (target_cpu == \"arm64\" || target_cpu == \"x64\")) ||\n-      (is_win && (target_cpu == \"x64\" || target_cpu == \"x86\"))\n+      false\n \n   # Screen AI library is not available for MSAN and UBSAN.\n-  use_fake_screen_ai = is_msan || is_ubsan || is_ubsan_vptr || is_ubsan_security\n+  use_fake_screen_ai = false\n }\n--- a/third_party/devtools-frontend/src/front_end/BUILD.gn\n+++ b/third_party/devtools-frontend/src/front_end/BUILD.gn\n@@ -213,7 +213,6 @@ group(\"unittests\") {\n     \"panels/timeline:unittests\",\n     \"panels/timeline/components:unittests\",\n     \"panels/timeline/components/insights:unittests\",\n-    \"panels/timeline/fixtures/traces\",\n     \"panels/timeline/overlays:unittests\",\n     \"panels/timeline/overlays/components:unittests\",\n     \"panels/timeline/track_appenders:unittests\",\n--- a/third_party/devtools-frontend/src/front_end/models/trace/lantern/core/BUILD.gn\n+++ b/third_party/devtools-frontend/src/front_end/models/trace/lantern/core/BUILD.gn\n@@ -38,5 +38,4 @@ ts_library(\"unittests\") {\n     \"../testing:bundle\",\n   ]\n \n-  public_deps = [ \"../../../../panels/timeline/fixtures/traces\" ]\n }\n--- a/third_party/devtools-frontend/src/front_end/models/trace/lantern/metrics/BUILD.gn\n+++ b/third_party/devtools-frontend/src/front_end/models/trace/lantern/metrics/BUILD.gn\n@@ -54,5 +54,4 @@ ts_library(\"unittests\") {\n     \"../testing:bundle\",\n   ]\n \n-  public_deps = [ \"../../../../panels/timeline/fixtures/traces\" ]\n }\n--- a/third_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/BUILD.gn\n+++ b/third_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/BUILD.gn\n@@ -51,5 +51,4 @@ ts_library(\"unittests\") {\n     \"../testing:bundle\",\n   ]\n \n-  public_deps = [ \"../../../../panels/timeline/fixtures/traces\" ]\n }\n--- a/third_party/puffin/BUILD.gn\n+++ b/third_party/puffin/BUILD.gn\n@@ -115,7 +115,6 @@ executable(\"puffin_unittest\") {\n     \"src/unittest_common.cc\",\n     \"src/utils_unittest.cc\",\n   ]\n-  data_deps = [ \"//components/test/data/update_client/puffin_patch_test:puffin_patch_test_files\" ]\n   deps = [\n     \":libpuffdiff\",\n     \":libpuffpatch\",\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/fix-building-without-safebrowsing.patch",
    "content": "# Additional changes to Inox's fix-building-without-safebrowsing.patch\n\n--- a/chrome/browser/BUILD.gn\n+++ b/chrome/browser/BUILD.gn\n@@ -552,8 +552,6 @@ static_library(\"browser\") {\n     \"idle/idle_detection_permission_context.h\",\n     \"interstitials/chrome_settings_page_helper.cc\",\n     \"interstitials/chrome_settings_page_helper.h\",\n-    \"interstitials/enterprise_util.cc\",\n-    \"interstitials/enterprise_util.h\",\n     \"invalidation/profile_invalidation_provider_factory.cc\",\n     \"invalidation/profile_invalidation_provider_factory.h\",\n     \"k_anonymity_service/k_anonymity_service_factory.cc\",\n@@ -2314,7 +2312,6 @@ static_library(\"browser\") {\n     \"//components/resources\",\n     \"//components/safe_browsing/content/browser\",\n     \"//components/safe_browsing/content/browser:safe_browsing_service\",\n-    \"//components/safe_browsing/content/browser/notification_content_detection\",\n     \"//components/safe_browsing/content/browser/password_protection\",\n     \"//components/safe_browsing/content/browser/web_ui\",\n     \"//components/safe_browsing/content/common/proto:download_file_types_proto\",\n@@ -3920,10 +3917,6 @@ static_library(\"browser\") {\n       \"new_tab_page/modules/modules_switches.h\",\n       \"new_tab_page/modules/new_tab_page_modules.cc\",\n       \"new_tab_page/modules/new_tab_page_modules.h\",\n-      \"new_tab_page/modules/safe_browsing/safe_browsing_handler.cc\",\n-      \"new_tab_page/modules/safe_browsing/safe_browsing_handler.h\",\n-      \"new_tab_page/modules/safe_browsing/safe_browsing_prefs.cc\",\n-      \"new_tab_page/modules/safe_browsing/safe_browsing_prefs.h\",\n       \"new_tab_page/modules/v2/authentication/microsoft_auth_page_handler.cc\",\n       \"new_tab_page/modules/v2/authentication/microsoft_auth_page_handler.h\",\n       \"new_tab_page/modules/v2/calendar/calendar_fake_data_helper.cc\",\n@@ -8604,7 +8597,6 @@ static_library(\"browser_generated_files\"\n     public_deps += [\n       \"//chrome/browser/lens/core/mojom:mojo_bindings\",\n       \"//chrome/browser/new_tab_page/modules/file_suggestion:mojo_bindings\",\n-      \"//chrome/browser/new_tab_page/modules/safe_browsing:mojo_bindings\",\n       \"//chrome/browser/new_tab_page/modules/v2/authentication:mojo_bindings\",\n       \"//chrome/browser/new_tab_page/modules/v2/calendar:mojo_bindings\",\n       \"//chrome/browser/new_tab_page/modules/v2/most_relevant_tab_resumption:mojo_bindings\",\n@@ -9077,8 +9069,6 @@ static_library(\"test_support\") {\n     \"//components/reporting/util:status\",\n     \"//components/reporting/util:status_macros\",\n     \"//components/reporting/util:task_runner_context\",\n-    \"//components/safe_browsing/content/browser/notification_content_detection\",\n-    \"//components/safe_browsing/content/browser/notification_content_detection:test_utils\",\n     \"//components/safe_browsing/core/common/proto:crx_info_proto\",\n     \"//components/safe_browsing/core/common/proto:csd_proto\",\n     \"//components/search_engines:test_support\",\n--- a/chrome/browser/content_settings/generated_javascript_optimizer_pref.cc\n+++ b/chrome/browser/content_settings/generated_javascript_optimizer_pref.cc\n@@ -30,7 +30,7 @@ GeneratedJavascriptOptimizerPref::Genera\n   user_prefs_registrar_.Init(profile->GetPrefs());\n   user_prefs_registrar_.AddMultiple(\n       {prefs::kJavascriptOptimizerBlockedForUnfamiliarSites,\n-       prefs::kSafeBrowsingEnabled},\n+       },\n       base::BindRepeating(\n           &GeneratedJavascriptOptimizerPref::OnPreferencesChanged,\n           base::Unretained(this)));\n@@ -98,7 +98,6 @@ PrefObject GeneratedJavascriptOptimizerP\n         &pref_object, SettingSource::kPolicy);\n   }\n \n-  if (!safe_browsing::IsSafeBrowsingEnabled(*profile_->GetPrefs())) {\n     pref_object.enforcement =\n         extensions::api::settings_private::Enforcement::kEnforced;\n     pref_object.controlled_by =\n@@ -109,7 +108,6 @@ PrefObject GeneratedJavascriptOptimizerP\n     user_selectable_values.Append(\n         base::Value(static_cast<int>(JavascriptOptimizerSetting::kBlocked)));\n     pref_object.user_selectable_values = std::move(user_selectable_values);\n-  }\n \n   return pref_object;\n }\n--- a/chrome/browser/download/bubble/download_bubble_ui_controller.cc\n+++ b/chrome/browser/download/bubble/download_bubble_ui_controller.cc\n@@ -47,7 +47,6 @@\n #include \"components/offline_items_collection/core/offline_content_aggregator.h\"\n #include \"components/safe_browsing/buildflags.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/download_item_utils.h\"\n #include \"content/public/browser/download_manager.h\"\n \n@@ -274,14 +273,6 @@ void DownloadBubbleUIController::Process\n   switch (command) {\n     case DownloadCommands::KEEP:\n     case DownloadCommands::DISCARD: {\n-      if (safe_browsing::IsSafeBrowsingSurveysEnabled(*profile_->GetPrefs())) {\n-        TrustSafetySentimentService* trust_safety_sentiment_service =\n-            TrustSafetySentimentServiceFactory::GetForProfile(profile_);\n-        if (trust_safety_sentiment_service) {\n-          trust_safety_sentiment_service->InteractedWithDownloadWarningUI(\n-              warning_surface, warning_action);\n-        }\n-      }\n       DownloadItemWarningData::AddWarningActionEvent(item, warning_surface,\n                                                      warning_action);\n       // Launch a HaTS survey. Note this needs to come before the command is\n--- a/chrome/browser/download/chrome_download_manager_delegate.cc\n+++ b/chrome/browser/download/chrome_download_manager_delegate.cc\n@@ -184,7 +184,6 @@ using content::DownloadManager;\n using download::DownloadItem;\n using download::DownloadPathReservationTracker;\n using download::PathValidationResult;\n-using safe_browsing::DownloadFileType;\n using ConnectionType = net::NetworkChangeNotifier::ConnectionType;\n \n #if BUILDFLAG(SAFE_BROWSING_DOWNLOAD_PROTECTION)\n@@ -1989,7 +1988,6 @@ void ChromeDownloadManagerDelegate::OnDo\n     DownloadItemModel model(item);\n     model.DetermineAndSetShouldPreferOpeningInBrowser(\n         target_info.target_path, target_info.is_filetype_handled_safely);\n-    model.SetDangerLevel(danger_level);\n   }\n   if (ShouldBlockFile(item, target_info.danger_type)) {\n     MaybeReportDangerousDownloadBlocked(\n@@ -2070,49 +2068,20 @@ bool ChromeDownloadManagerDelegate::IsOp\n bool ChromeDownloadManagerDelegate::ShouldBlockFile(\n     download::DownloadItem* item,\n     download::DownloadDangerType danger_type) const {\n-  // Chrome-initiated background downloads should not be blocked.\n-  if (item && !item->RequireSafetyChecks()) {\n-    return false;\n-  }\n-\n   policy::DownloadRestriction download_restriction =\n       download_prefs_->download_restriction();\n \n-  if (IsDangerTypeBlocked(danger_type))\n-    return true;\n-\n-  bool file_type_dangerous =\n-      (item && DownloadItemModel(item).GetDangerLevel() !=\n-                   DownloadFileType::NOT_DANGEROUS);\n-\n   switch (download_restriction) {\n     case (policy::DownloadRestriction::NONE):\n       return false;\n \n-    case (policy::DownloadRestriction::POTENTIALLY_DANGEROUS_FILES):\n-      return danger_type != download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS ||\n-             file_type_dangerous;\n-\n-    case (policy::DownloadRestriction::DANGEROUS_FILES): {\n-      return (danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_CONTENT ||\n-              danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_FILE ||\n-              danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_URL ||\n-              danger_type ==\n-                  download::DOWNLOAD_DANGER_TYPE_DANGEROUS_ACCOUNT_COMPROMISE ||\n-              file_type_dangerous);\n-    }\n-\n-    case (policy::DownloadRestriction::MALICIOUS_FILES): {\n-      return (danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_CONTENT ||\n-              danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_HOST ||\n-              danger_type == download::DOWNLOAD_DANGER_TYPE_DANGEROUS_URL ||\n-              danger_type ==\n-                  download::DOWNLOAD_DANGER_TYPE_DANGEROUS_ACCOUNT_COMPROMISE);\n-    }\n-\n     case (policy::DownloadRestriction::ALL_FILES):\n       return true;\n \n+    // DownloadRestrictions policy key values 1, 2 and 4 treated as invalid\n+    case (policy::DownloadRestriction::POTENTIALLY_DANGEROUS_FILES):\n+    case (policy::DownloadRestriction::DANGEROUS_FILES):\n+    case (policy::DownloadRestriction::MALICIOUS_FILES):\n     default:\n       LOG(ERROR) << \"Invalid download restriction value: \"\n                  << static_cast<int>(download_restriction);\n--- a/chrome/browser/download/download_target_determiner.cc\n+++ b/chrome/browser/download/download_target_determiner.cc\n@@ -1265,14 +1265,7 @@ DownloadFileType::DangerLevel DownloadTa\n \n std::optional<base::Time>\n DownloadTargetDeterminer::GetLastDownloadBypassTimestamp() const {\n-  safe_browsing::SafeBrowsingMetricsCollector* metrics_collector =\n-      safe_browsing::SafeBrowsingMetricsCollectorFactory::GetForProfile(\n-          GetProfile());\n-  // metrics_collector can be null in incognito.\n-  return metrics_collector ? metrics_collector->GetLatestEventTimestamp(\n-                                 safe_browsing::SafeBrowsingMetricsCollector::\n-                                     EventType::DANGEROUS_DOWNLOAD_BYPASS)\n-                           : std::nullopt;\n+  return std::nullopt;\n }\n \n void DownloadTargetDeterminer::OnDownloadDestroyed(\n--- a/chrome/browser/download/download_warning_desktop_hats_utils.cc\n+++ b/chrome/browser/download/download_warning_desktop_hats_utils.cc\n@@ -32,7 +32,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/buildflags.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/download_item_utils.h\"\n \n namespace {\n@@ -106,17 +105,6 @@ std::string ElapsedTimeToSecondsString(b\n   return base::NumberToString(elapsed_time.InSeconds());\n }\n \n-std::string SafeBrowsingStateToString(\n-    safe_browsing::SafeBrowsingState sb_state) {\n-  switch (sb_state) {\n-    case safe_browsing::SafeBrowsingState::NO_SAFE_BROWSING:\n-      return \"No Safe Browsing\";\n-    case safe_browsing::SafeBrowsingState::STANDARD_PROTECTION:\n-      return \"Standard Protection\";\n-    case safe_browsing::SafeBrowsingState::ENHANCED_PROTECTION:\n-      return \"Enhanced Protection\";\n-  }\n-}\n \n // Produces a string consisting of comma-separated action events, each of which\n // consists of the surface, action, and relative timestamp (ms) separated by\n@@ -243,49 +231,21 @@ DownloadWarningHatsProductSpecificData::\n     return psd;\n   }\n \n-  psd.string_data_.insert(\n-      {Fields::kSafeBrowsingState,\n-       SafeBrowsingStateToString(\n-           safe_browsing::GetSafeBrowsingState(*profile->GetPrefs()))});\n \n   psd.bits_data_.insert({Fields::kPartialViewEnabled,\n                          profile->GetPrefs()->GetBoolean(\n                              prefs::kDownloadBubblePartialViewEnabled)});\n \n-  // URL and filename logged only for Safe Browsing users.\n-  if (safe_browsing::IsSafeBrowsingEnabled(*profile->GetPrefs())) {\n-    psd.string_data_.insert({Fields::kUrlDownload,\n-                             download_item->GetURL().possibly_invalid_spec()});\n-    psd.string_data_.insert(\n-        {Fields::kUrlReferrer,\n-         download_item->GetReferrerUrl().possibly_invalid_spec()});\n-    psd.string_data_.insert(\n-        {Fields::kFilename,\n-         base::UTF16ToUTF8(\n-             download_item->GetFileNameToReportUser().LossyDisplayName())});\n-  } else {\n     psd.string_data_.insert({Fields::kUrlDownload, kNotLoggedNoSafeBrowsing});\n     psd.string_data_.insert({Fields::kUrlReferrer, kNotLoggedNoSafeBrowsing});\n     psd.string_data_.insert({Fields::kFilename, kNotLoggedNoSafeBrowsing});\n-  }\n \n   // Interaction details logged only for ESB users.\n   std::optional<DownloadItemWarningData::WarningSurface>\n       warning_first_shown_surface =\n           DownloadItemWarningData::WarningFirstShownSurface(download_item);\n-  if (warning_first_shown_surface &&\n-      safe_browsing::IsEnhancedProtectionEnabled(*profile->GetPrefs())) {\n-    std::vector<DownloadItemWarningData::WarningActionEvent>\n-        warning_action_events =\n-            DownloadItemWarningData::GetWarningActionEvents(download_item);\n-    psd.string_data_.insert(\n-        {Fields::kWarningInteractions,\n-         SerializeWarningActionEvents(*warning_first_shown_surface,\n-                                      warning_action_events)});\n-  } else {\n     psd.string_data_.insert(\n         {Fields::kWarningInteractions, kNotLoggedNoEnhancedProtection});\n-  }\n \n   return psd;\n }\n@@ -477,40 +437,7 @@ bool CanShowDownloadWarningHatsSurvey(do\n \n std::optional<std::string> MaybeGetDownloadWarningHatsTrigger(\n     DownloadWarningHatsType survey_type) {\n-  if (!base::FeatureList::IsEnabled(safe_browsing::kDownloadWarningSurvey)) {\n-    return std::nullopt;\n-  }\n-\n-  const int eligible_survey_type =\n-      safe_browsing::kDownloadWarningSurveyType.Get();\n-\n-  // Configuration error.\n-  if (eligible_survey_type < 0 ||\n-      eligible_survey_type >\n-          static_cast<int>(DownloadWarningHatsType::kMaxValue)) {\n-    return std::nullopt;\n-  }\n-\n-  // User is not assigned to be eligible for this type.\n-  if (static_cast<DownloadWarningHatsType>(eligible_survey_type) !=\n-      survey_type) {\n     return std::nullopt;\n-  }\n-\n-  switch (survey_type) {\n-    case DownloadWarningHatsType::kDownloadBubbleBypass:\n-      return kHatsSurveyTriggerDownloadWarningBubbleBypass;\n-    case DownloadWarningHatsType::kDownloadBubbleHeed:\n-      return kHatsSurveyTriggerDownloadWarningBubbleHeed;\n-    case DownloadWarningHatsType::kDownloadBubbleIgnore:\n-      return kHatsSurveyTriggerDownloadWarningBubbleIgnore;\n-    case DownloadWarningHatsType::kDownloadsPageBypass:\n-      return kHatsSurveyTriggerDownloadWarningPageBypass;\n-    case DownloadWarningHatsType::kDownloadsPageHeed:\n-      return kHatsSurveyTriggerDownloadWarningPageHeed;\n-    case DownloadWarningHatsType::kDownloadsPageIgnore:\n-      return kHatsSurveyTriggerDownloadWarningPageIgnore;\n-  }\n }\n \n base::TimeDelta GetIgnoreDownloadBubbleWarningDelay() {\n--- a/chrome/browser/enterprise/connectors/analysis/content_analysis_delegate.cc\n+++ b/chrome/browser/enterprise/connectors/analysis/content_analysis_delegate.cc\n@@ -38,8 +38,6 @@\n #include \"chrome/browser/profiles/profile.h\"\n #include \"chrome/browser/safe_browsing/chrome_enterprise_url_lookup_service_factory.h\"\n #include \"chrome/browser/safe_browsing/cloud_content_scanning/deep_scanning_utils.h\"\n-#include \"chrome/browser/safe_browsing/cloud_content_scanning/file_analysis_request.h\"\n-#include \"chrome/browser/safe_browsing/download_protection/check_client_download_request.h\"\n #include \"chrome/browser/safe_browsing/safe_browsing_navigation_observer_manager_factory.h\"\n #include \"chrome/browser/signin/identity_manager_factory.h\"\n #include \"chrome/grit/generated_resources.h\"\n--- a/chrome/browser/enterprise/connectors/analysis/content_analysis_downloads_delegate.cc\n+++ b/chrome/browser/enterprise/connectors/analysis/content_analysis_downloads_delegate.cc\n@@ -125,7 +125,7 @@ ContentAnalysisDownloadsDelegate::GetCus\n }\n \n bool ContentAnalysisDownloadsDelegate::BypassRequiresJustification() const {\n-  return bypass_justification_required_;\n+  return false;\n }\n \n std::u16string ContentAnalysisDownloadsDelegate::GetBypassJustificationLabel()\n--- a/chrome/browser/enterprise/connectors/analysis/files_request_handler.cc\n+++ b/chrome/browser/enterprise/connectors/analysis/files_request_handler.cc\n@@ -174,63 +174,12 @@ void FilesRequestHandler::FileRequestCal\n }\n \n bool FilesRequestHandler::UploadDataImpl() {\n-  safe_browsing::IncrementCrashKey(\n-      safe_browsing::ScanningCrashKey::PENDING_FILE_UPLOADS, paths_.size());\n-\n-  if (!paths_.empty()) {\n-    safe_browsing::IncrementCrashKey(\n-        safe_browsing::ScanningCrashKey::TOTAL_FILE_UPLOADS, paths_.size());\n-\n-    std::vector<safe_browsing::FileOpeningJob::FileOpeningTask> tasks(\n-        paths_.size());\n-    for (size_t i = 0; i < paths_.size(); ++i)\n-      tasks[i].request = PrepareFileRequest(i);\n-\n-    file_access::RequestFilesAccessForSystem(\n-        paths_,\n-        base::BindOnce(&FilesRequestHandler::CreateFileOpeningJob,\n-                       weak_ptr_factory_.GetWeakPtr(), std::move(tasks)));\n-\n-    if (auto prefix = AccessPointToUmaHistogramPrefix(access_point_);\n-        !prefix.empty()) {\n-      base::UmaHistogramCustomCounts(prefix + \".FileCount\", paths_.size(), 1,\n-                                     1000, 100);\n-    }\n-\n-    return true;\n-  }\n-\n   // If zero files were passed to the FilesRequestHandler, we call the callback\n   // directly.\n   MaybeCompleteScanRequest();\n   return false;\n }\n \n-safe_browsing::FileAnalysisRequest* FilesRequestHandler::PrepareFileRequest(\n-    size_t index) {\n-  DCHECK_LT(index, paths_.size());\n-  base::FilePath path = paths_[index];\n-  auto request = std::make_unique<safe_browsing::FileAnalysisRequest>(\n-      content_analysis_info_->settings(), path, path.BaseName(),\n-      /*mime_type*/ \"\",\n-      /* delay_opening_file */ true,\n-      base::BindOnce(&FilesRequestHandler::FileRequestCallback,\n-                     weak_ptr_factory_.GetWeakPtr(), index),\n-      base::BindOnce(&FilesRequestHandler::FileRequestStartCallback,\n-                     weak_ptr_factory_.GetWeakPtr(), index));\n-  safe_browsing::FileAnalysisRequest* request_raw = request.get();\n-  content_analysis_info_->InitializeRequest(request_raw);\n-  request_raw->set_analysis_connector(\n-      AccessPointToEnterpriseConnector(access_point_));\n-  request_raw->set_source(source_);\n-  request_raw->set_destination(destination_);\n-  request_raw->GetRequestData(base::BindOnce(\n-      &FilesRequestHandler::OnGotFileInfo, weak_ptr_factory_.GetWeakPtr(),\n-      std::move(request), index));\n-\n-  return request_raw;\n-}\n-\n void FilesRequestHandler::OnGotFileInfo(\n     std::unique_ptr<BinaryUploadRequest> request,\n     size_t index,\n@@ -277,19 +226,6 @@ void FilesRequestHandler::OnGotFileInfo(\n void FilesRequestHandler::FinishRequestEarly(\n     std::unique_ptr<BinaryUploadRequest> request,\n     ScanRequestUploadResult result) {\n-  // We add the request here in case we never actually uploaded anything, so it\n-  // wasn't added in OnGetRequestData\n-  safe_browsing::WebUIContentInfoSingleton::GetInstance()\n-      ->AddToDeepScanRequests(\n-          request->per_profile_request(),\n-          /*access_token*/ \"\",\n-          /*upload_info*/ ScanRequestUploadResultToString(result),\n-          /*upload_url=*/\"\", request->content_analysis_request());\n-  safe_browsing::WebUIContentInfoSingleton::GetInstance()\n-      ->AddToDeepScanResponses(\n-          /*token=*/\"\", ScanRequestUploadResultToString(result),\n-          enterprise_connectors::ContentAnalysisResponse());\n-\n   request->FinishRequest(result,\n                          enterprise_connectors::ContentAnalysisResponse());\n }\n--- a/chrome/browser/enterprise/connectors/analysis/files_request_handler.h\n+++ b/chrome/browser/enterprise/connectors/analysis/files_request_handler.h\n@@ -115,10 +115,6 @@ class FilesRequestHandler : public Reque\n       enterprise_connectors::ContentAnalysisResponse response);\n \n  private:\n-  // Prepares an upload request for the file at `path`.  If the file\n-  // cannot be uploaded it will have a failure verdict added to `result_`.\n-  safe_browsing::FileAnalysisRequest* PrepareFileRequest(size_t index);\n-\n   // Called when the file info for `path` has been fetched. Also begins the\n   // upload process.\n   void OnGotFileInfo(std::unique_ptr<BinaryUploadRequest> request,\n--- a/chrome/browser/enterprise/connectors/connectors_manager.cc\n+++ b/chrome/browser/enterprise/connectors/connectors_manager.cc\n@@ -169,26 +169,7 @@ void ConnectorsManager::OnAnalysisPrefCh\n }\n \n DataRegion ConnectorsManager::GetDataRegion(AnalysisConnector connector) const {\n-#if BUILDFLAG(IS_ANDROID)\n   return DataRegion::NO_PREFERENCE;\n-#else\n-  // Connector's policy scope determines the DRZ policy scope to use.\n-  policy::PolicyScope scope = static_cast<policy::PolicyScope>(\n-      prefs()->GetInteger(AnalysisConnectorScopePref(connector)));\n-\n-  const PrefService* pref_service =\n-      (scope == policy::PolicyScope::POLICY_SCOPE_MACHINE)\n-          ? g_browser_process->local_state()\n-          : prefs();\n-\n-  if (!pref_service ||\n-      !pref_service->HasPrefPath(prefs::kChromeDataRegionSetting)) {\n-    return DataRegion::NO_PREFERENCE;\n-  }\n-\n-  return ChromeDataRegionSettingToEnum(\n-      pref_service->GetInteger(prefs::kChromeDataRegionSetting));\n-#endif\n }\n \n }  // namespace enterprise_connectors\n--- a/chrome/browser/enterprise/connectors/device_trust/signals/decorators/common/context_signals_decorator.cc\n+++ b/chrome/browser/enterprise/connectors/device_trust/signals/decorators/common/context_signals_decorator.cc\n@@ -26,24 +26,6 @@ enum class PasswordProtectionTrigger {\n   kPhisingReuse = 3\n };\n \n-PasswordProtectionTrigger ConvertPasswordProtectionTrigger(\n-    const std::optional<safe_browsing::PasswordProtectionTrigger>&\n-        policy_value) {\n-  if (!policy_value) {\n-    return PasswordProtectionTrigger::kUnset;\n-  }\n-\n-  switch (policy_value.value()) {\n-    case safe_browsing::PASSWORD_PROTECTION_OFF:\n-      return PasswordProtectionTrigger::kOff;\n-    case safe_browsing::PASSWORD_REUSE:\n-      return PasswordProtectionTrigger::kPasswordReuse;\n-    case safe_browsing::PHISHING_REUSE:\n-      return PasswordProtectionTrigger::kPhisingReuse;\n-    case safe_browsing::PASSWORD_PROTECTION_TRIGGER_MAX:\n-      NOTREACHED();\n-  }\n-}\n \n }  // namespace\n \n@@ -73,16 +55,8 @@ void ContextSignalsDecorator::OnSignalsF\n               ToListValue(context_info.browser_affiliation_ids));\n   signals.Set(device_signals::names::kProfileAffiliationIds,\n               ToListValue(context_info.profile_affiliation_ids));\n-  signals.Set(device_signals::names::kRealtimeUrlCheckMode,\n-              static_cast<int32_t>(context_info.realtime_url_check_mode));\n-  signals.Set(\n-      device_signals::names::kSafeBrowsingProtectionLevel,\n-      static_cast<int32_t>(context_info.safe_browsing_protection_level));\n   signals.Set(device_signals::names::kSiteIsolationEnabled,\n               context_info.site_isolation_enabled);\n-  signals.Set(device_signals::names::kPasswordProtectionWarningTrigger,\n-              static_cast<int32_t>(ConvertPasswordProtectionTrigger(\n-                  context_info.password_protection_warning_trigger)));\n   signals.Set(device_signals::names::kChromeRemoteDesktopAppBlocked,\n               context_info.chrome_remote_desktop_app_blocked);\n   signals.Set(device_signals::names::kBuiltInDnsClientEnabled,\n--- a/chrome/browser/enterprise/connectors/referrer_cache_utils.cc\n+++ b/chrome/browser/enterprise/connectors/referrer_cache_utils.cc\n@@ -44,11 +44,6 @@ safe_browsing::ReferrerChain GetSafeBrow\n     const GURL& url,\n     content::WebContents& web_contents) {\n   safe_browsing::ReferrerChain referrers;\n-  safe_browsing::SafeBrowsingNavigationObserverManagerFactory::\n-      GetForBrowserContext(web_contents.GetBrowserContext())\n-          ->IdentifyReferrerChainByEventURL(\n-              url, sessions::SessionTabHelper::IdForTab(&web_contents),\n-              kReferrerUserGestureLimit, &referrers);\n   return referrers;\n }\n \n--- a/chrome/browser/enterprise/connectors/reporting/realtime_reporting_client.cc\n+++ b/chrome/browser/enterprise/connectors/reporting/realtime_reporting_client.cc\n@@ -278,20 +278,7 @@ void RealtimeReportingClient::SetProfile\n }\n \n std::string RealtimeReportingClient::GetProfileUserName() {\n-  if (!username_.empty()) {\n-    return username_;\n-  }\n-  username_ =\n-      identity_manager_ ? GetProfileEmail(identity_manager_) : std::string();\n-\n-#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)\n-  if (username_.empty()) {\n-    username_ = Profile::FromBrowserContext(context_)->GetPrefs()->GetString(\n-        enterprise_signin::prefs::kProfileUserEmail);\n-  }\n-#endif  // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)\n-\n-  return username_;\n+  return std::string();\n }\n \n std::string RealtimeReportingClient::GetProfileIdentifier() {\n--- a/chrome/browser/enterprise/connectors/reporting/telomere_reporting_context.cc\n+++ b/chrome/browser/enterprise/connectors/reporting/telomere_reporting_context.cc\n@@ -177,19 +177,6 @@ TelomereReportingContext* TelomereReport\n }\n \n RealtimeReportingClient* TelomereReportingContext::GetReportingClient() const {\n-  for (auto& it : active_profiles_) {\n-    Profile* profile = it.second;\n-    RealtimeReportingClient* reporting_client =\n-        RealtimeReportingClientFactory::GetForProfile(profile);\n-    if (!reporting_client) {\n-      continue;\n-    }\n-    std::optional<ReportingSettings> settings =\n-        reporting_client->GetReportingSettings();\n-    if (settings.has_value() && !settings->per_profile) {\n-      return reporting_client;\n-    }\n-  }\n   return nullptr;\n }\n \n--- a/chrome/browser/enterprise/data_protection/data_protection_navigation_observer.cc\n+++ b/chrome/browser/enterprise/data_protection/data_protection_navigation_observer.cc\n@@ -191,9 +191,7 @@ void LogVerdictSource(\n \n bool IsScreenshotAllowedByDataControls(content::BrowserContext* context,\n                                        const GURL& url) {\n-  auto* rules = data_controls::ChromeRulesServiceFactory::GetInstance()\n-                    ->GetForBrowserContext(context);\n-  return rules ? !rules->BlockScreenshots(url) : true;\n+  return true;\n }\n \n }  // namespace\n--- a/chrome/browser/enterprise/data_protection/data_protection_url_lookup_service.cc\n+++ b/chrome/browser/enterprise/data_protection/data_protection_url_lookup_service.cc\n@@ -138,8 +138,7 @@ DataProtectionUrlLookupServiceFactory::\n // static\n DataProtectionUrlLookupServiceFactory*\n DataProtectionUrlLookupServiceFactory::GetInstance() {\n-  static base::NoDestructor<DataProtectionUrlLookupServiceFactory> instance;\n-  return instance.get();\n+  return nullptr;\n }\n \n // static\n--- a/chrome/browser/enterprise/data_protection/data_protection_url_lookup_service.h\n+++ b/chrome/browser/enterprise/data_protection/data_protection_url_lookup_service.h\n@@ -90,7 +90,6 @@ class DataProtectionUrlLookupServiceFact\n  private:\n   DataProtectionUrlLookupServiceFactory();\n   ~DataProtectionUrlLookupServiceFactory() override;\n-  friend base::NoDestructor<DataProtectionUrlLookupServiceFactory>;\n \n   // BrowserContextKeyedServiceFactory:\n   std::unique_ptr<KeyedService> BuildServiceInstanceForBrowserContext(\n--- a/chrome/browser/enterprise/signals/context_info_fetcher.h\n+++ b/chrome/browser/enterprise/signals/context_info_fetcher.h\n@@ -6,6 +6,7 @@\n #define CHROME_BROWSER_ENTERPRISE_SIGNALS_CONTEXT_INFO_FETCHER_H_\n \n #include <string>\n+#include <memory>\n #include <vector>\n \n #include \"base/functional/callback_forward.h\"\n@@ -41,7 +42,6 @@ struct ContextInfo {\n   std::vector<std::string> on_bulk_data_entry_providers;\n   std::vector<std::string> on_print_providers;\n   std::vector<std::string> on_security_event_providers;\n-  enterprise_connectors::EnterpriseRealTimeUrlCheckMode realtime_url_check_mode;\n   std::string browser_version;\n   safe_browsing::SafeBrowsingState safe_browsing_protection_level;\n   bool site_isolation_enabled;\n--- a/chrome/browser/enterprise/signals/profile_signals_collector.cc\n+++ b/chrome/browser/enterprise/signals/profile_signals_collector.cc\n@@ -78,12 +78,8 @@ void ProfileSignalsCollector::GetProfile\n   signal_response.chrome_remote_desktop_app_blocked =\n       device_signals::GetChromeRemoteDesktopAppBlocked(\n           policy_blocklist_service_);\n-  signal_response.password_protection_warning_trigger =\n-      device_signals::GetPasswordProtectionWarningTrigger(profile_prefs_);\n   signal_response.profile_enrollment_domain =\n       device_signals::TryGetEnrollmentDomain(policy_manager_);\n-  signal_response.safe_browsing_protection_level =\n-      device_signals::GetSafeBrowsingProtectionLevel(profile_prefs_);\n   signal_response.site_isolation_enabled =\n       device_signals::GetSiteIsolationEnabled();\n   signal_response.profile_id = profile_id_service_->GetProfileId();\n--- a/chrome/browser/extensions/BUILD.gn\n+++ b/chrome/browser/extensions/BUILD.gn\n@@ -398,8 +398,6 @@ source_set(\"extensions\") {\n     \"mv2_experiment_stage.h\",\n     \"navigation_extension_enabler.cc\",\n     \"navigation_extension_enabler.h\",\n-    \"omaha_attributes_handler.cc\",\n-    \"omaha_attributes_handler.h\",\n     \"open_tab_helper.cc\",\n     \"open_tab_helper.h\",\n     \"pack_extension_job.cc\",\n--- a/chrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_api.cc\n+++ b/chrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_api.cc\n@@ -99,16 +99,8 @@ api::enterprise_reporting_private::Conte\n       signals.chrome_remote_desktop_app_blocked;\n   info.os_firewall = ToInfoSettingValue(signals.os_firewall);\n   info.system_dns_servers = std::move(signals.system_dns_servers);\n-  switch (signals.realtime_url_check_mode) {\n-    case enterprise_connectors::REAL_TIME_CHECK_DISABLED:\n       info.realtime_url_check_mode = extensions::api::\n           enterprise_reporting_private::RealtimeUrlCheckMode::kDisabled;\n-      break;\n-    case enterprise_connectors::REAL_TIME_CHECK_FOR_MAINFRAME_ENABLED:\n-      info.realtime_url_check_mode = extensions::api::\n-          enterprise_reporting_private::RealtimeUrlCheckMode::kEnabledMainFrame;\n-      break;\n-  }\n   info.browser_version = std::move(signals.browser_version);\n   info.built_in_dns_client_enabled = signals.built_in_dns_client_enabled;\n   info.enterprise_profile_id = signals.enterprise_profile_id;\n--- a/chrome/browser/extensions/api/settings_private/prefs_util.cc\n+++ b/chrome/browser/extensions/api/settings_private/prefs_util.cc\n@@ -410,8 +410,6 @@ const PrefsUtil::TypedPrefMap& PrefsUtil\n       settings_api::PrefType::kBoolean;\n   (*s_allowlist)[::kGeneratedHttpsFirstModePref] =\n       settings_api::PrefType::kNumber;\n-  (*s_allowlist)[::prefs::kSecuritySettingsBundle] =\n-      settings_api::PrefType::kNumber;\n   (*s_allowlist)[::safe_browsing::kGeneratedSecuritySettingsBundlePref] =\n       settings_api::PrefType::kNumber;\n \n--- a/chrome/browser/extensions/chrome_extension_system.cc\n+++ b/chrome/browser/extensions/chrome_extension_system.cc\n@@ -478,8 +478,6 @@ void ChromeExtensionSystem::InstallUpdat\n void ChromeExtensionSystem::PerformActionBasedOnOmahaAttributes(\n     const std::string& extension_id,\n     const base::DictValue& attributes) {\n-  extension_service()->PerformActionBasedOnOmahaAttributes(extension_id,\n-                                                           attributes);\n }\n \n }  // namespace extensions\n--- a/chrome/browser/extensions/extension_allowlist_factory.cc\n+++ b/chrome/browser/extensions/extension_allowlist_factory.cc\n@@ -48,7 +48,6 @@ ExtensionAllowlistFactory::ExtensionAllo\n   DependsOn(ExtensionPrefsFactory::GetInstance());\n   DependsOn(ExtensionRegistrarFactory::GetInstance());\n   DependsOn(ExtensionRegistryFactory::GetInstance());\n-  DependsOn(safe_browsing::SafeBrowsingMetricsCollectorFactory::GetInstance());\n }\n \n ExtensionAllowlistFactory::~ExtensionAllowlistFactory() = default;\n--- a/chrome/browser/extensions/extension_safety_check_utils.cc\n+++ b/chrome/browser/extensions/extension_safety_check_utils.cc\n@@ -265,9 +265,6 @@ developer::SafetyCheckWarningReason GetS\n       top_warning_reason =\n           developer::SafetyCheckWarningReason::kNoPrivacyPractice;\n \n-    } else if (SafetyCheckShouldShowOffstoreExtension(extension, profile,\n-                                                      cws_info)) {\n-      top_warning_reason = developer::SafetyCheckWarningReason::kOffstore;\n     }\n   }\n \n--- a/chrome/browser/extensions/extension_service.cc\n+++ b/chrome/browser/extensions/extension_service.cc\n@@ -53,7 +53,6 @@\n #include \"chrome/browser/extensions/installed_loader.h\"\n #include \"chrome/browser/extensions/manifest_v2_experiment_manager.h\"\n #include \"chrome/browser/extensions/mv2_experiment_stage.h\"\n-#include \"chrome/browser/extensions/omaha_attributes_handler.h\"\n #include \"chrome/browser/extensions/profile_util.h\"\n #include \"chrome/browser/extensions/sync/extension_sync_service.h\"\n #include \"chrome/browser/extensions/updater/chrome_extension_downloader_factory.h\"\n@@ -219,9 +218,6 @@ ExtensionService::ExtensionService(\n       extension_telemetry_service_verdict_handler_(extension_prefs,\n                                                    registry_,\n                                                    extension_registrar_),\n-      omaha_attributes_handler_(extension_prefs,\n-                                registry_,\n-                                extension_registrar_),\n       force_installed_tracker_(registry_, profile_),\n       force_installed_metrics_(registry_, profile_, &force_installed_tracker_),\n       corrupted_extension_reinstaller_(\n@@ -416,11 +412,6 @@ void ExtensionService::LoadExtensionsFro\n         << \"--load-extension is not allowed in Google Chrome, ignoring.\";\n     return;\n #else   // BUILDFLAG(GOOGLE_CHROME_BRANDING) && !BUILDFLAG(IS_CHROMEOS)\n-    if (safe_browsing::IsEnhancedProtectionEnabled(*profile_->GetPrefs())) {\n-      VLOG(1) << \"--load-extension is not allowed for users opted into \"\n-              << \"Enhanced Safe Browsing, ignoring.\";\n-      return;\n-    }\n     if (ShouldBlockCommandLineExtension(*profile_)) {\n       // TODO(crbug.com/401529219): Deprecate this restriction once\n       // --load-extension removal on Chrome builds is fully launched.\n@@ -476,17 +467,6 @@ void ExtensionService::LoadSigninProfile\n }\n #endif\n \n-void ExtensionService::PerformActionBasedOnOmahaAttributes(\n-    const std::string& extension_id,\n-    const base::DictValue& attributes) {\n-  DCHECK_CURRENTLY_ON(BrowserThread::UI);\n-  omaha_attributes_handler_.PerformActionBasedOnOmahaAttributes(extension_id,\n-                                                                attributes);\n-  allowlist_->PerformActionBasedOnOmahaAttributes(extension_id, attributes);\n-  // Show an error for the newly blocklisted extension.\n-  error_controller_->ShowErrorIfNeeded();\n-}\n-\n void ExtensionService::PerformActionBasedOnExtensionTelemetryServiceVerdicts(\n     const Blocklist::BlocklistStateMap& blocklist_state_map) {\n   DCHECK_CURRENTLY_ON(BrowserThread::UI);\n--- a/chrome/browser/extensions/extension_service.h\n+++ b/chrome/browser/extensions/extension_service.h\n@@ -25,7 +25,6 @@\n #include \"chrome/browser/extensions/extension_telemetry_service_verdict_handler.h\"\n #include \"chrome/browser/extensions/forced_extensions/force_installed_metrics.h\"\n #include \"chrome/browser/extensions/forced_extensions/force_installed_tracker.h\"\n-#include \"chrome/browser/extensions/omaha_attributes_handler.h\"\n #include \"chrome/browser/extensions/safe_browsing_verdict_handler.h\"\n #include \"chrome/browser/policy/cloud/extension_install_policy_service.h\"\n #include \"chrome/browser/profiles/profile_manager_observer.h\"\n@@ -170,10 +169,6 @@ class ExtensionService : public Extensio\n   // KeyedService two-phase shutdown.\n   void Shutdown();\n \n-  // Performs action based on Omaha attributes for the extension.\n-  void PerformActionBasedOnOmahaAttributes(const std::string& extension_id,\n-                                           const base::DictValue& attributes);\n-\n   // Performs action based on verdicts received from the Extension Telemetry\n   // server. Currently, these verdicts are limited to off-store extensions.\n   void PerformActionBasedOnExtensionTelemetryServiceVerdicts(\n@@ -388,8 +383,6 @@ class ExtensionService : public Extensio\n   ExtensionTelemetryServiceVerdictHandler\n       extension_telemetry_service_verdict_handler_;\n \n-  // Needs `extension_registrar_` during construction.\n-  OmahaAttributesHandler omaha_attributes_handler_;\n \n   // Tracker of enterprise policy forced installation.\n   ForceInstalledTracker force_installed_tracker_;\n--- a/chrome/browser/extensions/extension_telemetry_service_verdict_handler.cc\n+++ b/chrome/browser/extensions/extension_telemetry_service_verdict_handler.cc\n@@ -76,14 +76,12 @@ void ExtensionTelemetryServiceVerdictHan\n         blocklist_prefs::SetExtensionTelemetryServiceBlocklistState(\n             extension_id, BitMapBlocklistState::NOT_BLOCKLISTED,\n             extension_prefs_);\n-        registrar_->OnBlocklistStateRemoved(extension_id);\n         ReportOffstoreExtensionReenabled(current_state);\n         break;\n       case BLOCKLISTED_MALWARE:\n         blocklist_prefs::SetExtensionTelemetryServiceBlocklistState(\n             extension_id, BitMapBlocklistState::BLOCKLISTED_MALWARE,\n             extension_prefs_);\n-        registrar_->OnBlocklistStateAdded(extension_id);\n         ReportOffstoreExtensionDisabled(\n             ExtensionTelemetryDisableReason::kMalware);\n         break;\n--- a/chrome/browser/extensions/safe_browsing_verdict_handler.cc\n+++ b/chrome/browser/extensions/safe_browsing_verdict_handler.cc\n@@ -123,7 +123,6 @@ void SafeBrowsingVerdictHandler::UpdateB\n     blocklist_.Remove(id);\n     blocklist_prefs::SetSafeBrowsingExtensionBlocklistState(\n         id, BitMapBlocklistState::NOT_BLOCKLISTED, extension_prefs_);\n-    registrar_->OnBlocklistStateRemoved(id);\n     UMA_HISTOGRAM_ENUMERATION(\"ExtensionBlacklist.UnblacklistInstalled\",\n                               extension->location());\n   }\n@@ -137,7 +136,6 @@ void SafeBrowsingVerdictHandler::UpdateB\n     blocklist_.Insert(extension);\n     blocklist_prefs::SetSafeBrowsingExtensionBlocklistState(\n         id, BitMapBlocklistState::BLOCKLISTED_MALWARE, extension_prefs_);\n-    registrar_->OnBlocklistStateAdded(id);\n     UMA_HISTOGRAM_ENUMERATION(\"ExtensionBlacklist.BlacklistInstalled\",\n                               extension->location());\n   }\n@@ -161,7 +159,6 @@ void SafeBrowsingVerdictHandler::UpdateG\n     blocklist_prefs::SetSafeBrowsingExtensionBlocklistState(\n         extension->id(), BitMapBlocklistState::NOT_BLOCKLISTED,\n         extension_prefs_);\n-    registrar_->OnGreylistStateRemoved(extension->id());\n     UMA_HISTOGRAM_ENUMERATION(\"Extensions.Greylist.Enabled\",\n                               extension->location());\n   }\n@@ -181,7 +178,6 @@ void SafeBrowsingVerdictHandler::UpdateG\n         blocklist_prefs::BlocklistStateToBitMapBlocklistState(greylist_state);\n     blocklist_prefs::SetSafeBrowsingExtensionBlocklistState(\n         extension->id(), bitmap_greylist_state, extension_prefs_);\n-    registrar_->OnGreylistStateAdded(id, bitmap_greylist_state);\n     UMA_HISTOGRAM_ENUMERATION(\"Extensions.Greylist.Disabled\",\n                               extension->location());\n   }\n--- a/chrome/browser/feedback/report_unsafe_site_dialog.cc\n+++ b/chrome/browser/feedback/report_unsafe_site_dialog.cc\n@@ -9,16 +9,13 @@\n #include \"chrome/browser/profiles/profile.h\"\n #include \"chrome/common/pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace feedback {\n \n // static\n bool ReportUnsafeSiteDialog::IsEnabled(const Profile& profile) {\n   const PrefService* prefs = profile.GetPrefs();\n-  return base::FeatureList::IsEnabled(features::kReportUnsafeSite) &&\n-         prefs->GetBoolean(prefs::kUserFeedbackAllowed) &&\n-         safe_browsing::IsSafeBrowsingEnabled(*prefs);\n+  return false;\n }\n \n }  // namespace feedback\n--- a/chrome/browser/metrics/chrome_metrics_service_client.cc\n+++ b/chrome/browser/metrics/chrome_metrics_service_client.cc\n@@ -861,13 +861,6 @@ void ChromeMetricsServiceClient::Registe\n   metrics_service_->RegisterMetricsProvider(MakeDemographicMetricsProvider(\n       metrics::MetricsLogUploader::MetricServiceType::UMA));\n \n-  // TODO(crbug.com/40765618): Add metrics registration for WebView and iOS.\n-  metrics_service_->RegisterMetricsProvider(\n-      std::make_unique<safe_browsing::SafeBrowsingMetricsProvider>());\n-  if (base::FeatureList::IsEnabled(safe_browsing::kBundledSecuritySettings)) {\n-    metrics_service_->RegisterMetricsProvider(\n-        std::make_unique<safe_browsing::BundledSettingsMetricsProvider>());\n-  }\n \n #if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)\n   metrics_service_->RegisterMetricsProvider(\n--- a/chrome/browser/notifications/platform_notification_service_impl.cc\n+++ b/chrome/browser/notifications/platform_notification_service_impl.cc\n@@ -793,68 +793,8 @@ void PlatformNotificationServiceImpl::\n         std::unique_ptr<PersistentNotificationMetadata> persistent_metadata,\n         bool should_show_warning,\n         std::optional<std::string> serialized_content_detection_metadata) {\n-  bool suspicious_notification_revoked = false;\n-  if (base::FeatureList::IsEnabled(\n-          safe_browsing::kAutoRevokeSuspiciousNotification) &&\n-      should_show_warning) {\n-#if BUILDFLAG(IS_ANDROID)\n-    suspicious_notification_revoked = AbusiveNotificationPermissionsManager::\n-        MaybeRevokeSuspiciousNotificationPermission(profile_,\n-                                                    notification.origin_url());\n-#endif\n-\n-    auto* service =\n-        NotificationsEngagementServiceFactory::GetForProfile(profile_);\n-    // This service might be missing for incognito profiles and in tests.\n-    if (!suspicious_notification_revoked && service) {\n-      // Increment suspicious count if the notification permission has not been\n-      // revoked.\n-      service->RecordNotificationSuspicious(notification.origin_url());\n-    }\n-  }\n-  if (base::FeatureList::IsEnabled(\n-          safe_browsing::kReportNotificationContentDetectionData)) {\n-    // If the notification permission has been revoked, we do still want to\n-    // record the notification in the database for re-grant scenario; however;\n-    // there is no need to trigger `DidUpdatePersistentMetadata` callback.\n-    content::PlatformNotificationContext::WriteResourcesResultCallback\n-        callback = suspicious_notification_revoked\n-                       ? base::DoNothing()\n-                       : base::BindOnce(&PlatformNotificationServiceImpl::\n-                                            DidUpdatePersistentMetadata,\n-                                        weak_ptr_factory_.GetWeakPtr(),\n-                                        std::move(persistent_metadata),\n-                                        notification, should_show_warning);\n-#if BUILDFLAG(IS_ANDROID)\n-    if (should_show_warning && !suspicious_notification_revoked) {\n-      // Keep track of suspicious notification ids.\n-      safe_browsing::UpdateSuspiciousNotificationIds(\n-          HostContentSettingsMapFactory::GetForProfile(profile_),\n-          notification.origin_url(), notification.id());\n-    }\n-#endif\n-    if (serialized_content_detection_metadata.has_value()) {\n-      scoped_refptr<content::PlatformNotificationContext> notification_context =\n-          profile_->GetStoragePartitionForUrl(notification.origin_url())\n-              ->GetPlatformNotificationContext();\n-      if (notification_context) {\n-        notification_context->WriteNotificationMetadata(\n-            notification.id(), notification.origin_url(),\n-            safe_browsing::kNotificationContentDetectionMetadataDictionaryKey,\n-            serialized_content_detection_metadata.value(), std::move(callback));\n-        return;\n-      }\n-    }\n-    std::move(callback).Run(/*success=*/false);\n-  } else {\n-    // Notification permission has been revoked due to suspicious content; do\n-    // not show notification.\n-    if (suspicious_notification_revoked) {\n-      return;\n-    }\n     DoUpdatePersistentMetadataThenDisplay(std::move(persistent_metadata),\n                                           notification, should_show_warning);\n-  }\n }\n \n void PlatformNotificationServiceImpl::LogPersistentNotificationShownMetrics(\n--- a/chrome/browser/permissions/permission_revocation_request.cc\n+++ b/chrome/browser/permissions/permission_revocation_request.cc\n@@ -212,32 +212,6 @@ void PermissionRevocationRequest::OnSite\n         base::TimeTicks::Now() - crowd_deny_request_start_time_.value();\n   }\n \n-  if (site_reputation && !site_reputation->warning_only()) {\n-    bool should_revoke_permission = false;\n-    switch (site_reputation->notification_ux_quality()) {\n-      case CrowdDenyPreloadData::SiteReputation::ABUSIVE_PROMPTS:\n-      case CrowdDenyPreloadData::SiteReputation::ABUSIVE_CONTENT:\n-        should_revoke_permission = NotificationsPermissionRevocationConfig::\n-            IsAbusiveOriginPermissionRevocationEnabled();\n-        break;\n-      case CrowdDenyPreloadData::SiteReputation::DISRUPTIVE_BEHAVIOR:\n-        should_revoke_permission = true;\n-        break;\n-      default:\n-        should_revoke_permission = false;\n-    }\n-    DCHECK(g_browser_process->safe_browsing_service());\n-    if (should_revoke_permission &&\n-        g_browser_process->safe_browsing_service()) {\n-      safe_browsing_request_.emplace(\n-          g_browser_process->safe_browsing_service()->database_manager(),\n-          base::DefaultClock::GetInstance(), url::Origin::Create(origin_),\n-          base::BindOnce(\n-              &PermissionRevocationRequest::OnSafeBrowsingVerdictReceived,\n-              weak_factory_.GetWeakPtr(), site_reputation));\n-      return;\n-    }\n-  }\n   NotifyCallback(Outcome::PERMISSION_NOT_REVOKED);\n }\n \n--- a/chrome/browser/permissions/prediction_service/contextual_notification_permission_ui_selector.cc\n+++ b/chrome/browser/permissions/prediction_service/contextual_notification_permission_ui_selector.cc\n@@ -16,7 +16,6 @@\n #include \"chrome/browser/browser_process.h\"\n #include \"chrome/browser/permissions/quiet_notification_permission_ui_config.h\"\n #include \"chrome/browser/permissions/quiet_notification_permission_ui_state.h\"\n-#include \"chrome/browser/safe_browsing/safe_browsing_service.h\"\n #include \"chrome/common/chrome_features.h\"\n #include \"components/permissions/permission_request.h\"\n #include \"components/permissions/request_type.h\"\n@@ -151,9 +150,6 @@ void ContextualNotificationPermissionUiS\n }\n \n void ContextualNotificationPermissionUiSelector::Cancel() {\n-  // The computation either finishes synchronously above, or is waiting on the\n-  // Safe Browsing check.\n-  safe_browsing_request_.reset();\n }\n \n bool ContextualNotificationPermissionUiSelector::IsPermissionRequestSupported(\n@@ -179,24 +175,14 @@ void ContextualNotificationPermissionUiS\n   std::optional<Decision> decision =\n       GetDecisionBasedOnSiteReputation(reputation);\n \n-  // If the PreloadData suggests this is an unacceptable site, ping Safe\n-  // Browsing to verify; but do not ping if it is not warranted.\n+  // If the PreloadData suggests this is an unacceptable site, assume it is\n+  // correct, since we can't access safe browsing.\n   if (!decision || (!decision->quiet_ui_reason && !decision->warning_reason)) {\n     Notify(Decision::UseNormalUiAndShowNoWarning());\n-    return;\n+  } else {\n+    // decision has a value, unwrap with .value()\n+    Notify(decision.value());\n   }\n-\n-  DCHECK(!safe_browsing_request_);\n-  DCHECK(g_browser_process->safe_browsing_service());\n-\n-  // It is fine to use base::Unretained() here, as |safe_browsing_request_|\n-  // guarantees not to fire the callback after its destruction.\n-  safe_browsing_request_.emplace(\n-      g_browser_process->safe_browsing_service()->database_manager(),\n-      base::DefaultClock::GetInstance(), origin,\n-      base::BindOnce(&ContextualNotificationPermissionUiSelector::\n-                         OnSafeBrowsingVerdictReceived,\n-                     base::Unretained(this), *decision));\n }\n \n void ContextualNotificationPermissionUiSelector::OnSafeBrowsingVerdictReceived(\n--- a/chrome/browser/permissions/prediction_service/permissions_ai_ui_selector.cc\n+++ b/chrome/browser/permissions/prediction_service/permissions_ai_ui_selector.cc\n@@ -697,77 +697,6 @@ bool PermissionsAiUiSelector::ShouldHold\n \n PredictionSource PermissionsAiUiSelector::GetPredictionTypeToUse(\n     permissions::RequestType request_type) {\n-  const bool is_msbb_enabled = profile_->GetPrefs()->GetBoolean(\n-      unified_consent::prefs::kUrlKeyedAnonymizedDataCollectionEnabled);\n-\n-  base::UmaHistogramBoolean(\"Permissions.PredictionService.MSBB\",\n-                            is_msbb_enabled);\n-\n-  VLOG(1) << \"[CPSS] GetPredictionTypeToUse MSBB: \" << is_msbb_enabled;\n-\n-  const bool is_notification_cpss_enabled =\n-      profile_->GetPrefs()->GetBoolean(prefs::kEnableNotificationCPSS);\n-\n-  VLOG(1) << \"[CPSS] GetPredictionTypeToUse NotificationCPSS: \"\n-          << is_notification_cpss_enabled;\n-\n-  const bool is_geolocation_cpss_enabled =\n-      profile_->GetPrefs()->GetBoolean(prefs::kEnableGeolocationCPSS);\n-\n-  VLOG(1) << \"[CPSS] GetPredictionTypeToUse GeolocationCPSS: \"\n-          << is_geolocation_cpss_enabled;\n-\n-  if (request_type == permissions::RequestType::kNotifications &&\n-      !is_notification_cpss_enabled) {\n-    VLOG(1) << \"[CPSS] GetPredictionTypeToUse NoCpssModel\";\n-    return PredictionSource::kNoCpssModel;\n-  }\n-\n-  if (request_type == permissions::RequestType::kGeolocation &&\n-      !is_geolocation_cpss_enabled) {\n-    VLOG(1) << \"[CPSS] GetPredictionTypeToUse NoCpssModel\";\n-    return PredictionSource::kNoCpssModel;\n-  }\n-\n-  bool use_server_side = false;\n-  if (is_msbb_enabled) {\n-#if BUILDFLAG(IS_ANDROID)\n-    use_server_side = base::FeatureList::IsEnabled(\n-        permissions::features::kPermissionDedicatedCpssSettingAndroid);\n-#else\n-    use_server_side = base::FeatureList::IsEnabled(\n-        permissions::features::kPermissionPredictionsV2);\n-#endif  // BUILDFLAG(IS_ANDROID)\n-  }\n-  if (use_server_side) {\n-    // AIvX models take priority over each other in the following order:\n-    // AIv4, AIv3\n-#if BUILDFLAG(BUILD_WITH_TFLITE_LIB)\n-    if (PredictionModelHandlerProvider::IsAIv4FeatureEnabled()) {\n-      VLOG(1) << \"[CPSS] GetPredictionTypeToUse AIv4\";\n-      return PredictionSource::kOnDeviceAiv4AndServerSideModel;\n-    }\n-    if (base::FeatureList::IsEnabled(permissions::features::kPermissionsAIv3)) {\n-      VLOG(1) << \"[CPSS] GetPredictionTypeToUse AIv3\";\n-      return PredictionSource::kOnDeviceAiv3AndServerSideModel;\n-    }\n-#endif  // BUILDFLAG(BUILD_WITH_TFLITE_LIB)\n-    VLOG(1) << \"[CPSS] GetPredictionTypeToUse CPSSv3\";\n-    return PredictionSource::kServerSideCpssV3Model;\n-  }\n-\n-#if BUILDFLAG(BUILD_WITH_TFLITE_LIB)\n-  if ((request_type == permissions::RequestType::kNotifications &&\n-       base::FeatureList::IsEnabled(\n-           permissions::features::\n-               kPermissionOnDeviceNotificationPredictions)) ||\n-      (request_type == permissions::RequestType::kGeolocation &&\n-       base::FeatureList::IsEnabled(\n-           permissions::features::kPermissionOnDeviceGeolocationPredictions))) {\n-    VLOG(1) << \"[CPSS] GetPredictionTypeToUse CPSSv1\";\n-    return PredictionSource::kOnDeviceCpssV1Model;\n-  }\n-#endif  // BUILDFLAG(BUILD_WITH_TFLITE_LIB)\n \n   VLOG(1) << \"[CPSS] GetPredictionTypeToUse NoCpssModel\";\n   return PredictionSource::kNoCpssModel;\n--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc\n+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc\n@@ -2586,8 +2586,6 @@ std::unique_ptr<ConfigurationPolicyHandl\n   handlers->AddHandler(\n       std::make_unique<bookmarks::ManagedBookmarksPolicyHandler>(\n           chrome_schema));\n-  handlers->AddHandler(\n-      std::make_unique<safe_browsing::SafeBrowsingPolicyHandler>());\n   handlers->AddHandler(std::make_unique<syncer::SyncPolicyHandler>());\n   handlers->AddHandler(\n       std::make_unique<URLBlocklistPolicyHandler>(key::kURLBlocklist));\n--- a/chrome/browser/prefs/browser_prefs.cc\n+++ b/chrome/browser/prefs/browser_prefs.cc\n@@ -269,7 +269,6 @@\n #include \"chrome/browser/nearby_sharing/common/nearby_share_prefs.h\"\n #include \"chrome/browser/new_tab_page/modules/file_suggestion/drive_service.h\"\n #include \"chrome/browser/new_tab_page/modules/file_suggestion/microsoft_files_page_handler.h\"\n-#include \"chrome/browser/new_tab_page/modules/safe_browsing/safe_browsing_handler.h\"\n #include \"chrome/browser/new_tab_page/modules/v2/authentication/microsoft_auth_page_handler.h\"\n #include \"chrome/browser/new_tab_page/modules/v2/calendar/google_calendar_page_handler.h\"\n #include \"chrome/browser/new_tab_page/modules/v2/calendar/outlook_calendar_page_handler.h\"\n@@ -1897,7 +1896,6 @@ void RegisterProfilePrefs(user_prefs::Pr\n   NewTabFooterUI::RegisterProfilePrefs(registry);\n   NewTabPageHandler::RegisterProfilePrefs(registry);\n   NewTabPageUI::RegisterProfilePrefs(registry);\n-  ntp::SafeBrowsingHandler::RegisterProfilePrefs(registry);\n   OutlookCalendarPageHandler::RegisterProfilePrefs(registry);\n   PinnedTabCodec::RegisterProfilePrefs(registry);\n   promos_utils::RegisterProfilePrefs(registry);\n--- a/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc\n+++ b/chrome/browser/profiles/chrome_browser_main_extra_parts_profiles.cc\n@@ -896,9 +896,7 @@ void ChromeBrowserMainExtraPartsProfiles\n     enterprise_connectors::TelomereEventRouterFactory::GetInstance();\n   }\n #endif\n-  enterprise_connectors::BrowserCrashEventRouterFactory::GetInstance();\n   enterprise_connectors::ConnectorsServiceFactory::GetInstance();\n-  enterprise_connectors::ReportingEventRouterFactory::GetInstance();\n #if BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC) || \\\n     BUILDFLAG(IS_WIN)\n   enterprise_connectors::DeviceTrustConnectorServiceFactory::GetInstance();\n--- a/chrome/browser/resources/settings/privacy_page/privacy_page_index.ts\n+++ b/chrome/browser/resources/settings/privacy_page/privacy_page_index.ts\n@@ -143,7 +143,7 @@ export class SettingsPrivacyPageIndexEle\n       enableSafeBrowsingSubresourceFilter_: {\n         type: Boolean,\n         value: () => {\n-          return loadTimeData.getBoolean('enableSafeBrowsingSubresourceFilter');\n+          return false;\n         },\n       },\n \n--- a/chrome/browser/safe_browsing/BUILD.gn\n+++ b/chrome/browser/safe_browsing/BUILD.gn\n@@ -88,9 +88,6 @@ static_library(\"safe_browsing\") {\n   ]\n   }\n \n-  if (enable_extensions) {\n-    deps += [ \"//chrome/browser/ui/web_applications\" ]\n-  }\n \n   # Note: is_android is not equivalent to safe_browsing_mode == 2.\n   # Sources and dependencies added to this block must not depend on anything\n@@ -110,17 +107,6 @@ static_library(\"safe_browsing\") {\n     allow_circular_includes_from += [ \"//chrome/browser/ash/file_manager\" ]\n   }\n \n-  if (is_win || is_mac || is_linux || is_chromeos) {\n-    sources += [\n-      \"security_settings_bundle_toast_helper.cc\",\n-      \"security_settings_bundle_toast_helper.h\",\n-    ]\n-    deps += [\n-      \"//chrome/browser/ui/browser_window\",\n-      \"//chrome/browser/ui/toasts\",\n-      \"//chrome/browser/ui/toasts/api:toasts\",\n-    ]\n-  }\n \n   if (safe_browsing_mode != 0) {\n     # \"Safe Browsing Basic\" files used for safe browsing in full mode\n--- a/chrome/browser/safe_browsing/cloud_content_scanning/file_opening_job.cc\n+++ b/chrome/browser/safe_browsing/cloud_content_scanning/file_opening_job.cc\n@@ -73,10 +73,6 @@ void FileOpeningJob::ProcessNextTask(bas\n     if (tasks_[i].taken.exchange(true, std::memory_order_relaxed))\n       continue;\n \n-    // Since we know we now have taken `tasks_[i]`, we can do the file opening\n-    // work safely.\n-    tasks_[i].request->OpenFile();\n-\n     // Now that the file opening work is done, `num_unopened_files_` is\n     // decremented atomically and we return to free the thread.\n     num_unopened_files_.fetch_sub(1, std::memory_order_relaxed);\n--- a/chrome/browser/safe_browsing/cloud_content_scanning/file_opening_job.h\n+++ b/chrome/browser/safe_browsing/cloud_content_scanning/file_opening_job.h\n@@ -11,7 +11,6 @@\n #include \"base/gtest_prod_util.h\"\n #include \"base/memory/raw_ptr.h\"\n #include \"base/task/post_job.h\"\n-#include \"chrome/browser/safe_browsing/cloud_content_scanning/file_analysis_request.h\"\n \n namespace safe_browsing {\n \n@@ -24,10 +23,6 @@ class FileOpeningJob {\n     FileOpeningTask();\n     ~FileOpeningTask();\n \n-    // Non-owning pointer to the request corresponding to the file to open.\n-    raw_ptr<safe_browsing::FileAnalysisRequest, AcrossTasksDanglingUntriaged>\n-        request = nullptr;\n-\n     // Indicates if this task has been taken and is owned by a thread.\n     std::atomic_bool taken{false};\n   };\n--- a/chrome/browser/safe_browsing/generated_safe_browsing_pref.cc\n+++ b/chrome/browser/safe_browsing/generated_safe_browsing_pref.cc\n@@ -9,7 +9,6 @@\n #include \"chrome/browser/profiles/profile.h\"\n #include \"chrome/common/extensions/api/settings_private.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace settings_api = extensions::api::settings_private;\n \n@@ -19,73 +18,19 @@ const char kGeneratedSafeBrowsingPref[]\n GeneratedSafeBrowsingPref::GeneratedSafeBrowsingPref(Profile* profile)\n     : profile_(profile) {\n   user_prefs_registrar_.Init(profile->GetPrefs());\n-  user_prefs_registrar_.AddMultiple(\n-      {prefs::kSafeBrowsingEnabled, prefs::kSafeBrowsingEnhanced,\n-       prefs::kSafeBrowsingScoutReportingEnabled},\n-      base::BindRepeating(\n-          &GeneratedSafeBrowsingPref::OnSafeBrowsingPreferencesChanged,\n-          base::Unretained(this)));\n }\n \n extensions::settings_private::SetPrefResult GeneratedSafeBrowsingPref::SetPref(\n     const base::Value* value) {\n-  if (!value->is_int()) {\n-    return extensions::settings_private::SetPrefResult::PREF_TYPE_MISMATCH;\n-  }\n-\n-  auto selection = static_cast<SafeBrowsingState>(value->GetInt());\n-\n-  if (selection != SafeBrowsingState::NO_SAFE_BROWSING &&\n-      selection != SafeBrowsingState::STANDARD_PROTECTION &&\n-      selection != SafeBrowsingState::ENHANCED_PROTECTION) {\n-    return extensions::settings_private::SetPrefResult::PREF_TYPE_MISMATCH;\n-  }\n-\n-  // If SBER is forcefully disabled, Enhanced cannot be selected by the user.\n-  const PrefService::Preference* reporting_pref =\n-      profile_->GetPrefs()->FindPreference(\n-          prefs::kSafeBrowsingScoutReportingEnabled);\n-  const bool reporting_on = reporting_pref->GetValue()->GetBool();\n-  const bool reporting_enforced = !reporting_pref->IsUserModifiable();\n-\n-  if (reporting_enforced && !reporting_on &&\n-      selection == SafeBrowsingState::ENHANCED_PROTECTION) {\n-    return extensions::settings_private::SetPrefResult::PREF_NOT_MODIFIABLE;\n-  }\n-\n-  // kSafeBrowsingEnabled is considered the canonical source for Safe Browsing\n-  // management.\n-  const PrefService::Preference* enabled_pref =\n-      profile_->GetPrefs()->FindPreference(prefs::kSafeBrowsingEnabled);\n-  if (!enabled_pref->IsUserModifiable()) {\n     return extensions::settings_private::SetPrefResult::PREF_NOT_MODIFIABLE;\n-  }\n-\n-  // Update both Safe Browsing preferences to match selection.\n-  profile_->GetPrefs()->SetBoolean(\n-      prefs::kSafeBrowsingEnabled,\n-      selection != SafeBrowsingState::NO_SAFE_BROWSING);\n-  profile_->GetPrefs()->SetBoolean(\n-      prefs::kSafeBrowsingEnhanced,\n-      selection == SafeBrowsingState::ENHANCED_PROTECTION);\n-\n-  // Set ESB not set in sync with Account ESB through TailoredSecurity.\n-  if (selection == SafeBrowsingState::ENHANCED_PROTECTION) {\n-    profile_->GetPrefs()->SetBoolean(\n-        prefs::kEnhancedProtectionEnabledViaTailoredSecurity, false);\n-  }\n-\n-  return extensions::settings_private::SetPrefResult::SUCCESS;\n }\n \n extensions::api::settings_private::PrefObject\n GeneratedSafeBrowsingPref::GetPrefObject() const {\n-  SafeBrowsingState safe_browsing_state =\n-      GetSafeBrowsingState(*profile_->GetPrefs());\n   extensions::api::settings_private::PrefObject pref_object;\n   pref_object.key = kGeneratedSafeBrowsingPref;\n   pref_object.type = extensions::api::settings_private::PrefType::kNumber;\n-  pref_object.value = base::Value(static_cast<int>(safe_browsing_state));\n+  pref_object.value = base::Value(0);\n \n   ApplySafeBrowsingManagementState(*profile_, pref_object);\n \n@@ -100,76 +45,6 @@ void GeneratedSafeBrowsingPref::OnSafeBr\n void GeneratedSafeBrowsingPref::ApplySafeBrowsingManagementState(\n     const Profile& profile,\n     settings_api::PrefObject& pref_object) {\n-  // Computing the effective Safe Browsing managed state requires inspecting\n-  // three different preferences. It is possible that these may be in\n-  // temporarily conflicting managed states. The enabled preference is always\n-  // taken as the canonical source of management.\n-  const PrefService::Preference* enabled_pref =\n-      profile.GetPrefs()->FindPreference(prefs::kSafeBrowsingEnabled);\n-  const bool enabled_enforced = !enabled_pref->IsUserModifiable();\n-  const bool enabled_recommended =\n-      (enabled_pref && enabled_pref->GetRecommendedValue());\n-  const bool enabled_recommended_on =\n-      enabled_recommended && enabled_pref->GetRecommendedValue()->GetBool();\n-\n-  // The enhanced preference may have a recommended setting. This only takes\n-  // effect if the enabled preference also has a recommended setting.\n-  const PrefService::Preference* enhanced_pref =\n-      profile.GetPrefs()->FindPreference(prefs::kSafeBrowsingEnhanced);\n-  const bool enhanced_recommended_on =\n-      enhanced_pref->GetRecommendedValue() &&\n-      enhanced_pref->GetRecommendedValue()->GetBool();\n-\n-  // A forcefully disabled reporting preference will disallow enhanced from\n-  // being selected and thus it must also be considered.\n-  const PrefService::Preference* reporting_pref =\n-      profile.GetPrefs()->FindPreference(\n-          prefs::kSafeBrowsingScoutReportingEnabled);\n-  const bool reporting_on = reporting_pref->GetValue()->GetBool();\n-  const bool reporting_enforced = !reporting_pref->IsUserModifiable();\n-\n-  if (!enabled_enforced && !enabled_recommended && !reporting_enforced) {\n-    // No relevant policies are applied.\n-    return;\n-  }\n-\n-  if (enabled_enforced) {\n-    // Preference is fully controlled.\n-    pref_object.enforcement = settings_api::Enforcement::kEnforced;\n-    extensions::settings_private::GeneratedPref::ApplyControlledByFromPref(\n-        &pref_object, enabled_pref);\n-    return;\n-  }\n-\n-  if (enabled_recommended) {\n-    // Set enforcement to recommended. This may be upgraded to enforced later\n-    // in this function.\n-    pref_object.enforcement = settings_api::Enforcement::kRecommended;\n-    if (enhanced_recommended_on) {\n-      pref_object.recommended_value =\n-          base::Value(static_cast<int>(SafeBrowsingState::ENHANCED_PROTECTION));\n-    } else if (enabled_recommended_on) {\n-      pref_object.recommended_value =\n-          base::Value(static_cast<int>(SafeBrowsingState::STANDARD_PROTECTION));\n-    } else {\n-      pref_object.recommended_value =\n-          base::Value(static_cast<int>(SafeBrowsingState::NO_SAFE_BROWSING));\n-    }\n-  }\n-\n-  if (reporting_enforced && !reporting_on) {\n-    // Reporting has been forcefully disabled by policy. Enhanced protection is\n-    // thus also implicitly disabled by the same policy.\n-    pref_object.enforcement = settings_api::Enforcement::kEnforced;\n-    extensions::settings_private::GeneratedPref::ApplyControlledByFromPref(\n-        &pref_object, reporting_pref);\n-\n-    pref_object.user_selectable_values.emplace();\n-    pref_object.user_selectable_values->Append(\n-        std::to_underlying(SafeBrowsingState::STANDARD_PROTECTION));\n-    pref_object.user_selectable_values->Append(\n-        std::to_underlying(SafeBrowsingState::NO_SAFE_BROWSING));\n-  }\n }\n \n }  // namespace safe_browsing\n--- a/chrome/browser/safe_browsing/generated_safe_browsing_pref.h\n+++ b/chrome/browser/safe_browsing/generated_safe_browsing_pref.h\n@@ -9,7 +9,6 @@\n #include \"chrome/browser/extensions/api/settings_private/generated_pref.h\"\n #include \"chrome/browser/profiles/profile.h\"\n #include \"components/prefs/pref_change_registrar.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace safe_browsing {\n \n--- a/chrome/browser/safe_browsing/generated_security_settings_bundle_pref.cc\n+++ b/chrome/browser/safe_browsing/generated_security_settings_bundle_pref.cc\n@@ -11,7 +11,6 @@\n #include \"chrome/common/pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace safe_browsing {\n \n@@ -19,59 +18,20 @@ GeneratedSecuritySettingsBundlePref::Gen\n     Profile* profile)\n     : profile_(profile) {\n   user_prefs_registrar_.Init(profile->GetPrefs());\n-  user_prefs_registrar_.Add(\n-      prefs::kSecuritySettingsBundle,\n-      base::BindRepeating(&GeneratedSecuritySettingsBundlePref::\n-                              OnSecuritySettingsBundlePreferencesChanged,\n-                          base::Unretained(this)));\n }\n \n extensions::settings_private::SetPrefResult\n GeneratedSecuritySettingsBundlePref::SetPref(const base::Value* value) {\n-  if (!value->is_int()) {\n-    return extensions::settings_private::SetPrefResult::PREF_TYPE_MISMATCH;\n-  }\n-\n-  auto selection = static_cast<int>(value->GetInt());\n-\n-  if (selection != static_cast<int>(SecuritySettingsBundleSetting::STANDARD) &&\n-      selection != static_cast<int>(SecuritySettingsBundleSetting::ENHANCED)) {\n-    return extensions::settings_private::SetPrefResult::PREF_TYPE_MISMATCH;\n-  }\n-\n-  // Update Security Settings Bundle preference to match selection.\n-  SetSecurityBundleSetting(\n-      *(profile_->GetPrefs()),\n-      static_cast<SecuritySettingsBundleSetting>(selection));\n-\n-  PrefService* local_state = g_browser_process->local_state();\n-\n-  // This is how the bundle controls each security setting.\n-  if (base::FeatureList::IsEnabled(\n-          safe_browsing::kBundledSecuritySettingsSecureDnsV2)) {\n-    // Secure DNS Setting.\n-    // TODO(crbug.com/460180440): migrate to a per-profile setting.\n-    const bool fallback_to_doh =\n-        selection == static_cast<int>(SecuritySettingsBundleSetting::ENHANCED);\n-    local_state->SetString(prefs::kDnsOverHttpsMode,\n-                           SecureDnsConfig::kModeAutomatic);\n-    local_state->SetString(prefs::kDnsOverHttpsTemplates, \"\");\n-    local_state->SetBoolean(prefs::kDnsOverHttpsAutomaticModeFallbackToDoh,\n-                            fallback_to_doh);\n-  }\n-\n   return extensions::settings_private::SetPrefResult::SUCCESS;\n }\n \n extensions::api::settings_private::PrefObject\n GeneratedSecuritySettingsBundlePref::GetPrefObject() const {\n-  SecuritySettingsBundleSetting bundle_setting =\n-      GetSecurityBundleSetting(*profile_->GetPrefs());\n \n   extensions::api::settings_private::PrefObject pref_object;\n   pref_object.key = kGeneratedSecuritySettingsBundlePref;\n   pref_object.type = extensions::api::settings_private::PrefType::kNumber;\n-  pref_object.value = base::Value(static_cast<int>(bundle_setting));\n+  pref_object.value = base::Value(0);\n   return pref_object;\n }\n \n--- a/chrome/browser/safe_browsing/metrics/safe_browsing_metrics_provider.cc\n+++ b/chrome/browser/safe_browsing/metrics/safe_browsing_metrics_provider.cc\n@@ -17,15 +17,6 @@ SafeBrowsingMetricsProvider::~SafeBrowsi\n \n void SafeBrowsingMetricsProvider::ProvideCurrentSessionData(\n     metrics::ChromeUserMetricsExtension* uma_proto) {\n-  Profile* profile = cached_profile_.GetMetricsProfile();\n-\n-  if (!profile)\n-    return;\n-\n-  SafeBrowsingState state = GetSafeBrowsingState(*profile->GetPrefs());\n-\n-  base::UmaHistogramEnumeration(\n-      \"SafeBrowsing.Pref.MainProfile.SafeBrowsingState\", state);\n }\n \n }  // namespace safe_browsing\n--- a/chrome/browser/safe_browsing/url_lookup_service_factory.cc\n+++ b/chrome/browser/safe_browsing/url_lookup_service_factory.cc\n@@ -74,32 +74,7 @@ RealTimeUrlLookupServiceFactory::~RealTi\n std::unique_ptr<KeyedService>\n RealTimeUrlLookupServiceFactory::BuildServiceInstanceForBrowserContext(\n     content::BrowserContext* context) const {\n-  if (!g_browser_process->safe_browsing_service()) {\n     return nullptr;\n-  }\n-  Profile* profile = Profile::FromBrowserContext(context);\n-  return std::make_unique<RealTimeUrlLookupService>(\n-      GetURLLoaderFactory(context),\n-      VerdictCacheManagerFactory::GetForProfile(profile),\n-      base::BindRepeating(&safe_browsing::GetUserPopulationForProfile, profile),\n-      profile->GetPrefs(),\n-      std::make_unique<SafeBrowsingPrimaryAccountTokenFetcher>(\n-          IdentityManagerFactory::GetForProfile(profile)),\n-      base::BindRepeating(&safe_browsing::SyncUtils::\n-                              AreSigninAndSyncSetUpForSafeBrowsingTokenFetches,\n-                          SyncServiceFactory::GetForProfile(profile),\n-                          IdentityManagerFactory::GetForProfile(profile)),\n-      profile->IsOffTheRecord(),\n-      base::BindRepeating(\n-          &RealTimeUrlLookupServiceFactory::GetVariationsService),\n-      base::BindRepeating(&RealTimeUrlLookupServiceFactory::\n-                              GetMinAllowedTimestampForReferrerChains,\n-                          profile),\n-      SafeBrowsingNavigationObserverManagerFactory::GetForBrowserContext(\n-          profile),\n-      WebUIContentInfoSingleton::GetInstance(),\n-      ClientSideDetectionIntelligentScanDelegateFactory::GetForProfile(\n-          profile));\n }\n \n scoped_refptr<network::SharedURLLoaderFactory>\n--- a/chrome/browser/site_protection/site_familiarity_utils.cc\n+++ b/chrome/browser/site_protection/site_familiarity_utils.cc\n@@ -38,10 +38,6 @@ bool AreV8OptimizationsDisabledOnUnfamil\n }\n \n bool CanEnableBlockingJavascriptOptimizersForUnfamiliarSites(Profile* profile) {\n-  if (!safe_browsing::IsSafeBrowsingEnabled(*profile->GetPrefs())) {\n-    // Blocking js-opt on unfamiliar sites requires Safe Browsing to be enabled.\n-    return false;\n-  }\n \n   if (!(base::FeatureList::IsEnabled(\n             features::kProcessSelectionDeferringConditions) &&\n--- a/chrome/browser/ssl/chrome_security_blocking_page_factory.cc\n+++ b/chrome/browser/ssl/chrome_security_blocking_page_factory.cc\n@@ -124,15 +124,6 @@ CreateSettingsPageHelper() {\n       CreateChromeSettingsPageHelper();\n }\n \n-void LogSafeBrowsingSecuritySensitiveAction(\n-    safe_browsing::SafeBrowsingMetricsCollector* metrics_collector) {\n-  if (metrics_collector) {\n-    metrics_collector->AddSafeBrowsingEventToPref(\n-        safe_browsing::SafeBrowsingMetricsCollector::EventType::\n-            SECURITY_SENSITIVE_SSL_INTERSTITIAL);\n-  }\n-}\n-\n }  // namespace\n \n std::unique_ptr<SSLBlockingPage>\n@@ -150,10 +141,6 @@ ChromeSecurityBlockingPageFactory::Creat\n           web_contents, request_url,\n           overridable ? \"ssl_overridable\" : \"ssl_nonoverridable\", overridable));\n \n-  LogSafeBrowsingSecuritySensitiveAction(\n-      safe_browsing::SafeBrowsingMetricsCollectorFactory::GetForProfile(\n-          Profile::FromBrowserContext(web_contents->GetBrowserContext())));\n-\n   auto controller_client = std::make_unique<SSLErrorControllerClient>(\n       web_contents, ssl_info, cert_error, request_url,\n       std::move(metrics_helper), CreateSettingsPageHelper());\n@@ -218,10 +205,6 @@ ChromeSecurityBlockingPageFactory::Creat\n     const std::string& mitm_software_name) {\n   Profile* profile =\n       Profile::FromBrowserContext(web_contents->GetBrowserContext());\n-  LogSafeBrowsingSecuritySensitiveAction(\n-      safe_browsing::SafeBrowsingMetricsCollectorFactory::GetForProfile(\n-          profile));\n-\n   auto page = std::make_unique<MITMSoftwareBlockingPage>(\n       web_contents, cert_error, request_url,\n       /*can_show_enhanced_protection_message=*/true, ssl_info,\n@@ -241,10 +224,6 @@ ChromeSecurityBlockingPageFactory::Creat\n     int cert_error,\n     const GURL& request_url,\n     const net::SSLInfo& ssl_info) {\n-  LogSafeBrowsingSecuritySensitiveAction(\n-      safe_browsing::SafeBrowsingMetricsCollectorFactory::GetForProfile(\n-          Profile::FromBrowserContext(web_contents->GetBrowserContext())));\n-\n   auto page = std::make_unique<BlockedInterceptionBlockingPage>(\n       web_contents, cert_error, request_url,\n       /*can_show_enhanced_protection_message=*/true, ssl_info,\n--- a/chrome/browser/ssl/ssl_error_controller_client.cc\n+++ b/chrome/browser/ssl/ssl_error_controller_client.cc\n@@ -80,8 +80,6 @@ void SSLErrorControllerClient::GoBack()\n \n void SSLErrorControllerClient::Proceed() {\n   content::WebContents* const web_contents = this->web_contents();\n-  MaybeTriggerSecurityInterstitialProceededEvent(web_contents, request_url_,\n-                                                 \"SSL_ERROR\", cert_error_);\n #if BUILDFLAG(ENABLE_EXTENSIONS)\n   // Hosted Apps should not be allowed to run if there is a problem with their\n   // certificate. So, when users click proceed on an interstitial, move the tab\n--- a/chrome/browser/ui/BUILD.gn\n+++ b/chrome/browser/ui/BUILD.gn\n@@ -4320,8 +4320,6 @@ static_library(\"ui\") {\n       \"views/safe_browsing/password_reuse_modal_warning_dialog.h\",\n       \"views/safe_browsing/tailored_security_desktop_dialog_manager.cc\",\n       \"views/safe_browsing/tailored_security_desktop_dialog_manager.h\",\n-      \"views/safe_browsing/tailored_security_unconsented_modal.cc\",\n-      \"views/safe_browsing/tailored_security_unconsented_modal.h\",\n       \"views/screen_sharing_util.cc\",\n       \"views/screen_sharing_util.h\",\n       \"views/select_audio_output/select_audio_output_dialog.cc\",\n--- a/chrome/browser/ui/safety_hub/abusive_notification_permissions_manager.cc\n+++ b/chrome/browser/ui/safety_hub/abusive_notification_permissions_manager.cc\n@@ -108,20 +108,7 @@ safe_browsing::NotificationRevocationSou\n // suspicious notification.\n bool HasShowOriginalSuspiciousNotification(HostContentSettingsMap* hcsm,\n                                            GURL url) {\n-  DCHECK(hcsm);\n-  DCHECK(url.is_valid());\n-  base::Value stored_value(hcsm->GetWebsiteSetting(\n-      url, url, ContentSettingsType::SUSPICIOUS_NOTIFICATION_SHOW_ORIGINAL));\n-\n-  if (stored_value.is_none()) {\n     return false;\n-  }\n-  DCHECK(stored_value.is_dict());\n-  DCHECK(stored_value.GetDict().contains(\n-      safe_browsing::kSuspiciousNotificationShowOriginalKey));\n-  return stored_value.GetDict()\n-      .FindBool(safe_browsing::kSuspiciousNotificationShowOriginalKey)\n-      .value_or(false);\n }\n \n // Return true if the url should be considered for suspicious content\n--- a/chrome/browser/ui/safety_hub/revoked_permissions_service.cc\n+++ b/chrome/browser/ui/safety_hub/revoked_permissions_service.cc\n@@ -41,7 +41,6 @@\n #include \"components/permissions/permission_util.h\"\n #include \"components/prefs/pref_change_registrar.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safety_check/safety_check.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"content/public/browser/browser_thread.h\"\n@@ -167,32 +166,6 @@ RevokedPermissionsService::RevokedPermis\n         notification_display_manager =\n             RevokedPermissionsOSNotificationDisplayManagerFactory::\n                 GetForProfile(Profile::FromBrowserContext(browser_context_));\n-    abusive_notification_manager_ =\n-        std::make_unique<AbusiveNotificationPermissionsManager>(\n-#if BUILDFLAG(SAFE_BROWSING_AVAILABLE)\n-            g_browser_process->safe_browsing_service()\n-                ? g_browser_process->safe_browsing_service()->database_manager()\n-                : nullptr,\n-#else\n-          nullptr,\n-#endif\n-            hcsm(), pref_change_registrar_->prefs());\n-\n-  pref_change_registrar_->Add(\n-      prefs::kSafeBrowsingEnabled,\n-      base::BindRepeating(\n-          &RevokedPermissionsService::OnPermissionsAutorevocationControlChanged,\n-          base::Unretained(this)));\n-\n-  if (base::FeatureList::IsEnabled(\n-          features::kSafetyHubDisruptiveNotificationRevocation)) {\n-    disruptive_notification_manager_ =\n-        std::make_unique<DisruptiveNotificationPermissionsManager>(\n-            browser_context, hcsm(),\n-            site_engagement::SiteEngagementServiceFactory::GetForProfile(\n-                browser_context_),\n-            notification_display_manager);\n-  }\n \n   unused_site_permissions_manager_ =\n       std::make_unique<UnusedSitePermissionsManager>(browser_context, prefs);\n@@ -607,5 +580,5 @@ bool RevokedPermissionsService::IsUnused\n }\n \n bool RevokedPermissionsService::IsAbusiveNotificationAutoRevocationEnabled() {\n-  return safe_browsing::IsSafeBrowsingEnabled(*pref_change_registrar_->prefs());\n+  return false;\n }\n--- a/chrome/browser/ui/tab_contents/BUILD.gn\n+++ b/chrome/browser/ui/tab_contents/BUILD.gn\n@@ -47,7 +47,6 @@ source_set(\"impl\") {\n   if (is_win || is_mac || is_linux || is_chromeos) {\n     sources += [\n       \"chrome_web_contents_menu_helper.cc\",\n-      \"chrome_web_contents_view_handle_drop.cc\",\n     ]\n   }\n \n--- a/chrome/browser/ui/toasts/toast_service.cc\n+++ b/chrome/browser/ui/toasts/toast_service.cc\n@@ -38,7 +38,6 @@\n #include \"components/plus_addresses/core/browser/grit/plus_addresses_strings.h\"\n #include \"components/plus_addresses/core/common/features.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/tabs/public/tab_interface.h\"\n #include \"components/vector_icons/vector_icons.h\"\n@@ -142,57 +141,6 @@ void ToastService::RegisterToasts(\n             .Build());\n   }\n \n-  // ESB as a synced setting.\n-  if (base::FeatureList::IsEnabled(safe_browsing::kEsbAsASyncedSetting)) {\n-    toast_registry_->RegisterToast(\n-        ToastId::kSyncEsbOn,\n-        ToastSpecification::Builder(\n-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)\n-            vector_icons::kGshieldIcon,\n-#else\n-            kSecurityIcon,\n-#endif\n-            IDS_SETTINGS_SAFEBROWSING_ENHANCED_ON_TOAST_MESSAGE)\n-            .AddActionButton(\n-                IDS_SETTINGS_SETTINGS,\n-                base::BindRepeating(\n-                    [](BrowserWindowInterface* window) {\n-                      window->OpenGURL(\n-                          chrome::GetSettingsUrl(\n-                              chrome::kSafeBrowsingEnhancedProtectionSubPage),\n-                          WindowOpenDisposition::NEW_FOREGROUND_TAB);\n-                    },\n-                    base::Unretained(browser_window_interface)))\n-            .AddCloseButton()\n-            .Build());\n-    toast_registry_->RegisterToast(\n-        ToastId::kSyncEsbOnWithoutActionButton,\n-        ToastSpecification::Builder(\n-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)\n-            vector_icons::kGshieldIcon,\n-#else\n-            kSecurityIcon,\n-#endif\n-            IDS_SETTINGS_SAFEBROWSING_ENHANCED_ON_TOAST_MESSAGE)\n-            .Build());\n-    toast_registry_->RegisterToast(\n-        ToastId::kSyncEsbOff,\n-        ToastSpecification::Builder(\n-            kInfoIcon, IDS_SETTINGS_SAFEBROWSING_ENHANCED_OFF_TOAST_MESSAGE)\n-            .AddActionButton(\n-                IDS_SETTINGS_SAFEBROWSING_TURN_ON_ENHANCED_TOAST_BUTTON,\n-                base::BindRepeating(\n-                    [](BrowserWindowInterface* window) {\n-                      Profile* profile = window->GetProfile();\n-                      if (profile) {\n-                        profile->GetPrefs()->SetBoolean(\n-                            prefs::kSafeBrowsingEnhanced, true);\n-                      }\n-                    },\n-                    base::Unretained(browser_window_interface)))\n-            .AddCloseButton()\n-            .Build());\n-  }\n \n   if (data_sharing::features::IsDataSharingFunctionalityEnabled()) {\n     // Current tab has been removed from the group.\n--- a/chrome/browser/ui/views/tab_contents/chrome_web_contents_view_delegate_views.cc\n+++ b/chrome/browser/ui/views/tab_contents/chrome_web_contents_view_delegate_views.cc\n@@ -111,7 +111,7 @@ void ChromeWebContentsViewDelegateViews:\n void ChromeWebContentsViewDelegateViews::OnPerformingDrop(\n     const content::DropData& drop_data,\n     DropCompletionCallback callback) {\n-  HandleOnPerformingDrop(web_contents_, drop_data, std::move(callback));\n+  if (!callback.is_null()) std::move(callback).Run(std::move(drop_data));\n }\n \n std::unique_ptr<content::WebContentsViewDelegate> CreateWebContentsViewDelegate(\n--- a/chrome/browser/ui/views/tab_contents/chrome_web_contents_view_delegate_views_mac.mm\n+++ b/chrome/browser/ui/views/tab_contents/chrome_web_contents_view_delegate_views_mac.mm\n@@ -100,7 +100,7 @@ bool ChromeWebContentsViewDelegateViewsM\n void ChromeWebContentsViewDelegateViewsMac::OnPerformingDrop(\n     const content::DropData& drop_data,\n     DropCompletionCallback callback) {\n-  HandleOnPerformingDrop(web_contents_, drop_data, std::move(callback));\n+  if (!callback.is_null()) std::move(callback).Run(std::move(drop_data));\n }\n \n std::unique_ptr<RenderViewContextMenuBase>\n--- a/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc\n+++ b/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc\n@@ -180,21 +180,6 @@ void MaybeReportBypassAction(download::D\n void MaybeTriggerTrustSafetySurvey(download::DownloadItem* file,\n                                    WarningSurface surface,\n                                    WarningAction action) {\n-  CHECK(file);\n-  CHECK(surface == WarningSurface::DOWNLOADS_PAGE ||\n-        surface == WarningSurface::DOWNLOAD_PROMPT);\n-  CHECK(action == WarningAction::PROCEED || action == WarningAction::DISCARD);\n-  if (Profile* profile = Profile::FromBrowserContext(\n-          content::DownloadItemUtils::GetBrowserContext(file));\n-      profile &&\n-      safe_browsing::IsSafeBrowsingSurveysEnabled(*profile->GetPrefs())) {\n-    TrustSafetySentimentService* trust_safety_sentiment_service =\n-        TrustSafetySentimentServiceFactory::GetForProfile(profile);\n-    if (trust_safety_sentiment_service) {\n-      trust_safety_sentiment_service->InteractedWithDownloadWarningUI(surface,\n-                                                                      action);\n-    }\n-  }\n }\n \n void RecordDownloadsPageValidatedHistogram(download::DownloadItem* item) {\n--- a/chrome/browser/ui/webui/settings/hats_handler.cc\n+++ b/chrome/browser/ui/webui/settings/hats_handler.cc\n@@ -22,14 +22,11 @@\n #include \"components/privacy_sandbox/privacy_sandbox_prefs.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_settings.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/version_info/version_info.h\"\n #include \"content/public/browser/visibility.h\"\n #include \"content/public/browser/web_contents.h\"\n #include \"services/metrics/public/cpp/metrics_utils.h\"\n \n-using safe_browsing::SafeBrowsingState;\n-using safe_browsing::SecuritySettingsBundleSetting;\n \n namespace {\n \n@@ -89,43 +86,6 @@ void HatsHandler::RegisterMessages() {\n  */\n void HatsHandler::HandleSecurityPageHatsRequest(const base::ListValue& args) {\n   AllowJavascript();\n-\n-  CHECK_EQ(4U, args.size());\n-\n-  Profile* profile = Profile::FromWebUI(web_ui());\n-\n-  // Enterprise users consideration.\n-  // If the admin disabled the survey, the survey will not be requested.\n-  if (!safe_browsing::IsSafeBrowsingSurveysEnabled(*profile->GetPrefs())) {\n-    return;\n-  }\n-\n-  // Request HaTS survey.\n-  HatsService* hats_service = HatsServiceFactory::GetForProfile(\n-      profile, /* create_if_necessary = */ true);\n-\n-  // The HaTS service may not be available for the profile, for example if it\n-  // is a guest profile.\n-  if (!hats_service) {\n-    return;\n-  }\n-\n-  // Do not send the survey if the user didn't stay on the page long enough.\n-  if (args[2].GetDouble() <\n-      features::kHappinessTrackingSurveysForSecurityPageTime.Get()\n-          .InMilliseconds()) {\n-    return;\n-  }\n-  // Generate the Product Specific bits data from |profile| and |args|.\n-  SurveyStringData product_specific_string_data =\n-      GetSecurityPageProductSpecificStringData(profile, args);\n-\n-  hats_service->LaunchSurvey(\n-      kHatsSurveyTriggerSettingsSecurity,\n-      /*success_callback*/ base::DoNothing(),\n-      /*failure_callback*/ base::DoNothing(),\n-      /*product_specific_bits_data=*/{},\n-      /*product_specific_string_data=*/product_specific_string_data);\n }\n \n /**\n@@ -140,10 +100,6 @@ SurveyStringData HatsHandler::GetSecurit\n     Profile* profile,\n     const base::ListValue& args) {\n   const base::ListValue& interactions = args[0].GetList();\n-  auto safe_browsing_state = static_cast<SafeBrowsingState>(args[1].GetInt());\n-\n-  auto security_settings_bundle_setting =\n-      static_cast<SecuritySettingsBundleSetting>(args[3].GetInt());\n \n   std::string security_page_interactions = \"\";\n   std::set<SecurityPageV2Interaction> interaction_set;\n@@ -242,62 +198,14 @@ SurveyStringData HatsHandler::GetSecurit\n   security_page_interactions = base::JoinString(interaction_strings, \", \");\n \n   std::string safe_browsing_state_before = \"\";\n-  switch (safe_browsing_state) {\n-    case SafeBrowsingState::ENHANCED_PROTECTION: {\n-      safe_browsing_state_before = \"enhanced_protection\";\n-      break;\n-    }\n-    case SafeBrowsingState::STANDARD_PROTECTION: {\n-      safe_browsing_state_before = \"standard_protection\";\n-      break;\n-    }\n-    case SafeBrowsingState::NO_SAFE_BROWSING: {\n       safe_browsing_state_before = \"no_protection\";\n-      break;\n-    }\n-  }\n \n   std::string security_settings_bundle_setting_before = \"\";\n-  switch (security_settings_bundle_setting) {\n-    case SecuritySettingsBundleSetting::ENHANCED: {\n-      security_settings_bundle_setting_before = \"enhanced_protection\";\n-      break;\n-    }\n-    case SecuritySettingsBundleSetting::STANDARD: {\n-      security_settings_bundle_setting_before = \"standard_protection\";\n-      break;\n-    }\n-  }\n \n   std::string safe_browsing_state_current = \"\";\n-  bool safe_browsing_enabled =\n-      profile->GetPrefs()->GetBoolean(prefs::kSafeBrowsingEnabled);\n-  bool safe_browsing_enhanced_enabled =\n-      profile->GetPrefs()->GetBoolean(prefs::kSafeBrowsingEnhanced);\n-  if (safe_browsing_enhanced_enabled) {\n-    safe_browsing_state_current = \"enhanced_protection\";\n-  } else if (safe_browsing_enabled) {\n-    safe_browsing_state_current = \"standard_protection\";\n-  } else {\n     safe_browsing_state_current = \"no_protection\";\n-  }\n \n   std::string security_settings_bundle_setting_current = \"\";\n-  int security_settings_bundle_pref =\n-      profile->GetPrefs()->GetInteger(prefs::kSecuritySettingsBundle);\n-  auto current_bundle_setting =\n-      static_cast<SecuritySettingsBundleSetting>(security_settings_bundle_pref);\n-\n-  switch (current_bundle_setting) {\n-    case SecuritySettingsBundleSetting::ENHANCED: {\n-      security_settings_bundle_setting_current = \"enhanced_protection\";\n-      break;\n-    }\n-    case SecuritySettingsBundleSetting::STANDARD: {\n-      security_settings_bundle_setting_current = \"standard_protection\";\n-      break;\n-    }\n-  }\n \n   std::string client_channel =\n       std::string(version_info::GetChannelString(chrome::GetChannel()));\n--- a/chrome/browser/ui/webui/settings/safety_hub_handler.cc\n+++ b/chrome/browser/ui/webui/settings/safety_hub_handler.cc\n@@ -176,10 +176,6 @@ SafetyHubHandler::SafetyHubHandler(Profi\n   prefs_observation_.Observe(ExtensionPrefs::Get(profile_));\n   extension_registry_observation_.Observe(ExtensionRegistry::Get(profile_));\n   pref_change_registrar_.Init(profile_->GetPrefs());\n-  pref_change_registrar_.Add(\n-      prefs::kSafeBrowsingEnhanced,\n-      base::BindRepeating(&SafetyHubHandler::OnSafeBrowsingEnhancedChanged,\n-                          base::Unretained(this)));\n }\n SafetyHubHandler::~SafetyHubHandler() = default;\n \n@@ -831,14 +827,4 @@ void SafetyHubHandler::OnJavascriptAllow\n void SafetyHubHandler::OnJavascriptDisallowed() {}\n \n void SafetyHubHandler::OnSafeBrowsingEnhancedChanged() {\n-  if (profile_->GetPrefs()->GetBoolean(prefs::kSafeBrowsingEnhanced) &&\n-      MobilePromoOnDesktopTypeEnabled(\n-          MobilePromoOnDesktopPromoType::kESBPromo)) {\n-    IOSPromoTriggerService* service =\n-        IOSPromoTriggerServiceFactory::GetForProfile(profile_);\n-    if (service) {\n-      service->NotifyPromoShouldBeShown(\n-          desktop_to_mobile_promos::PromoType::kEnhancedBrowsing);\n-    }\n-  }\n }\n--- a/chrome/browser/ui/webui/settings/security_settings_provider.cc\n+++ b/chrome/browser/ui/webui/settings/security_settings_provider.cc\n@@ -8,30 +8,25 @@\n #include \"chrome/browser/safe_browsing/generated_safe_browsing_pref.h\"\n #include \"chrome/browser/ssl/https_upgrades_util.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/web_ui_data_source.h\"\n \n-using safe_browsing::SecuritySettingsBundleSetting;\n \n namespace settings {\n \n void AddSecurityData(content::WebUIDataSource* html_source) {\n   html_source->AddBoolean(\n       \"enableBundledSecuritySettings\",\n-      base::FeatureList::IsEnabled(safe_browsing::kBundledSecuritySettings));\n+      false);\n   html_source->AddBoolean(\n       \"enableBundledSecuritySettingsSecureDnsV2\",\n-      base::FeatureList::IsEnabled(\n-          safe_browsing::kBundledSecuritySettingsSecureDnsV2));\n+      false);\n   html_source->AddBoolean(\"enableHttpsFirstModeNewSettings\",\n                           IsBalancedModeAvailable());\n \n   html_source->AddInteger(\"securityStandardBundleSafeBrowsingDefault\",\n-                          static_cast<int>(GetDefaultSafeBrowsingState(\n-                              SecuritySettingsBundleSetting::STANDARD)));\n+                          0);\n   html_source->AddInteger(\"securityEnhancedBundleSafeBrowsingDefault\",\n-                          static_cast<int>(GetDefaultSafeBrowsingState(\n-                              SecuritySettingsBundleSetting::ENHANCED)));\n+                          0);\n \n   // TODO(http://crbug.com/458521865) Move remainder of\n   // security-related-settings (not the strings) to this function.\n--- a/chrome/common/webui_url_constants.cc\n+++ b/chrome/common/webui_url_constants.cc\n@@ -131,7 +131,6 @@ base::span<const base::cstring_view> Chr\n       kChromeUISuggestInternalsHost,\n #endif\n       kChromeUINTPTilesInternalsHost,\n-      safe_browsing::kChromeUISafeBrowsingHost,\n       kChromeUISyncInternalsHost,\n #if !BUILDFLAG(IS_ANDROID)\n       kChromeUITabSearchHost,\n--- a/chrome/test/BUILD.gn\n+++ b/chrome/test/BUILD.gn\n@@ -2900,7 +2900,6 @@ if (!is_android) {\n       \"//components/resources\",\n       \"//components/safe_browsing:buildflags\",\n       \"//components/safe_browsing/content/browser\",\n-      \"//components/safe_browsing/content/browser:client_side_detection_images_cache\",\n       \"//components/safe_browsing/content/browser:credit_card_form_event\",\n       \"//components/safe_browsing/content/browser:safe_browsing_service\",\n       \"//components/safe_browsing/content/browser/password_protection\",\n@@ -7366,7 +7365,6 @@ test(\"unit_tests\") {\n     \"//components/resources\",\n     \"//components/safe_browsing:buildflags\",\n     \"//components/safe_browsing/content/browser\",\n-    \"//components/safe_browsing/content/browser:client_side_detection_images_cache\",\n     \"//components/safe_browsing/content/browser:credit_card_form_event\",\n     \"//components/safe_browsing/content/browser/password_protection\",\n     \"//components/safe_browsing/content/browser/password_protection:mock_password_protection\",\n--- a/components/device_signals/core/browser/browser_utils.cc\n+++ b/components/device_signals/core/browser/browser_utils.cc\n@@ -29,35 +29,6 @@ bool IsURLBlocked(const GURL& url, Polic\n \n namespace device_signals {\n \n-safe_browsing::SafeBrowsingState GetSafeBrowsingProtectionLevel(\n-    PrefService* profile_prefs) {\n-  DCHECK(profile_prefs);\n-  bool safe_browsing_enabled =\n-      profile_prefs->GetBoolean(prefs::kSafeBrowsingEnabled);\n-  bool safe_browsing_enhanced_enabled =\n-      profile_prefs->GetBoolean(prefs::kSafeBrowsingEnhanced);\n-\n-  if (safe_browsing_enabled) {\n-    if (safe_browsing_enhanced_enabled) {\n-      return safe_browsing::SafeBrowsingState::ENHANCED_PROTECTION;\n-    } else {\n-      return safe_browsing::SafeBrowsingState::STANDARD_PROTECTION;\n-    }\n-  } else {\n-    return safe_browsing::SafeBrowsingState::NO_SAFE_BROWSING;\n-  }\n-}\n-\n-std::optional<safe_browsing::PasswordProtectionTrigger>\n-GetPasswordProtectionWarningTrigger(PrefService* profile_prefs) {\n-  DCHECK(profile_prefs);\n-  if (!profile_prefs->HasPrefPath(prefs::kPasswordProtectionWarningTrigger)) {\n-    return std::nullopt;\n-  }\n-  return static_cast<safe_browsing::PasswordProtectionTrigger>(\n-      profile_prefs->GetInteger(prefs::kPasswordProtectionWarningTrigger));\n-}\n-\n bool GetChromeRemoteDesktopAppBlocked(PolicyBlocklistService* service) {\n   DCHECK(service);\n   return IsURLBlocked(GURL(\"https://remotedesktop.google.com\"), service) ||\n--- a/components/device_signals/core/browser/browser_utils.h\n+++ b/components/device_signals/core/browser/browser_utils.h\n@@ -22,12 +22,6 @@ namespace device_signals {\n \n bool GetChromeRemoteDesktopAppBlocked(PolicyBlocklistService* service);\n \n-std::optional<safe_browsing::PasswordProtectionTrigger>\n-GetPasswordProtectionWarningTrigger(PrefService* profile_prefs);\n-\n-safe_browsing::SafeBrowsingState GetSafeBrowsingProtectionLevel(\n-    PrefService* profile_prefs);\n-\n std::optional<std::string> TryGetEnrollmentDomain(\n     policy::CloudPolicyManager* manager);\n \n--- a/components/device_signals/core/browser/signals_types.h\n+++ b/components/device_signals/core/browser/signals_types.h\n@@ -12,7 +12,6 @@\n #include \"base/values.h\"\n #include \"build/build_config.h\"\n #include \"components/device_signals/core/common/common_types.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n #if BUILDFLAG(IS_WIN)\n #include \"components/device_signals/core/common/win/win_types.h\"\n@@ -274,10 +273,7 @@ struct ProfileSignalsResponse : BaseSign\n \n   bool built_in_dns_client_enabled;\n   bool chrome_remote_desktop_app_blocked;\n-  std::optional<safe_browsing::PasswordProtectionTrigger>\n-      password_protection_warning_trigger = std::nullopt;\n   std::optional<std::string> profile_enrollment_domain = std::nullopt;\n-  safe_browsing::SafeBrowsingState safe_browsing_protection_level;\n   bool site_isolation_enabled;\n   std::optional<std::string> profile_id = std::nullopt;\n \n--- a/components/enterprise/browser/reporting/chrome_profile_request_generator.cc\n+++ b/components/enterprise/browser/reporting/chrome_profile_request_generator.cc\n@@ -294,18 +294,12 @@ void ChromeProfileRequestGenerator::OnAg\n         profile_signals.built_in_dns_client_enabled);\n     profile_signals_report->set_chrome_remote_desktop_app_blocked(\n         profile_signals.chrome_remote_desktop_app_blocked);\n-    profile_signals_report->set_password_protection_warning_trigger(\n-        TranslatePasswordProtectionTrigger(\n-            profile_signals.password_protection_warning_trigger));\n     if (profile_signals.profile_enrollment_domain) {\n       profile_signals_report->set_profile_enrollment_domain(\n           profile_signals.profile_enrollment_domain.value());\n     }\n     profile_signals_report->set_realtime_url_check_mode(\n         TranslateRealtimeUrlCheckMode(profile_signals.realtime_url_check_mode));\n-    profile_signals_report->set_safe_browsing_protection_level(\n-        TranslateSafeBrowsingLevel(\n-            profile_signals.safe_browsing_protection_level));\n     profile_signals_report->set_site_isolation_enabled(\n         profile_signals.site_isolation_enabled);\n \n--- a/components/enterprise/browser/reporting/report_util.cc\n+++ b/components/enterprise/browser/reporting/report_util.cc\n@@ -81,25 +81,6 @@ em::SettingValue TranslateSettingValue(\n   }\n }\n \n-em::ProfileSignalsReport::PasswordProtectionTrigger\n-TranslatePasswordProtectionTrigger(\n-    std::optional<safe_browsing::PasswordProtectionTrigger> trigger) {\n-  if (trigger == std::nullopt) {\n-    return em::ProfileSignalsReport::POLICY_UNSET;\n-  }\n-  switch (trigger.value()) {\n-    case safe_browsing::PasswordProtectionTrigger::PASSWORD_PROTECTION_OFF:\n-      return em::ProfileSignalsReport::PASSWORD_PROTECTION_OFF;\n-    case safe_browsing::PasswordProtectionTrigger::PASSWORD_REUSE:\n-      return em::ProfileSignalsReport::PASSWORD_REUSE;\n-    case safe_browsing::PasswordProtectionTrigger::PHISHING_REUSE:\n-      return em::ProfileSignalsReport::PHISHING_REUSE;\n-    case safe_browsing::PasswordProtectionTrigger::\n-        PASSWORD_PROTECTION_TRIGGER_MAX:\n-      NOTREACHED();\n-  }\n-}\n-\n em::ProfileSignalsReport::RealtimeUrlCheckMode TranslateRealtimeUrlCheckMode(\n     enterprise_connectors::EnterpriseRealTimeUrlCheckMode mode) {\n   switch (mode) {\n@@ -112,18 +93,6 @@ em::ProfileSignalsReport::RealtimeUrlChe\n   }\n }\n \n-em::ProfileSignalsReport::SafeBrowsingLevel TranslateSafeBrowsingLevel(\n-    safe_browsing::SafeBrowsingState level) {\n-  switch (level) {\n-    case safe_browsing::SafeBrowsingState::NO_SAFE_BROWSING:\n-      return em::ProfileSignalsReport::NO_SAFE_BROWSING;\n-    case safe_browsing::SafeBrowsingState::STANDARD_PROTECTION:\n-      return em::ProfileSignalsReport::STANDARD_PROTECTION;\n-    case safe_browsing::SafeBrowsingState::ENHANCED_PROTECTION:\n-      return em::ProfileSignalsReport::ENHANCED_PROTECTION;\n-  }\n-}\n-\n #if BUILDFLAG(IS_WIN)\n std::unique_ptr<em::AntiVirusProduct> TranslateAvProduct(\n     device_signals::AvProduct av_product) {\n--- a/components/enterprise/browser/reporting/report_util.h\n+++ b/components/enterprise/browser/reporting/report_util.h\n@@ -23,17 +23,10 @@ std::string ObfuscateFilePath(const std:\n enterprise_management::SettingValue TranslateSettingValue(\n     device_signals::SettingValue setting_value);\n \n-enterprise_management::ProfileSignalsReport::PasswordProtectionTrigger\n-TranslatePasswordProtectionTrigger(\n-    std::optional<safe_browsing::PasswordProtectionTrigger> trigger);\n-\n enterprise_management::ProfileSignalsReport::RealtimeUrlCheckMode\n TranslateRealtimeUrlCheckMode(\n     enterprise_connectors::EnterpriseRealTimeUrlCheckMode mode);\n \n-enterprise_management::ProfileSignalsReport::SafeBrowsingLevel\n-TranslateSafeBrowsingLevel(safe_browsing::SafeBrowsingState level);\n-\n #if BUILDFLAG(IS_WIN)\n std::unique_ptr<enterprise_management::AntiVirusProduct> TranslateAvProduct(\n     device_signals::AvProduct av_product);\n--- a/components/enterprise/buildflags/buildflags.gni\n+++ b/components/enterprise/buildflags/buildflags.gni\n@@ -10,11 +10,11 @@ declare_args() {\n   # Indicates support for content analysis against a cloud agent for Enterprise\n   # Connector policies.\n   enterprise_cloud_content_analysis =\n-      is_win || is_mac || is_linux || is_chromeos || is_ios\n+      false\n \n   # Indicates support for content analysis against a cloud agent for Enterprise\n   # Connector policies.\n-  enterprise_local_content_analysis = is_win || is_mac || is_linux\n+  enterprise_local_content_analysis = false\n \n   # Indicates support for Data Control rules.\n   enterprise_data_controls =\n--- a/components/enterprise/connectors/core/analysis_service_settings_base.cc\n+++ b/components/enterprise/connectors/core/analysis_service_settings_base.cc\n@@ -271,8 +271,6 @@ CloudAnalysisSettings AnalysisServiceSet\n   CHECK(is_cloud_analysis());\n \n   CloudAnalysisSettings cloud_settings;\n-  cloud_settings.analysis_url =\n-      GetRegionalizedEndpoint(analysis_config_->region_urls, data_region);\n   // We assume all support_tags structs have the same max file size.\n   cloud_settings.max_file_size =\n       analysis_config_->supported_tags[0].max_file_size;\n--- a/components/enterprise/connectors/core/reporting_service_settings.cc\n+++ b/components/enterprise/connectors/core/reporting_service_settings.cc\n@@ -45,16 +45,6 @@ ReportingServiceSettings::ReportingServi\n       else\n         DVLOG(1) << \"Enabled event name list contains a non string value!\";\n     }\n-  } else {\n-    // When the list of enabled event names is not set, we assume all events are\n-    // enabled. This is to support the feature of selecting the \"All always on\"\n-    // option in the policy UI, which means to always enable all events, even\n-    // when new events may be added in the future. And this is also to support\n-    // existing customer policies that were created before we introduced the\n-    // concept of enabling/disabling events.\n-    for (const char* event : kAllReportingEnabledEvents) {\n-      enabled_event_names_.insert(event);\n-    }\n   }\n \n   const base::ListValue* enabled_opt_in_events_value =\n--- a/components/password_manager/core/browser/leak_detection/leak_detection_check_impl.cc\n+++ b/components/password_manager/core/browser/leak_detection/leak_detection_check_impl.cc\n@@ -312,12 +312,7 @@ bool LeakDetectionCheck::IsURLBlockedByP\n     const PrefService& prefs,\n     const GURL& form_url,\n     autofill::SavePasswordProgressLogger* logger) {\n-  bool is_blocked = safe_browsing::IsURLAllowlistedByPolicy(form_url, prefs);\n-  if (is_blocked && logger) {\n-    logger->LogMessage(autofill::SavePasswordProgressLogger::\n-                           STRING_LEAK_DETECTION_URL_BLOCKED);\n-  }\n-  return is_blocked;\n+  return false;\n }\n \n }  // namespace password_manager\n--- a/components/safe_browsing/content/common/safe_browsing.mojom\n+++ b/components/safe_browsing/content/common/safe_browsing.mojom\n@@ -177,7 +177,6 @@ interface PhishingDetector {\n \n // Interface for setting a phishing model. This is scoped to an entire\n // RenderProcess.\n-[EnableIf=full_safe_browsing]\n interface PhishingModelSetter {\n   // A classification model for client-side phishing detection in addition to\n   // the image embedding model. This call sends the model and the image\n--- a/components/safe_browsing/core/browser/BUILD.gn\n+++ b/components/safe_browsing/core/browser/BUILD.gn\n@@ -21,8 +21,6 @@ source_set(\"browser\") {\n     \"url_checker_delegate.h\",\n     \"url_realtime_mechanism.cc\",\n     \"url_realtime_mechanism.h\",\n-    \"user_population.cc\",\n-    \"user_population.h\",\n   ]\n \n   configs += [ \"//build/config/compiler:wexit_time_destructors\" ]\n--- a/components/safe_browsing/core/browser/db/hash_prefix_map.h\n+++ b/components/safe_browsing/core/browser/db/hash_prefix_map.h\n@@ -11,6 +11,7 @@\n #include <unordered_map>\n \n #include \"base/files/memory_mapped_file.h\"\n+#include \"base/task/sequenced_task_runner.h\"\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n #include \"components/safe_browsing/core/browser/db/v4_store.pb.h\"\n #include \"components/safe_browsing/core/common/proto/webui.pb.h\"\n--- a/components/safe_browsing/core/browser/db/v4_update_protocol_manager.cc\n+++ b/components/safe_browsing/core/browser/db/v4_update_protocol_manager.cc\n@@ -29,7 +29,6 @@\n #include \"services/network/public/mojom/url_response_head.mojom.h\"\n \n using base::Time;\n-using enum safe_browsing::ExtendedReportingLevel;\n \n namespace {\n \n--- a/components/safe_browsing/core/browser/hashprefix_realtime/hash_realtime_service.h\n+++ b/components/safe_browsing/core/browser/hashprefix_realtime/hash_realtime_service.h\n@@ -12,6 +12,7 @@\n #include <string>\n #include <vector>\n \n+#include \"base/containers/flat_map.h\"\n #include \"base/containers/unique_ptr_adapters.h\"\n #include \"base/gtest_prod_util.h\"\n #include \"base/memory/raw_ptr.h\"\n--- a/components/safe_browsing/core/browser/hashprefix_realtime/ohttp_key_service.cc\n+++ b/components/safe_browsing/core/browser/hashprefix_realtime/ohttp_key_service.cc\n@@ -17,7 +17,6 @@\n #include \"components/safe_browsing/core/browser/utils/backoff_operator.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/hashprefix_realtime/hash_realtime_utils.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"google_apis/google_api_keys.h\"\n #include \"net/base/net_errors.h\"\n@@ -126,21 +125,7 @@ constexpr net::NetworkTrafficAnnotationT\n bool IsEnabled(PrefService* pref_service,\n                std::optional<std::string> country,\n                bool are_background_lookups_allowed) {\n-  // If this class has been created, it is already known that the session is not\n-  // off-the-record, so |is_off_the_record| is passed through as false.\n-  safe_browsing::hash_realtime_utils::HashRealTimeSelection\n-      hash_realtime_selection =\n-          safe_browsing::hash_realtime_utils::DetermineHashRealTimeSelection(\n-              /*is_off_the_record=*/false, pref_service,\n-              /*latest_country=*/country, /*log_usage_histograms=*/false,\n-              /*are_background_lookups_allowed=*/\n-              are_background_lookups_allowed);\n-  return hash_realtime_selection ==\n-             safe_browsing::hash_realtime_utils::HashRealTimeSelection::\n-                 kHashRealTimeService ||\n-         hash_realtime_selection ==\n-             safe_browsing::hash_realtime_utils::HashRealTimeSelection::\n-                 kHashRealTimeServiceBackgroundOnly;\n+  return false;\n }\n \n GURL GetKeyFetchingUrl() {\n@@ -443,42 +428,9 @@ void OhttpKeyService::MaybeStartServerTr\n }\n \n void OhttpKeyService::PopulateKeyFromPref() {\n-  std::string key =\n-      pref_service_->GetString(prefs::kSafeBrowsingHashRealTimeOhttpKey);\n-  base::Time expiration_time = pref_service_->GetTime(\n-      prefs::kSafeBrowsingHashRealTimeOhttpExpirationTime);\n-  std::string key_fetch_url = pref_service_->GetString(\n-      prefs::kSafeBrowsingHashRealTimeOhttpKeyFetchUrl);\n-  if (!key.empty() && expiration_time > base::Time::Now() &&\n-      key_fetch_url.empty()) {\n-    // If the key fetch URL is empty, it means the key was saved by a version\n-    // of Chrome that used a hardcoded URL. Treat it as such to avoid\n-    // unnecessary key fetches.\n-    static constexpr char kHardCodedKeyFetchUrl[] =\n-        \"https://safebrowsingohttpgateway.googleapis.com/v1/ohttp/\"\n-        \"hpkekeyconfig\";\n-    key_fetch_url = kHardCodedKeyFetchUrl;\n-    // TODO(crbug.com/461955661): Remove this entire if statement once the URL\n-    // has been saved to preferences for one full Chrome milestone.\n-  }\n-  if (!key.empty() && expiration_time > base::Time::Now() &&\n-      key_fetch_url == kHashPrefixRealTimeLookupsKeyFetchUrl.Get()) {\n-    std::string decoded_key;\n-    base::Base64Decode(key, &decoded_key);\n-    ohttp_key_ = {decoded_key, expiration_time};\n-  }\n }\n \n void OhttpKeyService::StoreKeyToPref() {\n-  if (ohttp_key_ && ohttp_key_->expiration > base::Time::Now()) {\n-    std::string base64_encoded_key = base::Base64Encode(ohttp_key_->key);\n-    pref_service_->SetString(prefs::kSafeBrowsingHashRealTimeOhttpKey,\n-                             base64_encoded_key);\n-    pref_service_->SetTime(prefs::kSafeBrowsingHashRealTimeOhttpExpirationTime,\n-                           ohttp_key_->expiration);\n-    pref_service_->SetString(prefs::kSafeBrowsingHashRealTimeOhttpKeyFetchUrl,\n-                             kHashPrefixRealTimeLookupsKeyFetchUrl.Get());\n-  }\n }\n \n void OhttpKeyService::Shutdown() {\n--- a/components/safe_browsing/core/browser/realtime/chrome_enterprise_url_lookup_service.cc\n+++ b/components/safe_browsing/core/browser/realtime/chrome_enterprise_url_lookup_service.cc\n@@ -151,7 +151,7 @@ bool ChromeEnterpriseRealTimeUrlLookupSe\n \n bool ChromeEnterpriseRealTimeUrlLookupService::CanCheckSafeBrowsingDb() const {\n   // Check database if safe browsing is enabled.\n-  return safe_browsing::IsSafeBrowsingEnabled(*pref_service_);\n+  return false;\n }\n \n bool ChromeEnterpriseRealTimeUrlLookupService::\n--- a/components/safe_browsing/core/browser/realtime/url_lookup_service.cc\n+++ b/components/safe_browsing/core/browser/realtime/url_lookup_service.cc\n@@ -257,17 +257,6 @@ void RealTimeUrlLookupService::MaybeLogP\n     bool request_had_cookie,\n     bool was_first_request,\n     bool sent_with_token) {\n-  std::string histogram_name = kCookieHistogramPrefix;\n-  base::StrAppend(&histogram_name,\n-                  {was_first_request ? \".FirstRequest\" : \".SubsequentRequest\"});\n-  base::UmaHistogramBoolean(histogram_name, request_had_cookie);\n-  // `pref_service_` can be null in tests.\n-  // This histogram variant is only logged for signed-out ESB users.\n-  if (!sent_with_token && pref_service_ &&\n-      IsEnhancedProtectionEnabled(*pref_service_)) {\n-    base::StrAppend(&histogram_name, {\".SignedOutEsbUser\"});\n-    base::UmaHistogramBoolean(histogram_name, request_had_cookie);\n-  }\n }\n \n void RealTimeUrlLookupService::MaybeFillReferringWebApk(\n--- a/components/safe_browsing/core/browser/realtime/url_lookup_service_base.cc\n+++ b/components/safe_browsing/core/browser/realtime/url_lookup_service_base.cc\n@@ -639,22 +639,6 @@ RealTimeUrlLookupServiceBase::GetResourc\n RTLookupRequest::LlamaForcedTriggerCapability\n RealTimeUrlLookupServiceBase::MaybeGetLlamaForcedTriggerCapability() const {\n   auto model_type = IntelligentScanModelType::NOT_SUPPORTED;\n-  if (pref_service_ && IsEnhancedProtectionEnabled(*pref_service_) &&\n-      intelligent_scan_delegate_) {\n-    switch (intelligent_scan_delegate_->GetIntelligentScanModelType(\n-        /*log_failed_eligibility_reason=*/false)) {\n-      case IntelligentScanDelegate::ModelType::kNotSupportedOnDevice:\n-      case IntelligentScanDelegate::ModelType::kNotSupportedServerSide:\n-        model_type = IntelligentScanModelType::NOT_SUPPORTED;\n-        break;\n-      case IntelligentScanDelegate::ModelType::kOnDevice:\n-        model_type = IntelligentScanModelType::ON_DEVICE_MODEL;\n-        break;\n-      case IntelligentScanDelegate::ModelType::kServerSide:\n-        model_type = IntelligentScanModelType::SERVER_SIDE_MODEL;\n-        break;\n-    }\n-  }\n   RTLookupRequest::LlamaForcedTriggerCapability capability;\n   capability.set_supported_model_type(model_type);\n   return capability;\n@@ -675,17 +659,6 @@ void RealTimeUrlLookupServiceBase::Start\n   request->set_report_type(is_sampled_report ? RTLookupRequest::SAMPLED_REPORT\n                                              : RTLookupRequest::FULL_REPORT);\n   request->set_frame_type(RTLookupRequest::MAIN_FRAME);\n-  if (referring_app_info && pref_service_ &&\n-      IsEnhancedProtectionEnabled(*pref_service_)) {\n-    safe_browsing::ReferringAppInfo referring_app_info_proto;\n-    referring_app_info_proto.set_referring_app_name(\n-        referring_app_info.value().referring_app_name);\n-    referring_app_info_proto.set_referring_app_source(\n-        referring_app_info.value().referring_app_source);\n-    *request->mutable_referring_app_info() =\n-        std::move(referring_app_info_proto);\n-    MaybeFillReferringWebApk(*referring_app_info, *request);\n-  }\n   *request->mutable_llama_forced_trigger_capability() =\n       MaybeGetLlamaForcedTriggerCapability();\n \n--- a/components/safe_browsing/core/browser/safe_browsing_hats_delegate.h\n+++ b/components/safe_browsing/core/browser/safe_browsing_hats_delegate.h\n@@ -5,6 +5,8 @@\n #ifndef COMPONENTS_SAFE_BROWSING_CORE_BROWSER_SAFE_BROWSING_HATS_DELEGATE_H_\n #define COMPONENTS_SAFE_BROWSING_CORE_BROWSER_SAFE_BROWSING_HATS_DELEGATE_H_\n \n+#include <map>\n+\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n \n--- a/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.cc\n+++ b/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.cc\n@@ -403,7 +403,6 @@ void TailoredSecurityService::MaybeNotif\n       RecordEnabledNotificationResult(\n           TailoredSecurityNotificationResult::kHistoryNotSynced);\n     }\n-    SaveRetryState(TailoredSecurityRetryState::NO_RETRY_NEEDED);\n     return;\n   }\n \n@@ -413,7 +412,6 @@ void TailoredSecurityService::MaybeNotif\n       RecordEnabledNotificationResult(\n           TailoredSecurityNotificationResult::kSafeBrowsingControlledByPolicy);\n     }\n-    SaveRetryState(TailoredSecurityRetryState::NO_RETRY_NEEDED);\n     return;\n   }\n \n@@ -529,25 +527,10 @@ void TailoredSecurityService::Shutdown()\n }\n \n void TailoredSecurityService::TailoredSecurityTimestampUpdateCallback() {\n-  // TODO(crbug.com/40925236): remove sync flow last user interaction pref.\n-  prefs_->SetInteger(prefs::kTailoredSecuritySyncFlowLastUserInteractionState,\n-                     TailoredSecurityRetryState::UNKNOWN);\n-  prefs_->SetTime(prefs::kTailoredSecuritySyncFlowLastRunTime,\n-                  base::Time::Now());\n-  // If this method fails, then a retry is needed. If it succeeds, the\n-  // ChromeTailoredSecurityService will set this value to NO_RETRY_NEEDED for\n-  // us.\n-  prefs_->SetInteger(prefs::kTailoredSecuritySyncFlowRetryState,\n-                     TailoredSecurityRetryState::RETRY_NEEDED);\n-\n   StartRequest(base::BindOnce(&TailoredSecurityService::MaybeNotifySyncUser,\n                               weak_ptr_factory_.GetWeakPtr()));\n }\n \n-void TailoredSecurityService::SaveRetryState(TailoredSecurityRetryState state) {\n-  prefs_->SetInteger(prefs::kTailoredSecuritySyncFlowRetryState, state);\n-}\n-\n void TailoredSecurityService::SetCanQuery(bool can_query) {\n   can_query_ = can_query;\n   if (can_query) {\n--- a/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.h\n+++ b/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.h\n@@ -23,7 +23,6 @@\n #include \"base/values.h\"\n #include \"components/keyed_service/core/keyed_service.h\"\n #include \"components/prefs/pref_change_registrar.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"net/traffic_annotation/network_traffic_annotation.h\"\n #include \"url/gurl.h\"\n \n@@ -181,9 +180,6 @@ class TailoredSecurityService : public K\n                            RetryLogicTimestampUpdateCallbackRecordsStartTime);\n   friend class TailoredSecurityTabHelperTest;\n \n-  // Saves the supplied `TailoredSecurityRetryState` to preferences.\n-  void SaveRetryState(TailoredSecurityRetryState state);\n-\n   // Stores pointer to `IdentityManager` instance. It must outlive the\n   // `TailoredSecurityService` and can be null during tests.\n   raw_ptr<signin::IdentityManager> identity_manager_;\n--- a/components/safe_browsing/core/browser/verdict_cache_manager.cc\n+++ b/components/safe_browsing/core/browser/verdict_cache_manager.cc\n@@ -468,16 +468,6 @@ VerdictCacheManager::VerdictCacheManager\n   // pref_service can be null in tests.\n   if (pref_service) {\n     pref_change_registrar_.Init(pref_service);\n-    pref_change_registrar_.Add(\n-        prefs::kSafeBrowsingEnhanced,\n-        base::BindRepeating(&VerdictCacheManager::CleanUpAllPageLoadTokens,\n-                            weak_factory_.GetWeakPtr(),\n-                            ClearReason::kSafeBrowsingStateChanged));\n-    pref_change_registrar_.Add(\n-        prefs::kSafeBrowsingEnabled,\n-        base::BindRepeating(&VerdictCacheManager::CleanUpAllPageLoadTokens,\n-                            weak_factory_.GetWeakPtr(),\n-                            ClearReason::kSafeBrowsingStateChanged));\n   }\n   // sync_observer_ can be null in some embedders that don't support sync.\n   if (sync_observer_) {\n--- a/components/security_interstitials/content/ssl_blocking_page_base.cc\n+++ b/components/security_interstitials/content/ssl_blocking_page_base.cc\n@@ -4,7 +4,6 @@\n \n #include \"components/security_interstitials/content/ssl_blocking_page_base.h\"\n \n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/core/controller_client.h\"\n #include \"components/security_interstitials/core/metrics_helper.h\"\n@@ -42,33 +41,7 @@ SSLBlockingPageBase::~SSLBlockingPageBas\n void SSLBlockingPageBase::OnInterstitialClosing() {}\n \n bool SSLBlockingPageBase::ShouldShowEnhancedProtectionMessage() {\n-  // Only show the enhanced protection message if all the following are true:\n-  // |can_show_enhanced_protection_message_| is set to true AND\n-  // the window is not incognito AND\n-  // Safe Browsing is not managed by policy AND\n-  // the user is not already in enhanced protection mode.\n-  if (!can_show_enhanced_protection_message_) {\n     return false;\n-  }\n-\n-  const bool in_incognito =\n-      web_contents()->GetBrowserContext()->IsOffTheRecord();\n-  const PrefService* pref_service = GetPrefs(web_contents());\n-  bool is_enhanced_protection_enabled =\n-      safe_browsing::IsEnhancedProtectionEnabled(*pref_service);\n-  bool is_safe_browsing_managed =\n-      safe_browsing::IsSafeBrowsingPolicyManaged(*pref_service);\n-\n-  if (in_incognito) {\n-    return false;\n-  }\n-  if (is_enhanced_protection_enabled) {\n-    return false;\n-  }\n-  if (is_safe_browsing_managed) {\n-    return false;\n-  }\n-  return true;\n }\n \n void SSLBlockingPageBase::PopulateEnhancedProtectionMessage(\n--- a/components/sync_preferences/common_syncable_prefs_database.cc\n+++ b/components/sync_preferences/common_syncable_prefs_database.cc\n@@ -401,9 +401,6 @@ constexpr auto kCommonSyncablePrefsAllow\n         {plus_addresses::prefs::kLastPlusAddressFillingTime,\n          {syncable_prefs_ids::kLastPlusAddressFillingTime, syncer::PREFERENCES,\n           PrefSensitivity::kNone, MergeBehavior::kNone}},\n-        {prefs::kSafeBrowsingEnhanced,\n-         {syncable_prefs_ids::kSafeBrowsingEnhanced, syncer::PREFERENCES,\n-          PrefSensitivity::kNone, MergeBehavior::kNone}},\n #if BUILDFLAG(IS_ANDROID)\n         {autofill::prefs::kFacilitatedPaymentsPix,\n          {syncable_prefs_ids::kFacilitatedPaymentsPix, syncer::PREFERENCES,\n--- a/content/browser/file_system_access/file_system_access_safe_move_helper.cc\n+++ b/content/browser/file_system_access/file_system_access_safe_move_helper.cc\n@@ -169,15 +169,8 @@ void FileSystemAccessSafeMoveHelper::Sta\n     return;\n   }\n \n-  if (!RequireAfterWriteChecks() || !manager_->permission_context()) {\n     DidAfterWriteCheck(\n         FileSystemAccessPermissionContext::AfterWriteCheckResult::kAllow);\n-    return;\n-  }\n-\n-  ComputeHashForSourceFile(\n-      base::BindOnce(&FileSystemAccessSafeMoveHelper::DoAfterWriteCheck,\n-                     weak_factory_.GetWeakPtr()));\n }\n \n void FileSystemAccessSafeMoveHelper::ComputeHashForSourceFile(\n@@ -216,45 +209,6 @@ bool FileSystemAccessSafeMoveHelper::Req\n   return dest_url().type() != storage::kFileSystemTypeTemporary;\n }\n \n-void FileSystemAccessSafeMoveHelper::DoAfterWriteCheck(\n-    base::File::Error hash_result,\n-    const std::string& hash,\n-    int64_t size) {\n-  DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);\n-\n-  if (hash_result != base::File::FILE_OK) {\n-    // Calculating the hash failed.\n-    std::move(callback_).Run(file_system_access_error::FromStatus(\n-        blink::mojom::FileSystemAccessStatus::kOperationAborted,\n-        \"Failed to perform Safe Browsing check.\"));\n-    return;\n-  }\n-\n-  if (!manager_) {\n-    std::move(callback_).Run(file_system_access_error::FromStatus(\n-        blink::mojom::FileSystemAccessStatus::kOperationAborted));\n-    return;\n-  }\n-\n-  content::GlobalRenderFrameHostId outermost_main_frame_id;\n-  auto* rfh = content::RenderFrameHost::FromID(context_.frame_id);\n-  if (rfh)\n-    outermost_main_frame_id = rfh->GetOutermostMainFrame()->GetGlobalId();\n-\n-  auto item = std::make_unique<FileSystemAccessWriteItem>();\n-  item->target_file_path = dest_url().path();\n-  item->full_path = source_url().path();\n-  item->sha256_hash = hash;\n-  item->size = size;\n-  item->frame_url = context_.url;\n-  item->outermost_main_frame_id = outermost_main_frame_id;\n-  item->has_user_gesture = has_transient_user_activation_;\n-  manager_->permission_context()->PerformAfterWriteChecks(\n-      std::move(item), context_.frame_id,\n-      base::BindOnce(&FileSystemAccessSafeMoveHelper::DidAfterWriteCheck,\n-                     weak_factory_.GetWeakPtr()));\n-}\n-\n void FileSystemAccessSafeMoveHelper::DidAfterWriteCheck(\n     FileSystemAccessPermissionContext::AfterWriteCheckResult result) {\n   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);\n--- a/content/browser/file_system_access/file_system_access_safe_move_helper.h\n+++ b/content/browser/file_system_access/file_system_access_safe_move_helper.h\n@@ -60,9 +60,6 @@ class CONTENT_EXPORT FileSystemAccessSaf\n  private:\n   SEQUENCE_CHECKER(sequence_checker_);\n \n-  void DoAfterWriteCheck(base::File::Error hash_result,\n-                         const std::string& hash,\n-                         int64_t size);\n   void DidAfterWriteCheck(\n       FileSystemAccessPermissionContext::AfterWriteCheckResult result);\n   void DidFileSkipQuarantine(base::File::Error result);\n--- a/extensions/browser/api/declarative_net_request/declarative_net_request_api.cc\n+++ b/extensions/browser/api/declarative_net_request/declarative_net_request_api.cc\n@@ -134,13 +134,6 @@ DeclarativeNetRequestUpdateDynamicRulesF\n     return RespondNow(NoArguments());\n   }\n \n-  // Collect rules to add in the Extension Telemetry Service.\n-  if (!rules_to_add.empty()) {\n-    ExtensionsBrowserClient::Get()\n-        ->GetSafeBrowsingDelegate()\n-        ->NotifyExtensionApiDeclarativeNetRequest(browser_context(),\n-                                                  extension_id(), rules_to_add);\n-  }\n \n   auto* rules_monitor_service =\n       declarative_net_request::RulesMonitorService::Get(browser_context());\n@@ -248,13 +241,6 @@ DeclarativeNetRequestUpdateSessionRulesF\n     return RespondNow(NoArguments());\n   }\n \n-  // Collect rules to add in the Extension Telemetry Service.\n-  if (!rules_to_add.empty()) {\n-    ExtensionsBrowserClient::Get()\n-        ->GetSafeBrowsingDelegate()\n-        ->NotifyExtensionApiDeclarativeNetRequest(browser_context(),\n-                                                  extension_id(), rules_to_add);\n-  }\n \n   auto* rules_monitor_service =\n       declarative_net_request::RulesMonitorService::Get(browser_context());\n--- a/extensions/browser/api/execute_code_function.cc\n+++ b/extensions/browser/api/execute_code_function.cc\n@@ -178,12 +178,6 @@ ExtensionFunction::ResponseAction Execut\n     return RespondNow(Error(std::move(error)));\n \n   if (details_->code) {\n-    if (!IsWebView() && extension()) {\n-      ExtensionsBrowserClient::Get()\n-          ->GetSafeBrowsingDelegate()\n-          ->NotifyExtensionApiTabExecuteScript(browser_context(),\n-                                               extension_id(), *details_->code);\n-    }\n \n     if (!Execute(*details_->code, &error))\n       return RespondNow(Error(std::move(error)));\n--- a/extensions/browser/api/web_request/extension_web_request_event_router.cc\n+++ b/extensions/browser/api/web_request/extension_web_request_event_router.cc\n@@ -1142,14 +1142,6 @@ int WebRequestEventRouter::OnBeforeReque\n           DCHECK(action.redirect_url);\n           OnDNRActionMatched(browser_context, *request, action);\n           *new_url = GetNewUrl(action.redirect_url.value(), browser_context);\n-          // Collect redirect action data for the Extension Telemetry Service.\n-          if (action.type == DNRRequestAction::Type::REDIRECT) {\n-            ExtensionsBrowserClient::Get()\n-                ->GetSafeBrowsingDelegate()\n-                ->NotifyExtensionDeclarativeNetRequestRedirectAction(\n-                    browser_context, action.extension_id, request->url,\n-                    action.redirect_url.value());\n-          }\n           RecordThatNavigationWasInitiatedByExtension(\n               request, browser_context, new_url, action.extension_id);\n           return net::OK;\n--- a/extensions/browser/blocklist.cc\n+++ b/extensions/browser/blocklist.cc\n@@ -183,21 +183,8 @@ Blocklist::~Blocklist() = default;\n void Blocklist::GetBlocklistedIDs(const std::set<ExtensionId>& ids,\n                                   GetBlocklistedIDsCallback callback) {\n   DCHECK_CURRENTLY_ON(BrowserThread::UI);\n-\n-  if (ids.empty() || !GetDatabaseManager().get()) {\n     base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(\n         FROM_HERE, base::BindOnce(std::move(callback), BlocklistStateMap()));\n-    return;\n-  }\n-\n-  // Constructing the SafeBrowsingClientImpl begins the process of asking\n-  // safebrowsing for the blocklisted extensions. The set of blocklisted\n-  // extensions returned by SafeBrowsing will then be passed to\n-  // GetBlocklistStateIDs to get the particular BlocklistState for each id.\n-  SafeBrowsingClientImpl::Start(\n-      SafeBrowsingDatabaseManager::Client::GetPassKey(), ids,\n-      base::BindOnce(&Blocklist::GetBlocklistStateForIDs,\n-                     weak_ptr_factory_.GetWeakPtr(), std::move(callback)));\n }\n \n void Blocklist::GetMalwareIDs(const std::set<ExtensionId>& ids,\n--- a/extensions/browser/blocklist_state_fetcher.cc\n+++ b/extensions/browser/blocklist_state_fetcher.cc\n@@ -44,7 +44,6 @@ void BlocklistStateFetcher::Request(cons\n     std::optional<safe_browsing::V4ProtocolConfig> config =\n         ExtensionsBrowserClient::Get()->GetV4ProtocolConfig();\n     if (config) {\n-      SetSafeBrowsingConfig(*config);\n     } else {\n       base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(\n           FROM_HERE, base::BindOnce(std::move(callback), BLOCKLISTED_UNKNOWN));\n--- a/extensions/browser/extension_host.cc\n+++ b/extensions/browser/extension_host.cc\n@@ -168,11 +168,6 @@ ExtensionHost::ExtensionHost(const Exten\n   ExtensionWebContentsObserver::GetForWebContents(host_contents())->\n       dispatcher()->set_delegate(this);\n \n-  // Create password reuse detection manager when new extension web contents are\n-  // created.\n-  ExtensionsBrowserClient::Get()\n-      ->GetSafeBrowsingDelegate()\n-      ->CreatePasswordReuseDetectionManager(host_contents_.get());\n \n   ExtensionHostRegistry::Get(browser_context_)->ExtensionHostCreated(this);\n }\n--- a/extensions/browser/extension_registrar.cc\n+++ b/extensions/browser/extension_registrar.cc\n@@ -799,119 +799,27 @@ void ExtensionRegistrar::UnblockAllExten\n \n void ExtensionRegistrar::OnBlocklistStateRemoved(\n     const std::string& extension_id) {\n-  if (blocklist_prefs::IsExtensionBlocklisted(extension_id, extension_prefs_)) {\n-    return;\n-  }\n-\n-  // Clear acknowledged state.\n-  blocklist_prefs::RemoveAcknowledgedBlocklistState(\n-      extension_id, BitMapBlocklistState::BLOCKLISTED_MALWARE,\n-      extension_prefs_);\n-\n-  scoped_refptr<const Extension> extension =\n-      registry_->blocklisted_extensions().GetByID(extension_id);\n-  DCHECK(extension);\n-  registry_->RemoveBlocklisted(extension_id);\n-  AddExtension(extension.get());\n }\n \n void ExtensionRegistrar::OnBlocklistStateAdded(\n     const std::string& extension_id) {\n-  DCHECK(\n-      blocklist_prefs::IsExtensionBlocklisted(extension_id, extension_prefs_));\n-  // The extension was already acknowledged by the user, it should already be in\n-  // the unloaded state.\n-  if (blocklist_prefs::HasAcknowledgedBlocklistState(\n-          extension_id, BitMapBlocklistState::BLOCKLISTED_MALWARE,\n-          extension_prefs_)) {\n-    DCHECK(registry_->blocklisted_extensions().GetIDs().contains(extension_id));\n-    return;\n-  }\n-\n-  scoped_refptr<const Extension> extension =\n-      registry_->GetInstalledExtension(extension_id);\n-  registry_->AddBlocklisted(extension);\n-  RemoveExtension(extension_id, UnloadedExtensionReason::BLOCKLIST);\n }\n \n void ExtensionRegistrar::OnGreylistStateRemoved(\n     const std::string& extension_id) {\n-  bool is_on_sb_list = (blocklist_prefs::GetSafeBrowsingExtensionBlocklistState(\n-                            extension_id, extension_prefs_) !=\n-                        BitMapBlocklistState::NOT_BLOCKLISTED);\n-  bool is_on_omaha_list =\n-      blocklist_prefs::HasAnyOmahaGreylistState(extension_id, extension_prefs_);\n-  if (is_on_sb_list || is_on_omaha_list) {\n-    return;\n-  }\n-  // Clear all acknowledged states so the extension will still get disabled if\n-  // it is added to the greylist again.\n-  blocklist_prefs::ClearAcknowledgedGreylistStates(extension_id,\n-                                                   extension_prefs_);\n-  RemoveDisableReasonAndMaybeEnable(extension_id,\n-                                    disable_reason::DISABLE_GREYLIST);\n-\n-  // A user can enable and disable a force-installed extension while it is\n-  // greylisted. If a user disables an extension while greylisted, the\n-  // extension gets a DISABLE_USER_ACTION disable reason assigned to it. So\n-  // remove the DISABLE_USER_ACTION disable reason as well when a\n-  // force-installed extension gets \"un-greylisted\" to allow the extension\n-  // to be re-enabled.\n-  const Extension* extension = registry_->GetInstalledExtension(extension_id);\n-  if (extension && extension_system_->management_policy()->MustRemainEnabled(\n-                       extension, nullptr)) {\n-    RemoveDisableReasonAndMaybeEnable(extension_id,\n-                                      disable_reason::DISABLE_USER_ACTION);\n-  }\n }\n \n void ExtensionRegistrar::OnGreylistStateAdded(const std::string& extension_id,\n                                               BitMapBlocklistState new_state) {\n-#if DCHECK_IS_ON()\n-  bool has_new_state_on_sb_list =\n-      (blocklist_prefs::GetSafeBrowsingExtensionBlocklistState(\n-           extension_id, extension_prefs_) == new_state);\n-  bool has_new_state_on_omaha_list = blocklist_prefs::HasOmahaBlocklistState(\n-      extension_id, new_state, extension_prefs_);\n-  DCHECK(has_new_state_on_sb_list || has_new_state_on_omaha_list);\n-#endif\n-  if (blocklist_prefs::HasAcknowledgedBlocklistState(extension_id, new_state,\n-                                                     extension_prefs_)) {\n-    // If the extension is already acknowledged, don't disable it again\n-    // because it can be already re-enabled by the user. This could happen if\n-    // the extension is added to the SafeBrowsing blocklist, and then\n-    // subsequently marked by Omaha. In this case, we don't want to disable the\n-    // extension twice.\n-    return;\n-  }\n-\n-  // Set the current greylist states to acknowledge immediately because the\n-  // extension is disabled silently. Clear the other acknowledged state because\n-  // when the state changes to another greylist state in the future, we'd like\n-  // to disable the extension again.\n-  blocklist_prefs::UpdateCurrentGreylistStatesAsAcknowledged(extension_id,\n-                                                             extension_prefs_);\n-  DisableExtension(extension_id, {disable_reason::DISABLE_GREYLIST});\n }\n \n void ExtensionRegistrar::BlocklistExtensionForTest(\n     const std::string& extension_id) {\n-  blocklist_prefs::SetSafeBrowsingExtensionBlocklistState(\n-      extension_id, BitMapBlocklistState::BLOCKLISTED_MALWARE,\n-      extension_prefs_);\n-  OnBlocklistStateAdded(extension_id);\n }\n \n void ExtensionRegistrar::GreylistExtensionForTest(\n     const std::string& extension_id,\n     const BitMapBlocklistState& state) {\n-  blocklist_prefs::SetSafeBrowsingExtensionBlocklistState(extension_id, state,\n-                                                          extension_prefs_);\n-  if (state == BitMapBlocklistState::NOT_BLOCKLISTED) {\n-    OnGreylistStateRemoved(extension_id);\n-  } else {\n-    OnGreylistStateAdded(extension_id, state);\n-  }\n }\n \n // static\n--- a/extensions/browser/updater/update_service.cc\n+++ b/extensions/browser/updater/update_service.cc\n@@ -132,13 +132,6 @@ void UpdateService::OnCrxStateChange(Upd\n       break;\n   }\n \n-  if (should_perform_action_on_omaha_attributes) {\n-    base::DictValue attributes = GetExtensionOmahaAttributes(item);\n-    // Note that it's important to perform actions even if |attributes| is\n-    // empty, missing values may default to false and have associated logic.\n-    ExtensionSystem::Get(browser_context_)\n-        ->PerformActionBasedOnOmahaAttributes(item.id, attributes);\n-  }\n }\n \n UpdateService::UpdateService(\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/fix-learn-doubleclick-hsts.patch",
    "content": "# Split up the learn.doubleclick.net string literal to prevent domain substitution breaking compilation due to the use of the excluded HSTS list json file in this code.\n\n--- a/net/tools/transport_security_state_generator/transport_security_state_generator.cc\n+++ b/net/tools/transport_security_state_generator/transport_security_state_generator.cc\n@@ -130,7 +130,7 @@ bool CheckDuplicateEntries(const Transpo\n bool CheckNoopEntries(const TransportSecurityStateEntries& entries) {\n   for (const auto& entry : entries) {\n     if (!entry->force_https && entry->pinset.empty()) {\n-      if (entry->hostname == \"learn.doubleclick.net\") {\n+      if (entry->hostname == \"learn.double\" \"click.\" \"net\") {\n         // This entry is deliberately used as an exclusion.\n         continue;\n       }\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/move-js-optimizer-unfamiliar-sites.patch",
    "content": "# This was added to the safebrowsing prefs in\n# https://chromium-review.googlesource.com/c/chromium/src/+/6898756\n# Move it to content_settings since we remove safebrowsing prefs\n--- a/chrome/browser/content_settings/generated_javascript_optimizer_pref.cc\n+++ b/chrome/browser/content_settings/generated_javascript_optimizer_pref.cc\n@@ -13,6 +13,7 @@\n #include \"components/content_settings/browser/ui/javascript_optimizer_setting.h\"\n #include \"components/content_settings/core/common/features.h\"\n #include \"components/prefs/pref_service.h\"\n+#include \"components/content_settings/core/common/pref_names.h\"\n \n using extensions::api::settings_private::Enforcement;\n using extensions::api::settings_private::PrefObject;\n--- a/chrome/browser/site_protection/site_familiarity_utils.cc\n+++ b/chrome/browser/site_protection/site_familiarity_utils.cc\n@@ -9,6 +9,7 @@\n #include \"components/content_settings/browser/ui/javascript_optimizer_setting.h\"\n #include \"components/content_settings/core/browser/host_content_settings_map.h\"\n #include \"components/content_settings/core/common/features.h\"\n+#include \"components/content_settings/core/common/pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"content/public/browser/render_frame_host.h\"\n #include \"content/public/browser/render_process_host.h\"\n--- a/components/content_settings/core/browser/content_settings_pref_provider.cc\n+++ b/components/content_settings/core/browser/content_settings_pref_provider.cc\n@@ -98,6 +98,7 @@ void PrefProvider::RegisterProfilePrefs(\n       ContentSettingsPattern::kContentSettingsPatternVersion);\n   registry->RegisterBooleanPref(prefs::kInContextCookieControlsOpened, false);\n   registry->RegisterBooleanPref(kGeolocationMigrateExceptionsPref, false);\n+  registry->RegisterBooleanPref(prefs::kJavascriptOptimizerBlockedForUnfamiliarSites, false);\n \n   WebsiteSettingsRegistry* website_settings =\n       WebsiteSettingsRegistry::GetInstance();\n--- a/components/content_settings/core/common/pref_names.h\n+++ b/components/content_settings/core/common/pref_names.h\n@@ -281,6 +281,8 @@ inline constexpr char kDesktopSiteWindow\n     \"desktop_site.window_setting\";\n #endif\n \n+inline constexpr char kJavascriptOptimizerBlockedForUnfamiliarSites[] =\n+    \"safebrowsing.javascript_optimizer_blocked_for_unfamiliar_sites\";\n }  // namespace prefs\n \n #endif  // COMPONENTS_CONTENT_SETTINGS_CORE_COMMON_PREF_NAMES_H_\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/remove-f1-shortcut.patch",
    "content": "--- a/chrome/browser/ui/accelerator_table.cc\n+++ b/chrome/browser/ui/accelerator_table.cc\n@@ -133,7 +133,6 @@ const AcceleratorMapping kAcceleratorMap\n     {ui::VKEY_OEM_PLUS, ui::EF_PLATFORM_ACCELERATOR, IDC_ZOOM_PLUS},\n     {ui::VKEY_ADD, ui::EF_PLATFORM_ACCELERATOR, IDC_ZOOM_PLUS},\n \n-    {ui::VKEY_F1, ui::EF_NONE, IDC_HELP_PAGE_VIA_KEYBOARD},\n     {ui::VKEY_F3, ui::EF_NONE, IDC_FIND_NEXT},\n     {ui::VKEY_F3, ui::EF_SHIFT_DOWN, IDC_FIND_PREVIOUS},\n     {ui::VKEY_F4, ui::EF_CONTROL_DOWN, IDC_CLOSE_TAB},\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch",
    "content": "# Remove unused Safe Browsing and Sign-in fields from Preferences file\n# TODO: This patch should probably be split up and merged into\n# disable-signin.patch and fix-building-without-safebrowsing.patch\n\n--- a/chrome/browser/ash/login/signin/device_id_browsertest.cc\n+++ b/chrome/browser/ash/login/signin/device_id_browsertest.cc\n@@ -32,7 +32,6 @@\n #include \"chrome/test/base/in_process_browser_test.h\"\n #include \"chromeos/dbus/constants/dbus_paths.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/user_manager/known_user.h\"\n #include \"components/user_manager/user_manager.h\"\n #include \"content/public/test/browser_test.h\"\n@@ -302,15 +301,6 @@ IN_PROC_BROWSER_TEST_F(DeviceIDTest, PRE\n   SignInOnline(FakeGaiaMixin::kFakeUserEmail, FakeGaiaMixin::kFakeUserPassword,\n                kRefreshToken1, FakeGaiaMixin::kFakeUserGaiaId);\n \n-  // Simulate user that has device ID saved only in preferences (pre-M44).\n-  PrefService* prefs =\n-      ProfileHelper::Get()\n-          ->GetProfileByUser(user_manager::UserManager::Get()->GetActiveUser())\n-          ->GetPrefs();\n-  prefs->SetString(\n-      prefs::kGoogleServicesSigninScopedDeviceId,\n-      GetDeviceId(AccountId::FromUserEmail(FakeGaiaMixin::kFakeUserEmail)));\n-\n   // Can't use SetKnownUserDeviceId here, because it forbids changing a device\n   // ID.\n   user_manager::KnownUser known_user(g_browser_process->local_state());\n@@ -339,13 +329,6 @@ IN_PROC_BROWSER_TEST_F(DeviceIDTest, PRE\n   SignInOnline(FakeGaiaMixin::kFakeUserEmail, FakeGaiaMixin::kFakeUserPassword,\n                kRefreshToken1, FakeGaiaMixin::kFakeUserGaiaId);\n \n-  PrefService* prefs =\n-      ProfileHelper::Get()\n-          ->GetProfileByUser(user_manager::UserManager::Get()->GetActiveUser())\n-          ->GetPrefs();\n-  EXPECT_TRUE(\n-      prefs->GetString(prefs::kGoogleServicesSigninScopedDeviceId).empty());\n-\n   // Can't use SetKnownUserDeviceId here, because it forbids changing a device\n   // ID.\n   user_manager::KnownUser known_user(g_browser_process->local_state());\n--- a/chrome/browser/browsing_data/chrome_browsing_data_lifetime_manager.cc\n+++ b/chrome/browser/browsing_data/chrome_browsing_data_lifetime_manager.cc\n@@ -33,7 +33,6 @@\n #include \"components/keep_alive_registry/keep_alive_types.h\"\n #include \"components/keep_alive_registry/scoped_keep_alive.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/sync/service/sync_service.h\"\n #include \"components/sync/service/sync_user_settings.h\"\n #include \"content/public/browser/browser_context.h\"\n@@ -443,40 +442,5 @@ bool ChromeBrowsingDataLifetimeManager::\n     return sync_disabled;\n   }\n \n-#if !BUILDFLAG(IS_CHROMEOS)\n-  // Allow clearing data if browser signin is disabled.\n-  if (!profile_->GetPrefs()->GetBoolean(prefs::kSigninAllowed)) {\n-    return true;\n-  }\n-  // If signin will be disabled on next startup, delay the browsing data\n-  // clearing until then.\n-  if (!profile_->GetPrefs()->GetBoolean(prefs::kSigninAllowedOnNextStartup)) {\n-    profile_->GetPrefs()->SetBoolean(\n-        browsing_data::prefs::kClearBrowsingDataOnExitDeletionPending, true);\n-    return false;\n-  }\n-#endif\n-\n-  // Check that sync types have been disabled if neither sync nor browser sign\n-  // in is disabled.\n-  syncer::SyncService* sync_service =\n-      SyncServiceFactory::GetForProfile(profile_);\n-\n-  // If the sync service is not available, data can be safely cleared as it is\n-  // not synced.\n-  if (!sync_service) {\n-    return true;\n-  }\n-\n-  for (syncer::UserSelectableType type : sync_types) {\n-    if (!sync_service->GetUserSettings()->IsTypeManagedByPolicy(type)) {\n-      return false;\n-    } else if (sync_service->GetActiveDataTypes().HasAny(\n-                   syncer::UserSelectableTypeToAllDataTypes(type))) {\n-      // If the sync type is disabled by policy, but the sync service has not\n-      // deactivated the type yet, then data can not be safely cleared yet.\n-      return false;\n-    }\n-  }\n   return true;\n }\n--- a/chrome/browser/chrome_content_browser_client.cc\n+++ b/chrome/browser/chrome_content_browser_client.cc\n@@ -296,7 +296,6 @@\n #include \"components/safe_browsing/core/browser/url_checker_delegate.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/hashprefix_realtime/hash_realtime_utils.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/search_engines/template_url_service.h\"\n #include \"components/security_state/core/security_state.h\"\n #include \"components/site_isolation/features.h\"\n--- a/chrome/browser/content_settings/generated_javascript_optimizer_pref.cc\n+++ b/chrome/browser/content_settings/generated_javascript_optimizer_pref.cc\n@@ -13,7 +13,6 @@\n #include \"components/content_settings/browser/ui/javascript_optimizer_setting.h\"\n #include \"components/content_settings/core/common/features.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n using extensions::api::settings_private::Enforcement;\n using extensions::api::settings_private::PrefObject;\n--- a/chrome/browser/download/download_browsertest.cc\n+++ b/chrome/browser/download/download_browsertest.cc\n@@ -105,7 +105,6 @@\n #include \"components/safe_browsing/content/common/file_type_policies_test_util.h\"\n #include \"components/safe_browsing/content/common/proto/download_file_types.pb.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_state/core/security_state.h\"\n #include \"components/services/quarantine/test_support.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n--- a/chrome/browser/download/download_ui_model.cc\n+++ b/chrome/browser/download/download_ui_model.cc\n@@ -33,7 +33,6 @@\n #include \"components/enterprise/common/proto/connectors.pb.h\"\n #include \"components/google/core/common/google_util.h\"\n #include \"components/safe_browsing/buildflags.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_referral_methods.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/vector_icons/vector_icons.h\"\n--- a/chrome/browser/download/download_ui_safe_browsing_util.cc\n+++ b/chrome/browser/download/download_ui_safe_browsing_util.cc\n@@ -11,7 +11,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/buildflags.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n #if BUILDFLAG(SAFE_BROWSING_DOWNLOAD_PROTECTION)\n #include \"chrome/browser/browser_process.h\"\n--- a/chrome/browser/enterprise/connectors/analysis/content_analysis_delegate.cc\n+++ b/chrome/browser/enterprise/connectors/analysis/content_analysis_delegate.cc\n@@ -56,7 +56,6 @@\n #include \"components/safe_browsing/content/browser/web_ui/safe_browsing_ui.h\"\n #include \"components/safe_browsing/core/browser/realtime/url_lookup_service_base.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sessions/content/session_tab_helper.h\"\n #include \"components/url_matcher/url_matcher.h\"\n #include \"content/public/browser/web_contents.h\"\n--- a/chrome/browser/enterprise/connectors/connectors_service.cc\n+++ b/chrome/browser/enterprise/connectors/connectors_service.cc\n@@ -194,8 +194,7 @@ std::string ConnectorsService::GetManage\n \n   std::optional<policy::PolicyScope> scope = std::nullopt;\n   for (const char* scope_pref :\n-       {enterprise_connectors::kEnterpriseRealTimeUrlCheckScope,\n-        AnalysisConnectorScopePref(AnalysisConnector::FILE_ATTACHED),\n+       {AnalysisConnectorScopePref(AnalysisConnector::FILE_ATTACHED),\n         AnalysisConnectorScopePref(AnalysisConnector::FILE_DOWNLOADED),\n         AnalysisConnectorScopePref(AnalysisConnector::BULK_DATA_ENTRY),\n         AnalysisConnectorScopePref(AnalysisConnector::PRINT),\n--- a/chrome/browser/enterprise/profile_management/profile_management_navigation_throttle.cc\n+++ b/chrome/browser/enterprise/profile_management/profile_management_navigation_throttle.cc\n@@ -25,7 +25,6 @@\n #include \"chrome/common/chrome_switches.h\"\n #include \"components/account_id/account_id.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"content/public/browser/navigation_handle.h\"\n #include \"content/public/browser/navigation_throttle.h\"\n@@ -317,12 +316,6 @@ void ProfileManagementNavigationThrottle\n   std::optional<std::string> management_domain =\n       GetDomainFromAttributeValue(domain);\n   if (management_domain) {\n-    auto* prefs =\n-        Profile::FromBrowserContext(\n-            navigation_handle()->GetWebContents()->GetBrowserContext())\n-            ->GetPrefs();\n-    prefs->SetString(prefs::kSigninInterceptionIDPCookiesUrl,\n-                     navigation_handle()->GetURL().spec());\n     PostNavigateTo(GURL(base::StringPrintf(kGoogleServiceLoginUrl,\n                                            management_domain.value().c_str())));\n     return;\n@@ -344,11 +337,6 @@ void ProfileManagementNavigationThrottle\n     PostNavigateTo(GURL(token_url_for_testing_));\n     return;\n   }\n-  auto* prefs = Profile::FromBrowserContext(\n-                    navigation_handle()->GetWebContents()->GetBrowserContext())\n-                    ->GetPrefs();\n-  prefs->SetString(prefs::kSigninInterceptionIDPCookiesUrl,\n-                   navigation_handle()->GetURL().spec());\n \n   auto* interceptor = ProfileTokenWebSigninInterceptorFactory::GetForProfile(\n       Profile::FromBrowserContext(\n--- a/chrome/browser/enterprise/signals/context_info_fetcher.cc\n+++ b/chrome/browser/enterprise/signals/context_info_fetcher.cc\n@@ -126,12 +126,6 @@ void ContextInfoFetcher::Fetch(ContextIn\n           ChromePolicyBlocklistServiceFactory::GetForProfile(\n               Profile::FromBrowserContext(browser_context_)));\n \n-  Profile* profile = Profile::FromBrowserContext(browser_context_);\n-  info.safe_browsing_protection_level =\n-      device_signals::GetSafeBrowsingProtectionLevel(profile->GetPrefs());\n-  info.password_protection_warning_trigger =\n-      device_signals::GetPasswordProtectionWarningTrigger(profile->GetPrefs());\n-  info.enterprise_profile_id = GetEnterpriseProfileId(profile);\n \n #if BUILDFLAG(IS_WIN)\n   base::ThreadPool::CreateCOMSTATaskRunner({base::MayBlock()})\n--- a/chrome/browser/enterprise/signals/context_info_fetcher.h\n+++ b/chrome/browser/enterprise/signals/context_info_fetcher.h\n@@ -15,7 +15,6 @@\n #include \"components/device_signals/core/common/common_types.h\"\n #include \"components/enterprise/buildflags/buildflags.h\"\n #include \"components/enterprise/connectors/core/common.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace content {\n class BrowserContext;\n@@ -43,11 +42,8 @@ struct ContextInfo {\n   std::vector<std::string> on_print_providers;\n   std::vector<std::string> on_security_event_providers;\n   std::string browser_version;\n-  safe_browsing::SafeBrowsingState safe_browsing_protection_level;\n   bool site_isolation_enabled;\n   bool built_in_dns_client_enabled;\n-  std::optional<safe_browsing::PasswordProtectionTrigger>\n-      password_protection_warning_trigger;\n   bool chrome_remote_desktop_app_blocked;\n   device_signals::SettingValue os_firewall;\n   std::vector<std::string> system_dns_servers;\n--- a/chrome/browser/enterprise/signin/managed_profile_creation_controller.cc\n+++ b/chrome/browser/enterprise/signin/managed_profile_creation_controller.cc\n@@ -32,7 +32,6 @@\n #include \"components/policy/core/browser/signin/user_cloud_signin_restriction_policy_fetcher.h\"\n #include \"components/policy/core/common/policy_utils.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n \n@@ -139,55 +138,6 @@ void ManagedProfileCreationController::O\n }\n \n void ManagedProfileCreationController::FetchProfileSeparationPolicies() {\n-  // We should not fetch the policies twice.\n-  CHECK(!policies_received_);\n-  CHECK(!account_level_signin_restriction_policy_fetcher_);\n-\n-  auto policy_fetch_callback = base::BindOnce(\n-      &ManagedProfileCreationController::OnProfileSeparationPoliciesReceived,\n-      weak_ptr_factory_.GetWeakPtr());\n-\n-  if (profile_separation_policies_for_testing_.has_value()) {\n-    CHECK_IS_TEST();\n-    policy::ProfileSeparationPolicies profile_separation_policies =\n-        std::exchange(profile_separation_policies_for_testing_, std::nullopt)\n-            .value();\n-    std::move(policy_fetch_callback)\n-        .Run(std::move(profile_separation_policies));\n-    return;\n-  }\n-\n-  // If we cannot make network calls, we will not be able to fetch the\n-  // account level policies.\n-  if (!g_browser_process->system_network_context_manager()) {\n-    std::move(policy_fetch_callback).Run(policy::ProfileSeparationPolicies());\n-    return;\n-  }\n-\n-  CHECK(source_profile_);\n-  account_level_signin_restriction_policy_fetcher_ =\n-      std::make_unique<policy::UserCloudSigninRestrictionPolicyFetcher>(\n-          g_browser_process->browser_policy_connector(),\n-          g_browser_process->system_network_context_manager()\n-              ->GetSharedURLLoaderFactory());\n-  account_level_signin_restriction_policy_fetcher_\n-      ->GetManagedAccountsSigninRestriction(\n-          GetIdentityManager(), account_info_.account_id,\n-          std::move(policy_fetch_callback),\n-          policy::utils::IsPolicyTestingEnabled(source_profile_->GetPrefs(),\n-                                                chrome::GetChannel())\n-              ? source_profile_->GetPrefs()\n-                    ->GetDefaultPrefValue(\n-                        prefs::kUserCloudSigninPolicyResponseFromPolicyTestPage)\n-                    ->GetString()\n-              : std::string());\n-\n-  policy_fetch_timeout_.Start(\n-      FROM_HERE, base::Seconds(5),\n-      base::BindOnce(&ManagedProfileCreationController::\n-                         OnProfileSeparationPoliciesReceived,\n-                     weak_ptr_factory_.GetWeakPtr(),\n-                     policy::ProfileSeparationPolicies()));\n }\n \n void ManagedProfileCreationController::OnProfileSeparationPoliciesReceived(\n@@ -211,7 +161,6 @@ void ManagedProfileCreationController::O\n   account_level_signin_restriction_policy_fetcher_.reset();\n \n   // If the user is not allowed to sign in, we should not show the disclaimer.\n-  if (!source_profile_->GetPrefs()->GetBoolean(prefs::kSigninAllowed)) {\n     // If the profile creation is required by policy, we should sign the user\n     // out since they cannot sign in to Chrome.\n     if (profile_creation_required_by_policy_) {\n@@ -220,9 +169,6 @@ void ManagedProfileCreationController::O\n       std::move(callback_).Run(base::ok(nullptr),\n                                profile_creation_required_by_policy_);\n     }\n-    return;\n-  }\n-  ShowManagementDisclaimer();\n }\n \n void ManagedProfileCreationController::ShowManagementDisclaimer() {\n--- a/chrome/browser/enterprise/signin/oidc_authentication_signin_interceptor.cc\n+++ b/chrome/browser/enterprise/signin/oidc_authentication_signin_interceptor.cc\n@@ -50,7 +50,6 @@\n #include \"components/policy/core/common/cloud/user_cloud_policy_manager.h\"\n #include \"components/policy/core/common/policy_logger.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/primary_account_mutator.h\"\n #include \"content/public/browser/storage_partition.h\"\n #include \"content/public/browser/web_contents.h\"\n@@ -439,8 +438,7 @@ void OidcAuthenticationSigninInterceptor\n \n   // TODO(b/355270189): The interaction between OIDC profiles and BrowserSignin\n   // policy should be finalized, this check only prevents Chrome from crashing.\n-  if (dasher_based_ &&\n-      !profile_->GetPrefs()->GetBoolean(prefs::kSigninAllowedOnNextStartup)) {\n+  if (dasher_based_) {\n     LOG_POLICY(ERROR, OIDC_ENROLLMENT)\n         << \"Google-synced OIDC profile can't be created because browser sign\"\n            \"in is disabled.\";\n--- a/chrome/browser/enterprise/signin/oidc_managed_profile_creation_delegate.cc\n+++ b/chrome/browser/enterprise/signin/oidc_managed_profile_creation_delegate.cc\n@@ -9,7 +9,6 @@\n #include \"chrome/browser/enterprise/signin/enterprise_signin_prefs.h\"\n #include \"chrome/browser/profiles/profile_attributes_storage.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n \n OidcManagedProfileCreationDelegate::OidcManagedProfileCreationDelegate() =\n     default;\n@@ -55,8 +54,6 @@ void OidcManagedProfileCreationDelegate:\n \n void OidcManagedProfileCreationDelegate::CheckManagedProfileStatus(\n     Profile* new_profile) {\n-  CHECK_EQ(new_profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed),\n-           dasher_based_);\n }\n \n void OidcManagedProfileCreationDelegate::OnManagedProfileInitialized(\n--- a/chrome/browser/enterprise/signin/profile_management_disclaimer_service.cc\n+++ b/chrome/browser/enterprise/signin/profile_management_disclaimer_service.cc\n@@ -40,7 +40,6 @@\n #include \"components/policy/core/browser/signin/user_cloud_signin_restriction_policy_fetcher.h\"\n #include \"components/policy/core/common/policy_utils.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n--- a/chrome/browser/enterprise/signin/token_managed_profile_creation_delegate.cc\n+++ b/chrome/browser/enterprise/signin/token_managed_profile_creation_delegate.cc\n@@ -7,7 +7,6 @@\n #include \"chrome/browser/profiles/profile_attributes_storage.h\"\n #include \"chrome/browser/signin/signin_util.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n \n TokenManagedProfileCreationDelegate::TokenManagedProfileCreationDelegate() =\n     default;\n@@ -29,7 +28,6 @@ void TokenManagedProfileCreationDelegate\n \n void TokenManagedProfileCreationDelegate::CheckManagedProfileStatus(\n     Profile* new_profile) {\n-  DCHECK(!new_profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed));\n }\n \n void TokenManagedProfileCreationDelegate::OnManagedProfileInitialized(\n--- a/chrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_api.cc\n+++ b/chrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_api.cc\n@@ -105,44 +105,10 @@ api::enterprise_reporting_private::Conte\n   info.built_in_dns_client_enabled = signals.built_in_dns_client_enabled;\n   info.enterprise_profile_id = signals.enterprise_profile_id;\n \n-  switch (signals.safe_browsing_protection_level) {\n-    case safe_browsing::SafeBrowsingState::NO_SAFE_BROWSING:\n       info.safe_browsing_protection_level = extensions::api::\n           enterprise_reporting_private::SafeBrowsingLevel::kDisabled;\n-      break;\n-    case safe_browsing::SafeBrowsingState::STANDARD_PROTECTION:\n-      info.safe_browsing_protection_level = extensions::api::\n-          enterprise_reporting_private::SafeBrowsingLevel::kStandard;\n-      break;\n-    case safe_browsing::SafeBrowsingState::ENHANCED_PROTECTION:\n-      info.safe_browsing_protection_level = extensions::api::\n-          enterprise_reporting_private::SafeBrowsingLevel::kEnhanced;\n-      break;\n-  }\n-  if (!signals.password_protection_warning_trigger.has_value()) {\n     info.password_protection_warning_trigger = extensions::api::\n         enterprise_reporting_private::PasswordProtectionTrigger::kPolicyUnset;\n-  } else {\n-    switch (signals.password_protection_warning_trigger.value()) {\n-      case safe_browsing::PASSWORD_PROTECTION_OFF:\n-        info.password_protection_warning_trigger =\n-            extensions::api::enterprise_reporting_private::\n-                PasswordProtectionTrigger::kPasswordProtectionOff;\n-        break;\n-      case safe_browsing::PASSWORD_REUSE:\n-        info.password_protection_warning_trigger =\n-            extensions::api::enterprise_reporting_private::\n-                PasswordProtectionTrigger::kPasswordReuse;\n-        break;\n-      case safe_browsing::PHISHING_REUSE:\n-        info.password_protection_warning_trigger =\n-            extensions::api::enterprise_reporting_private::\n-                PasswordProtectionTrigger::kPhishingReuse;\n-        break;\n-      case safe_browsing::PASSWORD_PROTECTION_TRIGGER_MAX:\n-        NOTREACHED();\n-    }\n-  }\n \n   return info;\n }\n--- a/chrome/browser/extensions/api/identity/identity_apitest.cc\n+++ b/chrome/browser/extensions/api/identity/identity_apitest.cc\n@@ -66,7 +66,6 @@\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/list_accounts_test_utils.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n--- a/chrome/browser/extensions/api/identity/identity_get_auth_token_function.cc\n+++ b/chrome/browser/extensions/api/identity/identity_get_auth_token_function.cc\n@@ -31,7 +31,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/oauth_consumer_id.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/access_token_info.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n@@ -70,7 +69,7 @@ namespace extensions {\n namespace {\n \n bool IsBrowserSigninAllowed(Profile* profile) {\n-  return profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed);\n+  return false;\n }\n \n std::string_view GetOAuth2MintTokenFlowVersion() {\n--- a/chrome/browser/extensions/api/preference/preference_api.cc\n+++ b/chrome/browser/extensions/api/preference/preference_api.cc\n@@ -24,7 +24,6 @@\n #include \"components/content_settings/core/common/pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"extensions/browser/api/content_settings/content_settings_service.h\"\n #include \"extensions/browser/extension_function_registry.h\"\n #include \"extensions/browser/extension_pref_value_map.h\"\n@@ -446,17 +445,6 @@ ExtensionFunction::ResponseAction SetPre\n         base::Value(browser_pref_value->GetBool()));\n   }\n \n-  // Whenever an extension takes control of the |kSafeBrowsingEnabled|\n-  // preference, it must also set |kSafeBrowsingEnhanced| to false.\n-  // See crbug.com/1064722 for more background.\n-  //\n-  // TODO(crbug.com/40681445): Consider extending\n-  // chrome.privacy.services.safeBrowsingEnabled to a three-state enum.\n-  if (prefs::kSafeBrowsingEnabled == browser_pref) {\n-    prefs_helper->SetExtensionControlledPref(extension_id(),\n-                                             prefs::kSafeBrowsingEnhanced,\n-                                             scope, base::Value(false));\n-  }\n \n   prefs_helper->SetExtensionControlledPref(extension_id(), browser_pref, scope,\n                                            browser_pref_value->Clone());\n@@ -506,16 +494,6 @@ ExtensionFunction::ResponseAction ClearP\n   prefs_helper->RemoveExtensionControlledPref(extension_id(), browser_pref,\n                                               scope);\n \n-  // Whenever an extension clears the |kSafeBrowsingEnabled| preference,\n-  // it must also clear |kSafeBrowsingEnhanced|. See crbug.com/1064722 for\n-  // more background.\n-  //\n-  // TODO(crbug.com/40681445): Consider extending\n-  // chrome.privacy.services.safeBrowsingEnabled to a three-state enum.\n-  if (prefs::kSafeBrowsingEnabled == browser_pref) {\n-    prefs_helper->RemoveExtensionControlledPref(\n-        extension_id(), prefs::kSafeBrowsingEnhanced, scope);\n-  }\n   return RespondNow(NoArguments());\n }\n \n--- a/chrome/browser/extensions/api/preference/preference_apitest.cc\n+++ b/chrome/browser/extensions/api/preference/preference_apitest.cc\n@@ -31,7 +31,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_features.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_prefs.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/translate/core/browser/translate_pref_names.h\"\n #include \"content/public/test/browser_test.h\"\n #include \"content/public/test/test_devtools_protocol_client.h\"\n@@ -91,7 +90,6 @@ class ExtensionPreferenceApiTest\n               prefs->GetInteger(prefetch::prefs::kNetworkPredictionOptions));\n     EXPECT_TRUE(\n         prefs->GetBoolean(password_manager::prefs::kCredentialsEnableService));\n-    EXPECT_TRUE(prefs->GetBoolean(prefs::kSafeBrowsingEnabled));\n     EXPECT_TRUE(prefs->GetBoolean(prefs::kSearchSuggestEnabled));\n     VerifyPrefValueAndControlledState(prefs::kPrivacySandboxM1TopicsEnabled,\n                                       base::Value(false),\n@@ -129,7 +127,6 @@ class ExtensionPreferenceApiTest\n               prefs->GetInteger(prefetch::prefs::kNetworkPredictionOptions));\n     EXPECT_FALSE(\n         prefs->GetBoolean(password_manager::prefs::kCredentialsEnableService));\n-    EXPECT_FALSE(prefs->GetBoolean(prefs::kSafeBrowsingEnabled));\n     EXPECT_FALSE(prefs->GetBoolean(prefs::kSearchSuggestEnabled));\n     VerifyPrefValueAndControlledState(prefs::kPrivacySandboxM1TopicsEnabled,\n                                       base::Value(true),\n@@ -225,7 +222,6 @@ IN_PROC_BROWSER_TEST_P(ExtensionPreferen\n       prefetch::prefs::kNetworkPredictionOptions,\n       static_cast<int>(prefetch::NetworkPredictionOptions::kDisabled));\n   prefs->SetBoolean(password_manager::prefs::kCredentialsEnableService, false);\n-  prefs->SetBoolean(prefs::kSafeBrowsingEnabled, false);\n   prefs->SetBoolean(prefs::kSearchSuggestEnabled, false);\n   prefs->SetString(prefs::kWebRTCIPHandlingPolicy,\n                    blink::kWebRTCIPHandlingDefaultPublicInterfaceOnly);\n--- a/chrome/browser/extensions/api/safe_browsing_private/safe_browsing_private_event_router.cc\n+++ b/chrome/browser/extensions/api/safe_browsing_private/safe_browsing_private_event_router.cc\n@@ -18,7 +18,6 @@\n #include \"chrome/common/extensions/api/safe_browsing_private.h\"\n #include \"components/enterprise/connectors/core/common.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/url_matcher/url_matcher.h\"\n #include \"components/url_matcher/url_util.h\"\n #include \"content/public/browser/browser_context.h\"\n--- a/chrome/browser/extensions/api/safe_browsing_private/safe_browsing_private_event_router_unittest.cc\n+++ b/chrome/browser/extensions/api/safe_browsing_private/safe_browsing_private_event_router_unittest.cc\n@@ -23,7 +23,6 @@\n #include \"chrome/test/base/testing_browser_process.h\"\n #include \"chrome/test/base/testing_profile.h\"\n #include \"chrome/test/base/testing_profile_manager.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/identity_manager/identity_test_environment.h\"\n #include \"content/public/test/browser_task_environment.h\"\n #include \"extensions/browser/test_event_router.h\"\n--- a/chrome/browser/extensions/api/settings_private/prefs_util.cc\n+++ b/chrome/browser/extensions/api/settings_private/prefs_util.cc\n@@ -59,10 +59,8 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_prefs.h\"\n #include \"components/proxy_config/proxy_config_pref_names.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/saved_tab_groups/public/pref_names.h\"\n #include \"components/search_engines/default_search_manager.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/spellcheck/browser/pref_names.h\"\n #include \"components/supervised_user/core/common/pref_names.h\"\n #include \"components/themes/pref_names.h\"\n@@ -370,8 +368,6 @@ const PrefsUtil::TypedPrefMap& PrefsUtil\n       settings_api::PrefType::kNumber;\n \n   // Privacy page\n-  (*s_allowlist)[::prefs::kSigninAllowedOnNextStartup] =\n-      settings_api::PrefType::kBoolean;\n   (*s_allowlist)[::prefs::kDnsOverHttpsMode] = settings_api::PrefType::kString;\n   (*s_allowlist)[::prefs::kDnsOverHttpsTemplates] =\n       settings_api::PrefType::kString;\n@@ -396,16 +392,6 @@ const PrefsUtil::TypedPrefMap& PrefsUtil\n       settings_api::PrefType::kBoolean;\n \n   // Security page\n-  (*s_allowlist)[::kGeneratedPasswordLeakDetectionPref] =\n-      settings_api::PrefType::kBoolean;\n-  (*s_allowlist)[::prefs::kSafeBrowsingEnabled] =\n-      settings_api::PrefType::kBoolean;\n-  (*s_allowlist)[::prefs::kSafeBrowsingEnhanced] =\n-      settings_api::PrefType::kBoolean;\n-  (*s_allowlist)[::prefs::kSafeBrowsingScoutReportingEnabled] =\n-      settings_api::PrefType::kBoolean;\n-  (*s_allowlist)[::safe_browsing::kGeneratedSafeBrowsingPref] =\n-      settings_api::PrefType::kNumber;\n   (*s_allowlist)[::prefs::kHttpsOnlyModeEnabled] =\n       settings_api::PrefType::kBoolean;\n   (*s_allowlist)[::kGeneratedHttpsFirstModePref] =\n--- a/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc\n+++ b/chrome/browser/extensions/api/webstore_private/webstore_private_apitest.cc\n@@ -781,9 +781,6 @@ IN_PROC_BROWSER_TEST_F(ExtensionWebstore\n IN_PROC_BROWSER_TEST_F(ExtensionWebstorePrivateGetReferrerChainApiTest,\n                        GetReferrerChainForNonSafeBrowsingUser) {\n   PrefService* pref_service = profile()->GetPrefs();\n-  EXPECT_TRUE(pref_service->GetBoolean(prefs::kSafeBrowsingEnabled));\n-  // Disable SafeBrowsing.\n-  pref_service->SetBoolean(prefs::kSafeBrowsingEnabled, false);\n \n   GURL page_url = GetTestServerURLWithReferrers(\"empty_referrer_chain.html\");\n   ASSERT_TRUE(OpenTestURL(page_url));\n--- a/chrome/browser/extensions/extension_allowlist.cc\n+++ b/chrome/browser/extensions/extension_allowlist.cc\n@@ -11,7 +11,6 @@\n #include \"chrome/browser/profiles/profile.h\"\n #include \"chrome/browser/safe_browsing/safe_browsing_metrics_collector_factory.h\"\n #include \"components/safe_browsing/core/browser/safe_browsing_metrics_collector.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"extensions/browser/allowlist_state.h\"\n #include \"extensions/browser/extension_registrar.h\"\n #include \"extensions/browser/extension_registry.h\"\n@@ -77,10 +76,6 @@ ExtensionAllowlist::ExtensionAllowlist(P\n   // Register to Enhanced Safe Browsing setting changes for allowlist\n   // enforcements.\n   pref_change_registrar_.Init(profile_->GetPrefs());\n-  pref_change_registrar_.Add(\n-      prefs::kSafeBrowsingEnhanced,\n-      base::BindRepeating(&ExtensionAllowlist::OnSafeBrowsingEnhancedChanged,\n-                          base::Unretained(this)));\n }\n \n ExtensionAllowlist::~ExtensionAllowlist() = default;\n@@ -250,14 +245,8 @@ void ExtensionAllowlist::OnExtensionInst\n }\n \n void ExtensionAllowlist::SetAllowlistEnforcementFields() {\n-  if (safe_browsing::IsEnhancedProtectionEnabled(*profile_->GetPrefs())) {\n-    warnings_enabled_ = true;\n-    should_auto_disable_extensions_ = base::FeatureList::IsEnabled(\n-        extensions_features::kSafeBrowsingCrxAllowlistAutoDisable);\n-  } else {\n     warnings_enabled_ = false;\n     should_auto_disable_extensions_ = false;\n-  }\n }\n \n // `ApplyEnforcement` can be called when an extension becomes not allowlisted or\n@@ -408,15 +397,6 @@ void ExtensionAllowlist::NotifyExtension\n }\n \n void ExtensionAllowlist::ReportExtensionReEnabledEvent() {\n-  auto* metrics_collector =\n-      safe_browsing::SafeBrowsingMetricsCollectorFactory::GetForProfile(\n-          profile_);\n-  DCHECK(metrics_collector);\n-  if (metrics_collector) {\n-    metrics_collector->AddSafeBrowsingEventToPref(\n-        safe_browsing::SafeBrowsingMetricsCollector::EventType::\n-            NON_ALLOWLISTED_EXTENSION_RE_ENABLED);\n-  }\n }\n \n }  // namespace extensions\n--- a/chrome/browser/extensions/extension_service.cc\n+++ b/chrome/browser/extensions/extension_service.cc\n@@ -70,7 +70,6 @@\n #include \"chrome/common/url_constants.h\"\n #include \"components/crx_file/id_util.h\"\n #include \"components/policy/core/common/policy_pref_names.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/supervised_user/core/browser/supervised_user_preferences.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/render_process_host.h\"\n--- a/chrome/browser/extensions/installed_loader.cc\n+++ b/chrome/browser/extensions/installed_loader.cc\n@@ -33,7 +33,6 @@\n #include \"chrome/common/extensions/manifest_handlers/settings_overrides_handler.h\"\n #include \"chrome/common/pref_names.h\"\n #include \"chrome/common/webui_url_constants.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/common/url_constants.h\"\n #include \"extensions/browser/allowlist_state.h\"\n@@ -999,12 +998,6 @@ void InstalledLoader::RecordExtensionsMe\n                               enabled_not_allowlisted_count);\n   base::UmaHistogramCounts100(\"Extensions.NotAllowlistedDisabled2\",\n                               disabled_not_allowlisted_count);\n-  if (safe_browsing::IsEnhancedProtectionEnabled(*profile->GetPrefs())) {\n-    base::UmaHistogramCounts100(\"Extensions.NotAllowlistedEnabledAndEsbUser2\",\n-                                enabled_not_allowlisted_count);\n-    base::UmaHistogramCounts100(\"Extensions.NotAllowlistedDisabledAndEsbUser2\",\n-                                disabled_not_allowlisted_count);\n-  }\n }\n \n int InstalledLoader::GetCreationFlags(const ExtensionInfo* info) {\n--- a/chrome/browser/extensions/pref_mapping.cc\n+++ b/chrome/browser/extensions/pref_mapping.cc\n@@ -19,7 +19,6 @@\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_prefs.h\"\n #include \"components/proxy_config/proxy_config_pref_names.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/spellcheck/browser/pref_names.h\"\n #include \"components/translate/core/browser/translate_pref_names.h\"\n #include \"extensions/buildflags/buildflags.h\"\n@@ -65,11 +64,6 @@ const PrefMappingEntry kMappings[] = {\n      APIPermissionID::kPrivacy},\n     {\"doNotTrackEnabled\", prefs::kEnableDoNotTrack, APIPermissionID::kPrivacy,\n      APIPermissionID::kPrivacy},\n-    {\"safeBrowsingEnabled\", prefs::kSafeBrowsingEnabled,\n-     APIPermissionID::kPrivacy, APIPermissionID::kPrivacy},\n-    {\"safeBrowsingExtendedReportingEnabled\",\n-     prefs::kSafeBrowsingScoutReportingEnabled, APIPermissionID::kPrivacy,\n-     APIPermissionID::kPrivacy},\n     {\"searchSuggestEnabled\", prefs::kSearchSuggestEnabled,\n      APIPermissionID::kPrivacy, APIPermissionID::kPrivacy},\n     {\"spellingServiceEnabled\", spellcheck::prefs::kSpellCheckUseSpellingService,\n--- a/chrome/browser/net/profile_network_context_service.cc\n+++ b/chrome/browser/net/profile_network_context_service.cc\n@@ -73,7 +73,6 @@\n #include \"components/prefs/pref_registry_simple.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_prefs.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/first_party_sets_handler.h\"\n@@ -1434,15 +1433,8 @@ void ProfileNetworkContextService::Confi\n \n   network_context_params->enable_certificate_reporting = true;\n \n-  SCTReportingService* sct_reporting_service =\n-      SCTReportingServiceFactory::GetForBrowserContext(profile_);\n-  if (sct_reporting_service) {\n-    network_context_params->sct_auditing_mode =\n-        sct_reporting_service->GetReportingMode();\n-  } else {\n     network_context_params->sct_auditing_mode =\n         network::mojom::SCTAuditingMode::kDisabled;\n-  }\n \n   network_context_params->ct_policy = GetCTPolicy();\n   cert_verifier_creation_params->ct_policy = GetCTPolicy();\n--- a/chrome/browser/notifications/platform_notification_service_impl.cc\n+++ b/chrome/browser/notifications/platform_notification_service_impl.cc\n@@ -46,7 +46,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/buildflags.h\"\n #include \"components/safe_browsing/content/browser/notification_content_detection/notification_content_detection_constants.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/platform_notification_context.h\"\n #include \"content/public/browser/storage_partition.h\"\n@@ -818,25 +817,7 @@ void PlatformNotificationServiceImpl::Lo\n \n bool PlatformNotificationServiceImpl::\n     AreSuspiciousNotificationsAllowlistedByUser(const GURL& origin) {\n-  auto* hcsm = HostContentSettingsMapFactory::GetForProfile(profile_);\n-  if (!hcsm || !origin.is_valid()) {\n     return false;\n-  }\n-  content_settings::SettingInfo info;\n-  base::Value stored_value(hcsm->GetWebsiteSetting(\n-      origin, origin,\n-      ContentSettingsType::ARE_SUSPICIOUS_NOTIFICATIONS_ALLOWLISTED_BY_USER,\n-      &info));\n-  if (stored_value.is_none()) {\n-    return false;\n-  }\n-  if (!stored_value.is_dict() || !stored_value.GetDict().contains(\n-                                     safe_browsing::kIsAllowlistedByUserKey)) {\n-    return false;\n-  }\n-  return stored_value.GetDict()\n-      .FindBool(safe_browsing::kIsAllowlistedByUserKey)\n-      .value_or(false);\n }\n \n void PlatformNotificationServiceImpl::DidUpdatePersistentMetadata(\n--- a/chrome/browser/password_manager/generated_password_leak_detection_pref.cc\n+++ b/chrome/browser/password_manager/generated_password_leak_detection_pref.cc\n@@ -15,7 +15,6 @@\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n \n namespace {\n@@ -42,16 +41,6 @@ GeneratedPasswordLeakDetectionPref::Gene\n       base::BindRepeating(\n           &GeneratedPasswordLeakDetectionPref::OnSourcePreferencesChanged,\n           base::Unretained(this)));\n-  user_prefs_registrar_.Add(\n-      prefs::kSafeBrowsingEnabled,\n-      base::BindRepeating(\n-          &GeneratedPasswordLeakDetectionPref::OnSourcePreferencesChanged,\n-          base::Unretained(this)));\n-  user_prefs_registrar_.Add(\n-      prefs::kSafeBrowsingEnhanced,\n-      base::BindRepeating(\n-          &GeneratedPasswordLeakDetectionPref::OnSourcePreferencesChanged,\n-          base::Unretained(this)));\n \n   if (auto* identity_manager = IdentityManagerFactory::GetForProfile(profile)) {\n     identity_manager_observer_.Observe(identity_manager);\n--- a/chrome/browser/policy/browser_signin_policy_handler.cc\n+++ b/chrome/browser/policy/browser_signin_policy_handler.cc\n@@ -15,7 +15,6 @@\n #include \"components/policy/core/common/policy_map.h\"\n #include \"components/policy/policy_constants.h\"\n #include \"components/prefs/pref_value_map.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n \n namespace policy {\n \n@@ -30,50 +29,6 @@ BrowserSigninPolicyHandler::~BrowserSign\n \n void BrowserSigninPolicyHandler::ApplyPolicySettings(const PolicyMap& policies,\n                                                      PrefValueMap* prefs) {\n-#if BUILDFLAG(IS_WIN)\n-  // Browser sign in policies shouldn't be enforced on gcpw signin\n-  // mode as gcpw is invoked in windows login UI screen.\n-  // Also note that GCPW launches chrome in incognito mode using a\n-  // special user's logon_token. So the end user won't have access\n-  // to this session after user logs in via GCPW.\n-  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n-          ::credential_provider::kGcpwSigninSwitch))\n-    return;\n-#endif\n-\n-  const base::Value* value =\n-      policies.GetValue(policy_name(), base::Value::Type::INTEGER);\n-  switch (static_cast<BrowserSigninMode>(value->GetInt())) {\n-    case BrowserSigninMode::kForced:\n-#if !BUILDFLAG(IS_CHROMEOS)\n-      prefs->SetValue(prefs::kForceBrowserSignin, base::Value(true));\n-#endif\n-      [[fallthrough]];\n-    case BrowserSigninMode::kEnabled:\n-      prefs->SetValue(\n-#if BUILDFLAG(IS_ANDROID)\n-          // The new kSigninAllowedOnNextStartup pref is only used on Desktop.\n-          // Keep the old kSigninAllowed pref for Android until the policy is\n-          // fully deprecated in M71 and can be removed.\n-          prefs::kSigninAllowed,\n-#else\n-          prefs::kSigninAllowedOnNextStartup,\n-#endif\n-          base::Value(true));\n-      break;\n-    case BrowserSigninMode::kDisabled:\n-      prefs->SetValue(\n-#if BUILDFLAG(IS_ANDROID)\n-          // The new kSigninAllowedOnNextStartup pref is only used on Desktop.\n-          // Keep the old kSigninAllowed pref for Android until the policy is\n-          // fully deprecated in M71 and can be removed.\n-          prefs::kSigninAllowed,\n-#else\n-          prefs::kSigninAllowedOnNextStartup,\n-#endif\n-          base::Value(false));\n-      break;\n-  }\n }\n \n }  // namespace policy\n--- a/chrome/browser/policy/configuration_policy_handler_list_factory.cc\n+++ b/chrome/browser/policy/configuration_policy_handler_list_factory.cc\n@@ -117,8 +117,6 @@\n #include \"components/proxy_config/proxy_override_rules_policy_handler.h\"\n #include \"components/proxy_config/proxy_policy_handler.h\"\n #include \"components/safe_browsing/buildflags.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_policy_handler.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/search_engines/enterprise/default_search_policy_handler.h\"\n #include \"components/search_engines/search_engines_pref_names.h\"\n #include \"components/security_interstitials/core/https_only_mode_policy_handler.h\"\n@@ -126,7 +124,6 @@\n #include \"components/sharing_message/buildflags.h\"\n #include \"components/sharing_message/pref_names.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/spellcheck/spellcheck_buildflags.h\"\n #include \"components/sync/base/pref_names.h\"\n #include \"components/sync/service/sync_policy_handler.h\"\n@@ -316,9 +313,6 @@ const PolicyToPreferenceMapEntry kSimple\n   { key::kForcePermissionPolicyUnloadDefaultEnabled,\n     policy_prefs::kForcePermissionPolicyUnloadDefaultEnabled,\n     base::Value::Type::BOOLEAN},\n-  { key::kDisableSafeBrowsingProceedAnyway,\n-    prefs::kSafeBrowsingProceedAnywayDisabled,\n-    base::Value::Type::BOOLEAN },\n   { key::kDomainReliabilityAllowed,\n     domain_reliability::prefs::kDomainReliabilityAllowedByPolicy,\n     base::Value::Type::BOOLEAN },\n@@ -361,15 +355,6 @@ const PolicyToPreferenceMapEntry kSimple\n     prefs::kOopPrintDriversAllowedByPolicy,\n     base::Value::Type::BOOLEAN },\n #endif\n-  { key::kSafeBrowsingAllowlistDomains,\n-    prefs::kSafeBrowsingAllowlistDomains,\n-    base::Value::Type::LIST },\n-  { key::kSafeBrowsingEnabled,\n-    prefs::kSafeBrowsingEnabled,\n-    base::Value::Type::BOOLEAN },\n-  { key::kSafeBrowsingProxiedRealTimeChecksAllowed,\n-    prefs::kHashPrefixRealTimeChecksAllowedByPolicy,\n-    base::Value::Type::BOOLEAN },\n   { key::kSavingBrowserHistoryDisabled,\n     prefs::kSavingBrowserHistoryDisabled,\n     base::Value::Type::BOOLEAN },\n@@ -520,9 +505,6 @@ const PolicyToPreferenceMapEntry kSimple\n   { key::kAdsSettingForIntrusiveAdsSites,\n     prefs::kManagedDefaultAdsSetting,\n     base::Value::Type::INTEGER },\n-  { key::kAdvancedProtectionAllowed,\n-    prefs::kAdvancedProtectionAllowed,\n-    base::Value::Type::BOOLEAN },\n   { key::kAllowCrossOriginAuthPrompt,\n     prefs::kAllowCrossOriginAuthPrompt,\n     base::Value::Type::BOOLEAN },\n@@ -735,15 +717,6 @@ const PolicyToPreferenceMapEntry kSimple\n   { key::kPasswordDismissCompromisedAlertEnabled,\n     password_manager::prefs::kPasswordDismissCompromisedAlertEnabled,\n     base::Value::Type::BOOLEAN },\n-  { key::kPasswordProtectionChangePasswordURL,\n-    prefs::kPasswordProtectionChangePasswordURL,\n-    base::Value::Type::STRING },\n-  { key::kPasswordProtectionLoginURLs,\n-    prefs::kPasswordProtectionLoginURLs,\n-    base::Value::Type::LIST },\n-  { key::kPasswordProtectionWarningTrigger,\n-    prefs::kPasswordProtectionWarningTrigger,\n-    base::Value::Type::INTEGER },\n #if BUILDFLAG(ENABLE_PDF)\n   { key::kPdfLocalFileAccessAllowedForDomains,\n     prefs::kPdfLocalFileAccessAllowedForDomains,\n@@ -907,9 +880,6 @@ const PolicyToPreferenceMapEntry kSimple\n   { key::kAdditionalDnsQueryTypesEnabled,\n     prefs::kAdditionalDnsQueryTypesEnabled,\n     base::Value::Type::BOOLEAN },\n-  { key::kSafeBrowsingExtendedReportingEnabled,\n-    prefs::kSafeBrowsingScoutReportingEnabled,\n-    base::Value::Type::BOOLEAN },\n   { key::kForceGoogleSafeSearch,\n     policy_prefs::kForceGoogleSafeSearch,\n     base::Value::Type::BOOLEAN },\n@@ -979,9 +949,6 @@ const PolicyToPreferenceMapEntry kSimple\n   { key::kRequireOnlineRevocationChecksForLocalAnchors,\n     prefs::kCertRevocationCheckingRequiredLocalAnchors,\n     base::Value::Type::BOOLEAN },\n-  { key::kSafeBrowsingSurveysEnabled,\n-    prefs::kSafeBrowsingSurveysEnabled,\n-    base::Value::Type::BOOLEAN },\n   { key::kPasswordManagerBlocklist,\n     password_manager::prefs::kPasswordManagerBlocklist,\n     base::Value::Type::LIST },\n@@ -1967,9 +1934,6 @@ const PolicyToPreferenceMapEntry kSimple\n   { key::kUnmanagedDeviceSignalsConsentFlowEnabled,\n     device_signals::prefs::kUnmanagedDeviceSignalsConsentFlowEnabled,\n     base::Value::Type::BOOLEAN },\n-  { key::kProfileSeparationDomainExceptionList,\n-    prefs::kProfileSeparationDomainExceptionList,\n-    base::Value::Type::LIST },\n #endif // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)\n #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)\n   { key::kDefaultBrowserSettingEnabled,\n@@ -2043,9 +2007,6 @@ const PolicyToPreferenceMapEntry kSimple\n     prefs::kImportDialogAutofillFormData,\n     base::Value::Type::BOOLEAN },\n \n-  { key::kRestrictSigninToPattern,\n-    prefs::kGoogleServicesUsernamePattern,\n-    base::Value::Type::STRING },\n   { key::kHardwareAccelerationModeEnabled,\n     prefs::kHardwareAccelerationModeEnabled,\n     base::Value::Type::BOOLEAN },\n@@ -2319,9 +2280,6 @@ const PolicyToPreferenceMapEntry kSimple\n   { key::kGoogleSearchSidePanelEnabled,\n     prefs::kGoogleSearchSidePanelEnabled,\n     base::Value::Type::BOOLEAN },\n-  { key::kSafeBrowsingDeepScanningEnabled,\n-    prefs::kSafeBrowsingDeepScanningEnabled,\n-    base::Value::Type::BOOLEAN },\n #endif  // BUILDFLAG(IS_ANDROID)\n   { key::kAllowBackForwardCacheForCacheControlNoStorePageEnabled,\n     policy_prefs::kAllowBackForwardCacheForCacheControlNoStorePageEnabled,\n@@ -2909,28 +2867,6 @@ std::unique_ptr<ConfigurationPolicyHandl\n           key::kBrowserContextAwareAccessSignalsAllowlist,\n           enterprise_connectors::kBrowserContextAwareAccessSignalsAllowlistPref,\n           chrome_schema));\n-  handlers->AddHandler(\n-      std::make_unique<SingleDeprecatedPolicyToMultipleNewPolicyHandler>(\n-          std::make_unique<ManagedAccountRestrictionsPolicyHandler>(\n-              chrome_schema),\n-          std::vector<std::string>{\n-              key::kProfileSeparationSettings,\n-              key::kProfileSeparationDataMigrationSettings,\n-              key::kProfileSeparationDomainExceptionList}));\n-  handlers->AddHandler(std::make_unique<CloudUserOnlyPolicyChecker>(\n-      std::make_unique<SimplePolicyHandler>(key::kProfileSeparationSettings,\n-                                            prefs::kProfileSeparationSettings,\n-                                            base::Value::Type::INTEGER)));\n-\n-  handlers->AddHandler(std::make_unique<SimpleDeprecatingPolicyHandler>(\n-      std::make_unique<SimplePolicyHandler>(\n-          key::kEnterpriseProfileCreationKeepBrowsingData,\n-          prefs::kEnterpriseProfileCreationKeepBrowsingData,\n-          base::Value::Type::BOOLEAN),\n-      std::make_unique<SimplePolicyHandler>(\n-          key::kProfileSeparationDataMigrationSettings,\n-          prefs::kProfileSeparationDataMigrationSettings,\n-          base::Value::Type::INTEGER)));\n   handlers->AddHandler(std::make_unique<IntRangePolicyHandler>(\n       key::kProfileReauthPrompt, enterprise_signin::prefs::kProfileReauthPrompt,\n       static_cast<int>(enterprise_signin::ProfileReauthPrompt::kDoNotPrompt),\n@@ -3000,11 +2936,6 @@ std::unique_ptr<ConfigurationPolicyHandl\n #else   // BUILDFLAG(IS_CHROMEOS)\n   std::vector<std::unique_ptr<ConfigurationPolicyHandler>>\n       signin_legacy_policies;\n-#if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) || \\\n-    BUILDFLAG(IS_LINUX)\n-  signin_legacy_policies.push_back(std::make_unique<SimplePolicyHandler>(\n-      key::kForceBrowserSignin, prefs::kForceBrowserSignin,\n-      base::Value::Type::BOOLEAN));\n \n   handlers->AddHandler(std::make_unique<CloudUserOnlyPolicyChecker>(\n       std::make_unique<SimplePolicyHandler>(\n@@ -3017,19 +2948,6 @@ std::unique_ptr<ConfigurationPolicyHandl\n           enterprise_reporting::kUserSecurityAuthenticatedReporting,\n           base::Value::Type::BOOLEAN)));\n \n-#endif  // BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN) ||\n-        // BUILDFLAG(IS_LINUX)\n-  signin_legacy_policies.push_back(std::make_unique<SimplePolicyHandler>(\n-      key::kSigninAllowed,\n-#if BUILDFLAG(IS_ANDROID)\n-      // The new kSigninAllowedOnNextStartup pref is only used on Desktop.\n-      // Keep the old kSigninAllowed pref for Android until the policy is\n-      // fully deprecated in M71 and can be removed.\n-      prefs::kSigninAllowed,\n-#else   // BUILDFLAG(IS_ANDROID)\n-      prefs::kSigninAllowedOnNextStartup,\n-#endif  // BUILDFLAG(IS_ANDROID)\n-      base::Value::Type::BOOLEAN));\n   handlers->AddHandler(std::make_unique<LegacyPoliciesDeprecatingPolicyHandler>(\n       std::move(signin_legacy_policies),\n       std::make_unique<BrowserSigninPolicyHandler>(chrome_schema)));\n--- a/chrome/browser/prefs/browser_prefs.cc\n+++ b/chrome/browser/prefs/browser_prefs.cc\n@@ -164,7 +164,6 @@\n #include \"components/proxy_config/pref_proxy_config_tracker_impl.h\"\n #include \"components/regional_capabilities/regional_capabilities_prefs.h\"\n #include \"components/safe_browsing/buildflags.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safety_check/safety_check_prefs.h\"\n #include \"components/saved_tab_groups/public/pref_names.h\"\n #include \"components/search_engines/search_engine_choice/search_engine_choice_service.h\"\n@@ -176,7 +175,6 @@\n #include \"components/sessions/core/session_id_generator.h\"\n #include \"components/sharing_message/sharing_sync_preference.h\"\n #include \"components/signin/core/browser/active_primary_accounts_metrics_recorder.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/site_engagement/content/site_engagement_service.h\"\n@@ -1424,7 +1422,6 @@ void RegisterLocalState(PrefRegistrySimp\n   PushMessagingServiceImpl::RegisterPrefs(registry);\n #endif\n   RegisterScreenshotPrefs(registry);\n-  safe_browsing::RegisterLocalStatePrefs(registry);\n   search_engines::SearchEngineChoiceService::RegisterLocalStatePrefs(registry);\n   secure_origin_allowlist::RegisterPrefs(registry);\n   segmentation_platform::SegmentationPlatformService::RegisterLocalStatePrefs(\n@@ -1780,7 +1777,6 @@ void RegisterProfilePrefs(user_prefs::Pr\n #if BUILDFLAG(SAFE_BROWSING_AVAILABLE)\n   safe_browsing::file_type::RegisterProfilePrefs(registry);\n #endif\n-  safe_browsing::RegisterProfilePrefs(registry);\n   safety_check::prefs::RegisterProfilePrefs(registry);\n   SearchPrefetchService::RegisterProfilePrefs(registry);\n   blocked_content::SafeBrowsingTriggeredPopupBlocker::RegisterProfilePrefs(\n--- a/chrome/browser/prefs/chrome_command_line_pref_store.cc\n+++ b/chrome/browser/prefs/chrome_command_line_pref_store.cc\n@@ -24,7 +24,6 @@\n #include \"components/language/core/browser/pref_names.h\"\n #include \"components/proxy_config/proxy_config_dictionary.h\"\n #include \"components/proxy_config/proxy_config_pref_names.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_switches.h\"\n #include \"components/sync/base/pref_names.h\"\n #include \"content/public/common/content_switches.h\"\n@@ -82,8 +81,6 @@ const CommandLinePrefStore::BooleanSwitc\n         {switches::kAllowCrossOriginAuthPrompt,\n          prefs::kAllowCrossOriginAuthPrompt, true},\n         {switches::kDisablePrintPreview, prefs::kPrintPreviewDisabled, true},\n-        {safe_browsing::switches::kSbEnableEnhancedProtection,\n-         prefs::kSafeBrowsingEnhanced, true},\n #if BUILDFLAG(IS_CHROMEOS)\n         {ash::switches::kEnableTouchpadThreeFingerClick,\n          ash::prefs::kEnableTouchpadThreeFingerClick, true},\n--- a/chrome/browser/prefs/chrome_pref_service_factory.cc\n+++ b/chrome/browser/prefs/chrome_pref_service_factory.cc\n@@ -57,10 +57,8 @@\n #include \"components/prefs/pref_store.h\"\n #include \"components/prefs/pref_value_store.h\"\n #include \"components/prefs/wrap_with_prefix_pref_store.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/search_engines/default_search_manager.h\"\n #include \"components/search_engines/search_engines_pref_names.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/supervised_user/core/browser/device_parental_controls.h\"\n #include \"components/supervised_user/core/browser/supervised_user_pref_store.h\"\n@@ -133,9 +131,6 @@ const auto kTrackedPrefs = std::to_array\n     {5, extensions::pref_names::kExtensions, EnforcementLevel::NO_ENFORCEMENT,\n      PrefTrackingStrategy::SPLIT, ValueType::IMPERSONAL},\n #endif\n-    {6, prefs::kGoogleServicesLastSyncingUsername,\n-     EnforcementLevel::ENFORCE_ON_LOAD, PrefTrackingStrategy::ATOMIC,\n-     ValueType::PERSONAL},\n     {7, prefs::kSearchProviderOverrides, EnforcementLevel::ENFORCE_ON_LOAD,\n      PrefTrackingStrategy::ATOMIC, ValueType::IMPERSONAL},\n #if !BUILDFLAG(IS_ANDROID)\n@@ -159,19 +154,12 @@ const auto kTrackedPrefs = std::to_array\n      PrefTrackingStrategy::ATOMIC, ValueType::IMPERSONAL},\n     // kSyncRemainingRollbackTries is deprecated and will be removed a few\n     // releases after M50.\n-    {18, prefs::kSafeBrowsingIncidentsSent, EnforcementLevel::ENFORCE_ON_LOAD,\n-     PrefTrackingStrategy::ATOMIC, ValueType::IMPERSONAL},\n-    {23, prefs::kGoogleServicesAccountId, EnforcementLevel::ENFORCE_ON_LOAD,\n-     PrefTrackingStrategy::ATOMIC, ValueType::PERSONAL},\n     {29, prefs::kMediaStorageIdSalt, EnforcementLevel::ENFORCE_ON_LOAD,\n      PrefTrackingStrategy::ATOMIC, ValueType::IMPERSONAL},\n #if BUILDFLAG(IS_WIN)\n     {32, prefs::kMediaCdmOriginData, EnforcementLevel::ENFORCE_ON_LOAD,\n      PrefTrackingStrategy::ATOMIC, ValueType::IMPERSONAL},\n #endif  // BUILDFLAG(IS_WIN)\n-    {33, prefs::kGoogleServicesLastSignedInUsername,\n-     EnforcementLevel::ENFORCE_ON_LOAD, PrefTrackingStrategy::ATOMIC,\n-     ValueType::PERSONAL},\n     {34, enterprise_signin::prefs::kPolicyRecoveryToken,\n      EnforcementLevel::ENFORCE_ON_LOAD, PrefTrackingStrategy::ATOMIC,\n      ValueType::IMPERSONAL},\n--- a/chrome/browser/prefs/pref_functional_browsertest.cc\n+++ b/chrome/browser/prefs/pref_functional_browsertest.cc\n@@ -26,7 +26,6 @@\n #include \"components/content_settings/core/common/content_settings_types.h\"\n #include \"components/content_settings/core/common/pref_names.h\"\n #include \"components/embedder_support/pref_names.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sync_preferences/pref_service_syncable.h\"\n #include \"content/public/browser/web_contents.h\"\n #include \"content/public/test/browser_test.h\"\n@@ -219,9 +218,6 @@ IN_PROC_BROWSER_TEST_F(PrefsFunctionalTe\n   prefetch::SetPreloadPagesState(prefs,\n                                  prefetch::PreloadPagesState::kNoPreloading);\n \n-  EXPECT_TRUE(prefs->GetBoolean(prefs::kSafeBrowsingEnabled));\n-  prefs->SetBoolean(prefs::kSafeBrowsingEnabled, false);\n-\n   EXPECT_TRUE(prefs->GetBoolean(embedder_support::kAlternateErrorPagesEnabled));\n   prefs->SetBoolean(embedder_support::kAlternateErrorPagesEnabled, false);\n \n@@ -235,7 +231,6 @@ IN_PROC_BROWSER_TEST_F(PrefsFunctionalTe\n \n   EXPECT_EQ(prefetch::PreloadPagesState::kNoPreloading,\n             prefetch::GetPreloadPagesState(*prefs));\n-  EXPECT_FALSE(prefs->GetBoolean(prefs::kSafeBrowsingEnabled));\n   EXPECT_FALSE(\n       prefs->GetBoolean(embedder_support::kAlternateErrorPagesEnabled));\n   EXPECT_FALSE(prefs->GetBoolean(prefs::kSearchSuggestEnabled));\n--- a/chrome/browser/profiles/gaia_info_update_service.cc\n+++ b/chrome/browser/profiles/gaia_info_update_service.cc\n@@ -21,7 +21,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/avatar_icon_util.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n--- a/chrome/browser/profiles/gaia_info_update_service_unittest.cc\n+++ b/chrome/browser/profiles/gaia_info_update_service_unittest.cc\n@@ -37,7 +37,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/profile_metrics/state.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/identity_manager/account_capabilities_test_mutator.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n--- a/chrome/browser/profiles/profile_attributes_entry.cc\n+++ b/chrome/browser/profiles/profile_attributes_entry.cc\n@@ -27,7 +27,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/prefs/scoped_user_pref_update.h\"\n #include \"components/profile_metrics/state.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/signin_constants.h\"\n@@ -523,7 +522,7 @@ bool ProfileAttributesEntry::IsUsingDefa\n }\n \n bool ProfileAttributesEntry::IsSignedInWithCredentialProvider() const {\n-  return GetBool(prefs::kSignedInWithCredentialProvider);\n+  return false;\n }\n \n bool ProfileAttributesEntry::IsDasherlessManagement() const {\n@@ -768,7 +767,6 @@ void ProfileAttributesEntry::SetLastDown\n }\n \n void ProfileAttributesEntry::SetSignedInWithCredentialProvider(bool value) {\n-  SetBool(prefs::kSignedInWithCredentialProvider, value);\n }\n \n void ProfileAttributesEntry::SetDasherlessManagement(bool value) {\n--- a/chrome/browser/profiles/profile_attributes_storage.cc\n+++ b/chrome/browser/profiles/profile_attributes_storage.cc\n@@ -43,7 +43,6 @@\n #include \"components/prefs/scoped_user_pref_update.h\"\n #include \"components/profile_metrics/state.h\"\n #include \"components/signin/public/base/persistent_repeating_timer.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_managed_status_finder.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n@@ -394,9 +393,7 @@ void ProfileAttributesStorage::AddProfil\n                    params.profile_name,\n                    /*include_check_for_legacy_profile_name*/ false))\n           // Assume newly created profiles use a default avatar.\n-          .Set(ProfileAttributesEntry::kIsUsingDefaultAvatarKey, true)\n-          .Set(prefs::kSignedInWithCredentialProvider,\n-               params.is_signed_in_with_credential_provider);\n+          .Set(ProfileAttributesEntry::kIsUsingDefaultAvatarKey, true);\n \n   if (params.account_id.HasAccountIdKey()) {\n     info.Set(ProfileAttributesEntry::kAccountIdKey,\n--- a/chrome/browser/profiles/profile_impl.cc\n+++ b/chrome/browser/profiles/profile_impl.cc\n@@ -154,7 +154,6 @@\n #include \"components/profile_metrics/browser_profile_type.h\"\n #include \"components/safe_search_api/safe_search_util.h\"\n #include \"components/security_interstitials/content/stateful_ssl_host_state_delegate.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/site_isolation/site_isolation_policy.h\"\n@@ -1095,7 +1094,6 @@ void ProfileImpl::OnLocaleReady(CreateMo\n #if !BUILDFLAG(IS_ANDROID)\n   CHECK(!ThemeServiceFactory::GetForProfileIfExists(this));\n #endif  // !BUILDFLAG(IS_ANDROID)\n-  browser_sync::MaybeMigrateSyncingUserToSignedIn(GetPath(), GetPrefs());\n \n #if BUILDFLAG(IS_CHROMEOS)\n   // If this is a kiosk profile, reset some of its prefs which should not\n--- a/chrome/browser/profiles/profile_manager.cc\n+++ b/chrome/browser/profiles/profile_manager.cc\n@@ -93,7 +93,6 @@\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/primary_account_mutator.h\"\n #include \"components/signin/public/identity_manager/tribool.h\"\n@@ -2000,8 +1999,7 @@ void ProfileManager::AddProfileToStorage\n       entry->SetAuthInfo(account_info.gaia, username,\n                          is_consented_primary_account);\n \n-      entry->SetSignedInWithCredentialProvider(profile->GetPrefs()->GetBoolean(\n-          prefs::kSignedInWithCredentialProvider));\n+      entry->SetSignedInWithCredentialProvider(false);\n \n #if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)\n       // Sign out if force-sign-in policy is enabled and profile is not signed\n@@ -2050,14 +2048,13 @@ void ProfileManager::AddProfileToStorage\n \n   init_params.is_ephemeral = IsForceEphemeralProfilesEnabled(profile);\n   init_params.is_signed_in_with_credential_provider =\n-      profile->GetPrefs()->GetBoolean(prefs::kSignedInWithCredentialProvider);\n+      false;\n \n   storage.AddProfile(std::move(init_params));\n }\n \n void ProfileManager::SetNonPersonalProfilePrefs(Profile* profile) {\n   PrefService* prefs = profile->GetPrefs();\n-  prefs->SetBoolean(prefs::kSigninAllowed, false);\n   prefs->SetBoolean(bookmarks::prefs::kEditBookmarksEnabled, false);\n   prefs->SetBoolean(bookmarks::prefs::kShowBookmarkBar, false);\n   prefs->ClearPref(DefaultSearchManager::kDefaultSearchProviderDataPrefName);\n--- a/chrome/browser/profiles/profile_window.cc\n+++ b/chrome/browser/profiles/profile_window.cc\n@@ -41,7 +41,6 @@\n #include \"chrome/common/pref_names.h\"\n #include \"chrome/common/url_constants.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/webui/flags/pref_service_flags_storage.h\"\n--- a/chrome/browser/profiles/profiles_state.cc\n+++ b/chrome/browser/profiles/profiles_state.cc\n@@ -51,7 +51,6 @@\n \n #include \"chrome/browser/profiles/gaia_info_update_service.h\"\n #include \"chrome/browser/profiles/gaia_info_update_service_factory.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #endif\n \n namespace profiles {\n--- a/chrome/browser/resources/settings/privacy_page/security/security_page.html\n+++ b/chrome/browser/resources/settings/privacy_page/security/security_page.html\n@@ -73,126 +73,6 @@\n   <settings-subpage page-title=\"$i18n{securityPageTitle}\"\n       learn-more-url=\"$i18n{safeBrowsingHelpCenterURL}\"\n       route-path$=\"[[routePath]]\">\n-    <div id=\"safeBrowsingSection\">\n-      <h2 class=\"cr-title-text\">$i18n{safeBrowsingSectionLabel}</h2>\n-      <settings-radio-group id=\"safeBrowsingRadioGroup\" no-set-pref\n-          pref=\"{{prefs.generated.safe_browsing}}\"\n-          selectable-elements=\"cr-radio-button, settings-collapse-radio-button\"\n-          on-change=\"onSafeBrowsingRadioChange_\">\n-        <settings-collapse-radio-button id=\"safeBrowsingEnhanced\"\n-            name=\"[[safeBrowsingSettingEnum_.ENHANCED]]\"\n-            pref=\"[[prefs.generated.safe_browsing]]\"\n-            label=\"$i18n{safeBrowsingEnhanced}\"\n-            sub-label=\"$i18n{safeBrowsingEnhancedDescUpdated}\"\n-            indicator-aria-label=\"$i18n{controlledSettingPolicy}\"\n-            expand-aria-label=\"$i18n{safeBrowsingEnhancedExpandA11yLabel}\"\n-            on-expand-clicked=\"onEnhancedProtectionExpandButtonClicked_\"\n-            no-automatic-collapse>\n-          <div slot=\"collapse\">\n-            <div id=\"enhancedProtectionDescContainer\"\n-                class=\"settings-columned-section\">\n-              <div class=\"column\">\n-                <h3 class=\"description-header\">\n-                  $i18n{columnHeadingWhenOn}\n-                </h3>\n-                <ul class=\"icon-bulleted-list\">\n-                  <li>\n-                    <cr-icon icon=\"settings20:data\" aria-hidden=\"true\">\n-                    </cr-icon>\n-                    <div class=\"secondary\">\n-                      $i18n{safeBrowsingEnhancedWhenOnBulOne}\n-                    </div>\n-                  </li>\n-                  <li>\n-                    <cr-icon icon=\"settings20:download\" aria-hidden=\"true\">\n-                    </cr-icon>\n-                    <div class=\"secondary\">\n-                      $i18n{safeBrowsingEnhancedWhenOnBulTwo}\n-                    </div>\n-                  </li>\n-                  <li>\n-                    <cr-icon icon=\"settings20:gshield\" aria-hidden=\"true\">\n-                    </cr-icon>\n-                    <div class=\"secondary\">\n-                      $i18n{safeBrowsingEnhancedWhenOnBulThree}\n-                    </div>\n-                  </li>\n-                  <li>\n-                    <cr-icon icon=\"settings:language\" aria-hidden=\"true\">\n-                    </cr-icon>\n-                    <div class=\"secondary\">\n-                      $i18n{safeBrowsingEnhancedWhenOnBulFour}\n-                    </div>\n-                  </li>\n-                </ul>\n-              </div>\n-              <div class=\"column\">\n-                <h3 class=\"description-header\">\n-                  $i18n{columnHeadingConsider}\n-                </h3>\n-                <ul class=\"icon-bulleted-list\">\n-                  <li>\n-                    <cr-icon icon=\"settings20:link\"></cr-icon>\n-                    <div class=\"cr-secondary-text\">\n-                      $i18n{safeBrowsingEnhancedThingsToConsiderBulOne}\n-                    </div>\n-                  </li>\n-                  <li>\n-                    <cr-icon icon=\"settings20:account-circle\"></cr-icon>\n-                    <div class=\"cr-secondary-text\">\n-                      $i18n{safeBrowsingEnhancedThingsToConsiderBulTwo}\n-                    </div>\n-                  </li>\n-                  <li>\n-                    <cr-icon icon=\"settings:performance\"></cr-icon>\n-                    <div class=\"cr-secondary-text\">\n-                      $i18n{safeBrowsingEnhancedThingsToConsiderBulThree}\n-                    </div>\n-                  </li>\n-                </ul>\n-              </div>\n-            </div>\n-            <div id=\"learnMoreLabelContainer\">\n-              <div class=\"cr-secondary-text\">\n-                $i18nRaw{safeBrowsingEnhancedLearnMoreLabel}\n-              </div>\n-            </div>\n-          </div>\n-        </settings-collapse-radio-button>\n-        <settings-collapse-radio-button id=\"safeBrowsingStandard\"\n-            no-collapse=\"[[hideExtendedReportingRadioButton_]]\"\n-            name=\"[[safeBrowsingSettingEnum_.STANDARD]]\"\n-            pref=\"[[prefs.generated.safe_browsing]]\"\n-            label=\"$i18n{safeBrowsingStandard}\"\n-            sub-label=\"[[getSafeBrowsingStandardSubLabel_(\n-                        enableHashPrefixRealTimeLookups_)]]\"\n-            indicator-aria-label=\"$i18n{controlledSettingPolicy}\"\n-            expand-aria-label=\"$i18n{safeBrowsingStandardExpandA11yLabel}\"\n-            info-opened=\"{{infoOpened_}}\"\n-            on-expand-clicked=\"onStandardProtectionExpandButtonClicked_\"\n-            no-automatic-collapse>\n-          <div slot=\"noSelectionCollapse\">\n-            <template is=\"dom-if\" if=\"[[!hideExtendedReportingRadioButton_]]\">\n-              <settings-toggle-button id=\"safeBrowsingReportingToggle\"\n-                pref=\"{{prefs.safebrowsing.scout_reporting_enabled}}\"\n-                label=\"$i18n{safeBrowsingStandardReportingLabel}\"\n-                sub-label=\"$i18n{safeBrowsingEnableExtendedReportingDesc}\"\n-                on-change=\"onSafeBrowsingExtendedReportingChange_\"\n-                disabled=\"[[getDisabledExtendedSafeBrowsing_(\n-                              prefs.generated.safe_browsing.*)]]\">\n-              </settings-toggle-button>\n-            </template>\n-          </div>\n-        </settings-collapse-radio-button>\n-        <settings-collapse-radio-button id=\"safeBrowsingDisabled\" no-collapse\n-            name=\"[[safeBrowsingSettingEnum_.DISABLED]]\"\n-            pref=\"[[prefs.generated.safe_browsing]]\"\n-            label=\"$i18n{safeBrowsingNone}\"\n-            sub-label=\"$i18n{safeBrowsingNoneDesc}\"\n-            indicator-aria-label=\"$i18n{controlledSettingPolicy}\">\n-        </settings-collapse-radio-button>\n-      </settings-radio-group>\n-    </div>\n     <template is=\"dom-if\" if=\"[[enableHttpsFirstModeNewSettings_]]\" restamp>\n       <div id=\"secureConnectionsSection\">\n         <h2 class=\"cr-title-text\">$i18n{secureConnectionsSectionTitle}</h2>\n@@ -298,12 +178,4 @@\n         on-click=\"onAdvancedProtectionProgramLinkClick_\"\n         external>\n     </cr-link-row>\n-    <template is=\"dom-if\" if=\"[[showDisableSafebrowsingDialog_]]\" restamp>\n-      <settings-simple-confirmation-dialog\n-          title-text=\"$i18n{safeBrowsingDisableDialog}\"\n-          body-text=\"$i18n{safeBrowsingDisableDialogDesc}\"\n-          confirm-text=\"$i18n{safeBrowsingDisableDialogConfirm}\"\n-          on-close=\"onDisableSafebrowsingDialogClose_\">\n-      </settings-simple-confirmation-dialog>\n-    </template>\n   </settings-subpage>\n--- a/chrome/browser/resources/settings/privacy_page/security/security_page.ts\n+++ b/chrome/browser/resources/settings/privacy_page/security/security_page.ts\n@@ -201,15 +201,6 @@ export class SettingsSecurityPageElement\n     super.ready();\n \n     CrSettingsPrefs.initialized.then(() => {\n-      // Expand initial pref value manually because automatic\n-      // expanding is disabled.\n-      const prefValue = this.getPref('generated.safe_browsing').value;\n-      if (prefValue === SafeBrowsingSetting.ENHANCED) {\n-        this.$.safeBrowsingEnhanced.expanded = true;\n-      } else if (prefValue === SafeBrowsingSetting.STANDARD) {\n-        this.$.safeBrowsingStandard.expanded = true;\n-      }\n-\n       // The HTTPS-First Mode generated pref should never be set to\n       // ENABLED_BALANCED if the feature flag is not enabled.\n       if (!loadTimeData.getBoolean('enableHttpsFirstModeNewSettings')) {\n@@ -219,10 +210,6 @@ export class SettingsSecurityPageElement\n       }\n     });\n \n-    this.registerHelpBubble(\n-        'kEnhancedProtectionSettingElementId',\n-        this.$.safeBrowsingEnhanced.getBubbleAnchor(), {anchorPaddingTop: 10});\n-\n     this.addWebUiListener(\n         'contentSettingCategoryChanged', (category: ContentSettingsTypes) => {\n           if (category === ContentSettingsTypes.JAVASCRIPT_OPTIMIZER) {\n@@ -287,8 +274,7 @@ export class SettingsSecurityPageElement\n   }\n \n   private getDisabledExtendedSafeBrowsing_(): boolean {\n-    return this.getPref('generated.safe_browsing').value !==\n-        SafeBrowsingSetting.STANDARD;\n+    return true;\n   }\n \n   private getSafeBrowsingStandardSubLabel_(): string {\n@@ -300,19 +286,6 @@ export class SettingsSecurityPageElement\n \n   private getPasswordsLeakToggleSubLabel_(): string {\n     let subLabel = this.i18n('passwordsLeakDetectionGeneralDescription');\n-    // If the backing password leak detection preference is enabled, but the\n-    // generated preference is off and user control is disabled, then additional\n-    // text explaining that the feature will be enabled if the user signs in is\n-    // added.\n-    if (this.prefs !== undefined) {\n-      const generatedPref = this.getPref('generated.password_leak_detection');\n-      if (this.getPref('profile.password_manager_leak_detection').value &&\n-          !generatedPref.value && generatedPref.userControlDisabled) {\n-        subLabel +=\n-            ' ' +  // Whitespace is a valid sentence separator w.r.t. i18n.\n-            this.i18n('passwordsLeakDetectionSignedOutEnabledDescription');\n-      }\n-    }\n     return subLabel;\n   }\n \n--- a/chrome/browser/resources/settings/site_settings/site_settings_page.ts\n+++ b/chrome/browser/resources/settings/site_settings/site_settings_page.ts\n@@ -61,7 +61,7 @@ function getCategoryItemMap(): Map<Conte\n       enabledLabel: 'siteSettingsAdsAllowed',\n       disabledLabel: 'siteSettingsAdsBlocked',\n       shouldShow: () =>\n-          loadTimeData.getBoolean('enableSafeBrowsingSubresourceFilter'),\n+          false,\n     },\n     {\n       route: routes.SITE_SETTINGS_AUTO_VERIFY,\n--- a/chrome/browser/safe_browsing/advanced_protection_status_manager_desktop.cc\n+++ b/chrome/browser/safe_browsing/advanced_protection_status_manager_desktop.cc\n@@ -15,7 +15,6 @@\n #include \"chrome/browser/signin/identity_manager_factory.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_switches.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n@@ -71,9 +70,7 @@ void AdvancedProtectionStatusManagerDesk\n   RecordStartupUma(is_under_advanced_protection_);\n   NotifyObserversStatusChanged();\n \n-  if (pref_service_->HasPrefPath(prefs::kAdvancedProtectionLastRefreshInUs)) {\n-    last_refreshed_ = base::Time::FromDeltaSinceWindowsEpoch(base::Microseconds(\n-        pref_service_->GetInt64(prefs::kAdvancedProtectionLastRefreshInUs)));\n+  if (false) {\n     if (is_under_advanced_protection_) {\n       ScheduleNextRefresh();\n     }\n@@ -95,16 +92,7 @@ AdvancedProtectionStatusManagerDesktop::\n     ~AdvancedProtectionStatusManagerDesktop() = default;\n \n bool AdvancedProtectionStatusManagerDesktop::IsUnderAdvancedProtection() const {\n-  if (!pref_service_->GetBoolean(prefs::kAdvancedProtectionAllowed)) {\n     return false;\n-  }\n-\n-  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n-          switches::kForceTreatUserAsAdvancedProtection)) {\n-    return true;\n-  }\n-\n-  return is_under_advanced_protection_;\n }\n \n void AdvancedProtectionStatusManagerDesktop::\n@@ -260,10 +248,6 @@ void AdvancedProtectionStatusManagerDesk\n }\n \n void AdvancedProtectionStatusManagerDesktop::UpdateLastRefreshTime() {\n-  last_refreshed_ = base::Time::Now();\n-  pref_service_->SetInt64(\n-      prefs::kAdvancedProtectionLastRefreshInUs,\n-      last_refreshed_.ToDeltaSinceWindowsEpoch().InMicroseconds());\n }\n \n bool AdvancedProtectionStatusManagerDesktop::IsUnconsentedPrimaryAccount(\n--- a/chrome/browser/safe_browsing/advanced_protection_status_manager_unittest.cc\n+++ b/chrome/browser/safe_browsing/advanced_protection_status_manager_unittest.cc\n@@ -8,7 +8,6 @@\n #include \"base/test/task_environment.h\"\n #include \"build/build_config.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_test_environment.h\"\n--- a/chrome/browser/safe_browsing/android/services_delegate_android.h\n+++ b/chrome/browser/safe_browsing/android/services_delegate_android.h\n@@ -6,7 +6,6 @@\n #define CHROME_BROWSER_SAFE_BROWSING_ANDROID_SERVICES_DELEGATE_ANDROID_H_\n \n #include \"chrome/browser/safe_browsing/services_delegate.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace safe_browsing {\n \n--- a/chrome/browser/safe_browsing/chrome_password_protection_service.cc\n+++ b/chrome/browser/safe_browsing/chrome_password_protection_service.cc\n@@ -74,7 +74,6 @@\n #include \"components/safe_browsing/core/browser/verdict_cache_manager.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_constants.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/security_interstitials/core/unsafe_resource.h\"\n@@ -1409,14 +1408,6 @@ bool ChromePasswordProtectionService::Ha\n }\n \n void ChromePasswordProtectionService::OnWarningTriggerChanged() {\n-  const base::Value& pref_value = pref_change_registrar_->prefs()->GetValue(\n-      prefs::kPasswordProtectionWarningTrigger);\n-  // If password protection is not turned off, do nothing.\n-  if (static_cast<PasswordProtectionTrigger>(pref_value.GetInt()) !=\n-      PASSWORD_PROTECTION_OFF) {\n-    return;\n-  }\n-\n   // Clears captured enterprise password hashes or GSuite sync password hashes.\n   password_manager::PasswordReuseManager* reuse_manager =\n       GetPasswordReuseManager();\n@@ -1592,7 +1583,7 @@ PrefService* ChromePasswordProtectionSer\n }\n \n bool ChromePasswordProtectionService::IsSafeBrowsingEnabled() {\n-  return ::safe_browsing::IsSafeBrowsingEnabled(*GetPrefs());\n+  return false;\n }\n \n bool ChromePasswordProtectionService::IsExtendedReporting() {\n@@ -1612,54 +1603,7 @@ bool ChromePasswordProtectionService::Is\n bool ChromePasswordProtectionService::IsPingingEnabled(\n     LoginReputationClientRequest::TriggerType trigger_type,\n     ReusedPasswordAccountType password_type) {\n-  if (!IsSafeBrowsingEnabled()) {\n     return false;\n-  }\n-  bool extended_reporting_enabled = IsExtendedReporting();\n-  if (trigger_type == LoginReputationClientRequest::PASSWORD_REUSE_EVENT ||\n-      trigger_type ==\n-          LoginReputationClientRequest::ONE_TIME_PASSWORD_FIELD_DETECTED) {\n-    // Don't send a ping if the password protection setting is off\n-    if (GetPasswordProtectionWarningTriggerPref(password_type) ==\n-        PASSWORD_PROTECTION_OFF) {\n-      return false;\n-    }\n-    // Don't send a ping if in password alert mode.\n-    if (IsInPasswordAlertMode(password_type)) {\n-      return false;\n-    }\n-    // If the account type is UNKNOWN (i.e. AccountInfo fields could not be\n-    // retrieved from server) and it's not an OTP ping, a phishy verdict will\n-    // not be acted on. Therefore any ping sent would be a pure telemetry ping.\n-    // Such pings should be gated by SBER.\n-    if (password_type.account_type() == ReusedPasswordAccountType::UNKNOWN &&\n-        trigger_type !=\n-            LoginReputationClientRequest::ONE_TIME_PASSWORD_FIELD_DETECTED) {\n-      return extended_reporting_enabled;\n-    }\n-\n-// Only saved password reuse, GAIA password reuse, and OTP field detection can\n-// result in enforcement for Android users. Therefore, other types of password\n-// reuse events should be gated by Safe Browsing extended reporting because\n-// phishy verdicts won't be enforced making the pings telemetry-only.\n-#if BUILDFLAG(IS_ANDROID)\n-    if (password_type.account_type() ==\n-            ReusedPasswordAccountType::SAVED_PASSWORD ||\n-        password_type.account_type() == ReusedPasswordAccountType::GMAIL ||\n-        trigger_type ==\n-            LoginReputationClientRequest::ONE_TIME_PASSWORD_FIELD_DETECTED) {\n-      return true;\n-    }\n-\n-    return extended_reporting_enabled;\n-#else\n-    return true;\n-#endif\n-  }\n-  // Since it's possible that on-focus pings could trigger for many visited\n-  // pages, don't send the ping when a SBER user is in Incognito to reduce data\n-  // sent to Google.\n-  return !IsIncognito() && extended_reporting_enabled;\n }\n \n RequestOutcome ChromePasswordProtectionService::GetPingNotSentReason(\n@@ -1902,23 +1846,6 @@ MaybeCreateCommitDeferringCondition(\n              : nullptr;\n }\n \n-PasswordProtectionTrigger\n-ChromePasswordProtectionService::GetPasswordProtectionWarningTriggerPref(\n-    ReusedPasswordAccountType password_type) const {\n-  bool is_policy_managed = profile_->GetPrefs()->HasPrefPath(\n-      prefs::kPasswordProtectionWarningTrigger);\n-  PasswordProtectionTrigger trigger_level =\n-      static_cast<PasswordProtectionTrigger>(profile_->GetPrefs()->GetInteger(\n-          prefs::kPasswordProtectionWarningTrigger));\n-  if (is_policy_managed && trigger_level == PASSWORD_PROTECTION_OFF) {\n-    return PASSWORD_PROTECTION_OFF;\n-  }\n-  if (password_type.account_type() == ReusedPasswordAccountType::GMAIL) {\n-    return PHISHING_REUSE;\n-  }\n-  return is_policy_managed ? trigger_level : PHISHING_REUSE;\n-}\n-\n bool ChromePasswordProtectionService::IsURLAllowlistedForPasswordEntry(\n     const GURL& url) const {\n   if (!profile_)\n--- a/chrome/browser/safe_browsing/chrome_password_protection_service.h\n+++ b/chrome/browser/safe_browsing/chrome_password_protection_service.h\n@@ -223,13 +223,6 @@ class ChromePasswordProtectionService\n   bool UserClickedThroughSBInterstitial(\n       PasswordProtectionRequest* request) override;\n \n-  // If |prefs::kPasswordProtectionWarningTrigger| is not managed by enterprise\n-  // policy, this function should always return PHISHING_REUSE. Otherwise,\n-  // returns the specified pref value adjusted for the given username's account\n-  // type.\n-  PasswordProtectionTrigger GetPasswordProtectionWarningTriggerPref(\n-      ReusedPasswordAccountType password_type) const override;\n-\n   // If |url| matches Safe Browsing allowlist domains, password protection\n   // change password URL, or password protection login URLs in the enterprise\n   // policy.\n--- a/chrome/browser/safe_browsing/chrome_password_protection_service_browsertest.cc\n+++ b/chrome/browser/safe_browsing/chrome_password_protection_service_browsertest.cc\n@@ -43,7 +43,6 @@\n #include \"components/safe_browsing/content/browser/password_protection/password_protection_request_content.h\"\n #include \"components/safe_browsing/content/browser/password_protection/password_protection_test_util.h\"\n #include \"components/safe_browsing/core/browser/password_protection/metrics_util.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_state/content/security_state_tab_helper.h\"\n #include \"components/security_state/core/security_state.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n--- a/chrome/browser/safe_browsing/chrome_password_protection_service_sync_browsertest.cc\n+++ b/chrome/browser/safe_browsing/chrome_password_protection_service_sync_browsertest.cc\n@@ -27,10 +27,8 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/prefs/scoped_user_pref_update.h\"\n #include \"components/safe_browsing/content/browser/password_protection/password_protection_request_content.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_state/content/security_state_tab_helper.h\"\n #include \"components/security_state/core/security_state.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/identity_test_utils.h\"\n #include \"components/sync/service/sync_service.h\"\n--- a/chrome/browser/safe_browsing/download_protection/check_client_download_request.cc\n+++ b/chrome/browser/safe_browsing/download_protection/check_client_download_request.cc\n@@ -36,7 +36,6 @@\n #include \"components/safe_browsing/content/common/file_type_policies.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/url_matcher/url_matcher.h\"\n #include \"content/public/browser/browser_context.h\"\n--- a/chrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc\n+++ b/chrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc\n@@ -26,7 +26,6 @@\n #include \"components/safe_browsing/content/browser/web_ui/web_ui_content_info_singleton.h\"\n #include \"components/safe_browsing/content/common/file_type_policies.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n--- a/chrome/browser/safe_browsing/download_protection/download_protection_service_unittest.cc\n+++ b/chrome/browser/safe_browsing/download_protection/download_protection_service_unittest.cc\n@@ -94,7 +94,6 @@\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_switches.h\"\n #include \"components/signin/public/identity_manager/identity_test_environment.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n--- a/chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc\n@@ -20,7 +20,6 @@\n #include \"chrome/test/base/testing_profile.h\"\n #include \"chrome/test/base/testing_profile_manager.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sync_preferences/testing_pref_service_syncable.h\"\n #include \"content/public/test/browser_task_environment.h\"\n #include \"content/public/test/test_utils.h\"\n--- a/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service.cc\n@@ -40,7 +40,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/download_item_utils.h\"\n #include \"services/network/public/cpp/shared_url_loader_factory.h\"\n--- a/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc\n@@ -34,7 +34,6 @@\n #include \"chrome/test/base/testing_profile.h\"\n #include \"chrome/test/base/testing_profile_manager.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sync_preferences/testing_pref_service_syncable.h\"\n #include \"content/public/test/browser_task_environment.h\"\n #include \"extensions/browser/quota_service.h\"\n--- a/chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc\n@@ -42,7 +42,6 @@\n #include \"components/history/core/browser/history_database_params.h\"\n #include \"components/history/core/browser/history_service.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sync_preferences/testing_pref_service_syncable.h\"\n #include \"content/public/browser/download_manager.h\"\n #include \"content/public/test/browser_task_environment.h\"\n--- a/chrome/browser/safe_browsing/incident_reporting/state_store.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/state_store.cc\n@@ -14,7 +14,6 @@\n #include \"chrome/browser/safe_browsing/incident_reporting/incident.h\"\n #include \"chrome/browser/safe_browsing/incident_reporting/platform_state_store.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace safe_browsing {\n \n--- a/chrome/browser/safe_browsing/incident_reporting/state_store_unittest.cc\n+++ b/chrome/browser/safe_browsing/incident_reporting/state_store_unittest.cc\n@@ -22,7 +22,6 @@\n #include \"chrome/test/base/testing_profile_manager.h\"\n #include \"components/pref_registry/pref_registry_syncable.h\"\n #include \"components/prefs/in_memory_pref_store.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sync_preferences/pref_service_syncable.h\"\n #include \"components/sync_preferences/pref_service_syncable_factory.h\"\n #include \"content/public/test/browser_task_environment.h\"\n--- a/chrome/browser/safe_browsing/metrics/safe_browsing_metrics_provider.cc\n+++ b/chrome/browser/safe_browsing/metrics/safe_browsing_metrics_provider.cc\n@@ -7,7 +7,6 @@\n #include \"base/metrics/histogram_functions.h\"\n #include \"chrome/browser/profiles/profile.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace safe_browsing {\n \n--- a/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc\n+++ b/chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc\n@@ -93,7 +93,6 @@\n #include \"components/safe_browsing/core/browser/verdict_cache_manager.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/hashprefix_realtime/hash_realtime_utils.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/web_ui_constants.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/content/security_interstitial_tab_helper.h\"\n--- a/chrome/browser/safe_browsing/safe_browsing_service.cc\n+++ b/chrome/browser/safe_browsing/safe_browsing_service.cc\n@@ -318,7 +318,6 @@ bool SafeBrowsingServiceImpl::IsUserElig\n \n SafeBrowsingServiceImpl::SafeBrowsingServiceImpl()\n     : services_delegate_(ServicesDelegate::Create(this)),\n-      estimated_extended_reporting_by_prefs_(SBER_LEVEL_OFF),\n       shutdown_(false),\n       enabled_(false),\n       enabled_by_prefs_(false) {}\n@@ -459,9 +458,6 @@ TriggerManager* SafeBrowsingServiceImpl:\n \n PasswordProtectionService*\n SafeBrowsingServiceImpl::GetPasswordProtectionService(Profile* profile) const {\n-  if (IsSafeBrowsingEnabled(*profile->GetPrefs())) {\n-    return ChromePasswordProtectionServiceFactory::GetForProfile(profile);\n-  }\n   return nullptr;\n }\n \n@@ -562,9 +558,6 @@ void SafeBrowsingServiceImpl::OnProfileA\n   std::unique_ptr<PrefChangeRegistrar> registrar =\n       std::make_unique<PrefChangeRegistrar>();\n   registrar->Init(pref_service);\n-  registrar->Add(prefs::kSafeBrowsingEnabled,\n-                 base::BindRepeating(&SafeBrowsingServiceImpl::RefreshState,\n-                                     base::Unretained(this)));\n   // ClientSideDetectionService will need to be refresh the models\n   // renderers have if extended-reporting changes.\n   registrar->Add(prefs::kSafeBrowsingScoutReportingEnabled,\n@@ -604,14 +597,6 @@ void SafeBrowsingServiceImpl::OnProfileA\n                           NoCachedPopulationReason::kChangeMbbPref));\n   user_population_prefs_[pref_service] = std::move(user_population_registrar);\n \n-  // Record the current pref state for standard protection.\n-  UMA_HISTOGRAM_BOOLEAN(kSafeBrowsingEnabledHistogramName,\n-                        pref_service->GetBoolean(prefs::kSafeBrowsingEnabled));\n-  // Record the current pref state for enhanced protection. Enhanced protection\n-  // is a subset of the standard protection. Thus, |kSafeBrowsingEnabled| count\n-  // should always be more than the count of enhanced protection.\n-  UMA_HISTOGRAM_BOOLEAN(\"SafeBrowsing.Pref.Enhanced\",\n-                        pref_service->GetBoolean(prefs::kSafeBrowsingEnhanced));\n \n   // Record the current enhanced protection pref state and JS Optimizer setting\n   // for regular profiles only\n@@ -762,18 +747,6 @@ void SafeBrowsingServiceImpl::RefreshSta\n \n   // Check if any profile requires the service to be active.\n   enabled_by_prefs_ = false;\n-  estimated_extended_reporting_by_prefs_ = SBER_LEVEL_OFF;\n-  for (const auto& pref : prefs_map_) {\n-    if (IsSafeBrowsingEnabled(*pref.first)) {\n-      enabled_by_prefs_ = true;\n-\n-      ExtendedReportingLevel erl =\n-          safe_browsing::GetExtendedReportingLevel(*pref.first);\n-      if (erl != SBER_LEVEL_OFF) {\n-        estimated_extended_reporting_by_prefs_ = erl;\n-      }\n-    }\n-  }\n \n   if (enabled_by_prefs_) {\n     Start();\n--- a/chrome/browser/safe_browsing/safe_browsing_service.h\n+++ b/chrome/browser/safe_browsing/safe_browsing_service.h\n@@ -28,7 +28,6 @@\n #include \"components/safe_browsing/content/browser/safe_browsing_service_interface.h\"\n #include \"components/safe_browsing/core/browser/db/util.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"services/network/public/cpp/shared_url_loader_factory.h\"\n@@ -107,15 +106,6 @@ class SafeBrowsingServiceImpl : public S\n   // Called on the main thread to let us know that the io_thread is going away.\n   void ShutDown();\n \n-  // NOTE(vakh): This is not the most reliable way to find out if extended\n-  // reporting has been enabled. That's why it starts with estimated_. It\n-  // returns true if any of the profiles have extended reporting enabled. It may\n-  // be called on any thread. That can lead to a race condition, but that's\n-  // acceptable.\n-  ExtendedReportingLevel estimated_extended_reporting_by_prefs() const {\n-    return estimated_extended_reporting_by_prefs_;\n-  }\n-\n   // Get current enabled status. Must be called on IO thread.\n   bool enabled() const {\n     DCHECK_CURRENTLY_ON(content::BrowserThread::IO);\n@@ -389,10 +379,6 @@ class SafeBrowsingServiceImpl : public S\n \n   std::unique_ptr<ProxyConfigMonitor> proxy_config_monitor_;\n \n-  // Whether SafeBrowsing Extended Reporting is enabled by the current set of\n-  // profiles. Updated on the UI thread.\n-  ExtendedReportingLevel estimated_extended_reporting_by_prefs_;\n-\n   // Whether the service has been shutdown.\n   bool shutdown_;\n \n--- a/chrome/browser/safe_browsing/telemetry/android/android_telemetry_service.cc\n+++ b/chrome/browser/safe_browsing/telemetry/android/android_telemetry_service.cc\n@@ -30,7 +30,6 @@\n #include \"components/safe_browsing/core/browser/db/database_manager.h\"\n #include \"components/safe_browsing/core/browser/ping_manager.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/download_item_utils.h\"\n@@ -137,11 +136,9 @@ bool AndroidTelemetryService::CanSendPin\n     return false;\n   }\n \n-  if (!IsSafeBrowsingEnabled(*GetPrefs())) {\n-    RecordApkDownloadTelemetryOutcome(\n-        ApkDownloadTelemetryOutcome::NOT_SENT_SAFE_BROWSING_NOT_ENABLED);\n-    return false;\n-  }\n+  RecordApkDownloadTelemetryOutcome(\n+      ApkDownloadTelemetryOutcome::NOT_SENT_SAFE_BROWSING_NOT_ENABLED);\n+  return false;\n \n   if (profile_->IsOffTheRecord()) {\n     RecordApkDownloadTelemetryOutcome(\n--- a/chrome/browser/safe_browsing/telemetry/android/android_telemetry_service_unittest.cc\n+++ b/chrome/browser/safe_browsing/telemetry/android/android_telemetry_service_unittest.cc\n@@ -21,7 +21,6 @@\n #include \"components/safe_browsing/android/safe_browsing_api_handler_bridge.h\"\n #include \"components/safe_browsing/android/safe_browsing_api_handler_util.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/download_item_utils.h\"\n--- a/chrome/browser/safe_browsing/url_checker_delegate_impl.cc\n+++ b/chrome/browser/safe_browsing/url_checker_delegate_impl.cc\n@@ -23,7 +23,6 @@\n #include \"components/safe_browsing/core/browser/db/database_manager.h\"\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/navigation_entry.h\"\n--- a/chrome/browser/send_tab_to_self/send_tab_to_self_util.cc\n+++ b/chrome/browser/send_tab_to_self/send_tab_to_self_util.cc\n@@ -11,7 +11,6 @@\n #include \"components/send_tab_to_self/features.h\"\n #include \"components/send_tab_to_self/send_tab_to_self_model.h\"\n #include \"components/send_tab_to_self/send_tab_to_self_sync_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/sync/service/sync_service.h\"\n #include \"content/public/browser/web_contents.h\"\n--- a/chrome/browser/signin/account_consistency_mode_manager.cc\n+++ b/chrome/browser/signin/account_consistency_mode_manager.cc\n@@ -24,7 +24,6 @@\n #include \"components/pref_registry/pref_registry_syncable.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"google_apis/google_api_keys.h\"\n \n #if BUILDFLAG(IS_CHROMEOS)\n@@ -94,21 +93,6 @@ AccountConsistencyModeManager::AccountCo\n                           ->GetProfileAttributesStorage()\n                           .GetProfileAttributesWithPath(profile_->GetPath())\n                     : nullptr;\n-  PrefService* prefs = profile_->GetPrefs();\n-  // Propagate settings changes from the previous launch to the signin-allowed\n-  // pref.\n-  bool signin_allowed = IsDiceSignInAllowed(entry) &&\n-                        prefs->GetBoolean(prefs::kSigninAllowedOnNextStartup);\n-\n-  // Disable sign-in if experimental-ai is enabled, regardless of channel.\n-  auto* command_line = base::CommandLine::ForCurrentProcess();\n-  if (command_line->HasSwitch(::switches::kExperimentalAiStableChannel)) {\n-    signin_allowed = false;\n-  }\n-\n-  prefs->SetBoolean(prefs::kSigninAllowed, signin_allowed);\n-\n-  UMA_HISTOGRAM_BOOLEAN(\"Signin.SigninAllowed\", signin_allowed);\n #endif\n \n   account_consistency_ = ComputeAccountConsistencyMethod(profile_);\n@@ -121,7 +105,6 @@ AccountConsistencyModeManager::~AccountC\n // static\n void AccountConsistencyModeManager::RegisterProfilePrefs(\n     user_prefs::PrefRegistrySyncable* registry) {\n-  registry->RegisterBooleanPref(prefs::kSigninAllowedOnNextStartup, true);\n }\n \n // static\n@@ -203,13 +186,9 @@ AccountConsistencyModeManager::ComputeAc\n #if BUILDFLAG(ENABLE_MIRROR)\n   return AccountConsistencyMethod::kMirror;\n #elif BUILDFLAG(ENABLE_DICE_SUPPORT)\n-  if (!profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed)) {\n     VLOG(1) << \"Desktop Identity Consistency disabled as sign-in to Chrome \"\n                \"is not allowed\";\n     return AccountConsistencyMethod::kDisabled;\n-  }\n-\n-  return AccountConsistencyMethod::kDice;\n #else\n   NOTREACHED();\n #endif\n--- a/chrome/browser/signin/account_consistency_mode_manager_unittest.cc\n+++ b/chrome/browser/signin/account_consistency_mode_manager_unittest.cc\n@@ -19,7 +19,6 @@\n #include \"components/prefs/testing_pref_store.h\"\n #include \"components/signin/public/base/account_consistency_method.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/sync_preferences/testing_pref_service_syncable.h\"\n #include \"content/public/test/browser_task_environment.h\"\n #include \"testing/gtest/include/gtest/gtest.h\"\n--- a/chrome/browser/signin/accounts_policy_manager.cc\n+++ b/chrome/browser/signin/accounts_policy_manager.cc\n@@ -42,7 +42,6 @@\n #include \"components/profile_metrics/browser_profile_type.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n@@ -211,25 +210,11 @@ void AccountsPolicyManager::Initialize()\n   EnsurePrimaryAccountAllowedForProfile(\n       profile_, signin_metrics::ProfileSignout::kSigninNotAllowedOnProfileInit);\n \n-  signin_allowed_.Init(\n-      prefs::kSigninAllowed, profile_->GetPrefs(),\n-      base::BindRepeating(&AccountsPolicyManager::OnSigninAllowedPrefChanged,\n-                          weak_pointer_factory_.GetWeakPtr()));\n-\n   local_state_pref_registrar_.Init(g_browser_process->local_state());\n-  local_state_pref_registrar_.Add(\n-      prefs::kGoogleServicesUsernamePattern,\n-      base::BindRepeating(\n-          &AccountsPolicyManager::OnGoogleServicesUsernamePatternChanged,\n-          weak_pointer_factory_.GetWeakPtr()));\n \n   auto* identity_manager = IdentityManagerFactory::GetForProfile(profile_);\n   identity_manager_observation_.Observe(identity_manager);\n   profile_pref_change_registrar_.Init(profile_->GetPrefs());\n-  profile_pref_change_registrar_.Add(\n-      prefs::kProfileSeparationDomainExceptionList,\n-      base::BindRepeating(&AccountsPolicyManager::RemoveUnallowedAccounts,\n-                          weak_pointer_factory_.GetWeakPtr()));\n   if (identity_manager->AreRefreshTokensLoaded()) {\n     OnRefreshTokensLoaded();\n   }\n@@ -238,7 +223,6 @@ void AccountsPolicyManager::Initialize()\n void AccountsPolicyManager::Shutdown() {\n   profile_pref_change_registrar_.RemoveAll();\n   local_state_pref_registrar_.RemoveAll();\n-  signin_allowed_.Destroy();\n }\n \n void AccountsPolicyManager::OnGoogleServicesUsernamePatternChanged() {\n@@ -310,9 +294,7 @@ void AccountsPolicyManager::EnsurePrimar\n           << \", ProfileSignoutSource=\"\n           << static_cast<int>(clear_primary_account_source)\n           << \", signin.allowed preference=\"\n-          << profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed)\n           << \" (managed=\"\n-          << profile->GetPrefs()->IsManagedPreference(prefs::kSigninAllowed)\n           << \"), SigninLevel=\" << signin_level << \", ProfileType=\"\n           << static_cast<int>(profile_metrics::GetBrowserProfileType(profile));\n       LOG(WARNING) << base::debug::StackTrace().ToString();\n--- a/chrome/browser/signin/accounts_policy_manager.h\n+++ b/chrome/browser/signin/accounts_policy_manager.h\n@@ -67,9 +67,6 @@ class AccountsPolicyManager : public Key\n \n   raw_ptr<Profile> profile_;\n \n-  // Helper object to listen for changes to the signin allowed preference.\n-  BooleanPrefMember signin_allowed_;\n-\n   // Helper object to listen for changes to signin preferences stored in non-\n   // profile-specific local prefs (like kGoogleServicesUsernamePattern).\n   PrefChangeRegistrar local_state_pref_registrar_;\n--- a/chrome/browser/signin/android/signin_manager_android.cc\n+++ b/chrome/browser/signin/android/signin_manager_android.cc\n@@ -36,7 +36,6 @@\n #include \"components/policy/core/common/policy_switches.h\"\n #include \"components/prefs/android/pref_service_android.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_managed_status_finder.h\"\n #include \"components/signin/public/identity_manager/accounts_cookie_mutator.h\"\n@@ -132,11 +131,6 @@ class ProfileDataRemover : public conten\n       // All the Profile data has been wiped. Clear the last signed in username\n       // as well, so that the next signin doesn't trigger the account\n       // change dialog.\n-      profile_->GetPrefs()->ClearPref(prefs::kGoogleServicesLastSyncingGaiaId);\n-      profile_->GetPrefs()->ClearPref(\n-          prefs::kGoogleServicesLastSyncingUsername);\n-      profile_->GetPrefs()->ClearPref(\n-          prefs::kGoogleServicesLastSignedInUsername);\n     }\n \n     origin_runner_->PostTask(FROM_HERE, std::move(callback_));\n--- a/chrome/browser/signin/bound_session_credentials/bound_session_cookie_refresh_service_factory.cc\n+++ b/chrome/browser/signin/bound_session_credentials/bound_session_cookie_refresh_service_factory.cc\n@@ -20,7 +20,6 @@\n #include \"chrome/browser/signin/bound_session_credentials/unexportable_key_service_factory.h\"\n #include \"components/pref_registry/pref_registry_syncable.h\"\n #include \"components/signin/public/base/account_consistency_method.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"content/public/browser/network_service_instance.h\"\n \n@@ -111,7 +110,4 @@ BoundSessionCookieRefreshServiceFactory:\n void BoundSessionCookieRefreshServiceFactory::RegisterProfilePrefs(\n     user_prefs::PrefRegistrySyncable* registry) {\n   BoundSessionParamsStorage::RegisterProfilePrefs(registry);\n-  // Default value for this pref doesn't matter since it is only used when\n-  // explicitly set.\n-  registry->RegisterBooleanPref(prefs::kBoundSessionCredentialsEnabled, false);\n }\n--- a/chrome/browser/signin/chrome_device_id_helper.cc\n+++ b/chrome/browser/signin/chrome_device_id_helper.cc\n@@ -18,7 +18,6 @@\n #include \"chrome/browser/ash/profiles/profile_helper.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/user_manager/known_user.h\"\n #include \"components/user_manager/user_manager.h\"\n@@ -87,21 +86,11 @@ void MigrateSigninScopedDeviceId(Profile\n   user_manager::KnownUser known_user(g_browser_process->local_state());\n   const AccountId account_id = user->GetAccountId();\n   if (known_user.GetDeviceId(account_id).empty()) {\n-    const std::string legacy_device_id = profile->GetPrefs()->GetString(\n-        prefs::kGoogleServicesSigninScopedDeviceId);\n-    if (!legacy_device_id.empty()) {\n-      // Need to move device ID from the old location to the new one, if it has\n-      // not been done yet.\n-      known_user.SetDeviceId(account_id, legacy_device_id);\n-    } else {\n-      known_user.SetDeviceId(\n-          account_id, GenerateSigninScopedDeviceId(\n-                          user_manager::UserManager::Get()\n-                              ->IsUserNonCryptohomeDataEphemeral(account_id)));\n-    }\n+    known_user.SetDeviceId(\n+        account_id, GenerateSigninScopedDeviceId(\n+                        user_manager::UserManager::Get()\n+                            ->IsUserNonCryptohomeDataEphemeral(account_id)));\n   }\n-  profile->GetPrefs()->SetString(prefs::kGoogleServicesSigninScopedDeviceId,\n-                                 std::string());\n }\n \n #endif  // BUILDFLAG(IS_CHROMEOS)\n--- a/chrome/browser/signin/chrome_signin_client.cc\n+++ b/chrome/browser/signin/chrome_signin_client.cc\n@@ -50,7 +50,6 @@\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_client.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/access_token_info.h\"\n--- a/chrome/browser/signin/chromeos_mirror_account_consistency_browsertest.cc\n+++ b/chrome/browser/signin/chromeos_mirror_account_consistency_browsertest.cc\n@@ -17,7 +17,6 @@\n #include \"components/policy/core/common/policy_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/core/browser/signin_header_helper.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_test_utils.h\"\n #include \"components/supervised_user/core/browser/supervised_user_preferences.h\"\n #include \"components/user_manager/user.h\"\n--- a/chrome/browser/signin/dice_browsertest.cc\n+++ b/chrome/browser/signin/dice_browsertest.cc\n@@ -87,7 +87,6 @@\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_client.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_capabilities_test_mutator.h\"\n--- a/chrome/browser/signin/dice_signed_in_profile_creator.cc\n+++ b/chrome/browser/signin/dice_signed_in_profile_creator.cc\n@@ -20,7 +20,6 @@\n #include \"chrome/browser/signin/identity_manager_factory.h\"\n #include \"chrome/browser/signin/signin_util.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"content/public/browser/storage_partition.h\"\n--- a/chrome/browser/signin/dice_web_signin_interceptor.cc\n+++ b/chrome/browser/signin/dice_web_signin_interceptor.cc\n@@ -79,7 +79,6 @@\n #include \"components/search_engines/template_url_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_capabilities.h\"\n@@ -417,16 +416,8 @@ void DiceWebSigninInterceptor::RegisterP\n   registry->RegisterBooleanPref(prefs::kSigninInterceptionEnabled, true);\n   registry->RegisterStringPref(prefs::kManagedAccountsSigninRestriction,\n                                std::string());\n-  registry->RegisterStringPref(prefs::kSigninInterceptionIDPCookiesUrl,\n-                               std::string());\n   registry->RegisterBooleanPref(\n       prefs::kManagedAccountsSigninRestrictionScopeMachine, false);\n-  registry->RegisterIntegerPref(prefs::kProfileSeparationSettings, 0);\n-  registry->RegisterIntegerPref(prefs::kProfileSeparationDataMigrationSettings,\n-                                1);\n-  registry->RegisterListPref(prefs::kProfileSeparationDomainExceptionList);\n-  registry->RegisterStringPref(\n-      prefs::kUserCloudSigninPolicyResponseFromPolicyTestPage, std::string());\n }\n \n std::optional<SigninInterceptionHeuristicOutcome>\n@@ -1562,16 +1553,6 @@ void DiceWebSigninInterceptor::\n           g_browser_process->browser_policy_connector(),\n           g_browser_process->system_network_context_manager()\n               ->GetSharedURLLoaderFactory());\n-  state_->account_level_signin_restriction_policy_fetcher_\n-      ->GetManagedAccountsSigninRestriction(\n-          identity_manager_, account_info.account_id, std::move(callback),\n-          policy::utils::IsPolicyTestingEnabled(profile_->GetPrefs(),\n-                                                chrome::GetChannel())\n-              ? profile_->GetPrefs()\n-                    ->GetDefaultPrefValue(\n-                        prefs::kUserCloudSigninPolicyResponseFromPolicyTestPage)\n-                    ->GetString()\n-              : std::string());\n }\n \n void DiceWebSigninInterceptor::\n--- a/chrome/browser/signin/header_modification_delegate_impl.cc\n+++ b/chrome/browser/signin/header_modification_delegate_impl.cc\n@@ -17,7 +17,6 @@\n #include \"chrome/browser/sync/sync_service_factory.h\"\n #include \"components/policy/core/common/policy_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n@@ -228,7 +227,7 @@ void HeaderModificationDelegateImpl::Pro\n       // the sync feature is enabled, which in particular triggers a\n       // confirmation web page on signout.\n       sync_service && sync_service->IsSyncFeatureEnabled(),\n-      prefs->GetString(prefs::kGoogleServicesSigninScopedDeviceId),\n+      std::string(),\n #endif\n       cookie_settings_.get());\n }\n--- a/chrome/browser/signin/mirror_browsertest.cc\n+++ b/chrome/browser/signin/mirror_browsertest.cc\n@@ -32,7 +32,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/core/browser/dice_header_helper.h\"\n #include \"components/signin/core/browser/signin_header_helper.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"content/public/common/content_client.h\"\n #include \"content/public/test/browser_test.h\"\n #include \"google_apis/gaia/gaia_urls.h\"\n--- a/chrome/browser/signin/signin_promo.cc\n+++ b/chrome/browser/signin/signin_promo.cc\n@@ -19,7 +19,6 @@\n #include \"components/pref_registry/pref_registry_syncable.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/sync/base/features.h\"\n #include \"content/public/browser/browser_context.h\"\n@@ -194,12 +193,6 @@ void RegisterProfilePrefs(\n \n   // Signin promo limits experiment prefs.\n   registry->RegisterIntegerPref(\n-      prefs::kAddressSignInPromoShownCountPerProfileForLimitsExperiment, 0);\n-  registry->RegisterIntegerPref(\n-      prefs::kBookmarkSignInPromoShownCountPerProfileForLimitsExperiment, 0);\n-  registry->RegisterIntegerPref(\n-      prefs::kPasswordSignInPromoShownCountPerProfileForLimitsExperiment, 0);\n-  registry->RegisterIntegerPref(\n       prefs::kAddressSignInPromoDismissCountPerProfileForLimitsExperiment, 0);\n   registry->RegisterIntegerPref(\n       prefs::kPasswordSignInPromoDismissCountPerProfileForLimitsExperiment, 0);\n--- a/chrome/browser/signin/signin_promo_util.cc\n+++ b/chrome/browser/signin/signin_promo_util.cc\n@@ -19,7 +19,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/primary_account_mutator.h\"\n@@ -144,21 +143,7 @@ std::pair<int, int> GetPromoUsageCounts(\n }\n \n bool WasPreviouslySyncingWithPrimaryAccount(Profile* profile) {\n-  const GaiaId last_syncing_gaia_id(\n-      profile->GetPrefs()->GetString(prefs::kGoogleServicesLastSyncingGaiaId));\n-  if (last_syncing_gaia_id.empty()) {\n     return false;\n-  }\n-\n-  const GaiaId primary_account_gaia_id =\n-      IdentityManagerFactory::GetForProfile(profile)\n-          ->GetPrimaryAccountInfo(ConsentLevel::kSignin)\n-          .gaia;\n-  if (primary_account_gaia_id.empty()) {\n-    return false;\n-  }\n-\n-  return last_syncing_gaia_id == primary_account_gaia_id;\n }\n \n void ComputeProfileMenuAvatarButtonPromoInfoWithBatchUploadResult(\n@@ -241,39 +226,15 @@ syncer::DataType GetDataTypeFromSignInPr\n }\n \n int GetAddressPromoShownCount(Profile& profile, const GaiaId& gaia_id) {\n-  if (!gaia_id.empty()) {\n-    return SigninPrefs(*profile.GetPrefs())\n-        .GetAddressSigninPromoImpressionCount(gaia_id);\n-  }\n-\n-  return profile.GetPrefs()->GetInteger(\n-      base::FeatureList::IsEnabled(switches::kSigninPromoLimitsExperiment)\n-          ? prefs::kAddressSignInPromoShownCountPerProfileForLimitsExperiment\n-          : prefs::kAddressSignInPromoShownCountPerProfile);\n+  return 0;\n }\n \n int GetPasswordPromoShownCount(Profile& profile, const GaiaId& gaia_id) {\n-  if (!gaia_id.empty()) {\n-    return SigninPrefs(*profile.GetPrefs())\n-        .GetPasswordSigninPromoImpressionCount(gaia_id);\n-  }\n-\n-  return profile.GetPrefs()->GetInteger(\n-      base::FeatureList::IsEnabled(switches::kSigninPromoLimitsExperiment)\n-          ? prefs::kPasswordSignInPromoShownCountPerProfileForLimitsExperiment\n-          : prefs::kPasswordSignInPromoShownCountPerProfile);\n+  return 0;\n }\n \n int GetBookmarkPromoShownCount(Profile& profile, const GaiaId& gaia_id) {\n-  if (!gaia_id.empty()) {\n-    return SigninPrefs(*profile.GetPrefs())\n-        .GetBookmarkSigninPromoImpressionCount(gaia_id);\n-  }\n-\n-  return profile.GetPrefs()->GetInteger(\n-      base::FeatureList::IsEnabled(switches::kSigninPromoLimitsExperiment)\n-          ? prefs::kBookmarkSignInPromoShownCountPerProfileForLimitsExperiment\n-          : prefs::kBookmarkSignInPromoShownCountPerProfile);\n+  return 0;\n }\n \n int GetContextualPromoDismissCountPerSignedOutProfile(Profile& profile,\n@@ -430,94 +391,14 @@ bool ShouldShowSignInPromoCommon(Profile\n \n #if !BUILDFLAG(IS_ANDROID)\n bool ShouldShowSyncPromo(Profile& profile) {\n-#if BUILDFLAG(IS_CHROMEOS)\n-  // There's no need to show the sign in promo on cros since cros users are\n-  // already logged in.\n-  return false;\n-#else\n-\n-  // Don't bother if we don't have any kind of network connection.\n-  if (net::NetworkChangeNotifier::IsOffline()) {\n-    return false;\n-  }\n-\n-  // Consider original profile even if an off-the-record profile was\n-  // passed to this method as sign-in state is only defined for the\n-  // primary profile.\n-  Profile* original_profile = profile.GetOriginalProfile();\n-\n-  // Don't show for supervised child profiles.\n-  if (original_profile->IsChild()) {\n     return false;\n-  }\n-\n-  signin::IdentityManager* identity_manager =\n-      IdentityManagerFactory::GetForProfile(original_profile);\n-  AccountInfo promo_account =\n-      profile.IsOffTheRecord()\n-          ? AccountInfo()  // Incognito profiles do not personalize promos.\n-          : signin_ui_util::GetSingleAccountForPromos(identity_manager);\n-\n-  // Don't show if sign in can't be offered (ex: signin disallowed).\n-  if (!CanOfferSignin(original_profile, promo_account.gaia, promo_account.email,\n-                      /*allow_account_from_other_profile=*/true)\n-           .IsOk()) {\n-    return false;\n-  }\n-\n-  // No promo if the user is already syncing.\n-  if (identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSync)) {\n-    return false;\n-  }\n-\n-  syncer::SyncPrefs prefs(profile.GetPrefs());\n-  // Don't show if sync is not allowed to start or is running in local mode.\n-  if (!SyncServiceFactory::IsSyncAllowed(&profile) ||\n-      prefs.IsLocalSyncEnabled()) {\n-    return false;\n-  }\n-\n-  // Verified the base checks. Depending on whether the promo should be for sync\n-  // or signin, additional checks are necessary.\n-  return true;\n-#endif\n }\n #endif  // !BUILDFLAG(IS_ANDROID)\n \n #if BUILDFLAG(ENABLE_EXTENSIONS)\n bool ShouldShowExtensionSignInPromo(Profile& profile,\n                                     const extensions::Extension& extension) {\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-  // Don't show the promo if it does not pass the sync base checks.\n-  if (!signin::ShouldShowSyncPromo(profile)) {\n-    return false;\n-  }\n-\n-  if (!extensions::sync_util::ShouldSync(&profile, &extension)) {\n-    return false;\n-  }\n-\n-  if (!base::FeatureList::IsEnabled(syncer::kUnoPhase2FollowUp)) {\n-    // `ShouldShowSyncPromo()` does not check if extensions are syncing in\n-    // transport mode. That's why `IsSyncingExtensionsEnabled()` is added so the\n-    // sign in promo is not shown in that case.\n-    if (extensions::sync_util::IsSyncingExtensionsEnabled(&profile)) {\n-      return false;\n-    }\n-\n-    if (const signin::IdentityManager* identity_manager =\n-            IdentityManagerFactory::GetForProfile(&profile);\n-        identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSignin)) {\n-      // The promo is not shown to users that have explicitly signed in through\n-      // the browser (even if extensions are not syncing).\n-      return false;\n-    }\n-  }\n-\n-  return ShouldShowSignInPromoCommon(profile, SignInPromoType::kExtension);\n-#else\n   return false;\n-#endif  // BUILDFLAG(ENABLE_DICE_SUPPORT)\n }\n #endif  // BUILDFLAG(ENABLE_EXTENSIONS)\n \n@@ -548,35 +429,7 @@ bool ShouldShowAddressSignInPromo(Profil\n }\n \n bool ShouldShowBookmarkSignInPromo(Profile& profile) {\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-  if (!base::FeatureList::IsEnabled(\n-          switches::kSyncEnableBookmarksInTransportMode)) {\n-    return false;\n-  }\n-\n-  if (!ShouldShowSignInPromoCommon(profile, SignInPromoType::kBookmark)) {\n-    return false;\n-  }\n-\n-  // At this point, both the identity manager and sync service should not be\n-  // null.\n-  IdentityManager* identity_manager =\n-      IdentityManagerFactory::GetForProfile(&profile);\n-  syncer::SyncService* sync_service =\n-      SyncServiceFactory::GetForProfile(&profile);\n-  CHECK(identity_manager);\n-  CHECK(sync_service);\n-\n-  // If the user is in sign in pending state, the promo should only be shown if\n-  // they already have account storage for bookmarks enabled.\n-  // Uno Phase 2 Follow up: Always display the promotion.\n-  return base::FeatureList::IsEnabled(syncer::kUnoPhase2FollowUp) ||\n-         !signin_util::IsSigninPending(identity_manager) ||\n-         sync_service->GetUserSettings()->GetSelectedTypes().Has(\n-             syncer::UserSelectableType::kBookmarks);\n-#else\n   return false;\n-#endif  // BUILDFLAG(ENABLE_DICE_SUPPORT)\n }\n \n bool IsBubbleSigninPromo(signin_metrics::AccessPoint access_point) {\n@@ -626,70 +479,6 @@ SignInPromoType GetSignInPromoTypeFromAc\n #if BUILDFLAG(ENABLE_DICE_SUPPORT)\n void RecordSignInPromoShown(signin_metrics::AccessPoint access_point,\n                             Profile* profile) {\n-  CHECK(profile);\n-  CHECK(!profile->IsOffTheRecord());\n-\n-  AccountInfo account = signin_ui_util::GetSingleAccountForPromos(\n-      IdentityManagerFactory::GetForProfile(profile));\n-  SignInPromoType promo_type = GetSignInPromoTypeFromAccessPoint(access_point);\n-\n-  // Record the pref per profile if there is no account present.\n-  if (account.gaia.empty()) {\n-    const char* pref_name;\n-    switch (promo_type) {\n-      case SignInPromoType::kPassword:\n-        pref_name =\n-            base::FeatureList::IsEnabled(switches::kSigninPromoLimitsExperiment)\n-                ? prefs::\n-                      kPasswordSignInPromoShownCountPerProfileForLimitsExperiment\n-                : prefs::kPasswordSignInPromoShownCountPerProfile;\n-        break;\n-      case SignInPromoType::kAddress:\n-        pref_name =\n-            base::FeatureList::IsEnabled(switches::kSigninPromoLimitsExperiment)\n-                ? prefs::\n-                      kAddressSignInPromoShownCountPerProfileForLimitsExperiment\n-                : prefs::kAddressSignInPromoShownCountPerProfile;\n-        break;\n-      case SignInPromoType::kBookmark:\n-        if (!base::FeatureList::IsEnabled(syncer::kUnoPhase2FollowUp)) {\n-          return;\n-        }\n-        pref_name =\n-            base::FeatureList::IsEnabled(switches::kSigninPromoLimitsExperiment)\n-                ? prefs::\n-                      kBookmarkSignInPromoShownCountPerProfileForLimitsExperiment\n-                : prefs::kBookmarkSignInPromoShownCountPerProfile;\n-        break;\n-      case SignInPromoType::kExtension:\n-        return;\n-    }\n-\n-    int show_count = profile->GetPrefs()->GetInteger(pref_name);\n-    profile->GetPrefs()->SetInteger(pref_name, show_count + 1);\n-    return;\n-  }\n-\n-  // Record the pref for the account that was used for the promo, either because\n-  // it is signed into the web or in sign in pending state.\n-  switch (promo_type) {\n-    case SignInPromoType::kPassword:\n-      SigninPrefs(*profile->GetPrefs())\n-          .IncrementPasswordSigninPromoImpressionCount(account.gaia);\n-      return;\n-    case SignInPromoType::kAddress:\n-      SigninPrefs(*profile->GetPrefs())\n-          .IncrementAddressSigninPromoImpressionCount(account.gaia);\n-      return;\n-    case SignInPromoType::kBookmark:\n-      if (base::FeatureList::IsEnabled(syncer::kUnoPhase2FollowUp)) {\n-        SigninPrefs(*profile->GetPrefs())\n-            .IncrementBookmarkSigninPromoImpressionCount(account.gaia);\n-      }\n-      return;\n-    case SignInPromoType::kExtension:\n-      return;\n-  }\n }\n \n void RecordAvatarButtonPromoAcceptedAtPromoShownCount(\n--- a/chrome/browser/signin/signin_ui_util.cc\n+++ b/chrome/browser/signin/signin_ui_util.cc\n@@ -44,7 +44,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n--- a/chrome/browser/signin/signin_util.cc\n+++ b/chrome/browser/signin/signin_util.cc\n@@ -33,7 +33,6 @@\n #include \"components/policy/core/browser/signin/profile_separation_policies.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/core/browser/account_reconcilor.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_managed_status_finder.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n@@ -89,8 +88,7 @@ ScopedForceSigninSetterForTesting::~Scop\n CookiesMover::CookiesMover(base::WeakPtr<Profile> source_profile,\n                            base::WeakPtr<Profile> destination_profile,\n                            base::OnceCallback<void()> callback)\n-    : url_(source_profile->GetPrefs()->GetString(\n-          prefs::kSigninInterceptionIDPCookiesUrl)),\n+    : url_(std::string()),\n       source_profile_(std::move(source_profile)),\n       destination_profile_(std::move(destination_profile)),\n       callback_(std::move(callback)) {\n@@ -100,25 +98,7 @@ CookiesMover::CookiesMover(base::WeakPtr\n CookiesMover::~CookiesMover() = default;\n \n void CookiesMover::StartMovingCookies() {\n-#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_WIN)\n-  bool allow_cookies_to_be_moved = base::FeatureList::IsEnabled(\n-      profile_management::features::kThirdPartyProfileManagement);\n-#else\n-  bool allow_cookies_to_be_moved = false;\n-#endif\n-  if (!allow_cookies_to_be_moved || url_.is_empty() || !url_.is_valid()) {\n     std::move(callback_).Run();\n-    return;\n-  }\n-\n-  source_profile_->GetPrefs()->ClearPref(\n-      prefs::kSigninInterceptionIDPCookiesUrl);\n-  source_profile_->GetDefaultStoragePartition()\n-      ->GetCookieManagerForBrowserProcess()\n-      ->GetCookieList(url_, net::CookieOptions::MakeAllInclusive(),\n-                      net::CookiePartitionKeyCollection::Todo(),\n-                      base::BindOnce(&CookiesMover::OnCookiesReceived,\n-                                     weak_pointer_factory_.GetWeakPtr()));\n }\n \n void CookiesMover::OnCookiesReceived(\n@@ -259,16 +239,7 @@ bool ProfileSeparationAllowsKeepingUnman\n bool IsAccountExemptedFromEnterpriseProfileSeparation(\n     Profile* profile,\n     const std::string& email) {\n-  if (profile->GetPrefs()\n-          ->FindPreference(prefs::kProfileSeparationDomainExceptionList)\n-          ->IsDefaultValue()) {\n     return true;\n-  }\n-\n-  const std::string domain = gaia::ExtractDomainName(email);\n-  const auto& allowed_domains = profile->GetPrefs()->GetList(\n-      prefs::kProfileSeparationDomainExceptionList);\n-  return allowed_domains.contains(domain);\n }\n #endif  // !BUILDFLAG(IS_CHROMEOS)\n \n@@ -563,59 +534,7 @@ bool IsValidAccessPointForHistoryOptinSc\n }\n \n bool ShouldShowAvatarSyncPromo(Profile* profile) {\n-  CHECK(switches::IsAvatarSyncPromoFeatureEnabled());\n-\n-  // Do not show the promo for users that are not signed in. (E.g. Signed out,\n-  // Signin Pending or already syncing).\n-  if (GetSignedInState(IdentityManagerFactory::GetForProfile(profile)) !=\n-      signin_util::SignedInState::kSignedIn) {\n-    return false;\n-  }\n-\n-  // SyncService should be usable.\n-  syncer::SyncService* sync_service =\n-      SyncServiceFactory::GetForProfile(profile);\n-  if (!sync_service) {\n     return false;\n-  }\n-  if (sync_service->HasDisableReason(\n-          syncer::SyncService::DISABLE_REASON_ENTERPRISE_POLICY)) {\n-    return false;\n-  }\n-\n-  signin::IdentityManager* identity_manager =\n-      IdentityManagerFactory::GetForProfile(profile);\n-  CHECK(identity_manager->AreRefreshTokensLoaded());\n-  AccountInfo account_info = identity_manager->FindExtendedAccountInfo(\n-      identity_manager->GetPrimaryAccountInfo(signin::ConsentLevel::kSignin));\n-  // Do not show the promo for non signed in accounts, or managed accounts.\n-  if (account_info.IsEmpty() ||\n-      account_info.IsManaged() != signin::Tribool::kFalse) {\n-    return false;\n-  }\n-\n-  // Do not show the promo if there was a previously syncing account that does\n-  // not match the currently signed in one.\n-  PrefService* pref_service = profile->GetPrefs();\n-  GaiaId previously_syncing_gaia_id =\n-      GaiaId(pref_service->GetString(prefs::kGoogleServicesLastSyncingGaiaId));\n-  if (IsCrossAccountError(profile, account_info.gaia)) {\n-    return false;\n-  }\n-\n-  // For non-dice users, do not show the promo for users that have been signed\n-  // for a short period of time.\n-  if (pref_service->GetBoolean(prefs::kExplicitBrowserSignin)) {\n-    const base::Time last_changed = base::Time::FromSecondsSinceUnixEpoch(\n-        pref_service->GetDouble(prefs::kGaiaCookieChangedTime));\n-    if (last_changed.is_null() ||\n-        (base::Time::Now() - last_changed <\n-         switches::GetAvatarSyncPromoFeatureMinimumCookeAgeParam())) {\n-      return false;\n-    }\n-  }\n-\n-  return true;\n }\n \n void ShowErrorDialogWithMessage(Browser* browser, int error_message_id) {\n--- a/chrome/browser/signin/signin_util_win.cc\n+++ b/chrome/browser/signin/signin_util_win.cc\n@@ -40,7 +40,6 @@\n #include \"components/signin/core/browser/about_signin_internals.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/primary_account_mutator.h\"\n@@ -207,9 +206,6 @@ void ImportCredentialsFromProvider(Profi\n                                        account_id, profile));\n     }\n   }\n-\n-  // Mark this profile as having been signed in with the credential provider.\n-  profile->GetPrefs()->SetBoolean(prefs::kSignedInWithCredentialProvider, true);\n }\n \n // Extracts the |cred_provider_gaia_id| and |cred_provider_email| for the user\n@@ -386,18 +382,7 @@ bool ReauthWithCredentialProviderIfPossi\n   //  - The profile is marked as having been signed in with a system credential.\n   //  - The profile is already signed in.\n   //  - The profile is in an auth error state.\n-  auto* identity_manager = IdentityManagerFactory::GetForProfile(profile);\n-  if (!(profile->GetPrefs()->GetBoolean(\n-            prefs::kSignedInWithCredentialProvider) &&\n-        identity_manager->HasPrimaryAccount(GetConsentLevel()) &&\n-        identity_manager->HasAccountWithRefreshTokenInPersistentErrorState(\n-            identity_manager->GetPrimaryAccountId(GetConsentLevel())))) {\n     return false;\n-  }\n-\n-  const GaiaId gaia_id =\n-      identity_manager->GetPrimaryAccountInfo(GetConsentLevel()).gaia;\n-  return TrySigninWithCredentialProvider(profile, gaia_id, /*is_reauth=*/true);\n }\n \n }  // namespace signin_util\n--- a/chrome/browser/signin/signin_util_win_browsertest.cc\n+++ b/chrome/browser/signin/signin_util_win_browsertest.cc\n@@ -42,7 +42,6 @@\n #include \"components/keep_alive_registry/keep_alive_types.h\"\n #include \"components/keep_alive_registry/scoped_keep_alive.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/identity_test_utils.h\"\n #include \"components/signin/public/identity_manager/primary_account_mutator.h\"\n--- a/chrome/browser/site_protection/site_familiarity_utils.cc\n+++ b/chrome/browser/site_protection/site_familiarity_utils.cc\n@@ -10,7 +10,6 @@\n #include \"components/content_settings/core/browser/host_content_settings_map.h\"\n #include \"components/content_settings/core/common/features.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/render_frame_host.h\"\n #include \"content/public/browser/render_process_host.h\"\n #include \"content/public/browser/site_instance.h\"\n--- a/chrome/browser/ssl/sct_reporting_service.cc\n+++ b/chrome/browser/ssl/sct_reporting_service.cc\n@@ -16,7 +16,6 @@\n #include \"chrome/common/chrome_features.h\"\n #include \"chrome/common/pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/network_service_instance.h\"\n #include \"content/public/browser/storage_partition.h\"\n #include \"google_apis/google_api_keys.h\"\n@@ -204,18 +203,6 @@ SCTReportingService::SCTReportingService\n SCTReportingService::~SCTReportingService() = default;\n \n network::mojom::SCTAuditingMode SCTReportingService::GetReportingMode() {\n-  if (profile_->IsOffTheRecord() ||\n-      !base::FeatureList::IsEnabled(features::kSCTAuditing)) {\n-    return network::mojom::SCTAuditingMode::kDisabled;\n-  }\n-  if (safe_browsing::IsSafeBrowsingEnabled(*pref_service_)) {\n-    if (safe_browsing::IsExtendedReportingEnabled(*pref_service_)) {\n-      return network::mojom::SCTAuditingMode::kEnhancedSafeBrowsingReporting;\n-    }\n-    if (base::FeatureList::IsEnabled(features::kSCTAuditingHashdance)) {\n-      return network::mojom::SCTAuditingMode::kHashdance;\n-    }\n-  }\n   return network::mojom::SCTAuditingMode::kDisabled;\n }\n \n--- a/chrome/browser/ssl/ssl_browsertest.cc\n+++ b/chrome/browser/ssl/ssl_browsertest.cc\n@@ -96,7 +96,6 @@\n #include \"components/policy/policy_constants.h\"\n #include \"components/prefs/testing_pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/bad_clock_blocking_page.h\"\n #include \"components/security_interstitials/content/captive_portal_blocking_page.h\"\n #include \"components/security_interstitials/content/common_name_mismatch_handler.h\"\n--- a/chrome/browser/ssl/ssl_error_controller_client.cc\n+++ b/chrome/browser/ssl/ssl_error_controller_client.cc\n@@ -21,7 +21,6 @@\n #include \"chrome/browser/ssl/stateful_ssl_host_state_delegate_factory.h\"\n #include \"chrome/common/pref_names.h\"\n #include \"chrome/common/url_constants.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/content_metrics_helper.h\"\n #include \"components/security_interstitials/content/settings_page_helper.h\"\n #include \"components/security_interstitials/content/stateful_ssl_host_state_delegate.h\"\n--- a/chrome/browser/ui/autofill/payments/save_card_bubble_controller_impl.cc\n+++ b/chrome/browser/ui/autofill/payments/save_card_bubble_controller_impl.cc\n@@ -48,7 +48,6 @@\n #include \"components/autofill/core/common/autofill_constants.h\"\n #include \"components/autofill/core/common/autofill_payments_features.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/sync/service/sync_service.h\"\n--- a/chrome/browser/ui/browser_command_controller.cc\n+++ b/chrome/browser/ui/browser_command_controller.cc\n@@ -100,7 +100,6 @@\n #include \"components/sessions/core/tab_restore_service.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/translate/core/browser/translate_manager.h\"\n #include \"content/public/browser/navigation_controller.h\"\n--- a/chrome/browser/ui/browser_command_controller_unittest.cc\n+++ b/chrome/browser/ui/browser_command_controller_unittest.cc\n@@ -35,7 +35,6 @@\n #include \"components/input/native_web_keyboard_event.h\"\n #include \"components/performance_manager/public/features.h\"\n #include \"components/policy/core/common/policy_pref_names.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"content/public/test/web_contents_tester.h\"\n #include \"extensions/buildflags/buildflags.h\"\n #include \"ui/events/keycodes/dom/dom_code.h\"\n--- a/chrome/browser/ui/chrome_pages.cc\n+++ b/chrome/browser/ui/chrome_pages.cc\n@@ -83,7 +83,6 @@\n #if !BUILDFLAG(IS_ANDROID)\n #include \"base/metrics/histogram_functions.h\"\n #include \"chrome/browser/signin/identity_manager_factory.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #endif\n \n--- a/chrome/browser/ui/extensions/extension_post_install_dialog_model.cc\n+++ b/chrome/browser/ui/extensions/extension_post_install_dialog_model.cc\n@@ -14,7 +14,6 @@\n #include \"chrome/grit/branded_strings.h\"\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"extensions/buildflags/buildflags.h\"\n #include \"extensions/common/api/extension_action/action_info.h\"\n #include \"extensions/common/command.h\"\n--- a/chrome/browser/ui/hats/trust_safety_sentiment_service.cc\n+++ b/chrome/browser/ui/hats/trust_safety_sentiment_service.cc\n@@ -30,8 +30,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/privacy_sandbox/privacy_sandbox_prefs.h\"\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/unified_consent/pref_names.h\"\n #include \"components/version_info/channel.h\"\n \n@@ -77,9 +75,6 @@ bool HasNonDefaultPrivacySetting(Profile\n   auto* prefs = profile->GetPrefs();\n \n   std::vector<std::string> prefs_to_check = {\n-      prefs::kSafeBrowsingEnabled,\n-      prefs::kSafeBrowsingEnhanced,\n-      prefs::kSafeBrowsingScoutReportingEnabled,\n       prefs::kEnableDoNotTrack,\n       password_manager::prefs::kPasswordLeakDetectionEnabled,\n       prefs::kCookieControlsMode,\n@@ -97,13 +92,9 @@ bool HasNonDefaultPrivacySetting(Profile\n   // Users consenting to sync automatically enable UKM collection\n   auto* ukm_pref = prefs->FindPreference(\n       unified_consent::prefs::kUrlKeyedAnonymizedDataCollectionEnabled);\n-  auto* sync_consent_pref =\n-      prefs->FindPreference(prefs::kGoogleServicesConsentedToSync);\n \n   bool has_non_default_ukm =\n-      ukm_pref->GetValue()->GetBool() !=\n-          sync_consent_pref->GetValue()->GetBool() &&\n-      (ukm_pref->IsUserControlled() || sync_consent_pref->IsUserControlled());\n+      ukm_pref->GetValue()->GetBool() != false && ukm_pref->IsUserControlled();\n \n   // Check the default value for each user facing content setting. Note that\n   // this will not include content setting exceptions set via permission\n@@ -176,8 +167,6 @@ std::map<std::string, bool> BuildProduct\n     PasswordProtectionUIType ui_type,\n     PasswordProtectionUIAction action) {\n   std::map<std::string, bool> product_specific_data;\n-  product_specific_data[\"Enhanced protection enabled\"] =\n-      safe_browsing::IsEnhancedProtectionEnabled(*profile->GetPrefs());\n   product_specific_data[\"Is page info UI\"] = false;\n   product_specific_data[\"Is modal dialog UI\"] = false;\n   product_specific_data[\"Is interstitial UI\"] = false;\n@@ -439,31 +428,12 @@ void TrustSafetySentimentService::Finish\n void TrustSafetySentimentService::InteractedWithSafeBrowsingInterstitial(\n     bool did_proceed,\n     safe_browsing::SBThreatType threat_type) {\n-  std::map<std::string, bool> product_specific_data;\n-  product_specific_data[\"User proceeded past interstitial\"] = did_proceed;\n-  product_specific_data[\"Enhanced protection enabled\"] =\n-      safe_browsing::IsEnhancedProtectionEnabled(*profile_->GetPrefs());\n-  product_specific_data[\"Threat is phishing\"] =\n-      threat_type == safe_browsing::SBThreatType::SB_THREAT_TYPE_URL_PHISHING ||\n-      threat_type ==\n-          safe_browsing::SBThreatType::SB_THREAT_TYPE_URL_CLIENT_SIDE_PHISHING;\n-  product_specific_data[\"Threat is malware\"] =\n-      threat_type == safe_browsing::SBThreatType::SB_THREAT_TYPE_URL_MALWARE;\n-  product_specific_data[\"Threat is unwanted software\"] =\n-      threat_type == safe_browsing::SBThreatType::SB_THREAT_TYPE_URL_UNWANTED;\n-  product_specific_data[\"Threat is billing\"] =\n-      threat_type == safe_browsing::SBThreatType::SB_THREAT_TYPE_BILLING;\n-  DCHECK(!IsOtherSBInterstitialCategory(threat_type));\n-  TriggerOccurred(FeatureArea::kSafeBrowsingInterstitial,\n-                  product_specific_data);\n }\n \n void TrustSafetySentimentService::InteractedWithDownloadWarningUI(\n     DownloadItemWarningData::WarningSurface surface,\n     DownloadItemWarningData::WarningAction action) {\n   std::map<std::string, bool> product_specific_data;\n-  product_specific_data[\"Enhanced protection enabled\"] =\n-      safe_browsing::IsEnhancedProtectionEnabled(*profile_->GetPrefs());\n   product_specific_data[\"Is mainpage UI\"] = false;\n   product_specific_data[\"Is downloads page UI\"] = false;\n   product_specific_data[\"Is download prompt UI\"] = false;\n--- a/chrome/browser/ui/safety_hub/menu_notification_service.cc\n+++ b/chrome/browser/ui/safety_hub/menu_notification_service.cc\n@@ -21,7 +21,6 @@\n #include \"chrome/browser/ui/safety_hub/safety_hub_service.h\"\n #include \"chrome/common/chrome_features.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n #if BUILDFLAG(IS_ANDROID)\n #include \"chrome/browser/ui/safety_hub/password_status_check_result_android.h\"\n@@ -144,14 +143,6 @@ SafetyHubMenuNotificationService::Safety\n       stored_notifications);\n #endif  // !BUILDFLAG(IS_ANDROID)\n \n-  // Listen for changes to the Safe Browsing pref to accommodate the trigger\n-  // logic.\n-  registrar_.Init(pref_service);\n-  registrar_.Add(\n-      prefs::kSafeBrowsingEnabled,\n-      base::BindRepeating(\n-          &SafetyHubMenuNotificationService::OnSafeBrowsingPrefUpdate,\n-          base::Unretained(this)));\n }\n \n void SafetyHubMenuNotificationService::UpdateResultGetterForTesting(\n--- a/chrome/browser/ui/safety_hub/safe_browsing_result.cc\n+++ b/chrome/browser/ui/safety_hub/safe_browsing_result.cc\n@@ -12,7 +12,6 @@\n #include \"chrome/browser/ui/safety_hub/safety_hub_result.h\"\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n \n #if !BUILDFLAG(IS_ANDROID)\n@@ -54,18 +53,6 @@ SafetyHubSafeBrowsingResult::GetResult(c\n // static\n SafeBrowsingState SafetyHubSafeBrowsingResult::GetState(\n     const PrefService* pref_service) {\n-  if (safe_browsing::IsEnhancedProtectionEnabled(*pref_service)) {\n-    return SafeBrowsingState::kEnabledEnhanced;\n-  }\n-  if (safe_browsing::IsSafeBrowsingEnabled(*pref_service)) {\n-    return SafeBrowsingState::kEnabledStandard;\n-  }\n-  if (safe_browsing::IsSafeBrowsingPolicyManaged(*pref_service)) {\n-    return SafeBrowsingState::kDisabledByAdmin;\n-  }\n-  if (safe_browsing::IsSafeBrowsingExtensionControlled(*pref_service)) {\n-    return SafeBrowsingState::kDisabledByExtension;\n-  }\n   return SafeBrowsingState::kDisabledByUser;\n }\n \n--- a/chrome/browser/ui/signin/dice_migration_service.cc\n+++ b/chrome/browser/ui/signin/dice_migration_service.cc\n@@ -27,7 +27,6 @@\n #include \"chrome/grit/theme_resources.h\"\n #include \"components/pref_registry/pref_registry_syncable.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_managed_status_finder.h\"\n #include \"components/signin/public/identity_manager/account_managed_status_finder_outcome.h\"\n@@ -87,16 +86,8 @@ void OnHelpCenterLinkClicked(Browser* br\n }\n \n bool IsUserEligibleForDiceMigration(Profile* profile) {\n-  signin::IdentityManager* identity_manager =\n-      IdentityManagerFactory::GetForProfile(profile);\n-  if (!identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSignin) ||\n-      identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSync)) {\n     // The user is not signed in or has sync enabled.\n     return false;\n-  }\n-\n-  // The user is implicitly signed in.\n-  return !profile->GetPrefs()->GetBoolean(prefs::kExplicitBrowserSignin);\n }\n \n void SetBannerImage(ui::DialogModel::Builder& builder,\n@@ -126,36 +117,7 @@ void SetBannerImage(ui::DialogModel::Bui\n }\n \n bool MaybeMigrateUser(Profile* profile) {\n-  if (!IsUserEligibleForDiceMigration(profile)) {\n     return false;\n-  }\n-  PrefService* prefs = profile->GetPrefs();\n-  CHECK(prefs);\n-\n-  // Backup the prefs.\n-  prefs->SetDict(\n-      kDiceMigrationBackup,\n-      base::DictValue()\n-          .SetByDottedPath(prefs::kExplicitBrowserSignin,\n-                           prefs->GetBoolean(prefs::kExplicitBrowserSignin))\n-          .SetByDottedPath(\n-              prefs::kPrefsThemesSearchEnginesAccountStorageEnabled,\n-              prefs->GetBoolean(\n-                  prefs::kPrefsThemesSearchEnginesAccountStorageEnabled)));\n-\n-  // TODO(crbug.com/399838468): Consider calling\n-  // `PrimaryAccountManager::SetExplicitBrowserSigninPrefs` upon explicit signin\n-  // pref change.\n-  prefs->SetBoolean(prefs::kPrefsThemesSearchEnginesAccountStorageEnabled,\n-                    true);\n-\n-  prefs->SetBoolean(prefs::kExplicitBrowserSignin, true);\n-\n-  // Mark the migration pref as successful.\n-  prefs->SetBoolean(kDiceMigrationMigrated, true);\n-  // Reset the restoration pref.\n-  prefs->SetBoolean(kDiceMigrationRestoredFromBackup, false);\n-  return true;\n }\n \n bool MaybeShowToast(Browser* browser) {\n@@ -309,23 +271,7 @@ void DiceMigrationService::RevertDiceMig\n   }\n \n   const bool restored_from_backup = [prefs]() -> bool {\n-    const base::Value* backup = prefs->GetUserPrefValue(kDiceMigrationBackup);\n-    if (!backup || !backup->is_dict()) {\n       return false;\n-    }\n-    const std::optional<bool> prefs_account_storage_enabled =\n-        backup->GetDict().FindBoolByDottedPath(\n-            prefs::kPrefsThemesSearchEnginesAccountStorageEnabled);\n-    const std::optional<bool> explicit_browser_signin =\n-        backup->GetDict().FindBoolByDottedPath(prefs::kExplicitBrowserSignin);\n-    if (!explicit_browser_signin.has_value() ||\n-        !prefs_account_storage_enabled.has_value()) {\n-      return false;\n-    }\n-    prefs->SetBoolean(prefs::kPrefsThemesSearchEnginesAccountStorageEnabled,\n-                      *prefs_account_storage_enabled);\n-    prefs->SetBoolean(prefs::kExplicitBrowserSignin, *explicit_browser_signin);\n-    return true;\n   }();\n \n   prefs->SetBoolean(kDiceMigrationRestoredFromBackup, restored_from_backup);\n--- a/chrome/browser/ui/signin/signin_view_controller.cc\n+++ b/chrome/browser/ui/signin/signin_view_controller.cc\n@@ -35,7 +35,6 @@\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n@@ -396,15 +395,6 @@ void SigninViewController::SignoutOrReau\n           &SigninViewController::SignoutOrReauthWithPromptWithUnsyncedDataTypes,\n           weak_ptr_factory_.GetWeakPtr(), reauth_access_point,\n           profile_signout_source, token_signout_source);\n-  // Fetch the unsynced datatypes, as this is required to decide whether the\n-  // confirmation prompt is needed.\n-  if (sync_service &&\n-      profile_->GetPrefs()->GetBoolean(prefs::kExplicitBrowserSignin)) {\n-    sync_service->GetTypesWithUnsyncedData(\n-        syncer::TypesRequiringUnsyncedDataCheckOnSignout(),\n-        std::move(signout_prompt_with_datatypes));\n-    return;\n-  }\n   // Dice users don't see the prompt, pass empty datatypes.\n   std::move(signout_prompt_with_datatypes)\n       .Run(absl::flat_hash_map<syncer::DataType, size_t>());\n@@ -791,9 +781,7 @@ void SigninViewController::SignoutOrReau\n                       });\n \n   // Do not show the dialog to users with implicit signin.\n-  if (!profile_->GetPrefs()->GetBoolean(prefs::kExplicitBrowserSignin)) {\n     sign_out_immediately = true;\n-  }\n \n   if (ShowAccountExtensionsOnSignout(GetProfile())) {\n     sign_out_immediately = false;\n--- a/chrome/browser/ui/startup/first_run_service.cc\n+++ b/chrome/browser/ui/startup/first_run_service.cc\n@@ -27,7 +27,6 @@\n #include \"components/prefs/pref_registry_simple.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n@@ -70,32 +69,7 @@ enum class PolicyEffect {\n };\n \n PolicyEffect ComputeDevicePolicyEffect(Profile& profile) {\n-  const PrefService* const local_state = g_browser_process->local_state();\n-  if (!local_state->GetBoolean(prefs::kPromotionsEnabled)) {\n-    // Corresponding policy: PromotionsEnabled=false\n-    return PolicyEffect::kDisabled;\n-  }\n-\n-  if (!SyncServiceFactory::IsSyncAllowed(&profile)) {\n-    // Corresponding policy: SyncDisabled=true\n-    return PolicyEffect::kDisabled;\n-  }\n-\n-  if (signin_util::IsForceSigninEnabled()) {\n-    // Corresponding policy: BrowserSignin=2\n-    // Debugging note: On Linux this policy is not supported and does not get\n-    // translated to the prefs (see crbug.com/956998), but we still respond to\n-    // `prefs::kForceBrowserSignin` being set (e.g. if manually edited).\n-    return PolicyEffect::kDisabled;\n-  }\n-\n-  if (!profile.GetPrefs()->GetBoolean(prefs::kSigninAllowed) ||\n-      !profile.GetPrefs()->GetBoolean(prefs::kSigninAllowedOnNextStartup)) {\n-    // Corresponding policy: BrowserSignin=0\n-    return PolicyEffect::kDisabled;\n-  }\n-\n-  return PolicyEffect::kNone;\n+  return PolicyEffect::kDisabled;\n }\n \n void SetFirstRunFinished(FirstRunService::FinishedReason reason) {\n--- a/chrome/browser/ui/toolbar/app_menu_model.cc\n+++ b/chrome/browser/ui/toolbar/app_menu_model.cc\n@@ -115,7 +115,6 @@\n #include \"components/profile_metrics/browser_profile_type.h\"\n #include \"components/saved_tab_groups/public/features.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/sync/base/features.h\"\n@@ -610,106 +609,7 @@ int ProfileSubMenuModel::GetAndIncrement\n }\n \n bool ProfileSubMenuModel::BuildSyncSection() {\n-#if !BUILDFLAG(IS_CHROMEOS)\n-  // TODO(crbug.com/440342282): Support personalized signin button.\n-  if (!CanOfferSignin(profile_, GaiaId(), /*email=*/std::string(),\n-                      /*allow_account_from_other_profile=*/true)\n-           .IsOk()) {\n     return false;\n-  }\n-#endif  // BUILDFLAG(IS_CHROMEOS)\n-\n-  if (!SyncServiceFactory::IsSyncAllowed(profile_)) {\n-    return false;\n-  }\n-\n-  signin::IdentityManager* identity_manager =\n-      IdentityManagerFactory::GetForProfile(profile_);\n-  AddTitle(GetSyncSectionTitle(profile_, identity_manager));\n-\n-  // First, check for sync errors. They may exist even if sync-the-feature is\n-  // disabled and only sync-the-transport is running.\n-  syncer::SyncService* service = SyncServiceFactory::GetForProfile(profile_);\n-  if (service) {\n-    const syncer::SyncService::UserActionableError error =\n-        service->GetUserActionableError();\n-    if (error != syncer::SyncService::UserActionableError::kNone) {\n-      int command_id = 0;\n-      const gfx::VectorIcon* icon = nullptr;\n-      int button_string_id =\n-          GetSyncErrorButtonStringId(error, /*support_title_case=*/true);\n-      switch (error) {\n-        case syncer::SyncService::UserActionableError::kNone:\n-          NOTREACHED();\n-        case syncer::SyncService::UserActionableError::kSignInNeedsUpdate:\n-          command_id = IDC_SHOW_SIGNIN_WHEN_PAUSED;\n-          if (identity_manager->HasPrimaryAccount(\n-                  signin::ConsentLevel::kSync)) {\n-            button_string_id = IDS_SYNC_RELOGIN_BUTTON_MAYBE_TITLE_CASE;\n-            icon = &vector_icons::kSyncOffChromeRefreshIcon;\n-          } else {\n-            // Merge this case with the others below once ConsentLevel::kSync is\n-            // gone.\n-            icon = &vector_icons::kAccountCircleOffChromeRefreshIcon;\n-          }\n-          break;\n-        case syncer::SyncService::UserActionableError::\n-            kNeedsTrustedVaultKeyForPasswords:\n-        case syncer::SyncService::UserActionableError::\n-            kTrustedVaultRecoverabilityDegradedForPasswords:\n-        case syncer::SyncService::UserActionableError::\n-            kTrustedVaultRecoverabilityDegradedForEverything:\n-        case syncer::SyncService::UserActionableError::\n-            kNeedsTrustedVaultKeyForEverything:\n-          command_id = IDC_SHOW_SIGNIN_WHEN_PAUSED;\n-          icon = &vector_icons::kAccountCircleOffChromeRefreshIcon;\n-          break;\n-        case syncer::SyncService::UserActionableError::kNeedsClientUpgrade:\n-          command_id = IDC_UPGRADE_DIALOG;\n-          icon = &vector_icons::kErrorOutlineIcon;\n-          break;\n-        case syncer::SyncService::UserActionableError::kNeedsPassphrase:\n-          command_id = IDC_SHOW_SYNC_PASSPHRASE_DIALOG;\n-          icon = &vector_icons::kErrorOutlineIcon;\n-          break;\n-        case syncer::SyncService::UserActionableError::\n-            kNeedsSettingsConfirmation:\n-        case syncer::SyncService::UserActionableError::kUnrecoverableError:\n-          // Only shown for \"Sync-the-feature\".\n-          command_id = IDC_SHOW_SYNC_SETTINGS;\n-          icon = &vector_icons::kErrorOutlineIcon;\n-          break;\n-        case syncer::SyncService::UserActionableError::kBookmarksLimitExceeded:\n-          // For this specific error (as opposed to all others), there is no\n-          // error UI in the menu.\n-          return true;\n-      }\n-      CHECK_NE(command_id, 0);\n-      AddItemWithStringIdAndVectorIcon(this, command_id, button_string_id,\n-                                       *icon);\n-      return true;\n-    }\n-  }\n-\n-  if (identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSync)) {\n-    AddItemWithStringIdAndVectorIcon(this, IDC_SHOW_SYNC_SETTINGS,\n-                                     IDS_PROFILE_ROW_SYNC_IS_ON,\n-                                     vector_icons::kSyncChromeRefreshIcon);\n-  } else {\n-    if (base::FeatureList::IsEnabled(\n-            syncer::kReplaceSyncPromosWithSignInPromos)) {\n-      if (!identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSignin)) {\n-        AddItemWithStringIdAndVectorIcon(this, IDC_SHOW_SIGNIN,\n-                                         IDS_PROFILE_MENU_SIGNIN_PROMO_BUTTON,\n-                                         vector_icons::kAccountCircleIcon);\n-      }\n-    } else {\n-      AddItemWithStringIdAndVectorIcon(this, IDC_TURN_ON_SYNC,\n-                                       IDS_PROFILE_ROW_TURN_ON_SYNC,\n-                                       vector_icons::kSyncOffChromeRefreshIcon);\n-    }\n-  }\n-  return true;\n }\n \n void ProfileSubMenuModel::BuildGuestProfileRow(Profile* profile) {\n--- a/chrome/browser/ui/views/download/bubble/download_toolbar_ui_controller.cc\n+++ b/chrome/browser/ui/views/download/bubble/download_toolbar_ui_controller.cc\n@@ -47,7 +47,6 @@\n #include \"components/feature_engagement/public/feature_constants.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/safe_browsing_policy_handler.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n #include \"ui/base/metadata/metadata_impl_macros.h\"\n--- a/chrome/browser/ui/views/page_info/page_info_bubble_view_sync_browsertest.cc\n+++ b/chrome/browser/ui/views/page_info/page_info_bubble_view_sync_browsertest.cc\n@@ -19,7 +19,6 @@\n #include \"components/safe_browsing/content/browser/password_protection/password_protection_test_util.h\"\n #include \"components/safe_browsing/core/browser/password_protection/metrics_util.h\"\n #include \"components/security_state/content/security_state_tab_helper.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/identity_test_utils.h\"\n--- a/chrome/browser/ui/views/profiles/avatar_toolbar_button.cc\n+++ b/chrome/browser/ui/views/profiles/avatar_toolbar_button.cc\n@@ -52,7 +52,6 @@\n #include \"components/feature_engagement/public/feature_constants.h\"\n #include \"components/feature_engagement/public/tracker.h\"\n #include \"components/password_manager/content/common/web_ui_constants.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/tribool.h\"\n@@ -546,49 +545,6 @@ void AvatarToolbarButton::MaybeShowSuper\n }\n \n void AvatarToolbarButton::MaybeShowSignInBenefitsIPH() {\n-  if (!base::FeatureList::IsEnabled(\n-          syncer::kReplaceSyncPromosWithSignInPromos) ||\n-      !base::FeatureList::IsEnabled(\n-          feature_engagement::kIPHSignInBenefitsFeature)) {\n-    return;\n-  }\n-\n-  // Prevent showing the IPH bubble right when the browser was created. Wait a\n-  // small delay for a smoother animation.\n-  base::TimeDelta time_since_creation = base::TimeTicks::Now() - creation_time_;\n-  if (time_since_creation < g_iph_min_delay_after_creation) {\n-    base::SingleThreadTaskRunner::GetCurrentDefault()->PostDelayedTask(\n-        FROM_HERE,\n-        base::BindOnce(&AvatarToolbarButton::MaybeShowSignInBenefitsIPH,\n-                       weak_ptr_factory_.GetWeakPtr()),\n-        g_iph_min_delay_after_creation - time_since_creation);\n-    return;\n-  }\n-\n-  Profile* profile = browser_->profile();\n-  CHECK(profile);\n-\n-  // The IPH only concerns signed-in, non-syncing profiles.\n-  signin::IdentityManager* const identity_manager =\n-      IdentityManagerFactory::GetForProfile(profile);\n-  if (!identity_manager ||\n-      !identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSignin) ||\n-      identity_manager->HasPrimaryAccount(signin::ConsentLevel::kSync)) {\n-    return;\n-  }\n-\n-  PrefService* prefs = profile->GetPrefs();\n-  CHECK(prefs);\n-\n-  // Users who sign in after the migration and users migrated from DICe will be\n-  // notified with other promos communicating sign-in benefits.\n-  if (prefs->GetBoolean(prefs::kPrimaryAccountSetAfterSigninMigration) ||\n-      prefs->GetBoolean(kDiceMigrationMigrated)) {\n-    return;\n-  }\n-\n-  BrowserUserEducationInterface::From(browser_)->MaybeShowStartupFeaturePromo(\n-      feature_engagement::kIPHSignInBenefitsFeature);\n }\n #endif  // BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)\n \n--- a/chrome/browser/ui/views/profiles/avatar_toolbar_button_state_manager.cc\n+++ b/chrome/browser/ui/views/profiles/avatar_toolbar_button_state_manager.cc\n@@ -63,7 +63,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n--- a/chrome/browser/ui/views/profiles/profile_menu_view.cc\n+++ b/chrome/browser/ui/views/profiles/profile_menu_view.cc\n@@ -85,7 +85,6 @@\n #include \"components/signin/core/browser/signin_error_controller.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n@@ -1017,9 +1016,7 @@ void ProfileMenuView::MaybeBuildChromeAc\n   // Show the settings button when signed in to Chrome or to the web, or if\n   // signin is disallowed.\n   const bool should_show_settings_button =\n-      !identity_manager->GetExtendedAccountInfoForAccountsWithRefreshToken()\n-           .empty() ||\n-      !profile().GetPrefs()->GetBoolean(prefs::kSigninAllowed);\n+      false;\n   if (!should_show_settings_button) {\n     return;\n   }\n@@ -1041,25 +1038,6 @@ void ProfileMenuView::MaybeBuildChromeAc\n }\n \n void ProfileMenuView::MaybeBuildGoogleServicesSettingsButton() {\n-  CHECK(!profile().IsGuestSession());\n-\n-  signin::IdentityManager* identity_manager =\n-      IdentityManagerFactory::GetForProfile(&profile());\n-\n-  if (!identity_manager) {\n-    return;\n-  }\n-\n-  // Show the services settings button  if signin is disallowed.\n-  if (profile().GetPrefs()->GetBoolean(prefs::kSigninAllowed)) {\n-    return;\n-  }\n-  AddFeatureButton(\n-      l10n_util::GetStringUTF16(IDS_PROFILE_MENU_OPEN_ACCOUNT_SETTINGS),\n-      base::BindRepeating(\n-          &ProfileMenuView::OnGoogleServicesSettingsButtonClicked,\n-          base::Unretained(this)),\n-      vector_icons::kSettingsChromeRefreshIcon);\n }\n \n void ProfileMenuView::MaybeBuildManageGoogleAccountButton() {\n--- a/chrome/browser/ui/views/profiles/profile_menu_view_browsertest.cc\n+++ b/chrome/browser/ui/views/profiles/profile_menu_view_browsertest.cc\n@@ -107,7 +107,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/identity_test_utils.h\"\n--- a/chrome/browser/ui/views/safe_browsing/password_reuse_modal_warning_dialog.cc\n+++ b/chrome/browser/ui/views/safe_browsing/password_reuse_modal_warning_dialog.cc\n@@ -127,7 +127,6 @@ PasswordReuseModalWarningDialog::Passwor\n     OnWarningDone done_callback)\n     : content::WebContentsObserver(web_contents),\n       done_callback_(std::move(done_callback)),\n-      service_(service),\n       url_(web_contents->GetLastCommittedURL()),\n       password_type_(password_type) {\n   bool show_check_passwords = false;\n@@ -171,31 +170,13 @@ PasswordReuseModalWarningDialog::Passwor\n   SetCancelCallback(make_done_callback(WarningAction::IGNORE_WARNING));\n   SetCloseCallback(make_done_callback(WarningAction::CLOSE));\n \n-  // |service| maybe NULL in tests.\n-  if (service_) {\n-    service_->AddObserver(this);\n-  }\n-\n-  if (password_type.account_type() ==\n-      ReusedPasswordAccountType::SAVED_PASSWORD) {\n-    const std::u16string message_body =\n-        service_->GetWarningDetailText(password_type);\n-\n-    CreateSavedPasswordReuseModalWarningDialog(message_body);\n-  } else {\n-    views::Label* message_body_label = CreateMessageBodyLabel(\n-        service_\n-            ? service_->GetWarningDetailText(password_type)\n-            : l10n_util::GetStringUTF16(IDS_PAGE_INFO_CHANGE_PASSWORD_DETAILS));\n-    CreateGaiaPasswordReuseModalWarningDialog(message_body_label);\n-  }\n+  views::Label* message_body_label = CreateMessageBodyLabel(\n+      l10n_util::GetStringUTF16(IDS_PAGE_INFO_CHANGE_PASSWORD_DETAILS));\n+  CreateGaiaPasswordReuseModalWarningDialog(message_body_label);\n   modal_construction_start_time_ = base::TimeTicks::Now();\n }\n \n PasswordReuseModalWarningDialog::~PasswordReuseModalWarningDialog() {\n-  if (service_) {\n-    service_->RemoveObserver(this);\n-  }\n   LogModalWarningDialogLifetime(modal_construction_start_time_);\n }\n \n--- a/chrome/browser/ui/views/safe_browsing/password_reuse_modal_warning_dialog.h\n+++ b/chrome/browser/ui/views/safe_browsing/password_reuse_modal_warning_dialog.h\n@@ -64,7 +64,6 @@ class PasswordReuseModalWarningDialog\n \n  private:\n   OnWarningDone done_callback_;\n-  raw_ptr<ChromePasswordProtectionService> service_;\n   const GURL url_;\n   const ReusedPasswordAccountType password_type_;\n \n--- a/chrome/browser/ui/views/toolbar/app_menu.cc\n+++ b/chrome/browser/ui/views/toolbar/app_menu.cc\n@@ -64,7 +64,6 @@\n #include \"chrome/grit/theme_resources.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/saved_tab_groups/public/features.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/zoom/page_zoom.h\"\n #include \"components/zoom/zoom_controller.h\"\n@@ -389,68 +388,6 @@ void AddSignedInChipToProfileMenuItem(\n     const int horizontal_padding,\n     std::vector<base::CallbackListSubscription>&\n         profile_menu_subscription_list) {\n-  if (!profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed) ||\n-      profile->IsIncognitoProfile()) {\n-    return;\n-  }\n-  constexpr int profile_chip_corner_radii = 100;\n-  raw_ptr<views::Label> profile_chip_label;\n-  const MenuConfig& config = MenuConfig::instance();\n-\n-  // We need to have the label of the profile chip within a\n-  // BoxLayoutView and inside border insets because MenuItemView will\n-  // layout the child items to the full height of the menu item in\n-  // MenuItemView::Layout().\n-  auto profile_chip =\n-      views::Builder<views::BoxLayoutView>()\n-          .SetInsideBorderInsets(\n-              gfx::Insets::VH(config.item_vertical_margin, 0))\n-          .AddChildren(\n-              views::Builder<views::Label>()\n-                  .SetText(GetSigninStatusChipString(profile))\n-                  .CopyAddressTo(&profile_chip_label)\n-                  .SetBackground(views::CreateRoundedRectBackground(\n-                      item->IsSelected()\n-                          ? ui::kColorAppMenuProfileRowChipHovered\n-                          : ui::kColorAppMenuProfileRowChipBackground,\n-                      profile_chip_corner_radii))\n-                  // Add additional horizontal padding. Vertical\n-                  // padding depends on menu margins to get alignment\n-                  // with other items in the menu.\n-                  .SetBorder(views::CreateEmptyBorder(gfx::Insets::VH(\n-                      0, views::LayoutProvider::Get()\n-                             ->GetInsetsMetric(views::INSETS_LABEL_BUTTON)\n-                             .left()))))\n-          .Build();\n-\n-  // MenuItemView has specific layout logic for child views which does not work\n-  // very well with more custom menu items. We use this view to add the correct\n-  // spacing between the profile chip and the edge of the menu.\n-  auto profile_chip_edge_spacing_view =\n-      views::Builder<views::View>()\n-          .SetPreferredSize(gfx::Size(horizontal_padding, 0))\n-          .Build();\n-  profile_menu_subscription_list.push_back(\n-      item->AddSelectedChangedCallback(base::BindRepeating(\n-          [](MenuItemView* menu_item_view, View* child_view,\n-             int corner_radius) {\n-            child_view->SetBackground(views::CreateRoundedRectBackground(\n-                menu_item_view->IsSelected()\n-                    ? ui::kColorAppMenuProfileRowChipHovered\n-                    : ui::kColorAppMenuProfileRowChipBackground,\n-                corner_radius));\n-          },\n-          item, profile_chip_label, profile_chip_corner_radii)));\n-  item->AddChildView(std::move(profile_chip));\n-  item->AddChildView(std::move(profile_chip_edge_spacing_view));\n-  item->SetHighlightWhenSelectedWithChildViews(true);\n-  // MenuItemView only delegates accessible names when its title is empty with a\n-  // single container view. The Profile MenuItemView has a title and multiple\n-  // views. As a result, the accessible name must be manually computed to\n-  // account for the profile chip.\n-  item->GetViewAccessibility().SetName(\n-      views::MenuItemView::GetAccessibleNameForMenuItem(\n-          item->title(), GetSigninStatusChipString(profile), std::nullopt));\n }\n \n // AppMenuView is a view that can contain label buttons.\n--- a/chrome/browser/ui/views/user_education/browser_ntp_promos.cc\n+++ b/chrome/browser/ui/views/user_education/browser_ntp_promos.cc\n@@ -25,7 +25,6 @@\n #include \"chrome/grit/branded_strings.h\"\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/user_education/common/ntp_promo/ntp_promo_registry.h\"\n #include \"components/user_education/common/ntp_promo/ntp_promo_specification.h\"\n@@ -50,34 +49,7 @@ Profile* GetProfile(ContextPtr context)\n \n NtpPromoSpecification::Eligibility CheckSignInPromoEligibility(\n     ContextPtr context) {\n-  // TODO(webium): add user education context for WebUI browser.\n-  if (!context) {\n     return NtpPromoSpecification::Eligibility::kIneligible;\n-  }\n-\n-  auto* profile = GetProfile(context);\n-  if (!profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed)) {\n-    return NtpPromoSpecification::Eligibility::kIneligible;\n-  }\n-\n-  const auto signed_in_state = signin_util::GetSignedInState(\n-      IdentityManagerFactory::GetForProfile(profile));\n-  switch (signed_in_state) {\n-    case signin_util::SignedInState::kSignedOut:\n-      // User is fully signed out.\n-      return NtpPromoSpecification::Eligibility::kEligible;\n-    case signin_util::SignedInState::kWebOnlySignedIn:\n-      // When signed in on the web, one-click sign in options exist elsewhere\n-      // in Chrome. This promo currently only offers the full-sign-in flow, so\n-      // don't show it to users already signed in on the Web.\n-      return NtpPromoSpecification::Eligibility::kIneligible;\n-    case signin_util::SignedInState::kSignedIn:\n-    case signin_util::SignedInState::kSyncing:\n-    case signin_util::SignedInState::kSignInPending:\n-    case signin_util::SignedInState::kSyncPaused:\n-      // All other cases are considered completed.\n-      return NtpPromoSpecification::Eligibility::kCompleted;\n-  }\n }\n \n void SignInPromoShown() {\n--- a/chrome/browser/ui/webui/browser_command/browser_command_handler.cc\n+++ b/chrome/browser/ui/webui/browser_command/browser_command_handler.cc\n@@ -38,7 +38,6 @@\n #include \"components/performance_manager/public/features.h\"\n #include \"components/safe_browsing/content/browser/web_ui/safe_browsing_ui.h\"\n #include \"components/safe_browsing/core/common/safe_browsing_policy_handler.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_referral_methods.h\"\n #include \"components/saved_tab_groups/public/features.h\"\n #include \"components/tabs/public/tab_interface.h\"\n@@ -103,13 +102,6 @@ void BrowserCommandHandler::CanExecuteCo\n     case Command::kOpenSafetyCheck:\n       can_execute = !enterprise_util::IsBrowserManaged(profile_);\n       break;\n-    case Command::kOpenSafeBrowsingEnhancedProtectionSettings: {\n-      bool managed = safe_browsing::SafeBrowsingPolicyHandler::\n-          IsSafeBrowsingProtectionLevelSetByPolicy(profile_->GetPrefs());\n-      bool already_enabled =\n-          safe_browsing::IsEnhancedProtectionEnabled(*(profile_->GetPrefs()));\n-      can_execute = !managed && !already_enabled;\n-    } break;\n     case Command::kOpenFeedbackForm:\n       can_execute = true;\n       break;\n--- a/chrome/browser/ui/webui/cr_components/history/history_util.cc\n+++ b/chrome/browser/ui/webui/cr_components/history/history_util.cc\n@@ -21,7 +21,6 @@\n #include \"components/history/core/common/pref_names.h\"\n #include \"components/history_clusters/core/history_clusters_prefs.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"content/public/browser/web_ui_data_source.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n@@ -84,7 +83,7 @@ content::WebUIDataSource* HistoryUtil::P\n \n   source->AddBoolean(\"isGuestSession\", profile->IsGuestSession());\n   source->AddBoolean(\"isSignInAllowed\",\n-                     prefs->GetBoolean(prefs::kSigninAllowed));\n+                     false);\n \n   source->AddBoolean(\"enableBrowsingHistoryActorIntegrationM1\",\n                      history::IsBrowsingHistoryActorIntegrationM1Enabled());\n--- a/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc\n+++ b/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc\n@@ -53,7 +53,6 @@\n #include \"components/history/core/common/pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_referral_methods.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/download_item_utils.h\"\n--- a/chrome/browser/ui/webui/history/browsing_history_handler.cc\n+++ b/chrome/browser/ui/webui/history/browsing_history_handler.cc\n@@ -60,7 +60,6 @@\n #include \"components/keyed_service/core/service_access_type.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/query_parser/snippet.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n--- a/chrome/browser/ui/webui/history/history_ui.cc\n+++ b/chrome/browser/ui/webui/history/history_ui.cc\n@@ -57,7 +57,6 @@\n #include \"components/page_image_service/image_service.h\"\n #include \"components/page_image_service/image_service_handler.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/strings/grit/components_strings.h\"\n--- a/chrome/browser/ui/webui/management/management_ui_handler.cc\n+++ b/chrome/browser/ui/webui/management/management_ui_handler.cc\n@@ -56,7 +56,6 @@\n #include \"components/policy/core/common/management/management_service.h\"\n #include \"components/policy/core/common/policy_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/supervised_user/core/common/pref_names.h\"\n--- a/chrome/browser/ui/webui/policy/policy_ui_handler.cc\n+++ b/chrome/browser/ui/webui/policy/policy_ui_handler.cc\n@@ -81,7 +81,6 @@\n #include \"components/policy/proto/device_management_backend.pb.h\"\n #include \"components/prefs/pref_change_registrar.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n@@ -372,15 +371,6 @@ void PolicyUIHandler::HandleSetLocalTest\n \n   CHECK(local_test_provider);\n \n-#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)\n-  const std::string& profile_separation_policy_response = args[2].GetString();\n-  Profile::FromWebUI(web_ui())->GetPrefs()->ClearPref(\n-      prefs::kUserCloudSigninPolicyResponseFromPolicyTestPage);\n-  Profile::FromWebUI(web_ui())->GetPrefs()->SetDefaultPrefValue(\n-      prefs::kUserCloudSigninPolicyResponseFromPolicyTestPage,\n-      base::Value(profile_separation_policy_response));\n-#endif\n-\n   Profile::FromWebUI(web_ui())\n       ->GetProfilePolicyConnector()\n       ->UseLocalTestPolicyProvider();\n@@ -394,13 +384,6 @@ void PolicyUIHandler::HandleRevertLocalT\n   if (!PolicyUI::ShouldLoadTestPage(Profile::FromWebUI(web_ui()))) {\n     return;\n   }\n-#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_CHROMEOS)\n-  Profile::FromWebUI(web_ui())->GetPrefs()->ClearPref(\n-      prefs::kUserCloudSigninPolicyResponseFromPolicyTestPage);\n-  Profile::FromWebUI(web_ui())->GetPrefs()->SetDefaultPrefValue(\n-      prefs::kUserCloudSigninPolicyResponseFromPolicyTestPage,\n-      base::Value(std::string()));\n-#endif\n   Profile::FromWebUI(web_ui())\n       ->GetProfilePolicyConnector()\n       ->RevertUseLocalTestPolicyProvider();\n--- a/chrome/browser/ui/webui/reset_password/reset_password_ui.cc\n+++ b/chrome/browser/ui/webui/reset_password/reset_password_ui.cc\n@@ -25,7 +25,6 @@\n #include \"components/safe_browsing/core/browser/password_protection/metrics_util.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/url_formatter/url_formatter.h\"\n #include \"components/user_prefs/user_prefs.h\"\n--- a/chrome/browser/ui/webui/settings/people_handler.cc\n+++ b/chrome/browser/ui/webui/settings/people_handler.cc\n@@ -58,7 +58,6 @@\n #include \"components/signin/core/browser/signin_error_controller.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n@@ -442,10 +441,6 @@ void PeopleHandler::OnJavascriptAllowed(\n   PrefService* prefs = profile_->GetPrefs();\n   profile_pref_registrar_ = std::make_unique<PrefChangeRegistrar>();\n   profile_pref_registrar_->Init(prefs);\n-  profile_pref_registrar_->Add(\n-      prefs::kSigninAllowed,\n-      base::BindRepeating(&PeopleHandler::UpdateSyncStatus,\n-                          base::Unretained(this)));\n #if BUILDFLAG(ENABLE_DICE_SUPPORT)\n   SigninPrefs::ObserveSigninPrefsChanges(\n       *profile_pref_registrar_,\n--- a/chrome/browser/ui/webui/settings/safety_hub_handler.cc\n+++ b/chrome/browser/ui/webui/settings/safety_hub_handler.cc\n@@ -53,7 +53,6 @@\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/permissions/constants.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/site_engagement/content/site_engagement_service.h\"\n--- a/chrome/browser/ui/webui/settings/settings_localized_strings_provider.cc\n+++ b/chrome/browser/ui/webui/settings/settings_localized_strings_provider.cc\n@@ -86,7 +86,6 @@\n #include \"components/regional_capabilities/regional_capabilities_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/hashprefix_realtime/hash_realtime_utils.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/saved_tab_groups/public/features.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/strings/grit/components_branded_strings.h\"\n@@ -3866,11 +3865,6 @@ void AddSiteSettingsStrings(content::Web\n   html_source->AddLocalizedStrings(kSensorsLocalizedStrings);\n \n   html_source->AddBoolean(\n-      \"enableSafeBrowsingSubresourceFilter\",\n-      base::FeatureList::IsEnabled(\n-          subresource_filter::kSafeBrowsingSubresourceFilter));\n-\n-  html_source->AddBoolean(\n       \"enableBlockAutoplayContentSetting\",\n       base::FeatureList::IsEnabled(media::kAutoplayDisableSettings));\n \n--- a/chrome/browser/ui/webui/settings/settings_ui.cc\n+++ b/chrome/browser/ui/webui/settings/settings_ui.cc\n@@ -119,7 +119,6 @@\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/hashprefix_realtime/hash_realtime_utils.h\"\n #include \"components/search_engines/template_url_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/sync/base/features.h\"\n #include \"content/public/browser/isolated_web_apps_policy.h\"\n@@ -295,9 +294,7 @@ SettingsUI::SettingsUI(content::WebUI* w\n   AddSettingsPageUIHandler(std::make_unique<MacSystemSettingsHandler>());\n #endif\n \n-  html_source->AddBoolean(\"signinAllowed\", !profile->IsGuestSession() &&\n-                                               profile->GetPrefs()->GetBoolean(\n-                                                   prefs::kSigninAllowed));\n+  html_source->AddBoolean(\"signinAllowed\", false);\n   ProfileAttributesEntry* entry =\n       g_browser_process->profile_manager()\n           ->GetProfileAttributesStorage()\n--- a/chrome/browser/ui/webui/signin/inline_login_handler.cc\n+++ b/chrome/browser/ui/webui/signin/inline_login_handler.cc\n@@ -26,7 +26,6 @@\n #include \"chrome/common/pref_names.h\"\n #include \"components/metrics/metrics_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"content/public/browser/storage_partition.h\"\n #include \"content/public/browser/web_contents.h\"\n #include \"content/public/browser/web_ui.h\"\n@@ -137,8 +136,6 @@ void InlineLoginHandler::ContinueHandleI\n   Profile* profile = Profile::FromWebUI(web_ui());\n   std::string default_email;\n   if (reason == signin_metrics::Reason::kSigninPrimaryAccount) {\n-    default_email = profile->GetPrefs()->GetString(\n-        prefs::kGoogleServicesLastSyncingUsername);\n   } else {\n     if (!net::GetValueForKeyInQuery(current_url, \"email\", &default_email)) {\n       default_email.clear();\n--- a/chrome/browser/ui/webui/signin/managed_user_profile_notice_handler.cc\n+++ b/chrome/browser/ui/webui/signin/managed_user_profile_notice_handler.cc\n@@ -34,7 +34,6 @@\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/policy/core/browser/signin/profile_separation_policies.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/signin_constants.h\"\n #include \"components/strings/grit/components_strings.h\"\n@@ -478,23 +477,6 @@ base::DictValue ManagedUserProfileNotice\n       dict.Set(\"email\", base::UTF16ToUTF8(email_));\n       dict.Set(\"accountName\", account_info.GetFullName().value_or(\"\"));\n \n-#if !BUILDFLAG(IS_CHROMEOS)\n-      // We apply the checkLinkDataCheckboxByDefault to true value only if the\n-      // link data checkbox is visible and the policy\n-      // ProfileSeparationDataMigrationSettings is set to its OPTOUT value (2)\n-      // or the legacy policy EnterpriseProfileCreationKeepBrowsingData is set\n-      // to True.\n-      bool profile_separation_data_migration_settings_optout =\n-          Profile::FromWebUI(web_ui())->GetPrefs()->GetInteger(\n-              prefs::kProfileSeparationDataMigrationSettings) == 2;\n-      bool check_link_Data_checkbox_by_default_from_legacy_policy =\n-          g_browser_process->local_state()->GetBoolean(\n-              prefs::kEnterpriseProfileCreationKeepBrowsingData);\n-      dict.Set(\"checkLinkDataCheckboxByDefault\",\n-               show_link_data_option_ &&\n-                   (profile_separation_data_migration_settings_optout ||\n-                    check_link_Data_checkbox_by_default_from_legacy_policy));\n-#endif\n       break;\n   }\n \n--- a/chrome/browser/ui/webui/signin/managed_user_profile_notice_ui.cc\n+++ b/chrome/browser/ui/webui/signin/managed_user_profile_notice_ui.cc\n@@ -32,7 +32,6 @@\n #include \"chrome/grit/signin_resources.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/tribool.h\"\n@@ -353,8 +352,7 @@ void ManagedUserProfileNoticeUI::Initial\n   // Change the text so that the \"(Recommended)\" label is not shown when the\n   // admin has set merging data as the default option.\n   bool profile_separation_data_migration_settings_optout =\n-      profile->GetPrefs()->GetInteger(\n-          prefs::kProfileSeparationDataMigrationSettings) == 2;\n+      false;\n   bool check_link_data_checkbox_by_default_from_legacy_policy =\n       g_browser_process->local_state()->GetBoolean(\n           prefs::kEnterpriseProfileCreationKeepBrowsingData);\n--- a/chrome/browser/ui/webui/signin/signin_error_ui.cc\n+++ b/chrome/browser/ui/webui/signin/signin_error_ui.cc\n@@ -26,7 +26,6 @@\n #include \"chrome/grit/generated_resources.h\"\n #include \"chrome/grit/signin_resources.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"content/public/browser/web_ui.h\"\n #include \"content/public/browser/web_ui_data_source.h\"\n--- a/chrome/browser/ui/webui/signin/signin_utils_desktop.cc\n+++ b/chrome/browser/ui/webui/signin/signin_utils_desktop.cc\n@@ -18,7 +18,6 @@\n #include \"chrome/browser/ui/webui/signin/signin_ui_error.h\"\n #include \"chrome/common/chrome_switches.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/identity_utils.h\"\n #include \"components/sync/base/features.h\"\n@@ -29,111 +28,10 @@ SigninUIError CanOfferSignin(Profile* pr\n                              const GaiaId& gaia_id,\n                              const std::string& email,\n                              bool allow_account_from_other_profile) {\n-  if (!profile) {\n-    return SigninUIError::NoProfile(email);\n-  }\n-\n-  if (!profile->GetPrefs()->GetBoolean(prefs::kSigninAllowed)) {\n     return SigninUIError::SigninDisallowed(email);\n-  }\n-\n-  if (!ChromeSigninClient::ProfileAllowsSigninCookies(profile)) {\n-    return SigninUIError::SigninCookiesDisallowed(email);\n-  }\n-\n-  if (!email.empty()) {\n-    auto* identity_manager = IdentityManagerFactory::GetForProfile(profile);\n-    if (!identity_manager) {\n-      return SigninUIError::NoIdentityManager(email);\n-    }\n-\n-    // Make sure this username is not prohibited by policy.\n-    if (!signin::IsUsernameAllowedByPatternFromPrefs(\n-            g_browser_process->local_state(), email)) {\n-      return SigninUIError::UsernameNotAllowedByPatternFromPrefs(email);\n-    }\n-\n-    // If the identity manager already has a primary account, then this is a\n-    // re-auth scenario. Make sure the email just signed in corresponds to\n-    // the one sign in manager expects.\n-    std::string current_email =\n-        identity_manager\n-            ->GetPrimaryAccountInfo(\n-                base::FeatureList::IsEnabled(\n-                    syncer::kReplaceSyncPromosWithSignInPromos)\n-                    ? signin::ConsentLevel::kSignin\n-                    : signin::ConsentLevel::kSync)\n-            .email;\n-    // TODO(crbug.com/440302112): Consider checking for the gaia_id equality\n-    // instead of the email for reauth flow detection.\n-    const bool same_email = gaia::AreEmailsSame(current_email, email);\n-    if (!current_email.empty() && !same_email) {\n-      return SigninUIError::WrongReauthAccount(email, current_email);\n-    }\n-\n-    allow_account_from_other_profile =\n-        allow_account_from_other_profile ||\n-        base::CommandLine::ForCurrentProcess()->HasSwitch(\n-            switches::kBypassAccountAlreadyUsedByAnotherProfileCheck);\n-    // If some profile, not just the current one, is already connected to this\n-    // account, don't offer sign in.\n-    if (g_browser_process && !same_email && !allow_account_from_other_profile) {\n-      ProfileManager* profile_manager = g_browser_process->profile_manager();\n-      if (profile_manager) {\n-        std::vector<ProfileAttributesEntry*> entries =\n-            profile_manager->GetProfileAttributesStorage()\n-                .GetAllProfilesAttributes();\n-\n-        for (const ProfileAttributesEntry* entry : entries) {\n-          // Ignore omitted profiles (these are notably profiles being created\n-          // using the signed-in profile creation flow). This is motivated by\n-          // these profile hanging around until the next restart which could\n-          // block subsequent profile creation, resulting in\n-          // SigninUIError::AccountAlreadyUsedByAnotherProfile.\n-          // TODO(crbug.com/40176394): This opens the possibility for getting\n-          // into a state with 2 profiles syncing to the same account:\n-          //  - start creating a new profile and sign-in,\n-          //  - enabled sync for the same account in another (existing) profile,\n-          //  - finish the profile creation by consenting to sync.\n-          // Properly addressing this would require deleting profiles from\n-          // cancelled flow right away, returning an error here for omitted\n-          // profiles, and fix the code that switches to the other syncing\n-          // profile so that the profile creation flow window gets activated for\n-          // profiles being created (instead of opening a new window).\n-          if (entry->IsOmitted() || entry->GetPath() == profile->GetPath()) {\n-            continue;\n-          }\n-          // If the feature is disabled, the below check on GaiaId equality is\n-          // equivalent to checking if the user is signed in.\n-          if (!base::FeatureList::IsEnabled(\n-                  syncer::kReplaceSyncPromosWithSignInPromos)) {\n-            if (!entry->IsAuthenticated() && !entry->CanBeManaged()) {\n-              continue;\n-            }\n-          }\n-          if (gaia_id == entry->GetGAIAId()) {\n-            return SigninUIError::AccountAlreadyUsedByAnotherProfile(\n-                email, entry->GetPath());\n-          }\n-        }\n-      }\n-    }\n-\n-    // With force sign in enabled, cross account sign in is not allowed.\n-    if (signin_util::IsForceSigninEnabled() &&\n-        IsCrossAccountError(profile, gaia_id)) {\n-      std::string last_email = profile->GetPrefs()->GetString(\n-          prefs::kGoogleServicesLastSyncingUsername);\n-      return SigninUIError::ProfileWasUsedByAnotherAccount(email, last_email);\n-    }\n-  }\n-\n-  return SigninUIError::Ok();\n }\n \n bool IsCrossAccountError(Profile* profile, const GaiaId& gaia_id) {\n   DCHECK(!gaia_id.empty());\n-  const GaiaId last_gaia_id(\n-      profile->GetPrefs()->GetString(prefs::kGoogleServicesLastSyncingGaiaId));\n-  return !last_gaia_id.empty() && gaia_id != last_gaia_id;\n+  return false;\n }\n--- a/chrome/browser/ui/webui/signin/signout_confirmation/signout_confirmation_handler.cc\n+++ b/chrome/browser/ui/webui/signin/signout_confirmation/signout_confirmation_handler.cc\n@@ -15,7 +15,6 @@\n #include \"chrome/browser/ui/signin/signin_view_controller.h\"\n #include \"chrome/grit/branded_strings.h\"\n #include \"chrome/grit/generated_resources.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/sync/base/features.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n--- a/chrome/browser/ui/webui/signin/turn_sync_on_helper.cc\n+++ b/chrome/browser/ui/webui/signin/turn_sync_on_helper.cc\n@@ -47,7 +47,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/core/browser/account_reconcilor.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_managed_status_finder.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n@@ -252,8 +251,7 @@ void TurnSyncOnHelper::TurnSyncOnInterna\n   // last authenticated account of the current profile, then Chrome will show a\n   // confirmation dialog before starting sync.\n   // TODO(skym): Warn for high risk upgrade scenario (https://crbug.com/572754).\n-  std::string last_email = profile_->GetPrefs()->GetString(\n-      prefs::kGoogleServicesLastSyncingUsername);\n+  std::string last_email;\n   delegate_->ShowMergeSyncDataConfirmation(\n       last_email, account_info_.email,\n       base::BindOnce(&TurnSyncOnHelper::OnMergeAccountConfirmation,\n--- a/chrome/browser/ui/webui/signin/turn_sync_on_helper_delegate_impl.cc\n+++ b/chrome/browser/ui/webui/signin/turn_sync_on_helper_delegate_impl.cc\n@@ -40,7 +40,6 @@\n #include \"components/policy/core/browser/signin/user_cloud_signin_restriction_policy_fetcher.h\"\n #include \"components/policy/core/common/policy_utils.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"google_apis/gaia/gaia_auth_util.h\"\n #include \"third_party/skia/include/core/SkColor.h\"\n \n@@ -252,26 +251,6 @@ void TurnSyncOnHelperDelegateImpl::OnPro\n     return;\n   }\n \n-  if (prompt_for_new_profile) {\n-    account_level_signin_restriction_policy_fetcher_\n-        ->GetManagedAccountsSigninRestriction(\n-            IdentityManagerFactory::GetForProfile(browser_->profile()),\n-            account_info.account_id,\n-            base::BindOnce(&TurnSyncOnHelperDelegateImpl::\n-                               OnProfileSigninRestrictionsFetched,\n-                           weak_ptr_factory_.GetWeakPtr(), account_info,\n-                           std::move(callback)),\n-            policy::utils::IsPolicyTestingEnabled(\n-                browser_->profile()->GetPrefs(), chrome::GetChannel())\n-                ? browser_->profile()\n-                      ->GetPrefs()\n-                      ->GetDefaultPrefValue(\n-                          prefs::\n-                              kUserCloudSigninPolicyResponseFromPolicyTestPage)\n-                      ->GetString()\n-                : std::string());\n-    return;\n-  }\n \n   browser_->GetFeatures()\n       .signin_view_controller()\n--- a/chrome/browser/ui/webui/signin/turn_sync_on_helper_unittest.cc\n+++ b/chrome/browser/ui/webui/signin/turn_sync_on_helper_unittest.cc\n@@ -54,7 +54,6 @@\n #include \"components/search_engines/template_url_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_capabilities_test_mutator.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n--- a/chrome/browser/unified_consent/unified_consent_service_factory.cc\n+++ b/chrome/browser/unified_consent/unified_consent_service_factory.cc\n@@ -13,7 +13,6 @@\n #include \"components/commerce/core/pref_names.h\"\n #include \"components/embedder_support/pref_names.h\"\n #include \"components/prefs/pref_registry_simple.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/spellcheck/browser/pref_names.h\"\n #include \"components/sync_preferences/pref_service_syncable.h\"\n #include \"components/unified_consent/unified_consent_metrics.h\"\n@@ -34,8 +33,6 @@ namespace {\n \n std::vector<std::string> GetSyncedServicePrefNames() {\n   return {\n-    prefs::kSearchSuggestEnabled, prefs::kSafeBrowsingEnabled,\n-        prefs::kSafeBrowsingScoutReportingEnabled,\n         spellcheck::prefs::kSpellCheckUseSpellingService,\n         commerce::kPriceEmailNotificationsEnabled,\n #if BUILDFLAG(IS_ANDROID)\n--- a/chrome/browser/webdata_services/web_data_service_factory.cc\n+++ b/chrome/browser/webdata_services/web_data_service_factory.cc\n@@ -18,7 +18,6 @@\n #include \"components/plus_addresses/core/browser/webdata/plus_address_webdata_service.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/search_engines/keyword_web_data_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/webdata/token_web_data.h\"\n #include \"components/webdata_services/web_data_service_wrapper.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n@@ -89,51 +88,7 @@ enum class AutofillAccountStorageResult\n AutofillAccountStorageResult DetermineAutofillAccountStorage(\n     PrefService* pref_service) {\n   CHECK(pref_service);\n-  // The interpretation of the pref mimics what PrimaryAccountManager's\n-  // constructor does.\n-  const bool is_signed_in =\n-      !pref_service->GetString(::prefs::kGoogleServicesAccountId).empty();\n-  // If the user is signed out during profile startup, as per switch above\n-  // being enabled, any new sign-ins will involve an explicit sign-in (i.e.\n-  // interaction with native UI). In this case, on-disk storage is appropriate.\n-  if (!is_signed_in) {\n     return AutofillAccountStorageResult::kOnDisk_SignedOut;\n-  }\n-  // It is possible that the user already is in an explicit sign-in state. In\n-  // this case, on-disk storage is appropriate, as any additional future\n-  // sign-ins (if the user first signs out) are guaranteed to be explicit\n-  // sign-ins too.\n-  if (pref_service->GetBoolean(::prefs::kExplicitBrowserSignin)) {\n-    return AutofillAccountStorageResult::kOnDisk_SignedInExplicitly;\n-  }\n-  // The interpretation of the pref mimics what PrimaryAccountManager's\n-  // constructor does.\n-  const bool is_consented_to_sync =\n-      pref_service->GetBoolean(::prefs::kGoogleServicesConsentedToSync);\n-  // If Sync (the feature) is on, the account storage isn't currently used. This\n-  // is because the only way to activate the account storate requires signing\n-  // out first, which means the predicate can return false as per earlier\n-  // rationale. With one exception: managed profiles may turn sync off without\n-  // signing out. Either way, having turned sync on implies the user interacted\n-  // explicitly with a sync UI, so in this particular context it is no different\n-  // from explicit sign-in, and on-disk storage is appropriate.\n-  if (is_consented_to_sync) {\n-    return AutofillAccountStorageResult::kOnDisk_SyncFeatureEnabled;\n-  }\n-  // The remaining case implies a legacy signed-in-non-syncing state with\n-  // implicit sign-in, which means the user signed in before the latest feature\n-  // flags rolled out. This is the only case where in-memory storage should be\n-  // used.\n-  //\n-  // Note that, during the lifetime of the browser/profile, it is still possible\n-  // that the users signs out and signs back in, where the latter is guaranteed\n-  // to be an explicit sign-in. In this case, it would be theoretically better\n-  // to immediately switch to on-disk storage, but this isn't possible once a\n-  // profile is initialized (as this predicate only gets evaluated once).\n-  // Conveniently, it is also harmless to use the in-memory storage until the\n-  // next browser restart, given that this is a one-off transition (upon restart\n-  // the code would run into one of the cases listed earlier that return false).\n-  return AutofillAccountStorageResult::kInMemory_SignedInImplicitly;\n }\n #endif  // !BUILDFLAG(IS_ANDROID)\n \n--- a/chrome/common/extensions/api/privacy.json\n+++ b/chrome/common/extensions/api/privacy.json\n@@ -63,16 +63,6 @@\n             \"value\": [\"passwordSavingEnabled\", {\"type\":\"boolean\"}],\n             \"description\": \"If enabled, the password manager will ask if you want to save passwords. This preference's value is a boolean, defaulting to <code>true</code>.\"\n           },\n-          \"safeBrowsingEnabled\": {\n-            \"$ref\": \"types.ChromeSetting\",\n-            \"value\": [\"safeBrowsingEnabled\", {\"type\":\"boolean\"}],\n-            \"description\": \"If enabled, Chrome does its best to protect you from phishing and malware. This preference's value is a boolean, defaulting to <code>true</code>.\"\n-          },\n-          \"safeBrowsingExtendedReportingEnabled\": {\n-            \"$ref\": \"types.ChromeSetting\",\n-            \"value\": [\"safeBrowsingExtendedReportingEnabled\", {\"type\":\"boolean\"}],\n-            \"description\": \"If enabled, Chrome will send additional information to Google when SafeBrowsing blocks a page, such as the content of the blocked page. This preference's value is a boolean, defaulting to <code>false</code>.\"\n-          },\n           \"searchSuggestEnabled\": {\n             \"$ref\": \"types.ChromeSetting\",\n             \"value\": [\"searchSuggestEnabled\", {\"type\":\"boolean\"}],\n--- a/components/autofill/core/browser/data_manager/addresses/address_data_manager.cc\n+++ b/components/autofill/core/browser/data_manager/addresses/address_data_manager.cc\n@@ -36,7 +36,6 @@\n #include \"components/autofill/core/common/autofill_prefs.h\"\n #include \"components/autofill/core/common/dense_set.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/sync/base/data_type.h\"\n #include \"components/sync/base/features.h\"\n@@ -334,13 +333,7 @@ void AddressDataManager::RemoveLocalProf\n }\n \n bool AddressDataManager::IsEligibleForAddressAccountStorage() const {\n-  if (!sync_service_) {\n     return false;\n-  }\n-\n-  // The CONTACT_INFO data type is only running for eligible users. See\n-  // ContactInfoDataTypeController.\n-  return sync_service_->GetActiveDataTypes().Has(syncer::CONTACT_INFO);\n }\n \n void AddressDataManager::MigrateProfileToAccount(\n@@ -641,40 +634,7 @@ bool AddressDataManager::IsAutofillUserS\n }\n \n bool AddressDataManager::IsAutofillSyncToggleAvailable() const {\n-  if (base::FeatureList::IsEnabled(\n-          syncer::kReplaceSyncPromosWithSignInPromos)) {\n-    return false;\n-  }\n-\n-  if (!pref_service_->GetBoolean(::prefs::kExplicitBrowserSignin)) {\n-    return false;\n-  }\n-\n-  if (!sync_service_) {\n-    return false;\n-  }\n-\n-  // Do not show the toggle if Sync is disabled on in error.\n-  if (sync_service_->GetTransportState() ==\n-          syncer::SyncService::TransportState::PAUSED ||\n-      sync_service_->GetTransportState() ==\n-          syncer::SyncService::TransportState::DISABLED) {\n-    return false;\n-  }\n-\n-  // Do not show the toggle for syncing users.\n-  if (sync_service_->HasSyncConsent()) {\n     return false;\n-  }\n-\n-  if (sync_service_->GetUserSettings()->IsTypeManagedByPolicy(\n-          syncer::UserSelectableType::kAutofill)) {\n-    return false;\n-  }\n-\n-  return contact_info_precondition_checker_ &&\n-         contact_info_precondition_checker_->GetPreconditionState() ==\n-             syncer::DataTypeController::PreconditionState::kPreconditionsMet;\n }\n \n void AddressDataManager::SetAutofillSelectableTypeEnabled(bool enabled) {\n--- a/components/browser_sync/BUILD.gn\n+++ b/components/browser_sync/BUILD.gn\n@@ -14,8 +14,6 @@ static_library(\"browser_sync\") {\n     \"sync_engine_factory_impl.h\",\n     \"sync_internals_message_handler.cc\",\n     \"sync_internals_message_handler.h\",\n-    \"sync_to_signin_migration.cc\",\n-    \"sync_to_signin_migration.h\",\n   ]\n \n   public_deps = [\n--- a/components/collaboration/internal/collaboration_service_impl.cc\n+++ b/components/collaboration/internal/collaboration_service_impl.cc\n@@ -19,7 +19,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/saved_tab_groups/public/tab_group_sync_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/sync/base/collaboration_id.h\"\n #include \"components/sync/base/features.h\"\n@@ -67,10 +66,6 @@ CollaborationServiceImpl::CollaborationS\n       prefs::kSharedTabGroupsManagedAccountSetting,\n       base::BindRepeating(&CollaborationServiceImpl::RefreshServiceStatus,\n                           base::Unretained(this)));\n-  registrar_.Add(\n-      ::prefs::kSigninAllowed,\n-      base::BindRepeating(&CollaborationServiceImpl::RefreshServiceStatus,\n-                          base::Unretained(this)));\n }\n \n CollaborationServiceImpl::~CollaborationServiceImpl() {\n@@ -420,150 +415,13 @@ SigninStatus CollaborationServiceImpl::G\n   DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);\n   SigninStatus status = SigninStatus::kNotSignedIn;\n \n-  bool has_valid_primary_account =\n-      identity_manager_->HasPrimaryAccountWithRefreshToken(\n-          signin::ConsentLevel::kSignin) &&\n-      !identity_manager_->HasAccountWithRefreshTokenInPersistentErrorState(\n-          identity_manager_->GetPrimaryAccountId(\n-              signin::ConsentLevel::kSignin));\n-  if (has_valid_primary_account) {\n-    status = SigninStatus::kSignedIn;\n-  } else if (identity_manager_->HasPrimaryAccount(\n-                 signin::ConsentLevel::kSignin)) {\n-    status = SigninStatus::kSignedInPaused;\n-  } else if (!profile_prefs_->GetBoolean(::prefs::kSigninAllowed)) {\n-    status = SigninStatus::kSigninDisabled;\n-  }\n-\n-#if BUILDFLAG(IS_IOS)\n-  BrowserSigninMode policy_mode = static_cast<BrowserSigninMode>(\n-      local_prefs_->GetInteger(::prefs::kBrowserSigninPolicy));\n-  if (policy_mode == BrowserSigninMode::kDisabled) {\n     status = SigninStatus::kSigninDisabled;\n-  }\n-#endif\n \n   return status;\n }\n \n CollaborationStatus CollaborationServiceImpl::GetCollaborationStatus() {\n-  DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);\n-  if (!base::FeatureList::IsEnabled(\n-          data_sharing::features::kDataSharingFeature) &&\n-      !base::FeatureList::IsEnabled(\n-          data_sharing::features::kDataSharingJoinOnly)) {\n     return CollaborationStatus::kDisabled;\n-  }\n-\n-  // Check if version out-of-date turn off shared tab groups data types and show\n-  // update chrome ui.\n-  if (base::FeatureList::IsEnabled(\n-          data_sharing::features::kSharedDataTypesKillSwitch)) {\n-    return base::FeatureList::IsEnabled(\n-               data_sharing::features::kDataSharingEnableUpdateChromeUI)\n-               ? CollaborationStatus::kVersionOutOfDateShowUpdateChromeUi\n-               : CollaborationStatus::kVersionOutOfDate;\n-  }\n-\n-  // Check if device policy allow signin.\n-#if BUILDFLAG(IS_IOS)\n-  BrowserSigninMode policy_mode = static_cast<BrowserSigninMode>(\n-      local_prefs_->GetInteger(::prefs::kBrowserSigninPolicy));\n-  if (policy_mode == BrowserSigninMode::kDisabled) {\n-    return CollaborationStatus::kDisabledForPolicy;\n-  }\n-#elif BUILDFLAG(IS_ANDROID)\n-  if (!profile_prefs_->GetBoolean(::prefs::kSigninAllowed) &&\n-      profile_prefs_->IsManagedPreference(::prefs::kSigninAllowed)) {\n-    return CollaborationStatus::kDisabledForPolicy;\n-  }\n-#else\n-  if (!profile_prefs_->GetBoolean(::prefs::kSigninAllowedOnNextStartup) &&\n-      profile_prefs_->IsManagedPreference(\n-          ::prefs::kSigninAllowedOnNextStartup)) {\n-    return CollaborationStatus::kDisabledForPolicy;\n-  }\n-#endif\n-\n-  // Check if device policy allow sync.\n-  if (current_status_.sync_status == SyncStatus::kSyncDisabledByEnterprise) {\n-    return CollaborationStatus::kDisabledForPolicy;\n-  }\n-\n-  // TODO(haileywang): Support collaboration status updates.\n-  CollaborationStatus status = CollaborationStatus::kDisabled;\n-  if (base::FeatureList::IsEnabled(\n-          data_sharing::features::kDataSharingFeature)) {\n-    status = CollaborationStatus::kEnabledCreateAndJoin;\n-  } else if (base::FeatureList::IsEnabled(\n-                 data_sharing::features::kDataSharingJoinOnly)) {\n-    status = CollaborationStatus::kAllowedToJoin;\n-  }\n-\n-  if (current_status_.signin_status == SigninStatus::kNotSignedIn) {\n-    return status;\n-  }\n-\n-  CoreAccountInfo account =\n-      identity_manager_->GetPrimaryAccountInfo(signin::ConsentLevel::kSignin);\n-  if (!signin::AccountManagedStatusFinder::MayBeEnterpriseUserBasedOnEmail(\n-          account.email)) {\n-    return status;\n-  }\n-\n-  // Enterprise account handling.\n-  if (!account_managed_status_finder_) {\n-    account_managed_status_finder_ =\n-        std::make_unique<signin::AccountManagedStatusFinder>(\n-            identity_manager_, account,\n-            base::BindOnce(&CollaborationServiceImpl::RefreshServiceStatus,\n-                           weak_ptr_factory_.GetWeakPtr()),\n-            base::Seconds(5));\n-  }\n-\n-  // Enterprise V2: Check enterprise policy to allow/disallow collaboration\n-  // feature.\n-  if (base::FeatureList::IsEnabled(\n-          data_sharing::features::kCollaborationEntrepriseV2)) {\n-    switch (account_managed_status_finder_->GetOutcome()) {\n-      case Outcome::kConsumerGmail:\n-      case Outcome::kConsumerWellKnown:\n-      case Outcome::kConsumerNotWellKnown:\n-        break;\n-      default:\n-        if (profile_prefs_->GetInteger(\n-                collaboration::prefs::kSharedTabGroupsManagedAccountSetting) ==\n-            static_cast<int>(\n-                prefs::SharedTabGroupsManagedAccountSetting::kDisabled)) {\n-          return CollaborationStatus::kDisabledForPolicy;\n-        }\n-    }\n-\n-    return status;\n-  }\n-\n-  // Enterprise V1: Figure out if collaboration feature is disabled by account\n-  // policy. This early check allows to not disable collaboration feature when\n-  // the user need to refresh their account (refresh tokens unavailable).\n-  switch (account_managed_status_finder_->GetOutcome()) {\n-    case Outcome::kPending:\n-      status = CollaborationStatus::kDisabledPending;\n-      break;\n-    case Outcome::kError:\n-    case Outcome::kTimeout:\n-      status = CollaborationStatus::kDisabled;\n-      break;\n-    case Outcome::kEnterpriseGoogleDotCom:\n-    case Outcome::kEnterprise:\n-      status = CollaborationStatus::kDisabledForPolicy;\n-      break;\n-    case Outcome::kConsumerGmail:\n-    case Outcome::kConsumerWellKnown:\n-    case Outcome::kConsumerNotWellKnown:\n-      break;\n-  }\n-\n-  return status;\n }\n \n void CollaborationServiceImpl::RefreshServiceStatus() {\n--- a/components/commerce/core/shopping_service.cc\n+++ b/components/commerce/core/shopping_service.cc\n@@ -63,7 +63,6 @@\n #include \"components/search/ntp_features.h\"\n #include \"components/session_proto_db/session_proto_storage.h\"\n #include \"components/sessions/core/tab_restore_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/sync/base/features.h\"\n #include \"components/sync/service/sync_service.h\"\n #include \"components/unified_consent/url_keyed_data_collection_consent_helper.h\"\n@@ -165,10 +164,7 @@ class ProductSpecificationsUrlObserver\n // This function can be deleted once the Sync feature is removed.\n signin::ConsentLevel GetConsentLevelForEndpointFetchers(\n     PrefService* pref_service) {\n-  return base::FeatureList::IsEnabled(\n-             syncer::kReplaceSyncPromosWithSignInPromos)\n-             ? signin::ConsentLevel::kSignin\n-             : signin::ConsentLevel::kSync;\n+  return signin::ConsentLevel::kSync;\n }\n \n }  // namespace\n--- a/components/commerce/core/subscriptions/subscriptions_server_proxy.cc\n+++ b/components/commerce/core/subscriptions/subscriptions_server_proxy.cc\n@@ -22,7 +22,6 @@\n #include \"components/commerce/core/subscriptions/commerce_subscription.h\"\n #include \"components/endpoint_fetcher/endpoint_fetcher.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/sync/base/features.h\"\n #include \"google_apis/gaia/gaia_constants.h\"\n--- a/components/device_signals/core/browser/browser_utils.h\n+++ b/components/device_signals/core/browser/browser_utils.h\n@@ -9,7 +9,6 @@\n \n #include \"build/build_config.h\"\n #include \"components/device_signals/core/common/common_types.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n class PolicyBlocklistService;\n class PrefService;\n--- a/components/feed/core/v2/feed_stream.cc\n+++ b/components/feed/core/v2/feed_stream.cc\n@@ -64,7 +64,6 @@\n #include \"components/feed/feed_feature_list.h\"\n #include \"components/offline_pages/task/closure_task.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"google_apis/gaia/gaia_id.h\"\n \n namespace feed {\n@@ -173,9 +172,6 @@ FeedStream::FeedStream(RefreshTaskSchedu\n   snippets_enabled_by_dse_.Init(prefs::kEnableSnippetsByDse, profile_prefs,\n                                 preference_change_callback);\n   has_stored_data_.Init(feed::prefs::kHasStoredData, profile_prefs);\n-  signin_allowed_.Init(\n-      ::prefs::kSigninAllowed, profile_prefs,\n-      base::BindRepeating(&FeedStream::ClearAll, GetWeakPtr()));\n   web_feed_subscription_coordinator_ =\n       std::make_unique<WebFeedSubscriptionCoordinator>(delegate, this);\n \n--- a/components/feed/core/v2/public/feed_service.cc\n+++ b/components/feed/core/v2/public/feed_service.cc\n@@ -33,7 +33,6 @@\n #include \"components/history/core/browser/history_types.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"net/base/network_change_notifier.h\"\n@@ -183,7 +182,7 @@ class FeedService::StreamDelegateImpl :\n   // Returns if signin is allowed on Android. Return true on other platform so\n   // behavior is unchanged there.\n   bool IsSigninAllowed() override {\n-    return profile_prefs_->GetBoolean(::prefs::kSigninAllowed);\n+    return false;\n   }\n   void RegisterExperiments(const Experiments& experiments) override {\n     service_delegate_->RegisterExperiments(experiments);\n--- a/components/password_manager/core/browser/leak_detection/leak_detection_check_impl.cc\n+++ b/components/password_manager/core/browser/leak_detection/leak_detection_check_impl.cc\n@@ -22,7 +22,6 @@\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/identity_manager/access_token_fetcher.h\"\n #include \"components/signin/public/identity_manager/access_token_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n@@ -227,14 +226,7 @@ bool LeakDetectionCheck::CanStartLeakChe\n     const PrefService& prefs,\n     const GURL& form_url,\n     std::unique_ptr<autofill::SavePasswordProgressLogger> logger) {\n-  const bool is_leak_protection_on =\n-      prefs.GetBoolean(prefs::kPasswordLeakDetectionEnabled);\n-  if (!is_leak_protection_on && logger) {\n-    logger->LogMessage(autofill::SavePasswordProgressLogger::\n-                           STRING_LEAK_DETECTION_DISABLED_FEATURE);\n-  }\n-  return is_leak_protection_on && !LeakDetectionCheck::IsURLBlockedByPolicy(\n-                                      prefs, form_url, logger.get());\n+  return false;\n }\n \n void LeakDetectionCheckImpl::OnAccessTokenRequestCompleted(\n--- a/components/password_manager/core/browser/leak_detection_delegate.cc\n+++ b/components/password_manager/core/browser/leak_detection_delegate.cc\n@@ -25,7 +25,6 @@\n #include \"components/password_manager/core/common/password_manager_features.h\"\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"services/network/public/cpp/shared_url_loader_factory.h\"\n \n namespace password_manager {\n--- a/components/password_manager/core/browser/password_reuse_detector_impl.cc\n+++ b/components/password_manager/core/browser/password_reuse_detector_impl.cc\n@@ -18,7 +18,6 @@\n #include \"components/password_manager/core/browser/password_store/password_store_consumer.h\"\n #include \"components/password_manager/core/browser/password_store/psl_matching_helper.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"google_apis/gaia/gaia_auth_util.h\"\n #include \"url/gurl.h\"\n \n@@ -216,9 +215,7 @@ PasswordReuseDetectorImpl::CheckNonGaiaE\n   // Skips password reuse check if |domain| matches enterprise login URL or\n   // enterprise change password URL.\n   GURL page_url(domain);\n-  if (enterprise_password_urls_.has_value() &&\n-      safe_browsing::MatchesURLList(page_url,\n-                                    enterprise_password_urls_.value())) {\n+  if (enterprise_password_urls_.has_value()) {\n     return std::nullopt;\n   }\n \n--- a/components/password_manager/core/browser/password_reuse_manager_impl.cc\n+++ b/components/password_manager/core/browser/password_reuse_manager_impl.cc\n@@ -24,7 +24,6 @@\n #include \"components/password_manager/core/browser/password_reuse_detector.h\"\n #include \"components/password_manager/core/browser/password_reuse_manager_signin_notifier.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"google_apis/gaia/gaia_auth_util.h\"\n \n@@ -454,26 +453,6 @@ void PasswordReuseManagerImpl::ScheduleP\n }\n \n void PasswordReuseManagerImpl::ScheduleEnterprisePasswordURLUpdate() {\n-  DCHECK(main_task_runner_->RunsTasksInCurrentSequence());\n-  if (DelayUntilReady(\n-          &PasswordReuseManagerImpl::ScheduleEnterprisePasswordURLUpdate)) {\n-    return;\n-  }\n-  if (!prefs_) {\n-    return;\n-  }\n-  std::vector<GURL> enterprise_login_urls;\n-  safe_browsing::GetPasswordProtectionLoginURLsPref(*prefs_,\n-                                                    &enterprise_login_urls);\n-  GURL enterprise_change_password_url =\n-      safe_browsing::GetPasswordProtectionChangePasswordURLPref(*prefs_);\n-  if (!reuse_detector_) {\n-    return;\n-  }\n-  ScheduleTask(base::BindOnce(&PasswordReuseDetector::UseEnterprisePasswordURLs,\n-                              base::Unretained(reuse_detector_.get()),\n-                              std::move(enterprise_login_urls),\n-                              std::move(enterprise_change_password_url)));\n }\n \n void PasswordReuseManagerImpl::RequestLoginsFromStores() {\n--- a/components/password_manager/core/browser/password_sync_util.cc\n+++ b/components/password_manager/core/browser/password_sync_util.cc\n@@ -10,7 +10,6 @@\n #include \"components/password_manager/core/browser/features/password_manager_features_util.h\"\n #include \"components/password_manager/core/browser/password_form.h\"\n #include \"components/password_manager/core/browser/password_manager_client.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/sync/base/user_selectable_type.h\"\n #include \"components/sync/service/sync_user_settings.h\"\n@@ -73,9 +72,7 @@ bool IsGaiaCredentialPage(const std::str\n \n bool ShouldSaveEnterprisePasswordHash(const PasswordForm& form,\n                                       const PrefService& prefs) {\n-  return safe_browsing::MatchesPasswordProtectionLoginURL(form.url, prefs) ||\n-         safe_browsing::MatchesPasswordProtectionChangePasswordURL(form.url,\n-                                                                   prefs);\n+  return false;\n }\n \n bool HasChosenToSyncPasswords(const syncer::SyncService* sync_service) {\n--- a/components/password_manager/core/browser/store_metrics_reporter.cc\n+++ b/components/password_manager/core/browser/store_metrics_reporter.cc\n@@ -31,7 +31,6 @@\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"google_apis/gaia/gaia_auth_util.h\"\n #include \"google_apis/gaia/gaia_urls.h\"\n \n@@ -758,7 +757,7 @@ StoreMetricsReporter::StoreMetricsReport\n   is_account_storage_active_ =\n       features_util::IsAccountStorageActive(sync_service);\n \n-  is_safe_browsing_enabled_ = safe_browsing::IsSafeBrowsingEnabled(*prefs_);\n+  is_safe_browsing_enabled_ = false;\n \n   if (settings) {\n     // TODO(crbug.com/358998546): use PasswordManagerSettingsService here.\n--- a/components/password_manager/core/browser/sync_credentials_filter.cc\n+++ b/components/password_manager/core/browser/sync_credentials_filter.cc\n@@ -12,7 +12,6 @@\n #include \"components/password_manager/core/browser/password_manager_util.h\"\n #include \"components/password_manager/core/browser/password_sync_util.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"google_apis/gaia/gaia_auth_util.h\"\n@@ -29,48 +28,7 @@ bool SyncCredentialsFilter::ShouldSave(c\n   if (client_->IsOffTheRecord()) {\n     return false;\n   }\n-\n-  if (form.form_data.is_gaia_with_skip_save_password_form()) {\n-    return false;\n-  }\n-\n-  if (!sync_util::IsGaiaCredentialPage(form.signon_realm)) {\n-    return true;\n-  }\n-\n-  // Note that `sync_service` may be null in advanced cases like --disable-sync\n-  // being used as per syncer::IsSyncAllowedByFlag().\n-  const syncer::SyncService* sync_service = client_->GetSyncService();\n-\n-  // The requirement to fulfill is \"don't offer to save a Gaia password inside\n-  // its own account\".\n-  // Let's assume that if the browser is signed-in, new passwords are saved to\n-  // the primary signed-in account. Per sync_util::GetAccountForSaving(), that's\n-  // not always true, but let's not overcomplicate.\n-  const CoreAccountInfo primary_account = sync_service != nullptr\n-                                              ? sync_service->GetAccountInfo()\n-                                              : CoreAccountInfo();\n-  if (!primary_account.IsEmpty()) {\n-    // Only save if the account is not the same. If the username is empty, in\n-    // doubt don't save (this is relevant in the password change page).\n-    return !form.username_value.empty() &&\n-           !gaia::AreEmailsSame(base::UTF16ToUTF8(form.username_value),\n-                                primary_account.email);\n-  }\n-\n-// The browser is signed-out and the web just signed-in.\n-#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)\n-  // On desktop, this normally leads to immediate browser sign-in, in which case\n-  // we shouldn't offer saving. One exception is if browser sign-in is disabled.\n-  return !client_->GetPrefs()->GetBoolean(prefs::kSigninAllowed);\n-#else\n-  // On mobile, sign-in via the web page doesn't lead to browser sign-in, so\n-  // offer saving.\n-  // (Navigating to the Gaia web page opens Chrome UI which must be accepted to\n-  // perform browser+web sign-in. The code path here is only hit if that UI was\n-  // suppressed/ dismissed and the user interacted directly with the page.)\n   return true;\n-#endif\n }\n \n bool SyncCredentialsFilter::ShouldSaveGaiaPasswordHash(\n--- a/components/password_manager/core/browser/sync_credentials_filter_unittest.cc\n+++ b/components/password_manager/core/browser/sync_credentials_filter_unittest.cc\n@@ -32,7 +32,6 @@\n #include \"components/password_manager/core/browser/sync_username_test_base.h\"\n #include \"components/prefs/pref_registry_simple.h\"\n #include \"components/prefs/testing_pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"testing/gtest/include/gtest/gtest.h\"\n--- a/components/safe_browsing/content/browser/base_blocking_page.cc\n+++ b/components/safe_browsing/content/browser/base_blocking_page.cc\n@@ -16,7 +16,6 @@\n #include \"components/safe_browsing/content/browser/content_unsafe_resource_util.h\"\n #include \"components/safe_browsing/content/browser/safe_browsing_controller_client.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/content/settings_page_helper.h\"\n--- a/components/safe_browsing/content/browser/client_side_detection_service.cc\n+++ b/components/safe_browsing/content/browser/client_side_detection_service.cc\n@@ -34,7 +34,6 @@\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/proto/client_model.pb.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_constants.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"content/public/browser/browser_task_traits.h\"\n--- a/components/safe_browsing/content/browser/safe_browsing_navigation_observer_manager.cc\n+++ b/components/safe_browsing/content/browser/safe_browsing_navigation_observer_manager.cc\n@@ -22,7 +22,6 @@\n #include \"components/safe_browsing/content/browser/web_ui/safe_browsing_ui.h\"\n #include \"components/safe_browsing/core/browser/referrer_chain_provider.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/sessions/content/session_tab_helper.h\"\n #include \"content/public/browser/browser_context.h\"\n@@ -376,7 +375,7 @@ GURL SafeBrowsingNavigationObserverManag\n bool SafeBrowsingNavigationObserverManager::IsEnabledAndReady(\n     PrefService* prefs,\n     bool has_safe_browsing_service) {\n-  return IsSafeBrowsingEnabled(*prefs) && has_safe_browsing_service;\n+  return false;\n }\n \n // static\n--- a/components/safe_browsing/content/browser/triggers/suspicious_site_trigger_unittest.cc\n+++ b/components/safe_browsing/content/browser/triggers/suspicious_site_trigger_unittest.cc\n@@ -12,7 +12,6 @@\n #include \"build/build_config.h\"\n #include \"components/prefs/testing_pref_service.h\"\n #include \"components/safe_browsing/content/browser/triggers/mock_trigger_manager.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"content/public/test/browser_task_environment.h\"\n #include \"content/public/test/navigation_simulator.h\"\n #include \"content/public/test/test_renderer_host.h\"\n--- a/components/safe_browsing/content/browser/triggers/trigger_manager.cc\n+++ b/components/safe_browsing/content/browser/triggers/trigger_manager.cc\n@@ -13,7 +13,6 @@\n #include \"components/safe_browsing/content/browser/threat_details.h\"\n #include \"components/safe_browsing/content/browser/web_contents_key.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/core/unsafe_resource.h\"\n #include \"content/public/browser/browser_context.h\"\n #include \"content/public/browser/browser_thread.h\"\n--- a/components/safe_browsing/content/browser/triggers/trigger_throttler.cc\n+++ b/components/safe_browsing/content/browser/triggers/trigger_throttler.cc\n@@ -152,33 +152,6 @@ void TriggerThrottler::CleanupOldEvents(\n \n void TriggerThrottler::LoadTriggerEventsFromPref() {\n   trigger_events_.clear();\n-  if (!local_state_prefs_) {\n-    return;\n-  }\n-\n-  const base::DictValue& event_dict =\n-      local_state_prefs_->GetDict(prefs::kSafeBrowsingTriggerEventTimestamps);\n-  for (auto trigger_pair : event_dict) {\n-    // Check that the first item in the pair is convertible to a trigger type\n-    // and that the second item is a list.\n-    int trigger_type_int;\n-    if (!base::StringToInt(trigger_pair.first, &trigger_type_int) ||\n-        trigger_type_int < static_cast<int>(TriggerType::kMinTriggerType) ||\n-        trigger_type_int > static_cast<int>(TriggerType::kMaxTriggerType)) {\n-      continue;\n-    }\n-    if (!trigger_pair.second.is_list()) {\n-      continue;\n-    }\n-\n-    const TriggerType trigger_type = static_cast<TriggerType>(trigger_type_int);\n-    for (const auto& timestamp : trigger_pair.second.GetList()) {\n-      if (timestamp.is_double()) {\n-        trigger_events_[trigger_type].push_back(\n-            base::Time::FromSecondsSinceUnixEpoch(timestamp.GetDouble()));\n-      }\n-    }\n-  }\n }\n \n void TriggerThrottler::WriteTriggerEventsToPref() {\n@@ -196,9 +169,6 @@ void TriggerThrottler::WriteTriggerEvent\n     trigger_dict.Set(base::NumberToString(static_cast<int>(trigger_item.first)),\n                      std::move(timestamps));\n   }\n-\n-  local_state_prefs_->SetDict(prefs::kSafeBrowsingTriggerEventTimestamps,\n-                              std::move(trigger_dict));\n }\n \n size_t TriggerThrottler::GetDailyQuotaForTrigger(\n--- a/components/safe_browsing/content/browser/triggers/trigger_throttler_unittest.cc\n+++ b/components/safe_browsing/content/browser/triggers/trigger_throttler_unittest.cc\n@@ -9,7 +9,6 @@\n #include \"base/test/simple_test_clock.h\"\n #include \"components/prefs/testing_pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"testing/gmock/include/gmock/gmock.h\"\n #include \"testing/gtest/include/gtest/gtest.h\"\n \n--- a/components/safe_browsing/content/browser/ui_manager.cc\n+++ b/components/safe_browsing/content/browser/ui_manager.cc\n@@ -20,7 +20,6 @@\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n #include \"components/safe_browsing/core/browser/ping_manager.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/security_interstitials/content/security_interstitial_tab_helper.h\"\n #include \"components/security_interstitials/core/unsafe_resource.h\"\n--- a/components/safe_browsing/content/browser/ui_manager_unittest.cc\n+++ b/components/safe_browsing/content/browser/ui_manager_unittest.cc\n@@ -17,7 +17,6 @@\n #include \"components/safe_browsing/content/browser/safe_browsing_controller_client.h\"\n #include \"components/safe_browsing/core/browser/db/util.h\"\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/content/settings_page_helper.h\"\n #include \"components/security_interstitials/core/base_safe_browsing_error_ui.h\"\n--- a/components/safe_browsing/core/browser/db/util.h\n+++ b/components/safe_browsing/core/browser/db/util.h\n@@ -17,7 +17,6 @@\n #include \"base/containers/flat_map.h\"\n #include \"base/trace_event/traced_value.h\"\n #include \"components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace safe_browsing {\n \n--- a/components/safe_browsing/core/browser/db/v4_local_database_manager.cc\n+++ b/components/safe_browsing/core/browser/db/v4_local_database_manager.cc\n@@ -296,10 +296,9 @@ const V4LocalDatabaseManager*\n scoped_refptr<V4LocalDatabaseManager> V4LocalDatabaseManager::Create(\n     const base::FilePath& base_path,\n     scoped_refptr<base::SequencedTaskRunner> ui_task_runner,\n-    scoped_refptr<base::SequencedTaskRunner> io_task_runner,\n-    ExtendedReportingLevelCallback extended_reporting_level_callback) {\n+    scoped_refptr<base::SequencedTaskRunner> io_task_runner) {\n   return base::WrapRefCounted(new V4LocalDatabaseManager(\n-      base_path, extended_reporting_level_callback, std::move(ui_task_runner),\n+      base_path, std::move(ui_task_runner),\n       std::move(io_task_runner), nullptr));\n }\n \n@@ -322,13 +321,11 @@ void V4LocalDatabaseManager::CollectData\n \n V4LocalDatabaseManager::V4LocalDatabaseManager(\n     const base::FilePath& base_path,\n-    ExtendedReportingLevelCallback extended_reporting_level_callback,\n     scoped_refptr<base::SequencedTaskRunner> ui_task_runner,\n     scoped_refptr<base::SequencedTaskRunner> io_task_runner,\n     scoped_refptr<base::SequencedTaskRunner> task_runner_for_tests)\n     : SafeBrowsingDatabaseManager(std::move(ui_task_runner)),\n       base_path_(base_path),\n-      extended_reporting_level_callback_(extended_reporting_level_callback),\n       list_infos_(GetListInfos()),\n       task_runner_(task_runner_for_tests\n                        ? task_runner_for_tests\n@@ -1188,8 +1185,7 @@ void V4LocalDatabaseManager::SetupUpdate\n                           weak_factory_.GetWeakPtr());\n \n   v4_update_protocol_manager_ = std::make_unique<V4UpdateProtocolManager>(\n-      url_loader_factory, config, update_callback,\n-      extended_reporting_level_callback_);\n+      url_loader_factory, config, update_callback);\n }\n \n void V4LocalDatabaseManager::UpdateRequestCompleted(\n--- a/components/safe_browsing/core/browser/db/v4_local_database_manager.h\n+++ b/components/safe_browsing/core/browser/db/v4_local_database_manager.h\n@@ -40,8 +40,7 @@ class V4LocalDatabaseManager : public Sa\n   static scoped_refptr<V4LocalDatabaseManager> Create(\n       const base::FilePath& base_path,\n       scoped_refptr<base::SequencedTaskRunner> ui_task_runner,\n-      scoped_refptr<base::SequencedTaskRunner> io_task_runner,\n-      ExtendedReportingLevelCallback extended_reporting_level_callback);\n+      scoped_refptr<base::SequencedTaskRunner> io_task_runner);\n \n   V4LocalDatabaseManager(const V4LocalDatabaseManager&) = delete;\n   V4LocalDatabaseManager& operator=(const V4LocalDatabaseManager&) = delete;\n@@ -110,7 +109,6 @@ class V4LocalDatabaseManager : public Sa\n   // Must be initialized by calling StartOnUIThread() before using.\n   V4LocalDatabaseManager(\n       const base::FilePath& base_path,\n-      ExtendedReportingLevelCallback extended_reporting_level_callback,\n       scoped_refptr<base::SequencedTaskRunner> ui_task_runner,\n       scoped_refptr<base::SequencedTaskRunner> io_task_runner,\n       scoped_refptr<base::SequencedTaskRunner> task_runner_for_tests);\n@@ -410,10 +408,6 @@ class V4LocalDatabaseManager : public Sa\n   // ready to process next update.\n   DatabaseUpdatedCallback db_updated_callback_;\n \n-  // Callback to get the current extended reporting level. Needed by the update\n-  // manager.\n-  ExtendedReportingLevelCallback extended_reporting_level_callback_;\n-\n   // The client_state of each list currently being synced. This is updated each\n   // time a database update completes, and used to send list client_state\n   // information in the full hash request.\n--- a/components/safe_browsing/core/browser/db/v4_protocol_manager_util.cc\n+++ b/components/safe_browsing/core/browser/db/v4_protocol_manager_util.cc\n@@ -84,7 +84,6 @@ void SetSbV4UrlPrefixForTesting(const ch\n \n std::string GetReportUrl(const V4ProtocolConfig& config,\n                          const std::string& method,\n-                         const ExtendedReportingLevel* reporting_level,\n                          const bool is_enhanced_protection) {\n   std::string url = base::StringPrintf(\n       \"%s/%s?client=%s&appver=%s&pver=4.0\", kSbReportsURLPrefix, method.c_str(),\n@@ -94,9 +93,6 @@ std::string GetReportUrl(const V4Protoco\n     base::StringAppendF(&url, \"&key=%s\",\n                         base::EscapeQueryParamValue(api_key, true).c_str());\n   }\n-  if (reporting_level)\n-    url.append(\n-        base::StringPrintf(\"&ext=%d\", static_cast<int>(*reporting_level)));\n   if (is_enhanced_protection)\n     url.append(base::StringPrintf(\"&enh=%d\", is_enhanced_protection));\n   return url;\n--- a/components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\n+++ b/components/safe_browsing/core/browser/db/v4_protocol_manager_util.h\n@@ -19,9 +19,10 @@\n #include <vector>\n \n #include \"base/containers/flat_set.h\"\n+#include \"base/files/file_path.h\"\n #include \"base/gtest_prod_util.h\"\n+#include \"base/time/time.h\"\n #include \"components/safe_browsing/core/browser/db/safebrowsing.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"url/gurl.h\"\n \n namespace net {\n@@ -59,7 +60,6 @@ void SetSbV4UrlPrefixForTesting(const ch\n std::string GetReportUrl(\n     const V4ProtocolConfig& config,\n     const std::string& method,\n-    const ExtendedReportingLevel* reporting_level = nullptr,\n     const bool is_enhanced_protection = false);\n \n // Used to specify the type of check to perform in CheckBrowseUrl function.\n--- a/components/safe_browsing/core/browser/db/v4_update_protocol_manager.cc\n+++ b/components/safe_browsing/core/browser/db/v4_update_protocol_manager.cc\n@@ -80,20 +80,8 @@ static const int kV4TimerStartIntervalSe\n // Maximum time, in seconds, to wait for a response to an update request.\n static const int kV4TimerUpdateWaitSecMax = 15 * 60;  // 15 minutes\n \n-ChromeClientInfo::SafeBrowsingReportingPopulation GetReportingLevelProtoValue(\n-    ExtendedReportingLevel reporting_level) {\n-  switch (reporting_level) {\n-    case SBER_LEVEL_OFF:\n-      return ChromeClientInfo::OPT_OUT;\n-    case SBER_LEVEL_LEGACY:\n-      return ChromeClientInfo::EXTENDED;\n-    case SBER_LEVEL_SCOUT:\n-      return ChromeClientInfo::SCOUT;\n-    case SBER_LEVEL_ENHANCED_PROTECTION:\n-      return ChromeClientInfo::ENHANCED_PROTECTION;\n-    default:\n-      NOTREACHED() << \"Unexpected reporting_level!\";\n-  }\n+ChromeClientInfo::SafeBrowsingReportingPopulation GetReportingLevelProtoValue() {\n+  return ChromeClientInfo::OPT_OUT;\n }\n \n // V4UpdateProtocolManager implementation --------------------------------\n@@ -106,8 +94,7 @@ void V4UpdateProtocolManager::ResetUpdat\n V4UpdateProtocolManager::V4UpdateProtocolManager(\n     scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,\n     const V4ProtocolConfig& config,\n-    V4UpdateCallback update_callback,\n-    ExtendedReportingLevelCallback extended_reporting_level_callback)\n+    V4UpdateCallback update_callback)\n     : update_error_count_(0),\n       update_back_off_mult_(1),\n       next_update_interval_(\n@@ -115,8 +102,7 @@ V4UpdateProtocolManager::V4UpdateProtoco\n                                                kV4TimerStartIntervalSecMax))),\n       config_(config),\n       url_loader_factory_(url_loader_factory),\n-      update_callback_(update_callback),\n-      extended_reporting_level_callback_(extended_reporting_level_callback) {\n+      update_callback_(update_callback) {\n   // Do not auto-schedule updates. Let the owner (V4LocalDatabaseManager) do it\n   // when it is ready to process updates.\n }\n@@ -211,11 +197,6 @@ std::string V4UpdateProtocolManager::Get\n         RICE);\n   }\n \n-  if (!extended_reporting_level_callback_.is_null()) {\n-    request.mutable_chrome_client_info()->set_reporting_population(\n-        GetReportingLevelProtoValue(extended_reporting_level_callback_.Run()));\n-  }\n-\n   V4ProtocolManagerUtil::SetClientInfoFromConfig(request.mutable_client(),\n                                                  config_);\n \n--- a/components/safe_browsing/core/browser/db/v4_update_protocol_manager.h\n+++ b/components/safe_browsing/core/browser/db/v4_update_protocol_manager.h\n@@ -41,9 +41,6 @@ namespace safe_browsing {\n using V4UpdateCallback =\n     base::RepeatingCallback<void(std::unique_ptr<ParsedServerResponse>)>;\n \n-using ExtendedReportingLevelCallback =\n-    base::RepeatingCallback<ExtendedReportingLevel()>;\n-\n class V4UpdateProtocolManager {\n  public:\n   V4UpdateProtocolManager(const V4UpdateProtocolManager&) = delete;\n@@ -58,8 +55,7 @@ class V4UpdateProtocolManager {\n   V4UpdateProtocolManager(\n       scoped_refptr<network::SharedURLLoaderFactory> url_loader_factory,\n       const V4ProtocolConfig& config,\n-      V4UpdateCallback update_callback,\n-      ExtendedReportingLevelCallback extended_reporting_level_callback);\n+      V4UpdateCallback update_callback);\n \n   void OnURLLoaderComplete(std::optional<std::string> response_body);\n \n@@ -184,8 +180,6 @@ class V4UpdateProtocolManager {\n   // complete.\n   base::OneShotTimer timeout_timer_;\n \n-  ExtendedReportingLevelCallback extended_reporting_level_callback_;\n-\n   SEQUENCE_CHECKER(sequence_checker_);\n };\n \n--- a/components/safe_browsing/core/browser/password_protection/password_protection_service_base.h\n+++ b/components/safe_browsing/core/browser/password_protection/password_protection_service_base.h\n@@ -28,7 +28,6 @@\n #include \"components/safe_browsing/core/browser/safe_browsing_metrics_collector.h\"\n #include \"components/safe_browsing/core/browser/safe_browsing_token_fetcher.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sessions/core/session_id.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"services/network/public/cpp/shared_url_loader_factory.h\"\n@@ -148,10 +147,6 @@ class PasswordProtectionServiceBase : pu\n   // Returns if the warning UI is enabled.\n   bool IsWarningEnabled(ReusedPasswordAccountType password_type);\n \n-  // Returns the pref value of password protection warning trigger.\n-  virtual PasswordProtectionTrigger GetPasswordProtectionWarningTriggerPref(\n-      ReusedPasswordAccountType password_type) const = 0;\n-\n   // If |url| matches Safe Browsing allowlist domains, password protection\n   // change password URL, or password protection login URLs in the enterprise\n   // policy.\n--- a/components/safe_browsing/core/browser/realtime/policy_engine.cc\n+++ b/components/safe_browsing/core/browser/realtime/policy_engine.cc\n@@ -12,7 +12,6 @@\n #include \"components/enterprise/connectors/core/common.h\"\n #include \"components/enterprise/connectors/core/connectors_prefs.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/unified_consent/pref_names.h\"\n #include \"components/user_prefs/user_prefs.h\"\n@@ -57,7 +56,7 @@ bool RealTimePolicyEngine::IsUserMbbOpte\n \n // static\n bool RealTimePolicyEngine::IsUserEpOptedIn(PrefService* pref_service) {\n-  return IsEnhancedProtectionEnabled(*pref_service);\n+  return false;\n }\n \n // static\n@@ -119,15 +118,7 @@ bool RealTimePolicyEngine::CanPerformEnt\n     return false;\n   }\n \n-  if (pref_service->GetInteger(\n-          enterprise_connectors::kEnterpriseRealTimeUrlCheckMode) !=\n-      enterprise_connectors::REAL_TIME_CHECK_FOR_MAINFRAME_ENABLED) {\n-    base::UmaHistogramEnumeration(\"SafeBrowsing.RT.ConsumerVersionReason\",\n-                                  ConsumerVersionReason::POLICY_DISABLED);\n-    return false;\n-  }\n-\n-  return true;\n+  return false;\n }\n \n }  // namespace safe_browsing\n--- a/components/safe_browsing/core/browser/realtime/url_lookup_service.cc\n+++ b/components/safe_browsing/core/browser/realtime/url_lookup_service.cc\n@@ -24,7 +24,6 @@\n #include \"components/safe_browsing/core/browser/utils/safe_browsing_web_app_utils.h\"\n #include \"components/safe_browsing/core/browser/verdict_cache_manager.h\"\n #include \"components/safe_browsing/core/common/proto/csd.pb.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/unified_consent/pref_names.h\"\n #include \"net/base/ip_address.h\"\n@@ -106,8 +105,7 @@ bool RealTimeUrlLookupService::CanSendPa\n }\n \n bool RealTimeUrlLookupService::CanIncludeSubframeUrlInReferrerChain() const {\n-  return IsEnhancedProtectionEnabled(*pref_service_) &&\n-         CanPerformFullURLLookup();\n+  return false;\n }\n \n bool RealTimeUrlLookupService::CanCheckSafeBrowsingDb() const {\n@@ -124,9 +122,7 @@ bool RealTimeUrlLookupService::CanCheckS\n }\n \n bool RealTimeUrlLookupService::CanSendRTSampleRequest() const {\n-  return IsExtendedReportingEnabled(*pref_service_) &&\n-         (bypass_protego_probability_for_tests_ ||\n-          base::RandDouble() <= kProbabilityForSendingSampledRequests);\n+  return false;\n }\n \n std::string RealTimeUrlLookupService::GetUserEmail() const {\n@@ -243,14 +239,6 @@ RealTimeUrlLookupService::GetMinAllowedT\n \n void RealTimeUrlLookupService::MaybeLogLastProtegoPingTimeToPrefs(\n     bool sent_with_token) {\n-  // `pref_service_` can be null in tests.\n-  if (pref_service_ && IsEnhancedProtectionEnabled(*pref_service_)) {\n-    pref_service_->SetTime(\n-        sent_with_token\n-            ? prefs::kSafeBrowsingEsbProtegoPingWithTokenLastLogTime\n-            : prefs::kSafeBrowsingEsbProtegoPingWithoutTokenLastLogTime,\n-        base::Time::Now());\n-  }\n }\n \n void RealTimeUrlLookupService::MaybeLogProtegoPingCookieHistograms(\n--- a/components/safe_browsing/core/browser/realtime/url_lookup_service_base.cc\n+++ b/components/safe_browsing/core/browser/realtime/url_lookup_service_base.cc\n@@ -26,7 +26,6 @@\n #include \"components/safe_browsing/core/browser/referrer_chain_provider.h\"\n #include \"components/safe_browsing/core/browser/verdict_cache_manager.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_constants.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"net/base/ip_address.h\"\n--- a/components/safe_browsing/core/browser/safe_browsing_metrics_collector.cc\n+++ b/components/safe_browsing/core/browser/safe_browsing_metrics_collector.cc\n@@ -14,13 +14,11 @@\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/prefs/scoped_user_pref_update.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n namespace {\n \n using EventType = safe_browsing::SafeBrowsingMetricsCollector::EventType;\n using UserState = safe_browsing::SafeBrowsingMetricsCollector::UserState;\n-using SafeBrowsingState = safe_browsing::SafeBrowsingState;\n \n const int kMetricsLoggingIntervalDay = 1;\n \n@@ -61,11 +59,6 @@ SafeBrowsingMetricsCollector::SafeBrowsi\n     PrefService* pref_service)\n     : pref_service_(pref_service) {\n   pref_change_registrar_.Init(pref_service_);\n-  pref_change_registrar_.Add(\n-      prefs::kSafeBrowsingEnhanced,\n-      base::BindRepeating(\n-          &SafeBrowsingMetricsCollector::OnEnhancedProtectionPrefChanged,\n-          base::Unretained(this)));\n }\n \n void SafeBrowsingMetricsCollector::Shutdown() {\n@@ -81,16 +74,6 @@ void SafeBrowsingMetricsCollector::\n }\n \n void SafeBrowsingMetricsCollector::StartLogging() {\n-  base::TimeDelta log_interval = base::Days(kMetricsLoggingIntervalDay);\n-  base::Time last_log_time =\n-      base::Time::FromDeltaSinceWindowsEpoch(base::Seconds(\n-          pref_service_->GetInt64(prefs::kSafeBrowsingMetricsLastLogTime)));\n-  base::TimeDelta delay = base::Time::Now() - last_log_time;\n-  if (delay >= log_interval) {\n-    LogMetricsAndScheduleNextLogging();\n-  } else {\n-    ScheduleNextLoggingAfterInterval(log_interval - delay);\n-  }\n }\n \n void SafeBrowsingMetricsCollector::LogMetricsAndScheduleNextLogging() {\n@@ -99,77 +82,10 @@ void SafeBrowsingMetricsCollector::LogMe\n   MaybeLogDailyEsbProtegoPingSent();\n   RemoveOldEventsFromPref();\n \n-  pref_service_->SetInt64(\n-      prefs::kSafeBrowsingMetricsLastLogTime,\n-      base::Time::Now().ToDeltaSinceWindowsEpoch().InSeconds());\n   ScheduleNextLoggingAfterInterval(base::Days(kMetricsLoggingIntervalDay));\n }\n \n-safe_browsing::SafeBrowsingMetricsCollector::ProtegoPingType\n-SafeBrowsingMetricsCollector::GetMostRecentPingType(\n-    base::Time last_ping_with_token,\n-    base::Time last_ping_without_token,\n-    base::TimeDelta time_delta) {\n-  // If a ping with token was sent within the last time_delta,\n-  // the most recent ping type is kWithToken.\n-  // If both last_ping_with_token and last_ping_without_token are present,\n-  // we log kWithToken instead of kWithoutToken because if a token has been\n-  // sent before, we are certain that this account is a signed in account\n-  // and the server has received the token.\n-  // The kWithoutToken ping could be sent after the account logged out.\n-  if (base::Time::Now() - last_ping_with_token < time_delta) {\n-    return ProtegoPingType::kWithToken;\n-  } else if (base::Time::Now() - last_ping_without_token < time_delta) {\n-    return ProtegoPingType::kWithoutToken;\n-  }\n-  return ProtegoPingType::kNone;\n-}\n-\n void SafeBrowsingMetricsCollector::MaybeLogDailyEsbProtegoPingSent() {\n-  if (GetSafeBrowsingState(*pref_service_) !=\n-      SafeBrowsingState::ENHANCED_PROTECTION) {\n-    return;\n-  }\n-\n-  auto last_ping_with_token = pref_service_->GetTime(\n-      prefs::kSafeBrowsingEsbProtegoPingWithTokenLastLogTime);\n-  auto last_ping_without_token = pref_service_->GetTime(\n-      prefs::kSafeBrowsingEsbProtegoPingWithoutTokenLastLogTime);\n-  auto most_recent_ping_type = last_ping_with_token > last_ping_without_token\n-                                   ? ProtegoPingType::kWithToken\n-                                   : ProtegoPingType::kWithoutToken;\n-  auto most_recent_ping_time =\n-      std::max(last_ping_with_token, last_ping_without_token);\n-\n-  auto most_recent_collector_run_time = PrefValueToTime(\n-      pref_service_->GetValue(prefs::kSafeBrowsingMetricsLastLogTime));\n-\n-  bool sent_ping_since_last_collector_run =\n-      most_recent_ping_time > most_recent_collector_run_time;\n-  base::UmaHistogramEnumeration(\n-      \"SafeBrowsing.Enhanced.ProtegoRequestSentInLast24Hours\",\n-      sent_ping_since_last_collector_run ? most_recent_ping_type\n-                                         : ProtegoPingType::kNone);\n-\n-  auto logged_ping_last_24_hours_type = GetMostRecentPingType(\n-      last_ping_with_token, last_ping_without_token, base::Hours(24));\n-  base::UmaHistogramEnumeration(\n-      \"SafeBrowsing.Enhanced.ProtegoRequestSentInLast24Hours2\",\n-      logged_ping_last_24_hours_type);\n-\n-  auto logged_ping_last_7_days_type = GetMostRecentPingType(\n-      last_ping_with_token, last_ping_without_token, base::Days(7));\n-\n-  base::UmaHistogramEnumeration(\n-      \"SafeBrowsing.Enhanced.ProtegoRequestSentInLast7Days\",\n-      logged_ping_last_7_days_type);\n-\n-  auto logged_ping_last_28_days_type = GetMostRecentPingType(\n-      last_ping_with_token, last_ping_without_token, base::Days(28));\n-\n-  base::UmaHistogramEnumeration(\n-      \"SafeBrowsing.Enhanced.ProtegoRequestSentInLast28Days\",\n-      logged_ping_last_28_days_type);\n }\n \n void SafeBrowsingMetricsCollector::ScheduleNextLoggingAfterInterval(\n@@ -181,75 +97,16 @@ void SafeBrowsingMetricsCollector::Sched\n }\n \n void SafeBrowsingMetricsCollector::LogDailyOptInMetrics() {\n-  base::UmaHistogramEnumeration(\"SafeBrowsing.Pref.Daily.SafeBrowsingState\",\n-                                GetSafeBrowsingState(*pref_service_));\n-  base::UmaHistogramBoolean(\"SafeBrowsing.Pref.Daily.Extended\",\n-                            IsExtendedReportingEnabled(*pref_service_));\n-  base::UmaHistogramBoolean(\"SafeBrowsing.Pref.Daily.SafeBrowsingModeManaged\",\n-                            IsSafeBrowsingPolicyManaged(*pref_service_));\n-  base::UmaHistogramBoolean(\n-      \"SafeBrowsing.Pref.Daily.PasswordLeakToggle\",\n-      pref_service_->GetBoolean(\n-          password_manager::prefs::kPasswordLeakDetectionEnabled));\n }\n \n void SafeBrowsingMetricsCollector::LogDailyEventMetrics() {\n-  SafeBrowsingState sb_state = GetSafeBrowsingState(*pref_service_);\n-  if (sb_state == SafeBrowsingState::NO_SAFE_BROWSING) {\n-    return;\n-  }\n-  UserState user_state = GetUserState();\n-\n-  int total_bypass_count = 0;\n-  int total_security_sensitive_event_count = 0;\n-  for (int event_type_int = 0; event_type_int <= EventType::kMaxValue;\n-       event_type_int += 1) {\n-    EventType event_type = static_cast<EventType>(event_type_int);\n-    if (IsBypassEventType(event_type)) {\n-      int bypass_count = GetEventCountSince(user_state, event_type,\n-                                            base::Time::Now() - base::Days(28));\n-      total_bypass_count += bypass_count;\n-    }\n-    if (IsSecuritySensitiveEventType(event_type)) {\n-      int security_sensitive_event_count = GetEventCountSince(\n-          user_state, event_type, base::Time::Now() - base::Days(28));\n-      total_security_sensitive_event_count += security_sensitive_event_count;\n-    }\n-  }\n-  base::UmaHistogramCounts100(\"SafeBrowsing.Daily.BypassCountLast28Days.\" +\n-                                  GetUserStateMetricSuffix(user_state) +\n-                                  \".AllEvents\",\n-                              total_bypass_count);\n-  base::UmaHistogramCounts100(\n-      \"SafeBrowsing.Daily.SecuritySensitiveCountLast28Days.\" +\n-          GetUserStateMetricSuffix(user_state) + \".AllEvents\",\n-      total_security_sensitive_event_count);\n }\n \n void SafeBrowsingMetricsCollector::RemoveOldEventsFromPref() {\n-  ScopedDictPrefUpdate update(pref_service_,\n-                              prefs::kSafeBrowsingEventTimestamps);\n-  base::DictValue& mutable_state_dict = update.Get();\n-\n-  for (auto state_map : mutable_state_dict) {\n-    for (auto event_map : state_map.second.GetDict()) {\n-      event_map.second.GetList().EraseIf([&](const auto& timestamp) {\n-        return base::Time::Now() - PrefValueToTime(timestamp) >\n-               base::Days(kEventMaxDurationDay);\n-      });\n-    }\n-  }\n }\n \n void SafeBrowsingMetricsCollector::AddSafeBrowsingEventToPref(\n     EventType event_type) {\n-  SafeBrowsingState sb_state = GetSafeBrowsingState(*pref_service_);\n-  // Skip the event if Safe Browsing is disabled.\n-  if (sb_state == SafeBrowsingState::NO_SAFE_BROWSING) {\n-    return;\n-  }\n-\n-  AddSafeBrowsingEventAndUserStateToPref(GetUserState(), event_type);\n }\n \n void SafeBrowsingMetricsCollector::AddBypassEventToPref(\n@@ -292,15 +149,7 @@ std::optional<base::Time> SafeBrowsingMe\n std::optional<base::Time> SafeBrowsingMetricsCollector::GetLatestEventTimestamp(\n     EventTypeFilter event_type_filter) {\n   // Events are not logged when Safe Browsing is disabled.\n-  SafeBrowsingState sb_state = GetSafeBrowsingState(*pref_service_);\n-  if (sb_state == SafeBrowsingState::NO_SAFE_BROWSING) {\n     return std::nullopt;\n-  }\n-\n-  const std::optional<Event> event =\n-      GetLatestEventFromEventTypeFilter(GetUserState(), event_type_filter);\n-  return event ? std::optional<base::Time>(event.value().timestamp)\n-               : std::nullopt;\n }\n \n std::optional<base::Time>\n@@ -312,45 +161,15 @@ SafeBrowsingMetricsCollector::GetLatestS\n void SafeBrowsingMetricsCollector::AddSafeBrowsingEventAndUserStateToPref(\n     UserState user_state,\n     EventType event_type) {\n-  ScopedDictPrefUpdate update(pref_service_,\n-                              prefs::kSafeBrowsingEventTimestamps);\n-  base::DictValue& mutable_state_dict = update.Get();\n-  base::DictValue* event_dict =\n-      mutable_state_dict.EnsureDict(UserStateToPrefKey(user_state));\n-  base::ListValue* timestamps =\n-      event_dict->EnsureList(EventTypeToPrefKey(event_type));\n-\n-  // Remove the oldest timestamp if the length of the timestamps hits the limit.\n-  while (timestamps->size() >= kTimestampsMaxLength) {\n-    timestamps->erase(timestamps->begin());\n-  }\n-\n-  timestamps->Append(TimeToPrefValue(base::Time::Now()));\n }\n \n void SafeBrowsingMetricsCollector::OnEnhancedProtectionPrefChanged() {\n-  // Pref changed by policy is not initiated by users, so this case is ignored.\n-  if (IsSafeBrowsingPolicyManaged(*pref_service_)) {\n-    return;\n-  }\n-\n-  if (!pref_service_->GetBoolean(prefs::kSafeBrowsingEnhanced)) {\n-    AddSafeBrowsingEventAndUserStateToPref(UserState::kEnhancedProtection,\n-                                           EventType::USER_STATE_DISABLED);\n-    LogEnhancedProtectionDisabledMetrics();\n-  } else {\n-    AddSafeBrowsingEventAndUserStateToPref(UserState::kEnhancedProtection,\n-                                           EventType::USER_STATE_ENABLED);\n-  }\n }\n \n const base::DictValue*\n SafeBrowsingMetricsCollector::GetSafeBrowsingEventDictionary(\n     UserState user_state) {\n-  const base::DictValue& state_dict =\n-      pref_service_->GetDict(prefs::kSafeBrowsingEventTimestamps);\n-\n-  return state_dict.FindDict(UserStateToPrefKey(user_state));\n+  return nullptr;\n }\n \n std::optional<SafeBrowsingMetricsCollector::Event>\n@@ -477,22 +296,6 @@ int SafeBrowsingMetricsCollector::GetEve\n   });\n }\n \n-UserState SafeBrowsingMetricsCollector::GetUserState() {\n-  if (IsSafeBrowsingPolicyManaged(*pref_service_)) {\n-    return UserState::kManaged;\n-  }\n-\n-  SafeBrowsingState sb_state = GetSafeBrowsingState(*pref_service_);\n-  switch (sb_state) {\n-    case SafeBrowsingState::ENHANCED_PROTECTION:\n-      return UserState::kEnhancedProtection;\n-    case SafeBrowsingState::STANDARD_PROTECTION:\n-      return UserState::kStandardProtection;\n-    case SafeBrowsingState::NO_SAFE_BROWSING:\n-      NOTREACHED() << \"Unexpected Safe Browsing state.\";\n-  }\n-}\n-\n bool SafeBrowsingMetricsCollector::IsBypassEventType(const EventType& type) {\n   switch (type) {\n     case EventType::USER_STATE_DISABLED:\n--- a/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.cc\n+++ b/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.cc\n@@ -25,7 +25,6 @@\n #include \"components/safe_browsing/core/browser/tailored_security_service/tailored_security_service_util.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n #include \"components/safe_browsing/core/common/safe_browsing_policy_handler.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/signin/public/base/oauth_consumer_id.h\"\n #include \"components/signin/public/identity_manager/access_token_info.h\"\n@@ -237,15 +236,6 @@ TailoredSecurityService::TailoredSecurit\n     : identity_manager_(identity_manager),\n       sync_service_(sync_service),\n       prefs_(prefs) {\n-  // `prefs` can be nullptr in unit tests.\n-  if (prefs_) {\n-    pref_registrar_.Init(prefs_);\n-    pref_registrar_.Add(\n-        prefs::kAccountTailoredSecurityUpdateTimestamp,\n-        base::BindRepeating(\n-            &TailoredSecurityService::TailoredSecurityTimestampUpdateCallback,\n-            weak_ptr_factory_.GetWeakPtr()));\n-  }\n }\n \n TailoredSecurityService::~TailoredSecurityService() {\n@@ -415,34 +405,6 @@ void TailoredSecurityService::MaybeNotif\n     return;\n   }\n \n-  // TODO(crbug.com/483786422): Update the preference wiring in relevant each\n-  // generated.*pref class that acts whenever the settings bundle setting\n-  // changes.\n-  bool is_enhanced_protection_enabled =\n-      base::FeatureList::IsEnabled(safe_browsing::kBundledSecuritySettings)\n-          ? (GetSecurityBundleSetting(*prefs()) ==\n-             SecuritySettingsBundleSetting::ENHANCED)\n-          : IsEnhancedProtectionEnabled(*prefs());\n-  if (is_enabled && is_enhanced_protection_enabled) {\n-    RecordEnabledNotificationResult(\n-        TailoredSecurityNotificationResult::kEnhancedProtectionAlreadyEnabled);\n-    SaveRetryState(TailoredSecurityRetryState::NO_RETRY_NEEDED);\n-    return;\n-  }\n-\n-  if (is_enabled && !is_enhanced_protection_enabled) {\n-    for (auto& observer : observer_list_) {\n-      observer.OnSyncNotificationMessageRequest(true);\n-    }\n-  }\n-\n-  if (!is_enabled && is_enhanced_protection_enabled &&\n-      prefs()->GetBoolean(\n-          prefs::kEnhancedProtectionEnabledViaTailoredSecurity)) {\n-    for (auto& observer : observer_list_) {\n-      observer.OnSyncNotificationMessageRequest(false);\n-    }\n-  }\n }\n \n bool TailoredSecurityService::HistorySyncEnabledForUser() {\n--- a/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service_observer_util.cc\n+++ b/components/safe_browsing/core/browser/tailored_security_service/tailored_security_service_observer_util.cc\n@@ -8,7 +8,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.h\"\n #include \"components/safe_browsing/core/common/safe_browsing_policy_handler.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/sync/base/user_selectable_type.h\"\n #include \"components/sync/service/sync_service.h\"\n #include \"components/sync/service/sync_user_settings.h\"\n@@ -17,39 +16,12 @@\n namespace safe_browsing {\n \n bool CanQueryTailoredSecurityForUrl(GURL url) {\n-  return google_util::IsGoogleDomainUrl(\n-             url, google_util::ALLOW_SUBDOMAIN,\n-             google_util::ALLOW_NON_STANDARD_PORTS) ||\n-         google_util::IsYoutubeDomainUrl(url, google_util::ALLOW_SUBDOMAIN,\n-                                         google_util::ALLOW_NON_STANDARD_PORTS);\n+  return false;\n }\n \n bool CanShowUnconsentedTailoredSecurityDialog(syncer::SyncService* sync_service,\n                                               PrefService* prefs) {\n-  if (IsEnhancedProtectionEnabled(*prefs))\n     return false;\n-\n-  if (!sync_service) {\n-    return false;\n-  }\n-\n-  bool sync_history_enabled =\n-      sync_service->GetUserSettings()->GetSelectedTypes().Has(\n-          syncer::UserSelectableType::kHistory);\n-  if (sync_history_enabled) {\n-    return false;\n-  }\n-\n-  if (prefs->GetBoolean(prefs::kAccountTailoredSecurityShownNotification)) {\n-    return false;\n-  }\n-\n-  if (SafeBrowsingPolicyHandler::IsSafeBrowsingProtectionLevelSetByPolicy(\n-          prefs)) {\n-    return false;\n-  }\n-\n-  return true;\n }\n \n }  // namespace safe_browsing\n--- a/components/safe_browsing/core/browser/web_ui/safe_browsing_ui_handler.cc\n+++ b/components/safe_browsing/core/browser/web_ui/safe_browsing_ui_handler.cc\n@@ -30,21 +30,19 @@ SafeBrowsingUIHandler::~SafeBrowsingUIHa\n void SafeBrowsingUIHandler::GetExperiments(const base::ListValue& args) {\n   DCHECK(!args.empty());\n   const std::string& callback_id = args[0].GetString();\n-  ResolveCallback(callback_id, GetFeatureStatusList());\n+  ResolveCallback(callback_id, base::ListValue());\n }\n \n void SafeBrowsingUIHandler::GetPrefs(const base::ListValue& args) {\n   DCHECK(!args.empty());\n   const std::string& callback_id = args[0].GetString();\n-  ResolveCallback(callback_id,\n-                  safe_browsing::GetSafeBrowsingPreferencesList(user_prefs()));\n+  ResolveCallback(callback_id, base::ListValue());\n }\n \n void SafeBrowsingUIHandler::GetPolicies(const base::ListValue& args) {\n   DCHECK(!args.empty());\n   const std::string& callback_id = args[0].GetString();\n-  ResolveCallback(callback_id,\n-                  safe_browsing::GetSafeBrowsingPoliciesList(user_prefs()));\n+  ResolveCallback(callback_id, base::ListValue());\n }\n \n void SafeBrowsingUIHandler::GetCookie(const base::ListValue& args) {\n--- a/components/safe_browsing/core/common/BUILD.gn\n+++ b/components/safe_browsing/core/common/BUILD.gn\n@@ -5,22 +5,8 @@\n import(\"//components/safe_browsing/buildflags.gni\")\n import(\"//mojo/public/tools/bindings/mojom.gni\")\n \n-static_library(\"safe_browsing_prefs\") {\n-  sources = [\n-    \"safe_browsing_prefs.cc\",\n-    \"safe_browsing_prefs.h\",\n-  ]\n-\n-  configs += [ \"//build/config/compiler:wexit_time_destructors\" ]\n-\n-  deps = [\n-    \":features\",\n-    \"//components/pref_registry\",\n-    \"//components/prefs\",\n-    \"//net\",\n-  ]\n-\n-  public_deps = [ \"//base\" ]\n+group(\"safe_browsing_prefs\") {\n+  # SafeBrowsing prefs are disabled\n }\n \n source_set(\"safe_browsing_policy_handler\") {\n--- a/components/safe_browsing/core/common/hashprefix_realtime/hash_realtime_utils.cc\n+++ b/components/safe_browsing/core/common/hashprefix_realtime/hash_realtime_utils.cc\n@@ -12,7 +12,6 @@\n #include \"build/branding_buildflags.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/utils.h\"\n #include \"components/variations/pref_names.h\"\n #include \"components/variations/service/variations_service.h\"\n@@ -102,71 +101,13 @@ HashRealTimeSelection DetermineHashRealT\n     std::optional<std::string> latest_country,\n     bool log_usage_histograms,\n     bool are_background_lookups_allowed) {\n-  // All prefs used in this method must match the ones returned by\n-  // |GetHashRealTimeSelectionConfiguringPrefs| so that consumers listening for\n-  // changes can receive them correctly.\n-  bool only_background_lookup_eligible =\n-      base::FeatureList::IsEnabled(kHashPrefixRealTimeLookupsSamplePing) &&\n-      safe_browsing::GetSafeBrowsingState(*prefs) ==\n-          SafeBrowsingState::ENHANCED_PROTECTION &&\n-      are_background_lookups_allowed;\n-\n-  struct Requirement {\n-    std::string failed_requirement_histogram_suffix;\n-    bool passes_requirement;\n-  } requirements[] = {\n-      {\"IneligibleForSessionOrLocation\",\n-       hash_realtime_utils::IsHashRealTimeLookupEligibleInSessionAndLocation(\n-           latest_country)},\n-      {\"OffTheRecord\", !is_off_the_record},\n-      {\"IneligibleForSafeBrowsingState\",\n-       safe_browsing::GetSafeBrowsingState(*prefs) ==\n-               SafeBrowsingState::STANDARD_PROTECTION ||\n-           only_background_lookup_eligible},\n-      {\"NotAllowedByPolicy\",\n-       safe_browsing::AreHashPrefixRealTimeLookupsAllowedByPolicy(*prefs)}};\n-  bool can_do_lookup = true;\n-  for (const auto& requirement : requirements) {\n-    if (!requirement.passes_requirement) {\n-      can_do_lookup = false;\n-    }\n-    if (log_usage_histograms) {\n-      base::UmaHistogramBoolean(\n-          base::StrCat({\"SafeBrowsing.HPRT.Ineligible.\",\n-                        requirement.failed_requirement_histogram_suffix}),\n-          !requirement.passes_requirement);\n-    }\n-  }\n-  if (log_usage_histograms) {\n-    base::UmaHistogramBoolean(\n-        \"SafeBrowsing.HPRT.Ineligible.NoGoogleChromeBranding\",\n-        !HasGoogleChromeBranding());\n-    base::UmaHistogramBoolean(\n-        \"SafeBrowsing.HPRT.Ineligible.FeatureOff\",\n-        !base::FeatureList::IsEnabled(kHashPrefixRealTimeLookups));\n-    base::UmaHistogramBoolean(\n-        \"SafeBrowsing.HPRT.Ineligible.IneligibleForLocation\",\n-        !IsHashRealTimeLookupEligibleInLocation(latest_country));\n-  }\n-  return can_do_lookup\n-             ?\n-#if BUILDFLAG(IS_ANDROID)\n-             (only_background_lookup_eligible\n-                  ? HashRealTimeSelection::kDatabaseManagerBackgroundOnly\n-                  : HashRealTimeSelection::kDatabaseManager)\n-#else\n-             (only_background_lookup_eligible\n-                  ? HashRealTimeSelection::kHashRealTimeServiceBackgroundOnly\n-                  : HashRealTimeSelection::kHashRealTimeService)\n-#endif\n-             : HashRealTimeSelection::kNone;\n+  return HashRealTimeSelection::kNone;\n }\n \n HashRealTimeSelectionConfiguringPrefs\n GetHashRealTimeSelectionConfiguringPrefs() {\n   std::vector<const char*> profile_prefs = {\n-      prefs::kSafeBrowsingEnabled, prefs::kSafeBrowsingEnhanced,\n-      prefs::kHashPrefixRealTimeChecksAllowedByPolicy};\n+      };\n   // |kVariationsCountry| is used by |VariationsService::GetLatestCountry|.\n   std::vector<const char*> local_state_prefs = {\n       variations::prefs::kVariationsCountry};\n--- a/components/safe_browsing/core/common/safe_browsing_policy_handler.cc\n+++ b/components/safe_browsing/core/common/safe_browsing_policy_handler.cc\n@@ -13,7 +13,6 @@\n #include \"components/policy/policy_constants.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/prefs/pref_value_map.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/strings/grit/components_strings.h\"\n \n namespace safe_browsing {\n@@ -181,34 +180,14 @@ void SafeBrowsingPolicyHandler::ApplyPol\n \n   if (!value.has_value())\n     return;\n-\n-  switch (value.value()) {\n-    case ProtectionLevel::kNoProtection:\n-      prefs->SetBoolean(prefs::kSafeBrowsingEnabled, false);\n-      prefs->SetBoolean(prefs::kSafeBrowsingEnhanced, false);\n-      return;\n-    case ProtectionLevel::kStandardProtection:\n-      prefs->SetBoolean(prefs::kSafeBrowsingEnabled, true);\n-      prefs->SetBoolean(prefs::kSafeBrowsingEnhanced, false);\n-      return;\n-    case ProtectionLevel::kEnhancedProtection:\n-      // |kSafeBrowsingEnhanced| is enabled, but so is\n-      // |kSafeBrowsingEnabled| because the extensions API should see Safe\n-      // Browsing as enabled. See https://crbug.com/1064722 for more background.\n-      prefs->SetBoolean(prefs::kSafeBrowsingEnabled, true);\n-      prefs->SetBoolean(prefs::kSafeBrowsingEnhanced, true);\n-      return;\n-  }\n }\n \n // static\n SafeBrowsingPolicyHandler::ProtectionLevel\n SafeBrowsingPolicyHandler::GetSafeBrowsingProtectionLevel(\n     const PrefService* pref_sevice) {\n-  bool safe_browsing_enhanced =\n-      pref_sevice->GetBoolean(prefs::kSafeBrowsingEnhanced);\n-  bool safe_browsing_enabled =\n-      pref_sevice->GetBoolean(prefs::kSafeBrowsingEnabled);\n+  bool safe_browsing_enhanced = false;\n+  bool safe_browsing_enabled = false;\n \n   if (safe_browsing_enhanced)\n     return ProtectionLevel::kEnhancedProtection;\n@@ -222,10 +201,8 @@ SafeBrowsingPolicyHandler::GetSafeBrowsi\n // static\n bool SafeBrowsingPolicyHandler::IsSafeBrowsingProtectionLevelSetByPolicy(\n     const PrefService* pref_service) {\n-  bool is_safe_browsing_enabled_managed =\n-      pref_service->IsManagedPreference(prefs::kSafeBrowsingEnabled);\n-  bool is_safe_browsing_enhanced_managed =\n-      pref_service->IsManagedPreference(prefs::kSafeBrowsingEnhanced);\n+  bool is_safe_browsing_enabled_managed = false;\n+  bool is_safe_browsing_enhanced_managed = false;\n   DCHECK_EQ(is_safe_browsing_enabled_managed,\n             is_safe_browsing_enhanced_managed);\n   return is_safe_browsing_enabled_managed && is_safe_browsing_enhanced_managed;\n--- a/components/safe_browsing/core/common/safe_browsing_prefs_unittest.cc\n+++ b/components/safe_browsing/core/common/safe_browsing_prefs_unittest.cc\n@@ -2,7 +2,6 @@\n // Use of this source code is governed by a BSD-style license that can be\n // found in the LICENSE file.\n \n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n \n #include <string>\n \n--- a/components/safety_check/safety_check.cc\n+++ b/components/safety_check/safety_check.cc\n@@ -4,8 +4,6 @@\n \n #include \"components/safety_check/safety_check.h\"\n \n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n-\n namespace {\n \n const base::TimeDelta kUnusedSitePermissionsRevocationCleanUpThreshold =\n@@ -20,21 +18,6 @@ base::TimeDelta GetUnusedSitePermissions\n }\n \n SafeBrowsingStatus CheckSafeBrowsing(PrefService* pref_service) {\n-  const PrefService::Preference* enabled_pref =\n-      pref_service->FindPreference(prefs::kSafeBrowsingEnabled);\n-  bool is_sb_enabled = pref_service->GetBoolean(prefs::kSafeBrowsingEnabled);\n-  bool is_sb_managed = enabled_pref->IsManaged();\n-\n-  if (is_sb_enabled && pref_service->GetBoolean(prefs::kSafeBrowsingEnhanced))\n-    return SafeBrowsingStatus::kEnabledEnhanced;\n-  if (is_sb_enabled && is_sb_managed)\n-    return SafeBrowsingStatus::kEnabledStandard;\n-  if (is_sb_enabled && !is_sb_managed)\n-    return SafeBrowsingStatus::kEnabledStandardAvailableEnhanced;\n-  if (is_sb_managed)\n-    return SafeBrowsingStatus::kDisabledByAdmin;\n-  if (enabled_pref->IsExtensionControlled())\n-    return SafeBrowsingStatus::kDisabledByExtension;\n   return SafeBrowsingStatus::kDisabled;\n }\n \n--- a/components/security_interstitials/content/bad_clock_blocking_page.cc\n+++ b/components/security_interstitials/content/bad_clock_blocking_page.cc\n@@ -7,7 +7,6 @@\n #include <utility>\n \n #include \"base/strings/string_number_conversions.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/content/security_interstitial_page.h\"\n #include \"components/security_interstitials/core/bad_clock_ui.h\"\n--- a/components/security_interstitials/content/captive_portal_blocking_page.cc\n+++ b/components/security_interstitials/content/captive_portal_blocking_page.cc\n@@ -15,7 +15,6 @@\n #include \"build/build_config.h\"\n #include \"components/captive_portal/core/captive_portal_detector.h\"\n #include \"components/captive_portal/core/captive_portal_metrics.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/core/controller_client.h\"\n #include \"components/security_interstitials/core/metrics_helper.h\"\n--- a/components/security_interstitials/content/mitm_software_blocking_page.cc\n+++ b/components/security_interstitials/content/mitm_software_blocking_page.cc\n@@ -7,7 +7,6 @@\n #include <utility>\n \n #include \"base/strings/string_number_conversions.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/content/security_interstitial_page.h\"\n #include \"components/security_interstitials/core/metrics_helper.h\"\n--- a/components/security_interstitials/content/security_interstitial_controller_client.cc\n+++ b/components/security_interstitials/content/security_interstitial_controller_client.cc\n@@ -8,7 +8,6 @@\n \n #include \"components/prefs/pref_service.h\"\n #include \"components/safe_browsing/core/common/features.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/safe_browsing/core/common/safebrowsing_referral_methods.h\"\n #include \"components/security_interstitials/content/security_interstitial_page.h\"\n #include \"components/security_interstitials/content/security_interstitial_tab_helper.h\"\n@@ -171,11 +170,6 @@ PrefService* SecurityInterstitialControl\n   return prefs_;\n }\n \n-const std::string\n-SecurityInterstitialControllerClient::GetExtendedReportingPrefName() const {\n-  return prefs::kSafeBrowsingScoutReportingEnabled;\n-}\n-\n bool SecurityInterstitialControllerClient::CanLaunchDateAndTimeSettings() {\n   NOTREACHED();\n }\n--- a/components/security_interstitials/content/security_interstitial_controller_client.h\n+++ b/components/security_interstitials/content/security_interstitial_controller_client.h\n@@ -62,8 +62,6 @@ class SecurityInterstitialControllerClie\n   bool CanGoBackBeforeNavigation() override;\n \n  protected:\n-  // security_interstitials::ControllerClient overrides.\n-  const std::string GetExtendedReportingPrefName() const override;\n   content::WebContents* web_contents() { return &*web_contents_; }\n   content::RenderFrameHost* InterstitialRenderFrameHost() const;\n \n--- a/components/security_interstitials/content/security_interstitial_page.cc\n+++ b/components/security_interstitials/content/security_interstitial_page.cc\n@@ -11,7 +11,6 @@\n #include \"base/values.h\"\n #include \"components/grit/components_resources.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/core/common_string_util.h\"\n #include \"components/security_interstitials/core/metrics_helper.h\"\n@@ -31,13 +30,6 @@ SecurityInterstitialPage::SecurityInters\n       create_view_(true),\n       on_show_extended_reporting_pref_value_(false),\n       controller_(std::move(controller)) {\n-  // Determine if any prefs need to be updated prior to showing the security\n-  // interstitial. Note that some content embedders (such as Android WebView)\n-  // uses security interstitials without a prefservice.\n-  if (controller_->GetPrefService()) {\n-    safe_browsing::UpdatePrefsBeforeSecurityInterstitial(\n-        controller_->GetPrefService());\n-  }\n   SetUpMetrics();\n }\n \n@@ -91,13 +83,7 @@ SecurityInterstitialControllerClient* Se\n }\n \n void SecurityInterstitialPage::SetUpMetrics() {\n-  // Remember the initial state of the extended reporting pref, to be compared\n-  // to the same data when the interstitial is closed.\n-  PrefService* prefs = controller_->GetPrefService();\n-  if (prefs) {\n-    on_show_extended_reporting_pref_value_ =\n-        safe_browsing::IsExtendedReportingEnabled(*prefs);\n-  }\n+  on_show_extended_reporting_pref_value_ = false;\n }\n \n std::u16string SecurityInterstitialPage::GetFormattedHostName() const {\n--- a/components/security_interstitials/content/ssl_blocking_page.cc\n+++ b/components/security_interstitials/content/ssl_blocking_page.cc\n@@ -11,7 +11,6 @@\n #include \"base/functional/callback_helpers.h\"\n #include \"base/strings/string_number_conversions.h\"\n #include \"base/time/time.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/security_interstitials/content/security_interstitial_controller_client.h\"\n #include \"components/security_interstitials/content/security_interstitial_page.h\"\n #include \"components/security_interstitials/core/controller_client.h\"\n--- a/components/security_interstitials/core/controller_client.cc\n+++ b/components/security_interstitials/core/controller_client.cc\n@@ -36,7 +36,6 @@ MetricsHelper* ControllerClient::metrics\n \n void ControllerClient::SetReportingPreference(bool report) {\n   DCHECK(GetPrefService());\n-  GetPrefService()->SetBoolean(GetExtendedReportingPrefName(), report);\n   metrics_helper_->RecordUserInteraction(\n       report ? MetricsHelper::SET_EXTENDED_REPORTING_ENABLED\n              : MetricsHelper::SET_EXTENDED_REPORTING_DISABLED);\n--- a/components/security_interstitials/core/controller_client.h\n+++ b/components/security_interstitials/core/controller_client.h\n@@ -149,9 +149,6 @@ class ControllerClient {\n   virtual void OpenReportingPrivacyInNewTab() {}\n   virtual void OpenWhitepaperInNewTab() {}\n \n- protected:\n-  virtual const std::string GetExtendedReportingPrefName() const = 0;\n-\n  private:\n   std::unique_ptr<MetricsHelper> metrics_helper_;\n   // Link to the help center.\n--- a/components/send_tab_to_self/entry_point_display_reason.cc\n+++ b/components/send_tab_to_self/entry_point_display_reason.cc\n@@ -7,7 +7,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/send_tab_to_self/send_tab_to_self_model.h\"\n #include \"components/send_tab_to_self/send_tab_to_self_sync_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/sync/service/sync_service.h\"\n #include \"components/sync/service/sync_user_settings.h\"\n@@ -19,11 +18,7 @@ namespace {\n \n bool ShouldOfferSignin(syncer::SyncService* sync_service,\n                        PrefService* pref_service) {\n-  return pref_service->GetBoolean(prefs::kSigninAllowed) &&\n-         sync_service->GetAccountInfo().IsEmpty() &&\n-         !sync_service->HasDisableReason(\n-             syncer::SyncService::DISABLE_REASON_ENTERPRISE_POLICY) &&\n-         !sync_service->IsLocalSyncEnabled();\n+  return false;\n }\n \n }  // namespace\n--- a/components/signin/core/browser/account_investigator.cc\n+++ b/components/signin/core/browser/account_investigator.cc\n@@ -13,7 +13,6 @@\n #include \"components/prefs/pref_registry_simple.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/tribool.h\"\n #include \"google_apis/gaia/gaia_auth_util.h\"\n@@ -64,28 +63,18 @@ AccountInvestigator::AccountInvestigator\n     PrefService* pref_service,\n     signin::IdentityManager* identity_manager)\n     : pref_service_(pref_service),\n-      identity_manager_(identity_manager),\n-      timer_(pref_service,\n-             prefs::kGaiaCookiePeriodicReportTime,\n-             kPeriodicReportingInterval,\n-             base::BindRepeating(&AccountInvestigator::TryPeriodicReport,\n-                                 base::Unretained(this))) {}\n+      identity_manager_(identity_manager) {}\n \n AccountInvestigator::~AccountInvestigator() = default;\n \n // static\n void AccountInvestigator::RegisterPrefs(PrefRegistrySimple* registry) {\n-  registry->RegisterStringPref(prefs::kGaiaCookieHash, std::string());\n-  registry->RegisterDoublePref(prefs::kGaiaCookieChangedTime, 0);\n-  registry->RegisterTimePref(prefs::kGaiaCookiePeriodicReportTime,\n-                             base::Time());\n }\n \n void AccountInvestigator::Initialize() {\n   identity_manager_->AddObserver(this);\n   previously_authenticated_ =\n       identity_manager_->HasPrimaryAccount(signin::ConsentLevel::kSignin);\n-  timer_.Start();\n }\n \n void AccountInvestigator::Shutdown() {\n@@ -111,7 +100,7 @@ void AccountInvestigator::OnAccountsInCo\n   // a valid cached ListAccounts response ready for us. Or even both of these\n   // could be simultaneously happening, although this should be extremely\n   // infrequent.\n-  const std::string old_hash(pref_service_->GetString(prefs::kGaiaCookieHash));\n+  const std::string old_hash;\n   const std::string new_hash(\n       HashAccounts(signed_in_accounts, signed_out_accounts));\n   const bool currently_authenticated =\n@@ -119,9 +108,6 @@ void AccountInvestigator::OnAccountsInCo\n   if (old_hash != new_hash) {\n     SharedCookieJarReport(signed_in_accounts, signed_out_accounts, Time::Now(),\n                           ReportingType::ON_CHANGE);\n-    pref_service_->SetString(prefs::kGaiaCookieHash, new_hash);\n-    pref_service_->SetDouble(prefs::kGaiaCookieChangedTime,\n-                             Time::Now().InSecondsFSinceUnixEpoch());\n   } else if (currently_authenticated && !previously_authenticated_) {\n     SignedInAccountRelationReport(signed_in_accounts, signed_out_accounts,\n                                   ReportingType::ON_CHANGE);\n@@ -251,8 +237,7 @@ void AccountInvestigator::SharedCookieJa\n     const std::vector<ListedAccount>& signed_out_accounts,\n     const Time now,\n     const ReportingType type) {\n-  const Time last_changed = Time::FromSecondsSinceUnixEpoch(\n-      pref_service_->GetDouble(prefs::kGaiaCookieChangedTime));\n+  const Time last_changed = Time::Now();\n   base::TimeDelta stable_age;\n   if (!last_changed.is_null()) {\n     stable_age = std::max(now - last_changed, base::TimeDelta());\n--- a/components/signin/core/browser/account_investigator.h\n+++ b/components/signin/core/browser/account_investigator.h\n@@ -119,8 +119,6 @@ class AccountInvestigator : public Keyed\n   raw_ptr<PrefService> pref_service_;\n   raw_ptr<signin::IdentityManager> identity_manager_;\n \n-  // Handles invoking our periodic logic at the right time.\n-  signin::PersistentRepeatingTimer timer_;\n \n   // If the GaiaCookieManagerService hasn't already cached the cookie data, it\n   // will not be able to return enough information for us to always perform\n--- a/components/signin/core/browser/account_investigator_unittest.cc\n+++ b/components/signin/core/browser/account_investigator_unittest.cc\n@@ -14,7 +14,6 @@\n #include \"build/build_config.h\"\n #include \"components/prefs/pref_registry_simple.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_capabilities_test_mutator.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/identity_test_environment.h\"\n--- a/components/signin/core/browser/account_reconcilor.cc\n+++ b/components/signin/core/browser/account_reconcilor.cc\n@@ -30,7 +30,6 @@\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_client.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/accounts_cookie_mutator.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n--- a/components/signin/core/browser/account_reconcilor_unittest.cc\n+++ b/components/signin/core/browser/account_reconcilor_unittest.cc\n@@ -37,7 +37,6 @@\n #include \"components/signin/public/base/list_accounts_test_utils.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/base/test_signin_client.h\"\n #include \"components/signin/public/identity_manager/account_capabilities_test_mutator.h\"\n--- a/components/signin/core/browser/dice_account_reconcilor_delegate.cc\n+++ b/components/signin/core/browser/dice_account_reconcilor_delegate.cc\n@@ -13,7 +13,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/accounts_mutator.h\"\n--- a/components/signin/core/browser/signin_metrics_service.cc\n+++ b/components/signin/core/browser/signin_metrics_service.cc\n@@ -19,7 +19,6 @@\n #include \"components/signin/core/browser/active_primary_accounts_metrics_recorder.h\"\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n@@ -482,23 +481,6 @@ void SigninMetricsService::OnRefreshToke\n #if BUILDFLAG(ENABLE_DICE_SUPPORT)\n \n void SigninMetricsService::RecordExplicitSigninMigrationStatus() {\n-  ExplicitSigninMigration explicit_signin_migration =\n-      ExplicitSigninMigration::kMigratedSignedOut;\n-  const bool explicit_signin_pref =\n-      pref_service_->GetBoolean(prefs::kExplicitBrowserSignin);\n-  if (identity_manager_->HasPrimaryAccount(signin::ConsentLevel::kSync)) {\n-    explicit_signin_migration =\n-        explicit_signin_pref ? ExplicitSigninMigration::kMigratedSyncing\n-                             : ExplicitSigninMigration::kNotMigratedSyncing;\n-  } else if (identity_manager_->HasPrimaryAccount(\n-                 signin::ConsentLevel::kSignin)) {\n-    explicit_signin_migration =\n-        explicit_signin_pref ? ExplicitSigninMigration::kMigratedSignedIn\n-                             : ExplicitSigninMigration::kNotMigratedSignedIn;\n-  }\n-\n-  base::UmaHistogramEnumeration(kExplicitSigninMigrationHistogramName,\n-                                explicit_signin_migration);\n }\n \n void SigninMetricsService::MaybeRecordMetricsForPromoShowCountAtSignin(\n@@ -508,37 +490,10 @@ void SigninMetricsService::MaybeRecordMe\n       GetTimeOfWebSignin(account_info.account_id).has_value();\n   switch (access_point) {\n     case signin_metrics::AccessPoint::kAddressBubble:\n-      base::UmaHistogramCustomCounts(\n-          \"Signin.ShowCountAtSignin.AddressSigninPromo\",\n-          is_from_web_signin\n-              ? SigninPrefs(pref_service_.get())\n-                    .GetAddressSigninPromoImpressionCount(account_info.gaia)\n-              : pref_service_->GetInteger(\n-                    prefs::\n-                        kAddressSignInPromoShownCountPerProfileForLimitsExperiment),\n-          /*min=*/1, /*exclusive_max=*/10, /*buckets=*/10);\n       break;\n     case signin_metrics::AccessPoint::kPasswordBubble:\n-      base::UmaHistogramCustomCounts(\n-          \"Signin.ShowCountAtSignin.PasswordSigninPromo\",\n-          is_from_web_signin\n-              ? SigninPrefs(pref_service_.get())\n-                    .GetPasswordSigninPromoImpressionCount(account_info.gaia)\n-              : pref_service_->GetInteger(\n-                    prefs::\n-                        kPasswordSignInPromoShownCountPerProfileForLimitsExperiment),\n-          /*min=*/1, /*exclusive_max=*/10, /*buckets=*/10);\n       break;\n     case signin_metrics::AccessPoint::kBookmarkBubble:\n-      base::UmaHistogramCustomCounts(\n-          \"Signin.ShowCountAtSignin.BookmarkSigninPromo\",\n-          is_from_web_signin\n-              ? SigninPrefs(pref_service_.get())\n-                    .GetBookmarkSigninPromoImpressionCount(account_info.gaia)\n-              : pref_service_->GetInteger(\n-                    prefs::\n-                        kBookmarkSignInPromoShownCountPerProfileForLimitsExperiment),\n-          /*min=*/1, /*exclusive_max=*/10, /*buckets=*/10);\n       break;\n     case signin_metrics::AccessPoint::kChromeSigninInterceptBubble: {\n       const int uno_bubble_reprompt_count =\n--- a/components/signin/internal/identity_manager/account_tracker_service.cc\n+++ b/components/signin/internal/identity_manager/account_tracker_service.cc\n@@ -35,7 +35,6 @@\n #include \"components/signin/internal/identity_manager/account_capabilities_constants.h\"\n #include \"components/signin/internal/identity_manager/account_info_util.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/account_capabilities.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/identity_manager/tribool.h\"\n@@ -128,11 +127,6 @@ AccountTrackerService::~AccountTrackerSe\n \n // static\n void AccountTrackerService::RegisterPrefs(PrefRegistrySimple* registry) {\n-  registry->RegisterListPref(prefs::kAccountInfo);\n-#if BUILDFLAG(IS_CHROMEOS)\n-  registry->RegisterIntegerPref(prefs::kAccountIdMigrationState,\n-                                AccountTrackerService::MIGRATION_NOT_STARTED);\n-#endif\n }\n \n void AccountTrackerService::Initialize(PrefService* pref_service,\n@@ -491,14 +485,12 @@ AccountTrackerService::ComputeNewMigrati\n void AccountTrackerService::SetMigrationState(AccountIdMigrationState state) {\n   DCHECK(state != MIGRATION_DONE || AreAllAccountsMigrated())\n       << \"state: \" << state << \", accounts = \" << AccountsToString(accounts_);\n-  pref_service_->SetInteger(prefs::kAccountIdMigrationState, state);\n }\n \n // static\n AccountTrackerService::AccountIdMigrationState\n AccountTrackerService::GetMigrationState(const PrefService* pref_service) {\n-  return static_cast<AccountTrackerService::AccountIdMigrationState>(\n-      pref_service->GetInteger(prefs::kAccountIdMigrationState));\n+  return MIGRATION_NOT_STARTED;\n }\n #endif  // BUILDFLAG(IS_CHROMEOS)\n \n@@ -577,28 +569,6 @@ void AccountTrackerService::OnAccountIma\n     const CoreAccountId& account_id,\n     const std::string& image_url_with_size,\n     bool success) {\n-  if (!success || !pref_service_) {\n-    return;\n-  }\n-\n-  base::DictValue* dict = nullptr;\n-  ScopedListPrefUpdate update(pref_service_, prefs::kAccountInfo);\n-  for (base::Value& value : *update) {\n-    base::DictValue* maybe_dict = value.GetIfDict();\n-    if (maybe_dict) {\n-      const std::string* account_key =\n-          maybe_dict->FindString(signin::kAccountIdKey);\n-      if (account_key && *account_key == account_id.ToString()) {\n-        dict = maybe_dict;\n-        break;\n-      }\n-    }\n-  }\n-\n-  if (!dict) {\n-    return;\n-  }\n-  dict->Set(signin::kLastDownloadedImageURLWithSizeKey, image_url_with_size);\n }\n \n void AccountTrackerService::RemoveAccountImageFromDisk(\n@@ -611,106 +581,17 @@ void AccountTrackerService::RemoveAccoun\n }\n \n void AccountTrackerService::LoadFromPrefs() {\n-  const base::ListValue& list = pref_service_->GetList(prefs::kAccountInfo);\n-  std::set<CoreAccountId> to_remove;\n-  for (size_t i = 0; i < list.size(); ++i) {\n-    const base::DictValue* dict = list[i].GetIfDict();\n-    if (!dict) {\n-      continue;\n-    }\n-\n-    const std::string* account_key = dict->FindString(signin::kAccountIdKey);\n-    if (!account_key) {\n-      continue;\n-    }\n-\n-    // Ignore empty account ids.\n-    if (account_key->empty()) {\n-      to_remove.insert(CoreAccountId());\n-      continue;\n-    }\n-    // Ignore incorrectly persisted non-canonical account ids.\n-    if (account_key->find('@') != std::string::npos &&\n-        *account_key != gaia::CanonicalizeEmail(*account_key)) {\n-      to_remove.insert(CoreAccountId::FromString(*account_key));\n-      continue;\n-    }\n-\n-    CoreAccountId account_id = CoreAccountId::FromString(*account_key);\n-    StartTrackingAccount(account_id);\n-    AccountInfo& account_info = accounts_[account_id];\n-    std::optional<AccountInfo> deserialized_account_info =\n-        signin::DeserializeAccountInfo(*dict);\n-    if (deserialized_account_info) {\n-      account_info = std::move(*deserialized_account_info);\n-    }\n-    account_info.account_id = account_id;\n-\n-    if (!account_info.gaia.empty()) {\n-      NotifyAccountUpdated(account_info);\n-    }\n-  }\n-\n-  // Remove any obsolete prefs.\n-  for (auto account_id : to_remove) {\n-    AccountInfo account_info;\n-    account_info.account_id = account_id;\n-    RemoveFromPrefs(account_info);\n-    RemoveAccountImageFromDisk(account_id);\n-  }\n-\n-#if BUILDFLAG(IS_CHROMEOS)\n-  if (GetMigrationState() != MIGRATION_DONE) {\n-    const AccountIdMigrationState new_state = ComputeNewMigrationState();\n-    SetMigrationState(new_state);\n-\n-    if (new_state == MIGRATION_IN_PROGRESS) {\n-      MigrateToGaiaId();\n-    }\n-  }\n-  DCHECK(GetMigrationState() != MIGRATION_DONE || AreAllAccountsMigrated())\n-      << \"state: \" << (int)GetMigrationState()\n-      << \", accounts = \" << AccountsToString(accounts_);\n-\n-  UMA_HISTOGRAM_ENUMERATION(\"Signin.AccountTracker.GaiaIdMigrationState\",\n-                            GetMigrationState(), NUM_MIGRATION_STATES);\n-#else\n-  DCHECK(AreAllAccountsMigrated())\n-      << \"accounts = \" << AccountsToString(accounts_);\n-#endif  // BUILDFLAG(IS_CHROMEOS)\n-\n-  UMA_HISTOGRAM_COUNTS_100(\"Signin.AccountTracker.CountOfLoadedAccounts\",\n-                           accounts_.size());\n }\n \n base::DictValue* AccountTrackerService::FindOrCreateDictForAccount(\n     ScopedListPrefUpdate& update,\n     const CoreAccountId& account_id) {\n-  for (base::Value& value : *update) {\n-    base::DictValue* dict = value.GetIfDict();\n-    if (dict) {\n-      const std::string* account_key = dict->FindString(signin::kAccountIdKey);\n-      if (account_key && *account_key == account_id.ToString()) {\n-        return dict;\n-      }\n-    }\n-  }\n-\n   update->Append(base::DictValue());\n   base::DictValue* new_dict = &update->back().GetDict();\n-  new_dict->Set(signin::kAccountIdKey, account_id.ToString());\n   return new_dict;\n }\n \n void AccountTrackerService::SaveToPrefs(const AccountInfo& account_info) {\n-  if (!pref_service_) {\n-    return;\n-  }\n-\n-  ScopedListPrefUpdate update(pref_service_, prefs::kAccountInfo);\n-  base::DictValue* dict =\n-      FindOrCreateDictForAccount(update, account_info.account_id);\n-  dict->Merge(signin::SerializeAccountInfo(account_info));\n }\n \n void AccountTrackerService::RemoveFromPrefs(const AccountInfo& account_info) {\n@@ -718,16 +599,7 @@ void AccountTrackerService::RemoveFromPr\n     return;\n   }\n \n-  ScopedListPrefUpdate update(pref_service_, prefs::kAccountInfo);\n   const std::string account_id = account_info.account_id.ToString();\n-  update->EraseIf([&account_id](const base::Value& value) {\n-    if (!value.is_dict()) {\n-      return false;\n-    }\n-    const std::string* account_key =\n-        value.GetDict().FindString(signin::kAccountIdKey);\n-    return account_key && *account_key == account_id;\n-  });\n }\n \n CoreAccountId AccountTrackerService::PickAccountIdForAccount(\n--- a/components/signin/internal/identity_manager/account_tracker_service_unittest.cc\n+++ b/components/signin/internal/identity_manager/account_tracker_service_unittest.cc\n@@ -30,7 +30,6 @@\n #include \"components/signin/internal/identity_manager/fake_profile_oauth2_token_service.h\"\n #include \"components/signin/public/base/avatar_icon_util.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/test_signin_client.h\"\n #include \"components/signin/public/identity_manager/account_capabilities.h\"\n #include \"components/signin/public/identity_manager/account_capabilities_test_mutator.h\"\n--- a/components/signin/internal/identity_manager/gaia_cookie_manager_service.cc\n+++ b/components/signin/internal/identity_manager/gaia_cookie_manager_service.cc\n@@ -32,7 +32,6 @@\n #include \"components/signin/internal/identity_manager/oauth_multilogin_helper.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/set_accounts_in_cookie_result.h\"\n #include \"google_apis/credentials_mode.h\"\n@@ -433,20 +432,7 @@ GaiaCookieManagerService::GaiaCookieMana\n       listAccountsUnexpectedServerResponseRetried_(false),\n       external_cc_result_fetched_(false),\n       list_accounts_stale_(true) {\n-  std::string gaia_cookie_last_list_accounts_binary_data =\n-      signin_client_->GetPrefs()->GetString(\n-          prefs::kGaiaCookieLastListAccountsBinaryData);\n-\n-  // Parse ListAccounts data from prefs.\n-  bool parse_success = gaia::ParseBinaryListAccountsData(\n-      gaia_cookie_last_list_accounts_binary_data, &accounts_);\n-\n-  if (!parse_success) {\n     accounts_.clear();\n-    return;\n-  }\n-\n-  InitializeListedAccountsIds();\n }\n \n GaiaCookieManagerService::~GaiaCookieManagerService() {\n@@ -457,8 +443,6 @@ GaiaCookieManagerService::~GaiaCookieMan\n \n // static\n void GaiaCookieManagerService::RegisterPrefs(PrefRegistrySimple* registry) {\n-  registry->RegisterStringPref(prefs::kGaiaCookieLastListAccountsBinaryData,\n-                               std::string());\n }\n \n void GaiaCookieManagerService::InitCookieListener() {\n@@ -683,8 +667,6 @@ void GaiaCookieManagerService::OnListAcc\n   bool parse_success = gaia::ParseBinaryListAccountsData(data, &accounts_);\n   if (!parse_success) {\n     accounts_.clear();\n-    signin_client_->GetPrefs()->ClearPref(\n-        prefs::kGaiaCookieLastListAccountsBinaryData);\n     GoogleServiceAuthError error =\n         GoogleServiceAuthError::FromUnexpectedServiceResponse(\n             \"Error parsing ListAccounts response\");\n@@ -692,8 +674,6 @@ void GaiaCookieManagerService::OnListAcc\n     return;\n   }\n \n-  signin_client_->GetPrefs()->SetString(\n-      prefs::kGaiaCookieLastListAccountsBinaryData, data);\n   RecordListAccountsFailure(GoogleServiceAuthError::NONE);\n \n   InitializeListedAccountsIds();\n--- a/components/signin/internal/identity_manager/gaia_cookie_manager_service_unittest.cc\n+++ b/components/signin/internal/identity_manager/gaia_cookie_manager_service_unittest.cc\n@@ -25,7 +25,6 @@\n #include \"components/prefs/testing_pref_service.h\"\n #include \"components/signin/internal/identity_manager/account_tracker_service.h\"\n #include \"components/signin/internal/identity_manager/fake_profile_oauth2_token_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/test_signin_client.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/identity_test_utils.h\"\n--- a/components/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate.cc\n+++ b/components/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate.cc\n@@ -31,7 +31,6 @@\n #include \"components/signin/public/base/hybrid_encryption_key.h\"\n #include \"components/signin/public/base/signin_client.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n #include \"components/signin/public/webdata/token_service_table.h\"\n--- a/components/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate_unittest.cc\n+++ b/components/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate_unittest.cc\n@@ -40,7 +40,6 @@\n #include \"components/signin/public/base/device_id_helper.h\"\n #include \"components/signin/public/base/hybrid_encryption_key.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/base/test_signin_client.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n--- a/components/signin/internal/identity_manager/primary_account_manager.cc\n+++ b/components/signin/internal/identity_manager/primary_account_manager.cc\n@@ -25,7 +25,6 @@\n #include \"components/signin/public/base/account_consistency_method.h\"\n #include \"components/signin/public/base/signin_client.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n@@ -206,171 +205,25 @@ PrimaryAccountManager::PrimaryAccountMan\n   DCHECK(account_tracker_service_);\n   ScopedPrefCommit scoped_pref_commit(client_->GetPrefs(),\n                                       /*commit_on_destroy=*/false);\n-#if !BUILDFLAG(ENABLE_DICE_SUPPORT)\n-  scoped_pref_commit.ClearPref(prefs::kExplicitBrowserSignin);\n-#endif\n-\n-  // Prepare prefs before loading them.\n-  PrepareToLoadPrefs();\n-\n-  PrefService* prefs = client_->GetPrefs();\n-  std::string pref_account_id =\n-      prefs->GetString(prefs::kGoogleServicesAccountId);\n-  bool pref_consented_to_sync =\n-      prefs->GetBoolean(prefs::kGoogleServicesConsentedToSync);\n-  LogPrimaryAccountPrefsOnInitialize(pref_account_id, pref_consented_to_sync);\n-\n-  if (pref_account_id.empty()) {\n     SetPrimaryAccountInternal(CoreAccountInfo(), /*consented_to_sync=*/false,\n                               scoped_pref_commit);\n-  } else {\n-    auto [account_info, account_info_state] =\n-        GetOrRestorePrimaryAccountInfoOnInitialize(pref_account_id,\n-                                                   pref_consented_to_sync);\n-    base::UmaHistogramEnumeration(\n-        \"Signin.PAMInitialize.PrimaryAccountInfoState\", account_info_state);\n-\n-    if (pref_consented_to_sync && !account_info.IsEmpty()) {\n-      SetPrimaryAccountInternal(account_info, /*consented_to_sync=*/true,\n-                                scoped_pref_commit);\n-\n-      // Ensure that the last syncing account data is consistent with the\n-      // primary account. The last signed-in account data is written inside\n-      // SetPrimaryAccountInternal().\n-      scoped_pref_commit.SetString(prefs::kGoogleServicesLastSyncingGaiaId,\n-                                   account_info.gaia.ToString());\n-      scoped_pref_commit.SetString(prefs::kGoogleServicesLastSyncingUsername,\n-                                   account_info.email);\n-    } else {\n-      SetPrimaryAccountInternal(account_info, /*consented_to_sync=*/false,\n-                                scoped_pref_commit);\n-    }\n-  }\n \n   // PrimaryAccountManager is initialized once the primary account and consent\n   // level are loaded.\n   CHECK(primary_account_.has_value());\n-\n-  bool migrated_sync_user_to_explicit_sign_in = false;\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-  if (!prefs->GetBoolean(prefs::kExplicitBrowserSignin) &&\n-      HasPrimaryAccount(signin::ConsentLevel::kSync)) {\n-    // A profile that is opted in to sync can be migrated to explicit browser\n-    // sign-in as the user has explicitly signed in to the browser when they\n-    // opted in to sync.\n-    scoped_pref_commit.SetBoolean(prefs::kExplicitBrowserSignin, true);\n-    migrated_sync_user_to_explicit_sign_in = true;\n-  }\n-#endif\n-\n-  base::UmaHistogramBoolean(\"Signin.ExplicitSigninMigration.FromSync\",\n-                            migrated_sync_user_to_explicit_sign_in);\n-\n-  // `prefs::kPrefsThemesSearchEnginesAccountStorageEnabled` is set for sync\n-  // users and new signed in users. It is not cleared on sign out.\n-  if (base::FeatureList::IsEnabled(\n-          switches::kEnablePreferencesAccountStorage)) {\n-    if (HasPrimaryAccount(signin::ConsentLevel::kSync)) {\n-      scoped_pref_commit.SetBoolean(\n-          prefs::kPrefsThemesSearchEnginesAccountStorageEnabled, true);\n-    }\n-  } else {\n-    scoped_pref_commit.ClearPref(\n-        prefs::kPrefsThemesSearchEnginesAccountStorageEnabled);\n-  }\n-\n-  std::vector<AccountInfo> accounts_in_tracker_service =\n-      account_tracker_service_->GetAccounts();\n-  SigninPrefs signin_prefs(*prefs);\n-\n-  for (const auto& account : accounts_in_tracker_service) {\n-    // Clear the extensions explicit sign in pref if the feature flag is not\n-    // enabled.\n-    if (!switches::IsExtensionsExplicitBrowserSigninEnabled()) {\n-      signin_prefs.SetExtensionsExplicitBrowserSignin(account.gaia, false);\n-    }\n-    // Clear the bookmarks explicit sign in pref if the feature flag is not\n-    // enabled.\n-    if (!base::FeatureList::IsEnabled(\n-            switches::kSyncEnableBookmarksInTransportMode)) {\n-      signin_prefs.SetBookmarksExplicitBrowserSignin(account.gaia, false);\n-    }\n-  }\n-\n-  // It is important to only load credentials after starting to observe the\n-  // token service.\n-  token_service_observation_.Observe(token_service_);\n-  token_service_->LoadCredentials(\n-      GetPrimaryAccountId(signin::ConsentLevel::kSignin));\n }\n \n PrimaryAccountManager::~PrimaryAccountManager() = default;\n \n // static\n void PrimaryAccountManager::RegisterProfilePrefs(PrefRegistrySimple* registry) {\n-  registry->RegisterStringPref(prefs::kGoogleServicesLastSyncingGaiaId,\n-                               std::string());\n-  registry->RegisterStringPref(prefs::kGoogleServicesLastSyncingUsername,\n-                               std::string());\n-  registry->RegisterStringPref(prefs::kGoogleServicesLastSignedInUsername,\n-                               std::string());\n-  registry->RegisterStringPref(prefs::kGoogleServicesAccountId, std::string());\n-  registry->RegisterBooleanPref(prefs::kGoogleServicesConsentedToSync, false);\n-  registry->RegisterStringPref(\n-      prefs::kGoogleServicesSyncingGaiaIdMigratedToSignedIn, std::string());\n-  registry->RegisterStringPref(\n-      prefs::kGoogleServicesSyncingUsernameMigratedToSignedIn, std::string());\n-  registry->RegisterIntegerPref(prefs::kGoogleServicesSyncingUserMigrationType,\n-                                /*SyncToSigninMigrationType::kUnknown=*/0);\n-  registry->RegisterBooleanPref(prefs::kSigninAllowed, true);\n-  registry->RegisterBooleanPref(prefs::kSignedInWithCredentialProvider, false);\n-  registry->RegisterBooleanPref(kExplicitBrowserSigninWithoutFeatureEnabled,\n-                                false);\n-  registry->RegisterBooleanPref(prefs::kExplicitBrowserSignin, false);\n-  registry->RegisterBooleanPref(\n-      prefs::kPrefsThemesSearchEnginesAccountStorageEnabled, false);\n-  registry->RegisterBooleanPref(prefs::kPrimaryAccountSetAfterSigninMigration,\n-                                false);\n }\n \n // static\n void PrimaryAccountManager::RegisterPrefs(PrefRegistrySimple* registry) {\n-  registry->RegisterStringPref(prefs::kGoogleServicesUsernamePattern,\n-                               std::string());\n }\n \n void PrimaryAccountManager::PrepareToLoadPrefs() {\n-  // Check this method is only called before loading the primary account.\n-  CHECK(!primary_account_.has_value());\n-\n-  PrefService* prefs = client_->GetPrefs();\n-\n-  // If the user is clearing the token service from the command line, then\n-  // clear their login info also (not valid to be logged in without any\n-  // tokens).\n-  base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();\n-  if (cmd_line->HasSwitch(switches::kClearTokenService)) {\n-    prefs->SetString(prefs::kGoogleServicesAccountId, \"\");\n-    prefs->SetBoolean(prefs::kGoogleServicesConsentedToSync, false);\n-  }\n-\n-#if BUILDFLAG(IS_CHROMEOS)\n-  // Migrate primary account ID from email to Gaia ID if needed.\n-  std::string pref_account_id =\n-      prefs->GetString(prefs::kGoogleServicesAccountId);\n-  if (!pref_account_id.empty()) {\n-    if (account_tracker_service_->GetMigrationState() ==\n-        AccountTrackerService::MIGRATION_IN_PROGRESS) {\n-      CoreAccountInfo account_info =\n-          account_tracker_service_->FindAccountInfoByEmail(pref_account_id);\n-      // |account_info.gaia| could be empty if |account_id| is already gaia id.\n-      if (!account_info.gaia.empty()) {\n-        pref_account_id = account_info.gaia.ToString();\n-        prefs->SetString(prefs::kGoogleServicesAccountId, pref_account_id);\n-      }\n-    }\n-  }\n-#endif\n }\n \n std::pair<CoreAccountInfo, PrimaryAccountManager::InitializeAccountInfoState>\n@@ -398,36 +251,6 @@ PrimaryAccountManager::GetOrRestorePrima\n                               kEmptyAccountInfo_RestoreFailedNotSyncConsented);\n   }\n \n-  PrefService* prefs = client_->GetPrefs();\n-  const GaiaId last_syncing_gaia_id =\n-      GaiaId(prefs->GetString(prefs::kGoogleServicesLastSyncingGaiaId));\n-  if (last_syncing_gaia_id.empty()) {\n-    return std::make_pair(CoreAccountInfo(),\n-                          InitializeAccountInfoState::\n-                              kEmptyAccountInfo_RestoreFailedNoLastSyncGaiaId);\n-  }\n-  std::string last_syncing_email =\n-      prefs->GetString(prefs::kGoogleServicesLastSyncingUsername);\n-  if (last_syncing_email.empty()) {\n-    return std::make_pair(CoreAccountInfo(),\n-                          InitializeAccountInfoState::\n-                              kEmptyAccountInfo_RestoreFailedNoLastSyncEmail);\n-  }\n-\n-  if (account_id != account_tracker_service_->PickAccountIdForAccount(\n-                        last_syncing_gaia_id, last_syncing_email)) {\n-    return std::make_pair(\n-        CoreAccountInfo(),\n-        InitializeAccountInfoState::\n-            kEmptyAccountInfo_RestoreFailedAccountIdDontMatch);\n-  }\n-\n-  CHECK_EQ(\n-      account_id,\n-      account_tracker_service_->SeedAccountInfo(\n-          last_syncing_gaia_id, last_syncing_email,\n-          signin_metrics::AccessPoint::kRestorePrimaryAccountOnProfileLoad));\n-\n   return std::make_pair(account_tracker_service_->GetAccountInfo(account_id),\n                         InitializeAccountInfoState::\n                             kEmptyAccountInfo_RestoreSuccessFromLastSyncInfo);\n@@ -521,10 +344,9 @@ void PrimaryAccountManager::SetSyncPrima\n \n #if DCHECK_IS_ON()\n   {\n-    std::string pref_account_id =\n-        client_->GetPrefs()->GetString(prefs::kGoogleServicesAccountId);\n+    std::string pref_account_id;\n     bool consented_to_sync =\n-        client_->GetPrefs()->GetBoolean(prefs::kGoogleServicesConsentedToSync);\n+        false;\n \n     DCHECK(pref_account_id.empty() || !consented_to_sync ||\n            pref_account_id == account_info.account_id.ToString())\n@@ -535,14 +357,6 @@ void PrimaryAccountManager::SetSyncPrima\n \n   SetPrimaryAccountInternal(account_info, /*consented_to_sync=*/true,\n                             scoped_pref_commit);\n-\n-  // Go ahead and update the last signed in account info here as well. Once a\n-  // user is signed in the corresponding preferences should match. Doing it here\n-  // as opposed to on signin allows us to catch the upgrade scenario.\n-  scoped_pref_commit.SetString(prefs::kGoogleServicesLastSyncingGaiaId,\n-                               account_info.gaia.ToString());\n-  scoped_pref_commit.SetString(prefs::kGoogleServicesLastSyncingUsername,\n-                               account_info.email);\n }\n \n void PrimaryAccountManager::SetPrimaryAccountInternal(\n@@ -554,24 +368,6 @@ void PrimaryAccountManager::SetPrimaryAc\n   // 'account_info' might be a reference to the contents of `primary_account_`.\n   // Create a PrimaryAccount object before calling emplace to avoid crashes.\n   primary_account_.emplace(PrimaryAccount(account_info, consented_to_sync));\n-  std::string account_id =\n-      GetPrimaryAccount().account_info.account_id.ToString();\n-  scoped_pref_commit.SetString(prefs::kGoogleServicesAccountId, account_id);\n-  scoped_pref_commit.SetBoolean(prefs::kGoogleServicesConsentedToSync,\n-                                GetPrimaryAccount().consented_to_sync);\n-  // If this was a sign-out (account ID is empty), also clear the \"account was\n-  // migrated\" prefs.\n-  if (account_id.empty()) {\n-    scoped_pref_commit.ClearPref(\n-        prefs::kGoogleServicesSyncingGaiaIdMigratedToSignedIn);\n-    scoped_pref_commit.ClearPref(\n-        prefs::kGoogleServicesSyncingUsernameMigratedToSignedIn);\n-    scoped_pref_commit.ClearPref(\n-        prefs::kGoogleServicesSyncingUserMigrationType);\n-  } else {\n-    scoped_pref_commit.SetString(prefs::kGoogleServicesLastSignedInUsername,\n-                                 account_info.email);\n-  }\n }\n \n void PrimaryAccountManager::UpdatePrimaryAccountInfo() {\n@@ -702,128 +498,6 @@ PrimaryAccountChangeEvent::State Primary\n void PrimaryAccountManager::SetExplicitBrowserSigninPrefs(\n     const PrimaryAccountChangeEvent& event_details,\n     ScopedPrefCommit& scoped_pref_commit) {\n-  switch (event_details.GetEventTypeFor(signin::ConsentLevel::kSignin)) {\n-    case PrimaryAccountChangeEvent::Type::kNone:\n-      break;\n-    case PrimaryAccountChangeEvent::Type::kCleared:\n-      scoped_pref_commit.ClearPref(kExplicitBrowserSigninWithoutFeatureEnabled);\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-      scoped_pref_commit.ClearPref(prefs::kExplicitBrowserSignin);\n-#endif\n-      return;\n-    case PrimaryAccountChangeEvent::Type::kSet:\n-      CHECK(event_details.GetSetPrimaryAccountAccessPoint().has_value());\n-      signin_metrics::AccessPoint access_point =\n-          event_details.GetSetPrimaryAccountAccessPoint().value();\n-      GaiaId current_gaia_id =\n-          event_details.GetCurrentState().primary_account.gaia;\n-\n-      if (base::FeatureList::IsEnabled(\n-              syncer::kReplaceSyncPromosWithSignInPromos)) {\n-        scoped_pref_commit.SetBoolean(\n-            prefs::kPrimaryAccountSetAfterSigninMigration, true);\n-      }\n-\n-      bool is_implicit_signin =\n-          access_point == signin_metrics::AccessPoint::kUnknown ||\n-          access_point == signin_metrics::AccessPoint::kWebSignin;\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-      if (base::FeatureList::IsEnabled(\n-              switches::kWebSigninLeadsToImplicitlySignedInState)) {\n-        // To allow easier testing, consider the following access points as\n-        // implicit sign-in.\n-        is_implicit_signin =\n-            is_implicit_signin ||\n-            access_point ==\n-                signin_metrics::AccessPoint::kChromeSigninInterceptBubble ||\n-            access_point ==\n-                signin_metrics::AccessPoint::kSigninChoiceRemembered;\n-      }\n-#endif  // BUILDFLAG(ENABLE_DICE_SUPPORT)\n-      if (is_implicit_signin) {\n-        scoped_pref_commit.ClearPref(\n-            kExplicitBrowserSigninWithoutFeatureEnabled);\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-        scoped_pref_commit.ClearPref(prefs::kExplicitBrowserSignin);\n-#endif\n-        // Reset explicit sign-in prefs for the relevant data types.\n-        scoped_pref_commit.SetBoolean(\n-            prefs::kPrefsThemesSearchEnginesAccountStorageEnabled, false);\n-        SigninPrefs(*client_->GetPrefs())\n-            .SetExtensionsExplicitBrowserSignin(current_gaia_id, false);\n-        SigninPrefs(*client_->GetPrefs())\n-            .SetBookmarksExplicitBrowserSignin(current_gaia_id, false);\n-        break;\n-      }\n-      // All others access points are explicit sign ins except the Web\n-      // Signin event.\n-      scoped_pref_commit.SetBoolean(kExplicitBrowserSigninWithoutFeatureEnabled,\n-                                    true);\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-      scoped_pref_commit.SetBoolean(prefs::kExplicitBrowserSignin, true);\n-#endif\n-      if (base::FeatureList::IsEnabled(\n-              switches::kEnablePreferencesAccountStorage)) {\n-        scoped_pref_commit.SetBoolean(\n-            prefs::kPrefsThemesSearchEnginesAccountStorageEnabled, true);\n-      }\n-      if (switches::IsExtensionsExplicitBrowserSigninEnabled()) {\n-        // Record an opt in for the extensions explicit signin feature and use\n-        // the existing pref to determine if it's a new or existing opt in.\n-        bool is_new_opt_in =\n-            !SigninPrefs(*client_->GetPrefs())\n-                 .GetExtensionsExplicitBrowserSignin(current_gaia_id);\n-\n-        if (access_point ==\n-            signin_metrics::AccessPoint::kExtensionInstallBubble) {\n-          base::UmaHistogramBoolean(\n-              \"Signin.Extensions.ExplicitSigninFromExtensionInstallBubble\",\n-              is_new_opt_in);\n-\n-          SigninPrefs(*client_->GetPrefs())\n-              .SetExtensionsExplicitBrowserSignin(current_gaia_id, true);\n-        }\n-        if (syncer::kExplicitSigninForExtensions.Get()) {\n-          base::UmaHistogramBoolean(\n-              \"Signin.Extensions.ExplicitSigninFromAnyAccessPoint\",\n-              is_new_opt_in);\n-\n-          SigninPrefs(*client_->GetPrefs())\n-              .SetExtensionsExplicitBrowserSignin(current_gaia_id, true);\n-        }\n-      }\n-      if (base::FeatureList::IsEnabled(\n-              switches::kSyncEnableBookmarksInTransportMode) &&\n-          (access_point == signin_metrics::AccessPoint::kBookmarkBubble ||\n-           syncer::kExplicitSigninForBookmarks.Get())) {\n-        // Record an explicit signin for bookmarks for this account only. This\n-        // should happen for every new sign in if `kExplicitSigninForBookmarks`\n-        // is enabled, as this pref will be used to determine whether users are\n-        // eligible for account storage or not.\n-        SigninPrefs(*client_->GetPrefs())\n-            .SetBookmarksExplicitBrowserSignin(current_gaia_id, true);\n-      }\n-  }\n-\n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-  // If the user turns on sync, disable account storage for bookmarks. This\n-  // way the user does not get duplicate data if they turn off sync (and\n-  // choose to preserve their data locally) and then sign in again.\n-  // This is safe to remove with the deprecation of\n-  // `signin::ConsentLevel::kSync`.\n-  if (event_details.GetEventTypeFor(signin::ConsentLevel::kSync) ==\n-      signin::PrimaryAccountChangeEvent::Type::kSet) {\n-    auto current_gaia_id = event_details.GetCurrentState().primary_account.gaia;\n-    auto prefs = SigninPrefs(*client_->GetPrefs());\n-\n-    if (prefs.GetBookmarksExplicitBrowserSignin(current_gaia_id)) {\n-      base::UmaHistogramBoolean(\n-          \"Signin.Bookmarks.SyncTurnedOnWithAccountStorageEnabled\", true);\n-    }\n-\n-    prefs.SetBookmarksExplicitBrowserSignin(current_gaia_id, false);\n-  }\n-#endif\n }\n \n void PrimaryAccountManager::FirePrimaryAccountChanged(\n--- a/components/signin/internal/identity_manager/primary_account_manager_unittest.cc\n+++ b/components/signin/internal/identity_manager/primary_account_manager_unittest.cc\n@@ -30,7 +30,6 @@\n #include \"components/signin/public/base/gaia_id_hash.h\"\n #include \"components/signin/public/base/signin_client.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/base/test_signin_client.h\"\n--- a/components/signin/internal/identity_manager/primary_account_mutator_impl.cc\n+++ b/components/signin/internal/identity_manager/primary_account_mutator_impl.cc\n@@ -17,7 +17,6 @@\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_client.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"google_apis/gaia/core_account_id.h\"\n \n@@ -57,7 +56,7 @@ PrimaryAccountMutatorImpl::SetPrimaryAcc\n   DCHECK(!account_info.gaia.empty());\n \n #if !BUILDFLAG(IS_CHROMEOS)\n-  bool is_signin_allowed = pref_service_->GetBoolean(prefs::kSigninAllowed);\n+  bool is_signin_allowed = false;\n   if (!is_signin_allowed) {\n     return PrimaryAccountError::kSigninNotAllowed;\n   }\n--- a/components/signin/internal/identity_manager/profile_oauth2_token_service.cc\n+++ b/components/signin/internal/identity_manager/profile_oauth2_token_service.cc\n@@ -15,7 +15,6 @@\n #include \"components/signin/internal/identity_manager/profile_oauth2_token_service_delegate.h\"\n #include \"components/signin/public/base/device_id_helper.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"google_apis/gaia/gaia_constants.h\"\n #include \"google_apis/gaia/google_service_auth_error.h\"\n #include \"google_apis/gaia/oauth2_access_token_consumer.h\"\n@@ -107,8 +106,6 @@ bool ProfileOAuth2TokenService::HasRefre\n // static\n void ProfileOAuth2TokenService::RegisterProfilePrefs(\n     PrefRegistrySimple* registry) {\n-  registry->RegisterStringPref(prefs::kGoogleServicesSigninScopedDeviceId,\n-                               std::string());\n }\n \n ProfileOAuth2TokenServiceDelegate* ProfileOAuth2TokenService::GetDelegate() {\n--- a/components/signin/internal/identity_manager/profile_oauth2_token_service_delegate_chromeos_unittest.cc\n+++ b/components/signin/internal/identity_manager/profile_oauth2_token_service_delegate_chromeos_unittest.cc\n@@ -30,7 +30,6 @@\n #include \"components/signin/internal/identity_manager/account_tracker_service.h\"\n #include \"components/signin/internal/identity_manager/mock_profile_oauth2_token_service_observer.h\"\n #include \"components/signin/internal/identity_manager/profile_oauth2_token_service_observer.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/test_signin_client.h\"\n #include \"components/signin/public/identity_manager/account_capabilities_test_mutator.h\"\n #include \"components/signin/public/identity_manager/account_info.h\"\n--- a/components/signin/public/base/BUILD.gn\n+++ b/components/signin/public/base/BUILD.gn\n@@ -167,8 +167,6 @@ component(\"signin_switches\") {\n   defines = [ \"IS_SIGNIN_SWITCHES_IMPL\" ]\n \n   sources = [\n-    \"signin_pref_names.cc\",\n-    \"signin_pref_names.h\",\n     \"signin_switches.cc\",\n     \"signin_switches.h\",\n   ]\n--- a/components/signin/public/base/device_id_helper.cc\n+++ b/components/signin/public/base/device_id_helper.cc\n@@ -8,7 +8,6 @@\n #include \"base/command_line.h\"\n #include \"base/uuid.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n \n namespace signin {\n@@ -16,20 +15,12 @@ namespace signin {\n #if !BUILDFLAG(IS_CHROMEOS)\n \n std::string GetSigninScopedDeviceId(PrefService* prefs) {\n-  std::string signin_scoped_device_id =\n-      prefs->GetString(prefs::kGoogleServicesSigninScopedDeviceId);\n-  if (signin_scoped_device_id.empty()) {\n-    // If device_id doesn't exist then generate new and save in prefs.\n-    signin_scoped_device_id = RecreateSigninScopedDeviceId(prefs);\n-  }\n-  return signin_scoped_device_id;\n+  return RecreateSigninScopedDeviceId(prefs);\n }\n \n std::string RecreateSigninScopedDeviceId(PrefService* prefs) {\n   std::string signin_scoped_device_id = GenerateSigninScopedDeviceId();\n   DCHECK(!signin_scoped_device_id.empty());\n-  prefs->SetString(prefs::kGoogleServicesSigninScopedDeviceId,\n-                   signin_scoped_device_id);\n   return signin_scoped_device_id;\n }\n \n--- a/components/signin/public/base/device_id_helper_unittest.cc\n+++ b/components/signin/public/base/device_id_helper_unittest.cc\n@@ -7,7 +7,6 @@\n #include <string>\n \n #include \"build/build_config.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/sync_preferences/testing_pref_service_syncable.h\"\n #include \"testing/gtest/include/gtest/gtest.h\"\n \n@@ -23,40 +22,23 @@ TEST(DeviceIdHelper, GenerateSigninScope\n \n TEST(DeviceIdHelper, RecreateSigninScopedDeviceId) {\n   sync_preferences::TestingPrefServiceSyncable prefs;\n-  prefs.registry()->RegisterStringPref(\n-      prefs::kGoogleServicesSigninScopedDeviceId, std::string());\n-  ASSERT_TRUE(\n-      prefs.GetString(prefs::kGoogleServicesSigninScopedDeviceId).empty());\n \n   std::string device_id_1 = RecreateSigninScopedDeviceId(&prefs);\n   EXPECT_FALSE(device_id_1.empty());\n-  EXPECT_EQ(device_id_1,\n-            prefs.GetString(prefs::kGoogleServicesSigninScopedDeviceId));\n \n   std::string device_id_2 = RecreateSigninScopedDeviceId(&prefs);\n   EXPECT_FALSE(device_id_2.empty());\n   EXPECT_NE(device_id_1, device_id_2);\n-  EXPECT_EQ(device_id_2,\n-            prefs.GetString(prefs::kGoogleServicesSigninScopedDeviceId));\n }\n \n TEST(DeviceIdHelper, GetSigninScopedDeviceId) {\n   sync_preferences::TestingPrefServiceSyncable prefs;\n-  prefs.registry()->RegisterStringPref(\n-      prefs::kGoogleServicesSigninScopedDeviceId, std::string());\n-\n-  ASSERT_TRUE(\n-      prefs.GetString(prefs::kGoogleServicesSigninScopedDeviceId).empty());\n \n   std::string device_id_1 = GetSigninScopedDeviceId(&prefs);\n   EXPECT_FALSE(device_id_1.empty());\n-  EXPECT_EQ(device_id_1,\n-            prefs.GetString(prefs::kGoogleServicesSigninScopedDeviceId));\n \n   std::string device_id_2 = GetSigninScopedDeviceId(&prefs);\n   EXPECT_EQ(device_id_1, device_id_2);\n-  EXPECT_EQ(device_id_2,\n-            prefs.GetString(prefs::kGoogleServicesSigninScopedDeviceId));\n }\n \n #endif\n--- a/components/signin/public/base/signin_prefs.cc\n+++ b/components/signin/public/base/signin_prefs.cc\n@@ -12,7 +12,6 @@\n #include \"components/prefs/pref_registry_simple.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/prefs/scoped_user_pref_update.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"google_apis/gaia/gaia_id.h\"\n \n@@ -164,8 +163,6 @@ SigninPrefs::~SigninPrefs() = default;\n \n void SigninPrefs::RegisterProfilePrefs(PrefRegistrySimple* registry) {\n   registry->RegisterDictionaryPref(kSigninAccountPrefs);\n-  registry->RegisterIntegerPref(prefs::kHistorySyncSuccessiveDeclineCount, 0);\n-  registry->RegisterInt64Pref(prefs::kHistorySyncLastDeclinedTimestamp, 0);\n }\n \n void SigninPrefs::MigrateObsoleteSigninPrefs() {\n@@ -459,40 +456,31 @@ int SigninPrefs::GetSyncPromoIdentityPil\n \n int SigninPrefs::GetHistoryPageHistorySyncPromoShownCount(\n     const GaiaId& gaia_id) const {\n-  return GetIntPrefForAccount(gaia_id,\n-                              prefs::kHistoryPageHistorySyncPromoShownCount);\n+  return 0;\n }\n \n void SigninPrefs::IncrementHistoryPageHistorySyncPromoShownCount(\n     const GaiaId& gaia_id) {\n-  IncrementIntPrefForAccount(gaia_id,\n-                             prefs::kHistoryPageHistorySyncPromoShownCount);\n }\n \n std::optional<base::Time>\n SigninPrefs::GetHistoryPageHistorySyncPromoLastDismissedTimestamp(\n     const GaiaId& gaia_id) const {\n-  return GetTimePref(gaia_id,\n-                     prefs::kHistoryPageHistorySyncPromoLastDismissedTimestamp);\n+  return base::Time();\n }\n \n void SigninPrefs::SetHistoryPageHistorySyncPromoLastDismissedTimestamp(\n     const GaiaId& gaia_id,\n     base::Time last_dismissed_timestamp) {\n-  SetTimePref(last_dismissed_timestamp, gaia_id,\n-              prefs::kHistoryPageHistorySyncPromoLastDismissedTimestamp);\n }\n \n bool SigninPrefs::GetHistoryPageHistorySyncPromoShownAfterDismissal(\n     const GaiaId& gaia_id) const {\n-  return GetBooleanPrefForAccount(\n-      gaia_id, prefs::kHistoryPageHistorySyncPromoShownAfterDismissal);\n+  return true;\n }\n \n void SigninPrefs::SetHistoryPageHistorySyncPromoShownAfterDismissal(\n     const GaiaId& gaia_id) {\n-  SetBooleanPrefForAccount(\n-      gaia_id, prefs::kHistoryPageHistorySyncPromoShownAfterDismissal, true);\n }\n \n void SigninPrefs::IncrementBookmarkBatchUploadPromoDismissCountWithLastTime(\n--- a/components/signin/public/base/signin_switches.cc\n+++ b/components/signin/public/base/signin_switches.cc\n@@ -7,7 +7,6 @@\n #include \"base/feature_list.h\"\n #include \"base/time/time.h\"\n #include \"components/prefs/pref_service.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n \n #if BUILDFLAG(IS_WIN)\n #include \"base/win/windows_version.h\"\n@@ -242,10 +241,6 @@ BASE_FEATURE(kEnableBoundSessionCredenti\n #endif\n );\n bool IsBoundSessionCredentialsEnabled(const PrefService* profile_prefs) {\n-  // Enterprise policy takes precedence over the feature value.\n-  if (profile_prefs->HasPrefPath(prefs::kBoundSessionCredentialsEnabled)) {\n-    return profile_prefs->GetBoolean(prefs::kBoundSessionCredentialsEnabled);\n-  }\n   return base::FeatureList::IsEnabled(kEnableBoundSessionCredentials);\n }\n // Restricts the DBSC registration URL path to a single allowed string.\n@@ -266,10 +261,6 @@ BASE_FEATURE(kEnableChromeRefreshTokenBi\n #endif\n );\n bool IsChromeRefreshTokenBindingEnabled(const PrefService* profile_prefs) {\n-  // Enterprise policy takes precedence over the feature value.\n-  if (profile_prefs->HasPrefPath(prefs::kBoundSessionCredentialsEnabled)) {\n-    return profile_prefs->GetBoolean(prefs::kBoundSessionCredentialsEnabled);\n-  }\n   return base::FeatureList::IsEnabled(kEnableChromeRefreshTokenBinding);\n }\n #endif  // BUILDFLAG(ENABLE_DICE_SUPPORT)\n--- a/components/signin/public/identity_manager/identity_utils.cc\n+++ b/components/signin/public/identity_manager/identity_utils.cc\n@@ -14,7 +14,6 @@\n #include \"base/strings/utf_string_conversions.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n@@ -62,8 +61,7 @@ bool IsUsernameAllowedByPattern(std::str\n \n bool IsUsernameAllowedByPatternFromPrefs(const PrefService* prefs,\n                                          const std::string& username) {\n-  return IsUsernameAllowedByPattern(\n-      username, prefs->GetString(prefs::kGoogleServicesUsernamePattern));\n+  return true;\n }\n \n base::flat_set<GaiaId> GetAllGaiaIdsForKeyedPreferences(\n--- a/components/signin/public/identity_manager/identity_utils_unittest.cc\n+++ b/components/signin/public/identity_manager/identity_utils_unittest.cc\n@@ -12,7 +12,6 @@\n #include \"components/prefs/pref_service.h\"\n #include \"components/prefs/testing_pref_service.h\"\n #include \"components/signin/public/base/consent_level.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/accounts_in_cookie_jar_info.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n--- a/components/signin/public/identity_manager/primary_account_mutator_unittest.cc\n+++ b/components/signin/public/identity_manager/primary_account_mutator_unittest.cc\n@@ -14,7 +14,6 @@\n #include \"components/signin/public/base/consent_level.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n #include \"components/signin/public/base/signin_metrics.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/signin/public/identity_manager/identity_manager.h\"\n #include \"components/signin/public/identity_manager/identity_test_environment.h\"\n--- a/components/supervised_user/core/browser/supervised_user_pref_store.cc\n+++ b/components/supervised_user/core/browser/supervised_user_pref_store.cc\n@@ -21,7 +21,6 @@\n #include \"components/policy/core/common/policy_pref_names.h\"\n #include \"components/prefs/pref_value_map.h\"\n #include \"components/safe_search_api/safe_search_util.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/supervised_user/core/browser/device_parental_controls.h\"\n #include \"components/supervised_user/core/browser/family_link_settings_service.h\"\n@@ -51,14 +50,6 @@ struct FamilyLinkSettingsPrefMappingEntr\n \n FamilyLinkSettingsPrefMappingEntry kFamilyLinkSettingsPrefMapping[] = {\n     {\n-        supervised_user::kSigninAllowed,\n-        prefs::kSigninAllowed,\n-    },\n-    {\n-        supervised_user::kSigninAllowedOnNextStartup,\n-        prefs::kSigninAllowedOnNextStartup,\n-    },\n-    {\n         supervised_user::kSkipParentApprovalToInstallExtensions,\n         prefs::kSkipParentApprovalToInstallExtensions,\n     },\n--- a/components/sync/service/sync_prefs.cc\n+++ b/components/sync/service/sync_prefs.cc\n@@ -24,8 +24,6 @@\n #include \"components/saved_tab_groups/public/pref_names.h\"\n #include \"components/signin/public/base/gaia_id_hash.h\"\n #include \"components/signin/public/base/signin_buildflags.h\"\n-#include \"components/signin/public/base/signin_pref_names.h\"\n-#include \"components/signin/public/base/signin_prefs.h\"\n #include \"components/signin/public/base/signin_switches.h\"\n #include \"components/sync/base/account_pref_utils.h\"\n #include \"components/sync/base/features.h\"\n@@ -128,18 +126,6 @@ SyncPrefs::SyncPrefs(PrefService* pref_s\n       base::BindRepeating(&SyncPrefs::OnSelectedTypesPrefChanged,\n                           base::Unretained(this)));\n \n-#if BUILDFLAG(ENABLE_DICE_SUPPORT)\n-  if (base::FeatureList::IsEnabled(switches::kOfferMigrationToDiceUsers) ||\n-      base::FeatureList::IsEnabled(switches::kRollbackDiceMigration)) {\n-    // The explicit browser signin pref is used for determining whether some\n-    // data types are selected by default. Therefore, upon a change, the\n-    // selected types may change.\n-    pref_change_registrar_.Add(\n-        ::prefs::kExplicitBrowserSignin,\n-        base::BindRepeating(&SyncPrefs::OnSelectedTypesPrefChanged,\n-                            base::Unretained(this)));\n-  }\n-#endif  // BUILDFLAG(ENABLE_DICE_SUPPORT)\n }\n \n SyncPrefs::~SyncPrefs() {\n@@ -1080,30 +1066,6 @@ void SyncPrefs::MaybeMigrateAutofillToPe\n     return;\n   }\n   pref_service->SetBoolean(kAutofillPerAccountPrefMigrationDone, true);\n-\n-  const GaiaId last_syncing_gaia_id(\n-      pref_service->GetString(::prefs::kGoogleServicesLastSyncingGaiaId));\n-  if (last_syncing_gaia_id.empty()) {\n-    return;\n-  }\n-\n-  if (pref_service->GetBoolean(prefs::internal::kSyncKeepEverythingSynced)) {\n-    return;\n-  }\n-\n-  for (auto user_selectable_type :\n-       {UserSelectableType::kPasswords, UserSelectableType::kAutofill}) {\n-    const char* const pref_name_for_type =\n-        GetPrefNameForType(user_selectable_type);\n-    if (pref_service->GetBoolean(pref_name_for_type)) {\n-      continue;\n-    }\n-\n-    SetAccountKeyedPrefDictEntry(\n-        pref_service, prefs::internal::kSelectedTypesPerAccount,\n-        signin::GaiaIdHash::FromGaiaId(last_syncing_gaia_id),\n-        pref_name_for_type, base::Value(false));\n-  }\n }\n #endif  // BUILDFLAG(ENABLE_DICE_SUPPORT)\n \n@@ -1139,28 +1101,16 @@ bool SyncPrefs::IsTypeSelectedByDefaultI\n       // `kExplicitSigninForBookmarks` is enabled (relevant for desktop only).\n       // If it is not, but `kReplaceSyncPromosWithSignInPromos` is, then\n       // bookmarks and reading list are on by default.\n-      return (base::FeatureList::IsEnabled(\n-                  kReplaceSyncPromosWithSignInPromos) &&\n-              !syncer::kExplicitSigninForBookmarks.Get()) ||\n-             SigninPrefs(*pref_service_)\n-                 .GetBookmarksExplicitBrowserSignin(gaia_id) ||\n-             base::FeatureList::IsEnabled(\n-                 kEnableBookmarksSelectedTypeOnSigninForTesting);\n+      return false;\n     case UserSelectableType::kPreferences:\n     case UserSelectableType::kThemes:\n-      return base::FeatureList::IsEnabled(kReplaceSyncPromosWithSignInPromos) ||\n-             pref_service_->GetBoolean(\n-                 ::prefs::kPrefsThemesSearchEnginesAccountStorageEnabled);\n+      return false;\n     case UserSelectableType::kExtensions:\n       // Extensions require a specific explicit sign in if\n       // `kExplicitSigninForExtensions` is enabled (relevant for desktop only).\n       // If it is not, but `kReplaceSyncPromosWithSignInPromos` is, then\n       // extensions are on by default.\n-      return (base::FeatureList::IsEnabled(\n-                  kReplaceSyncPromosWithSignInPromos) &&\n-              !syncer::kExplicitSigninForExtensions.Get()) ||\n-             SigninPrefs(*pref_service_)\n-                 .GetExtensionsExplicitBrowserSignin(gaia_id);\n+      return false;\n     case UserSelectableType::kApps:\n     case UserSelectableType::kProductComparison:\n     case UserSelectableType::kCookies:\n--- a/components/sync_preferences/common_syncable_prefs_database.cc\n+++ b/components/sync_preferences/common_syncable_prefs_database.cc\n@@ -24,7 +24,6 @@\n #include \"components/password_manager/core/common/password_manager_pref_names.h\"\n #include \"components/payments/core/payment_prefs.h\"\n #include \"components/plus_addresses/core/common/plus_address_prefs.h\"\n-#include \"components/safe_browsing/core/common/safe_browsing_prefs.h\"\n #include \"components/saved_tab_groups/public/pref_names.h\"\n #include \"components/sharing_message/pref_names.h\"\n #include \"components/sync/base/data_type.h\"\n@@ -93,9 +92,7 @@ enum {\n   // kSyncedLastTimePasswordCheckCompleted = 43, (deprecated)\n   kWasAutoSignInFirstRunExperienceShown = 44,\n   kCanMakePaymentEnabled = 45,\n-  kAccountTailoredSecurityUpdateTimestamp = 46,\n   kCookieControlsMode = 47,\n-  kSafeBrowsingEnabled = 48,\n   // kSyncedDefaultSearchProviderGUID = 49, (deprecated)\n   kPrefForceTriggerTranslateCount = 50,\n   // kPrefNeverPromptSitesDeprecated = 51, (deprecated)\n@@ -283,10 +280,6 @@ constexpr auto kCommonSyncablePrefsAllow\n         {payments::kCanMakePaymentEnabled,\n          {syncable_prefs_ids::kCanMakePaymentEnabled, syncer::PREFERENCES,\n           PrefSensitivity::kNone, MergeBehavior::kNone}},\n-        {prefs::kAccountTailoredSecurityUpdateTimestamp,\n-         {syncable_prefs_ids::kAccountTailoredSecurityUpdateTimestamp,\n-          syncer::PRIORITY_PREFERENCES, PrefSensitivity::kNone,\n-          MergeBehavior::kNone}},\n         {prefs::kCookieControlsMode,\n          {syncable_prefs_ids::kCookieControlsMode, syncer::PREFERENCES,\n           PrefSensitivity::kNone, MergeBehavior::kNone}},\n@@ -322,9 +315,6 @@ constexpr auto kCommonSyncablePrefsAllow\n          {syncable_prefs_ids::kCrossDeviceTipsHomeModuleEnabled,\n           syncer::PREFERENCES, PrefSensitivity::kNone,\n           MergeBehavior::kMergeableDict}},\n-        {prefs::kSafeBrowsingEnabled,\n-         {syncable_prefs_ids::kSafeBrowsingEnabled, syncer::PREFERENCES,\n-          PrefSensitivity::kNone, MergeBehavior::kNone}},\n         {tab_groups::prefs::kAutoPinNewTabGroups,\n          {syncable_prefs_ids::kAutoPinNewTabGroups, syncer::PREFERENCES,\n           PrefSensitivity::kNone, MergeBehavior::kNone}},\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/replace-google-search-engine-with-nosearch.patch",
    "content": "--- a/third_party/search_engines_data/resources/definitions/prepopulated_engines.json\n+++ b/third_party/search_engines_data/resources/definitions/prepopulated_engines.json\n@@ -171,26 +171,11 @@\n     },\n \n     \"google\": {\n-      \"name\": \"Google\",\n-      \"keyword\": \"google.com\",\n-      \"favicon_url\": \"https://www.google.com/images/branding/product/ico/googleg_alldp.ico\",\n-      \"base_builtin_resource_id\": \"SEARCH_ENGINE_GOOGLE\",\n-      \"search_url\": \"{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchFieldtrialParameter}{google:language}{google:prefetchSource}{google:searchClient}{google:sourceId}{google:contextualSearchVersion}ie={inputEncoding}\",\n-      \"suggest_url\": \"{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client={google:suggestClient}&gs_ri={google:suggestRid}&xssi=t&q={searchTerms}&{google:inputType}{google:omniboxFocusType}{google:cursorPosition}{google:currentPageUrl}{google:pageClassification}{google:clientCacheTimeToLive}{google:searchVersion}{google:sessionToken}{google:prefetchQuery}sugkey={google:suggestAPIKeyParameter}\",\n-      \"image_url\": \"{google:baseSearchByImageURL}upload\",\n-      \"image_translate_url\": \"{google:baseSearchByImageURL}upload?filtertype=tr&{imageTranslateSourceLocale}{imageTranslateTargetLocale}\",\n-      \"contextual_search_url\": \"{google:baseURL}_/contextualsearch?{google:contextualSearchVersion}{google:contextualSearchContextData}\",\n-      \"image_url_post_params\": \"encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight},processed_image_dimensions={google:processedImageDimensions}\",\n-      \"image_translate_source_language_param_key\": \"sourcelang\",\n-      \"image_translate_target_language_param_key\": \"targetlang\",\n-      \"search_intent_params\": [\"si\", \"gs_ssp\", \"udm\"],\n-      \"alternate_urls\": [\n-        \"{google:baseURL}#q={searchTerms}\",\n-        \"{google:baseURL}search#q={searchTerms}\",\n-        \"{google:baseURL}webhp#q={searchTerms}\",\n-        \"{google:baseURL}s#q={searchTerms}\",\n-        \"{google:baseURL}s?q={searchTerms}\"\n-      ],\n+      \"name\": \"No Search\",\n+      \"keyword\": \"nosearch\",\n+      \"favicon_url\": \"about:blank\",\n+      \"search_url\": \"http://{searchTerms}\",\n+      \"new_tab_url\": \"about:blank\",\n       \"type\": \"SEARCH_ENGINE_GOOGLE\",\n       \"preconnect_to_search_url\" : \"ALLOWED\",\n       \"prefetch_likely_navigations\" : \"ALLOWED\",\n"
  },
  {
    "path": "patches/core/ungoogled-chromium/toggle-translation-via-switch.patch",
    "content": "# Disables translation and removes the \"Translate to\" context menu when --translate-script-url flag is not set\n--- a/chrome/browser/renderer_context_menu/render_view_context_menu.cc\n+++ b/chrome/browser/renderer_context_menu/render_view_context_menu.cc\n@@ -180,6 +180,7 @@\n #include \"components/strings/grit/components_strings.h\"\n #include \"components/supervised_user/core/browser/supervised_user_preferences.h\"\n #include \"components/supervised_user/core/browser/supervised_user_url_filtering_service.h\"\n+#include \"components/translate/core/common/translate_switches.h\"\n #include \"components/translate/core/browser/translate_download_manager.h\"\n #include \"components/translate/core/browser/translate_manager.h\"\n #include \"components/translate/core/browser/translate_prefs.h\"\n@@ -2336,6 +2337,7 @@ void RenderViewContextMenu::AppendPageIt\n   }\n \n   if (CanTranslate(/*menu_logging=*/true)) {\n+   if (base::CommandLine::ForCurrentProcess()->HasSwitch(translate::switches::kTranslateScriptURL))\n     AppendTranslateItem();\n   }\n }\n--- a/components/translate/core/browser/translate_language_list.cc\n+++ b/components/translate/core/browser/translate_language_list.cc\n@@ -12,6 +12,7 @@\n #include <string_view>\n \n #include \"base/check.h\"\n+#include \"base/command_line.h\"\n #include \"base/functional/bind.h\"\n #include \"base/json/json_reader.h\"\n #include \"base/lazy_instance.h\"\n@@ -25,6 +26,7 @@\n #include \"components/translate/core/browser/translate_event_details.h\"\n #include \"components/translate/core/browser/translate_url_fetcher.h\"\n #include \"components/translate/core/browser/translate_url_util.h\"\n+#include \"components/translate/core/common/translate_switches.h\"\n #include \"components/translate/core/common/translate_util.h\"\n #include \"net/base/url_util.h\"\n #include \"ui/base/l10n/l10n_util.h\"\n@@ -392,6 +394,9 @@ GURL TranslateLanguageList::TranslateLan\n }\n \n void TranslateLanguageList::RequestLanguageList() {\n+  const base::CommandLine& command_line = *base::CommandLine::ForCurrentProcess();\n+  if (!command_line.HasSwitch(translate::switches::kTranslateScriptURL))\n+    return;\n   // If resource requests are not allowed, we'll get a callback when they are.\n   if (!resource_requests_allowed_) {\n     request_pending_ = true;\n--- a/components/translate/core/browser/translate_manager.cc\n+++ b/components/translate/core/browser/translate_manager.cc\n@@ -829,8 +829,9 @@ void TranslateManager::FilterIsTranslate\n         TriggerDecision::kDisabledOffline);\n   }\n \n-  if (!ignore_missing_key_for_testing_ &&\n-      !::google_apis::HasAPIKeyConfigured()) {\n+  const base::CommandLine& command_line = *base::CommandLine::ForCurrentProcess();\n+  if (!command_line.HasSwitch(translate::switches::kTranslateScriptURL) ||\n+      (!ignore_missing_key_for_testing_ && !::google_apis::HasAPIKeyConfigured())) {\n     // Without an API key, translate won't work, so don't offer to translate in\n     // the first place. Leave kOfferTranslateEnabled on, though, because that\n     // settings syncs and we don't want to turn off translate everywhere else.\n--- a/components/translate/core/browser/translate_ranker_impl.cc\n+++ b/components/translate/core/browser/translate_ranker_impl.cc\n@@ -151,12 +151,9 @@ TranslateRankerImpl::TranslateRankerImpl\n                                          ukm::UkmRecorder* ukm_recorder)\n     : ukm_recorder_(ukm_recorder),\n       is_uma_logging_enabled_(false),\n-      is_query_enabled_(base::FeatureList::IsEnabled(kTranslateRankerQuery)),\n-      is_enforcement_enabled_(\n-          base::FeatureList::IsEnabled(kTranslateRankerEnforcement)),\n-      is_previous_language_matches_override_enabled_(\n-          base::FeatureList::IsEnabled(\n-              translate::kTranslateRankerPreviousLanguageMatchesOverride)) {\n+      is_query_enabled_(false),\n+      is_enforcement_enabled_(false),\n+      is_previous_language_matches_override_enabled_(false) {\n   if (is_query_enabled_ || is_enforcement_enabled_) {\n     model_loader_ = std::make_unique<assist_ranker::RankerModelLoaderImpl>(\n         base::BindRepeating(&ValidateModel),\n@@ -230,6 +227,8 @@ bool TranslateRankerImpl::ShouldOfferTra\n   // (or become False).\n   const bool kDefaultResponse = true;\n \n+  return kDefaultResponse;\n+\n   translate_event->set_ranker_request_timestamp_sec(\n       (base::TimeTicks::Now() - base::TimeTicks()).InSeconds());\n   translate_event->set_ranker_version(GetModelVersion());\n--- a/components/translate/core/browser/translate_script.cc\n+++ b/components/translate/core/browser/translate_script.cc\n@@ -146,8 +146,13 @@ void TranslateScript::OnScriptFetchCompl\n                         server_params.c_str());\n \n     GURL security_origin = translate::GetTranslateSecurityOrigin();\n-    base::StringAppendF(&data_, \"var securityOrigin = '%s';\\n\",\n-                        security_origin.spec().c_str());\n+    const base::CommandLine& command_line = *base::CommandLine::ForCurrentProcess();\n+    if (command_line.HasSwitch(translate::switches::kTranslateScriptURL)) {\n+      base::StringAppendF(&data_, \"var securityOrigin = '%s';\\n\",\n+                          security_origin.spec().c_str());\n+    } else {\n+      base::StringAppendF(&data_, \"var securityOrigin = '';\\n\");\n+    }\n \n     // Load embedded translate.js.\n     data_.append(ui::ResourceBundle::GetSharedInstance().LoadDataResourceString(\n"
  },
  {
    "path": "patches/extra/bromite/fingerprinting-flags-client-rects-and-measuretext.patch",
    "content": "# Adds two flags:\n# 1. --fingerprinting-client-rects-noise to enable fingerprinting deception for Range::getClientRects and Element::getBoundingClientRect\n# 2. --fingerprinting-canvas-measuretext-noise to enable fingerprinting deception for Canvas::measureText\n# Tweaks based on https://github.com/bromite/bromite/blob/b1bc96bbd9ec549cf496e87f487a0ac35c83df0a/patches/BRM052_getClientRects-getBoundingClientRect-measureText-add-fingerprinting-mitigation.patch\n# Originally based on https://github.com/ungoogled-software/ungoogled-chromium/pull/377/commits/4151259b3248f0fc5c42fa262a1d1dd43c39fb60\n# chrome://flag setting added by ungoogled-chromium developers\n#\n# Unlike the latest Bromite patch, it was chosen to not regenerate the noise value each time the value is read to prevent potential efficiency issues with the load on the RNG.\n\n--- a/chrome/browser/BUILD.gn\n+++ b/chrome/browser/BUILD.gn\n@@ -2528,6 +2528,7 @@ static_library(\"browser\") {\n     \"//third_party/libyuv\",\n     \"//third_party/metrics_proto\",\n     \"//third_party/re2\",\n+    \"//components/ungoogled:ungoogled_switches\",\n     \"//third_party/webrtc_overrides:webrtc_component\",\n     \"//third_party/widevine/cdm:buildflags\",\n     \"//third_party/widevine/cdm:headers\",\n--- a/chrome/browser/about_flags.cc\n+++ b/chrome/browser/about_flags.cc\n@@ -188,6 +188,7 @@\n #include \"components/translate/core/common/translate_util.h\"\n #include \"components/trusted_vault/features.h\"\n #include \"components/ui_devtools/switches.h\"\n+#include \"components/ungoogled/ungoogled_switches.h\"\n #include \"components/variations/variations_switches.h\"\n #include \"components/version_info/channel.h\"\n #include \"components/version_info/version_info.h\"\n--- a/chrome/browser/bromite_flag_entries.h\n+++ b/chrome/browser/bromite_flag_entries.h\n@@ -4,4 +4,12 @@\n \n #ifndef CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n #define CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n+    {\"fingerprinting-client-rects-noise\",\n+     \"Enable get*ClientRects() fingerprint deception\",\n+     \"Scale the output values of Range::getClientRects() and Element::getBoundingClientRect() with a randomly selected factor in the range -0.0003% to 0.0003%, which are recomputed on every document initialization. ungoogled-chromium flag, Bromite feature.\",\n+     kOsAll, SINGLE_VALUE_TYPE(switches::kFingerprintingClientRectsNoise)},\n+    {\"fingerprinting-canvas-measuretext-noise\",\n+     \"Enable Canvas::measureText() fingerprint deception\",\n+     \"Scale the output values of Canvas::measureText() with a randomly selected factor in the range -0.0003% to 0.0003%, which are recomputed on every document initialization. ungoogled-chromium flag, Bromite feature.\",\n+     kOsAll, SINGLE_VALUE_TYPE(switches::kFingerprintingCanvasMeasureTextNoise)},\n #endif  // CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n--- a/content/browser/BUILD.gn\n+++ b/content/browser/BUILD.gn\n@@ -299,6 +299,7 @@ source_set(\"browser\") {\n     \"//third_party/re2\",\n     \"//third_party/snappy\",\n     \"//third_party/sqlite\",\n+    \"//components/ungoogled:ungoogled_switches\",\n     \"//third_party/webrtc_overrides:webrtc_component\",\n     \"//third_party/zlib\",\n     \"//tools/v8_context_snapshot:buildflags\",\n--- a/content/browser/renderer_host/render_process_host_impl.cc\n+++ b/content/browser/renderer_host/render_process_host_impl.cc\n@@ -83,6 +83,7 @@\n #include \"components/services/storage/public/cpp/quota_error_or.h\"\n #include \"components/services/storage/public/mojom/cache_storage_control.mojom.h\"\n #include \"components/tracing/common/tracing_switches.h\"\n+#include \"components/ungoogled/ungoogled_switches.h\"\n #include \"components/viz/common/switches.h\"\n #include \"components/viz/host/gpu_client.h\"\n #include \"components/viz/host/host_frame_sink_manager.h\"\n@@ -3709,6 +3710,8 @@ void RenderProcessHostImpl::PropagateBro\n       switches::kEnableWebGLImageChromium,\n       switches::kEnableWebGPUDeveloperFeatures,\n       switches::kFileUrlPathAlias,\n+      switches::kFingerprintingClientRectsNoise,\n+      switches::kFingerprintingCanvasMeasureTextNoise,\n       switches::kForceDeviceScaleFactor,\n       switches::kForceDisplayColorProfile,\n       switches::kForceHighContrast,\n--- a/content/child/BUILD.gn\n+++ b/content/child/BUILD.gn\n@@ -113,6 +113,7 @@ target(link_target_type, \"child\") {\n     \"//third_party/blink/public/common:buildflags\",\n     \"//third_party/blink/public/strings\",\n     \"//third_party/ced\",\n+    \"//components/ungoogled:ungoogled_switches\",\n     \"//third_party/zlib/google:compression_utils\",\n     \"//ui/base\",\n     \"//ui/events/blink\",\n--- a/content/child/runtime_features.cc\n+++ b/content/child/runtime_features.cc\n@@ -42,6 +42,7 @@\n #include \"third_party/blink/public/common/loader/referrer_utils.h\"\n #include \"third_party/blink/public/common/switches.h\"\n #include \"third_party/blink/public/platform/web_runtime_features.h\"\n+#include \"components/ungoogled/ungoogled_switches.h\"\n #include \"ui/accessibility/accessibility_features.h\"\n #include \"ui/base/ui_base_features.h\"\n #include \"ui/events/blink/blink_features.h\"\n@@ -489,6 +490,10 @@ void SetRuntimeFeaturesFromCommandLine(c\n        true},\n       {wrf::EnableWebAudioBypassOutputBufferingOptOut,\n        blink::switches::kWebAudioBypassOutputBufferingOptOut, true},\n+      {wrf::EnableFingerprintingClientRectsNoise,\n+       switches::kFingerprintingClientRectsNoise, true},\n+      {wrf::EnableFingerprintingCanvasMeasureTextNoise,\n+       switches::kFingerprintingCanvasMeasureTextNoise, true},\n   };\n \n   for (const auto& mapping : switchToFeatureMapping) {\n--- a/third_party/blink/public/platform/web_runtime_features.h\n+++ b/third_party/blink/public/platform/web_runtime_features.h\n@@ -70,6 +70,9 @@ class BLINK_PLATFORM_EXPORT WebRuntimeFe\n \n   static void EnableLocalNetworkAccessWebRTC(bool);\n \n+  static void EnableFingerprintingClientRectsNoise(bool);\n+  static void EnableFingerprintingCanvasMeasureTextNoise(bool);\n+\n   WebRuntimeFeatures() = delete;\n };\n \n--- a/third_party/blink/renderer/core/dom/document.cc\n+++ b/third_party/blink/renderer/core/dom/document.cc\n@@ -40,6 +40,7 @@\n #include \"base/i18n/time_formatting.h\"\n #include \"base/metrics/histogram_functions.h\"\n #include \"base/notreached.h\"\n+#include \"base/rand_util.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"base/time/time.h\"\n #include \"base/trace_event/trace_event.h\"\n@@ -1043,6 +1044,11 @@ Document::Document(const DocumentInit& i\n       data_(MakeGarbageCollected<DocumentData>(GetExecutionContext())) {\n   TRACE_EVENT(\"blink\", \"Document::Document\", perfetto::Flow::FromPointer(this));\n   DCHECK(agent_);\n+  if (RuntimeEnabledFeatures::FingerprintingClientRectsNoiseEnabled()) {\n+    // Precompute -0.0003% to 0.0003% noise factor for get*ClientRect*() fingerprinting\n+    noise_factor_x_ = 1 + (base::RandDouble() - 0.5) * 0.000003;\n+    noise_factor_y_ = 1 + (base::RandDouble() - 0.5) * 0.000003;\n+  }\n   if (base::FeatureList::IsEnabled(features::kDelayAsyncScriptExecution) &&\n       features::kDelayAsyncScriptExecutionDelayByDefaultParam.Get()) {\n     script_runner_delayer_->Activate();\n@@ -1176,6 +1182,14 @@ const Position Document::PositionAdjuste\n   return Position::BeforeNode(*shadow_host);\n }\n \n+double Document::GetNoiseFactorX() {\n+  return noise_factor_x_;\n+}\n+\n+double Document::GetNoiseFactorY() {\n+  return noise_factor_y_;\n+}\n+\n SelectorQueryCache& Document::GetSelectorQueryCache() {\n   if (!selector_query_cache_)\n     selector_query_cache_ = MakeGarbageCollected<SelectorQueryCache>();\n--- a/third_party/blink/renderer/core/dom/document.h\n+++ b/third_party/blink/renderer/core/dom/document.h\n@@ -571,6 +571,10 @@ class CORE_EXPORT Document : public Cont\n     has_xml_declaration_ = has_xml_declaration ? 1 : 0;\n   }\n \n+  // Values for get*ClientRect fingerprint deception\n+  double GetNoiseFactorX();\n+  double GetNoiseFactorY();\n+\n   V8VisibilityState visibilityState() const;\n   String visibilityStateAsString() const;\n   bool IsPageVisible() const;\n@@ -2842,6 +2846,9 @@ class CORE_EXPORT Document : public Cont\n \n   base::ElapsedTimer start_time_;\n \n+  double noise_factor_x_ = 1;\n+  double noise_factor_y_ = 1;\n+\n   // The script runner is used to run scripts of the following scheduling types:\n   // - ScriptSchedulingType::kAsync\n   // - ScriptSchedulingType::kInOrder\n--- a/third_party/blink/renderer/core/dom/element.cc\n+++ b/third_party/blink/renderer/core/dom/element.cc\n@@ -3444,6 +3444,9 @@ Vector<gfx::RectF> Element::GetClientRec\n   }\n   Vector<gfx::RectF> result;\n   for (auto& quad : quads) {\n+    if (RuntimeEnabledFeatures::FingerprintingClientRectsNoiseEnabled()) {\n+      quad.Scale(GetDocument().GetNoiseFactorX(), GetDocument().GetNoiseFactorY());\n+    }\n     result.emplace_back(quad.BoundingBox());\n   }\n   return result;\n@@ -3473,6 +3476,9 @@ gfx::RectF Element::GetBoundingClientRec\n   DCHECK(element_layout_object);\n   GetDocument().AdjustRectForScrollAndAbsoluteZoom(result,\n                                                    *element_layout_object);\n+  if (RuntimeEnabledFeatures::FingerprintingClientRectsNoiseEnabled()) {\n+    result.Scale(GetDocument().GetNoiseFactorX(), GetDocument().GetNoiseFactorY());\n+  }\n   return result;\n }\n \n--- a/third_party/blink/renderer/core/dom/range.cc\n+++ b/third_party/blink/renderer/core/dom/range.cc\n@@ -1656,6 +1656,12 @@ DOMRectList* Range::getClientRects() con\n   Vector<gfx::QuadF> quads;\n   GetBorderAndTextQuads(quads);\n \n+  if (RuntimeEnabledFeatures::FingerprintingClientRectsNoiseEnabled()) {\n+    for (gfx::QuadF& quad : quads) {\n+      quad.Scale(owner_document_->GetNoiseFactorX(), owner_document_->GetNoiseFactorY());\n+    }\n+  }\n+\n   return MakeGarbageCollected<DOMRectList>(quads);\n }\n \n@@ -1663,7 +1669,11 @@ DOMRect* Range::getBoundingClientRect()\n   // TODO(crbug.com/1499981): This should be removed once synchronized scrolling\n   // impact is understood.\n   SyncScrollAttemptHeuristic::DidAccessScrollOffset();\n-  return DOMRect::FromRectF(BoundingRect());\n+  auto rect = BoundingRect();\n+  if (RuntimeEnabledFeatures::FingerprintingClientRectsNoiseEnabled()) {\n+    rect.Scale(owner_document_->GetNoiseFactorX(), owner_document_->GetNoiseFactorY());\n+  }\n+  return DOMRect::FromRectF(rect);\n }\n \n // TODO(editing-dev): We should make\n--- a/third_party/blink/renderer/core/html/canvas/text_metrics.cc\n+++ b/third_party/blink/renderer/core/html/canvas/text_metrics.cc\n@@ -90,6 +90,24 @@ TextMetrics::TextMetrics(const Font* fon\n   Update(font, direction, baseline, align, text, text_painter);\n }\n \n+void TextMetrics::Shuffle(const double factor) {\n+  // x-direction\n+  width_ *= factor;\n+  actual_bounding_box_left_ *= factor;\n+  actual_bounding_box_right_ *= factor;\n+\n+  // y-direction\n+  font_bounding_box_ascent_ *= factor;\n+  font_bounding_box_descent_ *= factor;\n+  actual_bounding_box_ascent_ *= factor;\n+  actual_bounding_box_descent_ *= factor;\n+  em_height_ascent_ *= factor;\n+  em_height_descent_ *= factor;\n+  baselines_->setAlphabetic(baselines_->alphabetic() * factor);\n+  baselines_->setHanging(baselines_->hanging() * factor);\n+  baselines_->setIdeographic(baselines_->ideographic() * factor);\n+}\n+\n void TextMetrics::Update(const Font* font,\n                          const TextDirection& direction,\n                          const V8CanvasTextBaseline::Enum baseline,\n--- a/third_party/blink/renderer/core/html/canvas/text_metrics.h\n+++ b/third_party/blink/renderer/core/html/canvas/text_metrics.h\n@@ -110,6 +110,8 @@ class CORE_EXPORT TextMetrics final : pu\n     float x_position_;\n   };\n \n+  void Shuffle(const double factor);\n+\n  private:\n   void Update(const Font*,\n               const TextDirection& direction,\n--- a/third_party/blink/renderer/modules/canvas/canvas2d/base_rendering_context_2d.cc\n+++ b/third_party/blink/renderer/modules/canvas/canvas2d/base_rendering_context_2d.cc\n@@ -102,6 +102,9 @@\n // https://github.com/include-what-you-use/include-what-you-use/issues/1122\n // IWYU pragma: no_include \"base/numerics/clamped_math.h\"\n \n+#include \"third_party/blink/renderer/core/offscreencanvas/offscreen_canvas.h\"\n+#include \"third_party/blink/renderer/core/frame/local_dom_window.h\"\n+\n namespace blink {\n \n class MemoryManagedPaintCanvas;\n@@ -1165,9 +1168,22 @@ TextMetrics* BaseRenderingContext2D::mea\n   TextDirection direction =\n       ToTextDirection(state.GetDirection(), host, computed_style);\n \n-  return MakeGarbageCollected<TextMetrics>(\n+  TextMetrics* text_metrics = MakeGarbageCollected<TextMetrics>(\n       font, direction, state.GetTextBaseline(), state.GetTextAlign(), text,\n       host->GetPlainTextPainter());\n+\n+  // Scale text metrics if enabled\n+  if (RuntimeEnabledFeatures::FingerprintingCanvasMeasureTextNoiseEnabled()) {\n+    if (HostAsOffscreenCanvas()) {\n+      if (auto* window = DynamicTo<LocalDOMWindow>(GetTopExecutionContext())) {\n+        if (window->GetFrame() && window->GetFrame()->GetDocument())\n+          text_metrics->Shuffle(window->GetFrame()->GetDocument()->GetNoiseFactorX());\n+      }\n+    } else if (canvas) {\n+      text_metrics->Shuffle(canvas->GetDocument().GetNoiseFactorX());\n+    }\n+  }\n+  return text_metrics;\n }\n \n String BaseRenderingContext2D::lang() const {\n--- a/third_party/blink/renderer/platform/BUILD.gn\n+++ b/third_party/blink/renderer/platform/BUILD.gn\n@@ -1812,6 +1812,7 @@ component(\"platform\") {\n     \"//components/paint_preview/common\",\n     \"//components/search_engines:search_engine_utils\",\n     \"//components/translate/core/language_detection\",\n+    \"//components/ungoogled:ungoogled_switches\",\n     \"//components/viz/client\",\n     \"//components/viz/common\",\n     \"//components/webrtc:net_address_utils\",\n--- a/third_party/blink/renderer/platform/exported/web_runtime_features.cc\n+++ b/third_party/blink/renderer/platform/exported/web_runtime_features.cc\n@@ -68,4 +68,12 @@ void WebRuntimeFeatures::EnableLocalNetw\n   RuntimeEnabledFeatures::SetLocalNetworkAccessWebRTCEnabled(enable);\n }\n \n+void WebRuntimeFeatures::EnableFingerprintingClientRectsNoise(bool enable) {\n+  RuntimeEnabledFeatures::SetFingerprintingClientRectsNoiseEnabled(enable);\n+}\n+\n+void WebRuntimeFeatures::EnableFingerprintingCanvasMeasureTextNoise(bool enable) {\n+  RuntimeEnabledFeatures::SetFingerprintingCanvasMeasureTextNoiseEnabled(enable);\n+}\n+\n }  // namespace blink\n--- a/third_party/blink/renderer/platform/graphics/image_data_buffer.cc\n+++ b/third_party/blink/renderer/platform/graphics/image_data_buffer.cc\n@@ -35,6 +35,7 @@\n #include \"base/compiler_specific.h\"\n #include \"base/memory/ptr_util.h\"\n #include \"third_party/blink/renderer/platform/image-encoders/image_encoder_utils.h\"\n+#include \"third_party/blink/renderer/platform/runtime_enabled_features.h\"\n #include \"third_party/blink/renderer/platform/wtf/text/base64.h\"\n #include \"third_party/blink/renderer/platform/wtf/text/strcat.h\"\n #include \"third_party/skia/include/core/SkImage.h\"\n--- a/third_party/blink/renderer/platform/runtime_enabled_features.json5\n+++ b/third_party/blink/renderer/platform/runtime_enabled_features.json5\n@@ -2626,6 +2626,12 @@\n       status: \"stable\",\n     },\n     {\n+      name: \"FingerprintingClientRectsNoise\",\n+    },\n+    {\n+      name: \"FingerprintingCanvasMeasureTextNoise\",\n+    },\n+    {\n       name: \"Fledge\",\n       status: \"stable\",\n       base_feature: \"none\",\n"
  },
  {
    "path": "patches/extra/bromite/flag-fingerprinting-canvas-image-data-noise.patch",
    "content": "# NOTE: Changes made:\n# * Added flag --fingerprinting-canvas-image-data-noise to enable/disable\n#   Canvas image data fingerprinting deception\n# * Removed WebGLDebugRendererInfo disabling in favor of an alternative\n#   implementation in ungoogled-chromium/disable-webgl-renderer-info.patch\n# * Tweak subchannel noise generation to require fewer random number generation\nFrom: csagan5 <32685696+csagan5@users.noreply.github.com>\nDate: Sat, 24 Mar 2018 05:18:03 +0100\nSubject: Canvas: fingerprinting mitigations for image data and webGL\n\nDisable webGL renderer info and modify the color data returned by ToBlob,\nToDataURL and getImageData so that it will contain randomly manipulated\npixels (maximum 10) that slightly change the color of the R,G,B components\nwithout a visible effect.\n\nCredits to Slaviro (https://github.com/Slaviro) for coming up with a better\napproach to change color components.\n---\n .../platform/graphics/image_data_buffer.cc         |   5 +\n .../platform/graphics/static_bitmap_image.cc       | 154 +++++++++++++++++++++\n .../platform/graphics/static_bitmap_image.h        |   2 +\n 4 files changed, 163 insertions(+), 2 deletions(-)\n\n--- a/chrome/browser/bromite_flag_entries.h\n+++ b/chrome/browser/bromite_flag_entries.h\n@@ -16,4 +16,8 @@\n      flag_descriptions::kMaxConnectionsPerHostName,\n      flag_descriptions::kMaxConnectionsPerHostDescription,\n      kOsAll, MULTI_VALUE_TYPE(kMaxConnectionsPerHostChoices)},\n+    {\"fingerprinting-canvas-image-data-noise\",\n+     \"Enable Canvas image data fingerprint deception\",\n+     \"Slightly modifies at most 10 pixels in Canvas image data extracted via JS APIs. ungoogled-chromium flag, Bromite feature.\",\n+     kOsAll, SINGLE_VALUE_TYPE(switches::kFingerprintingCanvasImageDataNoise)},\n #endif  // CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n--- a/content/browser/renderer_host/render_process_host_impl.cc\n+++ b/content/browser/renderer_host/render_process_host_impl.cc\n@@ -3712,6 +3712,7 @@ void RenderProcessHostImpl::PropagateBro\n       switches::kFileUrlPathAlias,\n       switches::kFingerprintingClientRectsNoise,\n       switches::kFingerprintingCanvasMeasureTextNoise,\n+      switches::kFingerprintingCanvasImageDataNoise,\n       switches::kForceDeviceScaleFactor,\n       switches::kForceDisplayColorProfile,\n       switches::kForceHighContrast,\n--- a/content/child/runtime_features.cc\n+++ b/content/child/runtime_features.cc\n@@ -494,6 +494,8 @@ void SetRuntimeFeaturesFromCommandLine(c\n        switches::kFingerprintingClientRectsNoise, true},\n       {wrf::EnableFingerprintingCanvasMeasureTextNoise,\n        switches::kFingerprintingCanvasMeasureTextNoise, true},\n+      {wrf::EnableFingerprintingCanvasImageDataNoise,\n+       switches::kFingerprintingCanvasImageDataNoise, true},\n   };\n \n   for (const auto& mapping : switchToFeatureMapping) {\n--- a/third_party/blink/public/platform/web_runtime_features.h\n+++ b/third_party/blink/public/platform/web_runtime_features.h\n@@ -72,6 +72,7 @@ class BLINK_PLATFORM_EXPORT WebRuntimeFe\n \n   static void EnableFingerprintingClientRectsNoise(bool);\n   static void EnableFingerprintingCanvasMeasureTextNoise(bool);\n+  static void EnableFingerprintingCanvasImageDataNoise(bool);\n \n   WebRuntimeFeatures() = delete;\n };\n--- a/third_party/blink/renderer/modules/canvas/canvas2d/base_rendering_context_2d.cc\n+++ b/third_party/blink/renderer/modules/canvas/canvas2d/base_rendering_context_2d.cc\n@@ -526,6 +526,9 @@ ImageData* BaseRenderingContext2D::getIm\n           snapshot->PaintImageForCurrentFrame().GetSkImageInfo().bounds();\n       DCHECK(!bounds.intersect(SkIRect::MakeXYWH(sx, sy, sw, sh)));\n     }\n+    if (read_pixels_successful && RuntimeEnabledFeatures::FingerprintingCanvasImageDataNoiseEnabled()) {\n+      StaticBitmapImage::ShuffleSubchannelColorData(image_data_pixmap.addr(), image_data_pixmap.info(), sx, sy);\n+    }\n   }\n \n   return image_data;\n--- a/third_party/blink/renderer/platform/BUILD.gn\n+++ b/third_party/blink/renderer/platform/BUILD.gn\n@@ -1754,7 +1754,9 @@ component(\"platform\") {\n     \"//third_party/blink/renderer:non_test_config\",\n   ]\n \n-  include_dirs = []\n+  include_dirs = [\n+    \"//third_party/skia/include/private\", # For shuffler in graphics/static_bitmap_image.cc\n+  ]\n \n   allow_circular_includes_from = [\n     \"//third_party/blink/renderer/platform/blob\",\n--- a/third_party/blink/renderer/platform/exported/web_runtime_features.cc\n+++ b/third_party/blink/renderer/platform/exported/web_runtime_features.cc\n@@ -76,4 +76,8 @@ void WebRuntimeFeatures::EnableFingerpri\n   RuntimeEnabledFeatures::SetFingerprintingCanvasMeasureTextNoiseEnabled(enable);\n }\n \n+void WebRuntimeFeatures::EnableFingerprintingCanvasImageDataNoise(bool enable) {\n+  RuntimeEnabledFeatures::SetFingerprintingCanvasImageDataNoiseEnabled(enable);\n+}\n+\n }  // namespace blink\n--- a/third_party/blink/renderer/platform/graphics/static_bitmap_image.cc\n+++ b/third_party/blink/renderer/platform/graphics/static_bitmap_image.cc\n@@ -4,6 +4,8 @@\n \n #include \"third_party/blink/renderer/platform/graphics/static_bitmap_image.h\"\n \n+#include \"base/rand_util.h\"\n+#include \"base/logging.h\"\n #include \"base/numerics/checked_math.h\"\n #include \"gpu/command_buffer/client/gles2_interface.h\"\n #include \"third_party/blink/renderer/platform/graphics/accelerated_static_bitmap_image.h\"\n@@ -11,11 +13,13 @@\n #include \"third_party/blink/renderer/platform/graphics/image_observer.h\"\n #include \"third_party/blink/renderer/platform/graphics/paint/paint_image.h\"\n #include \"third_party/blink/renderer/platform/graphics/unaccelerated_static_bitmap_image.h\"\n+#include \"third_party/blink/renderer/platform/runtime_enabled_features.h\"\n #include \"third_party/blink/renderer/platform/transforms/affine_transform.h\"\n #include \"third_party/skia/include/core/SkCanvas.h\"\n #include \"third_party/skia/include/core/SkImage.h\"\n #include \"third_party/skia/include/core/SkPaint.h\"\n #include \"third_party/skia/include/core/SkSurface.h\"\n+#include \"third_party/skia/src/core/SkColorData.h\"\n #include \"ui/gfx/geometry/skia_conversions.h\"\n #include \"v8/include/v8.h\"\n \n@@ -114,4 +118,154 @@ void StaticBitmapImage::DrawHelper(cc::P\n                         ToSkiaRectConstraint(draw_options.clamping_mode));\n }\n \n+// set the component to maximum-delta if it is >= maximum, or add to existing color component (color + delta)\n+#define shuffleComponent(color, max, delta) ( (color) >= (max) ? ((max)-(delta)) : ((color)+(delta)) )\n+\n+#define writable_addr(T, p, stride, x, y) (T*)((const char *)p + y * stride + x * sizeof(T))\n+\n+void StaticBitmapImage::ShuffleSubchannelColorData(const void *addr, const SkImageInfo& info, int srcX, int srcY) {\n+  auto w = info.width() - srcX, h = info.height() - srcY;\n+\n+  // skip tiny images; info.width()/height() can also be 0\n+  if ((w < 8) || (h < 8)) {\n+    return;\n+  }\n+\n+  // generate the first random number here\n+  double shuffleX = base::RandDouble();\n+\n+  // cap maximum pixels to change\n+  auto pixels = (w + h) / 128;\n+  if (pixels > 10) {\n+    pixels = 10;\n+  } else if (pixels < 2) {\n+    pixels = 2;\n+  }\n+\n+  auto colorType = info.colorType();\n+  auto fRowBytes = info.minRowBytes(); // stride\n+\n+  DLOG(INFO) << \"BRM: ShuffleSubchannelColorData() w=\" << w << \" h=\" << h << \" colorType=\" << colorType << \" fRowBytes=\" << fRowBytes;\n+\n+  // second random number (for y/height)\n+  double shuffleY = base::RandDouble();\n+\n+  // calculate random coordinates using bisection\n+  auto currentW = w, currentH = h;\n+  for(;pixels >= 0; pixels--) {\n+    int x = currentW * shuffleX, y = currentH * shuffleY;\n+\n+    // calculate randomisation amounts for each RGB component\n+    uint8_t shuffleR = base::RandInt(0, 4);\n+    uint8_t shuffleG = (shuffleR + x) % 4;\n+    uint8_t shuffleB = (shuffleG + y) % 4;\n+\n+    // manipulate pixel data to slightly change the R, G, B components\n+    switch (colorType) {\n+      case kAlpha_8_SkColorType:\n+      {\n+         auto *pixel = writable_addr(uint8_t, addr, fRowBytes, x, y);\n+         auto r = SkColorGetR(*pixel), g = SkColorGetG(*pixel), b = SkColorGetB(*pixel), a = SkColorGetA(*pixel);\n+\n+         r = shuffleComponent(r, UINT8_MAX-1, shuffleR);\n+         g = shuffleComponent(g, UINT8_MAX-1, shuffleG);\n+         b = shuffleComponent(b, UINT8_MAX-1, shuffleB);\n+         // alpha is left unchanged\n+\n+         *pixel = SkColorSetARGB(a, r, g, b);\n+      }\n+      break;\n+      case kGray_8_SkColorType:\n+      {\n+         auto *pixel = writable_addr(uint8_t, addr, fRowBytes, x, y);\n+         *pixel = shuffleComponent(*pixel, UINT8_MAX-1, shuffleB);\n+      }\n+      break;\n+      case kRGB_565_SkColorType:\n+      {\n+         auto *pixel = writable_addr(uint16_t, addr, fRowBytes, x, y);\n+         unsigned    r = SkPacked16ToR32(*pixel);\n+         unsigned    g = SkPacked16ToG32(*pixel);\n+         unsigned    b = SkPacked16ToB32(*pixel);\n+\n+         r = shuffleComponent(r, 31, shuffleR);\n+         g = shuffleComponent(g, 63, shuffleG);\n+         b = shuffleComponent(b, 31, shuffleB);\n+\n+         unsigned r16 = (r & SK_R16_MASK) << SK_R16_SHIFT;\n+         unsigned g16 = (g & SK_G16_MASK) << SK_G16_SHIFT;\n+         unsigned b16 = (b & SK_B16_MASK) << SK_B16_SHIFT;\n+\n+         *pixel = r16 | g16 | b16;\n+      }\n+      break;\n+      case kARGB_4444_SkColorType:\n+      {\n+         auto *pixel = writable_addr(uint16_t, addr, fRowBytes, x, y);\n+         auto a = SkGetPackedA4444(*pixel), r = SkGetPackedR4444(*pixel), g = SkGetPackedG4444(*pixel), b = SkGetPackedB4444(*pixel);\n+\n+         r = shuffleComponent(r, 15, shuffleR);\n+         g = shuffleComponent(g, 15, shuffleG);\n+         b = shuffleComponent(b, 15, shuffleB);\n+         // alpha is left unchanged\n+\n+         unsigned a4 = (a & 0xF) << SK_A4444_SHIFT;\n+         unsigned r4 = (r & 0xF) << SK_R4444_SHIFT;\n+         unsigned g4 = (g & 0xF) << SK_G4444_SHIFT;\n+         unsigned b4 = (b & 0xF) << SK_B4444_SHIFT;\n+\n+         *pixel = r4 | b4 | g4 | a4;\n+      }\n+      break;\n+      case kRGBA_8888_SkColorType:\n+      {\n+         auto *pixel = writable_addr(uint32_t, addr, fRowBytes, x, y);\n+         auto a = SkGetPackedA32(*pixel), r = SkGetPackedR32(*pixel), g = SkGetPackedG32(*pixel), b = SkGetPackedB32(*pixel);\n+\n+         r = shuffleComponent(r, UINT8_MAX-1, shuffleR);\n+         g = shuffleComponent(g, UINT8_MAX-1, shuffleG);\n+         b = shuffleComponent(b, UINT8_MAX-1, shuffleB);\n+         // alpha is left unchanged\n+\n+         *pixel = (a << SK_A32_SHIFT) | (r << SK_R32_SHIFT) |\n+                  (g << SK_G32_SHIFT) | (b << SK_B32_SHIFT);\n+      }\n+      break;\n+      case kBGRA_8888_SkColorType:\n+      {\n+         auto *pixel = writable_addr(uint32_t, addr, fRowBytes, x, y);\n+         auto a = SkGetPackedA32(*pixel), b = SkGetPackedR32(*pixel), g = SkGetPackedG32(*pixel), r = SkGetPackedB32(*pixel);\n+\n+         r = shuffleComponent(r, UINT8_MAX-1, shuffleR);\n+         g = shuffleComponent(g, UINT8_MAX-1, shuffleG);\n+         b = shuffleComponent(b, UINT8_MAX-1, shuffleB);\n+         // alpha is left unchanged\n+\n+         *pixel = (a << SK_BGRA_A32_SHIFT) | (r << SK_BGRA_R32_SHIFT) |\n+                  (g << SK_BGRA_G32_SHIFT) | (b << SK_BGRA_B32_SHIFT);\n+      }\n+      break;\n+      default:\n+         // the remaining formats are not expected to be used in Chromium\n+         LOG(WARNING) << \"BRM: ShuffleSubchannelColorData(): Ignoring pixel format\";\n+         return;\n+    }\n+\n+    // keep bisecting or reset current width/height as needed\n+    if (x == 0) {\n+       currentW = w;\n+    } else {\n+       currentW = x;\n+    }\n+    if (y == 0) {\n+       currentH = h;\n+    } else {\n+       currentH = y;\n+    }\n+  }\n+}\n+\n+#undef writable_addr\n+#undef shuffleComponent\n+\n }  // namespace blink\n--- a/third_party/blink/renderer/platform/graphics/static_bitmap_image.h\n+++ b/third_party/blink/renderer/platform/graphics/static_bitmap_image.h\n@@ -37,6 +37,8 @@ class PLATFORM_EXPORT StaticBitmapImage\n \n   StaticBitmapImage(ImageOrientation orientation) : orientation_(orientation) {}\n \n+  static void ShuffleSubchannelColorData(const void *addr, const SkImageInfo& info, int srcX, int srcY);\n+\n   bool IsStaticBitmapImage() const override { return true; }\n \n   // Methods overridden by all sub-classes\n--- a/third_party/blink/renderer/platform/image-encoders/image_encoder.cc\n+++ b/third_party/blink/renderer/platform/image-encoders/image_encoder.cc\n@@ -13,6 +13,8 @@\n #include <stdio.h>  // Needed by jpeglib.h\n \n #include \"jpeglib.h\"  // for JPEG_MAX_DIMENSION\n+#include \"third_party/blink/renderer/platform/graphics/static_bitmap_image.h\"\n+#include \"third_party/blink/renderer/platform/runtime_enabled_features.h\"\n #include \"third_party/libwebp/src/src/webp/encode.h\"  // for WEBP_MAX_DIMENSION\n \n namespace blink {\n@@ -44,6 +46,10 @@ bool ImageEncoder::Encode(Vector<unsigne\n                           const SkPixmap& src,\n                           ImageEncodingMimeType mime_type,\n                           double quality) {\n+  if (RuntimeEnabledFeatures::FingerprintingCanvasImageDataNoiseEnabled()) {\n+    // shuffle subchannel color data within the pixmap\n+    StaticBitmapImage::ShuffleSubchannelColorData(src.writable_addr(), src.info(), 0, 0);\n+  }\n   switch (mime_type) {\n     case kMimeTypeJpeg: {\n       SkJpegEncoder::Options options;\n--- a/third_party/blink/renderer/platform/runtime_enabled_features.json5\n+++ b/third_party/blink/renderer/platform/runtime_enabled_features.json5\n@@ -2632,6 +2632,9 @@\n       name: \"FingerprintingCanvasMeasureTextNoise\",\n     },\n     {\n+      name: \"FingerprintingCanvasImageDataNoise\",\n+    },\n+    {\n       name: \"Fledge\",\n       status: \"stable\",\n       base_feature: \"none\",\n"
  },
  {
    "path": "patches/extra/bromite/flag-max-connections-per-host.patch",
    "content": "From: csagan5 <32685696+csagan5@users.noreply.github.com>\nDate: Sun, 8 Jul 2018 22:42:04 +0200\nSubject: Add flag to configure maximum connections per host\n\nWith the introduction of this flag it is possible to increase the maximum\nallowed connections per host; this can however be detrimental to devices\nwith limited CPU/memory resources and it is disabled by default.\n---\n chrome/browser/about_flags.cc                            |  8 ++++++++\n chrome/browser/flag_descriptions.cc                      |  4 ++++\n chrome/browser/flag_descriptions.h                       |  3 +++\n .../common/network_features.cc                           |  3 +++\n .../common/network_features.h                            |  4 ++++\n .../common/network_switch_list.h                         |  4 ++++\n net/socket/client_socket_pool_manager.cc                 | 16 ++++++++++++++++\n 7 files changed, 42 insertions(+)\n\n--- a/chrome/browser/BUILD.gn\n+++ b/chrome/browser/BUILD.gn\n@@ -2213,6 +2213,7 @@ static_library(\"browser\") {\n     \"//components/net_log\",\n     \"//components/network_hints/common:mojo_bindings\",\n     \"//components/network_session_configurator/browser\",\n+    \"//components/network_session_configurator/common\",\n     \"//components/network_time\",\n     \"//components/network_time/time_tracker\",\n     \"//components/no_state_prefetch/browser\",\n--- a/chrome/browser/bromite_flag_choices.h\n+++ b/chrome/browser/bromite_flag_choices.h\n@@ -4,4 +4,8 @@\n \n #ifndef CHROME_BROWSER_BROMITE_FLAG_CHOICES_H_\n #define CHROME_BROWSER_BROMITE_FLAG_CHOICES_H_\n+const FeatureEntry::Choice kMaxConnectionsPerHostChoices[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"15\", switches::kMaxConnectionsPerHost, \"15\"},\n+};\n #endif  // CHROME_BROWSER_BROMITE_FLAG_CHOICES_H_\n--- a/chrome/browser/bromite_flag_entries.h\n+++ b/chrome/browser/bromite_flag_entries.h\n@@ -12,4 +12,8 @@\n      \"Enable Canvas::measureText() fingerprint deception\",\n      \"Scale the output values of Canvas::measureText() with a randomly selected factor in the range -0.0003% to 0.0003%, which are recomputed on every document initialization. ungoogled-chromium flag, Bromite feature.\",\n      kOsAll, SINGLE_VALUE_TYPE(switches::kFingerprintingCanvasMeasureTextNoise)},\n+    {\"max-connections-per-host\",\n+     flag_descriptions::kMaxConnectionsPerHostName,\n+     flag_descriptions::kMaxConnectionsPerHostDescription,\n+     kOsAll, MULTI_VALUE_TYPE(kMaxConnectionsPerHostChoices)},\n #endif  // CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n--- a/chrome/browser/browser_process_impl.cc\n+++ b/chrome/browser/browser_process_impl.cc\n@@ -22,6 +22,7 @@\n #include \"base/functional/callback.h\"\n #include \"base/functional/callback_helpers.h\"\n #include \"base/location.h\"\n+#include \"base/logging.h\"\n #include \"base/memory/ptr_util.h\"\n #include \"base/metrics/histogram_functions.h\"\n #include \"base/metrics/histogram_macros.h\"\n@@ -29,6 +30,7 @@\n #include \"base/notreached.h\"\n #include \"base/path_service.h\"\n #include \"base/run_loop.h\"\n+#include \"base/strings/string_number_conversions.h\"\n #include \"base/synchronization/waitable_event.h\"\n #include \"base/task/sequenced_task_runner.h\"\n #include \"base/task/single_thread_task_runner.h\"\n@@ -119,6 +121,7 @@\n #include \"components/metrics/metrics_service.h\"\n #include \"components/metrics_services_manager/metrics_services_manager.h\"\n #include \"components/metrics_services_manager/metrics_services_manager_client.h\"\n+#include \"components/network_session_configurator/common/network_switches.h\"\n #include \"components/network_time/network_time_tracker.h\"\n #include \"components/os_crypt/async/browser/os_crypt_async.h\"\n #include \"components/permissions/permissions_client.h\"\n@@ -156,6 +159,7 @@\n #include \"extensions/common/constants.h\"\n #include \"media/media_buildflags.h\"\n #include \"mojo/public/cpp/bindings/pending_receiver.h\"\n+#include \"net/socket/client_socket_pool_manager.h\"\n #include \"printing/buildflags/buildflags.h\"\n #include \"services/network/public/cpp/features.h\"\n #include \"services/network/public/cpp/network_switches.h\"\n@@ -470,6 +474,18 @@ void BrowserProcessImpl::Init() {\n   pref_change_registrar_.Add(metrics::prefs::kMetricsReportingEnabled,\n                              base::BindRepeating(&ApplyMetricsReportingPolicy));\n \n+  int max_connections_per_host = 0;\n+  auto switch_value = base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\n+      switches::kMaxConnectionsPerHost);\n+  if (!switch_value.empty() && !base::StringToInt(switch_value, &max_connections_per_host)) {\n+    LOG(DFATAL) << \"--\" << switches::kMaxConnectionsPerHost\n+      << \" expected integer; got (\\\"\" << switch_value << \"\\\" instead)\";\n+  }\n+  if (max_connections_per_host != 0) {\n+    net::ClientSocketPoolManager::set_max_sockets_per_group_for_test(\n+        net::HttpNetworkSession::NORMAL_SOCKET_POOL, max_connections_per_host);\n+  }\n+\n   DCHECK(!webrtc_event_log_manager_);\n   webrtc_event_log_manager_ = WebRtcEventLogManager::CreateSingletonInstance();\n \n--- a/chrome/browser/flag_descriptions.h\n+++ b/chrome/browser/flag_descriptions.h\n@@ -2770,6 +2770,10 @@ inline constexpr char kLogJsConsoleMessa\n     \"Enable logging JS console messages in system logs, please note that they \"\n     \"may contain PII.\";\n \n+inline constexpr char kMaxConnectionsPerHostName[] = \"Maximum connections per host\";\n+inline constexpr char kMaxConnectionsPerHostDescription[] =\n+     \"Customize maximum allowed connections per host. ungoogled-chromium flag, Bromite feature.\";\n+\n inline constexpr char kMediaRouterCastAllowAllIPsName[] =\n     \"Connect to Cast devices on all IP addresses\";\n inline constexpr char kMediaRouterCastAllowAllIPsDescription[] =\n--- a/components/network_session_configurator/common/network_switch_list.h\n+++ b/components/network_session_configurator/common/network_switch_list.h\n@@ -19,6 +19,10 @@ NETWORK_SWITCH(kEnableUserAlternateProto\n // Enables the QUIC protocol.  This is a temporary testing flag.\n NETWORK_SWITCH(kEnableQuic, \"enable-quic\")\n \n+// Allows specifying a higher number of maximum connections per host\n+// (15 instead of 6, mirroring the value Mozilla uses).\n+NETWORK_SWITCH(kMaxConnectionsPerHost, \"max-connections-per-host\")\n+\n // Ignores certificate-related errors.\n // Note: In tests using net::EmbeddedTestServer with a custom hostname not\n // covered by the default test certs, using this switch is usually incorrect.\n"
  },
  {
    "path": "patches/extra/debian/disable/google-api-warning.patch",
    "content": "description: disable the google api key warning when those aren't found\nauthor: Michael Gilbert <mgilbert@debian.org>\n\n--- a/chrome/browser/ui/startup/infobar_utils.cc\n+++ b/chrome/browser/ui/startup/infobar_utils.cc\n@@ -186,10 +186,6 @@ void AddInfoBarsIfNecessary(BrowserWindo\n   infobars::ContentInfoBarManager* infobar_manager =\n       infobars::ContentInfoBarManager::FromWebContents(web_contents);\n \n-  if (!google_apis::HasAPIKeyConfigured()) {\n-    GoogleApiKeysInfoBarDelegate::Create(infobar_manager);\n-  }\n-\n   if (ObsoleteSystem::IsObsoleteNowOrSoon()) {\n     PrefService* local_state = g_browser_process->local_state();\n     if (!local_state ||\n"
  },
  {
    "path": "patches/extra/inox-patchset/0006-modify-default-prefs.patch",
    "content": "\n--- a/chrome/browser/background/extensions/background_mode_manager.cc\n+++ b/chrome/browser/background/extensions/background_mode_manager.cc\n@@ -347,7 +347,7 @@ BackgroundModeManager::~BackgroundModeMa\n \n // static\n void BackgroundModeManager::RegisterPrefs(PrefRegistrySimple* registry) {\n-  registry->RegisterBooleanPref(prefs::kBackgroundModeEnabled, true);\n+  registry->RegisterBooleanPref(prefs::kBackgroundModeEnabled, false);\n }\n \n void BackgroundModeManager::RegisterProfile(Profile* profile) {\n--- a/chrome/browser/chrome_content_browser_client.cc\n+++ b/chrome/browser/chrome_content_browser_client.cc\n@@ -1449,7 +1449,7 @@ void ChromeContentBrowserClient::Registe\n void ChromeContentBrowserClient::RegisterProfilePrefs(\n     user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterBooleanPref(prefs::kDisable3DAPIs, false);\n-  registry->RegisterBooleanPref(prefs::kEnableHyperlinkAuditing, true);\n+  registry->RegisterBooleanPref(prefs::kEnableHyperlinkAuditing, false);\n   // Register user prefs for mapping SitePerProcess and IsolateOrigins in\n   // user policy in addition to the same named ones in Local State (which are\n   // used for mapping the command-line flags).\n--- a/chrome/browser/net/profile_network_context_service.cc\n+++ b/chrome/browser/net/profile_network_context_service.cc\n@@ -593,7 +593,7 @@ void ProfileNetworkContextService::Confi\n void ProfileNetworkContextService::RegisterProfilePrefs(\n     user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterBooleanPref(embedder_support::kAlternateErrorPagesEnabled,\n-                                true);\n+                                false);\n   registry->RegisterBooleanPref(prefs::kQuicAllowed, true);\n   registry->RegisterBooleanPref(prefs::kGloballyScopeHTTPAuthCacheEnabled,\n                                 false);\n--- a/chrome/browser/preloading/preloading_prefs.h\n+++ b/chrome/browser/preloading/preloading_prefs.h\n@@ -23,7 +23,7 @@ enum class NetworkPredictionOptions {\n   kWifiOnlyDeprecated = 1,\n   kDisabled = 2,\n   kExtended = 3,\n-  kDefault = kWifiOnlyDeprecated,\n+  kDefault = kDisabled,\n };\n \n // Enum representing possible values of the Preload Pages opt-in state. These\n--- a/chrome/browser/profiles/profile.cc\n+++ b/chrome/browser/profiles/profile.cc\n@@ -328,7 +328,7 @@ const char Profile::kProfileKey[] = \"__P\n void Profile::RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterBooleanPref(\n       prefs::kSearchSuggestEnabled,\n-      true,\n+      false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n #if BUILDFLAG(IS_ANDROID)\n   registry->RegisterStringPref(\n--- a/chrome/browser/resources/settings/reset_page/reset_profile_dialog.html\n+++ b/chrome/browser/resources/settings/reset_page/reset_profile_dialog.html\n@@ -33,7 +33,7 @@\n         </cr-button>\n       </div>\n       <div slot=\"footer\">\n-        <cr-checkbox id=\"sendSettings\" checked>\n+        <cr-checkbox id=\"sendSettings\">\n           $i18nRaw{resetPageFeedback}</cr-checkbox>\n       </div>\n     </cr-dialog>\n--- a/chrome/browser/ui/browser_ui_prefs.cc\n+++ b/chrome/browser/ui/browser_ui_prefs.cc\n@@ -129,7 +129,7 @@ void RegisterBrowserUserPrefs(user_prefs\n   registry->RegisterBooleanPref(prefs::kWebAppCreateInAppsMenu, true);\n   registry->RegisterBooleanPref(prefs::kWebAppCreateInQuickLaunchBar, true);\n   registry->RegisterBooleanPref(\n-      translate::prefs::kOfferTranslateEnabled, true,\n+      translate::prefs::kOfferTranslateEnabled, false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n   registry->RegisterDictionaryPref(prefs::kBrowserWindowPlacement);\n   registry->RegisterDictionaryPref(prefs::kBrowserWindowPlacementPopup);\n--- a/components/autofill/core/common/autofill_prefs.cc\n+++ b/components/autofill/core/common/autofill_prefs.cc\n@@ -35,7 +35,7 @@ constexpr char kAutofillRanExtraDeduplic\n void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {\n   // Synced prefs. Used for cross-device choices, e.g., credit card Autofill.\n   registry->RegisterBooleanPref(\n-      kAutofillProfileEnabled, true,\n+      kAutofillProfileEnabled, false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n   registry->RegisterIntegerPref(\n       kAutofillLastVersionDeduped, 0,\n@@ -63,7 +63,7 @@ void RegisterProfilePrefs(user_prefs::Pr\n       kAutofillHasSeenIban, false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n   registry->RegisterBooleanPref(\n-      kAutofillCreditCardEnabled, true,\n+      kAutofillCreditCardEnabled, false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n   registry->RegisterBooleanPref(\n       kAutofillPaymentCvcStorage, true,\n--- a/components/bookmarks/browser/bookmark_utils.cc\n+++ b/components/bookmarks/browser/bookmark_utils.cc\n@@ -450,7 +450,7 @@ bool DoesBookmarkContainWords(const std:\n \n void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterBooleanPref(\n-      prefs::kShowBookmarkBar, false,\n+      prefs::kShowBookmarkBar, true,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n   registry->RegisterBooleanPref(prefs::kEditBookmarksEnabled, true);\n   registry->RegisterBooleanPref(\n--- a/components/content_settings/core/browser/cookie_settings.cc\n+++ b/components/content_settings/core/browser/cookie_settings.cc\n@@ -83,7 +83,7 @@ void CookieSettings::RegisterProfilePref\n     user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterIntegerPref(\n       prefs::kCookieControlsMode,\n-      static_cast<int>(CookieControlsMode::kIncognitoOnly),\n+      static_cast<int>(CookieControlsMode::kBlockThirdParty),\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n }\n \n--- a/components/password_manager/core/browser/password_manager.cc\n+++ b/components/password_manager/core/browser/password_manager.cc\n@@ -547,10 +547,10 @@ PasswordForm CreateFormForLeakCheck(cons\n void PasswordManager::RegisterProfilePrefs(\n     user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterBooleanPref(\n-      prefs::kCredentialsEnableService, true,\n+      prefs::kCredentialsEnableService, false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PRIORITY_PREF);\n   registry->RegisterBooleanPref(\n-      prefs::kCredentialsEnableAutosignin, true,\n+      prefs::kCredentialsEnableAutosignin, false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PRIORITY_PREF);\n   registry->RegisterBooleanPref(\n       prefs::kWasAutoSignInFirstRunExperienceShown, false,\n--- a/components/payments/core/payment_prefs.cc\n+++ b/components/payments/core/payment_prefs.cc\n@@ -11,7 +11,7 @@ namespace payments {\n void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterBooleanPref(kPaymentsFirstTransactionCompleted, false);\n   registry->RegisterBooleanPref(\n-      kCanMakePaymentEnabled, true,\n+      kCanMakePaymentEnabled, false,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n }\n \n"
  },
  {
    "path": "patches/extra/inox-patchset/0008-restore-classic-ntp.patch",
    "content": "--- a/chrome/browser/search/search.cc\n+++ b/chrome/browser/search/search.cc\n@@ -177,33 +177,8 @@ struct NewTabURLDetails {\n     const GURL local_url(default_is_google\n                              ? chrome::kChromeUINewTabPageURL\n                              : chrome::kChromeUINewTabPageThirdPartyURL);\n-    if (default_is_google) {\n-      return NewTabURLDetails(local_url, NEW_TAB_URL_VALID);\n-    }\n #endif\n-\n-    const TemplateURL* template_url =\n-        GetDefaultSearchProviderTemplateURL(profile);\n-    if (!profile || !template_url) {\n-      return NewTabURLDetails(local_url, NEW_TAB_URL_BAD);\n-    }\n-\n-    GURL search_provider_url(template_url->new_tab_url_ref().ReplaceSearchTerms(\n-        TemplateURLRef::SearchTermsArgs(std::u16string()),\n-        UIThreadSearchTermsData()));\n-\n-    if (!search_provider_url.is_valid()) {\n-      return NewTabURLDetails(local_url, NEW_TAB_URL_NOT_SET);\n-    }\n-    if (!search_provider_url.SchemeIsCryptographic()) {\n-      return NewTabURLDetails(local_url, NEW_TAB_URL_INSECURE);\n-    }\n-    if (!IsURLAllowedForSupervisedUser(search_provider_url,\n-                                       CHECK_DEREF(profile))) {\n-      return NewTabURLDetails(local_url, NEW_TAB_URL_BLOCKED);\n-    }\n-\n-    return NewTabURLDetails(search_provider_url, NEW_TAB_URL_VALID);\n+    return NewTabURLDetails(local_url, NEW_TAB_URL_VALID);\n   }\n \n   const GURL url;\n"
  },
  {
    "path": "patches/extra/inox-patchset/0013-disable-missing-key-warning.patch",
    "content": "--- a/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc\n+++ b/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc\n@@ -17,9 +17,6 @@\n // static\n void GoogleApiKeysInfoBarDelegate::Create(\n     infobars::ContentInfoBarManager* infobar_manager) {\n-  infobar_manager->AddInfoBar(\n-      CreateConfirmInfoBar(std::unique_ptr<ConfirmInfoBarDelegate>(\n-          new GoogleApiKeysInfoBarDelegate())));\n }\n \n GoogleApiKeysInfoBarDelegate::GoogleApiKeysInfoBarDelegate() = default;\n"
  },
  {
    "path": "patches/extra/inox-patchset/0016-chromium-sandbox-pie.patch",
    "content": "--- a/sandbox/linux/BUILD.gn\n+++ b/sandbox/linux/BUILD.gn\n@@ -298,6 +298,14 @@ if (is_linux || is_chromeos) {\n       \"suid/process_util_linux.c\",\n       \"suid/sandbox.c\",\n     ]\n+\n+    cflags = [\n+      \"-fPIE\",\n+    ]\n+\n+    ldflags = [\n+      \"-pie\",\n+    ]\n   }\n }\n \n"
  },
  {
    "path": "patches/extra/inox-patchset/0019-disable-battery-status-service.patch",
    "content": "--- a/services/device/battery/battery_status_service.cc\n+++ b/services/device/battery/battery_status_service.cc\n@@ -22,10 +22,7 @@ BatteryStatusService::BatteryStatusServi\n       update_callback_(\n           base::BindRepeating(&BatteryStatusService::NotifyConsumers,\n                               base::Unretained(this))),\n-      status_updated_(false),\n       is_shutdown_(false) {\n-  callback_list_.set_removal_callback(base::BindRepeating(\n-      &BatteryStatusService::ConsumersChanged, base::Unretained(this)));\n }\n \n BatteryStatusService::~BatteryStatusService() = default;\n@@ -40,58 +37,16 @@ base::CallbackListSubscription BatterySt\n   DCHECK(main_thread_task_runner_->BelongsToCurrentThread());\n   DCHECK(!is_shutdown_);\n \n-  if (!battery_fetcher_)\n-    battery_fetcher_ = BatteryStatusManager::Create(update_callback_);\n-\n-  if (callback_list_.empty()) {\n-    bool success = battery_fetcher_->StartListeningBatteryChange();\n-    // On failure pass the default values back.\n-    if (!success)\n-      callback.Run(mojom::BatteryStatus());\n-  }\n-\n-  if (status_updated_) {\n-    // Send recent status to the new callback if already available.\n-    callback.Run(status_);\n-  }\n+  // Always pass the default values.\n+  callback.Run(mojom::BatteryStatus());\n \n   return callback_list_.Add(callback);\n }\n \n-void BatteryStatusService::ConsumersChanged() {\n-  if (is_shutdown_)\n-    return;\n-\n-  if (callback_list_.empty()) {\n-    battery_fetcher_->StopListeningBatteryChange();\n-    status_updated_ = false;\n-  }\n-}\n-\n void BatteryStatusService::NotifyConsumers(const mojom::BatteryStatus& status) {\n-  DCHECK(!is_shutdown_);\n-\n-  main_thread_task_runner_->PostTask(\n-      FROM_HERE,\n-      base::BindOnce(&BatteryStatusService::NotifyConsumersOnMainThread,\n-                     base::Unretained(this), status));\n-}\n-\n-void BatteryStatusService::NotifyConsumersOnMainThread(\n-    const mojom::BatteryStatus& status) {\n-  DCHECK(main_thread_task_runner_->BelongsToCurrentThread());\n-  if (callback_list_.empty())\n-    return;\n-\n-  status_ = status;\n-  status_updated_ = true;\n-  callback_list_.Notify(status_);\n }\n \n void BatteryStatusService::Shutdown() {\n-  if (!callback_list_.empty())\n-    battery_fetcher_->StopListeningBatteryChange();\n-  battery_fetcher_.reset();\n   is_shutdown_ = true;\n }\n \n@@ -102,9 +57,6 @@ BatteryStatusService::GetUpdateCallbackF\n \n void BatteryStatusService::SetBatteryManagerForTesting(\n     std::unique_ptr<BatteryStatusManager> test_battery_manager) {\n-  battery_fetcher_ = std::move(test_battery_manager);\n-  status_ = mojom::BatteryStatus();\n-  status_updated_ = false;\n   is_shutdown_ = false;\n   main_thread_task_runner_ = base::SingleThreadTaskRunner::GetCurrentDefault();\n }\n--- a/services/device/battery/battery_status_service.h\n+++ b/services/device/battery/battery_status_service.h\n@@ -59,15 +59,10 @@ class BatteryStatusService {\n   // Updates current battery status and sends new status to interested\n   // render processes. Can be called on any thread via a callback.\n   void NotifyConsumers(const mojom::BatteryStatus& status);\n-  void NotifyConsumersOnMainThread(const mojom::BatteryStatus& status);\n-  void ConsumersChanged();\n \n   scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_;\n-  std::unique_ptr<BatteryStatusManager> battery_fetcher_;\n   BatteryUpdateCallbackList callback_list_;\n   BatteryUpdateCallback update_callback_;\n-  mojom::BatteryStatus status_;\n-  bool status_updated_;\n   bool is_shutdown_;\n };\n \n"
  },
  {
    "path": "patches/extra/iridium-browser/Remove-EV-certificates.patch",
    "content": "From d32e222a2706cb59f9855b9cf4330f88d1af5435 Mon Sep 17 00:00:00 2001\nFrom: Jan Engelhardt <jengelh@inai.de>\nDate: Thu, 2 Apr 2015 12:44:23 +0200\nSubject: [PATCH 41/66] Remove EV certificates\n\nThe team chose to let EV certificates appear just like normal\ncertificates. The web of trust is considered a failure in itself, so\ndo not give users a false sense of extra security with EV certs.\nInstead, let them appear just like regular ones.\n\n--- a/net/cert/ev_root_ca_metadata.cc\n+++ b/net/cert/ev_root_ca_metadata.cc\n@@ -36,7 +36,17 @@ struct EVMetadata {\n   const std::string_view policy_oids[kMaxOIDsPerCA];\n };\n \n-#include \"net/data/ssl/chrome_root_store/chrome-ev-roots-inc.cc\"\n+static const EVMetadata kEvRootCaMetadata[] = {\n+    // need some dummy thing to make compiler happy, because\n+    // arraysize() is implemented as a convoluted template rather than\n+    // the traditional sizeof(x)/sizeof(*x)\n+    { { { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\n+          0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } },\n+      {\n+        \"0\",\n+      }\n+    }\n+};\n \n #endif  // defined(PLATFORM_USES_CHROMIUM_EV_METADATA)\n }  // namespace\n"
  },
  {
    "path": "patches/extra/iridium-browser/browser-disable-profile-auto-import-on-first-run.patch",
    "content": "From 7134d5fd762237ad2d80093b68ccbd1582476640 Mon Sep 17 00:00:00 2001\nFrom: Joachim Bauch <jojo@struktur.de>\nDate: Thu, 25 Jun 2015 15:51:59 +0200\nSubject: [PATCH 56/66] browser: disable profile auto-import on first run\n\n--- a/chrome/browser/chrome_browser_main.cc\n+++ b/chrome/browser/chrome_browser_main.cc\n@@ -1858,30 +1858,6 @@ int ChromeBrowserMainParts::PreMainMessa\n   // and preferences have been registered since some of the import code depends\n   // on preferences.\n   if (first_run::IsChromeFirstRun()) {\n-    // `profile` may be nullptr even on first run, for example when the\n-    // \"BrowserSignin\" policy is set to \"Force\". If so, skip the auto import.\n-    if (profile) {\n-      first_run::AutoImport(profile, master_prefs_->import_bookmarks_path);\n-\n-      if (base::FeatureList::IsEnabled(features::kBookmarksImportOnFirstRun) &&\n-          !master_prefs_->import_bookmarks_dict.empty()) {\n-        first_run::StartBookmarkImportFromDict(\n-            profile, std::move(master_prefs_->import_bookmarks_dict));\n-      }\n-\n-#if BUILDFLAG(ENABLE_EXTENSIONS)\n-      if (base::FeatureList::IsEnabled(features::kInitialExternalExtensions)) {\n-        profile->GetPrefs()->SetString(\n-            extensions::pref_names::kInitialInstallProviderName,\n-            std::move(master_prefs_->initial_extensions_provider_name));\n-        // Store the initial extension IDs into the profile's prefs so that\n-        // InitialExternalExtensionLoader can later pick them up.\n-        profile->GetPrefs()->SetList(\n-            extensions::pref_names::kInitialInstallList,\n-            std::move(master_prefs_->initial_extensions));\n-      }\n-#endif  // BUILDFLAG(ENABLE_EXTENSIONS)\n-    }\n \n     // Note: This can pop-up the first run consent dialog on Linux & Mac.\n     first_run::DoPostImportTasks(master_prefs_->make_chrome_default_for_user);\n"
  },
  {
    "path": "patches/extra/iridium-browser/mime_util-force-text-x-suse-ymp-to-be-downloaded.patch",
    "content": "From d3dcad96b3c2091026c3a81054bb3ce56538a702 Mon Sep 17 00:00:00 2001\nFrom: Jan Engelhardt <jengelh@inai.de>\nDate: Thu, 29 Jan 2015 10:46:40 +0100\nSubject: [PATCH 16/66] mime_util: force text/x-suse-ymp to be downloaded\n\nYMP files (YaST One Click Install) are plaintext XML, but also not\nvery interesting in themselves. Force them to be stored.\n---\n components/mime_util/mime_util.cc | 1 +\n 1 file changed, 1 insertion(+)\n\n--- a/third_party/blink/common/mime_util/mime_util.cc\n+++ b/third_party/blink/common/mime_util/mime_util.cc\n@@ -88,6 +88,7 @@ constexpr auto kUnsupportedTextTypes =\n         \"text/x-csv\",\n         \"text/x-vcf\",\n         \"text/rtf\",\n+        \"text/x-suse-ymp\",\n         \"text/comma-separated-values\",\n         \"text/csv\",\n         \"text/tab-separated-values\",\n"
  },
  {
    "path": "patches/extra/iridium-browser/prefs-always-prompt-for-download-directory-by-defaul.patch",
    "content": "From 93010fd16c1c9f01a06eab18055bcab54b028cc8 Mon Sep 17 00:00:00 2001\nFrom: Jan Engelhardt <jengelh@inai.de>\nDate: Fri, 13 Feb 2015 01:04:21 +0100\nSubject: [PATCH 28/66] prefs: always prompt for download directory by default\n\nIf the user opens a link, one of two things might happen. The URI\nresolves to a \"web page\" and will be displayed, then everything is\ngood. Or it has a MIME type like application/* or so that causes the\nbrowser to consider it a file download instead.\n\nIn that case, one of two things might happen. The browser may display\na dialog box asking explicitly for an action, then everything is\ngood. Or it does not and instead readily stores the file on disk.\n\n(Modern browsers also download the file in the background when waiting\nfor the dialog box confirmation, but that is a separate tuning knob.)\n\nWhen the file is chosen to be immediately stored on disk without user\ninteraction, the visual feedback for this may be rather miniscule.\n\nAnd then, you have to open a terminal or file manager again just to\nmove the file to the location you wanted it to be in in the first\nplace.\n\nTLDR: Do not let files sneak onto the disk too easily.\n---\n chrome/browser/download/download_prefs.cc | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)\n\n--- a/chrome/browser/download/download_prefs.cc\n+++ b/chrome/browser/download/download_prefs.cc\n@@ -284,7 +284,7 @@ void DownloadPrefs::RegisterProfilePrefs\n     user_prefs::PrefRegistrySyncable* registry) {\n   registry->RegisterBooleanPref(\n       prefs::kPromptForDownload,\n-      false,\n+      true,\n       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);\n   registry->RegisterStringPref(prefs::kDownloadExtensionsToOpen, std::string());\n   registry->RegisterListPref(prefs::kDownloadExtensionsToOpenByPolicy, {});\n"
  },
  {
    "path": "patches/extra/iridium-browser/updater-disable-auto-update.patch",
    "content": "From f97af1715c10c5926169ff317ca7c91f1d073af9 Mon Sep 17 00:00:00 2001\nFrom: Jan Engelhardt <jengelh@inai.de>\nDate: Fri, 13 Feb 2015 00:59:04 +0100\nSubject: [PATCH 39/66] updater: disable auto-update\n\nAs per http://www.chromium.org/administrators/turning-off-auto-updates ,\nthe auto update function is decidedly disabled on Linux, i.e.\nthe following patch is for Windows and MacOS.\n\nFor Windows, all we need is to build without -DGOOGLE_CHROME_BUILD (cf.\nchrome/installer/util/google_update_settings.cc), which may already be\nthe case anyway, since we are based off Chromium, not Chrome.\n---\n chrome/browser/app_controller_mac.mm | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)\n\n--- a/chrome/browser/app_controller_mac.mm\n+++ b/chrome/browser/app_controller_mac.mm\n@@ -1170,7 +1170,7 @@ class AppControllerNativeThemeObserver :\n   CFStringRef checkInterval = CFSTR(\"checkInterval\");\n   CFPropertyListRef plist = CFPreferencesCopyAppValue(checkInterval, app);\n   if (!plist) {\n-    const float fiveHoursInSeconds = 5.0 * 60.0 * 60.0;\n+    const float fiveHoursInSeconds = 0.0;\n     CFPreferencesSetAppValue(\n         checkInterval, base::apple::NSToCFPtrCast(@(fiveHoursInSeconds)), app);\n     CFPreferencesAppSynchronize(app);\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-components-ungoogled.patch",
    "content": "# Add ungoogled-chromium-specific code to components/ungoogled/\n\n--- /dev/null\n+++ b/components/ungoogled/BUILD.gn\n@@ -0,0 +1,14 @@\n+# Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+# Use of this source code is governed by a BSD-style license that can be\n+# found in the LICENSE file.\n+\n+component(\"ungoogled_switches\") {\n+  sources = [\n+    \"ungoogled_switches.h\",\n+    \"ungoogled_switches.cc\",\n+  ]\n+\n+  defines = [ \"IS_UNGOOGLED_IMPL\" ]\n+\n+  deps = [ \"//base\" ]\n+}\n--- /dev/null\n+++ b/components/ungoogled/ungoogled_switches.cc\n@@ -0,0 +1,18 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#include \"components/ungoogled/ungoogled_switches.h\"\n+\n+namespace switches {\n+\n+// Enable fingerprinting deception for getClientRects and getBoundingClientRect\n+const char kFingerprintingClientRectsNoise[] = \"fingerprinting-client-rects-noise\";\n+\n+// Enable fingerprinting deception for measureText\n+const char kFingerprintingCanvasMeasureTextNoise[] = \"fingerprinting-canvas-measuretext-noise\";\n+\n+// Enable fingerprinting deception for Canvas image data\n+const char kFingerprintingCanvasImageDataNoise[] = \"fingerprinting-canvas-image-data-noise\";\n+\n+}  // namespace switches\n--- /dev/null\n+++ b/components/ungoogled/ungoogled_switches.h\n@@ -0,0 +1,20 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+// Defines all the fingerprinting command-line switches.\n+\n+#ifndef THIRD_PARTY_UNGOOGLED_FINGERPRINTING_SWITCHES_H_\n+#define THIRD_PARTY_UNGOOGLED_FINGERPRINTING_SWITCHES_H_\n+\n+#include \"base/component_export.h\"\n+\n+namespace switches {\n+\n+COMPONENT_EXPORT(UNGOOGLED) extern const char kFingerprintingClientRectsNoise[];\n+COMPONENT_EXPORT(UNGOOGLED) extern const char kFingerprintingCanvasMeasureTextNoise[];\n+COMPONENT_EXPORT(UNGOOGLED) extern const char kFingerprintingCanvasImageDataNoise[];\n+\n+}\n+\n+#endif  // THIRD_PARTY_UNGOOGLED_FINGERPRINTING_SWITCHES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-credits.patch",
    "content": "--- a/components/webui/about/resources/about_credits_reciprocal.tmpl\n+++ b/components/webui/about/resources/about_credits_reciprocal.tmpl\n@@ -1,4 +1,4 @@\n <div class=\"open-sourced\">\n-    {{opensource_project}} software is made available as source code\n-    <a href=\"{{opensource_link}}\">here</a>.\n+    {{opensource_project}} source code is available in\n+    the <a href=\"{{opensource_link}}\">repository</a>.\n </div>\n--- /dev/null\n+++ b/third_party/ungoogled-chromium/LICENSE\n@@ -0,0 +1,29 @@\n+BSD 3-Clause License\n+\n+Copyright (c) 2015-2025, The ungoogled-chromium Authors\n+All rights reserved.\n+\n+Redistribution and use in source and binary forms, with or without\n+modification, are permitted provided that the following conditions are met:\n+\n+1. Redistributions of source code must retain the above copyright notice, this\n+   list of conditions and the following disclaimer.\n+\n+2. Redistributions in binary form must reproduce the above copyright notice,\n+   this list of conditions and the following disclaimer in the documentation\n+   and/or other materials provided with the distribution.\n+\n+3. Neither the name of the copyright holder nor the names of its\n+   contributors may be used to endorse or promote products derived from\n+   this software without specific prior written permission.\n+\n+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n--- a/tools/licenses/licenses.py\n+++ b/tools/licenses/licenses.py\n@@ -52,6 +52,14 @@ _CHROMIUM_LICENSE_METADATA = {\n     'dir': '',  # Relative to _REPOSITORY_ROOT\n }\n \n+_UGC_LICENSE_METADATA = {\n+    'Name': 'ungoogled-chromium',\n+    'URL': 'https://github.com/ungoogled-software/ungoogled-chromium',\n+    'License': 'BSD-3-Clause',\n+    'Shipped': 'yes',\n+    'License File': [os.path.join(_REPOSITORY_ROOT, 'third_party', 'ungoogled-chromium', 'LICENSE')],\n+}\n+\n # Paths from the root of the tree to directories to skip.\n PRUNE_PATHS = set([\n     # Placeholder directory only, not third-party code.\n@@ -1010,7 +1018,7 @@ def _DiscoverMetadatas(args):\n       LogParseDirErrors(errors)\n \n   metadatas.sort(key=lambda m: (m['Name'].lower(), m['dir']))\n-  metadatas = [_CHROMIUM_LICENSE_METADATA] + metadatas\n+  metadatas = [_CHROMIUM_LICENSE_METADATA] + [_UGC_LICENSE_METADATA] + metadatas\n   return metadatas, had_errors\n \n \n@@ -1087,8 +1095,8 @@ def GenerateCredits(args, metadatas):\n   entries_contents = '\\n'.join([entry['content'] for entry in entries])\n \n   reciprocal_contents = EvaluateTemplate(reciprocal_template, {\n-      'opensource_project': 'Chromium',\n-      'opensource_link': 'https://source.chromium.org/chromium'\n+      'opensource_project': 'ungoogled-chromium',\n+      'opensource_link': 'https://github.com/ungoogled-software/ungoogled-chromium'\n   },\n                                          escape=False)\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-extra-channel-info.patch",
    "content": "description: change extra channel info to \"Ungoogled Chromium\"\nauthor: Wengling Chen <feiyu2817@gmail.com>\n\n---\n components/version_ui_strings.grdp |    4 ++--\n 1 file changed, 2 insertions(+), 2 deletions(-)\n\n--- a/components/version_ui_strings.grdp\n+++ b/components/version_ui_strings.grdp\n@@ -4,10 +4,10 @@\n     About Version\n   </message>\n   <message name=\"IDS_VERSION_UI_OFFICIAL\" desc=\"official build on the about:version page\">\n-    Official Build\n+    Official Build, ungoogled-chromium\n   </message>\n   <message name=\"IDS_VERSION_UI_UNOFFICIAL\" desc=\"unofficial build on the about:version page\">\n-    Developer Build\n+    Developer Build, ungoogled-chromium\n   </message>\n   <message name=\"IDS_VERSION_UI_32BIT\" desc=\"32-bit on the chrome://version page\">\n     (32-bit)\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-bookmark-bar-ntp.patch",
    "content": "--- a/chrome/browser/ui/bookmarks/bookmark_bar_controller.cc\n+++ b/chrome/browser/ui/bookmarks/bookmark_bar_controller.cc\n@@ -4,6 +4,7 @@\n \n #include \"chrome/browser/ui/bookmarks/bookmark_bar_controller.h\"\n \n+#include \"base/command_line.h\"\n #include \"chrome/browser/bookmarks/bookmark_model_factory.h\"\n #include \"chrome/browser/browser_features.h\"\n #include \"chrome/browser/defaults.h\"\n@@ -139,6 +140,10 @@ void BookmarkBarController::OnSplitTabCh\n }\n \n bool BookmarkBarController::ShouldShowBookmarkBar() const {\n+  if (base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"bookmark-bar-ntp\") == \"never\") {\n+    return false;\n+  }\n+\n   Profile* profile = browser_->GetProfile();\n   if (profile->IsGuestSession()) {\n     return false;\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -34,4 +34,10 @@ const FeatureEntry::Choice kScrollEventC\n      \"scroll-tabs\",\n      \"never\"}\n };\n+const FeatureEntry::Choice kBookmarkBarNewTab[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"Never\",\n+     \"bookmark-bar-ntp\",\n+     \"never\"},\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -36,4 +36,8 @@\n      \"Scroll switches tab\",\n      \"Switch to the left/right tab if the wheel-scroll happens over the tabstrip, or the empty space beside the tabstrip. ungoogled-chromium flag.\",\n      kOsDesktop, MULTI_VALUE_TYPE(kScrollEventChangesTab)},\n+    {\"bookmark-bar-ntp\",\n+     \"Bookmark Bar on New-Tab-Page\",\n+     \"Disable the Bookmark Bar on the New-Tab-Page. ungoogled-chromium flag.\",\n+     kOsDesktop, MULTI_VALUE_TYPE(kBookmarkBarNewTab)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-close-confirmation.patch",
    "content": "--- a/chrome/browser/ui/browser.cc\n+++ b/chrome/browser/ui/browser.cc\n@@ -140,6 +140,7 @@\n #include \"chrome/browser/ui/views/frame/browser_view.h\"\n #include \"chrome/browser/ui/views/frame/contents_web_view.h\"\n #include \"chrome/browser/ui/views/frame/multi_contents_view.h\"\n+#include \"chrome/browser/ui/views/message_box_dialog.h\"\n #include \"chrome/browser/ui/views/side_panel/side_panel_ui.h\"\n #include \"chrome/browser/ui/views/status_bubble_views.h\"\n #include \"chrome/browser/ui/web_applications/app_browser_controller.h\"\n@@ -587,6 +588,7 @@ Browser::Browser(const CreateParams& par\n       should_trigger_session_restore_(params.should_trigger_session_restore),\n       cancel_download_confirmation_state_(\n           CancelDownloadConfirmationState::kNotPrompted),\n+      close_multitab_confirmation_state_(CancelDownloadConfirmationState::kNotPrompted),\n       override_bounds_(params.initial_bounds),\n       initial_show_state_(params.initial_show_state),\n       initial_workspace_(params.initial_workspace),\n@@ -974,10 +976,12 @@ Browser::WarnBeforeClosingResult Browser\n     return WarnBeforeClosingResult::kOkToClose;\n   }\n \n-  // `CanCloseWithInProgressDownloads()` may trigger a modal dialog.\n-  bool can_close_with_downloads = CanCloseWithInProgressDownloads();\n-  if (can_close_with_downloads) {\n-    return WarnBeforeClosingResult::kOkToClose;\n+  if (CanCloseWithMultipleTabs()) {\n+    // `CanCloseWithInProgressDownloads()` may trigger a modal dialog.\n+    bool can_close_with_downloads = CanCloseWithInProgressDownloads();\n+    if (can_close_with_downloads) {\n+      return WarnBeforeClosingResult::kOkToClose;\n+    }\n   }\n \n   DCHECK(!warn_before_closing_callback_)\n@@ -1031,6 +1035,7 @@ bool Browser::TryToCloseWindow(\n void Browser::ResetTryToCloseWindow() {\n   cancel_download_confirmation_state_ =\n       CancelDownloadConfirmationState::kNotPrompted;\n+  close_multitab_confirmation_state_ = CancelDownloadConfirmationState::kNotPrompted;\n   unload_controller_.ResetTryToCloseWindow();\n }\n \n@@ -3538,6 +3543,59 @@ bool Browser::CanCloseWithInProgressDown\n   return false;\n }\n \n+bool Browser::CanCloseWithMultipleTabs() {\n+  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(\"close-confirmation\"))\n+    return true;\n+\n+  // If we've prompted, we need to hear from the user before we\n+  // can close.\n+  if (close_multitab_confirmation_state_ != CancelDownloadConfirmationState::kNotPrompted)\n+    return close_multitab_confirmation_state_ != CancelDownloadConfirmationState::kWaitingForResponse;\n+\n+  // If we're not running a full browser process with a profile manager\n+  // (testing), it's ok to close the browser.\n+  if (!g_browser_process->profile_manager())\n+    return true;\n+\n+  // Figure out how many windows are open total\n+  int total_window_count = 0;\n+  GlobalBrowserCollection::GetInstance()->ForEach([&total_window_count, this](BrowserWindowInterface* browser) {\n+    // Don't count this browser window or any other in the process of closing.\n+    // Window closing may be delayed, and windows that are in the process of\n+    // closing don't count against our totals.\n+    if (browser != this && !browser->capabilities()->IsAttemptingToCloseBrowser()) {\n+      total_window_count++;\n+    }\n+    return true;\n+  });\n+\n+  const auto flag_value = base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"close-confirmation\");\n+  bool show_confirmation_last_window = flag_value == \"last\";\n+\n+  if (show_confirmation_last_window) {\n+    if (total_window_count >= 1 || this->tab_strip_model()->count() <= 1)\n+      return true;\n+  } else {\n+    if (total_window_count == 0)\n+      return true;\n+    if (this->tab_strip_model()->count() == 0)\n+      tab_strip_model_delegate_->AddTabAt(GURL(), -1, true);\n+  }\n+\n+  close_multitab_confirmation_state_ = CancelDownloadConfirmationState::kWaitingForResponse;\n+\n+  auto callback = base::BindOnce(&Browser::MultitabResponse,\n+                                 weak_factory_.GetWeakPtr());\n+  MessageBoxDialog::Show(window_->GetNativeWindow(),\n+                         u\"Do you want to close this window?\", std::u16string(),\n+                         chrome::MESSAGE_BOX_TYPE_QUESTION, u\"Close\", u\"Cancel\",\n+                         std::u16string(), std::move(callback));\n+\n+  // Return false so the browser does not close.  We'll close if the user\n+  // confirms in the dialog.\n+  return false;\n+}\n+\n void Browser::InProgressDownloadResponse(bool cancel_downloads) {\n   if (cancel_downloads) {\n     cancel_download_confirmation_state_ =\n@@ -3559,6 +3617,22 @@ void Browser::InProgressDownloadResponse\n \n   std::move(warn_before_closing_callback_)\n       .Run(WarnBeforeClosingResult::kDoNotClose);\n+}\n+\n+void Browser::MultitabResponse(chrome::MessageBoxResult result) {\n+  if (result == chrome::MESSAGE_BOX_RESULT_YES) {\n+    close_multitab_confirmation_state_ = CancelDownloadConfirmationState::kResponseReceived;\n+    std::move(warn_before_closing_callback_)\n+        .Run(WarnBeforeClosingResult::kOkToClose);\n+    return;\n+  }\n+\n+  // Sets the confirmation state to kNotPrompted so that if the user tries to\n+  // close again we'll show the warning again.\n+  close_multitab_confirmation_state_ = CancelDownloadConfirmationState::kNotPrompted;\n+\n+  std::move(warn_before_closing_callback_)\n+      .Run(WarnBeforeClosingResult::kDoNotClose);\n }\n \n void Browser::FinishWarnBeforeClosing(WarnBeforeClosingResult result) {\n--- a/chrome/browser/ui/browser.h\n+++ b/chrome/browser/ui/browser.h\n@@ -33,6 +33,7 @@\n #include \"chrome/browser/ui/browser_window/public/desktop_browser_window_capabilities_delegate.h\"\n #include \"chrome/browser/ui/browser_window_deleter.h\"\n #include \"chrome/browser/ui/chrome_web_modal_dialog_manager_delegate.h\"\n+#include \"chrome/browser/ui/simple_message_box.h\"\n #include \"chrome/browser/ui/tabs/tab_strip_model.h\"\n #include \"chrome/browser/ui/tabs/tab_strip_model_observer.h\"\n #include \"chrome/browser/ui/unload_controller.h\"\n@@ -1135,12 +1136,17 @@ class Browser : public TabStripModelObse\n   // Returns true if the window can close, false otherwise.\n   bool CanCloseWithInProgressDownloads();\n \n+  // Called when the window is closing to check if more than one tabs are open\n+  bool CanCloseWithMultipleTabs();\n+\n   // Called when the user has decided whether to proceed or not with the browser\n   // closure.  |cancel_downloads| is true if the downloads should be canceled\n   // and the browser closed, false if the browser should stay open and the\n   // downloads running.\n   void InProgressDownloadResponse(bool cancel_downloads);\n \n+  void MultitabResponse(chrome::MessageBoxResult result);\n+\n   // Called when the user has decided whether to proceed or not with the browser\n   // closure, in case the cookie migration notice was shown. |proceed_closing|\n   // is true if the browser can  be closed.\n@@ -1311,6 +1317,8 @@ class Browser : public TabStripModelObse\n   // when the browser is closed with in-progress downloads.\n   CancelDownloadConfirmationState cancel_download_confirmation_state_;\n \n+  CancelDownloadConfirmationState close_multitab_confirmation_state_;\n+\n   /////////////////////////////////////////////////////////////////////////////\n \n   // Override values for the bounds of the window and its maximized or minimized\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -61,4 +61,13 @@ const FeatureEntry::Choice kCloseWindowW\n      \"close-window-with-last-tab\",\n      \"never\"},\n };\n+const FeatureEntry::Choice kCloseConfirmation[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"Show confirmation with last window\",\n+     \"close-confirmation\",\n+     \"last\"},\n+    {\"Show confirmation with multiple windows\",\n+     \"close-confirmation\",\n+     \"multiple\"},\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -72,4 +72,8 @@\n      \"Remove Grab Handle\",\n      \"Removes the reserved empty space in the tabstrip for moving the window. ungoogled-chromium flag\",\n      kOsDesktop, SINGLE_VALUE_TYPE(\"remove-grab-handle\")},\n+    {\"close-confirmation\",\n+     \"Close Confirmation\",\n+     \"Show a warning prompt when closing the browser window. ungoogled-chromium flag\",\n+     kOsDesktop, MULTI_VALUE_TYPE(kCloseConfirmation)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-custom-ntp.patch",
    "content": "--- a/chrome/browser/chrome_content_browser_client.cc\n+++ b/chrome/browser/chrome_content_browser_client.cc\n@@ -815,11 +815,15 @@ bool HandleNewTabPageLocationOverride(\n \n   // Don't change the URL when incognito mode.\n   if (profile->IsOffTheRecord()) {\n+   if (!base::CommandLine::ForCurrentProcess()->HasSwitch(\"custom-ntp\"))\n     return false;\n   }\n \n   std::string ntp_location =\n       profile->GetPrefs()->GetString(prefs::kNewTabPageLocationOverride);\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"custom-ntp\"))\n+    ntp_location = base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"custom-ntp\");\n+  if (profile->IsOffTheRecord() && ntp_location.find(\"chrome://\") != std::string::npos) return false;\n   if (ntp_location.empty()) {\n     return false;\n   }\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -76,4 +76,8 @@\n      \"Close Confirmation\",\n      \"Show a warning prompt when closing the browser window. ungoogled-chromium flag\",\n      kOsDesktop, MULTI_VALUE_TYPE(kCloseConfirmation)},\n+    {\"custom-ntp\",\n+     \"Custom New Tab Page\",\n+     \"Allows setting a custom URL for the new tab page. Value can be internal (e.g. `about:blank` or `chrome://new-tab-page`), external (e.g. `example.com`), or local (e.g. `file:///tmp/startpage.html`). This applies for incognito windows as well when not set to a `chrome://` internal page. ungoogled-chromium flag\",\n+     kOsDesktop, ORIGIN_LIST_VALUE_TYPE(\"custom-ntp\", \"\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/webui/flags/flags_state.cc\n+++ b/components/webui/flags/flags_state.cc\n@@ -230,6 +230,7 @@ std::string GetCombinedOriginListValue(c\n       command_line.GetSwitchValueASCII(command_line_switch);\n   const std::string new_value =\n       flags_storage.GetOriginListFlag(internal_entry_name);\n+  if (command_line_switch == \"custom-ntp\") return existing_value.empty() ? new_value : existing_value;\n   return CombineAndSanitizeOriginLists(existing_value, new_value);\n }\n \n@@ -480,6 +481,7 @@ void FlagsState::SetOriginListFlag(const\n                                    const std::string& value,\n                                    FlagsStorage* flags_storage) {\n   const std::string new_value =\n+      internal_name == \"custom-ntp\" ? value :\n       CombineAndSanitizeOriginLists(std::string(), value);\n   flags_storage->SetOriginListFlag(internal_name, new_value);\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-disabling-link-drag.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -100,4 +100,8 @@\n      \"Disable Sharing Hub\",\n      \"Disables the sharing hub button. ungoogled-chromium flag.\",\n      kOsDesktop, SINGLE_VALUE_TYPE(\"disable-sharing-hub\")},\n+    {\"disable-link-drag\",\n+     \"Disable link drag\",\n+     \"Prevents dragging of links and selected text. ungoogled-chromium flag.\",\n+     kOsDesktop, FEATURE_VALUE_TYPE(blink::features::kDisableLinkDrag)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/third_party/blink/common/features.cc\n+++ b/third_party/blink/common/features.cc\n@@ -19,6 +19,8 @@\n \n namespace blink::features {\n \n+BASE_FEATURE(kDisableLinkDrag, \"DisableLinkDrag\", base::FEATURE_DISABLED_BY_DEFAULT);\n+\n // -----------------------------------------------------------------------------\n // Feature definitions and associated constants (feature params, et cetera)\n //\n--- a/third_party/blink/public/common/features.h\n+++ b/third_party/blink/public/common/features.h\n@@ -20,6 +20,8 @@\n namespace blink {\n namespace features {\n \n+BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kDisableLinkDrag);\n+\n // -----------------------------------------------------------------------------\n // Feature declarations and associated constants (feature params, et cetera)\n //\n--- a/third_party/blink/renderer/core/editing/selection_controller.cc\n+++ b/third_party/blink/renderer/core/editing/selection_controller.cc\n@@ -31,6 +31,7 @@\n \n #include \"base/auto_reset.h\"\n #include \"base/trace_event/trace_event.h\"\n+#include \"third_party/blink/public/common/features.h\"\n #include \"third_party/blink/public/common/input/web_menu_source_type.h\"\n #include \"third_party/blink/public/platform/web_input_event_result.h\"\n #include \"third_party/blink/renderer/core/annotation/annotation_agent_impl.h\"\n@@ -1461,10 +1462,14 @@ FrameSelection& SelectionController::Sel\n }\n \n bool IsSelectionOverLink(const MouseEventWithHitTestResults& event) {\n+if (base::FeatureList::IsEnabled(features::kDisableLinkDrag)){\n+  return event.IsOverLink();\n+}else{\n   return (event.Event().GetModifiers() & WebInputEvent::Modifiers::kAltKey) !=\n              0 &&\n          event.IsOverLink();\n }\n+}\n \n bool IsUserNodeDraggable(const MouseEventWithHitTestResults& event) {\n   Node* inner_node = event.InnerNode();\n--- a/third_party/blink/renderer/core/input/mouse_event_manager.cc\n+++ b/third_party/blink/renderer/core/input/mouse_event_manager.cc\n@@ -6,6 +6,7 @@\n \n #include \"base/metrics/histogram_functions.h\"\n #include \"build/build_config.h\"\n+#include \"third_party/blink/public/common/features.h\"\n #include \"third_party/blink/public/platform/web_input_event_result.h\"\n #include \"third_party/blink/renderer/bindings/core/v8/v8_drag_event_init.h\"\n #include \"third_party/blink/renderer/bindings/core/v8/v8_pointer_event_init.h\"\n@@ -656,8 +657,14 @@ WebInputEventResult MouseEventManager::H\n \n   bool single_click = event.Event().click_count <= 1;\n \n+if (base::FeatureList::IsEnabled(features::kDisableLinkDrag)){\n+  mouse_down_may_start_drag_ = single_click && !IsSelectionOverLink(event) &&\n+                               !IsExtendingSelection(event) &&\n+\t\t\t        !event.GetHitTestResult().IsSelected(event.GetHitTestLocation());\n+}else{\n   mouse_down_may_start_drag_ = single_click && !IsSelectionOverLink(event) &&\n                                !IsExtendingSelection(event);\n+}\n \n   mouse_down_ = event.Event();\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-grab-handle.patch",
    "content": "--- a/chrome/browser/ui/views/frame/horizontal_tab_strip_region_view.cc\n+++ b/chrome/browser/ui/views/frame/horizontal_tab_strip_region_view.cc\n@@ -90,6 +90,7 @@ class FrameGrabHandle : public views::Vi\n     // Reserve some space for the frame to be grabbed by, even if the tabstrip\n     // is full.\n     // TODO(tbergquist): Define this relative to the NTB insets again.\n+    if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"remove-grab-handle\")) return gfx::Size(0, 0);\n     return gfx::Size(42, 0);\n   }\n };\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -68,4 +68,8 @@\n      \"Disable QR Generator\",\n      \"Disables the QR generator for sharing page links. ungoogled-chromium flag\",\n      kOsDesktop, FEATURE_VALUE_TYPE(kDisableQRGenerator)},\n+    {\"remove-grab-handle\",\n+     \"Remove Grab Handle\",\n+     \"Removes the reserved empty space in the tabstrip for moving the window. ungoogled-chromium flag\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"remove-grab-handle\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-incognito-themes.patch",
    "content": "--- a/chrome/browser/ui/views/frame/browser_widget.cc\n+++ b/chrome/browser/ui/views/frame/browser_widget.cc\n@@ -609,6 +609,8 @@ bool BrowserWidget::RegenerateFrameOnThe\n }\n \n bool BrowserWidget::IsIncognitoBrowser() const {\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"enable-incognito-themes\"))\n+    return false;\n   return browser_view_->browser()->profile()->IsIncognitoProfile();\n }\n \n--- a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc\n+++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc\n@@ -49,6 +49,7 @@\n #include \"ui/base/webui/jstemplate_builder.h\"\n #include \"ui/base/webui/web_ui_util.h\"\n #include \"ui/color/color_provider.h\"\n+#include \"ui/color/color_provider_manager.h\"\n #include \"ui/gfx/color_utils.h\"\n #include \"ui/native_theme/native_theme.h\"\n \n@@ -372,7 +373,9 @@ void NTPResourceCache::CreateNewTabIncog\n       profile_->GetPrefs()->GetString(prefs::kCurrentThemeID);\n \n   // Colors.\n-  const ui::ColorProvider& cp = web_contents->GetColorProvider();\n+  auto key = native_theme->GetColorProviderKey(nullptr);\n+  key.color_mode = ui::ColorProviderKey::ColorMode::kDark;\n+  const ui::ColorProvider& cp = *ui::ColorProviderManager::Get().GetColorProviderFor(key);\n   substitutions[\"colorBackground\"] = color_utils::SkColorToRgbaString(\n       GetThemeColor(native_theme, cp, kColorNewTabPageBackground));\n   substitutions[\"backgroundPosition\"] = GetNewTabBackgroundPositionCSS(tp);\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -112,4 +112,8 @@\n      \"Hide Fullscreen Exit UI\",\n      \"Hides the \\\"X\\\" that appears when the mouse cursor is moved towards the top of the window in fullscreen mode. Additionally, this hides the \\\"Press F11 to exit full screen\\\" popup. ungoogled-chromium flag.\",\n      kOsDesktop, SINGLE_VALUE_TYPE(\"hide-fullscreen-exit-ui\")},\n+    {\"enable-incognito-themes\",\n+     \"Enable themes in Incognito mode\",\n+     \"Allows themes to override Google's built-in Incognito theming. ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"enable-incognito-themes\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -40,4 +40,19 @@ const FeatureEntry::Choice kBookmarkBarN\n      \"bookmark-bar-ntp\",\n      \"never\"},\n };\n+const FeatureEntry::Choice kOmniboxAutocompleteFiltering[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"Search suggestions only\",\n+     \"omnibox-autocomplete-filtering\",\n+     \"search\"},\n+    {\"Search suggestions and bookmarks\",\n+     \"omnibox-autocomplete-filtering\",\n+     \"search-bookmarks\"},\n+    {\"Search suggestions and internal chrome pages\",\n+     \"omnibox-autocomplete-filtering\",\n+     \"search-chrome\"},\n+    {\"Search suggestions, bookmarks, and internal chrome pages\",\n+     \"omnibox-autocomplete-filtering\",\n+     \"search-bookmarks-chrome\"},\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -40,4 +40,8 @@\n      \"Bookmark Bar on New-Tab-Page\",\n      \"Disable the Bookmark Bar on the New-Tab-Page. ungoogled-chromium flag.\",\n      kOsDesktop, MULTI_VALUE_TYPE(kBookmarkBarNewTab)},\n+    {\"omnibox-autocomplete-filtering\",\n+     \"Omnibox Autocomplete Filtering\",\n+     \"Restrict omnibox autocomplete results to a combination of search suggestions (if enabled), bookmarks, and internal chrome pages. ungoogled-chromium flag.\",\n+     kOsAll, MULTI_VALUE_TYPE(kOmniboxAutocompleteFiltering)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/omnibox/browser/autocomplete_controller.cc\n+++ b/components/omnibox/browser/autocomplete_controller.cc\n@@ -22,6 +22,7 @@\n #include <utility>\n \n #include \"base/check_op.h\"\n+#include \"base/command_line.h\"\n #include \"base/feature_list.h\"\n #include \"base/format_macros.h\"\n #include \"base/functional/bind.h\"\n@@ -554,6 +555,15 @@ AutocompleteController::AutocompleteCont\n           metrics::OmniboxEventProto::UNKNOWN_POSITION),\n       config_(config) {\n   config_.provider_types &= ~OmniboxFieldTrial::GetDisabledProviderTypes();\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"omnibox-autocomplete-filtering\")) {\n+    const std::string flag_value = base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"omnibox-autocomplete-filtering\");\n+    config_.provider_types &= AutocompleteProvider::TYPE_KEYWORD | AutocompleteProvider::TYPE_SEARCH |\n+        AutocompleteProvider::TYPE_HISTORY_URL | AutocompleteProvider::TYPE_BOOKMARK | AutocompleteProvider::TYPE_BUILTIN;\n+    if (!flag_value.contains(\"bookmarks\"))\n+      config_.provider_types &= ~AutocompleteProvider::TYPE_BOOKMARK;\n+    if (!flag_value.contains(\"chrome\"))\n+      config_.provider_types &= ~AutocompleteProvider::TYPE_BUILTIN;\n+  }\n \n   // Providers run in the order they're added. Async providers should run first\n   // so their async requests can be kicked off before waiting a few milliseconds\n--- a/components/omnibox/browser/history_url_provider.cc\n+++ b/components/omnibox/browser/history_url_provider.cc\n@@ -488,6 +488,9 @@ void HistoryURLProvider::Start(const Aut\n   if (fixed_up_input.type() != metrics::OmniboxInputType::QUERY)\n     matches_.push_back(what_you_typed_match);\n \n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"omnibox-autocomplete-filtering\"))\n+    return;\n+\n   // We'll need the history service to run both passes, so try to obtain it.\n   history::HistoryService* const history_service =\n       client()->GetHistoryService();\n--- a/components/omnibox/browser/search_provider.cc\n+++ b/components/omnibox/browser/search_provider.cc\n@@ -15,6 +15,7 @@\n #include <vector>\n \n #include \"base/base64.h\"\n+#include \"base/command_line.h\"\n #include \"base/feature_list.h\"\n #include \"base/functional/bind.h\"\n #include \"base/functional/callback.h\"\n@@ -662,6 +663,9 @@ void SearchProvider::Run(bool query_is_p\n }\n \n void SearchProvider::DoHistoryQuery(bool minimal_changes) {\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"omnibox-autocomplete-filtering\"))\n+    return;\n+\n   // The history query results are synchronous, so if minimal_changes is true,\n   // we still have the last results and don't need to do anything.\n   if (minimal_changes)\n--- a/components/url_formatter/url_fixer.cc\n+++ b/components/url_formatter/url_fixer.cc\n@@ -10,6 +10,7 @@\n #include <string_view>\n \n #include \"base/check_op.h\"\n+#include \"base/command_line.h\"\n #include \"base/compiler_specific.h\"\n #include \"base/files/file_path.h\"\n #include \"base/files/file_util.h\"\n@@ -643,6 +644,8 @@ GURL FixupURLInternal(const std::string&\n \n     FixupHost(trimmed, parts.host, parts.scheme.is_valid(), desired_tld, &url);\n     if (chrome_url && !parts.host.is_valid()) {\n+     if (!base::CommandLine::ForCurrentProcess()->HasSwitch(\"omnibox-autocomplete-filtering\") ||\n+         base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"omnibox-autocomplete-filtering\").contains(\"chrome\"))\n       url.append(kChromeUIDefaultHost);\n     }\n     FixupPort(trimmed, parts.port, &url);\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-qr-generator.patch",
    "content": "--- a/chrome/browser/ui/qrcode_generator/qrcode_generator_bubble_controller.cc\n+++ b/chrome/browser/ui/qrcode_generator/qrcode_generator_bubble_controller.cc\n@@ -13,6 +13,7 @@\n #include \"chrome/common/pref_names.h\"\n #include \"components/prefs/pref_change_registrar.h\"\n #include \"components/prefs/pref_service.h\"\n+#include \"components/sharing_message/features.h\"\n #include \"content/public/browser/web_contents.h\"\n #include \"url/gurl.h\"\n \n@@ -38,7 +39,7 @@ QRCodeGeneratorBubbleController::~QRCode\n \n // static\n bool QRCodeGeneratorBubbleController::IsGeneratorAvailable(const GURL& url) {\n-  if (!url.SchemeIsHTTPOrHTTPS()) {\n+  if (!url.SchemeIsHTTPOrHTTPS() || base::FeatureList::IsEnabled(kDisableQRGenerator)) {\n     return false;\n   }\n \n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -64,4 +64,8 @@\n      \"Remove Tabsearch Button\",\n      \"Removes the tabsearch button from the tabstrip. ungoogled-chromium flag\",\n      kOsDesktop, SINGLE_VALUE_TYPE(\"remove-tabsearch-button\")},\n+    {\"disable-qr-generator\",\n+     \"Disable QR Generator\",\n+     \"Disables the QR generator for sharing page links. ungoogled-chromium flag\",\n+     kOsDesktop, FEATURE_VALUE_TYPE(kDisableQRGenerator)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/sharing_message/features.cc\n+++ b/components/sharing_message/features.cc\n@@ -8,4 +8,6 @@\n #include \"build/build_config.h\"\n #include \"components/sync_preferences/features.h\"\n \n+BASE_FEATURE(kDisableQRGenerator, \"DisableQRGenerator\", base::FEATURE_DISABLED_BY_DEFAULT);\n+\n BASE_FEATURE(kClickToCall, base::FEATURE_DISABLED_BY_DEFAULT);\n--- a/components/sharing_message/features.h\n+++ b/components/sharing_message/features.h\n@@ -9,4 +9,5 @@\n \n BASE_DECLARE_FEATURE(kClickToCall);\n \n+BASE_DECLARE_FEATURE(kDisableQRGenerator);\n #endif  // COMPONENTS_SHARING_MESSAGE_FEATURES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-search-engine-collection.patch",
    "content": "# Add flag to disable automatic search engine collection\n\n--- a/chrome/browser/ui/tab_helpers.cc\n+++ b/chrome/browser/ui/tab_helpers.cc\n@@ -562,7 +562,9 @@ void TabHelpers::AttachTabHelpers(WebCon\n       profile, web_contents);\n #endif  // BUILDFLAG(SAFE_BROWSING_AVAILABLE)\n   SafetyTipWebContentsObserver::CreateForWebContents(web_contents);\n+  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(\"disable-search-engine-collection\")) {\n   SearchEngineTabHelper::CreateForWebContents(web_contents);\n+  }\n   if (site_engagement::SiteEngagementService::IsEnabled()) {\n     site_engagement::SiteEngagementService::Helper::CreateForWebContents(\n         web_contents,\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -12,4 +12,8 @@\n      \"Handling of extension MIME type requests\",\n      \"Used when deciding how to handle a request for a CRX or User Script MIME type. ungoogled-chromium flag.\",\n      kOsAll, MULTI_VALUE_TYPE(kExtensionHandlingChoices)},\n+    {\"disable-search-engine-collection\",\n+     \"Disable search engine collection\",\n+     \"Prevents search engines from being added automatically. ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"disable-search-engine-collection\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/chrome/renderer/chrome_render_frame_observer.cc\n+++ b/chrome/renderer/chrome_render_frame_observer.cc\n@@ -271,14 +271,16 @@ void ChromeRenderFrameObserver::DidFinis\n   if (frame->Parent() || frame->IsInFencedFrameTree())\n     return;\n \n-  GURL osdd_url = frame->GetDocument().OpenSearchDescriptionURL();\n-  if (!osdd_url.is_empty()) {\n-    mojo::Remote<chrome::mojom::OpenSearchDescriptionDocumentHandler>\n-        osdd_handler;\n-    render_frame()->GetBrowserInterfaceBroker().GetInterface(\n-        osdd_handler.BindNewPipeAndPassReceiver());\n-    osdd_handler->PageHasOpenSearchDescriptionDocument(\n-        frame->GetDocument().Url(), osdd_url);\n+  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(\"disable-search-engine-collection\")) {\n+    GURL osdd_url = frame->GetDocument().OpenSearchDescriptionURL();\n+    if (!osdd_url.is_empty()) {\n+      mojo::Remote<chrome::mojom::OpenSearchDescriptionDocumentHandler>\n+          osdd_handler;\n+      render_frame()->GetBrowserInterfaceBroker().GetInterface(\n+          osdd_handler.BindNewPipeAndPassReceiver());\n+      osdd_handler->PageHasOpenSearchDescriptionDocument(\n+          frame->GetDocument().Url(), osdd_url);\n+    }\n   }\n }\n \n--- a/components/search_engines/template_url_service.cc\n+++ b/components/search_engines/template_url_service.cc\n@@ -15,6 +15,7 @@\n #include \"base/base64url.h\"\n #include \"base/check_deref.h\"\n #include \"base/check_is_test.h\"\n+#include \"base/command_line.h\"\n #include \"base/containers/fixed_flat_map.h\"\n #include \"base/containers/flat_map.h\"\n #include \"base/debug/crash_logging.h\"\n@@ -401,6 +402,12 @@ bool IsGoogleAiModeUrl(GURL url) {\n                        google_util::DISALLOW_NON_STANDARD_PORTS);\n }\n \n+bool ShouldAutocollect() {\n+  const base::CommandLine& command_line =\n+    *base::CommandLine::ForCurrentProcess();\n+  return !command_line.HasSwitch(\"disable-search-engine-collection\");\n+}\n+\n }  // namespace\n \n // TemplateURLService::LessWithPrefix -----------------------------------------\n@@ -580,6 +587,7 @@ TemplateURLService::TemplateURLService(\n     std::unique_ptr<TemplateURLServiceClient> client,\n     const base::RepeatingClosure& dsp_change_callback)\n     : prefs_(prefs),\n+      should_autocollect_(true),\n       search_engine_choice_service_(search_engine_choice_service),\n       prepopulate_data_resolver_(prepopulate_data_resolver),\n       search_terms_data_(std::move(search_terms_data)),\n@@ -663,8 +671,8 @@ bool TemplateURLService::CanAddAutogener\n   // that may interfere with search queries).  An easy heuristic for this is\n   // whether the user has a TemplateURL that has been manually modified (e.g.,\n   // renamed) connected to the same host.\n-  return !url.is_valid() || url.GetHost().empty() ||\n-         CanAddAutogeneratedKeywordForHost(url.GetHost());\n+  return should_autocollect_ && (!url.is_valid() || url.GetHost().empty() ||\n+         CanAddAutogeneratedKeywordForHost(url.GetHost()));\n }\n \n bool TemplateURLService::IsPrepopulatedOrDefaultProviderByPolicy(\n@@ -2497,6 +2505,8 @@ SyncDataMap TemplateURLService::CreateGU\n }\n \n void TemplateURLService::Init() {\n+  should_autocollect_ = ShouldAutocollect();\n+\n   if (client_) {\n     client_->SetOwner(this);\n   }\n@@ -2662,6 +2672,9 @@ void TemplateURLService::ChangeToLoadedS\n \n bool TemplateURLService::CanAddAutogeneratedKeywordForHost(\n     const std::string& host) const {\n+  if (!should_autocollect_)\n+    return false;\n+\n   const TemplateURLSet* urls = provider_map_->GetURLsForHost(host);\n   if (!urls) {\n     return true;\n--- a/components/search_engines/template_url_service.h\n+++ b/components/search_engines/template_url_service.h\n@@ -914,6 +914,8 @@ class TemplateURLService final : public\n \n   raw_ref<TemplateURLPrepopulateData::Resolver> prepopulate_data_resolver_;\n \n+  bool should_autocollect_; // Whether search engines should be auto-collected\n+\n   std::unique_ptr<SearchTermsData> search_terms_data_ =\n       std::make_unique<SearchTermsData>();\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-tab-hover-cards.patch",
    "content": "--- a/chrome/browser/ui/views/tabs/tab.cc\n+++ b/chrome/browser/ui/views/tabs/tab.cc\n@@ -12,6 +12,7 @@\n #include <memory>\n #include <utility>\n \n+#include \"base/command_line.h\"\n #include \"base/debug/alias.h\"\n #include \"base/functional/bind.h\"\n #include \"base/i18n/rtl.h\"\n@@ -780,6 +781,13 @@ void Tab::HideHover(TabStyle::HideHoverS\n   DeprecatedLayoutImmediately();\n }\n \n+std::u16string Tab::GetRenderedTooltipText(const gfx::Point& p) const {\n+  if (base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"tab-hover-cards\") == \"tooltip\")\n+    return GetTooltipText(data_.title, tabs::TabAlertController::GetAlertStateToShow(data_.alert_state));\n+  // Tab hover cards replace tooltips for tabs.\n+  return std::u16string();\n+}\n+\n // This function updates the accessible name for the tab whenever any of the\n // parameters that influence the accessible name change. It ultimately calls\n // BrowserView::GetAccessibleTabLabel to get the updated accessible name.\n--- a/chrome/browser/ui/views/tabs/tab.h\n+++ b/chrome/browser/ui/views/tabs/tab.h\n@@ -104,6 +104,7 @@ class Tab : public gfx::AnimationDelegat\n   void OnMouseEntered(const ui::MouseEvent& event) override;\n   void OnMouseExited(const ui::MouseEvent& event) override;\n   void OnGestureEvent(ui::GestureEvent* event) override;\n+  std::u16string GetRenderedTooltipText(const gfx::Point& p) const override;\n   gfx::Size CalculatePreferredSize(\n       const views::SizeBounds& available_size) const override;\n   void PaintChildren(const views::PaintInfo& info) override;\n--- a/chrome/browser/ui/views/tabs/tab_strip.cc\n+++ b/chrome/browser/ui/views/tabs/tab_strip.cc\n@@ -17,6 +17,7 @@\n #include <utility>\n #include <vector>\n \n+#include \"base/command_line.h\"\n #include \"base/check.h\"\n #include \"base/compiler_specific.h\"\n #include \"base/containers/adapters.h\"\n@@ -2000,6 +2001,8 @@ void TabStrip::OnMouseEventInTab(views::\n }\n \n void TabStrip::UpdateHoverCard(Tab* tab, HoverCardUpdateType update_type) {\n+  if (base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"tab-hover-cards\") == \"tooltip\" ||\n+      base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"tab-hover-cards\") == \"none\") return;\n   if (tab_container_) {\n     tab_container_->UpdateHoverCard(tab, update_type);\n   }\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -70,4 +70,13 @@ const FeatureEntry::Choice kCloseConfirm\n      \"close-confirmation\",\n      \"multiple\"},\n };\n+const FeatureEntry::Choice kTabHoverCards[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"None\",\n+     \"tab-hover-cards\",\n+     \"none\"},\n+    {\"Tooltip\",\n+     \"tab-hover-cards\",\n+     \"tooltip\"},\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -80,4 +80,8 @@\n      \"Custom New Tab Page\",\n      \"Allows setting a custom URL for the new tab page. Value can be internal (e.g. `about:blank` or `chrome://new-tab-page`), external (e.g. `example.com`), or local (e.g. `file:///tmp/startpage.html`). This applies for incognito windows as well when not set to a `chrome://` internal page. ungoogled-chromium flag\",\n      kOsDesktop, ORIGIN_LIST_VALUE_TYPE(\"custom-ntp\", \"\")},\n+    {\"tab-hover-cards\",\n+     \"Tab Hover Cards\",\n+     \"Allows removing the tab hover cards or using a tooltip as a replacement. ungoogled-chromium flag.\",\n+     kOsDesktop, MULTI_VALUE_TYPE(kTabHoverCards)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-for-tabsearch-button.patch",
    "content": "--- a/chrome/browser/ui/browser_command_controller.cc\n+++ b/chrome/browser/ui/browser_command_controller.cc\n@@ -1723,7 +1723,8 @@ void BrowserCommandController::InitComma\n   command_updater_.UpdateCommandEnabled(IDC_WINDOW_CLOSE_OTHER_TABS,\n                                         normal_window);\n \n-  const bool enable_tab_search_commands = browser_->is_type_normal();\n+  const bool enable_tab_search_commands = browser_->is_type_normal() &&\n+      !base::CommandLine::ForCurrentProcess()->HasSwitch(\"remove-tabsearch-button\");\n   command_updater_.UpdateCommandEnabled(IDC_TAB_SEARCH,\n                                         enable_tab_search_commands);\n   command_updater_.UpdateCommandEnabled(IDC_TAB_SEARCH_CLOSE,\n--- a/chrome/browser/ui/tab_search_feature.cc\n+++ b/chrome/browser/ui/tab_search_feature.cc\n@@ -6,12 +6,16 @@\n \n #include <string>\n \n+#include \"base/command_line.h\"\n #include \"chrome/browser/glic/public/glic_enabling.h\"\n \n namespace features {\n bool HasTabSearchToolbarButton() {\n   // It is important that this value not change at runtime in production. Any\n   // future updates to this function must maintain that property.\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"remove-tabsearch-button\")) {\n+    return false;\n+  }\n   return true;\n }\n }  // namespace features\n--- a/chrome/browser/ui/views/frame/browser_view.cc\n+++ b/chrome/browser/ui/views/frame/browser_view.cc\n@@ -4385,6 +4385,9 @@ BookmarkBar::State BrowserView::bookmark\n }\n \n void BrowserView::UpdateTabSearchBubbleHost() {\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"remove-tabsearch-button\")) {\n+    return;\n+  }\n   if (!GetIsNormalType()) {\n     return;\n   }\n--- a/chrome/browser/ui/views/frame/horizontal_tab_strip_region_view.cc\n+++ b/chrome/browser/ui/views/frame/horizontal_tab_strip_region_view.cc\n@@ -4,6 +4,7 @@\n \n #include \"chrome/browser/ui/views/frame/horizontal_tab_strip_region_view.h\"\n \n+#include \"base/command_line.h\"\n #include \"base/feature_list.h\"\n #include \"base/functional/bind.h\"\n #include \"base/strings/utf_string_conversions.h\"\n@@ -241,6 +242,7 @@ HorizontalTabStripRegionView::Horizontal\n   std::unique_ptr<TabSearchContainer> tab_search_container;\n   std::unique_ptr<TabStripActionContainer> tab_strip_action_container;\n   if (browser &&\n+      !base::CommandLine::ForCurrentProcess()->HasSwitch(\"remove-tabsearch-button\") &&\n       (browser->GetType() == BrowserWindowInterface::Type::TYPE_NORMAL)) {\n     if (features::HasTabSearchToolbarButton()) {\n       tab_strip_action_container = std::make_unique<TabStripActionContainer>(\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -60,4 +60,8 @@\n      \"Clear data on exit\",\n      \"Clears all browsing data on exit. ungoogled-chromium flag\",\n      kOsDesktop, FEATURE_VALUE_TYPE(features::kClearDataOnExit)},\n+    {\"remove-tabsearch-button\",\n+     \"Remove Tabsearch Button\",\n+     \"Removes the tabsearch button from the tabstrip. ungoogled-chromium flag\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"remove-tabsearch-button\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-change-http-accept-header.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -92,4 +92,8 @@\n      \"Disable GREASE for TLS\",\n      \"Turn off GREASE (Generate Random Extensions And Sustain Extensibility) for TLS connections. ungoogled-chromium flag.\",\n      kOsAll, SINGLE_VALUE_TYPE(\"disable-grease-tls\")},\n+    {\"http-accept-header\",\n+     \"Custom HTTP Accept Header\",\n+     \"Set a custom value for the Accept header which is sent by the browser with every HTTP request.  (e.g. `text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8`). ungoogled-chromium flag.\",\n+     kOsAll, ORIGIN_LIST_VALUE_TYPE(\"http-accept-header\", \"\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/webui/flags/flags_state.cc\n+++ b/components/webui/flags/flags_state.cc\n@@ -231,6 +231,7 @@ std::string GetCombinedOriginListValue(c\n   const std::string new_value =\n       flags_storage.GetOriginListFlag(internal_entry_name);\n   if (command_line_switch == \"custom-ntp\") return existing_value.empty() ? new_value : existing_value;\n+  if (command_line_switch == \"http-accept-header\") return existing_value.empty() ? new_value : existing_value;\n   return CombineAndSanitizeOriginLists(existing_value, new_value);\n }\n \n@@ -482,6 +483,7 @@ void FlagsState::SetOriginListFlag(const\n                                    FlagsStorage* flags_storage) {\n   const std::string new_value =\n       internal_name == \"custom-ntp\" ? value :\n+      internal_name == \"http-accept-header\" ? value :\n       CombineAndSanitizeOriginLists(std::string(), value);\n   flags_storage->SetOriginListFlag(internal_name, new_value);\n \n--- a/content/public/browser/frame_accept_header.cc\n+++ b/content/public/browser/frame_accept_header.cc\n@@ -4,6 +4,7 @@\n \n #include \"content/public/browser/frame_accept_header.h\"\n \n+#include \"base/command_line.h\"\n #include \"base/feature_list.h\"\n #include \"content/browser/web_package/signed_exchange_consts.h\"\n #include \"content/browser/web_package/signed_exchange_utils.h\"\n@@ -15,6 +16,9 @@ namespace content {\n \n std::string FrameAcceptHeaderValue(bool allow_sxg_responses,\n                                    BrowserContext* browser_context) {\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"http-accept-header\"))\n+    return base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"http-accept-header\");\n+\n #if BUILDFLAG(ENABLE_JXL_DECODER)\n   std::string header_value =\n       base::FeatureList::IsEnabled(blink::features::kJXLImageFormat)\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-clear-data-on-exit.patch",
    "content": "--- a/chrome/browser/browser_features.cc\n+++ b/chrome/browser/browser_features.cc\n@@ -265,4 +265,5 @@ BASE_FEATURE(kReportPakFileIntegrity,\n // show both in Chrome Tabs and Windows.\n BASE_FEATURE(kRemovalOfIWAsFromTabCapture, base::FEATURE_ENABLED_BY_DEFAULT);\n \n+BASE_FEATURE(kClearDataOnExit, \"ClearDataOnExit\", base::FEATURE_DISABLED_BY_DEFAULT);\n }  // namespace features\n--- a/chrome/browser/browser_features.h\n+++ b/chrome/browser/browser_features.h\n@@ -115,6 +115,7 @@ BASE_DECLARE_FEATURE(kRemovalOfIWAsFromT\n // module, e.g.\n // //chrome/browser/<foo_module>/features.h\n //\n+BASE_DECLARE_FEATURE(kClearDataOnExit);\n }  // namespace features\n \n #endif  // CHROME_BROWSER_BROWSER_FEATURES_H_\n--- a/chrome/browser/browsing_data/chrome_browsing_data_lifetime_manager.cc\n+++ b/chrome/browser/browsing_data/chrome_browsing_data_lifetime_manager.cc\n@@ -19,6 +19,7 @@\n #include \"base/task/task_traits.h\"\n #include \"base/values.h\"\n #include \"build/build_config.h\"\n+#include \"chrome/browser/browser_features.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"chrome/browser/browsing_data/chrome_browsing_data_remover_constants.h\"\n #include \"chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h\"\n@@ -148,6 +149,21 @@ class BrowsingDataRemoverObserver\n #endif\n };\n \n+uint64_t AllOriginTypeMask() {\n+  return content::BrowsingDataRemover::ORIGIN_TYPE_PROTECTED_WEB |\n+         content::BrowsingDataRemover::ORIGIN_TYPE_UNPROTECTED_WEB;\n+}\n+\n+uint64_t AllRemoveMask() {\n+  return content::BrowsingDataRemover::DATA_TYPE_CACHE |\n+         content::BrowsingDataRemover::DATA_TYPE_DOWNLOADS |\n+         chrome_browsing_data_remover::DATA_TYPE_CONTENT_SETTINGS |\n+         chrome_browsing_data_remover::DATA_TYPE_FORM_DATA |\n+         chrome_browsing_data_remover::DATA_TYPE_HISTORY |\n+         chrome_browsing_data_remover::DATA_TYPE_PASSWORDS |\n+         chrome_browsing_data_remover::DATA_TYPE_SITE_DATA;\n+}\n+\n uint64_t GetOriginTypeMask(const base::ListValue& data_types) {\n   uint64_t result = 0;\n   for (const auto& data_type : data_types) {\n@@ -329,9 +345,10 @@ void ChromeBrowsingDataLifetimeManager::\n   const base::ListValue& data_types = profile_->GetPrefs()->GetList(\n       browsing_data::prefs::kClearBrowsingDataOnExitList);\n \n-  if (!data_types.empty() &&\n+  bool cdoe = base::FeatureList::IsEnabled(features::kClearDataOnExit);\n+  if (cdoe || (!data_types.empty() &&\n       IsConditionSatisfiedForBrowsingDataRemoval(GetSyncTypesForPolicyPref(\n-          profile_, browsing_data::prefs::kClearBrowsingDataOnExitList))) {\n+          profile_, browsing_data::prefs::kClearBrowsingDataOnExitList)))) {\n     profile_->GetPrefs()->SetBoolean(\n         browsing_data::prefs::kClearBrowsingDataOnExitDeletionPending, true);\n     auto* remover = profile_->GetBrowsingDataRemover();\n@@ -342,8 +359,8 @@ void ChromeBrowsingDataLifetimeManager::\n       DCHECK(keep_browser_alive);\n #endif\n     remover->RemoveAndReply(base::Time(), base::Time::Max(),\n-                            GetRemoveMask(data_types),\n-                            GetOriginTypeMask(data_types),\n+                            cdoe ? AllRemoveMask() : GetRemoveMask(data_types),\n+                            cdoe ? AllOriginTypeMask() : GetOriginTypeMask(data_types),\n                             BrowsingDataRemoverObserver::Create(\n                                 remover, /*filterable_deletion=*/true, profile_,\n                                 keep_browser_alive));\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -56,4 +56,8 @@\n      \"Keep old history\",\n      \"Keep history older than 3 months. ungoogled-chromium flag\",\n      kOsAll, SINGLE_VALUE_TYPE(\"keep-old-history\")},\n+    {\"clear-data-on-exit\",\n+     \"Clear data on exit\",\n+     \"Clears all browsing data on exit. ungoogled-chromium flag\",\n+     kOsDesktop, FEATURE_VALUE_TYPE(features::kClearDataOnExit)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-close-window-with-last-tab.patch",
    "content": "--- a/chrome/browser/ui/tabs/tab_strip_model.cc\n+++ b/chrome/browser/ui/tabs/tab_strip_model.cc\n@@ -18,6 +18,7 @@\n \n #include \"base/check.h\"\n #include \"base/check_op.h\"\n+#include \"base/command_line.h\"\n #include \"base/containers/adapters.h\"\n #include \"base/containers/flat_map.h\"\n #include \"base/containers/span.h\"\n@@ -1309,6 +1310,10 @@ void TabStripModel::CloseAllTabsInGroupI\n \n void TabStripModel::CloseWebContentsAt(int index, uint32_t close_types) {\n   CHECK(ContainsIndex(index));\n+  if (base::CommandLine::ForCurrentProcess()->\n+          GetSwitchValueASCII(\"close-window-with-last-tab\") == \"never\" &&\n+          !closing_all_ && count() < 2)\n+    delegate()->AddTabAt(GURL(), -1, true);\n   CloseTabs({GetWebContentsAt(index)}, close_types);\n }\n \n@@ -3205,9 +3210,13 @@ void TabStripModel::ExecuteCloseTabs(\n     base::RepeatingCallback<std::vector<tabs::TabInterface*>()>\n         get_tabs_to_close,\n     uint32_t close_types) {\n-  ReentrancyCheck reentrancy_check(&reentrancy_guard_);\n   const std::vector<tabs::TabInterface*> tabs_to_close =\n       std::move(get_tabs_to_close).Run();\n+  if (base::CommandLine::ForCurrentProcess()->\n+          GetSwitchValueASCII(\"close-window-with-last-tab\") == \"never\" &&\n+          static_cast<int>(tabs_to_close.size()) == count())\n+      delegate()->AddTabAt(GURL(), -1, true);\n+  ReentrancyCheck reentrancy_check(&reentrancy_guard_);\n   std::vector<content::WebContents*> web_contents_to_close;\n   for (tabs::TabInterface* t : tabs_to_close) {\n     web_contents_to_close.push_back(t->GetContents());\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -55,4 +55,10 @@ const FeatureEntry::Choice kOmniboxAutoc\n      \"omnibox-autocomplete-filtering\",\n      \"search-bookmarks-chrome\"},\n };\n+const FeatureEntry::Choice kCloseWindowWithLastTab[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"Never\",\n+     \"close-window-with-last-tab\",\n+     \"never\"},\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -44,4 +44,8 @@\n      \"Omnibox Autocomplete Filtering\",\n      \"Restrict omnibox autocomplete results to a combination of search suggestions (if enabled), bookmarks, and internal chrome pages. ungoogled-chromium flag.\",\n      kOsAll, MULTI_VALUE_TYPE(kOmniboxAutocompleteFiltering)},\n+    {\"close-window-with-last-tab\",\n+     \"Close window with last tab\",\n+     \"Determines whether a window should close once the last tab is closed. ungoogled-chromium flag.\",\n+     kOsDesktop, MULTI_VALUE_TYPE(kCloseWindowWithLastTab)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-configure-extension-downloading.patch",
    "content": "# Add extension-mime-request-handling chrome://flag to tweak the behavior of\n# extension MIME types\n\n--- a/chrome/browser/download/download_crx_util.cc\n+++ b/chrome/browser/download/download_crx_util.cc\n@@ -9,6 +9,7 @@\n #include <memory>\n \n #include \"base/auto_reset.h\"\n+#include \"base/command_line.h\"\n #include \"build/build_config.h\"\n #include \"chrome/browser/extensions/browser_window_util.h\"\n #include \"chrome/browser/extensions/crx_installer.h\"\n@@ -114,6 +115,14 @@ scoped_refptr<extensions::CrxInstaller>\n   return installer;\n }\n \n+bool ShouldDownloadAsRegularFile() {\n+    const base::CommandLine& command_line =\n+        *base::CommandLine::ForCurrentProcess();\n+    return command_line.HasSwitch(\"extension-mime-request-handling\") &&\n+        command_line.GetSwitchValueASCII(\"extension-mime-request-handling\") ==\n+        \"download-as-regular-file\";\n+}\n+\n bool IsExtensionDownload(const DownloadItem& download_item) {\n   if (download_item.GetTargetDisposition() ==\n       DownloadItem::TARGET_DISPOSITION_PROMPT)\n@@ -122,7 +131,7 @@ bool IsExtensionDownload(const DownloadI\n   if (download_item.GetMimeType() == extensions::Extension::kMimeType ||\n       extensions::UserScript::IsURLUserScript(download_item.GetURL(),\n                                               download_item.GetMimeType())) {\n-    return true;\n+    return !ShouldDownloadAsRegularFile();\n   } else {\n     return false;\n   }\n--- a/chrome/browser/download/download_crx_util.h\n+++ b/chrome/browser/download/download_crx_util.h\n@@ -35,6 +35,10 @@ scoped_refptr<extensions::CrxInstaller>\n     Profile* profile,\n     const download::DownloadItem& download_item);\n \n+// Returns true if the user wants all extensions to be downloaded as regular\n+// files.\n+bool ShouldDownloadAsRegularFile();\n+\n // Returns true if this is an extension download. This also considers user\n // scripts to be extension downloads, since we convert those automatically.\n bool IsExtensionDownload(const download::DownloadItem& download_item);\n--- a/chrome/browser/download/download_target_determiner.cc\n+++ b/chrome/browser/download/download_target_determiner.cc\n@@ -1130,10 +1130,12 @@ DownloadConfirmationReason DownloadTarge\n     return DownloadConfirmationReason::SAVE_AS;\n \n #if BUILDFLAG(ENABLE_EXTENSIONS_CORE)\n-  // Don't prompt for extension downloads if the installation site is allow\n-  // listed.\n-  if (download_crx_util::IsTrustedExtensionDownload(GetProfile(), *download_))\n-    return DownloadConfirmationReason::NONE;\n+  if (!download_crx_util::ShouldDownloadAsRegularFile()) {\n+    // Don't prompt for extension downloads.\n+    if (download_crx_util::IsTrustedExtensionDownload(GetProfile(), *download_) ||\n+        filename.MatchesExtension(extensions::kExtensionFileExtension))\n+      return DownloadConfirmationReason::NONE;\n+  }\n #endif\n \n   // Don't prompt for file types that are marked for opening automatically.\n--- a/chrome/browser/extensions/extension_management.cc\n+++ b/chrome/browser/extensions/extension_management.cc\n@@ -336,6 +336,13 @@ bool ExtensionManagement::IsInstallation\n bool ExtensionManagement::IsOffstoreInstallAllowed(\n     const GURL& url,\n     const GURL& referrer_url) const {\n+  const base::CommandLine& command_line =\n+      *base::CommandLine::ForCurrentProcess();\n+  if (command_line.HasSwitch(\"extension-mime-request-handling\") &&\n+      command_line.GetSwitchValueASCII(\"extension-mime-request-handling\") ==\n+      \"always-prompt-for-install\") {\n+    return true;\n+  }\n   // No allowed install sites specified, disallow by default.\n   if (!global_settings_->install_sources.has_value())\n     return false;\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -4,4 +4,13 @@\n \n #ifndef CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n #define CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n+const FeatureEntry::Choice kExtensionHandlingChoices[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"Download as regular file\",\n+     \"extension-mime-request-handling\",\n+     \"download-as-regular-file\"},\n+    {\"Always prompt for install\",\n+     \"extension-mime-request-handling\",\n+     \"always-prompt-for-install\"},\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -8,4 +8,8 @@\n      \"SetIpv6ProbeFalse\",\n      \"Forces the result of the browser's IPv6 probing (i.e. IPv6 connectivity test) to be unsuccessful. This causes IPv4 addresses to be prioritized over IPv6 addresses. Without this flag, the probing result is set to be successful, which causes IPv6 to be used over IPv4 when possible. ungoogled-chromium flag.\",\n      kOsAll, FEATURE_VALUE_TYPE(net::features::kSetIpv6ProbeFalse)},\n+    {\"extension-mime-request-handling\",\n+     \"Handling of extension MIME type requests\",\n+     \"Used when deciding how to handle a request for a CRX or User Script MIME type. ungoogled-chromium flag.\",\n+     kOsAll, MULTI_VALUE_TYPE(kExtensionHandlingChoices)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-convert-popups-to-tabs.patch",
    "content": "# Make popups go to tabs instead\n\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -48,4 +48,8 @@\n      \"Close window with last tab\",\n      \"Determines whether a window should close once the last tab is closed. ungoogled-chromium flag.\",\n      kOsDesktop, MULTI_VALUE_TYPE(kCloseWindowWithLastTab)},\n+    {\"popups-to-tabs\",\n+     \"Popups to tabs\",\n+     \"Makes popups open in new tabs. ungoogled-chromium flag\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"popups-to-tabs\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/content/renderer/render_frame_impl.cc\n+++ b/content/renderer/render_frame_impl.cc\n@@ -1211,6 +1211,8 @@ WindowOpenDisposition NavigationPolicyTo\n     case blink::kWebNavigationPolicyNewWindow:\n       return WindowOpenDisposition::NEW_WINDOW;\n     case blink::kWebNavigationPolicyNewPopup:\n+      if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"popups-to-tabs\"))\n+        return WindowOpenDisposition::NEW_FOREGROUND_TAB;\n       return WindowOpenDisposition::NEW_POPUP;\n     case blink::kWebNavigationPolicyPictureInPicture:\n       return WindowOpenDisposition::NEW_PICTURE_IN_PICTURE;\n--- a/ui/base/mojom/window_open_disposition_mojom_traits.h\n+++ b/ui/base/mojom/window_open_disposition_mojom_traits.h\n@@ -5,6 +5,7 @@\n #ifndef UI_BASE_MOJOM_WINDOW_OPEN_DISPOSITION_MOJOM_TRAITS_H_\n #define UI_BASE_MOJOM_WINDOW_OPEN_DISPOSITION_MOJOM_TRAITS_H_\n \n+#include \"base/command_line.h\"\n #include \"base/notreached.h\"\n #include \"mojo/public/cpp/bindings/enum_traits.h\"\n #include \"ui/base/mojom/window_open_disposition.mojom.h\"\n@@ -30,6 +31,8 @@ struct EnumTraits<ui::mojom::WindowOpenD\n       case WindowOpenDisposition::NEW_PICTURE_IN_PICTURE:\n         return ui::mojom::WindowOpenDisposition::NEW_PICTURE_IN_PICTURE;\n       case WindowOpenDisposition::NEW_POPUP:\n+        if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"popups-to-tabs\"))\n+          return ui::mojom::WindowOpenDisposition::NEW_FOREGROUND_TAB;\n         return ui::mojom::WindowOpenDisposition::NEW_POPUP;\n       case WindowOpenDisposition::NEW_WINDOW:\n         return ui::mojom::WindowOpenDisposition::NEW_WINDOW;\n@@ -67,6 +70,8 @@ struct EnumTraits<ui::mojom::WindowOpenD\n         return true;\n       case ui::mojom::WindowOpenDisposition::NEW_POPUP:\n         *out = WindowOpenDisposition::NEW_POPUP;\n+        if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"popups-to-tabs\"))\n+          *out = WindowOpenDisposition::NEW_FOREGROUND_TAB;\n         return true;\n       case ui::mojom::WindowOpenDisposition::NEW_WINDOW:\n         *out = WindowOpenDisposition::NEW_WINDOW;\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-disable-beforeunload.patch",
    "content": "# Add --disable-beforeunload to always disable beforeunload JavaScript dialogs\n\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -16,4 +16,8 @@\n      \"Disable search engine collection\",\n      \"Prevents search engines from being added automatically. ungoogled-chromium flag.\",\n      kOsAll, SINGLE_VALUE_TYPE(\"disable-search-engine-collection\")},\n+    {\"disable-beforeunload\",\n+     \"Disable beforeunload\",\n+     \"Disables JavaScript dialog boxes triggered by beforeunload. ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"disable-beforeunload\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/javascript_dialogs/app_modal_dialog_manager.cc\n+++ b/components/javascript_dialogs/app_modal_dialog_manager.cc\n@@ -7,6 +7,7 @@\n #include <algorithm>\n #include <utility>\n \n+#include \"base/command_line.h\"\n #include \"base/functional/bind.h\"\n #include \"base/metrics/histogram_macros.h\"\n #include \"base/strings/utf_string_conversions.h\"\n@@ -145,7 +146,8 @@ void AppModalDialogManager::RunBeforeUnl\n   ChromeJavaScriptDialogExtraData* extra_data =\n       &javascript_dialog_extra_data_[web_contents];\n \n-  if (extra_data->suppress_javascript_messages_) {\n+  if (extra_data->suppress_javascript_messages_\n+        || base::CommandLine::ForCurrentProcess()->HasSwitch(\"disable-beforeunload\")) {\n     // If a site harassed the user enough for them to put it on mute, then it\n     // lost its privilege to deny unloading.\n     std::move(callback).Run(true, std::u16string());\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-disable-local-history-expiration.patch",
    "content": "# Keep local history longer than 90 days\n\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -52,4 +52,8 @@\n      \"Popups to tabs\",\n      \"Makes popups open in new tabs. ungoogled-chromium flag\",\n      kOsAll, SINGLE_VALUE_TYPE(\"popups-to-tabs\")},\n+    {\"keep-old-history\",\n+     \"Keep old history\",\n+     \"Keep history older than 3 months. ungoogled-chromium flag\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"keep-old-history\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/history/core/browser/history_backend.cc\n+++ b/components/history/core/browser/history_backend.cc\n@@ -14,6 +14,7 @@\n #include <utility>\n #include <vector>\n \n+#include \"base/command_line.h\"\n #include \"base/compiler_specific.h\"\n #include \"base/containers/flat_set.h\"\n #include \"base/feature_list.h\"\n@@ -1336,7 +1337,8 @@ void HistoryBackend::InitImpl(\n   db_->GetStartDate(&first_recorded_time_);\n \n   // Start expiring old stuff.\n-  expirer_.StartExpiringOldStuff(base::Days(kExpireDaysThreshold));\n+  if (!base::CommandLine::ForCurrentProcess()->HasSwitch(\"keep-old-history\"))\n+    expirer_.StartExpiringOldStuff(base::Days(kExpireDaysThreshold));\n }\n \n void HistoryBackend::CloseAllDatabases() {\n@@ -1562,6 +1564,8 @@ void HistoryBackend::AddPagesWithDetails\n }\n \n bool HistoryBackend::IsExpiredVisitTime(const base::Time& time) const {\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"keep-old-history\"))\n+    return false;\n   return time < expirer_.GetCurrentExpirationTime();\n }\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-disable-sharing-hub.patch",
    "content": "--- a/chrome/browser/sharing_hub/sharing_hub_features.cc\n+++ b/chrome/browser/sharing_hub/sharing_hub_features.cc\n@@ -4,6 +4,7 @@\n \n #include \"chrome/browser/sharing_hub/sharing_hub_features.h\"\n \n+#include \"base/command_line.h\"\n #include \"build/build_config.h\"\n #include \"chrome/browser/profiles/profile.h\"\n #include \"chrome/common/pref_names.h\"\n@@ -36,6 +37,7 @@ bool ScreenshotsDisabledByPolicy(content\n }  // namespace\n \n bool SharingHubOmniboxEnabled(content::BrowserContext* context) {\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"disable-sharing-hub\")) return false;\n #if BUILDFLAG(IS_CHROMEOS)\n   return false;\n #else\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -96,4 +96,8 @@\n      \"Custom HTTP Accept Header\",\n      \"Set a custom value for the Accept header which is sent by the browser with every HTTP request.  (e.g. `text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8`). ungoogled-chromium flag.\",\n      kOsAll, ORIGIN_LIST_VALUE_TYPE(\"http-accept-header\", \"\")},\n+    {\"disable-sharing-hub\",\n+     \"Disable Sharing Hub\",\n+     \"Disables the sharing hub button. ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"disable-sharing-hub\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-disable-tls-grease.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -88,4 +88,8 @@\n      \"Hide tab close buttons\",\n      \"Hides the close buttons on tabs. ungoogled-chromium flag.\",\n      kOsDesktop, SINGLE_VALUE_TYPE(\"hide-tab-close-buttons\")},\n+    {\"disable-grease-tls\",\n+     \"Disable GREASE for TLS\",\n+     \"Turn off GREASE (Generate Random Extensions And Sustain Extensibility) for TLS connections. ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"disable-grease-tls\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/net/socket/ssl_client_socket_impl.cc\n+++ b/net/socket/ssl_client_socket_impl.cc\n@@ -14,6 +14,7 @@\n #include <string_view>\n #include <utility>\n \n+#include \"base/command_line.h\"\n #include \"base/containers/span.h\"\n #include \"base/containers/to_vector.h\"\n #include \"base/feature_list.h\"\n@@ -200,7 +201,8 @@ class SSLClientSocketImpl::SSLContext {\n     SSL_CTX_sess_set_new_cb(ssl_ctx_.get(), NewSessionCallback);\n     SSL_CTX_set_timeout(ssl_ctx_.get(), 1 * 60 * 60 /* one hour */);\n \n-    SSL_CTX_set_grease_enabled(ssl_ctx_.get(), 1);\n+    int grease_mode = !base::CommandLine::ForCurrentProcess()->HasSwitch(\"disable-grease-tls\");\n+    SSL_CTX_set_grease_enabled(ssl_ctx_.get(), grease_mode);\n \n     // Deduplicate all certificates minted from the SSL_CTX in memory.\n     SSL_CTX_set0_buffer_pool(ssl_ctx_.get(), x509_util::GetBufferPool());\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-force-punycode-hostnames.patch",
    "content": "# Add flag to force punycode in hostnames instead of Unicode when displaying Internationalized Domain Names (IDNs) to mitigate homograph attacks\n\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -20,4 +20,8 @@\n      \"Disable beforeunload\",\n      \"Disables JavaScript dialog boxes triggered by beforeunload. ungoogled-chromium flag.\",\n      kOsAll, SINGLE_VALUE_TYPE(\"disable-beforeunload\")},\n+    {\"force-punycode-hostnames\",\n+     \"Force punycode hostnames\",\n+     \"Force punycode in hostnames instead of Unicode when displaying Internationalized Domain Names (IDNs). ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"force-punycode-hostnames\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/url_formatter/url_formatter.cc\n+++ b/components/url_formatter/url_formatter.cc\n@@ -10,6 +10,7 @@\n #include <utility>\n #include <vector>\n \n+#include \"base/command_line.h\"\n #include \"base/memory/raw_ptr.h\"\n #include \"base/no_destructor.h\"\n #include \"base/numerics/safe_conversions.h\"\n@@ -317,6 +318,13 @@ IDNConversionResult IDNToUnicodeWithAdju\n   host16.reserve(host.length());\n   host16.insert(host16.end(), host.begin(), host.end());\n \n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"force-punycode-hostnames\")) {\n+    // Leave as punycode.\n+    IDNConversionResult result;\n+    result.result = host16;\n+    return result;\n+  }\n+\n   // Compute the top level domain to be used in spoof checks later.\n   std::string_view top_level_domain;\n   std::u16string top_level_domain_unicode;\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-hide-crashed-bubble.patch",
    "content": "# Add flag --hide-crashed-bubble to hide the bubble box:\n# \"Restore Pages? Chromium didn't shut down correctly.\"\n\n--- a/chrome/browser/ui/startup/infobar_utils.cc\n+++ b/chrome/browser/ui/startup/infobar_utils.cc\n@@ -148,6 +148,7 @@ void AddInfoBarsIfNecessary(BrowserWindo\n \n   // Web apps should not display the session restore bubble (crbug.com/1264121)\n   const bool should_display_bubble =\n+      !startup_command_line.HasSwitch(\"hide-crashed-bubble\") &&\n       !is_web_app && HasPendingUncleanExit(browser->GetProfile());\n   base::UmaHistogramBoolean(\"Startup.CrashBubbleShown\", should_display_bubble);\n   if (should_display_bubble) {\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -28,4 +28,8 @@\n      \"Show avatar/people/profile button\",\n      \"Show avatar/people/profile button in the browser toolbar. ungoogled-chromium flag.\",\n      kOsDesktop, MULTI_VALUE_TYPE(kShowAvatarButtonChoices)},\n+    {\"hide-crashed-bubble\",\n+     \"Hide crashed bubble\",\n+     \"Hides the bubble box with the message \\\"Restore Pages? Chromium didn't shut down correctly.\\\" that shows on startup after the browser did not exit cleanly. ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"hide-crashed-bubble\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-hide-extensions-menu.patch",
    "content": "--- a/chrome/browser/ui/views/extensions/extensions_toolbar_desktop.cc\n+++ b/chrome/browser/ui/views/extensions/extensions_toolbar_desktop.cc\n@@ -7,6 +7,7 @@\n #include <algorithm>\n #include <memory>\n \n+#include \"base/command_line.h\"\n #include \"base/feature_list.h\"\n #include \"base/functional/bind.h\"\n #include \"base/functional/callback_helpers.h\"\n@@ -37,6 +38,7 @@\n #include \"chrome/browser/ui/views/side_panel/extensions/extension_side_panel_coordinator.h\"\n #include \"chrome/browser/ui/views/side_panel/side_panel_ui.h\"\n #include \"chrome/browser/ui/views/toolbar/toolbar_action_hover_card_controller.h\"\n+#include \"chrome/browser/ui/views/toolbar/toolbar_view.h\"\n #include \"chrome/common/pref_names.h\"\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/feature_engagement/public/event_constants.h\"\n@@ -439,6 +441,17 @@ void ExtensionsToolbarDesktop::AnchorAnd\n   widget->widget_delegate()->AsBubbleDialogDelegate()->SetAnchorView(\n       anchor_view && anchor_view->GetVisible() ? anchor_view\n                                                : GetExtensionsButton());\n+\n+  // Fix the position of widgets. Without this fix, extension-installed-bubble\n+  // and extension-uninstall-dialog may be out of the window border on Linux.\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"hide-extensions-menu\"))\n+  {\n+    views::View* anchor_view = BrowserView::GetBrowserViewForBrowser(browser_)\n+      ->toolbar_button_provider()->GetAppMenuButton();\n+    widget->widget_delegate()->AsBubbleDialogDelegate()\n+      ->SetAnchorView(anchor_view);\n+  }\n+\n   widget->Show();\n }\n \n@@ -918,6 +931,9 @@ void ExtensionsToolbarDesktop::UpdateCon\n }\n \n bool ExtensionsToolbarDesktop::ShouldContainerBeVisible() const {\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"hide-extensions-menu\"))\n+    return false;\n+\n   // The container (and extensions-menu button) should not be visible if we have\n   // no extensions.\n   if (!toolbar_view_model_->HasAnyExtensions()) {\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -104,4 +104,8 @@\n      \"Disable link drag\",\n      \"Prevents dragging of links and selected text. ungoogled-chromium flag.\",\n      kOsDesktop, FEATURE_VALUE_TYPE(blink::features::kDisableLinkDrag)},\n+    {\"hide-extensions-menu\",\n+     \"Hide Extensions Menu\",\n+     \"Hides the extensions container. This includes the puzzle piece icon as well as any pinned extensions. ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"hide-extensions-menu\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-hide-fullscreen-exit-ui.patch",
    "content": "--- a/chrome/browser/ui/views/frame/browser_view.cc\n+++ b/chrome/browser/ui/views/frame/browser_view.cc\n@@ -745,6 +745,9 @@ class BrowserView::ExclusiveAccessContex\n   void UpdateExclusiveAccessBubble(\n       const ExclusiveAccessBubbleParams& params,\n       ExclusiveAccessBubbleHideCallback first_hide_callback) override {\n+    if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"hide-fullscreen-exit-ui\")) {\n+      return;\n+    }\n     // Trusted pinned mode does not allow to escape. So do not show the bubble.\n     bool is_trusted_pinned =\n         platform_util::IsBrowserLockedFullscreen(browser_view_->browser_.get());\n--- a/chrome/browser/ui/views/fullscreen_control/fullscreen_control_host.cc\n+++ b/chrome/browser/ui/views/fullscreen_control/fullscreen_control_host.cc\n@@ -75,6 +75,10 @@ bool IsExitUiEnabled() {\n   // menu and controls reveal when the cursor is moved to the top.\n   return false;\n #else\n+  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n+          \"hide-fullscreen-exit-ui\"))\n+    return false;\n+\n   // Kiosk mode is a fullscreen experience, which makes the exit UI\n   // inappropriate.\n   return !IsRunningInAppMode();\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -108,4 +108,8 @@\n      \"Hide Extensions Menu\",\n      \"Hides the extensions container. This includes the puzzle piece icon as well as any pinned extensions. ungoogled-chromium flag.\",\n      kOsDesktop, SINGLE_VALUE_TYPE(\"hide-extensions-menu\")},\n+    {\"hide-fullscreen-exit-ui\",\n+     \"Hide Fullscreen Exit UI\",\n+     \"Hides the \\\"X\\\" that appears when the mouse cursor is moved towards the top of the window in fullscreen mode. Additionally, this hides the \\\"Press F11 to exit full screen\\\" popup. ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"hide-fullscreen-exit-ui\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-hide-tab-close-buttons.patch",
    "content": "--- a/chrome/browser/ui/views/tabs/tab.cc\n+++ b/chrome/browser/ui/views/tabs/tab.cc\n@@ -1192,7 +1192,11 @@ void Tab::UpdateIconVisibility() {\n     // Close button is shown on active tabs regardless of the size.\n     showing_close_button_ = true;\n #endif  // BUILDFLAG(IS_CHROMEOS)\n+    if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"hide-tab-close-buttons\")) {\n+      showing_close_button_ = false;\n+    } else {\n     available_width -= close_button_width;\n+    }\n \n     showing_alert_indicator_ =\n         has_alert_icon && alert_icon_width <= available_width;\n@@ -1221,6 +1225,8 @@ void Tab::UpdateIconVisibility() {\n         should_show_close_button &&\n #endif\n         large_enough_for_close_button;\n+    if (base::CommandLine::ForCurrentProcess()->HasSwitch(\"hide-tab-close-buttons\"))\n+      showing_close_button_ = false;\n     if (showing_close_button_) {\n       available_width -= close_button_width;\n     }\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -84,4 +84,8 @@\n      \"Tab Hover Cards\",\n      \"Allows removing the tab hover cards or using a tooltip as a replacement. ungoogled-chromium flag.\",\n      kOsDesktop, MULTI_VALUE_TYPE(kTabHoverCards)},\n+    {\"hide-tab-close-buttons\",\n+     \"Hide tab close buttons\",\n+     \"Hides the close buttons on tabs. ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"hide-tab-close-buttons\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-increase-incognito-storage-quota.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -144,4 +144,8 @@\n      \"Spoof WebGL Info\",\n      \"Return generic values for WebGLDebugRendererInfo to remove a potential data leak while preventing potential website breakage. ungoogled-chromium flag.\",\n      kOsAll, FEATURE_WITH_PARAMS_VALUE_TYPE(blink::features::kSpoofWebGLInfo, kSpoofWebGLChoices, \"SpoofWebGLInfo\")},\n+    {\"increase-incognito-storage-quota\",\n+     \"Increases the storage quota for Incognito and Guest profiles\",\n+     \"Makes Incognito and Guest profiles compute the storage quota with the same algorithm that regular profiles use. This makes it harder for websites to detect Incognito mode, but may allow sites to induce heavy memory pressure. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(storage::features::kIncreaseIncognitoStorageQuota)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/storage/browser/quota/quota_features.cc\n+++ b/storage/browser/quota/quota_features.cc\n@@ -37,5 +37,9 @@ constexpr base::FeatureParam<double> kSh\n // A kill switch for the new reported quota being a static value.\n BASE_FEATURE(kStaticStorageQuota, base::FEATURE_DISABLED_BY_DEFAULT);\n \n+BASE_FEATURE(kIncreaseIncognitoStorageQuota,\n+             \"IncreaseIncognitoStorageQuota\",\n+             base::FEATURE_DISABLED_BY_DEFAULT);\n+\n }  // namespace features\n }  // namespace storage\n--- a/storage/browser/quota/quota_features.h\n+++ b/storage/browser/quota/quota_features.h\n@@ -23,6 +23,8 @@ extern const base::FeatureParam<double>\n \n COMPONENT_EXPORT(STORAGE_BROWSER) BASE_DECLARE_FEATURE(kStaticStorageQuota);\n \n+COMPONENT_EXPORT(STORAGE_BROWSER) BASE_DECLARE_FEATURE(kIncreaseIncognitoStorageQuota);\n+\n }  // namespace features\n \n }  // namespace storage\n--- a/storage/browser/quota/quota_settings.cc\n+++ b/storage/browser/quota/quota_settings.cc\n@@ -9,6 +9,7 @@\n #include <memory>\n #include <utility>\n \n+#include \"base/feature_list.h\"\n #include \"base/functional/bind.h\"\n #include \"base/logging.h\"\n #include \"base/no_destructor.h\"\n@@ -56,7 +57,8 @@ std::optional<QuotaSettings> CalculateNo\n   base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,\n                                                 base::BlockingType::MAY_BLOCK);\n \n-  if (is_incognito) {\n+  if (is_incognito &&\n+      !base::FeatureList::IsEnabled(features::kIncreaseIncognitoStorageQuota)) {\n     return CalculateIncognitoDynamicSettings(\n         device_info_helper->AmountOfPhysicalMemory());\n   }\n@@ -117,7 +119,9 @@ std::optional<QuotaSettings> CalculateNo\n \n   QuotaSettings settings;\n \n-  int64_t total = device_info_helper->AmountOfTotalDiskSpace(partition_path);\n+  int64_t total =\n+      is_incognito ? device_info_helper->AmountOfPhysicalMemory()\n+                   : device_info_helper->AmountOfTotalDiskSpace(partition_path);\n   if (total == -1) {\n     LOG(ERROR) << \"Unable to compute QuotaSettings.\";\n     return std::nullopt;\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-reduce-system-info.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -128,4 +128,8 @@\n      \"Minimal Referrers\",\n      \"Removes all cross-origin referrers and strips same-origin referrers down to the origin. Has lower precedence than remove-cross-origin-referrers. ungoogled-chromium flag.\",\n      kOsAll, FEATURE_VALUE_TYPE(network::features::kMinimalReferrers)},\n+    {\"reduced-system-info\",\n+     \"Reduced System Info\",\n+     \"Reduces the amount of system information obatainable through headers and javascript, also causes hardwareConcurrency to respond with two cores. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(blink::features::kReducedSystemInfo)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/components/embedder_support/user_agent_utils.cc\n+++ b/components/embedder_support/user_agent_utils.cc\n@@ -195,6 +195,8 @@ const blink::UserAgentBrandList GetUserA\n // It helps us avoid introducing individual enterprise policy controls for\n // sending unified platform for the user agent string.\n bool ShouldSendUserAgentUnifiedPlatform() {\n+  if (base::FeatureList::IsEnabled(blink::features::kReducedSystemInfo))\n+    return true;\n   return base::FeatureList::IsEnabled(\n       blink::features::kReduceUserAgentMinorVersion);\n }\n@@ -636,6 +638,8 @@ std::string GetPlatformForUAMetadata() {\n }\n \n blink::UserAgentMetadata GetUserAgentMetadata(bool only_low_entropy_ch) {\n+  if (base::FeatureList::IsEnabled(blink::features::kReducedSystemInfo))\n+    only_low_entropy_ch = true;\n   blink::UserAgentMetadata metadata;\n \n   // Low entropy client hints.\n--- a/third_party/blink/common/features.cc\n+++ b/third_party/blink/common/features.cc\n@@ -20,6 +20,7 @@\n namespace blink::features {\n \n BASE_FEATURE(kDisableLinkDrag, \"DisableLinkDrag\", base::FEATURE_DISABLED_BY_DEFAULT);\n+BASE_FEATURE(kReducedSystemInfo, \"ReducedSystemInfo\", base::FEATURE_DISABLED_BY_DEFAULT);\n \n // -----------------------------------------------------------------------------\n // Feature definitions and associated constants (feature params, et cetera)\n--- a/third_party/blink/public/common/features.h\n+++ b/third_party/blink/public/common/features.h\n@@ -21,6 +21,7 @@ namespace blink {\n namespace features {\n \n BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kDisableLinkDrag);\n+BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kReducedSystemInfo);\n \n // -----------------------------------------------------------------------------\n // Feature declarations and associated constants (feature params, et cetera)\n--- a/third_party/blink/renderer/core/execution_context/navigator_base.cc\n+++ b/third_party/blink/renderer/core/execution_context/navigator_base.cc\n@@ -70,6 +70,8 @@ void NavigatorBase::Trace(Visitor* visit\n }\n \n unsigned int NavigatorBase::hardwareConcurrency() const {\n+  if (base::FeatureList::IsEnabled(blink::features::kReducedSystemInfo))\n+    return 2;\n   unsigned int hardware_concurrency =\n       NavigatorConcurrentHardware::hardwareConcurrency();\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-remove-client-hints.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -132,4 +132,8 @@\n      \"Reduced System Info\",\n      \"Reduces the amount of system information obatainable through headers and javascript, also causes hardwareConcurrency to respond with two cores. ungoogled-chromium flag.\",\n      kOsAll, FEATURE_VALUE_TYPE(blink::features::kReducedSystemInfo)},\n+    {\"remove-client-hints\",\n+     \"Remove Client Hints\",\n+     \"Removes client hints (information sent to servers about your system, similar to a user agent). ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(blink::features::kRemoveClientHints)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/content/browser/client_hints/client_hints.cc\n+++ b/content/browser/client_hints/client_hints.cc\n@@ -823,6 +823,8 @@ void UpdateNavigationRequestClientUaHead\n     net::HttpRequestHeaders* headers,\n     const std::optional<GURL>& request_url) {\n   DCHECK(frame_tree_node);\n+  if (base::FeatureList::IsEnabled(blink::features::kRemoveClientHints))\n+    return;\n   if (!ShouldAddClientHints(origin, frame_tree_node, delegate, request_url)) {\n     return;\n   }\n@@ -854,6 +856,8 @@ void AddRequestClientHintsHeaders(\n     FrameTreeNode* frame_tree_node,\n     const network::ParsedPermissionsPolicy& container_policy,\n     FrameTreeNode* ftn_for_devtools_override) {\n+  if (base::FeatureList::IsEnabled(blink::features::kRemoveClientHints))\n+    return;\n   ClientHintsExtendedData data(origin, frame_tree_node, delegate);\n   UpdateIFramePermissionsPolicyWithDelegationSupportForClientHints(\n       data, container_policy);\n--- a/third_party/blink/common/features.cc\n+++ b/third_party/blink/common/features.cc\n@@ -21,6 +21,7 @@ namespace blink::features {\n \n BASE_FEATURE(kDisableLinkDrag, \"DisableLinkDrag\", base::FEATURE_DISABLED_BY_DEFAULT);\n BASE_FEATURE(kReducedSystemInfo, \"ReducedSystemInfo\", base::FEATURE_DISABLED_BY_DEFAULT);\n+BASE_FEATURE(kRemoveClientHints, \"RemoveClientHints\", base::FEATURE_DISABLED_BY_DEFAULT);\n \n // -----------------------------------------------------------------------------\n // Feature definitions and associated constants (feature params, et cetera)\n--- a/third_party/blink/public/common/features.h\n+++ b/third_party/blink/public/common/features.h\n@@ -22,6 +22,7 @@ namespace features {\n \n BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kDisableLinkDrag);\n BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kReducedSystemInfo);\n+BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kRemoveClientHints);\n \n // -----------------------------------------------------------------------------\n // Feature declarations and associated constants (feature params, et cetera)\n--- a/third_party/blink/renderer/core/frame/navigator_ua.cc\n+++ b/third_party/blink/renderer/core/frame/navigator_ua.cc\n@@ -5,6 +5,7 @@\n #include \"third_party/blink/renderer/core/frame/navigator_ua.h\"\n \n #include \"base/compiler_specific.h\"\n+#include \"third_party/blink/public/common/features.h\"\n #include \"third_party/blink/public/common/user_agent/user_agent_metadata.h\"\n #include \"third_party/blink/renderer/core/frame/navigator_ua_data.h\"\n #include \"third_party/blink/renderer/platform/wtf/text/wtf_string.h\"\n@@ -14,6 +15,8 @@ namespace blink {\n NavigatorUAData* NavigatorUA::userAgentData() {\n   NavigatorUAData* ua_data =\n       MakeGarbageCollected<NavigatorUAData>(GetUAExecutionContext());\n+  if (base::FeatureList::IsEnabled(blink::features::kRemoveClientHints))\n+    return ua_data;\n \n   UserAgentMetadata metadata = GetUserAgentMetadata();\n   ua_data->SetBrandVersionList(metadata.brand_version_list);\n--- a/third_party/blink/renderer/core/loader/frame_fetch_context.cc\n+++ b/third_party/blink/renderer/core/loader/frame_fetch_context.cc\n@@ -52,6 +52,7 @@\n #include \"third_party/blink/public/common/associated_interfaces/associated_interface_provider.h\"\n #include \"third_party/blink/public/common/client_hints/client_hints.h\"\n #include \"third_party/blink/public/common/device_memory/approximated_device_memory.h\"\n+#include \"third_party/blink/public/common/features.h\"\n #include \"third_party/blink/public/common/permissions_policy/document_policy_features.h\"\n #include \"third_party/blink/public/common/switches.h\"\n #include \"third_party/blink/public/mojom/fetch/fetch_api_request.mojom-blink.h\"\n@@ -630,6 +631,8 @@ void FrameFetchContext::ModifyRequestFor\n void FrameFetchContext::AddClientHintsIfNecessary(\n     const std::optional<float> resource_width,\n     ResourceRequest& request) {\n+  if (base::FeatureList::IsEnabled(blink::features::kRemoveClientHints))\n+    return;\n   if (GetResourceFetcherProperties().IsDetached()) {\n     return;\n   }\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-scroll-tabs.patch",
    "content": "--- a/chrome/browser/ui/views/frame/browser_root_view.cc\n+++ b/chrome/browser/ui/views/frame/browser_root_view.cc\n@@ -12,6 +12,7 @@\n #include <vector>\n \n #include \"base/check_op.h\"\n+#include \"base/command_line.h\"\n #include \"base/containers/adapters.h\"\n #include \"base/feature_list.h\"\n #include \"base/functional/bind.h\"\n@@ -177,6 +178,18 @@ DragOperation GetDropEffect(const ui::Dr\n   return DragOperation::kMove;\n }\n \n+bool ShouldScrollChangesTab() {\n+  const std::string flag_value =\n+    base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(\"scroll-tabs\");\n+\n+  if (flag_value == \"always\")\n+    return true;\n+  else if (flag_value == \"never\")\n+    return false;\n+\n+  return browser_defaults::kScrollEventChangesTab;\n+}\n+\n }  // namespace\n \n BrowserRootView::DropInfo::DropInfo() = default;\n@@ -189,7 +202,9 @@ BrowserRootView::DropInfo::~DropInfo() {\n \n BrowserRootView::BrowserRootView(BrowserView* browser_view,\n                                  views::Widget* widget)\n-    : views::internal::RootView(widget), browser_view_(browser_view) {}\n+    : views::internal::RootView(widget), browser_view_(browser_view) {\n+  scroll_event_changes_tab_ = ShouldScrollChangesTab();\n+}\n \n BrowserRootView::~BrowserRootView() {\n   // It's possible to destroy the browser while a drop is active.  In this case,\n@@ -331,7 +346,7 @@ bool BrowserRootView::OnMouseWheel(const\n \n   // Scroll-event-changes-tab is incompatible with vertical tabstrip, so\n   // disable it if the latter feature is enabled.\n-  if (browser_defaults::kScrollEventChangesTab &&\n+  if (scroll_event_changes_tab_ &&\n       !browser_view_->ShouldDrawVerticalTabStrip()) {\n     // Switch to the left/right tab if the wheel-scroll happens over the\n     // tabstrip, or the empty space beside the tabstrip.\n--- a/chrome/browser/ui/views/frame/browser_root_view.h\n+++ b/chrome/browser/ui/views/frame/browser_root_view.h\n@@ -158,6 +158,8 @@ class BrowserRootView : public views::in\n   int scroll_remainder_x_ = 0;\n   int scroll_remainder_y_ = 0;\n \n+  bool scroll_event_changes_tab_ = false;\n+\n   std::unique_ptr<DropInfo> drop_info_;\n \n   base::OnceClosure on_filtering_complete_closure_;\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -25,4 +25,13 @@ const FeatureEntry::Choice kShowAvatarBu\n      \"show-avatar-button\",\n      \"never\"}\n };\n+const FeatureEntry::Choice kScrollEventChangesTab[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"Always\",\n+     \"scroll-tabs\",\n+     \"always\"},\n+    {\"Never\",\n+     \"scroll-tabs\",\n+     \"never\"}\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -32,4 +32,8 @@\n      \"Hide crashed bubble\",\n      \"Hides the bubble box with the message \\\"Restore Pages? Chromium didn't shut down correctly.\\\" that shows on startup after the browser did not exit cleanly. ungoogled-chromium flag.\",\n      kOsAll, SINGLE_VALUE_TYPE(\"hide-crashed-bubble\")},\n+    {\"scroll-tabs\",\n+     \"Scroll switches tab\",\n+     \"Switch to the left/right tab if the wheel-scroll happens over the tabstrip, or the empty space beside the tabstrip. ungoogled-chromium flag.\",\n+     kOsDesktop, MULTI_VALUE_TYPE(kScrollEventChangesTab)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-show-avatar-button.patch",
    "content": "--- a/chrome/browser/ui/views/toolbar/toolbar_view.cc\n+++ b/chrome/browser/ui/views/toolbar/toolbar_view.cc\n@@ -447,6 +447,17 @@ void ToolbarView::Init() {\n                                browser_->profile()->IsGuestSession() ||\n                                browser_->profile()->IsRegularProfile();\n #endif\n+\n+  const std::string sab_value = base::CommandLine::ForCurrentProcess()->\n+                                GetSwitchValueASCII(\"show-avatar-button\");\n+  if (sab_value == \"always\")\n+    show_avatar_toolbar_button = true;\n+  else if (sab_value == \"incognito-and-guest\")\n+    show_avatar_toolbar_button = browser_->profile()->IsIncognitoProfile() ||\n+                                 browser_->profile()->IsGuestSession();\n+  else if (sab_value == \"never\")\n+    show_avatar_toolbar_button = false;\n+\n   avatar_->SetVisible(show_avatar_toolbar_button);\n \n #if BUILDFLAG(ENABLE_WEBUI_TAB_STRIP)\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -13,4 +13,16 @@ const FeatureEntry::Choice kExtensionHan\n      \"extension-mime-request-handling\",\n      \"always-prompt-for-install\"},\n };\n+const FeatureEntry::Choice kShowAvatarButtonChoices[] = {\n+    {flags_ui::kGenericExperimentChoiceDefault, \"\", \"\"},\n+    {\"Always\",\n+     \"show-avatar-button\",\n+     \"always\"},\n+    {\"Incognito and Guest\",\n+     \"show-avatar-button\",\n+     \"incognito-and-guest\"},\n+    {\"Never\",\n+     \"show-avatar-button\",\n+     \"never\"}\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -24,4 +24,8 @@\n      \"Force punycode hostnames\",\n      \"Force punycode in hostnames instead of Unicode when displaying Internationalized Domain Names (IDNs). ungoogled-chromium flag.\",\n      kOsAll, SINGLE_VALUE_TYPE(\"force-punycode-hostnames\")},\n+    {\"show-avatar-button\",\n+     \"Show avatar/people/profile button\",\n+     \"Show avatar/people/profile button in the browser toolbar. ungoogled-chromium flag.\",\n+     kOsDesktop, MULTI_VALUE_TYPE(kShowAvatarButtonChoices)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flag-to-spoof-webgl-renderer-info.patch",
    "content": "# Return generic values for WebGLDebugRendererInfo to remove a potential data\n# leak while preventing potential website breakage\n\n--- a/chrome/browser/ungoogled_flag_choices.h\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -79,4 +79,41 @@ const FeatureEntry::Choice kTabHoverCard\n      \"tab-hover-cards\",\n      \"tooltip\"},\n };\n+const FeatureEntry::FeatureParam kSpoofWebGL_Blank[] = {\n+    {blink::features::kSpoofWebGLRenderer, \" \"},\n+    {blink::features::kSpoofWebGLVendor, \" \"},\n+};\n+const FeatureEntry::FeatureParam kSpoofWebGL_Amd[] = {\n+    {blink::features::kSpoofWebGLRenderer, \"Radeon R9 200 Series, or similar\"},\n+    {blink::features::kSpoofWebGLVendor, \"AMD\"},\n+};\n+const FeatureEntry::FeatureParam kSpoofWebGL_Apple[] = {\n+    {blink::features::kSpoofWebGLRenderer, \"Apple GPU\"},\n+    {blink::features::kSpoofWebGLVendor, \"Apple Inc.\"},\n+};\n+const FeatureEntry::FeatureParam kSpoofWebGL_Intel[] = {\n+    {blink::features::kSpoofWebGLRenderer, \"Intel(R) HD Graphics, or similar\"},\n+    {blink::features::kSpoofWebGLVendor, \"Intel\"},\n+};\n+const FeatureEntry::FeatureParam kSpoofWebGL_Mesa[] = {\n+    {blink::features::kSpoofWebGLRenderer, \"llvmpipe\"},\n+    {blink::features::kSpoofWebGLVendor, \"Mesa\"},\n+};\n+const FeatureEntry::FeatureParam kSpoofWebGL_Nvidia[] = {\n+    {blink::features::kSpoofWebGLRenderer, \"NVIDIA GeForce GTX 980, or similar\"},\n+    {blink::features::kSpoofWebGLVendor, \"NVIDIA Corporation\"},\n+};\n+const FeatureEntry::FeatureParam kSpoofWebGL_Qualcomm[] = {\n+    {blink::features::kSpoofWebGLRenderer, \"Adreno (TM) 610\"},\n+    {blink::features::kSpoofWebGLVendor, \"Qualcomm\"},\n+};\n+const FeatureEntry::FeatureVariation kSpoofWebGLChoices[] = {\n+    {\"Blank\", kSpoofWebGL_Blank, nullptr},\n+    {\"AMD Radeon R9 200\", kSpoofWebGL_Amd, nullptr},\n+    {\"Apple\", kSpoofWebGL_Apple, nullptr},\n+    {\"Intel\", kSpoofWebGL_Intel, nullptr},\n+    {\"Mesa LLVMpipe\", kSpoofWebGL_Mesa, nullptr},\n+    {\"NVIDIA GeForce GTX 980\", kSpoofWebGL_Nvidia, nullptr},\n+    {\"Qualcomm Adreno 610\", kSpoofWebGL_Qualcomm, nullptr},\n+};\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -140,4 +140,8 @@\n      \"Enforce Certificate Transparency\",\n      \"Enforce Certificate Transparency for certificates that sites present. This is enabled by default. ungoogled-chromium flag.\",\n      kOsAll, FEATURE_VALUE_TYPE(features::kCertificateTransparencyAskBeforeEnabling)},\n+    {\"spoof-webgl-info\",\n+     \"Spoof WebGL Info\",\n+     \"Return generic values for WebGLDebugRendererInfo to remove a potential data leak while preventing potential website breakage. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_WITH_PARAMS_VALUE_TYPE(blink::features::kSpoofWebGLInfo, kSpoofWebGLChoices, \"SpoofWebGLInfo\")},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/third_party/blink/common/features.cc\n+++ b/third_party/blink/common/features.cc\n@@ -22,6 +22,11 @@ namespace blink::features {\n BASE_FEATURE(kDisableLinkDrag, \"DisableLinkDrag\", base::FEATURE_DISABLED_BY_DEFAULT);\n BASE_FEATURE(kReducedSystemInfo, \"ReducedSystemInfo\", base::FEATURE_DISABLED_BY_DEFAULT);\n BASE_FEATURE(kRemoveClientHints, \"RemoveClientHints\", base::FEATURE_DISABLED_BY_DEFAULT);\n+BASE_FEATURE(kSpoofWebGLInfo, \"SpoofWebGLInfo\", base::FEATURE_DISABLED_BY_DEFAULT);\n+const char kSpoofWebGLRenderer[] = \"renderer\";\n+const char kSpoofWebGLVendor[] = \"vendor\";\n+const base::FeatureParam<std::string> kSpoofWebGLRendererParam{&kSpoofWebGLInfo, kSpoofWebGLRenderer, \" \"};\n+const base::FeatureParam<std::string> kSpoofWebGLVendorParam{&kSpoofWebGLInfo, kSpoofWebGLVendor, \" \"};\n \n // -----------------------------------------------------------------------------\n // Feature definitions and associated constants (feature params, et cetera)\n--- a/third_party/blink/public/common/features.h\n+++ b/third_party/blink/public/common/features.h\n@@ -23,6 +23,11 @@ namespace features {\n BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kDisableLinkDrag);\n BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kReducedSystemInfo);\n BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kRemoveClientHints);\n+BLINK_COMMON_EXPORT BASE_DECLARE_FEATURE(kSpoofWebGLInfo);\n+BLINK_COMMON_EXPORT extern const char kSpoofWebGLRenderer[];\n+BLINK_COMMON_EXPORT extern const char kSpoofWebGLVendor[];\n+BLINK_COMMON_EXPORT extern const base::FeatureParam<std::string> kSpoofWebGLRendererParam;\n+BLINK_COMMON_EXPORT extern const base::FeatureParam<std::string> kSpoofWebGLVendorParam;\n \n // -----------------------------------------------------------------------------\n // Feature declarations and associated constants (feature params, et cetera)\n--- a/third_party/blink/renderer/modules/webgl/webgl_rendering_context_base.cc\n+++ b/third_party/blink/renderer/modules/webgl/webgl_rendering_context_base.cc\n@@ -3977,6 +3977,8 @@ ScriptValue WebGLRenderingContextBase::g\n       return ScriptValue::CreateNull(script_state->GetIsolate());\n     case WebGLDebugRendererInfo::kUnmaskedRendererWebgl:\n       if (ExtensionEnabled(kWebGLDebugRendererInfoName)) {\n+        if (base::FeatureList::IsEnabled(blink::features::kSpoofWebGLInfo))\n+          return WebGLAny(script_state, String(blink::features::kSpoofWebGLRendererParam.Get()));\n         return WebGLAny(script_state,\n                         String(ContextGL()->GetString(GL_RENDERER)));\n       }\n@@ -3986,6 +3988,8 @@ ScriptValue WebGLRenderingContextBase::g\n       return ScriptValue::CreateNull(script_state->GetIsolate());\n     case WebGLDebugRendererInfo::kUnmaskedVendorWebgl:\n       if (ExtensionEnabled(kWebGLDebugRendererInfoName)) {\n+        if (base::FeatureList::IsEnabled(blink::features::kSpoofWebGLInfo))\n+          return WebGLAny(script_state, String(blink::features::kSpoofWebGLVendorParam.Get()));\n         return WebGLAny(script_state,\n                         String(ContextGL()->GetString(GL_VENDOR)));\n       }\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flags-for-existing-switches.patch",
    "content": "--- a/chrome/browser/about_flags.cc\n+++ b/chrome/browser/about_flags.cc\n@@ -4675,10 +4675,12 @@ const FeatureEntry::FeatureVariation\n #include \"chrome/browser/ungoogled_flag_choices.h\"\n #include \"chrome/browser/bromite_flag_choices.h\"\n #include \"chrome/browser/ungoogled_platform_flag_choices.h\"\n+#include \"chrome/browser/existing_switch_flag_choices.h\"\n const FeatureEntry kFeatureEntries[] = {\n #include \"chrome/browser/ungoogled_flag_entries.h\"\n #include \"chrome/browser/bromite_flag_entries.h\"\n #include \"chrome/browser/ungoogled_platform_flag_entries.h\"\n+#include \"chrome/browser/existing_switch_flag_entries.h\"\n // Include generated flags for flag unexpiry; see //docs/flag_expiry.md and\n // //tools/flags/generate_unexpire_flags.py.\n #include \"build/chromeos_buildflags.h\"\n--- /dev/null\n+++ b/chrome/browser/existing_switch_flag_choices.h\n@@ -0,0 +1,19 @@\n+// Copyright (c) 2023 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_EXISTING_SWITCH_FLAG_CHOICES_H_\n+#define CHROME_BROWSER_EXISTING_SWITCH_FLAG_CHOICES_H_\n+const FeatureEntry::Choice kWebRTCIPPolicy[] = {\n+    {\"Disable non proxied udp\", \"\", \"\"},\n+    {\"Default\",\n+     \"webrtc-ip-handling-policy\",\n+     \"default\"},\n+    {\"Default public and private interfaces\",\n+     \"webrtc-ip-handling-policy\",\n+     \"default_public_and_private_interfaces\"},\n+    {\"Default public interface only\",\n+     \"webrtc-ip-handling-policy\",\n+     \"default_public_interface_only\"},\n+};\n+#endif  // CHROME_BROWSER_EXISTING_SWITCH_FLAG_CHOICES_H_\n--- /dev/null\n+++ b/chrome/browser/existing_switch_flag_entries.h\n@@ -0,0 +1,43 @@\n+// Copyright (c) 2023 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_EXISTING_SWITCH_FLAG_ENTRIES_H_\n+#define CHROME_BROWSER_EXISTING_SWITCH_FLAG_ENTRIES_H_\n+    {\"disable-top-sites\",\n+     \"Disable Top Sites\",\n+     \"Disables the top sites and most visited entries on the new tab page. Chromium feature, ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"disable-top-sites\")},\n+    {\"disable-webgl\",\n+     \"Disable WebGL\",\n+     \"Disable all versions of WebGL. Chromium feature, ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"disable-webgl\")},\n+    {\"enable-low-end-device-mode\",\n+     \"Enable low-end device mode\",\n+     \"Force low-end device mode when set. Chromium feature, ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"enable-low-end-device-mode\")},\n+    {\"force-dark-mode\",\n+     \"Force Dark Mode\",\n+     \"Forces dark mode in UI for platforms that support it. Chromium feature, ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"force-dark-mode\")},\n+    {\"incognito\",\n+     \"Start in incognito\",\n+     \"Start in Incognito. Chromium feature, ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"incognito\")},\n+    {\"no-default-browser-check\",\n+     \"No default browser check\",\n+     \"Disables the default browser check. Chromium feature, ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"no-default-browser-check\")},\n+    {\"no-pings\",\n+     \"No Pings\",\n+     \"Don't send hyperlink auditing pings. Chromium feature, ungoogled-chromium flag.\",\n+     kOsAll, SINGLE_VALUE_TYPE(\"no-pings\")},\n+    {\"start-maximized\",\n+     \"Start Maximized\",\n+     \"Starts the browser maximized, regardless of any previous settings. Chromium feature, ungoogled-chromium flag.\",\n+     kOsDesktop, SINGLE_VALUE_TYPE(\"start-maximized\")},\n+    {\"webrtc-ip-handling-policy\",\n+     \"WebRTC IP policy\",\n+     \"Restrict which IP addresses and interfaces WebRTC uses. Chromium feature, ungoogled-chromium flag.\",\n+     kOsAll, MULTI_VALUE_TYPE(kWebRTCIPPolicy)},\n+#endif  // CHROME_BROWSER_EXISTING_SWITCH_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-flags-for-referrer-customization.patch",
    "content": "--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -116,4 +116,16 @@\n      \"Enable themes in Incognito mode\",\n      \"Allows themes to override Google's built-in Incognito theming. ungoogled-chromium flag.\",\n      kOsDesktop, SINGLE_VALUE_TYPE(\"enable-incognito-themes\")},\n+    {\"remove-referrers\",\n+     \"Remove Referrers\",\n+     \"Removes all referrers. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(features::kNoReferrers)},\n+    {\"remove-cross-origin-referrers\",\n+     \"Remove Cross-Origin Referrers\",\n+     \"Removes all cross-origin referrers. Has lower precedence than remove-referrers. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(network::features::kNoCrossOriginReferrers)},\n+    {\"minimal-referrers\",\n+     \"Minimal Referrers\",\n+     \"Removes all cross-origin referrers and strips same-origin referrers down to the origin. Has lower precedence than remove-cross-origin-referrers. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(network::features::kMinimalReferrers)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/content/browser/renderer_host/navigation_request.cc\n+++ b/content/browser/renderer_host/navigation_request.cc\n@@ -175,6 +175,7 @@\n #include \"services/network/public/cpp/permissions_policy/fenced_frame_permissions_policies.h\"\n #include \"services/network/public/cpp/permissions_policy/permissions_policy_declaration.h\"\n #include \"services/network/public/cpp/permissions_policy/permissions_policy_features.h\"\n+#include \"services/network/public/cpp/referrer_sanitizer.h\"\n #include \"services/network/public/cpp/resource_request_body.h\"\n #include \"services/network/public/cpp/supports_loading_mode/supports_loading_mode_parser.h\"\n #include \"services/network/public/cpp/url_loader_completion_status.h\"\n@@ -394,10 +395,10 @@ void AddAdditionalRequestHeaders(\n       net::HttpRequestHeaders::kUserAgent,\n       ComputeUserAgentValue(user_agent_override));\n \n-  if (!render_prefs.enable_referrers) {\n-    *referrer =\n-        blink::mojom::Referrer(GURL(), network::mojom::ReferrerPolicy::kNever);\n-  }\n+  auto sanitized_referrer = referrer_sanitizer::sanitize_referrer(\n+      referrer->url, url, referrer->policy, render_prefs.enable_referrers);\n+  *referrer = blink::mojom::Referrer(std::move(sanitized_referrer.first),\n+                                     std::move(sanitized_referrer.second));\n \n   // Next, set the HTTP Origin if needed.\n   if (NeedsHTTPOrigin(headers, method)) {\n--- a/content/renderer/render_frame_impl.cc\n+++ b/content/renderer/render_frame_impl.cc\n@@ -136,6 +136,7 @@\n #include \"services/network/public/cpp/content_decoding_interceptor.h\"\n #include \"services/network/public/cpp/features.h\"\n #include \"services/network/public/cpp/not_implemented_url_loader_factory.h\"\n+#include \"services/network/public/cpp/referrer_sanitizer.h\"\n #include \"services/network/public/cpp/weak_wrapper_shared_url_loader_factory.h\"\n #include \"services/network/public/mojom/fetch_api.mojom.h\"\n #include \"services/network/public/mojom/restricted_cookie_manager.mojom.h\"\n@@ -4541,10 +4542,13 @@ void RenderFrameImpl::FinalizeRequestInt\n \n   request.SetHasUserGesture(frame_->HasTransientUserActivation());\n \n-  if (!GetWebView()->GetRendererPreferences().enable_referrers) {\n-    request.SetReferrerString(WebString());\n-    request.SetReferrerPolicy(network::mojom::ReferrerPolicy::kNever);\n-  }\n+  auto sanitized_referrer = referrer_sanitizer::sanitize_referrer(\n+      WebStringToGURL(request.ReferrerString()),\n+      WebStringToGURL(request.Url().GetString()), request.GetReferrerPolicy(),\n+      GetWebView()->GetRendererPreferences().enable_referrers);\n+  request.SetReferrerString(\n+      WebString::FromUTF8(sanitized_referrer.first.spec()));\n+  request.SetReferrerPolicy(std::move(sanitized_referrer.second));\n }\n \n void RenderFrameImpl::DidLoadResourceFromMemoryCache(\n--- a/services/network/network_service_network_delegate.cc\n+++ b/services/network/network_service_network_delegate.cc\n@@ -32,6 +32,7 @@\n #include \"services/network/network_service_proxy_delegate.h\"\n #include \"services/network/pending_callback_chain.h\"\n #include \"services/network/public/cpp/features.h\"\n+#include \"services/network/public/cpp/referrer_sanitizer.h\"\n #include \"services/network/url_loader.h\"\n #include \"url/gurl.h\"\n \n@@ -69,9 +70,14 @@ NetworkServiceNetworkDelegate::~NetworkS\n void NetworkServiceNetworkDelegate::MaybeTruncateReferrer(\n     net::URLRequest* const request,\n     const GURL& effective_url) {\n-  if (!enable_referrers_) {\n-    request->SetReferrer(std::string());\n-    request->set_referrer_policy(net::ReferrerPolicy::NO_REFERRER);\n+\n+  auto sanitized_referrer = referrer_sanitizer::sanitize_referrer(\n+      GURL(request->referrer()), effective_url,\n+      request->referrer_policy(), enable_referrers_);\n+  if (sanitized_referrer.first != effective_url.spec() ||\n+      sanitized_referrer.second != request->referrer_policy()) {\n+    request->SetReferrer(sanitized_referrer.first.spec());\n+    request->set_referrer_policy(std::move(sanitized_referrer.second));\n     return;\n   }\n \n--- a/services/network/public/cpp/BUILD.gn\n+++ b/services/network/public/cpp/BUILD.gn\n@@ -126,6 +126,8 @@ component(\"cpp\") {\n     \"parsed_headers.cc\",\n     \"parsed_headers.h\",\n     \"record_ontransfersizeupdate_utils.h\",\n+    \"referrer_sanitizer.cc\",\n+    \"referrer_sanitizer.h\",\n     \"request_destination.cc\",\n     \"request_destination.h\",\n     \"request_mode.cc\",\n--- a/services/network/public/cpp/features.cc\n+++ b/services/network/public/cpp/features.cc\n@@ -15,6 +15,14 @@\n #include \"url/origin.h\"\n \n namespace network::features {\n+BASE_FEATURE(kMinimalReferrers,\n+             \"MinimalReferrers\",\n+             base::FEATURE_DISABLED_BY_DEFAULT);\n+\n+BASE_FEATURE(kNoCrossOriginReferrers,\n+             \"NoCrossOriginReferrers\",\n+             base::FEATURE_DISABLED_BY_DEFAULT);\n+\n \n // Enables the Accept-CH support disabler. If this feature is activated, Chrome\n // ignore Accept-CH response headers for a site that is specified in the\n--- a/services/network/public/cpp/features.h\n+++ b/services/network/public/cpp/features.h\n@@ -17,6 +17,10 @@ class Origin;\n }  // namespace url\n \n namespace network::features {\n+COMPONENT_EXPORT(NETWORK_CPP_FLAGS_AND_SWITCHES) BASE_DECLARE_FEATURE(kMinimalReferrers);\n+\n+COMPONENT_EXPORT(NETWORK_CPP_FLAGS_AND_SWITCHES) BASE_DECLARE_FEATURE(kNoCrossOriginReferrers);\n+\n \n COMPONENT_EXPORT(NETWORK_CPP_FLAGS_AND_SWITCHES)\n BASE_DECLARE_FEATURE(kBlockAcceptClientHints);\n--- /dev/null\n+++ b/services/network/public/cpp/referrer_sanitizer.cc\n@@ -0,0 +1,49 @@\n+// Copyright 2023 The ungoogled-chromium Authors\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#include \"services/network/public/cpp/referrer_sanitizer.h\"\n+\n+#include \"base/feature_list.h\"\n+#include \"services/network/public/cpp/features.h\"\n+#include \"url/origin.h\"\n+\n+namespace referrer_sanitizer {\n+\n+static GURL sanitize_referrer_internal(const GURL& origin,\n+                                       const GURL& destination) {\n+  if ((base::FeatureList::IsEnabled(network::features::kNoCrossOriginReferrers) ||\n+       base::FeatureList::IsEnabled(network::features::kMinimalReferrers)) &&\n+      !url::IsSameOriginWith(origin, destination)) {\n+    return GURL();\n+  } else if (base::FeatureList::IsEnabled(network::features::kMinimalReferrers)) {\n+    return url::Origin::Create(origin).GetURL();\n+  }\n+  return origin;\n+}\n+\n+std::pair<GURL, net::ReferrerPolicy> sanitize_referrer(\n+    const GURL& origin,\n+    const GURL& destination,\n+    const net::ReferrerPolicy& referrer_policy,\n+    bool enable_referrers) {\n+  if (!enable_referrers) {\n+    return {GURL(), net::ReferrerPolicy::NO_REFERRER};\n+  }\n+  return {sanitize_referrer_internal(std::move(origin), std::move(destination)),\n+          referrer_policy};\n+}\n+\n+std::pair<GURL, network::mojom::ReferrerPolicy> sanitize_referrer(\n+    const GURL& origin,\n+    const GURL& destination,\n+    const network::mojom::ReferrerPolicy& referrer_policy,\n+    bool enable_referrers) {\n+  if (!enable_referrers) {\n+    return {GURL(), network::mojom::ReferrerPolicy::kNever};\n+  }\n+  return {sanitize_referrer_internal(std::move(origin), std::move(destination)),\n+          referrer_policy};\n+}\n+\n+}  // namespace referrer_sanitizer\n--- /dev/null\n+++ b/services/network/public/cpp/referrer_sanitizer.h\n@@ -0,0 +1,32 @@\n+// Copyright 2023 The ungoogled-chromium Authors\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef SERVICES_NETWORK_PUBLIC_CPP_REFERRER_SANITIZER_H_\n+#define SERVICES_NETWORK_PUBLIC_CPP_REFERRER_SANITIZER_H_\n+\n+#include <string>\n+#include <utility>\n+#include \"net/url_request/referrer_policy.h\"\n+#include \"services/network/public/mojom/referrer_policy.mojom-shared.h\"\n+#include \"url/gurl.h\"\n+\n+namespace referrer_sanitizer {\n+\n+COMPONENT_EXPORT(NETWORK_CPP)\n+std::pair<GURL, net::ReferrerPolicy> sanitize_referrer(\n+    const GURL& origin,\n+    const GURL& destination,\n+    const net::ReferrerPolicy& referrer_policy,\n+    bool enable_referrers);\n+\n+COMPONENT_EXPORT(NETWORK_CPP)\n+std::pair<GURL, network::mojom::ReferrerPolicy> sanitize_referrer(\n+    const GURL& origin,\n+    const GURL& destination,\n+    const network::mojom::ReferrerPolicy& referrer_policy,\n+    bool enable_referrers);\n+\n+}  // namespace referrer_sanitizer\n+\n+#endif  // SERVICES_NETWORK_PUBLIC_CPP_REFERRER_SANITIZER_H_\n--- a/third_party/blink/renderer/modules/service_worker/web_service_worker_fetch_context_impl.cc\n+++ b/third_party/blink/renderer/modules/service_worker/web_service_worker_fetch_context_impl.cc\n@@ -12,10 +12,12 @@\n #include \"base/task/single_thread_task_runner.h\"\n #include \"mojo/public/cpp/bindings/pending_remote.h\"\n #include \"net/cookies/site_for_cookies.h\"\n+#include \"services/network/public/cpp/referrer_sanitizer.h\"\n #include \"services/network/public/cpp/wrapper_shared_url_loader_factory.h\"\n #include \"services/network/public/mojom/fetch_api.mojom-shared.h\"\n #include \"third_party/blink/public/common/loader/loader_constants.h\"\n #include \"third_party/blink/public/mojom/fetch/fetch_api_request.mojom-blink.h\"\n+#include \"third_party/blink/public/platform/url_conversion.h\"\n #include \"third_party/blink/public/platform/url_loader_throttle_provider.h\"\n #include \"third_party/blink/public/platform/web_url_request_extra_data.h\"\n #include \"third_party/blink/public/platform/websocket_handshake_throttle_provider.h\"\n@@ -155,10 +157,13 @@ void WebServiceWorkerFetchContextImpl::F\n \n   request.SetURLRequestExtraData(std::move(url_request_extra_data));\n \n-  if (!renderer_preferences_.enable_referrers) {\n-    request.SetReferrerString(WebString());\n-    request.SetReferrerPolicy(network::mojom::ReferrerPolicy::kNever);\n-  }\n+  auto sanitized_referrer = referrer_sanitizer::sanitize_referrer(\n+      WebStringToGURL(request.ReferrerString()),\n+      WebStringToGURL(request.Url().GetString()), request.GetReferrerPolicy(),\n+      renderer_preferences_.enable_referrers);\n+  request.SetReferrerString(\n+      WebString::FromUTF8(sanitized_referrer.first.spec()));\n+  request.SetReferrerPolicy(std::move(sanitized_referrer.second));\n }\n \n std::vector<std::unique_ptr<URLLoaderThrottle>>\n--- a/third_party/blink/renderer/platform/loader/fetch/url_loader/dedicated_or_shared_worker_global_scope_context_impl.cc\n+++ b/third_party/blink/renderer/platform/loader/fetch/url_loader/dedicated_or_shared_worker_global_scope_context_impl.cc\n@@ -13,6 +13,7 @@\n #include \"base/task/sequenced_task_runner.h\"\n #include \"base/task/single_thread_task_runner.h\"\n #include \"base/task/thread_pool.h\"\n+#include \"services/network/public/cpp/referrer_sanitizer.h\"\n #include \"services/network/public/cpp/resource_request.h\"\n #include \"services/network/public/cpp/wrapper_shared_url_loader_factory.h\"\n #include \"third_party/blink/public/common/loader/loader_constants.h\"\n@@ -24,6 +25,7 @@\n #include \"third_party/blink/public/platform/modules/service_worker/web_service_worker_provider_context.h\"\n #include \"third_party/blink/public/platform/platform.h\"\n #include \"third_party/blink/public/platform/resource_load_info_notifier_wrapper.h\"\n+#include \"third_party/blink/public/platform/url_conversion.h\"\n #include \"third_party/blink/public/platform/url_loader_throttle_provider.h\"\n #include \"third_party/blink/public/platform/weak_wrapper_resource_load_info_notifier.h\"\n #include \"third_party/blink/public/platform/web_security_origin.h\"\n@@ -381,10 +383,13 @@ void DedicatedOrSharedWorkerGlobalScopeC\n   auto url_request_extra_data = base::MakeRefCounted<WebURLRequestExtraData>();\n   request.SetURLRequestExtraData(std::move(url_request_extra_data));\n \n-  if (!renderer_preferences_.enable_referrers) {\n-    request.SetReferrerString(WebString());\n-    request.SetReferrerPolicy(network::mojom::ReferrerPolicy::kNever);\n-  }\n+  auto sanitized_referrer = referrer_sanitizer::sanitize_referrer(\n+      WebStringToGURL(request.ReferrerString()),\n+      WebStringToGURL(request.Url().GetString()), request.GetReferrerPolicy(),\n+      renderer_preferences_.enable_referrers);\n+  request.SetReferrerString(\n+      WebString::FromUTF8(sanitized_referrer.first.spec()));\n+  request.SetReferrerPolicy(std::move(sanitized_referrer.second));\n }\n \n std::vector<std::unique_ptr<URLLoaderThrottle>>\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-ipv6-probing-option.patch",
    "content": "# Disables IPv6 probing and adds an option to change the IPv6 probing result\n\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -4,4 +4,8 @@\n \n #ifndef CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n #define CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n+    {\"set-ipv6-probe-false\",\n+     \"SetIpv6ProbeFalse\",\n+     \"Forces the result of the browser's IPv6 probing (i.e. IPv6 connectivity test) to be unsuccessful. This causes IPv4 addresses to be prioritized over IPv6 addresses. Without this flag, the probing result is set to be successful, which causes IPv6 to be used over IPv4 when possible. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(net::features::kSetIpv6ProbeFalse)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- a/net/base/features.cc\n+++ b/net/base/features.cc\n@@ -20,6 +20,8 @@\n \n namespace net::features {\n \n+BASE_FEATURE(kSetIpv6ProbeFalse, \"SetIpv6ProbeFalse\", base::FEATURE_DISABLED_BY_DEFAULT);\n+\n BASE_FEATURE(kAlpsForHttp2, base::FEATURE_ENABLED_BY_DEFAULT);\n \n BASE_FEATURE(kAvoidH2Reprioritization, base::FEATURE_DISABLED_BY_DEFAULT);\n--- a/net/base/features.h\n+++ b/net/base/features.h\n@@ -21,6 +21,8 @@\n \n namespace net::features {\n \n+NET_EXPORT BASE_DECLARE_FEATURE(kSetIpv6ProbeFalse);\n+\n // Enables ALPS extension of TLS 1.3 for HTTP/2, see\n // https://vasilvv.github.io/tls-alps/draft-vvv-tls-alps.html and\n // https://vasilvv.github.io/httpbis-alps/draft-vvv-httpbis-alps.html.\n--- a/net/dns/host_resolver_manager.cc\n+++ b/net/dns/host_resolver_manager.cc\n@@ -151,11 +151,6 @@ const size_t kMaxHostLength = 4096;\n // cached.\n const int kIPv6ProbePeriodMs = 1000;\n \n-// Google DNS address used for IPv6 probes.\n-const uint8_t kIPv6ProbeAddress[] = {0x20, 0x01, 0x48, 0x60, 0x48, 0x60,\n-                                     0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\n-                                     0x00, 0x00, 0x88, 0x88};\n-\n // True if |hostname| ends with either \".local\" or \".local.\".\n bool ResemblesMulticastDNSName(std::string_view hostname) {\n   return hostname.ends_with(\".local\") || hostname.ends_with(\".local.\");\n@@ -1499,33 +1494,10 @@ int HostResolverManager::StartIPv6Reacha\n     return OK;\n   }\n \n-  if (probing_ipv6_) {\n-    ipv6_request_callbacks_.push_back(std::move(callback));\n-    return ERR_IO_PENDING;\n-  }\n-  // Cache the result for kIPv6ProbePeriodMs (measured from after\n-  // StartGloballyReachableCheck() completes).\n-  int rv = OK;\n-  bool cached = true;\n-  if (last_ipv6_probe_time_.is_null() ||\n-      (tick_clock_->NowTicks() - last_ipv6_probe_time_).InMilliseconds() >\n-          kIPv6ProbePeriodMs) {\n-    probing_ipv6_ = true;\n-    rv = StartGloballyReachableCheck(\n-        IPAddress(kIPv6ProbeAddress), net_log, client_socket_factory,\n-        base::BindOnce(&HostResolverManager::FinishIPv6ReachabilityCheck,\n-                       weak_ptr_factory_.GetWeakPtr(), std::move(callback)));\n-    if (rv != ERR_IO_PENDING) {\n-      SetLastIPv6ProbeResult(rv == OK);\n-      rv = OK;\n-    }\n-    cached = false;\n-  }\n-  net_log.AddEvent(\n-      NetLogEventType::HOST_RESOLVER_MANAGER_IPV6_REACHABILITY_CHECK, [&] {\n-        return NetLogIPv6AvailableParams(last_ipv6_probe_result_, cached);\n-      });\n-  return rv;\n+  probing_ipv6_ = false;\n+  last_ipv6_probe_result_ = !base::FeatureList::IsEnabled(features::kSetIpv6ProbeFalse);\n+  last_ipv6_probe_time_ = base::TimeTicks();\n+  return OK;\n }\n \n void HostResolverManager::SetLastIPv6ProbeResult(bool last_ipv6_probe_result) {\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-suggestions-url-field.patch",
    "content": "# Add suggestions URL text field to the search engine editing dialog\n# (chrome://settings/searchEngines).\n\n--- a/chrome/browser/resources/settings/search_page/search_engine_edit_dialog.html\n+++ b/chrome/browser/resources/settings/search_page/search_engine_edit_dialog.html\n@@ -35,6 +35,13 @@\n             error-message=\"$i18n{notValid}\"\n             value=\"{{queryUrl_}}\" on-focus=\"validate_\" on-input=\"validate_\">\n         </cr-input>\n+        <cr-input id=\"suggestionsUrl\"\n+            label=\"Suggestions URL with %s in place of query\"\n+            error-message=\"$i18n{notValid}\"\n+            value=\"{{suggestionsUrl_}}\"\n+            on-focus=\"validate_\" on-input=\"validate_\"\n+            disabled$=\"[[model.urlLocked]]\">\n+        </cr-input>\n       </div>\n       <div slot=\"button-container\">\n         <cr-button class=\"cancel-button\" on-click=\"cancel_\" id=\"cancel\"\n--- a/chrome/browser/resources/settings/search_page/search_engine_edit_dialog.ts\n+++ b/chrome/browser/resources/settings/search_page/search_engine_edit_dialog.ts\n@@ -37,6 +37,7 @@ export interface SettingsSearchEngineEdi\n     dialog: CrDialogElement,\n     keyword: CrInputElement,\n     queryUrl: CrInputElement,\n+    suggestionsUrl: CrInputElement,\n     searchEngine: CrInputElement,\n   };\n }\n@@ -65,6 +66,7 @@ export class SettingsSearchEngineEditDia\n       searchEngine_: String,\n       keyword_: String,\n       queryUrl_: String,\n+      suggestionsUrl_: String,\n       dialogTitle_: String,\n       actionButtonText_: String,\n       showPolicySubtitle_: Boolean,\n@@ -80,6 +82,7 @@ export class SettingsSearchEngineEditDia\n   declare private searchEngine_: string;\n   declare private keyword_: string;\n   declare private queryUrl_: string;\n+  declare private suggestionsUrl_: string;\n   declare private dialogTitle_: string;\n   declare private actionButtonText_: string;\n   declare private showPolicySubtitle_: boolean;\n@@ -111,6 +114,7 @@ export class SettingsSearchEngineEditDia\n       this.searchEngine_ = this.model.name;\n       this.keyword_ = this.model.keyword;\n       this.queryUrl_ = this.model.url;\n+      this.suggestionsUrl_ = this.model.suggestionsUrl;\n     } else {\n       this.dialogTitle_ = loadTimeData.getString('searchEnginesAddSiteSearch');\n       this.actionButtonText_ = loadTimeData.getString('add');\n@@ -147,8 +151,12 @@ export class SettingsSearchEngineEditDia\n       }\n     }\n \n-    [this.$.searchEngine, this.$.keyword, this.$.queryUrl].forEach(\n-        element => this.validateElement_(element));\n+    [\n+      this.$.searchEngine,\n+      this.$.keyword,\n+      this.$.queryUrl,\n+      this.$.suggestionsUrl\n+    ].forEach(element => this.validateElement_(element));\n   }\n \n   private cancel_() {\n@@ -157,7 +165,8 @@ export class SettingsSearchEngineEditDia\n \n   private onActionButtonClick_() {\n     this.browserProxy_.searchEngineEditCompleted(\n-        this.searchEngine_, this.keyword_, this.queryUrl_);\n+        this.searchEngine_, this.keyword_, this.queryUrl_,\n+        this.suggestionsUrl_);\n     this.$.dialog.close();\n   }\n \n@@ -195,8 +204,10 @@ export class SettingsSearchEngineEditDia\n       this.$.searchEngine,\n       this.$.keyword,\n       this.$.queryUrl,\n+      this.$.suggestionsUrl,\n     ].every(function(inputElement) {\n-      return !inputElement.invalid && inputElement.value.length > 0;\n+      return !inputElement.invalid && (inputElement.value.length > 0 ||\n+          inputElement.id == 'suggestionsUrl');\n     });\n     this.$.actionButton.disabled = !allValid;\n   }\n--- a/chrome/browser/resources/settings/search_page/search_engines_browser_proxy.ts\n+++ b/chrome/browser/resources/settings/search_page/search_engines_browser_proxy.ts\n@@ -35,6 +35,7 @@ export interface SearchEngine {\n   name: string;\n   shouldConfirmDeletion: boolean;\n   url: string;\n+  suggestionsUrl: string;\n   urlLocked: boolean;\n }\n \n@@ -100,7 +101,7 @@ export interface SearchEnginesBrowserPro\n   searchEngineEditCancelled(): void;\n \n   searchEngineEditCompleted(\n-      searchEngine: string, keyword: string, queryUrl: string): void;\n+      searchEngine: string, keyword: string, queryUrl: string, suggestionsUrl: string): void;\n \n   getSearchEnginesList(): Promise<SearchEnginesInfo>;\n \n@@ -147,11 +148,12 @@ export class SearchEnginesBrowserProxyIm\n   }\n \n   searchEngineEditCompleted(\n-      searchEngine: string, keyword: string, queryUrl: string) {\n+      searchEngine: string, keyword: string, queryUrl: string, suggestionsUrl: string) {\n     chrome.send('searchEngineEditCompleted', [\n       searchEngine,\n       keyword,\n       queryUrl,\n+      suggestionsUrl,\n     ]);\n   }\n \n--- a/chrome/browser/ui/search_engines/edit_search_engine_controller.cc\n+++ b/chrome/browser/ui/search_engines/edit_search_engine_controller.cc\n@@ -69,6 +69,15 @@ bool EditSearchEngineController::IsURLVa\n       .is_valid();\n }\n \n+bool EditSearchEngineController::IsSuggestionsURLValid(\n+    const std::string& suggestions_url_input) const {\n+  std::string suggestions_url = GetFixedUpURL(suggestions_url_input);\n+  if (suggestions_url.empty())\n+    return true;\n+\n+  return IsURLValid(suggestions_url);\n+}\n+\n bool EditSearchEngineController::IsKeywordValid(\n     const std::u16string& keyword_input) const {\n   std::u16string keyword_input_trimmed(\n@@ -93,10 +102,12 @@ bool EditSearchEngineController::IsKeywo\n void EditSearchEngineController::AcceptAddOrEdit(\n     const std::u16string& title_input,\n     const std::u16string& keyword_input,\n-    const std::string& url_input) {\n+    const std::string& url_input,\n+    const std::string& suggestions_url_input) {\n   DCHECK(!keyword_input.empty());\n   std::string url_string = GetFixedUpURL(url_input);\n   DCHECK(!url_string.empty());\n+  std::string suggestions_url = GetFixedUpURL(suggestions_url_input);\n \n   TemplateURLService* template_url_service =\n       TemplateURLServiceFactory::GetForProfile(profile_);\n@@ -124,7 +135,8 @@ void EditSearchEngineController::AcceptA\n   } else {\n     // Adding or modifying an entry via the Delegate.\n     edit_keyword_delegate_->OnEditedKeyword(template_url_, title_input,\n-                                            keyword_input, url_string);\n+                                            keyword_input, url_string,\n+                                            suggestions_url);\n   }\n }\n \n--- a/chrome/browser/ui/search_engines/edit_search_engine_controller.h\n+++ b/chrome/browser/ui/search_engines/edit_search_engine_controller.h\n@@ -22,7 +22,8 @@ class EditSearchEngineControllerDelegate\n   virtual void OnEditedKeyword(TemplateURL* template_url,\n                                const std::u16string& title,\n                                const std::u16string& keyword,\n-                               const std::string& url) = 0;\n+                               const std::string& url,\n+                               const std::string& suggestions_url) = 0;\n \n  protected:\n   virtual ~EditSearchEngineControllerDelegate() = default;\n@@ -53,6 +54,8 @@ class EditSearchEngineController {\n   // character results in a valid url.\n   bool IsURLValid(const std::string& url_input) const;\n \n+  bool IsSuggestionsURLValid(const std::string& suggestions_url_input) const;\n+\n   // Returns true if the value of |keyword_input| represents a valid keyword.\n   // The keyword is valid if it is non-empty and does not conflict with an\n   // existing entry. NOTE: this is just the keyword, not the title and url.\n@@ -61,7 +64,8 @@ class EditSearchEngineController {\n   // Completes the add or edit of a search engine.\n   void AcceptAddOrEdit(const std::u16string& title_input,\n                        const std::u16string& keyword_input,\n-                       const std::string& url_input);\n+                       const std::string& url_input,\n+                       const std::string& suggestions_url_input);\n \n   // Deletes an unused TemplateURL, if its add was cancelled and it's not\n   // already owned by the TemplateURLService.\n--- a/chrome/browser/ui/search_engines/keyword_editor_controller.cc\n+++ b/chrome/browser/ui/search_engines/keyword_editor_controller.cc\n@@ -27,23 +27,27 @@ KeywordEditorController::KeywordEditorCo\n \n KeywordEditorController::~KeywordEditorController() = default;\n \n-int KeywordEditorController::AddTemplateURL(const std::u16string& title,\n-                                            const std::u16string& keyword,\n-                                            const std::string& url) {\n+int KeywordEditorController::AddTemplateURL(\n+    const std::u16string& title,\n+    const std::u16string& keyword,\n+    const std::string& url,\n+    const std::string& suggestions_url) {\n   DCHECK(!url.empty());\n \n   base::RecordAction(UserMetricsAction(\"KeywordEditor_AddKeyword\"));\n \n   const int new_index = table_model_->last_other_engine_index();\n-  table_model_->Add(new_index, title, keyword, url);\n+  table_model_->Add(new_index, title, keyword, url, suggestions_url);\n \n   return new_index;\n }\n \n-void KeywordEditorController::ModifyTemplateURL(TemplateURL* template_url,\n-                                                const std::u16string& title,\n-                                                const std::u16string& keyword,\n-                                                const std::string& url) {\n+void KeywordEditorController::ModifyTemplateURL(\n+    TemplateURL* template_url,\n+    const std::u16string& title,\n+    const std::u16string& keyword,\n+    const std::string& url,\n+    const std::string& suggestions_url) {\n   DCHECK(!url.empty());\n   const std::optional<size_t> index =\n       table_model_->IndexOfTemplateURL(template_url);\n@@ -55,11 +59,13 @@ void KeywordEditorController::ModifyTemp\n \n   // Don't do anything if the entry didn't change.\n   if ((template_url->short_name() == title) &&\n-      (template_url->keyword() == keyword) && (template_url->url() == url)) {\n+      (template_url->keyword() == keyword) &&\n+      (template_url->url() == url) &&\n+      (template_url->suggestions_url() == suggestions_url)) {\n     return;\n   }\n \n-  table_model_->ModifyTemplateURL(index.value(), title, keyword, url);\n+  table_model_->ModifyTemplateURL(index.value(), title, keyword, url, suggestions_url);\n \n   base::RecordAction(UserMetricsAction(\"KeywordEditor_ModifiedKeyword\"));\n }\n--- a/chrome/browser/ui/search_engines/keyword_editor_controller.h\n+++ b/chrome/browser/ui/search_engines/keyword_editor_controller.h\n@@ -33,14 +33,16 @@ class KeywordEditorController {\n   // model.  Returns the index of the added URL.\n   int AddTemplateURL(const std::u16string& title,\n                      const std::u16string& keyword,\n-                     const std::string& url);\n+                     const std::string& url,\n+                     const std::string& suggestions_url);\n \n   // Invoked when the user modifies a TemplateURL. Updates the\n   // TemplateURLService and table model appropriately.\n   void ModifyTemplateURL(TemplateURL* template_url,\n                          const std::u16string& title,\n                          const std::u16string& keyword,\n-                         const std::string& url);\n+                         const std::string& url,\n+                         const std::string& suggestions_url);\n \n   // Return true if the given |url| can be edited.\n   bool CanEdit(const TemplateURL* url) const;\n--- a/chrome/browser/ui/search_engines/template_url_table_model.cc\n+++ b/chrome/browser/ui/search_engines/template_url_table_model.cc\n@@ -210,21 +210,25 @@ void TemplateURLTableModel::Remove(size_\n void TemplateURLTableModel::Add(size_t index,\n                                 const std::u16string& short_name,\n                                 const std::u16string& keyword,\n-                                const std::string& url) {\n+                                const std::string& url,\n+                                const std::string& suggestions_url) {\n   DCHECK(index <= RowCount());\n   DCHECK(!url.empty());\n   TemplateURLData data;\n   data.SetShortName(short_name);\n   data.SetKeyword(keyword);\n   data.SetURL(url);\n+  data.suggestions_url = suggestions_url;\n   data.is_active = TemplateURLData::ActiveStatus::kTrue;\n   template_url_service_->Add(std::make_unique<TemplateURL>(data));\n }\n \n-void TemplateURLTableModel::ModifyTemplateURL(size_t index,\n-                                              const std::u16string& title,\n-                                              const std::u16string& keyword,\n-                                              const std::string& url) {\n+void TemplateURLTableModel::ModifyTemplateURL(\n+    size_t index,\n+    const std::u16string& title,\n+    const std::u16string& keyword,\n+    const std::string& url,\n+    const std::string& suggestions_url) {\n   DCHECK(index <= RowCount());\n   DCHECK(!url.empty());\n   TemplateURL* template_url = GetTemplateURL(index);\n@@ -233,7 +237,8 @@ void TemplateURLTableModel::ModifyTempla\n   DCHECK(template_url_service_->GetDefaultSearchProvider() != template_url ||\n          template_url->SupportsReplacement(\n              template_url_service_->search_terms_data()));\n-  template_url_service_->ResetTemplateURL(template_url, title, keyword, url);\n+  template_url_service_->ResetTemplateURL(template_url, title, keyword, url,\n+                                          suggestions_url);\n }\n \n TemplateURL* TemplateURLTableModel::GetTemplateURL(size_t index) {\n--- a/chrome/browser/ui/search_engines/template_url_table_model.h\n+++ b/chrome/browser/ui/search_engines/template_url_table_model.h\n@@ -85,13 +85,15 @@ class TemplateURLTableModel : public ui:\n   void Add(size_t index,\n            const std::u16string& short_name,\n            const std::u16string& keyword,\n-           const std::string& url);\n+           const std::string& url,\n+           const std::string& suggestions_url);\n \n   // Update the entry at the specified index.\n   void ModifyTemplateURL(size_t index,\n                          const std::u16string& title,\n                          const std::u16string& keyword,\n-                         const std::string& url);\n+                         const std::string& url,\n+                         const std::string& suggestions_url);\n \n   // Reloads the icon at the specified index.\n   void ReloadIcon(size_t index);\n--- a/chrome/browser/ui/webui/settings/search_engines_handler.cc\n+++ b/chrome/browser/ui/webui/settings/search_engines_handler.cc\n@@ -52,6 +52,7 @@ namespace {\n const char kSearchEngineField[] = \"searchEngine\";\n const char kKeywordField[] = \"keyword\";\n const char kQueryUrlField[] = \"queryUrl\";\n+const char kSuggestionsUrlField[] = \"suggestionsUrl\";\n \n // Dummy number used for indicating that a new search engine is added.\n const int kNewSearchEngineIndex = -1;\n@@ -258,6 +259,8 @@ base::DictValue SearchEnginesHandler::Cr\n   Profile* profile = Profile::FromWebUI(web_ui());\n   dict.Set(\"url\",\n            template_url->url_ref().DisplayURL(UIThreadSearchTermsData()));\n+  dict.Set(\"suggestionsUrl\", template_url->suggestions_url_ref().DisplayURL(\n+           UIThreadSearchTermsData()));\n   dict.Set(\"urlLocked\",\n            ((template_url->prepopulate_id() > 0) ||\n             (template_url->starter_pack_id() !=\n@@ -427,12 +430,14 @@ void SearchEnginesHandler::HandleSearchE\n void SearchEnginesHandler::OnEditedKeyword(TemplateURL* template_url,\n                                            const std::u16string& title,\n                                            const std::u16string& keyword,\n-                                           const std::string& url) {\n+                                           const std::string& url,\n+                                           const std::string& suggestions_url) {\n   DCHECK(!url.empty());\n   if (template_url) {\n-    list_controller_.ModifyTemplateURL(template_url, title, keyword, url);\n+    list_controller_.ModifyTemplateURL(template_url, title, keyword, url,\n+                                       suggestions_url);\n   } else {\n-    list_controller_.AddTemplateURL(title, keyword, url);\n+    list_controller_.AddTemplateURL(title, keyword, url, suggestions_url);\n   }\n \n   edit_controller_.reset();\n@@ -462,6 +467,8 @@ bool SearchEnginesHandler::CheckFieldVal\n     is_valid = edit_controller_->IsKeywordValid(base::UTF8ToUTF16(field_value));\n   } else if (field_name.compare(kQueryUrlField) == 0) {\n     is_valid = edit_controller_->IsURLValid(field_value);\n+  } else if (field_name.compare(kSuggestionsUrlField) == 0) {\n+    is_valid = edit_controller_->IsSuggestionsURLValid(field_value);\n   } else {\n     NOTREACHED();\n   }\n@@ -484,18 +491,21 @@ void SearchEnginesHandler::HandleSearchE\n     return;\n   }\n \n-  CHECK_EQ(3U, args.size());\n+  CHECK_EQ(4U, args.size());\n   const std::string& search_engine = args[0].GetString();\n   const std::string& keyword = args[1].GetString();\n   const std::string& query_url = args[2].GetString();\n+  const std::string& suggestions_url = args[3].GetString();\n \n   // Recheck validity. It's possible to get here with invalid input if e.g. the\n   // user calls the right JS functions directly from the web inspector.\n   if (CheckFieldValidity(kSearchEngineField, search_engine) &&\n       CheckFieldValidity(kKeywordField, keyword) &&\n-      CheckFieldValidity(kQueryUrlField, query_url)) {\n+      CheckFieldValidity(kQueryUrlField, query_url) &&\n+      CheckFieldValidity(kSuggestionsUrlField, suggestions_url)) {\n     edit_controller_->AcceptAddOrEdit(base::UTF8ToUTF16(search_engine),\n-                                      base::UTF8ToUTF16(keyword), query_url);\n+                                      base::UTF8ToUTF16(keyword),\n+                                      query_url, suggestions_url);\n   }\n }\n \n--- a/chrome/browser/ui/webui/settings/search_engines_handler.h\n+++ b/chrome/browser/ui/webui/settings/search_engines_handler.h\n@@ -41,7 +41,8 @@ class SearchEnginesHandler : public Sett\n   void OnEditedKeyword(TemplateURL* template_url,\n                        const std::u16string& title,\n                        const std::u16string& keyword,\n-                       const std::string& url) override;\n+                       const std::string& url,\n+                       const std::string& suggestions_url) override;\n \n   // SettingsPageUIHandler implementation.\n   void RegisterMessages() override;\n@@ -80,8 +81,8 @@ class SearchEnginesHandler : public Sett\n   // to WebUI. Called from WebUI.\n   void HandleValidateSearchEngineInput(const base::ListValue& args);\n \n-  // Checks whether the given user input field (searchEngine, keyword, queryUrl)\n-  // is populated with a valid value.\n+  // Checks whether the given user input field (searchEngine, keyword, queryUrl,\n+  // suggestionsUrl) is populated with a valid value.\n   bool CheckFieldValidity(const std::string& field_name,\n                           const std::string& field_value);\n \n--- a/components/search_engines/template_url_service.cc\n+++ b/components/search_engines/template_url_service.cc\n@@ -1038,7 +1038,8 @@ void TemplateURLService::IncrementUsageC\n void TemplateURLService::ResetTemplateURL(TemplateURL* url,\n                                           const std::u16string& title,\n                                           const std::u16string& keyword,\n-                                          const std::string& search_url) {\n+                                          const std::string& search_url,\n+                                          const std::string& suggestions_url) {\n   DCHECK(!IsCreatedByExtension(*url));\n   DCHECK(!keyword.empty());\n   DCHECK(!search_url.empty());\n@@ -1062,6 +1063,7 @@ void TemplateURLService::ResetTemplateUR\n   data.last_modified = clock_->Now();\n   data.is_active = TemplateURLData::ActiveStatus::kTrue;\n   data.policy_origin = TemplateURLData::PolicyOrigin::kNoPolicy;\n+  data.suggestions_url = suggestions_url;\n \n   Update(url, base::FeatureList::IsEnabled(\n                   syncer::kSeparateLocalAndAccountSearchEngines)\n--- a/components/search_engines/template_url_service.h\n+++ b/components/search_engines/template_url_service.h\n@@ -347,7 +347,8 @@ class TemplateURLService final : public\n   void ResetTemplateURL(TemplateURL* url,\n                         const std::u16string& title,\n                         const std::u16string& keyword,\n-                        const std::string& search_url);\n+                        const std::string& search_url,\n+                        const std::string& suggestions_url);\n \n   // Sets the `is_active` field of the specified TemplateURL to `kTrue` or\n   // `kFalse`. Called when a user explicitly activates/deactivates the search\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/add-ungoogled-flag-headers.patch",
    "content": "--- a/chrome/browser/about_flags.cc\n+++ b/chrome/browser/about_flags.cc\n@@ -4671,7 +4671,13 @@ const FeatureEntry::FeatureVariation\n // calculate and verify checksum.\n //\n // When adding a new choice, add it to the end of the list.\n+#include \"chrome/browser/ungoogled_flag_choices.h\"\n+#include \"chrome/browser/bromite_flag_choices.h\"\n+#include \"chrome/browser/ungoogled_platform_flag_choices.h\"\n const FeatureEntry kFeatureEntries[] = {\n+#include \"chrome/browser/ungoogled_flag_entries.h\"\n+#include \"chrome/browser/bromite_flag_entries.h\"\n+#include \"chrome/browser/ungoogled_platform_flag_entries.h\"\n // Include generated flags for flag unexpiry; see //docs/flag_expiry.md and\n // //tools/flags/generate_unexpire_flags.py.\n #include \"build/chromeos_buildflags.h\"\n--- /dev/null\n+++ b/chrome/browser/bromite_flag_choices.h\n@@ -0,0 +1,7 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_BROMITE_FLAG_CHOICES_H_\n+#define CHROME_BROWSER_BROMITE_FLAG_CHOICES_H_\n+#endif  // CHROME_BROWSER_BROMITE_FLAG_CHOICES_H_\n--- /dev/null\n+++ b/chrome/browser/bromite_flag_entries.h\n@@ -0,0 +1,7 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n+#define CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n+#endif  // CHROME_BROWSER_BROMITE_FLAG_ENTRIES_H_\n--- /dev/null\n+++ b/chrome/browser/ungoogled_flag_choices.h\n@@ -0,0 +1,7 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n+#define CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n+#endif  // CHROME_BROWSER_UNGOOGLED_FLAG_CHOICES_H_\n--- /dev/null\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -0,0 +1,7 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n+#define CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n+#endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n--- /dev/null\n+++ b/chrome/browser/ungoogled_platform_flag_choices.h\n@@ -0,0 +1,7 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_UNGOOGLED_PLATFORM_FLAG_CHOICES_H_\n+#define CHROME_BROWSER_UNGOOGLED_PLATFORM_FLAG_CHOICES_H_\n+#endif  // CHROME_BROWSER_UNGOOGLED_PLATFORM_FLAG_CHOICES_H_\n--- /dev/null\n+++ b/chrome/browser/ungoogled_platform_flag_entries.h\n@@ -0,0 +1,7 @@\n+// Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style license that can be\n+// found in the LICENSE file.\n+\n+#ifndef CHROME_BROWSER_UNGOOGLED_PLATFORM_FLAG_ENTRIES_H_\n+#define CHROME_BROWSER_UNGOOGLED_PLATFORM_FLAG_ENTRIES_H_\n+#endif  // CHROME_BROWSER_UNGOOGLED_PLATFORM_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/default-webrtc-ip-handling-policy.patch",
    "content": "--- a/chrome/browser/ui/browser_ui_prefs.cc\n+++ b/chrome/browser/ui/browser_ui_prefs.cc\n@@ -142,7 +142,7 @@ void RegisterBrowserUserPrefs(user_prefs\n                                 false);\n #endif\n   registry->RegisterStringPref(prefs::kWebRTCIPHandlingPolicy,\n-                               blink::kWebRTCIPHandlingDefault);\n+                               blink::kWebRTCIPHandlingDisableNonProxiedUdp);\n   registry->RegisterListPref(prefs::kWebRTCIPHandlingUrl, base::ListValue());\n   registry->RegisterBooleanPref(prefs::kWebRTCPostQuantumKeyAgreement, false);\n   registry->RegisterStringPref(prefs::kWebRTCUDPPortRange, std::string());\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/disable-ai-search-shortcuts.patch",
    "content": "--- a/chrome/browser/ui/search_engines/template_url_table_model.cc\n+++ b/chrome/browser/ui/search_engines/template_url_table_model.cc\n@@ -116,22 +116,10 @@ void TemplateURLTableModel::Reload() {\n       extension_entries;\n   // Keywords that can be made the default first.\n   for (TemplateURL* template_url : urls) {\n-    // Skip @gemini if feature disabled.\n-    if (template_url->starter_pack_id() ==\n-            template_url_starter_pack_data::StarterPackId::kGemini &&\n-        !OmniboxFieldTrial::IsStarterPackExpansionEnabled()) {\n-      continue;\n-    }\n-    // Skip @page if feature disabled.\n-    if (template_url->starter_pack_id() ==\n-            template_url_starter_pack_data::StarterPackId::kPage &&\n-        !omnibox_feature_configs::ContextualSearch::Get().starter_pack_page) {\n-      continue;\n-    }\n-    // Skip @aimode if feature disabled.\n-    if (template_url->starter_pack_id() ==\n-            template_url_starter_pack_data::StarterPackId::kAiMode &&\n-        !ai_mode_enabled_) {\n+    // Disable all Google AI starter pack options\n+    if (template_url->starter_pack_id() == template_url_starter_pack_data::StarterPackId::kGemini ||\n+        template_url->starter_pack_id() == template_url_starter_pack_data::StarterPackId::kAiMode ||\n+        template_url->starter_pack_id() == template_url_starter_pack_data::StarterPackId::kPage) {\n       continue;\n     }\n \n--- a/components/omnibox/browser/featured_search_provider.cc\n+++ b/components/omnibox/browser/featured_search_provider.cc\n@@ -300,23 +300,10 @@ void FeaturedSearchProvider::AddFeatured\n     if (turl->starter_pack_id() !=\n             template_url_starter_pack_data::StarterPackId::kNone &&\n         turl->is_active() == TemplateURLData::ActiveStatus::kTrue) {\n-      // Skip @gemini if feature disabled.\n-      if (turl->starter_pack_id() ==\n-              template_url_starter_pack_data::StarterPackId::kGemini &&\n-          !OmniboxFieldTrial::IsStarterPackExpansionEnabled()) {\n-        continue;\n-      }\n-      // Skip @page if feature disabled.\n-      if (turl->starter_pack_id() ==\n-              template_url_starter_pack_data::StarterPackId::kPage &&\n-          !omnibox_feature_configs::ContextualSearch::Get().starter_pack_page) {\n-        continue;\n-      }\n-      // Skip @aimode if feature disabled.\n-      if (turl->starter_pack_id() ==\n-              template_url_starter_pack_data::StarterPackId::kAiMode &&\n-          !OmniboxFieldTrial::IsAimStarterPackEnabled(\n-              client_->GetAimEligibilityService())) {\n+      // Disable all Google AI starter pack options\n+      if (turl->starter_pack_id() == template_url_starter_pack_data::StarterPackId::kGemini ||\n+          turl->starter_pack_id() == template_url_starter_pack_data::StarterPackId::kAiMode ||\n+          turl->starter_pack_id() == template_url_starter_pack_data::StarterPackId::kPage) {\n         continue;\n       }\n       // The history starter pack engine is disabled in incognito mode.\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/disable-chromelabs.patch",
    "content": "--- a/chrome/browser/ui/toolbar/chrome_labs/chrome_labs_utils.cc\n+++ b/chrome/browser/ui/toolbar/chrome_labs/chrome_labs_utils.cc\n@@ -139,35 +139,6 @@ bool AreNewChromeLabsExperimentsAvailabl\n }\n \n bool IsChromeLabsEnabled() {\n-  // Always early out on the stable channel regardless of other conditions.\n-  if (chrome::GetChannel() == version_info::Channel::STABLE) {\n-    return false;\n-  }\n-  if (base::CommandLine::ForCurrentProcess()->HasSwitch(\n-          variations::switches::kEnableBenchmarking)) {\n-    return true;\n-  }\n-  // Could be null in unit tests.\n-  if (!g_browser_process->local_state()) {\n-    return false;\n-  }\n-  if (g_browser_process->local_state()->GetInteger(\n-          chrome_labs_prefs::kChromeLabsActivationThreshold) ==\n-      chrome_labs_prefs::kChromeLabsActivationThresholdDefaultValue) {\n-    g_browser_process->local_state()->SetInteger(\n-        chrome_labs_prefs::kChromeLabsActivationThreshold,\n-        base::RandIntInclusive(1, 100));\n-  }\n-\n-  // The percentage of users that should see the feature.\n-  const int kChromeLabsActivationPercentage = 99;\n-\n-  if (force_activation_for_testing ||\n-      g_browser_process->local_state()->GetInteger(\n-          chrome_labs_prefs::kChromeLabsActivationThreshold) <=\n-          kChromeLabsActivationPercentage) {\n-    return true;\n-  }\n   return false;\n }\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/disable-dial-repeating-discovery.patch",
    "content": "# Disables the dial registry's repeating discovery timer\n# This caused unnecessary SSDP network spam\n\n--- a/chrome/browser/media/router/discovery/dial/dial_registry.cc\n+++ b/chrome/browser/media/router/discovery/dial/dial_registry.cc\n@@ -160,10 +160,6 @@ void DialRegistry::StartPeriodicDiscover\n   }\n \n   dial_ = CreateDialService();\n-  DoDiscovery();\n-  repeating_timer_ = std::make_unique<base::RepeatingTimer>();\n-  repeating_timer_->Start(FROM_HERE, refresh_interval_delta_, this,\n-                          &DialRegistry::DoDiscovery);\n   // Always send the current device list with the next discovery request.  This\n   // may not be necessary, but is done to match previous behavior.\n   ++registry_generation_;\n@@ -181,8 +177,6 @@ void DialRegistry::StopPeriodicDiscovery\n     return;\n   }\n \n-  repeating_timer_->Stop();\n-  repeating_timer_.reset();\n   ClearDialService();\n }\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/disable-download-quarantine.patch",
    "content": "# Disables file download quarantining\n\n--- a/components/download/internal/common/base_file.cc\n+++ b/components/download/internal/common/base_file.cc\n@@ -26,7 +26,6 @@\n #include \"components/download/public/common/download_interrupt_reasons_utils.h\"\n #include \"components/download/public/common/download_item.h\"\n #include \"components/download/public/common/download_stats.h\"\n-#include \"components/services/quarantine/quarantine.h\"\n #include \"crypto/hash.h\"\n #include \"crypto/secure_hash.h\"\n \n@@ -537,94 +536,10 @@ DownloadInterruptReason BaseFile::Publis\n }\n #endif  // BUILDFLAG(IS_ANDROID)\n \n-namespace {\n-\n-DownloadInterruptReason QuarantineFileResultToReason(\n-    quarantine::mojom::QuarantineFileResult result) {\n-  switch (result) {\n-    case quarantine::mojom::QuarantineFileResult::OK:\n-      return DOWNLOAD_INTERRUPT_REASON_NONE;\n-    case quarantine::mojom::QuarantineFileResult::VIRUS_INFECTED:\n-      return DOWNLOAD_INTERRUPT_REASON_FILE_VIRUS_INFECTED;\n-    case quarantine::mojom::QuarantineFileResult::SECURITY_CHECK_FAILED:\n-      return DOWNLOAD_INTERRUPT_REASON_FILE_SECURITY_CHECK_FAILED;\n-    case quarantine::mojom::QuarantineFileResult::BLOCKED_BY_POLICY:\n-      return DOWNLOAD_INTERRUPT_REASON_FILE_BLOCKED;\n-    case quarantine::mojom::QuarantineFileResult::ACCESS_DENIED:\n-      return DOWNLOAD_INTERRUPT_REASON_FILE_ACCESS_DENIED;\n-\n-    case quarantine::mojom::QuarantineFileResult::FILE_MISSING:\n-      // Don't have a good interrupt reason here. This return code means that\n-      // the file at |full_path_| went missing before QuarantineFile got to\n-      // look at it. Not expected to happen, but we've seen instances where a\n-      // file goes missing immediately after BaseFile closes the handle.\n-      //\n-      // Intentionally using a different error message than\n-      // SECURITY_CHECK_FAILED in order to distinguish the two.\n-      return DOWNLOAD_INTERRUPT_REASON_FILE_FAILED;\n-\n-    case quarantine::mojom::QuarantineFileResult::ANNOTATION_FAILED:\n-      // This means that the mark-of-the-web couldn't be applied. The file is\n-      // already on the file system under its final target name.\n-      //\n-      // Causes of failed annotations typically aren't transient. E.g. the\n-      // target file system may not support extended attributes or alternate\n-      // streams. We are going to allow these downloads to progress on the\n-      // assumption that failures to apply MOTW can't reliably be introduced\n-      // remotely.\n-      return DOWNLOAD_INTERRUPT_REASON_NONE;\n-  }\n-  return DOWNLOAD_INTERRUPT_REASON_FILE_FAILED;\n-}\n-\n-}  // namespace\n-\n // static\n GURL BaseFile::GetEffectiveAuthorityURL(const GURL& source_url,\n                                         const GURL& referrer_url) {\n-  if (source_url.is_valid()) {\n-    // http{,s} has an authority and are supported.\n-    if (source_url.SchemeIsHTTPOrHTTPS())\n-      return source_url;\n-\n-    // If the download source is file:// ideally we should copy the MOTW from\n-    // the original file, but given that Chrome/Chromium places strict\n-    // restrictions on which schemes can reference file:// URLs, this code is\n-    // going to assume that at this point it's okay to treat this download as\n-    // being from the local system.\n-    if (source_url.SchemeIsFile())\n       return source_url;\n-\n-    // ftp:// has an authority.\n-    if (source_url.SchemeIs(url::kFtpScheme))\n-      return source_url;\n-\n-    if (source_url.SchemeIs(url::kBlobScheme))\n-      return url::Origin::Create(source_url).GetURL();\n-  }\n-\n-  if (referrer_url.is_valid() && referrer_url.SchemeIsHTTPOrHTTPS())\n-    return referrer_url;\n-\n-  return GURL();\n-}\n-\n-void BaseFile::OnFileQuarantined(\n-    quarantine::mojom::QuarantineFileResult result) {\n-  DCHECK(on_annotation_done_callback_);\n-  quarantine_service_.reset();\n-  std::move(on_annotation_done_callback_)\n-      .Run(QuarantineFileResultToReason(result));\n-}\n-\n-void BaseFile::OnQuarantineServiceError(const GURL& source_url,\n-                                        const GURL& referrer_url) {\n-#if BUILDFLAG(IS_WIN)\n-  OnFileQuarantined(quarantine::SetInternetZoneIdentifierDirectly(\n-      full_path_, source_url, referrer_url));\n-#else   // !BUILDFLAG(IS_WIN)\n-  NOTREACHED() << \"In-process quarantine service should not have failed.\";\n-#endif  // !BUILDFLAG(IS_WIN)\n }\n \n void BaseFile::AnnotateWithSourceInformation(\n@@ -634,32 +549,8 @@ void BaseFile::AnnotateWithSourceInforma\n     const std::optional<url::Origin>& request_initiator,\n     mojo::PendingRemote<quarantine::mojom::Quarantine> remote_quarantine,\n     OnAnnotationDoneCallback on_annotation_done_callback) {\n-  GURL authority_url = GetEffectiveAuthorityURL(source_url, referrer_url);\n-  if (!remote_quarantine) {\n-#if BUILDFLAG(IS_WIN)\n-    quarantine::mojom::QuarantineFileResult result =\n-        quarantine::SetInternetZoneIdentifierDirectly(full_path_, authority_url,\n-                                                      referrer_url);\n-#else\n-    quarantine::mojom::QuarantineFileResult result =\n-        quarantine::mojom::QuarantineFileResult::ANNOTATION_FAILED;\n-#endif\n-    std::move(on_annotation_done_callback)\n-        .Run(QuarantineFileResultToReason(result));\n-  } else {\n-    quarantine_service_.Bind(std::move(remote_quarantine));\n-\n-    on_annotation_done_callback_ = std::move(on_annotation_done_callback);\n-\n-    quarantine_service_.set_disconnect_handler(base::BindOnce(\n-        &BaseFile::OnQuarantineServiceError, weak_factory_.GetWeakPtr(),\n-        authority_url, referrer_url));\n-\n-    quarantine_service_->QuarantineFile(\n-        full_path_, authority_url, referrer_url, request_initiator, client_guid,\n-        base::BindOnce(&BaseFile::OnFileQuarantined,\n-                       weak_factory_.GetWeakPtr()));\n-  }\n+  std::move(on_annotation_done_callback)\n+      .Run(DOWNLOAD_INTERRUPT_REASON_NONE);\n }\n \n }  // namespace download\n--- a/content/browser/BUILD.gn\n+++ b/content/browser/BUILD.gn\n@@ -138,7 +138,6 @@ source_set(\"browser\") {\n     \"//components/power_monitor\",\n     \"//components/schema_org/common:mojom\",\n     \"//components/services/filesystem:lib\",\n-    \"//components/services/quarantine\",\n     \"//components/services/storage\",\n     \"//components/services/storage:filesystem_proxy_factory\",\n     \"//components/services/storage/dom_storage/leveldb:local_storage_proto\",\n--- a/content/browser/file_system_access/file_system_access_safe_move_helper.cc\n+++ b/content/browser/file_system_access/file_system_access_safe_move_helper.cc\n@@ -14,7 +14,6 @@\n #include \"base/task/thread_pool.h\"\n #include \"base/thread_annotations.h\"\n #include \"build/build_config.h\"\n-#include \"components/services/quarantine/quarantine.h\"\n #include \"content/browser/file_system_access/features.h\"\n #include \"content/browser/file_system_access/file_system_access_error.h\"\n #include \"content/public/browser/content_browser_client.h\"\n@@ -231,22 +230,9 @@ void FileSystemAccessSafeMoveHelper::Did\n   // not exist anymore. In case of error, the source file URL will point to a\n   // valid filesystem location.\n   base::OnceCallback<void(base::File::Error)> result_callback;\n-  if (RequireQuarantine()) {\n-    GURL referrer_url = manager_->is_off_the_record() ? GURL() : context_.url;\n-    mojo::Remote<quarantine::mojom::Quarantine> quarantine_remote;\n-    if (quarantine_connection_callback_) {\n-      quarantine_connection_callback_.Run(\n-          quarantine_remote.BindNewPipeAndPassReceiver());\n-    }\n-    result_callback =\n-        base::BindOnce(&FileSystemAccessSafeMoveHelper::DidFileDoQuarantine,\n-                       weak_factory_.GetWeakPtr(), dest_url(), referrer_url,\n-                       std::move(quarantine_remote));\n-  } else {\n     result_callback =\n         base::BindOnce(&FileSystemAccessSafeMoveHelper::DidFileSkipQuarantine,\n                        weak_factory_.GetWeakPtr());\n-  }\n   manager_->DoFileSystemOperation(\n       FROM_HERE, &storage::FileSystemOperationRunner::Move,\n       std::move(result_callback), source_url(), dest_url(), options_,\n@@ -263,7 +249,6 @@ void FileSystemAccessSafeMoveHelper::Did\n void FileSystemAccessSafeMoveHelper::DidFileDoQuarantine(\n     const storage::FileSystemURL& target_url,\n     const GURL& referrer_url,\n-    mojo::Remote<quarantine::mojom::Quarantine> quarantine_remote,\n     base::File::Error result) {\n   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);\n \n@@ -294,40 +279,9 @@ void FileSystemAccessSafeMoveHelper::Did\n       referrer_url.is_valid() && referrer_url.SchemeIsHTTPOrHTTPS()\n           ? referrer_url\n           : GURL();\n-\n-  if (quarantine_remote) {\n-    quarantine::mojom::Quarantine* raw_quarantine = quarantine_remote.get();\n-    raw_quarantine->QuarantineFile(\n-        target_url.path(), authority_url, referrer_url,\n-        // TODO(crbug.com/351165321): Consider propagating request_initiator\n-        // information here.\n-        /*request_initiator=*/std::nullopt,\n-        GetContentClient()\n-            ->browser()\n-            ->GetApplicationClientGUIDForQuarantineCheck(),\n-        mojo::WrapCallbackWithDefaultInvokeIfNotRun(\n-            base::BindOnce(&FileSystemAccessSafeMoveHelper::DidAnnotateFile,\n-                           weak_factory_.GetWeakPtr(),\n-                           std::move(quarantine_remote)),\n-            quarantine::mojom::QuarantineFileResult::ANNOTATION_FAILED));\n-  } else {\n-#if BUILDFLAG(IS_WIN)\n-    base::ThreadPool::PostTaskAndReplyWithResult(\n-        FROM_HERE, {base::MayBlock()},\n-        base::BindOnce(&quarantine::SetInternetZoneIdentifierDirectly,\n-                       target_url.path(), authority_url, referrer_url),\n-        base::BindOnce(&FileSystemAccessSafeMoveHelper::DidAnnotateFile,\n-                       weak_factory_.GetWeakPtr(),\n-                       std::move(quarantine_remote)));\n-#else\n-    DidAnnotateFile(std::move(quarantine_remote),\n-                    quarantine::mojom::QuarantineFileResult::ANNOTATION_FAILED);\n-#endif\n-  }\n }\n \n void FileSystemAccessSafeMoveHelper::DidAnnotateFile(\n-    mojo::Remote<quarantine::mojom::Quarantine> quarantine_remote,\n     quarantine::mojom::QuarantineFileResult result) {\n   DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_);\n \n--- a/content/browser/file_system_access/file_system_access_safe_move_helper.h\n+++ b/content/browser/file_system_access/file_system_access_safe_move_helper.h\n@@ -66,10 +66,8 @@ class CONTENT_EXPORT FileSystemAccessSaf\n   void DidFileDoQuarantine(\n       const storage::FileSystemURL& target_url,\n       const GURL& referrer_url,\n-      mojo::Remote<quarantine::mojom::Quarantine> quarantine_remote,\n       base::File::Error result);\n   void DidAnnotateFile(\n-      mojo::Remote<quarantine::mojom::Quarantine> quarantine_remote,\n       quarantine::mojom::QuarantineFileResult result);\n \n   void ComputeHashForSourceFile(HashCallback callback);\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/disable-fedcm-by-default.patch",
    "content": "# Disable Federated Credential Management (FedCM) by default\n\n--- a/content/public/common/content_features.cc\n+++ b/content/public/common/content_features.cc\n@@ -385,7 +385,7 @@ BASE_FEATURE(kEnsureExistingRendererAliv\n // by the flag in RuntimeEnabledFeatures on the blink side. See also\n // the use of kSetOnlyIfOverridden in content/child/runtime_features.cc.\n // We enable it here by default to support use in origin trials.\n-BASE_FEATURE(kFedCm, base::FEATURE_ENABLED_BY_DEFAULT);\n+BASE_FEATURE(kFedCm, base::FEATURE_DISABLED_BY_DEFAULT);\n \n // Kill switch for checking if there is an ongoing embedder task in the auto\n // re-authn flow.\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch",
    "content": "# Disables omission of URL elements in Omnibox and status bubble\n\n--- a/chrome/browser/ui/status_bubble.h\n+++ b/chrome/browser/ui/status_bubble.h\n@@ -17,7 +17,7 @@ class GURL;\n class StatusBubble {\n  public:\n   // On hover, expand status bubble to fit long URL after this delay.\n-  static const int kExpandHoverDelayMS = 1600;\n+  static const int kExpandHoverDelayMS = 0;\n \n   virtual ~StatusBubble() = default;\n \n--- a/chrome/browser/ui/toolbar/chrome_location_bar_model_delegate.cc\n+++ b/chrome/browser/ui/toolbar/chrome_location_bar_model_delegate.cc\n@@ -302,5 +302,5 @@ TemplateURLService* ChromeLocationBarMod\n // static\n void ChromeLocationBarModelDelegate::RegisterProfilePrefs(\n     user_prefs::PrefRegistrySyncable* registry) {\n-  registry->RegisterBooleanPref(omnibox::kPreventUrlElisionsInOmnibox, false);\n+  registry->RegisterBooleanPref(omnibox::kPreventUrlElisionsInOmnibox, true);\n }\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/disable-intranet-redirect-detector.patch",
    "content": "# Disables the intranet redirect detector. It generates extra DNS requests and the functionality using this is disabled\n# See this page for more information: https://mikewest.org/2012/02/chrome-connects-to-three-random-domains-at-startup\n\n--- a/chrome/browser/intranet_redirect_detector.cc\n+++ b/chrome/browser/intranet_redirect_detector.cc\n@@ -118,9 +118,7 @@ void IntranetRedirectDetector::FinishSle\n   simple_loaders_.clear();\n   resulting_origins_.clear();\n \n-  const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();\n-  if (cmd_line->HasSwitch(switches::kDisableBackgroundNetworking))\n-    return;\n+  return;\n \n   DCHECK(simple_loaders_.empty() && resulting_origins_.empty());\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/enable-certificate-transparency-and-add-flag.patch",
    "content": "--- a/chrome/browser/browser_features.cc\n+++ b/chrome/browser/browser_features.cc\n@@ -49,7 +49,7 @@ BASE_FEATURE(kBookmarkTriggerForPrefetch\n // On builds where CT is enabled, this flag is also used as an emergency kill\n // switch.\n BASE_FEATURE(kCertificateTransparencyAskBeforeEnabling,\n-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)\n+#if true\n              base::FEATURE_ENABLED_BY_DEFAULT);\n #else\n              base::FEATURE_DISABLED_BY_DEFAULT);\n--- a/chrome/browser/ungoogled_flag_entries.h\n+++ b/chrome/browser/ungoogled_flag_entries.h\n@@ -136,4 +136,8 @@\n      \"Remove Client Hints\",\n      \"Removes client hints (information sent to servers about your system, similar to a user agent). ungoogled-chromium flag.\",\n      kOsAll, FEATURE_VALUE_TYPE(blink::features::kRemoveClientHints)},\n+    {\"enforce-certificate-transparency\",\n+     \"Enforce Certificate Transparency\",\n+     \"Enforce Certificate Transparency for certificates that sites present. This is enabled by default. ungoogled-chromium flag.\",\n+     kOsAll, FEATURE_VALUE_TYPE(features::kCertificateTransparencyAskBeforeEnabling)},\n #endif  // CHROME_BROWSER_UNGOOGLED_FLAG_ENTRIES_H_\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/enable-extra-locales.patch",
    "content": "# Enable extra locales not normally shipped with Chromium on desktop\n\n--- a/build/config/locales.gni\n+++ b/build/config/locales.gni\n@@ -186,12 +186,6 @@ _non_android_locales = [ \"cy\" ]\n \n # Setup |platform_pak_locales| for each platform.\n platform_pak_locales = all_chrome_locales\n-if (is_android) {\n-  platform_pak_locales -= _non_android_locales\n-  extended_locales -= _non_android_locales\n-} else {\n-  platform_pak_locales -= extended_locales\n-}\n \n # The base list for all platforms except Android excludes the extended locales.\n # Add or subtract platform specific locales below.\n--- a/chrome/app/resources/locale_settings_linux.grd\n+++ b/chrome/app/resources/locale_settings_linux.grd\n@@ -4,11 +4,11 @@\n     <output filename=\"grit/platform_locale_settings.h\" type=\"rc_header\">\n       <emit emit_type='prepend'></emit>\n     </output>\n-    <if expr=\"is_android\">\n       <output filename=\"platform_locale_settings_as.pak\" type=\"data_package\" lang=\"as\" />\n       <output filename=\"platform_locale_settings_az.pak\" type=\"data_package\" lang=\"az\" />\n       <output filename=\"platform_locale_settings_be.pak\" type=\"data_package\" lang=\"be\" />\n       <output filename=\"platform_locale_settings_bs.pak\" type=\"data_package\" lang=\"bs\" />\n+      <output filename=\"platform_locale_settings_cy.pak\" type=\"data_package\" lang=\"cy\" />\n       <output filename=\"platform_locale_settings_eu.pak\" type=\"data_package\" lang=\"eu\" />\n       <output filename=\"platform_locale_settings_fr-CA.pak\" type=\"data_package\" lang=\"fr-CA\" />\n       <output filename=\"platform_locale_settings_gl.pak\" type=\"data_package\" lang=\"gl\" />\n@@ -31,7 +31,6 @@\n       <output filename=\"platform_locale_settings_uz.pak\" type=\"data_package\" lang=\"uz\" />\n       <output filename=\"platform_locale_settings_zh-HK.pak\" type=\"data_package\" lang=\"zh-HK\" />\n       <output filename=\"platform_locale_settings_zu.pak\" type=\"data_package\" lang=\"zu\" />\n-    </if>\n     <output filename=\"platform_locale_settings_af.pak\" type=\"data_package\" lang=\"af\" />\n     <output filename=\"platform_locale_settings_am.pak\" type=\"data_package\" lang=\"am\" />\n     <output filename=\"platform_locale_settings_ar.pak\" type=\"data_package\" lang=\"ar\" />\n--- a/chrome/app/resources/locale_settings_mac.grd\n+++ b/chrome/app/resources/locale_settings_mac.grd\n@@ -4,6 +4,33 @@\n     <output filename=\"grit/platform_locale_settings.h\" type=\"rc_header\">\n       <emit emit_type='prepend'></emit>\n     </output>\n+      <output filename=\"platform_locale_settings_as.pak\" type=\"data_package\" lang=\"as\" />\n+      <output filename=\"platform_locale_settings_az.pak\" type=\"data_package\" lang=\"az\" />\n+      <output filename=\"platform_locale_settings_be.pak\" type=\"data_package\" lang=\"be\" />\n+      <output filename=\"platform_locale_settings_bs.pak\" type=\"data_package\" lang=\"bs\" />\n+      <output filename=\"platform_locale_settings_cy.pak\" type=\"data_package\" lang=\"cy\" />\n+      <output filename=\"platform_locale_settings_eu.pak\" type=\"data_package\" lang=\"eu\" />\n+      <output filename=\"platform_locale_settings_fr-CA.pak\" type=\"data_package\" lang=\"fr-CA\" />\n+      <output filename=\"platform_locale_settings_gl.pak\" type=\"data_package\" lang=\"gl\" />\n+      <output filename=\"platform_locale_settings_hy.pak\" type=\"data_package\" lang=\"hy\" />\n+      <output filename=\"platform_locale_settings_is.pak\" type=\"data_package\" lang=\"is\" />\n+      <output filename=\"platform_locale_settings_ka.pak\" type=\"data_package\" lang=\"ka\" />\n+      <output filename=\"platform_locale_settings_kk.pak\" type=\"data_package\" lang=\"kk\" />\n+      <output filename=\"platform_locale_settings_km.pak\" type=\"data_package\" lang=\"km\" />\n+      <output filename=\"platform_locale_settings_ky.pak\" type=\"data_package\" lang=\"ky\" />\n+      <output filename=\"platform_locale_settings_lo.pak\" type=\"data_package\" lang=\"lo\" />\n+      <output filename=\"platform_locale_settings_mk.pak\" type=\"data_package\" lang=\"mk\" />\n+      <output filename=\"platform_locale_settings_mn.pak\" type=\"data_package\" lang=\"mn\" />\n+      <output filename=\"platform_locale_settings_my.pak\" type=\"data_package\" lang=\"my\" />\n+      <output filename=\"platform_locale_settings_ne.pak\" type=\"data_package\" lang=\"ne\" />\n+      <output filename=\"platform_locale_settings_or.pak\" type=\"data_package\" lang=\"or\" />\n+      <output filename=\"platform_locale_settings_pa.pak\" type=\"data_package\" lang=\"pa\" />\n+      <output filename=\"platform_locale_settings_si.pak\" type=\"data_package\" lang=\"si\" />\n+      <output filename=\"platform_locale_settings_sq.pak\" type=\"data_package\" lang=\"sq\" />\n+      <output filename=\"platform_locale_settings_sr-Latn.pak\" type=\"data_package\" lang=\"sr-Latn\" />\n+      <output filename=\"platform_locale_settings_uz.pak\" type=\"data_package\" lang=\"uz\" />\n+      <output filename=\"platform_locale_settings_zh-HK.pak\" type=\"data_package\" lang=\"zh-HK\" />\n+      <output filename=\"platform_locale_settings_zu.pak\" type=\"data_package\" lang=\"zu\" />\n     <output filename=\"platform_locale_settings_af.pak\" type=\"data_package\" lang=\"af\" />\n     <output filename=\"platform_locale_settings_am.pak\" type=\"data_package\" lang=\"am\" />\n     <output filename=\"platform_locale_settings_ar.pak\" type=\"data_package\" lang=\"ar\" />\n--- a/chrome/app/resources/locale_settings_win.grd\n+++ b/chrome/app/resources/locale_settings_win.grd\n@@ -4,6 +4,33 @@\n     <output filename=\"grit/platform_locale_settings.h\" type=\"rc_header\">\n       <emit emit_type='prepend'></emit>\n     </output>\n+      <output filename=\"platform_locale_settings_as.pak\" type=\"data_package\" lang=\"as\" />\n+      <output filename=\"platform_locale_settings_az.pak\" type=\"data_package\" lang=\"az\" />\n+      <output filename=\"platform_locale_settings_be.pak\" type=\"data_package\" lang=\"be\" />\n+      <output filename=\"platform_locale_settings_bs.pak\" type=\"data_package\" lang=\"bs\" />\n+      <output filename=\"platform_locale_settings_cy.pak\" type=\"data_package\" lang=\"cy\" />\n+      <output filename=\"platform_locale_settings_eu.pak\" type=\"data_package\" lang=\"eu\" />\n+      <output filename=\"platform_locale_settings_fr-CA.pak\" type=\"data_package\" lang=\"fr-CA\" />\n+      <output filename=\"platform_locale_settings_gl.pak\" type=\"data_package\" lang=\"gl\" />\n+      <output filename=\"platform_locale_settings_hy.pak\" type=\"data_package\" lang=\"hy\" />\n+      <output filename=\"platform_locale_settings_is.pak\" type=\"data_package\" lang=\"is\" />\n+      <output filename=\"platform_locale_settings_ka.pak\" type=\"data_package\" lang=\"ka\" />\n+      <output filename=\"platform_locale_settings_kk.pak\" type=\"data_package\" lang=\"kk\" />\n+      <output filename=\"platform_locale_settings_km.pak\" type=\"data_package\" lang=\"km\" />\n+      <output filename=\"platform_locale_settings_ky.pak\" type=\"data_package\" lang=\"ky\" />\n+      <output filename=\"platform_locale_settings_lo.pak\" type=\"data_package\" lang=\"lo\" />\n+      <output filename=\"platform_locale_settings_mk.pak\" type=\"data_package\" lang=\"mk\" />\n+      <output filename=\"platform_locale_settings_mn.pak\" type=\"data_package\" lang=\"mn\" />\n+      <output filename=\"platform_locale_settings_my.pak\" type=\"data_package\" lang=\"my\" />\n+      <output filename=\"platform_locale_settings_ne.pak\" type=\"data_package\" lang=\"ne\" />\n+      <output filename=\"platform_locale_settings_or.pak\" type=\"data_package\" lang=\"or\" />\n+      <output filename=\"platform_locale_settings_pa.pak\" type=\"data_package\" lang=\"pa\" />\n+      <output filename=\"platform_locale_settings_si.pak\" type=\"data_package\" lang=\"si\" />\n+      <output filename=\"platform_locale_settings_sq.pak\" type=\"data_package\" lang=\"sq\" />\n+      <output filename=\"platform_locale_settings_sr-Latn.pak\" type=\"data_package\" lang=\"sr-Latn\" />\n+      <output filename=\"platform_locale_settings_uz.pak\" type=\"data_package\" lang=\"uz\" />\n+      <output filename=\"platform_locale_settings_zh-HK.pak\" type=\"data_package\" lang=\"zh-HK\" />\n+      <output filename=\"platform_locale_settings_zu.pak\" type=\"data_package\" lang=\"zu\" />\n     <output filename=\"platform_locale_settings_af.pak\" type=\"data_package\" lang=\"af\" />\n     <output filename=\"platform_locale_settings_am.pak\" type=\"data_package\" lang=\"am\" />\n     <output filename=\"platform_locale_settings_ar.pak\" type=\"data_package\" lang=\"ar\" />\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/enable-menu-on-reload-button.patch",
    "content": "# Add ability to always open dev context menu on reload button.\n\n--- a/chrome/browser/ui/views/toolbar/reload_button.cc\n+++ b/chrome/browser/ui/views/toolbar/reload_button.cc\n@@ -141,7 +141,7 @@ bool ReloadButton::GetDevToolsStatusForT\n }\n \n void ReloadButton::SetDevToolsStatus(bool is_dev_tools_connected) {\n-  is_dev_tools_connected_ = is_dev_tools_connected;\n+  is_dev_tools_connected_ = true;\n   UpdateAccessibleHasPopup();\n   UpdateCachedTooltipText();\n }\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/enable-page-saving-on-more-pages.patch",
    "content": "# Add more URL schemes allowed for saving\n\n--- a/chrome/browser/ui/browser_commands.cc\n+++ b/chrome/browser/ui/browser_commands.cc\n@@ -674,11 +674,6 @@ int GetContentRestrictions(const Browser\n     CoreTabHelper* core_tab_helper =\n         CoreTabHelper::FromWebContents(current_tab);\n     content_restrictions = core_tab_helper->content_restrictions();\n-    NavigationEntry* last_committed_entry =\n-        current_tab->GetController().GetLastCommittedEntry();\n-    if (!content::IsSavableURL(last_committed_entry->GetURL())) {\n-      content_restrictions |= CONTENT_RESTRICTION_SAVE;\n-    }\n   }\n   return content_restrictions;\n }\n@@ -2060,8 +2055,7 @@ bool CanSavePage(const Browser* browser)\n       policy::DownloadRestriction::ALL_FILES) {\n     return false;\n   }\n-  return !browser->is_type_devtools() &&\n-         !(GetContentRestrictions(browser) & CONTENT_RESTRICTION_SAVE);\n+  return true;\n }\n \n void Print(BrowserWindowInterface* bwi) {\n--- a/components/offline_pages/core/offline_page_model.cc\n+++ b/components/offline_pages/core/offline_page_model.cc\n@@ -21,7 +21,7 @@ OfflinePageModel::SavePageParams::~SaveP\n \n // static\n bool OfflinePageModel::CanSaveURL(const GURL& url) {\n-  return url.is_valid() && url.SchemeIsHTTPOrHTTPS();\n+  return url.is_valid();\n }\n \n OfflinePageModel::OfflinePageModel() = default;\n--- a/content/common/url_schemes.cc\n+++ b/content/common/url_schemes.cc\n@@ -24,13 +24,21 @@ namespace {\n bool g_registered_url_schemes = false;\n \n const char* const kDefaultSavableSchemes[] = {\n+  url::kAboutScheme,\n+  url::kBlobScheme,\n+  url::kContentScheme,\n   url::kHttpScheme,\n   url::kHttpsScheme,\n   url::kFileScheme,\n   url::kFileSystemScheme,\n   kChromeDevToolsScheme,\n   kChromeUIScheme,\n-  url::kDataScheme\n+  url::kDataScheme,\n+  url::kJavaScriptScheme,\n+  url::kMailToScheme,\n+  url::kWsScheme,\n+  url::kWssScheme,\n+  kViewSourceScheme\n };\n \n // These lists are lazily initialized below and are leaked on shutdown to\n--- a/content/public/common/url_utils.cc\n+++ b/content/public/common/url_utils.cc\n@@ -41,11 +41,7 @@ bool HasWebUIOrigin(const url::Origin& o\n }\n \n bool IsSavableURL(const GURL& url) {\n-  for (auto& scheme : GetSavableSchemes()) {\n-    if (url.SchemeIs(scheme))\n-      return true;\n-  }\n-  return false;\n+  return true;\n }\n \n bool IsURLHandledByNetworkStack(const GURL& url) {\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/enable-paste-and-go-new-tab-button.patch",
    "content": "--- a/chrome/browser/ui/views/frame/horizontal_tab_strip_region_view.cc\n+++ b/chrome/browser/ui/views/frame/horizontal_tab_strip_region_view.cc\n@@ -288,6 +288,9 @@ HorizontalTabStripRegionView::Horizontal\n         l10n_util::GetStringUTF16(IDS_TOOLTIP_NEW_TAB));\n     new_tab_button_->GetViewAccessibility().SetName(\n         l10n_util::GetStringUTF16(IDS_ACCNAME_NEWTAB));\n+    new_tab_button_->SetTriggerableEventFlags(\n+        new_tab_button_->GetTriggerableEventFlags() |\n+        ui::EF_MIDDLE_MOUSE_BUTTON);\n   }\n \n   reserved_grab_handle_space_ =\n--- a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc\n+++ b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.cc\n@@ -20,6 +20,7 @@\n #include \"base/strings/string_util.h\"\n #include \"base/time/time.h\"\n #include \"build/build_config.h\"\n+#include \"chrome/browser/autocomplete/autocomplete_classifier_factory.h\"\n #include \"chrome/browser/browser_process.h\"\n #include \"chrome/browser/favicon/favicon_utils.h\"\n #include \"chrome/browser/resource_coordinator/tab_lifecycle_unit_external.h\"\n@@ -66,6 +67,8 @@\n #include \"chrome/grit/generated_resources.h\"\n #include \"components/feature_engagement/public/feature_constants.h\"\n #include \"components/feature_engagement/public/tracker.h\"\n+#include \"components/omnibox/browser/autocomplete_classifier.h\"\n+#include \"components/omnibox/browser/autocomplete_match.h\"\n #include \"components/performance_manager/public/user_tuning/prefs.h\"\n #include \"components/prefs/pref_service.h\"\n #include \"components/saved_tab_groups/public/features.h\"\n@@ -547,6 +550,18 @@ void BrowserTabStripController::CreateNe\n   chrome::NewTab(browser_view_->browser(), context);\n }\n \n+void BrowserTabStripController::CreateNewTabWithLocation(\n+    const std::u16string& location) {\n+  // Use autocomplete to clean up the text, going so far as to turn it into\n+  // a search query if necessary.\n+  AutocompleteMatch match;\n+  AutocompleteClassifierFactory::GetForProfile(GetBrowserWindowInterface()->GetProfile())\n+      ->Classify(location, false, false, metrics::OmniboxEventProto::BLANK, &match, nullptr);\n+  if (match.destination_url.is_valid()) {\n+    model_->delegate()->AddTabAt(match.destination_url, -1, true);\n+  }\n+}\n+\n void BrowserTabStripController::OnStartedDragging() {\n   if (!immersive_reveal_lock_.get()) {\n     // The top-of-window views should be revealed while the user is dragging\n--- a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.h\n+++ b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.h\n@@ -90,6 +90,7 @@ class BrowserTabStripController : public\n   int HasAvailableDragActions() const override;\n   void OnDropIndexUpdate(std::optional<int> index, bool drop_before) override;\n   void CreateNewTab(NewTabTypes context) override;\n+  void CreateNewTabWithLocation(const std::u16string& loc) override;\n   void OnStartedDragging() override;\n   void OnStoppedDragging() override;\n   void TabKeyboardFocusChangedTo(const tabs::TabInterface* tab) override;\n--- a/chrome/browser/ui/views/tabs/tab_strip.cc\n+++ b/chrome/browser/ui/views/tabs/tab_strip.cc\n@@ -87,6 +87,8 @@\n #include \"components/tab_groups/tab_group_id.h\"\n #include \"components/tab_groups/tab_group_visual_data.h\"\n #include \"content/public/browser/web_contents.h\"\n+#include \"ui/base/clipboard/clipboard.h\"\n+#include \"ui/base/clipboard/clipboard_constants.h\"\n #include \"ui/base/dragdrop/drag_drop_types.h\"\n #include \"ui/base/dragdrop/mojom/drag_drop_types.mojom.h\"\n #include \"ui/base/interaction/element_identifier.h\"\n@@ -2212,6 +2214,20 @@ void TabStrip::NewTabButtonPressed(const\n     if (hover_card_controller_) {\n       hover_card_controller_->PreventImmediateReshow();\n     }\n+    const ui::MouseEvent& mouse = static_cast<const ui::MouseEvent&>(event);\n+    if (mouse.IsOnlyMiddleMouseButton()) {\n+      ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();\n+      CHECK(clipboard)\n+          << \"Clipboard instance is not available, cannot proceed with \"\n+             \"middle mouse button action.\";\n+      std::u16string clipboard_text;\n+      clipboard->ReadText(ui::ClipboardBuffer::kSelection,\n+                          /* data_dst = */ nullptr, &clipboard_text);\n+      if (!clipboard_text.empty()) {\n+        controller_->CreateNewTabWithLocation(clipboard_text);\n+      }\n+      return;\n+    }\n   }\n   controller_->CreateNewTab(NewTabTypes::kNewTabButton);\n }\n--- a/chrome/browser/ui/views/tabs/tab_strip_controller.h\n+++ b/chrome/browser/ui/views/tabs/tab_strip_controller.h\n@@ -151,6 +151,11 @@ class TabStripController {\n   // Creates the new tab.\n   virtual void CreateNewTab(NewTabTypes context) = 0;\n \n+  // Creates a new tab, and loads `location` in the tab. If `location` is a\n+  // valid URL, then simply loads the URL, otherwise this can open a\n+  // search-result page for `location`.\n+  virtual void CreateNewTabWithLocation(const std::u16string& location) = 0;\n+\n   // Notifies controller that the user started dragging this tabstrip's tabs.\n   virtual void OnStartedDragging() = 0;\n \n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/first-run-page.patch",
    "content": "--- a/chrome/browser/chrome_browser_main.cc\n+++ b/chrome/browser/chrome_browser_main.cc\n@@ -1234,6 +1234,7 @@ int ChromeBrowserMainParts::PreCreateThr\n   if (first_run::IsChromeFirstRun()) {\n     if (!base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kApp) &&\n         !base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kAppId)) {\n+      browser_creator_->AddFirstRunTabs({GURL(\"chrome://ungoogled-first-run\")});\n       browser_creator_->AddFirstRunTabs(master_prefs_->new_tabs);\n     }\n   }\n--- a/chrome/browser/ui/webui/chrome_web_ui_configs.cc\n+++ b/chrome/browser/ui/webui/chrome_web_ui_configs.cc\n@@ -49,6 +49,7 @@\n #include \"chrome/browser/ui/webui/signin_internals_ui.h\"\n #include \"chrome/browser/ui/webui/sync_internals/sync_internals_ui.h\"\n #include \"chrome/browser/ui/webui/translate_internals/translate_internals_ui.h\"\n+#include \"chrome/browser/ui/webui/ungoogled_first_run.h\"\n #include \"chrome/browser/ui/webui/usb_internals/usb_internals_ui.h\"\n #include \"chrome/browser/ui/webui/version/version_ui.h\"\n #include \"components/enterprise/buildflags/buildflags.h\"\n@@ -285,6 +286,7 @@ void RegisterChromeWebUIConfigs() {\n   map.AddWebUIConfig(std::make_unique<SiteEngagementUIConfig>());\n   map.AddWebUIConfig(std::make_unique<SyncInternalsUIConfig>());\n   map.AddWebUIConfig(std::make_unique<TranslateInternalsUIConfig>());\n+  map.AddWebUIConfig(std::make_unique<UngoogledFirstRunUIConfig>());\n   map.AddWebUIConfig(std::make_unique<UsbInternalsUIConfig>());\n   map.AddWebUIConfig(std::make_unique<user_actions_ui::UserActionsUIConfig>());\n   map.AddWebUIConfig(std::make_unique<VersionUIConfig>());\n--- /dev/null\n+++ b/chrome/browser/ui/webui/ungoogled_first_run.h\n@@ -0,0 +1,144 @@\n+#ifndef CHROME_BROWSER_UI_WEBUI_UNGOOGLED_FIRST_RUN_H_\n+#define CHROME_BROWSER_UI_WEBUI_UNGOOGLED_FIRST_RUN_H_\n+\n+#include \"base/memory/ref_counted_memory.h\"\n+#include \"chrome/browser/profiles/profile.h\"\n+#include \"content/public/browser/url_data_source.h\"\n+#include \"content/public/browser/web_ui.h\"\n+#include \"content/public/browser/web_ui_controller.h\"\n+#include \"content/public/browser/webui_config.h\"\n+#include \"services/network/public/mojom/content_security_policy.mojom.h\"\n+\n+class UFRDataSource : public content::URLDataSource {\n+ public:\n+  UFRDataSource() {}\n+  UFRDataSource(const UFRDataSource&) = delete;\n+  UFRDataSource& operator=(const UFRDataSource&) = delete;\n+  std::string GetSource() { return \"ungoogled-first-run\"; }\n+  std::string GetMimeType(const GURL& url) { return \"text/html\"; }\n+  std::string GetContentSecurityPolicy(network::mojom::CSPDirectiveName directive) {\n+    if (directive == network::mojom::CSPDirectiveName::ScriptSrc)\n+      return \"script-src 'unsafe-inline'\";\n+    return std::string();\n+  }\n+  void StartDataRequest(const GURL& url,\n+                        const content::WebContents::Getter& wc_getter,\n+                        GotDataCallback callback) {\n+    std::string source = R\"(\n+<title>ungoogled-chromium first run page</title>\n+<meta name=\"color-scheme\" content=\"light dark\">\n+<style>\n+ @import url(chrome://resources/css/text_defaults_md.css);\n+ html{color:#202124; background:white; line-height:1.1em}\n+ a{color:#1967d2}\n+ h2{margin:0; padding:0.67em 1.33em}\n+ p,details{border-top:.063em solid #f0f0f0; margin:0; padding:1em 2em}\n+ ul,ol{padding-left:2em}\n+ code{background:rgba(128 128 128 / .2); padding:0 0.5em; border-radius:0.25em}\n+ summary{cursor:pointer}\n+ section{width:60em; margin:4em auto; border-radius:.5em;\n+         background:white; box-shadow:0 .063em .125em 0 #c4c5c6, 0 .125em .375em .125em #e2e3e3}\n+ @media(prefers-color-scheme:dark){\n+  html{color:#e8eaed; background:#202124}\n+  a{color:#8ab4f8}\n+  p,details{border-top:.063em solid #3f4042}\n+  section{background:#292a2d; box-shadow:0 .063em .125em 0 #161719, 0 .125em .375em .125em #1b1c1f}\n+ }\n+</style>\n+<base target=\"_blank\">\n+<section>\n+ <h2>ungoogled-chromium</h2><p>\n+ This browser was built with ungoogled-chromium patches and differs from the default Chromium experience\n+ in a few ways. Look over the sections below and the\n+ <a href=\"https://github.com/ungoogled-software/ungoogled-chromium/blob/master/docs/default_settings.md\">\n+  changes to the default settings</a> to see what may be important to you.<p>\n+ This page can always be accessed again at <a href=\"chrome://ungoogled-first-run\">chrome://ungoogled-first-run</a>\n+</section>\n+<section>\n+ <h2>How-To</h2>\n+ <details><summary><b>Install and update extensions</b></summary><br>\n+  <a href=\"https://github.com/NeverDecaf\">NeverDecaf</a> has created an extension to make this process easy:\n+  <ol>\n+   <li>Set <a href=\"chrome://flags/#extension-mime-request-handling\">chrome://flags/#extension-mime-request-handling</a>\n+    to <code>Always prompt for install</code> and relaunch.</li>\n+   <li>Then click on the latest <code>Chromium.Web.Store.crx</code> link on\n+    <a href=\"https://github.com/NeverDecaf/chromium-web-store/releases\">the extension's Releases page</a>.</li>\n+  </ol>\n+  Please check out the <a href=\"https://github.com/NeverDecaf/chromium-web-store\">chromium-web-store</a>\n+  repo for further details and alternate installation methods for the extension.<br><br>\n+  If you do not wish to install this extension, there is still a way to install other extensions albeit\n+  without the ability to easily update them. In this case, please refer to the entry on the wiki for\n+  <a href=\"https://ungoogled-software.github.io/ungoogled-chromium-wiki/faq#downloading-the-crx-file\">\n+   installing extensions manually</a>.</details>\n+ <details><summary><b>Enable spellcheck</b></summary>\n+  <ol>\n+   <li>Go to <a href=\"https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries/+/main\">\n+     https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries/+/main</a></li>\n+   <li>Find a bdic file for the language you want and click on it.\n+    You will see a mostly empty page aside from \"X-byte binary file\".</li>\n+   <li>On the bottom right corner, click \"txt\". The direct link for en-US-10-1.bdic is:\n+    <a href=\"https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries/+/main/en-US-10-1.bdic?format=TEXT\">\n+     https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries/+/main/en-US-10-1.bdic?format=TEXT</a></li>\n+   <li>This is a base64-encoded file that needs to be decoded. Use the button below to select the .txt file you saved\n+    and save/move the resulting bdic file to your Dictionaries directory. Default locations:\n+    <ul>\n+     <li>Linux: <code>~/.config/chromium/Dictionaries/</code><br></li>\n+     <li>Mac: <code>~/Library/Application Support/Chromium/Dictionaries/</code><br></li>\n+     <li>Windows: <code>%LOCALAPPDATA%\\Chromium\\User Data\\Dictionaries\\</code><br></li>\n+    </ul>\n+    <input id=\"bdic\" type=\"file\" accept=\".txt,text/plain\" />\n+   </li>\n+   <li>Toggle spell check in <a href=\"chrome://settings/languages\">chrome://settings/languages</a>,\n+    or restart the browser for the dictionaries to take effect.</li>\n+  </ol></details><p>\n+  <a href=\"https://ungoogled-software.github.io/ungoogled-chromium-wiki/faq\">Check out the FAQ on the wiki</a>\n+  for information on other common topics.\n+</section>\n+<section>\n+ <h2>Extra Features</h2><p>\n+  Most features introduced by ungoogled-chromium are disabled by default and can be enabled in\n+  <a href=\"chrome://flags\">chrome://flags</a> or as command-line switches. Take a look at\n+  <a href=\"https://github.com/ungoogled-software/ungoogled-chromium/blob/master/docs/flags.md\">\n+   the flags documentation</a> to see what features you may find useful to enable.\n+</section>\n+<section>\n+ <h2>Additional Links</h2><p>\n+  Privacy and security information, motivation and philosophy, rationale for changes, and more can be found in the\n+  <a href=\"https://github.com/ungoogled-software/ungoogled-chromium/blob/master/README.md\">README</a>.<p>\n+  Visit our <a href=\"https://github.com/ungoogled-software/ungoogled-chromium/blob/master/SUPPORT.md\">\n+   support page</a> if you wish to report problems.<p>\n+  Are you a developer? Consider\n+  <a href=\"https://github.com/ungoogled-software/ungoogled-chromium/blob/master/docs/contributing.md\">\n+   contributing</a> to ungoogled-chromium!\n+</section>\n+<script>\n+ document.getElementById(\"bdic\").onchange = function(e){\n+  var f = new FileReader;\n+  f.onload = function(){\n+   var a = document.createElement(\"a\");\n+   a.setAttribute(\"href\", \"data:application/octet-stream;base64, \" + f.result);\n+   a.setAttribute(\"download\", e.target.files[0].name.replace(/\\.[^/.]+$/, \".bdic\"));\n+   a.click()\n+  }, f.readAsText(this.files[0])};\n+</script>\n+)\";\n+    std::move(callback).Run(base::MakeRefCounted<base::RefCountedString>(std::move(source)));\n+  }\n+};\n+\n+class UngoogledFirstRun;\n+class UngoogledFirstRunUIConfig : public content::DefaultWebUIConfig<UngoogledFirstRun> {\n+  public:\n+   UngoogledFirstRunUIConfig() : DefaultWebUIConfig(\"chrome\", \"ungoogled-first-run\") {}\n+};\n+\n+class UngoogledFirstRun : public content::WebUIController {\n+ public:\n+  UngoogledFirstRun(content::WebUI* web_ui) : content::WebUIController(web_ui) {\n+    content::URLDataSource::Add(Profile::FromWebUI(web_ui), std::make_unique<UFRDataSource>());\n+  }\n+  UngoogledFirstRun(const UngoogledFirstRun&) = delete;\n+  UngoogledFirstRun& operator=(const UngoogledFirstRun&) = delete;\n+};\n+\n+#endif  // CHROME_BROWSER_UI_WEBUI_UNGOOGLED_FIRST_RUN_H_\n--- a/chrome/common/webui_url_constants.cc\n+++ b/chrome/common/webui_url_constants.cc\n@@ -74,6 +74,7 @@ bool IsSystemWebUIHost(std::string_view\n // These hosts will also be suggested by BuiltinProvider.\n base::span<const base::cstring_view> ChromeURLHosts() {\n   static constexpr auto kChromeURLHosts = std::to_array<base::cstring_view>({\n+      \"ungoogled-first-run\",\n       kChromeUIAboutHost,\n       kChromeUIAccessibilityHost,\n       kChromeUIActorInternalsHost,\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/fix-building-without-mdns-and-service-discovery.patch",
    "content": "# Fix building with enable_service_discovery=false and enable_mds=false\n\n--- a/chrome/browser/media/router/discovery/mdns/dns_sd_device_lister.cc\n+++ b/chrome/browser/media/router/discovery/mdns/dns_sd_device_lister.cc\n@@ -40,37 +40,22 @@ DnsSdDeviceLister::DnsSdDeviceLister(\n DnsSdDeviceLister::~DnsSdDeviceLister() = default;\n \n void DnsSdDeviceLister::Discover() {\n-#if BUILDFLAG(ENABLE_SERVICE_DISCOVERY)\n-  if (!device_lister_) {\n-    device_lister_ = local_discovery::ServiceDiscoveryDeviceLister::Create(\n-        this, service_discovery_client_, service_type_);\n-    device_lister_->Start();\n-  }\n-  device_lister_->DiscoverNewDevices();\n-#endif\n }\n \n void DnsSdDeviceLister::Reset() {\n-  device_lister_.reset();\n }\n \n void DnsSdDeviceLister::OnDeviceChanged(\n     const std::string& service_type,\n     bool added,\n     const ServiceDescription& service_description) {\n-  DnsSdService service;\n-  FillServiceInfo(service_description, &service);\n-  delegate_->ServiceChanged(device_lister_->service_type(), added, service);\n }\n \n void DnsSdDeviceLister::OnDeviceRemoved(const std::string& service_type,\n                                         const std::string& service_name) {\n-  delegate_->ServiceRemoved(service_type, service_name);\n }\n \n void DnsSdDeviceLister::OnDeviceCacheFlushed(const std::string& service_type) {\n-  delegate_->ServicesFlushed(device_lister_->service_type());\n-  device_lister_->DiscoverNewDevices();\n }\n \n void DnsSdDeviceLister::OnPermissionRejected() {\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/fix-distilled-icons.patch",
    "content": "--- a/components/dom_distiller/core/css/distilledpage_common.css\n+++ b/components/dom_distiller/core/css/distilledpage_common.css\n@@ -26,6 +26,11 @@\n   box-sizing: border-box;\n }\n \n+.material-icons {\n+  font-family: Material Icons;\n+  font-style: normal !important;\n+}\n+\n /* Remove all margins and padding from certain element and add word wrap. */\n \n blockquote,\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/keep-expired-flags.patch",
    "content": "--- a/components/webui/flags/flags_state.cc\n+++ b/components/webui/flags/flags_state.cc\n@@ -26,6 +26,7 @@\n #include \"base/strings/utf_string_conversions.h\"\n #include \"base/values.h\"\n #include \"build/build_config.h\"\n+#include \"chrome/browser/unexpire_flags.h\"\n #include \"components/variations/field_trial_config/field_trial_util.h\"\n #include \"components/variations/variations_associated_data.h\"\n #include \"components/variations/variations_switches.h\"\n@@ -680,14 +681,19 @@ void FlagsState::GetFlagFeatureEntries(\n   int current_platform = GetCurrentPlatform();\n \n   for (const FeatureEntry& entry : feature_entries_) {\n+    std::string desc = entry.visible_description;\n     if (skip_feature_entry.Run(entry)) {\n+     if (flags::IsFlagExpired(flags_storage, entry.internal_name)) {\n+       desc.insert(0, \"!!! NOTE: THIS FLAG IS EXPIRED AND MAY STOP FUNCTIONING OR BE REMOVED SOON !!! \");\n+     } else {\n       continue;\n+     }\n     }\n \n     base::DictValue data;\n     data.Set(\"internal_name\", entry.internal_name);\n     data.Set(\"name\", entry.visible_name);\n-    data.Set(\"description\", entry.visible_description);\n+    data.Set(\"description\", desc);\n \n     base::ListValue supported_platforms;\n     AddOsStrings(entry.supported_platforms, &supported_platforms);\n@@ -1111,7 +1117,9 @@ bool FlagsState::IsSupportedFeature(cons\n       continue;\n     }\n     if (delegate_ && delegate_->ShouldExcludeFlag(storage, entry)) {\n+     if (!flags::IsFlagExpired(storage, entry.internal_name)) {\n       continue;\n+     }\n     }\n     return true;\n   }\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/prepopulated-search-engines.patch",
    "content": "# Disables Site search Starter Pack\n#\n--- a/components/omnibox/common/omnibox_features.cc\n+++ b/components/omnibox/common/omnibox_features.cc\n@@ -249,7 +249,7 @@ BASE_FEATURE(kOmniboxTouchDownTriggerFor\n BASE_FEATURE(kOmniboxSiteSearch, DISABLED);\n \n // Enables additional site search providers for the Site search Starter Pack.\n-BASE_FEATURE(kStarterPackExpansion, enable_if(!IS_ANDROID && !IS_IOS));\n+BASE_FEATURE(kStarterPackExpansion, base::FEATURE_DISABLED_BY_DEFAULT);\n \n // Enables an informational IPH message at the bottom of the Omnibox directing\n // users to certain starter pack engines.\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/remove-disable-setuid-sandbox-as-bad-flag.patch",
    "content": "# Remove the \"--disable-setuid-sandbox\" command line flag as a bad flag\n\n--- a/chrome/browser/ui/startup/bad_flags_prompt.cc\n+++ b/chrome/browser/ui/startup/bad_flags_prompt.cc\n@@ -84,7 +84,6 @@ const char* const kBadFlags[] = {\n     sandbox::policy::switches::kDisableGpuSandbox,\n     sandbox::policy::switches::kDisableLandlockSandbox,\n     sandbox::policy::switches::kDisableSeccompFilterSandbox,\n-    sandbox::policy::switches::kDisableSetuidSandbox,\n     sandbox::policy::switches::kNoSandbox,\n #if BUILDFLAG(IS_WIN)\n     sandbox::policy::switches::kAllowThirdPartyModules,\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/remove-pac-size-limit.patch",
    "content": "--- a/net/proxy_resolution/pac_file_fetcher_impl.cc\n+++ b/net/proxy_resolution/pac_file_fetcher_impl.cc\n@@ -359,13 +359,6 @@ bool PacFileFetcherImpl::ConsumeBytesRea\n     return false;\n   }\n \n-  // Enforce maximum size bound.\n-  if (num_bytes + bytes_read_so_far_.size() >\n-      static_cast<size_t>(max_response_bytes_)) {\n-    result_code_ = ERR_FILE_TOO_BIG;\n-    request->Cancel();\n-    return false;\n-  }\n \n   bytes_read_so_far_.append(buf_->data(), num_bytes);\n   return true;\n"
  },
  {
    "path": "patches/extra/ungoogled-chromium/remove-uneeded-ui.patch",
    "content": "# Removes in order:\n# 'Learn more' links on the performance page\n# more 'Learn more' links on the performance page\n# link to Chrome store on the extensions page when empty\n# link to Chrome store in extensions page sidebar\n# 'Tabs from other devices' entry on the History page sidebar\n# the 'Learn more' link on new incognito tabs\n# Live captions entry from the settings page\n# link to Google's accessibility site from the settings page\n# update status icon on the About page\n# update status text on the About page\n# link to Google's help site on the About page\n# external link for theme entry on settings page\n# the Google account line from the Payment methods page\n# Safety check section on the settings page\n# Google sign-in and Anonymized Data Collection sections\n# help bubble for the removed data collection section\n# Privacy guide promo on the privacy page\n# Privacy guide section on the privacy page\n# The password leak detection toggle on the security settings page\n# Advanced Protection Program link on the security settings page\n# the 'Learn more' link from the search engine entry on the settings page\n# Safety Check entry on the side menu on the settings page\n# the (?) learn more button on many settings pages\n# 'Sign in to see tabs from other devices' in the history submenu\n# the 'Vist Chrome Web Store' entry in the extensions section of the main menu\n# the side panel entry in All Bookmarks\n# the feedback entry in the third party cookie popup\n# the 'Learn more' link on crashed tabs\n# non-functional AI options\n# disable LiveCaption flag by default, this also removes non-functional Live Caption checkbox from media controls\n# the new feature badges\n\n--- a/chrome/app/settings_chromium_strings.grdp\n+++ b/chrome/app/settings_chromium_strings.grdp\n@@ -355,13 +355,13 @@\n \n   <!-- Performance Page -->\n   <message name=\"IDS_SETTINGS_PERFORMANCE_MEMORY_SAVER_MODE_SETTING_DESCRIPTION\" desc=\"Description for the memory saver mode setting\">\n-    Chromium frees up memory from inactive tabs. This gives active tabs and other apps more computer resources and keeps Chromium fast. Your inactive tabs automatically become active again when you go back to them. <ph name=\"BEGIN_LINK\">&lt;a href=\"$1\" target=\"_blank\" id=\"learn-more\" aria-description=\"$2\"&gt;</ph>Learn more about Memory Saver<ph name=\"END_LINK\">&lt;/a&gt;</ph>\n+    Chromium frees up memory from inactive tabs. This gives active tabs and other apps more computer resources and keeps Chromium fast. Your inactive tabs automatically become active again when you go back to them.\n   </message>\n   <message name=\"IDS_SETTINGS_PERFORMANCE_BATTERY_SAVER_MODE_SETTING_DESCRIPTION\" desc=\"Description for the energy saver mode setting\">\n-    Chromium conserves battery power by limiting background activity and visual effects, such as smooth scrolling and video frame rates. <ph name=\"BEGIN_LINK\">&lt;a href=\"$1\" target=\"_blank\" id=\"learn-more\" aria-description=\"$2\"&gt;</ph>Learn more about Energy Saver<ph name=\"END_LINK\">&lt;/a&gt;</ph>\n+    Chromium conserves battery power by limiting background activity and visual effects, such as smooth scrolling and video frame rates.\n   </message>\n   <message name=\"IDS_SETTINGS_PERFORMANCE_PRELOAD_TOGGLE_SUMMARY\" desc=\"Summary for the preload pages setting\">\n-    Chromium preloads pages which makes browsing and searching faster. <ph name=\"BEGIN_LINK\">&lt;a href=\"$1\" target=\"_blank\" id=\"learn-more\" aria-description=\"$2\"&gt;</ph>Learn more about preload pages<ph name=\"END_LINK\">&lt;/a&gt;</ph>\n+    Chromium preloads pages which makes browsing and searching faster.\n   </message>\n \n   <!-- Languages Page -->\n--- a/chrome/app/settings_strings.grdp\n+++ b/chrome/app/settings_strings.grdp\n@@ -1101,7 +1101,7 @@\n     Active site\n   </message>\n   <message name=\"IDS_SETTINGS_PERFORMANCE_TAB_DISCARDING_EXCEPTIONS_ADD_DIALOG_HELP\" desc=\"Help text shown on the second tab of the tab discarding exception list add dialog. Explains how to use the filter format to add an exclusion rule to the list.\">\n-    Sites you add will always stay active and memory won't be freed up from them. <ph name=\"BEGIN_LINK\">&lt;a href=\"$1\" target=\"_blank\"&gt;</ph>Learn more about keeping specific sites active<ph name=\"END_LINK\">&lt;/a&gt;</ph>\n+    Sites you add will always stay active and memory won't be freed up from them.\n   </message>\n   <message name=\"IDS_SETTINGS_PERFORMANCE_BATTERY_PAGE_TITLE\" desc=\"Title of the power section in the performance settings page.\">\n     Power\n@@ -1125,7 +1125,7 @@\n     Inactive tabs appearance\n   </message>\n   <message name=\"IDS_SETTINGS_PERFORMANCE_DISCARD_RING_TREATMENT_ENABLED_DESCRIPTION_WITH_LEARN_LINK\" desc=\"Label for a performance settings toggle description that controls whether the inactive tab UI is shown. Also contains a link to the help center article.\">\n-    A dotted circle appears around site icons. <ph name=\"BEGIN_LINK\">&lt;a href=\"$1\" target=\"_blank\" aria-description=\"$2\"&gt;</ph>Learn more about inactive tabs<ph name=\"END_LINK\">&lt;/a&gt;</ph>\n+    A dotted circle appears around site icons.\n   </message>\n   <message name=\"IDS_SETTINGS_PERFORMANCE_TAB_HOVER_PREVIEW_CARD_LINK_TITLE\" desc=\"Title for the link row that points to tab hover preview card apperance settings.\">\n     Tab hover preview card appearance\n@@ -1137,7 +1137,7 @@\n     Performance issue alerts\n   </message>\n   <message name=\"IDS_SETTINGS_PERFORMANCE_INTERVENTION_NOTIFICATION_ENABLED_DESCRIPTION\" desc=\"Label for a performance settings toggle that controls whether performance intervention notifications should be shown and link to learn more about performance issue alerts.\">\n-    Get notifications that suggest ways to improve detected performance issues. <ph name=\"BEGIN_LINK\">&lt;a href=\"$1\" target=\"_blank\" aria-description=\"$2\"&gt;</ph>Learn more about performance issue alerts<ph name=\"END_LINK\">&lt;/a&gt;</ph>\n+    Get notifications that suggest ways to improve detected performance issues.\n   </message>\n \n   <!-- Languages Page -->\n--- a/chrome/browser/resources/extensions/item_list.html.ts\n+++ b/chrome/browser/resources/extensions/item_list.html.ts\n@@ -30,12 +30,6 @@ export function getHtml(this: Extensions\n         </extensions-mv2-deprecation-panel>\n       </div>` : ''}\n \n-    <div id=\"no-items\" class=\"empty-list-message\"\n-        ?hidden=\"${!this.shouldShowEmptyItemsMessage_()}\">\n-      <span @click=\"${this.onNoExtensionsClick_}\">\n-        $i18nRaw{noExtensionsOrApps}\n-      </span>\n-    </div>\n     <div id=\"no-search-results\" class=\"empty-list-message\"\n         ?hidden=\"${!this.shouldShowEmptySearchMessage_()}\">\n       <span>$i18n{noSearchResults}</span>\n--- a/chrome/browser/resources/extensions/sidebar.html.ts\n+++ b/chrome/browser/resources/extensions/sidebar.html.ts\n@@ -33,24 +33,6 @@ export function getHtml(this: Extensions\n     <cr-ripple></cr-ripple>\n   </a>\n </cr-menu-selector>\n-<div class=\"separator\" ?hidden=\"${!this.inDevMode}\"></div>\n-      ${this.inDevMode ? html`\n-        <div class=\"cr-nav-menu-item\" id=\"moreExtensions\">\n-          <span id=\"promo-message-text\" class=\"cr-secondary-text\"\n-            .innerHTML=\"${this.computeDocsPromoText_()}\">\n-          </span>\n-        </div>\n-        `: ''}\n-<div class=\"separator\"></div>\n-<div class=\"cr-nav-menu-item\" id=\"moreExtensions\">\n-  <cr-icon id=\"web-store-icon\" icon=\"extensions-icons:web_store\">\n-  </cr-icon>\n-  <span id=\"discover-more-text\" class=\"cr-secondary-text\"\n-      @click=\"${this.onMoreExtensionsClick_}\"\n-      .innerHTML=\"${this.computeDiscoverMoreText_()}\">\n-  </span>\n-  <cr-ripple></cr-ripple>\n-</div>\n <!--_html_template_end_-->`;\n   // clang-format on\n }\n--- a/chrome/browser/resources/extensions/sidebar.ts\n+++ b/chrome/browser/resources/extensions/sidebar.ts\n@@ -9,7 +9,6 @@ import './icons.html.js';\n import type {CrMenuSelector} from 'chrome://resources/cr_elements/cr_menu_selector/cr_menu_selector.js';\n import {I18nMixinLit} from 'chrome://resources/cr_elements/i18n_mixin_lit.js';\n import {assert} from 'chrome://resources/js/assert.js';\n-import {loadTimeData} from 'chrome://resources/js/load_time_data.js';\n import {CrLitElement} from 'chrome://resources/lit/v3_0/lit.rollup.js';\n import type {PropertyValues} from 'chrome://resources/lit/v3_0/lit.rollup.js';\n \n@@ -114,21 +113,6 @@ export class ExtensionsSidebarElement ex\n     }\n   }\n \n-  protected computeDiscoverMoreText_(): TrustedHTML {\n-    return this.i18nAdvanced('sidebarDiscoverMore', {\n-      tags: ['a'],\n-      attrs: ['target'],\n-      substitutions: [loadTimeData.getString('getMoreExtensionsUrl')],\n-    });\n-  }\n-\n-  protected computeDocsPromoText_(): TrustedHTML {\n-    return this.i18nAdvanced('sidebarDocsPromo', {\n-      tags: ['a'],\n-      attrs: ['target'],\n-      substitutions: [loadTimeData.getString('extensionsWhatsNewURL')],\n-    });\n-  }\n }\n \n declare global {\n--- a/chrome/browser/resources/history/side_bar.html.ts\n+++ b/chrome/browser/resources/history/side_bar.html.ts\n@@ -22,13 +22,6 @@ export function getHtml(this: HistorySid\n     $i18n{historyMenuItem}\n     <cr-ripple></cr-ripple>\n   </a>\n-  <a id=\"syncedTabs\" role=\"menuitem\" href=\"/syncedTabs\"\n-      class=\"page-item cr-nav-menu-item\"\n-      path=\"syncedTabs\" @click=\"${this.onItemClick_}\">\n-    <cr-icon icon=\"cr:phonelink\"></cr-icon>\n-    $i18n{openTabsMenuItem}\n-    <cr-ripple></cr-ripple>\n-  </a>\n   <a role=\"menuitem\" id=\"clear-browsing-data\"\n       class=\"cr-nav-menu-item\"\n       href=\"chrome://settings/clearBrowserData\"\n--- a/chrome/browser/resources/new_tab_page_incognito_guest/incognito_tab.html\n+++ b/chrome/browser/resources/new_tab_page_incognito_guest/incognito_tab.html\n@@ -24,9 +24,6 @@ document.querySelector('#incognitothemec\n   <h1>$i18n{incognitoTabHeading}</h1>\n   <p id=\"subtitle\">\n     <span>$i18n{incognitoTabDescription}</span>\n-    <a class=\"learn-more-button\"\n-        href=\"$i18n{learnMoreLink}\"\n-        aria-label=\"$i18nPolymer{learnMoreA11yLabel}\">$i18n{learnMore}</a>\n   </p>\n   <div id=\"bulletpoints-wrapper\">\n     <div class=\"bulletpoints first\">$i18nRaw{incognitoTabFeatures}</div>\n--- a/chrome/browser/resources/settings/a11y_page/a11y_page.html\n+++ b/chrome/browser/resources/settings/a11y_page/a11y_page.html\n@@ -99,10 +99,5 @@\n             sub-label=\"$i18n{toastAlertLevelDescription}\">\n         </settings-toggle-button>\n </if>\n-        <cr-link-row class=\"hr\" label=\"$i18n{moreFeaturesLink}\"\n-            on-click=\"onMoreFeaturesLinkClick_\" sub-label=\"$i18n{a11yWebStore}\"\n-            button-aria-description=\"$i18n{opensInNewTab}\"\n-            external>\n-        </cr-link-row>\n       </div>\n     </settings-section>\n--- a/chrome/browser/resources/settings/about_page/about_page.html\n+++ b/chrome/browser/resources/settings/about_page/about_page.html\n@@ -57,7 +57,7 @@\n       <div class=\"cr-row two-line\">\n         <!-- Set the icon from the iconset (when it's obsolete/EOL and\n           when update is done) or set the src (when it's updating). -->\n-<if expr=\"not is_chromeos\">\n+<if expr=\"False\">\n         <div class=\"icon-container\"\n             hidden=\"[[!shouldShowIcons_(showUpdateStatus_)]]\">\n           <cr-icon\n@@ -72,7 +72,7 @@\n         </div>\n </if>\n         <div class=\"flex cr-padded-text\">\n-<if expr=\"not is_chromeos\">\n+<if expr=\"False\">\n           <div id=\"updateStatusMessage\" hidden=\"[[!showUpdateStatus_]]\">\n             <div role=\"alert\" aria-live=\"polite\"\n                 inner-h-t-m-l=\"[[getUpdateStatusMessage_(\n@@ -128,9 +128,6 @@\n         </div>\n       </template>\n </if>\n-      <cr-link-row class=\"hr\" id=\"help\" on-click=\"onHelpClick_\"\n-          label=\"$i18n{aboutGetHelpUsingChrome}\"\n-          external></cr-link-row>\n <if expr=\"_google_chrome\">\n       <cr-link-row class=\"hr\" id=\"reportIssue\" on-click=\"onReportIssueClick_\"\n           hidden=\"[[!prefs.feedback_allowed.value]]\"\n--- a/chrome/browser/resources/settings/appearance_page/appearance_page.html\n+++ b/chrome/browser/resources/settings/appearance_page/appearance_page.html\n@@ -40,12 +40,11 @@\n     </style>\n     <settings-section page-title=\"$i18n{appearancePageTitle}\">\n       <div route-path=\"default\">\n-        <div class=\"settings-row first\" id=\"themeRow\"\n+        <div class=\"cr-row first\" id=\"themeRow\"\n             hidden=\"[[!pageVisibility.setTheme]]\">\n-          <cr-link-row id=\"openTheme\" class=\"first\"\n-              hidden=\"[[!pageVisibility.setTheme]]\"\n-              label=\"$i18n{themes}\" sub-label=\"[[themeSublabel_]]\"\n-              on-click=\"onThemeClick_\" external></cr-link-row>\n+          <div class=\"flex cr-padded-text\">\n+            <div>$i18n{themes}</div><div class=\"secondary\">[[themeSublabel_]]</div>\n+          </div>\n <if expr=\"not is_linux\">\n           <template is=\"dom-if\" if=\"[[prefs.extensions.theme.id.value]]\">\n             <div class=\"separator\"></div>\n--- a/chrome/browser/resources/settings/autofill_page/payments_section.html\n+++ b/chrome/browser/resources/settings/autofill_page/payments_section.html\n@@ -93,11 +93,6 @@\n   </div>\n </template>\n \n-<div id=\"manageLink\" class=\"cr-row\">\n-  <!-- This span lays out the link correctly, relative to the text. -->\n-  <div class=\"cr-padded-text\">$i18nRaw{manageCreditCardsLabel}</div>\n-</div>\n-\n </div>\n \n <template is=\"dom-if\" if=\"[[!isYourSavedInfoSubpage_]]\">\n--- a/chrome/browser/resources/settings/autofill_page/payments_section.ts\n+++ b/chrome/browser/resources/settings/autofill_page/payments_section.ts\n@@ -329,14 +329,6 @@ export class SettingsPaymentsSectionElem\n     // Record that the user opened the payments settings.\n     chrome.metricsPrivate.recordUserAction('AutofillCreditCardsViewed');\n \n-    // Measure clicks on the 'Google Account' link for managing payment methods.\n-    const manageAccountAnchor = this.$.manageLink.querySelector('a');\n-    if (manageAccountAnchor !== null) {\n-      manageAccountAnchor.addEventListener('click', () => {\n-        MetricsBrowserProxyImpl.getInstance().recordAction(\n-            'Autofill.PaymentMethodsSettingsPage.ManagePaymentMethodsLinkClicked');\n-      });\n-    }\n   }\n \n   override disconnectedCallback() {\n--- a/chrome/browser/resources/settings/privacy_page/personalization_options.html\n+++ b/chrome/browser/resources/settings/privacy_page/personalization_options.html\n@@ -24,7 +24,7 @@\n \n     </style>\n \n-<if expr=\"not is_chromeos\">\n+<if expr=\"False\">\n     <div id=\"chromeSigninUserChoiceSetting\" class=\"hr cr-row\" role=\"group\"\n         hidden=\"[[!chromeSigninUserChoiceInfo_.shouldShowSettings]]\"\n         aria-label=\"$i18n{chromeSigninChoiceTitle}\">\n@@ -90,12 +90,6 @@\n     </settings-toggle-button>\n </if><!-- not chromeos -->\n </if><!-- _google_chrome -->\n-    <settings-toggle-button id=\"urlCollectionToggle\"\n-        class=\"hr\"\n-        pref=\"{{prefs.url_keyed_anonymized_data_collection.enabled}}\"\n-        label=\"$i18n{urlKeyedAnonymizedDataCollection}\"\n-        sub-label=\"$i18n{urlKeyedAnonymizedDataCollectionDesc}\">\n-    </settings-toggle-button>\n <if expr=\"_google_chrome\">\n <if expr=\"not is_chromeos\">\n     <settings-toggle-button id=\"spellCheckControl\"\n--- a/chrome/browser/resources/settings/privacy_page/personalization_options.ts\n+++ b/chrome/browser/resources/settings/privacy_page/personalization_options.ts\n@@ -211,10 +211,6 @@ export class SettingsPersonalizationOpti\n         'chrome-signin-user-choice-info-change',\n         this.setChromeSigninUserChoiceInfo_.bind(this));\n     // </if>\n-\n-    this.registerHelpBubble(\n-        ANONYMIZED_URL_COLLECTION_ID,\n-        this.$.urlCollectionToggle.getBubbleAnchor(), {anchorPaddingTop: 10});\n   }\n \n   // <if expr=\"is_chromeos\">\n--- a/chrome/browser/resources/settings/privacy_page/privacy_page.html\n+++ b/chrome/browser/resources/settings/privacy_page/privacy_page.html\n@@ -23,15 +23,6 @@\n         label=\"$i18n{clearBrowsingData}\"\n         sub-label=\"$i18n{clearBrowsingDataDescription}\"\n         on-click=\"onClearBrowsingDataClick_\"></cr-link-row>\n-    <template is=\"dom-if\" if=\"[[isPrivacyGuideAvailable]]\">\n-      <cr-link-row id=\"privacyGuideLinkRow\" class=\"hr\"\n-          start-icon=\"privacy20:signpost\"\n-          label=\"$i18n{privacyGuideLabel}\"\n-          sub-label=\"$i18n{privacyGuideSublabel}\"\n-          on-click=\"onPrivacyGuideClick_\"\n-          role-description=\"$i18n{subpageArrowRoleDescription}\">\n-      </cr-link-row>\n-    </template>\n     <cr-link-row id=\"thirdPartyCookiesLinkRow\"\n         start-icon=\"privacy:cookie\"\n         class=\"hr\" label=\"$i18n{thirdPartyCookiesLinkRowLabel}\"\n--- a/chrome/browser/resources/settings/privacy_page/privacy_page_index.html\n+++ b/chrome/browser/resources/settings/privacy_page/privacy_page_index.html\n@@ -14,14 +14,6 @@\n <cr-view-manager id=\"viewManager\" class=\"cr-centered-card-container\"\n     show-all$=\"[[shouldShowAll]]\">\n \n-  <template is=\"dom-if\" if=\"[[isPrivacyGuideAvailable]]\" restamp>\n-    <settings-section slot=\"view\" id=\"privacyGuidePromo\" page-title=\"\"\n-        hidden$=\"[[!showPrivacyGuidePromo_]]\">\n-      <settings-privacy-guide-promo prefs=\"{{prefs}}\">\n-      </settings-privacy-guide-promo>\n-    </settings-section>\n-  </template>\n-\n   <template is=\"dom-if\" if=\"[[showPage_(pageVisibility_.safetyHub)]]\">\n     <template is=\"dom-if\" if=\"[[renderView_(\n         routes_.PRIVACY, currentRoute, inSearchMode)]]\" update-when-false>\n--- a/chrome/browser/resources/settings/privacy_page/privacy_page_index.ts\n+++ b/chrome/browser/resources/settings/privacy_page/privacy_page_index.ts\n@@ -7,7 +7,6 @@ import '/shared/settings/prefs/prefs.js'\n import '../safety_hub/safety_hub_entry_point.js';\n import '../settings_page/settings_section.js';\n import '../settings_shared.css.js';\n-import './privacy_guide/privacy_guide_promo.js';\n import './privacy_page.js';\n \n import {PrefsMixin} from '/shared/settings/prefs/prefs_mixin.js';\n@@ -241,13 +240,6 @@ export class SettingsPrivacyPageIndexEle\n   private getDefaultViews_(): string[] {\n     const defaultViews = ['privacy'];\n \n-    if (this.isPrivacyGuideAvailable) {\n-      defaultViews.push('privacyGuidePromo');\n-    }\n-\n-    if (this.showPage_(this.pageVisibility_.safetyHub)) {\n-      defaultViews.push('safetyHubEntryPoint');\n-    }\n \n     return defaultViews;\n   }\n@@ -379,19 +371,7 @@ export class SettingsPrivacyPageIndexEle\n   }\n \n   private updatePrivacyGuidePromoVisibility_() {\n-    if (!this.isPrivacyGuideAvailable || this.prefs === undefined ||\n-        this.getPref('privacy_guide.viewed').value ||\n-        this.privacyGuideBrowserProxy_.getPromoImpressionCount() >=\n-            MAX_PRIVACY_GUIDE_PROMO_IMPRESSION ||\n-        this.currentRoute !== routes.PRIVACY) {\n       this.showPrivacyGuidePromo_ = false;\n-      return;\n-    }\n-    this.showPrivacyGuidePromo_ = true;\n-    if (!this.privacyGuidePromoWasShown_) {\n-      this.privacyGuideBrowserProxy_.incrementPromoImpressionCount();\n-      this.privacyGuidePromoWasShown_ = true;\n-    }\n   }\n }\n \n--- a/chrome/browser/resources/settings/privacy_page/security/security_page.html\n+++ b/chrome/browser/resources/settings/privacy_page/security/security_page.html\n@@ -115,13 +115,6 @@\n     <div class=\"cr-row first\">\n       <h2 class=\"cr-title-text\">$i18n{advancedPageTitle}</h2>\n     </div>\n-    <settings-toggle-button id=\"passwordsLeakToggle\"\n-          label=\"$i18n{passwordsLeakDetectionLabel}\"\n-          pref=\"{{prefs.generated.password_leak_detection}}\"\n-          sub-label=\"[[getPasswordsLeakToggleSubLabel_(\n-                        prefs.profile.password_manager_leak_detection.*,\n-                        prefs.generated.password_leak_detection.*)]]\">\n-    </settings-toggle-button>\n     <template is=\"dom-if\" if=\"[[!enableHttpsFirstModeNewSettings_]]\" restamp>\n       <settings-toggle-button id=\"httpsOnlyModeToggle\"\n           pref=\"{{prefs.generated.https_first_mode_enabled}}\"\n@@ -172,10 +165,4 @@\n         on-click=\"onManageCertificatesClick_\" external>\n     </cr-link-row>\n \n-    <cr-link-row id=\"advancedProtectionProgramLink\" class=\"hr\"\n-        label=\"$i18n{advancedProtectionProgramTitle}\"\n-        sub-label=\"$i18n{advancedProtectionProgramDesc}\"\n-        on-click=\"onAdvancedProtectionProgramLinkClick_\"\n-        external>\n-    </cr-link-row>\n   </settings-subpage>\n--- a/chrome/browser/resources/settings/search_page/search_page.html\n+++ b/chrome/browser/resources/settings/search_page/search_page.html\n@@ -42,12 +42,6 @@\n         $i18n{searchPageTitle}\n         <div class=\"secondary\">\n           $i18n{searchEngineChoiceEntryPointSubtitle}\n-          <a href=\"$i18n{searchExplanationLearnMoreURL}\"\n-              aria-description=\"$i18n{opensInNewTab}\"\n-              aria-label=\"$i18n{searchExplanationLearnMoreA11yLabel}\"\n-              target=\"_blank\">\n-            $i18n{learnMore}\n-          </a>\n         </div>\n         <template is=\"dom-if\" if=\"[[isDefaultSearchControlledByPolicy_(\n             prefs.default_search_provider_data.template_url_data)]]\">\n--- a/chrome/browser/resources/settings/settings_page/settings_subpage.html\n+++ b/chrome/browser/resources/settings/settings_page/settings_subpage.html\n@@ -94,7 +94,7 @@\n       </template>\n       <h1 class=\"cr-title-text\">[[pageTitle]]</h1>\n       <slot name=\"subpage-title-extra\"></slot>\n-      <template is=\"dom-if\" if=\"[[learnMoreUrl]]\">\n+      <template is=\"dom-if\" if=\"[[false]]\">\n         <cr-icon-button iron-icon=\"cr:help-outline\" suppress-rtl-flip\n             aria-label=\"[[getLearnMoreAriaLabel_(pageTitle)]]\"\n             aria-description=\"$i18n{opensInNewTab}\" on-click=\"onHelpClick_\">\n--- a/chrome/browser/ui/tabs/recent_tabs_sub_menu_model.cc\n+++ b/chrome/browser/ui/tabs/recent_tabs_sub_menu_model.cc\n@@ -377,7 +377,6 @@ void RecentTabsSubMenuModel::Build() {\n   AddSeparator(ui::NORMAL_SEPARATOR);\n   history_separator_index_ = GetItemCount() - 1;\n   BuildLocalEntries();\n-  BuildTabsFromOtherDevices();\n }\n \n void RecentTabsSubMenuModel::BuildLocalEntries() {\n--- a/chrome/browser/ui/toolbar/app_menu_model.cc\n+++ b/chrome/browser/ui/toolbar/app_menu_model.cc\n@@ -1006,16 +1006,6 @@ void ExtensionsMenuModel::Build(Browser*\n   SetElementIdentifierAt(\n       GetIndexOfCommandId(IDC_EXTENSIONS_SUBMENU_MANAGE_EXTENSIONS).value(),\n       kManageExtensionsMenuItem);\n-  AddItemWithStringId(IDC_EXTENSIONS_SUBMENU_VISIT_CHROME_WEB_STORE,\n-                      IDS_EXTENSIONS_SUBMENU_CHROME_WEBSTORE_ITEM);\n-  SetElementIdentifierAt(\n-      GetIndexOfCommandId(IDC_EXTENSIONS_SUBMENU_VISIT_CHROME_WEB_STORE)\n-          .value(),\n-      kVisitChromeWebStoreMenuItem);\n-#if BUILDFLAG(GOOGLE_CHROME_BRANDING)\n-  SetCommandIcon(this, IDC_EXTENSIONS_SUBMENU_VISIT_CHROME_WEB_STORE,\n-                 vector_icons::kGoogleChromeWebstoreIcon);\n-#endif\n }\n \n ////////////////////////////////////////////////////////////////////////////////\n--- a/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.cc\n+++ b/chrome/browser/ui/views/bookmarks/bookmark_menu_delegate.cc\n@@ -1334,13 +1334,15 @@ void BookmarkMenuDelegate::BuildOtherNod\n   menu->AppendMenuItem(\n       IDC_SHOW_BOOKMARK_SIDE_PANEL,\n       l10n_util::GetStringUTF16(IDS_BOOKMARKS_ALL_BOOKMARKS_OPEN_SIDE_PANEL),\n-      bookmarks_side_panel_icon);\n+      bookmarks_side_panel_icon)->SetVisible(false);\n+\n   bool other_folder_children_count =\n       GetBookmarkMergedSurfaceService()->GetChildrenCount(\n           BookmarkParentFolder::OtherFolder());\n   if (other_folder_children_count) {\n     menu->AppendSeparator();\n     other_node_menu_separator_ = menu->GetSubmenu()->children().back().get();\n+    other_node_menu_separator_->SetVisible(false);\n   }\n }\n \n--- a/chrome/browser/ui/views/location_bar/cookie_controls/cookie_controls_content_view.cc\n+++ b/chrome/browser/ui/views/location_bar/cookie_controls/cookie_controls_content_view.cc\n@@ -158,14 +158,7 @@ void CookieControlsContentView::SetEnfor\n }\n \n void CookieControlsContentView::SetFeedbackSectionVisibility(bool visible) {\n-  if (visible && base::FeatureList::IsEnabled(\n-                     content_settings::features::kUserBypassFeedback)) {\n-    feedback_section_->SetVisible(true);\n-    // Ensure that the feedback row is always below ACT feature rows.\n-    ReorderChildView(feedback_section_, children().size());\n-  } else {\n     feedback_section_->SetVisible(false);\n-  }\n }\n \n void CookieControlsContentView::SetCookiesRowVisible(bool visible) {\n--- a/chrome/browser/ui/views/sad_tab_view.cc\n+++ b/chrome/browser/ui/views/sad_tab_view.cc\n@@ -165,9 +165,6 @@ SadTabView::SadTabView(content::WebConte\n   // There is currently no good way to handle kEnd alignment for a single\n   // element.\n   actions_container->SetLayoutManagerUseConstrainedSpace(false);\n-\n-  EnableHelpLink(actions_container);\n-\n   action_button_ =\n       actions_container->AddChildView(std::make_unique<views::MdTextButton>(\n           base::BindRepeating(&SadTabView::PerformAction,\n@@ -268,29 +265,6 @@ void SadTabView::AttachToWebView() {\n   }\n }\n \n-void SadTabView::EnableHelpLink(views::FlexLayoutView* actions_container) {\n-#if BUILDFLAG(IS_CHROMEOS)\n-  // Do not show the help link in the kiosk session to prevent escape from a\n-  // kiosk app.\n-  if (chromeos::IsKioskSession()) {\n-    return;\n-  }\n-#endif\n-  auto* help_link =\n-      actions_container->AddChildView(std::make_unique<views::Link>(\n-          l10n_util::GetStringUTF16(GetHelpLinkTitle())));\n-  help_link->SetCallback(base::BindRepeating(\n-      &SadTab::PerformAction, base::Unretained(this), Action::kHelpLink));\n-  // Set the elide behavior to tail to ensure the text is truncated with an\n-  // ellipsis if it overflows.\n-  help_link->SetElideBehavior(gfx::ELIDE_TAIL);\n-  help_link->SetProperty(views::kTableVertAlignKey,\n-                         views::LayoutAlignment::kCenter);\n-  help_link->SetProperty(\n-      views::kFlexBehaviorKey,\n-      views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToZero,\n-                               views::MaximumFlexSizeRule::kPreferred));\n-}\n \n void SadTabView::OnBoundsChanged(const gfx::Rect& previous_bounds) {\n   // Constrain title width manually since it doesn't have FlexSpecification.\n--- a/chrome/browser/ui/webui/settings/settings_localized_strings_provider.cc\n+++ b/chrome/browser/ui/webui/settings/settings_localized_strings_provider.cc\n@@ -1105,40 +1105,20 @@ void AddPerformanceStrings(content::WebU\n        IDS_SETTINGS_PERFORMANCE_TAB_HOVER_PREVIEW_CARD_LINK_SUBTITLE},\n       {\"performanceInterventionEnabledLabel\",\n        IDS_SETTINGS_PERFORMANCE_INTERVENTION_NOTIFICATION_ENABLED_LABEL},\n-  };\n-  html_source->AddLocalizedStrings(kLocalizedStrings);\n-\n-  static constexpr struct {\n-    const char* id;\n-    int message_id;\n-    const char16_t* url;\n-  } kLearnMoreStrings[] = {\n       {\"batterySaverModeDescription\",\n-       IDS_SETTINGS_PERFORMANCE_BATTERY_SAVER_MODE_SETTING_DESCRIPTION,\n-       chrome::kBatterySaverModeLearnMoreUrl},\n+       IDS_SETTINGS_PERFORMANCE_BATTERY_SAVER_MODE_SETTING_DESCRIPTION},\n       {\"discardRingTreatmentEnabledDescriptionWithLearnLink\",\n-       IDS_SETTINGS_PERFORMANCE_DISCARD_RING_TREATMENT_ENABLED_DESCRIPTION_WITH_LEARN_LINK,\n-       chrome::kDiscardRingTreatmentLearnMoreUrl},\n+       IDS_SETTINGS_PERFORMANCE_DISCARD_RING_TREATMENT_ENABLED_DESCRIPTION_WITH_LEARN_LINK},\n       {\"memorySaverModeDescription\",\n-       IDS_SETTINGS_PERFORMANCE_MEMORY_SAVER_MODE_SETTING_DESCRIPTION,\n-       chrome::kMemorySaverModeLearnMoreUrl},\n+       IDS_SETTINGS_PERFORMANCE_MEMORY_SAVER_MODE_SETTING_DESCRIPTION},\n       {\"performanceInterventionEnabledDescription\",\n-       IDS_SETTINGS_PERFORMANCE_INTERVENTION_NOTIFICATION_ENABLED_DESCRIPTION,\n-       chrome::kPerformanceInterventionLearnMoreUrl},\n+       IDS_SETTINGS_PERFORMANCE_INTERVENTION_NOTIFICATION_ENABLED_DESCRIPTION},\n       {\"preloadingToggleSummary\",\n-       IDS_SETTINGS_PERFORMANCE_PRELOAD_TOGGLE_SUMMARY,\n-       chrome::kPreloadingLearnMoreUrl}};\n-\n-  const std::u16string settings_opens_in_new_tab =\n-      l10n_util::GetStringUTF16(IDS_SETTINGS_OPENS_IN_NEW_TAB);\n-\n-  for (const auto& learn_more_string : kLearnMoreStrings) {\n-    html_source->AddString(\n-        learn_more_string.id,\n-        l10n_util::GetStringFUTF16(learn_more_string.message_id,\n-                                   learn_more_string.url,\n-                                   settings_opens_in_new_tab));\n-  }\n+       IDS_SETTINGS_PERFORMANCE_PRELOAD_TOGGLE_SUMMARY},\n+      {\"tabDiscardingExceptionsAddDialogHelp\",\n+       IDS_SETTINGS_PERFORMANCE_TAB_DISCARDING_EXCEPTIONS_ADD_DIALOG_HELP},\n+  };\n+  html_source->AddLocalizedStrings(kLocalizedStrings);\n \n   html_source->AddString(\n       \"tabDiscardTimerFiveMinutes\",\n@@ -1184,11 +1164,6 @@ void AddPerformanceStrings(content::WebU\n           base::NumberToString16(\n               performance_manager::user_tuning::BatterySaverModeManager::\n                   kLowBatteryThresholdPercent)));\n-  html_source->AddString(\n-      \"tabDiscardingExceptionsAddDialogHelp\",\n-      l10n_util::GetStringFUTF16(\n-          IDS_SETTINGS_PERFORMANCE_TAB_DISCARDING_EXCEPTIONS_ADD_DIALOG_HELP,\n-          chrome::kMemorySaverModeTabDiscardingHelpUrl));\n \n   html_source->AddString(\"discardRingTreatmentLearnMoreUrl\",\n                          chrome::kDiscardRingTreatmentLearnMoreUrl);\n--- a/chrome/browser/ui/webui/settings/settings_ui.cc\n+++ b/chrome/browser/ui/webui/settings/settings_ui.cc\n@@ -607,24 +607,17 @@ SettingsUI::SettingsUI(content::WebUI* w\n                ->UserIsActivePasswordChangeUser()},\n   };\n \n-  const bool show_ai_settings_for_testing = base::FeatureList::IsEnabled(\n-      optimization_guide::features::kAiSettingsPageForceAvailable);\n-\n-  // Show the AI features section in the AI page if any of the AI features are\n-  // enabled.\n-  bool show_ai_features_section = show_ai_settings_for_testing;\n   for (auto [name, visible] : optimization_guide_features) {\n-    html_source->AddBoolean(name, visible || show_ai_settings_for_testing);\n-    show_ai_features_section |= visible;\n+    html_source->AddBoolean(name, false);\n   }\n \n   // Within the AI subpage are separate sections for Glic and for all other AI\n   // features, the visibility of these are separately controlled but we want to\n   // show the subpage if any of the AI features or Glic are enabled.\n   html_source->AddBoolean(\"showAiPage\",\n-                          show_glic_section || show_ai_features_section);\n+                          false);\n   html_source->AddBoolean(\"showAiPageAiFeatureSection\",\n-                          show_ai_features_section);\n+                          false);\n \n   // Delete Browsing Data\n   html_source->AddBoolean(\n--- a/media/base/media_switches.cc\n+++ b/media/base/media_switches.cc\n@@ -828,7 +828,7 @@ BASE_FEATURE(kOnDeviceWebSpeech,\n BASE_FEATURE(kOnDeviceWebSpeechGeminiNano, base::FEATURE_DISABLED_BY_DEFAULT);\n \n // Enables the Live Caption feature on supported devices.\n-BASE_FEATURE(kLiveCaption, base::FEATURE_ENABLED_BY_DEFAULT);\n+BASE_FEATURE(kLiveCaption, base::FEATURE_DISABLED_BY_DEFAULT);\n \n // Logs a DumpWithoutCrashing() call each time the Speech On-Device API (SODA)\n // fails to load. Used to diagnose issues when rolling out new versions of the\n--- a/ui/views/controls/menu/menu_item_view.h\n+++ b/ui/views/controls/menu/menu_item_view.h\n@@ -321,7 +321,6 @@ class VIEWS_EXPORT MenuItemView : public\n   int GetCommand() const { return command_; }\n \n   void set_new_badge_type(std::optional<ui::NewBadgeType> new_badge_type) {\n-    new_badge_type_ = new_badge_type;\n   }\n   std::optional<ui::NewBadgeType> new_badge_type() const {\n     return new_badge_type_;\n"
  },
  {
    "path": "patches/series",
    "content": "upstream-fixes/missing-dependencies.patch\n\ncore/inox-patchset/0001-fix-building-without-safebrowsing.patch\ncore/inox-patchset/0003-disable-autofill-download-manager.patch\ncore/inox-patchset/0005-disable-default-extensions.patch\ncore/inox-patchset/0015-disable-update-pings.patch\ncore/inox-patchset/0021-disable-rlz.patch\ncore/iridium-browser/safe_browsing-disable-incident-reporting.patch\ncore/iridium-browser/safe_browsing-disable-reporting-of-safebrowsing-over.patch\ncore/iridium-browser/all-add-trk-prefixes-to-possibly-evil-connections.patch\ncore/ungoogled-chromium/disable-crash-reporter.patch\ncore/ungoogled-chromium/disable-google-host-detection.patch\ncore/ungoogled-chromium/replace-google-search-engine-with-nosearch.patch\ncore/ungoogled-chromium/toggle-translation-via-switch.patch\ncore/ungoogled-chromium/disable-untraceable-urls.patch\ncore/ungoogled-chromium/disable-profile-avatar-downloading.patch\ncore/ungoogled-chromium/disable-gcm.patch\ncore/ungoogled-chromium/disable-domain-reliability.patch\ncore/ungoogled-chromium/block-trk-and-subdomains.patch\ncore/ungoogled-chromium/disable-gaia.patch\ncore/ungoogled-chromium/disable-fonts-googleapis-references.patch\ncore/ungoogled-chromium/disable-webstore-urls.patch\ncore/ungoogled-chromium/fix-learn-doubleclick-hsts.patch\ncore/ungoogled-chromium/disable-webrtc-log-uploader.patch\ncore/ungoogled-chromium/fix-building-with-prunned-binaries.patch\ncore/ungoogled-chromium/disable-network-time-tracker.patch\ncore/ungoogled-chromium/disable-mei-preload.patch\ncore/ungoogled-chromium/fix-building-without-safebrowsing.patch\ncore/ungoogled-chromium/remove-unused-preferences-fields.patch\ncore/ungoogled-chromium/block-requests.patch\ncore/ungoogled-chromium/disable-privacy-sandbox.patch\ncore/ungoogled-chromium/doh-changes.patch\ncore/ungoogled-chromium/extensions-manifestv2.patch\ncore/ungoogled-chromium/remove-f1-shortcut.patch\ncore/ungoogled-chromium/move-js-optimizer-unfamiliar-sites.patch\ncore/ungoogled-chromium/build-with-wasm-rollup.patch\ncore/bromite/disable-fetching-field-trials.patch\n\nextra/ungoogled-chromium/add-ungoogled-flag-headers.patch\nextra/inox-patchset/0006-modify-default-prefs.patch\nextra/inox-patchset/0008-restore-classic-ntp.patch\nextra/inox-patchset/0013-disable-missing-key-warning.patch\nextra/inox-patchset/0016-chromium-sandbox-pie.patch\nextra/inox-patchset/0019-disable-battery-status-service.patch\nextra/debian/disable/google-api-warning.patch\nextra/iridium-browser/mime_util-force-text-x-suse-ymp-to-be-downloaded.patch\nextra/iridium-browser/prefs-always-prompt-for-download-directory-by-defaul.patch\nextra/iridium-browser/updater-disable-auto-update.patch\nextra/iridium-browser/Remove-EV-certificates.patch\nextra/iridium-browser/browser-disable-profile-auto-import-on-first-run.patch\nextra/bromite/fingerprinting-flags-client-rects-and-measuretext.patch\nextra/bromite/flag-max-connections-per-host.patch\nextra/bromite/flag-fingerprinting-canvas-image-data-noise.patch\nextra/ungoogled-chromium/add-components-ungoogled.patch\nextra/ungoogled-chromium/disable-formatting-in-omnibox.patch\nextra/ungoogled-chromium/add-ipv6-probing-option.patch\nextra/ungoogled-chromium/remove-disable-setuid-sandbox-as-bad-flag.patch\nextra/ungoogled-chromium/disable-intranet-redirect-detector.patch\nextra/ungoogled-chromium/enable-page-saving-on-more-pages.patch\nextra/ungoogled-chromium/disable-download-quarantine.patch\nextra/ungoogled-chromium/fix-building-without-mdns-and-service-discovery.patch\nextra/ungoogled-chromium/add-flag-to-configure-extension-downloading.patch\nextra/ungoogled-chromium/add-flag-for-search-engine-collection.patch\nextra/ungoogled-chromium/add-flag-to-disable-beforeunload.patch\nextra/ungoogled-chromium/add-flag-to-force-punycode-hostnames.patch\nextra/ungoogled-chromium/add-flag-to-show-avatar-button.patch\nextra/ungoogled-chromium/add-suggestions-url-field.patch\nextra/ungoogled-chromium/add-flag-to-hide-crashed-bubble.patch\nextra/ungoogled-chromium/add-flag-to-scroll-tabs.patch\nextra/ungoogled-chromium/enable-paste-and-go-new-tab-button.patch\nextra/ungoogled-chromium/add-flag-for-bookmark-bar-ntp.patch\nextra/ungoogled-chromium/enable-menu-on-reload-button.patch\nextra/ungoogled-chromium/add-flag-for-omnibox-autocomplete-filtering.patch\nextra/ungoogled-chromium/disable-dial-repeating-discovery.patch\nextra/ungoogled-chromium/remove-uneeded-ui.patch\nextra/ungoogled-chromium/add-flag-to-close-window-with-last-tab.patch\nextra/ungoogled-chromium/add-flag-to-convert-popups-to-tabs.patch\nextra/ungoogled-chromium/add-flag-to-disable-local-history-expiration.patch\nextra/ungoogled-chromium/add-extra-channel-info.patch\nextra/ungoogled-chromium/prepopulated-search-engines.patch\nextra/ungoogled-chromium/fix-distilled-icons.patch\nextra/ungoogled-chromium/add-flag-to-clear-data-on-exit.patch\nextra/ungoogled-chromium/add-flag-for-tabsearch-button.patch\nextra/ungoogled-chromium/add-flag-for-qr-generator.patch\nextra/ungoogled-chromium/add-flag-for-grab-handle.patch\nextra/ungoogled-chromium/add-flag-for-close-confirmation.patch\nextra/ungoogled-chromium/keep-expired-flags.patch\nextra/ungoogled-chromium/add-flag-for-custom-ntp.patch\nextra/ungoogled-chromium/add-flag-for-tab-hover-cards.patch\nextra/ungoogled-chromium/add-flag-to-hide-tab-close-buttons.patch\nextra/ungoogled-chromium/add-flag-to-disable-tls-grease.patch\nextra/ungoogled-chromium/add-flag-to-change-http-accept-header.patch\nextra/ungoogled-chromium/add-flag-to-disable-sharing-hub.patch\nextra/ungoogled-chromium/add-flag-for-disabling-link-drag.patch\nextra/ungoogled-chromium/add-flag-to-hide-extensions-menu.patch\nextra/ungoogled-chromium/add-flag-to-hide-fullscreen-exit-ui.patch\nextra/ungoogled-chromium/add-flag-for-incognito-themes.patch\nextra/ungoogled-chromium/add-flags-for-referrer-customization.patch\nextra/ungoogled-chromium/default-webrtc-ip-handling-policy.patch\nextra/ungoogled-chromium/add-flags-for-existing-switches.patch\nextra/ungoogled-chromium/first-run-page.patch\nextra/ungoogled-chromium/add-flag-to-reduce-system-info.patch\nextra/ungoogled-chromium/add-flag-to-remove-client-hints.patch\nextra/ungoogled-chromium/enable-extra-locales.patch\nextra/ungoogled-chromium/disable-chromelabs.patch\nextra/ungoogled-chromium/remove-pac-size-limit.patch\nextra/ungoogled-chromium/enable-certificate-transparency-and-add-flag.patch\nextra/ungoogled-chromium/add-flag-to-spoof-webgl-renderer-info.patch\nextra/ungoogled-chromium/add-flag-to-increase-incognito-storage-quota.patch\nextra/ungoogled-chromium/add-credits.patch\nextra/ungoogled-chromium/disable-ai-search-shortcuts.patch\nextra/ungoogled-chromium/disable-fedcm-by-default.patch\n"
  },
  {
    "path": "patches/upstream-fixes/missing-dependencies.patch",
    "content": "--- a/chrome/browser/chrome_content_browser_client.cc\n+++ b/chrome/browser/chrome_content_browser_client.cc\n@@ -329,6 +329,7 @@\n #include \"content/public/browser/internal_webui_config.h\"\n #include \"content/public/browser/isolated_web_apps_policy.h\"\n #include \"content/public/browser/legacy_tech_cookie_issue_details.h\"\n+#include \"content/public/browser/navigation_entry.h\"\n #include \"content/public/browser/navigation_handle.h\"\n #include \"content/public/browser/network_service_instance.h\"\n #include \"content/public/browser/overlay_window.h\"\n--- a/chrome/browser/extensions/BUILD.gn\n+++ b/chrome/browser/extensions/BUILD.gn\n@@ -1026,6 +1026,7 @@ source_set(\"extensions\") {\n       \"//components/resources\",\n       \"//components/safe_browsing:buildflags\",\n       \"//components/safe_browsing/content/browser/web_ui\",\n+      \"//components/safe_browsing/content/common/proto:download_file_types_proto\",\n       \"//components/safe_browsing/core/common/proto:csd_proto\",\n       \"//components/search_engines\",\n       \"//components/services/unzip/public/cpp\",\n--- a/chrome/browser/ui/views/frame/system_menu_model_builder.cc\n+++ b/chrome/browser/ui/views/frame/system_menu_model_builder.cc\n@@ -9,6 +9,7 @@\n #include \"base/strings/utf_string_conversions.h\"\n #include \"build/build_config.h\"\n #include \"chrome/app/chrome_command_ids.h\"\n+#include \"chrome/browser/profiles/profile.h\"\n #include \"chrome/browser/ui/browser_commands.h\"\n #include \"chrome/browser/ui/browser_window/public/browser_window_features.h\"\n #include \"chrome/browser/ui/tabs/features.h\"\n--- a/chrome/common/BUILD.gn\n+++ b/chrome/common/BUILD.gn\n@@ -530,6 +530,7 @@ static_library(\"url_constants\") {\n     \"//components/optimization_guide/optimization_guide_internals/webui:url_constants\",\n     \"//components/password_manager/content/common\",\n     \"//components/safe_browsing/core/common\",\n+    \"//components/supervised_user/core/common:buildflags\",\n     \"//device/vr/buildflags\",\n   ]\n \n--- a/components/component_updater/installer_policies/BUILD.gn\n+++ b/components/component_updater/installer_policies/BUILD.gn\n@@ -40,6 +40,7 @@ static_library(\"installer_policies_no_co\n     \"//components/update_client\",\n     \"//mojo/public/cpp/base:protobuf_support\",\n     \"//services/network/public/cpp\",\n+    \"//third_party/re2\",\n   ]\n \n   # Disallow depending on content.\n--- a/components/contextual_tasks/internal/BUILD.gn\n+++ b/components/contextual_tasks/internal/BUILD.gn\n@@ -43,6 +43,7 @@ source_set(\"internal\") {\n     \"//components/sync/model\",\n     \"//components/url_formatter\",\n     \"//net\",\n+    \"//third_party/re2\",\n     \"//ui/gfx\",\n     \"//url\",\n   ]\n--- a/content/browser/BUILD.gn\n+++ b/content/browser/BUILD.gn\n@@ -117,6 +117,7 @@ source_set(\"browser\") {\n     \"//components/filename_generation\",\n     \"//components/history/core/browser:features\",\n     \"//components/input\",\n+    \"//components/lens:buildflags\",\n     \"//components/language/core/common\",\n     \"//components/language_detection/content/common\",\n     \"//components/link_header_util\",\n--- a/services/passage_embeddings/BUILD.gn\n+++ b/services/passage_embeddings/BUILD.gn\n@@ -31,11 +31,11 @@ source_set(\"passage_embeddings\") {\n       \"//third_party/tflite_support:tflite_support_proto\",\n     ]\n     deps += [\n-      \"//components/optimization_guide:machine_learning_tflite_buildflags\",\n       \"//components/optimization_guide/core/inference:op_resolver\",\n       \"//services/on_device_model:ml_internal_buildflags\",\n     ]\n   }\n+  deps += [ \"//components/optimization_guide:machine_learning_tflite_buildflags\" ]\n \n   if (enable_ml_internal) {\n     deps += [ \"//services/on_device_model/ml\" ]\n"
  },
  {
    "path": "pruning.list",
    "content": "ash/display/test_data/06af5c10.icc\nash/display/test_data/0dae3211.icc\nash/display/test_data/4c834a42.icc\nash/webui/camera_app_ui/resources/js/lib/ffmpeg.wasm\nash/webui/camera_app_ui/resources/sounds/record_end.ogg\nash/webui/camera_app_ui/resources/sounds/record_pause.ogg\nash/webui/camera_app_ui/resources/sounds/record_start.ogg\nash/webui/camera_app_ui/resources/sounds/shutter.ogg\nash/webui/camera_app_ui/resources/sounds/tick_final.ogg\nash/webui/camera_app_ui/resources/sounds/tick_inc.ogg\nash/webui/camera_app_ui/resources/sounds/tick_start.ogg\nbase/test/data/file_util/binary_file.bin\nbase/test/data/file_util/binary_file_diff.bin\nbase/test/data/file_util/binary_file_same.bin\nbase/test/data/file_version_info_unittest/FileVersionInfoTest1.dll\nbase/test/data/file_version_info_unittest/no_version_info.dll\nbase/test/data/pe_image/pe_image_test_32.dll\nbase/test/data/pe_image/pe_image_test_64.dll\nbase/test/data/pe_image/pe_image_test_arm64.dll\nbase/test/data/pe_image_reader/disable_outdated_build_detector.exe\nbase/test/data/pe_image_reader/module_with_exports_x64.dll\nbase/test/data/pe_image_reader/module_with_exports_x86.dll\nbase/test/data/pe_image_reader/signed.exe\nbase/test/data/pe_image_reader/signed_twice.exe\nbase/test/data/pe_image_reader/unsigned.exe\nbase/test/data/pma_corpus/02de1d6feb232c0d7e1ebe627d2ff87fd3c61f12\nbase/test/data/pma_corpus/089c8699e4f8e8dbac17634688abb4372a8265a4\nbase/test/data/pma_corpus/1438d72013cd411240e1e8491444c415f65ddf45\nbase/test/data/pma_corpus/16a30b4859bd46299c09252d1add64083237fab6\nbase/test/data/pma_corpus/19ec42cf9685c554272a2e3df160258bcebc0a9e\nbase/test/data/pma_corpus/2052e82ae86a69bc74846d3f5255d893a52a36db\nbase/test/data/pma_corpus/35f051f7443c2b47db7a61a55a12d4fa16994322\nbase/test/data/pma_corpus/461cae7adf10e934830306f6b188aeeeef6dc4eb\nbase/test/data/pma_corpus/554ac225771de25678234a123dd4db53c43b6247\nbase/test/data/pma_corpus/60dbc642a3faaa5d605c7f9d1b3c0e22f1909804\nbase/test/data/pma_corpus/635d1e199bbdef8bab3e0480517bc7845d24c7f2\nbase/test/data/pma_corpus/6dfc1e869a876457f8caa05847a298acf6fa4267\nbase/test/data/pma_corpus/779c9cca4b37080d4e53e8632490fcb0fa407452\nbase/test/data/pma_corpus/80383e92762ab4477251de4df76466683f089291\nbase/test/data/pma_corpus/9054dd54cd53232454680f58dd874966ed37df0d\nbase/test/data/pma_corpus/998dd89a571367a817a0821f813dc014ece41101\nbase/test/data/pma_corpus/aeeb34d5307ddc6174deb4b49c597417d8f2994d\nbase/test/data/pma_corpus/b10c5d07fc11e666829a4d2baa4144555b946840\nbase/test/data/pma_corpus/c2ea0b64f11ca77b163d4449a98a6439a6574ff3\nbase/test/data/pma_corpus/cc4dee8b568b1dd3f8300148f12bb39b73b9ca9d\nbase/test/data/pma_corpus/cf1451660b2f61ee24b0d9b7369daa711048de08\nbase/test/data/pma_corpus/e5f3d47daff12a06390faeecb42eb8c8c4cce6cb\nbase/test/data/pma_corpus/e85f9c5c6dd9c85c5b8cec5eb571d92aa52147a0\nbase/test/data/pma_corpus/f6794b314fe4686c98b38428cee982900b0ad693\nbase/test/data/pma_corpus/f6bd135700d1a16b147966f7615305123dccde43\nbase/test/data/pma_corpus/fe59520ddd1b0cc390aa6b3d2d932824871efff9\nbase/test/data/tzdata/icu/44/le/metaZones.res\nbase/test/data/tzdata/icu/44/le/timezoneTypes.res\nbase/test/data/tzdata/icu/44/le/zoneinfo64.res\nbuild/android/CheckInstallApk-debug.apk\nbuild/android/java/test/missing_symbol/c.jar\nbuild/android/stacktrace/java_deobfuscate_java.jar\nbuild/android/tests/symbolize/liba.so\nbuild/android/tests/symbolize/libb.so\nbuild/linux/sysroot_scripts/keyring.gpg\nchrome/app/etw_events/MSG00001.bin\nchrome/app/etw_events/chrome_events_winTEMP.BIN\nchrome/browser/ash/power/ml/smart_dim/20190521_example_preprocessor_config.pb\nchrome/browser/navigation_predictor/test/preloading_heuristics.tflite\nchrome/browser/resources/chromeos/accessibility/common/earcons/alert_modal.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/alert_nonmodal.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/button.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/check_off.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/check_on.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/chromevox_loaded.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/chromevox_loading.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/editable_text.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/ellipsis.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/invalid_keypress.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/link.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/list_item.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/listbox.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/long_desc.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/math.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/object_close.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/object_enter.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/object_exit.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/object_open.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/object_select.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/page_finish_loading.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/page_start_loading.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/recover_focus.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/selection.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/selection_reverse.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/skip.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/wrap.ogg\nchrome/browser/resources/chromeos/accessibility/common/earcons/wrap_edge.ogg\nchrome/browser/resources/chromeos/accessibility/common/testing/fake_facegaze_assets_dlc.tar.xz\nchrome/browser/resources/chromeos/accessibility/common/testing/fake_pumpkin_dlc.tar.xz\nchrome/browser/resources/chromeos/accessibility/select_to_speak/earcons/null_selection.ogg\nchrome/browser/resources/media/mei_preload/preloaded_data.pb\nchrome/browser/ui/ash/focus_mode/test/data/certificate_sha1.crt\nchrome/credential_provider/eventlog/gcp_eventlog_messages.mc\nchrome/installer/linux/debian/repo_signing_keys.gpg\nchrome/installer/test/data/SETUP.EX_\nchrome/test/enterprise/e2e/connector/common/demo_agent/agent.zip\nchrome/test/media_router/resources/bigbuck.webm\nchrome/updater/enterprise/win/google/GoogleCloudManagement.adm\nchrome/updater/test/data/ChromiumMSI/{c28fcf72-bcf2-45c5-8def-31a74ac02012}.1.0.0.0/TestSystemMsiInstaller.msi\nchrome/updater/test/data/ChromiumMSI/{c28fcf72-bcf2-45c5-8def-31a74ac02012}.2.0.0.0/TestSystemMsiInstaller.msi\nchrome/updater/test/data/GoogleMSI/{c28fcf72-bcf2-45c5-8def-31a74ac02012}.1.0.0.0/TestSystemMsiInstaller.msi\nchrome/updater/test/data/GoogleMSI/{c28fcf72-bcf2-45c5-8def-31a74ac02012}.2.0.0.0/TestSystemMsiInstaller.msi\nchrome/updater/test/data/ProcmonConfiguration.pmc\nchrome/updater/test/data/enterprise/win/google/test_gold.adm\nchrome/updater/test/data/enterprise/win/google/test_gold.adml\nchrome/updater/test/data/enterprise/win/google/test_gold.admx\nchrome/updater/test/data/selfupdate_test_key.der\nchrome/updater/test/data/signed.exe\nchrome/updater/test/data/signed.exe.gz\nchrome/updater/test/data/tagged_encode_utf8.exe\nchrome/updater/test/data/tagged_msi/GUH-ampersand-ending.msi\nchrome/updater/test/data/tagged_msi/GUH-bad-format.msi\nchrome/updater/test/data/tagged_msi/GUH-bad-format2.msi\nchrome/updater/test/data/tagged_msi/GUH-brand-only.msi\nchrome/updater/test/data/tagged_msi/GUH-empty-key.msi\nchrome/updater/test/data/tagged_msi/GUH-empty-tag.msi\nchrome/updater/test/data/tagged_msi/GUH-empty-value.msi\nchrome/updater/test/data/tagged_msi/GUH-invalid-key.msi\nchrome/updater/test/data/tagged_msi/GUH-invalid-length.msi\nchrome/updater/test/data/tagged_msi/GUH-invalid-marker.msi\nchrome/updater/test/data/tagged_msi/GUH-multiple.msi\nchrome/updater/test/data/tagged_msi/GUH-size-greater-than-max.msi\nchrome/updater/test/data/tagged_msi/GUH-special-value.msi\nchrome/updater/test/data/tagged_msi/GUH-untagged.msi\nchrome/updater/test/data/test_certificate.pfx\nchrome/updater/test/data/test_installer/arm64/Testapp2Setup.exe\nchrome/updater/test/data/test_installer/x64/Testapp2Setup.exe\nchrome/updater/test/data/test_installer/x86/Testapp2Setup.exe\nchromeos/test/data/smart_dim/20181115_example_preprocessor_config.pb\ncomponents/cbor/reader_fuzzer_corpus/cbor0\ncomponents/cbor/reader_fuzzer_corpus/cbor1\ncomponents/cbor/reader_fuzzer_corpus/cbor11\ncomponents/cbor/reader_fuzzer_corpus/cbor13\ncomponents/cbor/reader_fuzzer_corpus/cbor17\ncomponents/cbor/reader_fuzzer_corpus/cbor18\ncomponents/cbor/reader_fuzzer_corpus/cbor19\ncomponents/cbor/reader_fuzzer_corpus/cbor20\ncomponents/cbor/reader_fuzzer_corpus/cbor22\ncomponents/cbor/reader_fuzzer_corpus/cbor24\ncomponents/cbor/reader_fuzzer_corpus/cbor25\ncomponents/cbor/reader_fuzzer_corpus/cbor26\ncomponents/cbor/reader_fuzzer_corpus/cbor27\ncomponents/cbor/reader_fuzzer_corpus/cbor28\ncomponents/cbor/reader_fuzzer_corpus/cbor29\ncomponents/cbor/reader_fuzzer_corpus/cbor3\ncomponents/cbor/reader_fuzzer_corpus/cbor30\ncomponents/cbor/reader_fuzzer_corpus/cbor31\ncomponents/cbor/reader_fuzzer_corpus/cbor32\ncomponents/cbor/reader_fuzzer_corpus/cbor33\ncomponents/cbor/reader_fuzzer_corpus/cbor34\ncomponents/cbor/reader_fuzzer_corpus/cbor35\ncomponents/cbor/reader_fuzzer_corpus/cbor36\ncomponents/cbor/reader_fuzzer_corpus/cbor37\ncomponents/cbor/reader_fuzzer_corpus/cbor38\ncomponents/cbor/reader_fuzzer_corpus/cbor39\ncomponents/cbor/reader_fuzzer_corpus/cbor4\ncomponents/cbor/reader_fuzzer_corpus/cbor45\ncomponents/cbor/reader_fuzzer_corpus/cbor48\ncomponents/cbor/reader_fuzzer_corpus/cbor49\ncomponents/cbor/reader_fuzzer_corpus/cbor5\ncomponents/cbor/reader_fuzzer_corpus/cbor50\ncomponents/cbor/reader_fuzzer_corpus/cbor51\ncomponents/cbor/reader_fuzzer_corpus/cbor54\ncomponents/cbor/reader_fuzzer_corpus/cbor6\ncomponents/cbor/reader_fuzzer_corpus/cbor63\ncomponents/cbor/reader_fuzzer_corpus/cbor64\ncomponents/cbor/reader_fuzzer_corpus/cbor65\ncomponents/cbor/reader_fuzzer_corpus/cbor67\ncomponents/cbor/reader_fuzzer_corpus/cbor68\ncomponents/cbor/reader_fuzzer_corpus/cbor7\ncomponents/cbor/reader_fuzzer_corpus/cbor71\ncomponents/cbor/reader_fuzzer_corpus/cbor72\ncomponents/cbor/reader_fuzzer_corpus/cbor74\ncomponents/cbor/reader_fuzzer_corpus/cbor75\ncomponents/cbor/reader_fuzzer_corpus/cbor76\ncomponents/cbor/reader_fuzzer_corpus/cbor77\ncomponents/cbor/reader_fuzzer_corpus/cbor78\ncomponents/cbor/reader_fuzzer_corpus/cbor79\ncomponents/cbor/reader_fuzzer_corpus/cbor8\ncomponents/cbor/reader_fuzzer_corpus/cbor9\ncomponents/domain_reliability/baked_in_configs/c_2mdn_net.json\ncomponents/domain_reliability/baked_in_configs/c_android_clients_google_com.json\ncomponents/domain_reliability/baked_in_configs/c_bigcache_googleapis_com.json\ncomponents/domain_reliability/baked_in_configs/c_doc-0-0-sj_sj_googleusercontent_com.json\ncomponents/domain_reliability/baked_in_configs/c_docs_google_com.json\ncomponents/domain_reliability/baked_in_configs/c_drive_google_com.json\ncomponents/domain_reliability/baked_in_configs/c_googlesyndication_com.json\ncomponents/domain_reliability/baked_in_configs/c_pack_google_com.json\ncomponents/domain_reliability/baked_in_configs/c_play_google_com.json\ncomponents/domain_reliability/baked_in_configs/c_youtube_com.json\ncomponents/domain_reliability/baked_in_configs/clients2_google_com.json\ncomponents/domain_reliability/baked_in_configs/docs_google_com.json\ncomponents/domain_reliability/baked_in_configs/gcp_gvt2_com.json\ncomponents/domain_reliability/baked_in_configs/gcp_gvt6_com.json\ncomponents/domain_reliability/baked_in_configs/google-analytics_com.json\ncomponents/domain_reliability/baked_in_configs/googlevideo_com.json\ncomponents/domain_reliability/baked_in_configs/gvt1_com.json\ncomponents/domain_reliability/baked_in_configs/gvt2_com.json\ncomponents/domain_reliability/baked_in_configs/gvt6_com.json\ncomponents/domain_reliability/baked_in_configs/ssl_gstatic_com.json\ncomponents/domain_reliability/baked_in_configs/www_google_com.json\ncomponents/media_router/common/providers/cast/channel/fuzz_corpus/cast_message0\ncomponents/media_router/common/providers/cast/channel/fuzz_corpus/cast_message1\ncomponents/media_router/common/providers/cast/channel/fuzz_corpus/cast_message2\ncomponents/privacy_sandbox/privacy_sandbox_attestations/preload/privacy-sandbox-attestations.dat\ncomponents/safe_browsing/content/resources/empty_file_type_policy.pb\ncomponents/safe_browsing/core/common/safe_browsing_prefs.cc\ncomponents/safe_browsing/core/common/safe_browsing_prefs.h\ncomponents/services/storage/test_data/legacy_dom_storage_database.localstorage\ncomponents/signin/public/base/signin_pref_names.cc\ncomponents/signin/public/base/signin_pref_names.h\ncomponents/system_media_controls/mac/mac_smc_diagram.jpeg\ncomponents/zucchini/fuzzers/testdata/imposed_ensemble_matcher_fuzzer/seed.asciipb\ncomponents/zucchini/fuzzers/testdata/new_eventlog_provider.dll\ncomponents/zucchini/fuzzers/testdata/old_eventlog_provider.dll\ncomponents/zucchini/fuzzers/testdata/patch_fuzzer/empty.zuc\ncomponents/zucchini/fuzzers/testdata/raw_or_ztf_gen_fuzzer/seed_proto.bin\ncomponents/zucchini/testdata/chrome64_1.exe\ncomponents/zucchini/testdata/chrome64_2.exe\ncomponents/zucchini/testdata/setup1.exe\ncomponents/zucchini/testdata/setup2.exe\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor1\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor10\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor2\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor3\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor4\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor5\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor6\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor7\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor8\ncontent/browser/devtools/devtools_protocol_encoding_cbor_fuzzer_corpus/cbor9\ncontent/browser/indexed_db/fuzzer_corpus/encoded_indexed_db_key/encoded_binary_key\ncontent/browser/indexed_db/fuzzer_corpus/encoded_indexed_db_key/encoded_date_key\ncontent/browser/indexed_db/fuzzer_corpus/encoded_indexed_db_key_path/encoded_path0\ncontent/browser/indexed_db/fuzzer_corpus/encoded_indexed_db_key_path/encoded_path1\ncontent/browser/indexed_db/fuzzer_corpus/indexed_db_key/array_type\ncontent/browser/indexed_db/fuzzer_corpus/indexed_db_key/binary_type\ncontent/browser/indexed_db/fuzzer_corpus/indexed_db_key/date_type\ncontent/browser/indexed_db/fuzzer_corpus/indexed_db_key/string_type\ncontent/browser/indexed_db/fuzzer_corpus/indexed_db_key_path/ascii\ncontent/browser/indexed_db/fuzzer_corpus/indexed_db_key_path/ascii_utf8_vector\ncontent/browser/indexed_db/fuzzer_corpus/indexed_db_key_path/utf8\ncontent/test/data/android/SelfConsumingObject.dex\ncontent/test/data/background_resource_fetch/SpaceOnly.otf\ncontent/test/data/cache_storage/corrupt_utf16_cache_name/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/4bfb34f348c2269e_0\ncontent/test/data/cache_storage/corrupt_utf16_cache_name/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/index\ncontent/test/data/cache_storage/corrupt_utf16_cache_name/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/index-dir/the-real-index\ncontent/test/data/cache_storage/invalid_bucket_id/0430f1a484a0ea6d8de562488c5fbeec0111d16f/ba31f73b-95e8-44fb-a273-265e7e76f5ab/3767fbd3edc759b5_0\ncontent/test/data/cache_storage/invalid_bucket_id/0430f1a484a0ea6d8de562488c5fbeec0111d16f/ba31f73b-95e8-44fb-a273-265e7e76f5ab/index\ncontent/test/data/cache_storage/invalid_bucket_id/0430f1a484a0ea6d8de562488c5fbeec0111d16f/ba31f73b-95e8-44fb-a273-265e7e76f5ab/index-dir/the-real-index\ncontent/test/data/cache_storage/padding_v2/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/4bfb34f348c2269e_0\ncontent/test/data/cache_storage/padding_v2/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/index\ncontent/test/data/cache_storage/padding_v2/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/index-dir/the-real-index\ncontent/test/data/cache_storage/storage_key/0430f1a484a0ea6d8de562488c5fbeec0111d16f/ba31f73b-95e8-44fb-a273-265e7e76f5ab/3767fbd3edc759b5_0\ncontent/test/data/cache_storage/storage_key/0430f1a484a0ea6d8de562488c5fbeec0111d16f/ba31f73b-95e8-44fb-a273-265e7e76f5ab/index\ncontent/test/data/cache_storage/storage_key/0430f1a484a0ea6d8de562488c5fbeec0111d16f/ba31f73b-95e8-44fb-a273-265e7e76f5ab/index-dir/the-real-index\ncontent/test/data/cache_storage/utf16_cache_name/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/4bfb34f348c2269e_0\ncontent/test/data/cache_storage/utf16_cache_name/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/index\ncontent/test/data/cache_storage/utf16_cache_name/0430f1a484a0ea6d8de562488c5fbeec0111d16f/676288ed-4de0-44af-97d6-dbd75b07a8a3/index-dir/the-real-index\ncontent/test/data/download-test1.lib\ncontent/test/data/download/empty.bin\ncontent/test/data/download/gzip-content-with-content-disposition.gz\ncontent/test/data/download/gzip-content.gz\ncontent/test/data/fuzzer_corpus/signed_exchange_certificate_chain_data/wildcard_example.org.public.pem.cbor\ncontent/test/data/gzip-content.svgz\ncontent/test/data/indexeddb/corrupt_leveldb/file__0.indexeddb.leveldb/000003.log\ncontent/test/data/indexeddb/corrupt_leveldb/file__0.indexeddb.leveldb/MANIFEST-000002\ncontent/test/data/indexeddb/crbug899446/file__0.indexeddb.leveldb/000003.log\ncontent/test/data/indexeddb/crbug899446/file__0.indexeddb.leveldb/MANIFEST-000001\ncontent/test/data/indexeddb/crbug899446_noai/file__0.indexeddb.leveldb/000003.log\ncontent/test/data/indexeddb/crbug899446_noai/file__0.indexeddb.leveldb/MANIFEST-000001\ncontent/test/data/indexeddb/missing_sst/file__0.indexeddb.leveldb/000008.sst\ncontent/test/data/indexeddb/missing_sst/file__0.indexeddb.leveldb/MANIFEST-000007\ncontent/test/data/indexeddb/schema_version_123456/file__0.indexeddb.leveldb/000003.log\ncontent/test/data/indexeddb/schema_version_123456/file__0.indexeddb.leveldb/MANIFEST-000002\ncontent/test/data/indexeddb/ssv_version_987654/file__0.indexeddb.leveldb/000003.log\ncontent/test/data/indexeddb/ssv_version_987654/file__0.indexeddb.leveldb/MANIFEST-000002\ncontent/test/data/indexeddb/v3_migration_test/file__0.indexeddb.blob/1/00/5\ncontent/test/data/indexeddb/v3_migration_test/file__0.indexeddb.leveldb/000003.log\ncontent/test/data/indexeddb/v3_migration_test/file__0.indexeddb.leveldb/MANIFEST-000001\ncontent/test/data/interest_group/auction_only.wbn\ncontent/test/data/interest_group/auction_only_both_new_and_old_names.wbn\ncontent/test/data/interest_group/auction_only_new_name.wbn\ncontent/test/data/interest_group/multiply.wasm\ncontent/test/data/loader/compressed.html.gz\ncontent/test/data/loader/compressed.js.gz\ncontent/test/data/shared_dictionary/path/compressed.data\ncontent/test/data/shared_dictionary/test.dict.gz\ncontent/test/data/site_isolation/nosniff.png.octet-stream\ncontent/test/data/sxg/127.0.0.1.public.pem.cbor\ncontent/test/data/sxg/google-com.example.org.public.pem.cbor\ncontent/test/data/sxg/google-com.example.org_test.sxg\ncontent/test/data/sxg/test.example.com_invalid_test.sxg\ncontent/test/data/sxg/test.example.org-long-validity.public.pem.cbor\ncontent/test/data/sxg/test.example.org-noext.public.pem.cbor\ncontent/test/data/sxg/test.example.org-validity-too-long.public.pem.cbor\ncontent/test/data/sxg/test.example.org.public.pem.cbor\ncontent/test/data/sxg/test.example.org_bad_content_type.sxg\ncontent/test/data/sxg/test.example.org_cert_validity_too_long.sxg\ncontent/test/data/sxg/test.example.org_csp.sxg\ncontent/test/data/sxg/test.example.org_fr_variant.sxg\ncontent/test/data/sxg/test.example.org_hello.txt.sxg\ncontent/test/data/sxg/test.example.org_long_cert_validity.sxg\ncontent/test/data/sxg/test.example.org_noext_test.sxg\ncontent/test/data/sxg/test.example.org_test.html.gz.sxg\ncontent/test/data/sxg/test.example.org_test.sxg\ncontent/test/data/sxg/test.example.org_test.sxg.gz\ncontent/test/data/sxg/test.example.org_test_bad_mice.sxg\ncontent/test/data/sxg/test.example.org_test_bad_mice_small.sxg\ncontent/test/data/sxg/test.example.org_test_download.sxg\ncontent/test/data/sxg/test.example.org_test_invalid_cbor_header.sxg\ncontent/test/data/sxg/test.example.org_test_invalid_content_type.sxg\ncontent/test/data/sxg/test.example.org_test_invalid_magic_string.sxg\ncontent/test/data/sxg/test.example.org_test_missing_nosniff.sxg\ncontent/test/data/sxg/test.example.org_vary_cookie.sxg\ncontent/test/data/web_bundle/broken_bundle_base_b2.wbn\ncontent/test/data/web_bundle/broken_bundle_broken_first_entry_b2.wbn\ncontent/test/data/web_bundle/broken_bundle_broken_script_entry_b2.wbn\ncontent/test/data/web_bundle/cross_origin_b2.wbn\ncontent/test/data/web_bundle/foo_base_url_bundle_b2.wbn\ncontent/test/data/web_bundle/foo_primary_url_bundle_b2.wbn\ncontent/test/data/web_bundle/same_origin_b2.wbn\ncontent/test/data/web_bundle/uuid-in-package.wbn\ncontent/test/data/web_bundle/web_bundle_browsertest_b2.wbn\ndevice/bluetooth/bluez/ble_scan_parser/data/bad-128-bit-service-uuid\ndevice/bluetooth/bluez/ble_scan_parser/data/bad-16-bit-service-uuid\ndevice/bluetooth/bluez/ble_scan_parser/data/bad-32-bit-service-uuid\ndevice/bluetooth/bluez/ble_scan_parser/data/bad-length-0\ndevice/bluetooth/bluez/ble_scan_parser/data/bad-length-1\ndevice/bluetooth/bluez/ble_scan_parser/data/bad-manufacturer-data-map\ndevice/bluetooth/bluez/ble_scan_parser/data/bad-service-data-map\ndevice/bluetooth/bluez/ble_scan_parser/data/invalid-utf8-name\ndevice/bluetooth/bluez/ble_scan_parser/data/multiple-advertisement-names\ndevice/bluetooth/bluez/ble_scan_parser/data/multiple-byte-flags-field\ndevice/bluetooth/bluez/ble_scan_parser/data/multiple-byte-tx-power-field\ndevice/bluetooth/bluez/ble_scan_parser/data/multiple-flags-packets\ndevice/bluetooth/bluez/ble_scan_parser/data/multiple-tx-power-packets\ndevice/bluetooth/bluez/ble_scan_parser/data/regular\ndevice/bluetooth/bluez/ble_scan_parser/data/unknown-data-type\ndevice/fido/response_data_fuzzer_corpus/get_assertion_response_corpus\ndevice/fido/response_data_fuzzer_corpus/make_credential_response_corpus\ndevice/fido/response_data_fuzzer_corpus/register1\ndevice/fido/response_data_fuzzer_corpus/sign0\ndevice/fido/response_data_fuzzer_corpus/sign1\ndocs/website/site/administrators/ios-mdm-policy-format/ios_chrome_policy.plist\nfuchsia_web/webengine/test/data/bear-44.1kHz.webm\nfuchsia_web/webengine/test/data/bear-48kHz.webm\nfuchsia_web/webengine/test/data/bear-vp8a.webm\nfuchsia_web/webengine/test/data/bear-vp9-opus.webm\nfuchsia_web/webengine/test/data/bear-vp9.webm\nheadless/test/data/protocol/emulation/resources/video.webm\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/chunk1-config-idr.bin\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/chunk2-non-idr.bin\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/chunk3-non-idr.bin\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/chunk4-non-idr.bin\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/chunk5-non-idr.bin\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/chunk6-config-idr.bin\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/chunk7-non-idr.bin\nmedia/formats/mp4/h264_annex_b_fuzz_corpus/pps_neq_sps_config_idr.bin\nmedia/formats/mp4/h265_annex_b_fuzz_corpus/chunk1-config-idr.bin\nmedia/formats/mp4/h265_annex_b_fuzz_corpus/chunk2-non-idr.bin\nmedia/formats/mp4/h265_annex_b_fuzz_corpus/chunk3-non-idr.bin\nmedia/formats/mp4/h265_annex_b_fuzz_corpus/chunk4-non-idr.bin\nmedia/formats/mp4/h265_annex_b_fuzz_corpus/chunk5-non-idr.bin\nmedia/formats/mp4/h265_annex_b_fuzz_corpus/chunk6-config-idr.bin\nmedia/formats/mp4/h265_annex_b_fuzz_corpus/chunk7-non-idr.bin\nmedia/midi/fuzz/corpus/broken_data_3\nmedia/midi/fuzz/corpus/channel_pressure\nmedia/midi/fuzz/corpus/channel_pressure_with_running_status\nmedia/midi/fuzz/corpus/data_byte_0\nmedia/midi/fuzz/corpus/gm_on\nmedia/midi/fuzz/corpus/gm_on_with_real_time_clock\nmedia/midi/fuzz/corpus/gs_on\nmedia/midi/fuzz/corpus/mtc_frame\nmedia/midi/fuzz/corpus/note_on\nmedia/midi/fuzz/corpus/note_on_with_real_time_clock\nmedia/midi/fuzz/corpus/note_on_with_running_status\nmedia/midi/fuzz/corpus/partial_gm_on_2\nmedia/midi/fuzz/corpus/partial_note_on_3\nmedia/midi/fuzz/corpus/reserved_message_1_with_data_bytes\nmojo/public/tools/fuzzers/message_corpus/array_bool.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_0.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_1.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_10.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_11.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_2.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_3.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_4.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_5.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_6.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_7.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_8.mojomsg\nmojo/public/tools/fuzzers/message_corpus/message_9.mojomsg\nnet/data/cache_tests/bad_entry/data_0\nnet/data/cache_tests/bad_entry/data_1\nnet/data/cache_tests/bad_entry/data_2\nnet/data/cache_tests/bad_entry/data_3\nnet/data/cache_tests/bad_entry/index\nnet/data/cache_tests/bad_rankings/data_0\nnet/data/cache_tests/bad_rankings/data_1\nnet/data/cache_tests/bad_rankings/data_2\nnet/data/cache_tests/bad_rankings/data_3\nnet/data/cache_tests/bad_rankings/index\nnet/data/cache_tests/bad_rankings2/data_0\nnet/data/cache_tests/bad_rankings2/data_1\nnet/data/cache_tests/bad_rankings2/data_2\nnet/data/cache_tests/bad_rankings2/data_3\nnet/data/cache_tests/bad_rankings2/index\nnet/data/cache_tests/bad_rankings3/data_0\nnet/data/cache_tests/bad_rankings3/data_1\nnet/data/cache_tests/bad_rankings3/data_2\nnet/data/cache_tests/bad_rankings3/data_3\nnet/data/cache_tests/bad_rankings3/index\nnet/data/cache_tests/dirty_entry3/data_0\nnet/data/cache_tests/dirty_entry3/data_1\nnet/data/cache_tests/dirty_entry3/data_2\nnet/data/cache_tests/dirty_entry3/data_3\nnet/data/cache_tests/dirty_entry3/index\nnet/data/cache_tests/dirty_entry4/data_0\nnet/data/cache_tests/dirty_entry4/data_1\nnet/data/cache_tests/dirty_entry4/data_2\nnet/data/cache_tests/dirty_entry4/data_3\nnet/data/cache_tests/dirty_entry4/index\nnet/data/cache_tests/dirty_entry5/data_0\nnet/data/cache_tests/dirty_entry5/data_1\nnet/data/cache_tests/dirty_entry5/data_2\nnet/data/cache_tests/dirty_entry5/data_3\nnet/data/cache_tests/dirty_entry5/index\nnet/data/cache_tests/good_2_0/data_0\nnet/data/cache_tests/good_2_0/data_1\nnet/data/cache_tests/good_2_0/data_2\nnet/data/cache_tests/good_2_0/data_3\nnet/data/cache_tests/good_2_0/index\nnet/data/cache_tests/good_2_1/data_0\nnet/data/cache_tests/good_2_1/data_1\nnet/data/cache_tests/good_2_1/data_2\nnet/data/cache_tests/good_2_1/data_3\nnet/data/cache_tests/good_2_1/index\nnet/data/cache_tests/insert_empty1/data_0\nnet/data/cache_tests/insert_empty1/data_1\nnet/data/cache_tests/insert_empty1/data_2\nnet/data/cache_tests/insert_empty1/data_3\nnet/data/cache_tests/insert_empty1/index\nnet/data/cache_tests/insert_empty2/data_0\nnet/data/cache_tests/insert_empty2/data_1\nnet/data/cache_tests/insert_empty2/data_2\nnet/data/cache_tests/insert_empty2/data_3\nnet/data/cache_tests/insert_empty2/index\nnet/data/cache_tests/insert_empty3/data_0\nnet/data/cache_tests/insert_empty3/data_1\nnet/data/cache_tests/insert_empty3/data_2\nnet/data/cache_tests/insert_empty3/data_3\nnet/data/cache_tests/insert_empty3/index\nnet/data/cache_tests/insert_load1/data_0\nnet/data/cache_tests/insert_load1/data_1\nnet/data/cache_tests/insert_load1/data_2\nnet/data/cache_tests/insert_load1/data_3\nnet/data/cache_tests/insert_load1/index\nnet/data/cache_tests/insert_load2/data_0\nnet/data/cache_tests/insert_load2/data_1\nnet/data/cache_tests/insert_load2/data_2\nnet/data/cache_tests/insert_load2/data_3\nnet/data/cache_tests/insert_load2/index\nnet/data/cache_tests/insert_one1/data_0\nnet/data/cache_tests/insert_one1/data_1\nnet/data/cache_tests/insert_one1/data_2\nnet/data/cache_tests/insert_one1/data_3\nnet/data/cache_tests/insert_one1/index\nnet/data/cache_tests/insert_one2/data_0\nnet/data/cache_tests/insert_one2/data_1\nnet/data/cache_tests/insert_one2/data_2\nnet/data/cache_tests/insert_one2/data_3\nnet/data/cache_tests/insert_one2/index\nnet/data/cache_tests/insert_one3/data_0\nnet/data/cache_tests/insert_one3/data_1\nnet/data/cache_tests/insert_one3/data_2\nnet/data/cache_tests/insert_one3/data_3\nnet/data/cache_tests/insert_one3/index\nnet/data/cache_tests/list_loop/data_0\nnet/data/cache_tests/list_loop/data_1\nnet/data/cache_tests/list_loop/data_2\nnet/data/cache_tests/list_loop/data_3\nnet/data/cache_tests/list_loop/index\nnet/data/cache_tests/list_loop2/data_0\nnet/data/cache_tests/list_loop2/data_1\nnet/data/cache_tests/list_loop2/data_2\nnet/data/cache_tests/list_loop2/data_3\nnet/data/cache_tests/list_loop2/index\nnet/data/cache_tests/list_loop3/data_0\nnet/data/cache_tests/list_loop3/data_1\nnet/data/cache_tests/list_loop3/data_2\nnet/data/cache_tests/list_loop3/data_3\nnet/data/cache_tests/list_loop3/index\nnet/data/cache_tests/remove_head1/data_0\nnet/data/cache_tests/remove_head1/data_1\nnet/data/cache_tests/remove_head1/data_2\nnet/data/cache_tests/remove_head1/data_3\nnet/data/cache_tests/remove_head1/index\nnet/data/cache_tests/remove_head2/data_0\nnet/data/cache_tests/remove_head2/data_1\nnet/data/cache_tests/remove_head2/data_2\nnet/data/cache_tests/remove_head2/data_3\nnet/data/cache_tests/remove_head2/index\nnet/data/cache_tests/remove_head3/data_0\nnet/data/cache_tests/remove_head3/data_1\nnet/data/cache_tests/remove_head3/data_2\nnet/data/cache_tests/remove_head3/data_3\nnet/data/cache_tests/remove_head3/index\nnet/data/cache_tests/remove_head4/data_0\nnet/data/cache_tests/remove_head4/data_1\nnet/data/cache_tests/remove_head4/data_2\nnet/data/cache_tests/remove_head4/data_3\nnet/data/cache_tests/remove_head4/index\nnet/data/cache_tests/remove_load1/data_0\nnet/data/cache_tests/remove_load1/data_1\nnet/data/cache_tests/remove_load1/data_2\nnet/data/cache_tests/remove_load1/data_3\nnet/data/cache_tests/remove_load1/index\nnet/data/cache_tests/remove_load2/data_0\nnet/data/cache_tests/remove_load2/data_1\nnet/data/cache_tests/remove_load2/data_2\nnet/data/cache_tests/remove_load2/data_3\nnet/data/cache_tests/remove_load2/index\nnet/data/cache_tests/remove_load3/data_0\nnet/data/cache_tests/remove_load3/data_1\nnet/data/cache_tests/remove_load3/data_2\nnet/data/cache_tests/remove_load3/data_3\nnet/data/cache_tests/remove_load3/index\nnet/data/cache_tests/remove_one1/data_0\nnet/data/cache_tests/remove_one1/data_1\nnet/data/cache_tests/remove_one1/data_2\nnet/data/cache_tests/remove_one1/data_3\nnet/data/cache_tests/remove_one1/index\nnet/data/cache_tests/remove_one2/data_0\nnet/data/cache_tests/remove_one2/data_1\nnet/data/cache_tests/remove_one2/data_2\nnet/data/cache_tests/remove_one2/data_3\nnet/data/cache_tests/remove_one2/index\nnet/data/cache_tests/remove_one3/data_0\nnet/data/cache_tests/remove_one3/data_1\nnet/data/cache_tests/remove_one3/data_2\nnet/data/cache_tests/remove_one3/data_3\nnet/data/cache_tests/remove_one3/index\nnet/data/cache_tests/remove_one4/data_0\nnet/data/cache_tests/remove_one4/data_1\nnet/data/cache_tests/remove_one4/data_2\nnet/data/cache_tests/remove_one4/data_3\nnet/data/cache_tests/remove_one4/index\nnet/data/cache_tests/remove_tail1/data_0\nnet/data/cache_tests/remove_tail1/data_1\nnet/data/cache_tests/remove_tail1/data_2\nnet/data/cache_tests/remove_tail1/data_3\nnet/data/cache_tests/remove_tail1/index\nnet/data/cache_tests/remove_tail2/data_0\nnet/data/cache_tests/remove_tail2/data_1\nnet/data/cache_tests/remove_tail2/data_2\nnet/data/cache_tests/remove_tail2/data_3\nnet/data/cache_tests/remove_tail2/index\nnet/data/cache_tests/remove_tail3/data_0\nnet/data/cache_tests/remove_tail3/data_1\nnet/data/cache_tests/remove_tail3/data_2\nnet/data/cache_tests/remove_tail3/data_3\nnet/data/cache_tests/remove_tail3/index\nnet/data/cache_tests/wrong_version/index\nnet/data/cert_net_fetcher_impl_unittest/gzipped_crl\nnet/data/filter_unittests/google.br\nnet/data/filter_unittests/google.sbr\nnet/data/filter_unittests/google.szst\nnet/data/filter_unittests/google.zst\nnet/data/fuzzer_data/crl_getcrlstatusforcert_fuzzer/bad_empty_extensions\nnet/data/fuzzer_data/crl_getcrlstatusforcert_fuzzer/bad_empty_sequence\nnet/data/fuzzer_data/crl_getcrlstatusforcert_fuzzer/good\nnet/data/fuzzer_data/crl_getcrlstatusforcert_fuzzer/good_no_extensions\nnet/data/fuzzer_data/crl_parse_crl_certificatelist_fuzzer/good_minimal\nnet/data/fuzzer_data/crl_parse_crl_tbscertlist_fuzzer/good\nnet/data/fuzzer_data/crl_parse_crl_tbscertlist_fuzzer/good_noextensions\nnet/data/fuzzer_data/crl_parse_crl_tbscertlist_fuzzer/good_nonextupdate\nnet/data/fuzzer_data/crl_parse_crl_tbscertlist_fuzzer/good_nooptionals\nnet/data/fuzzer_data/crl_parse_crl_tbscertlist_fuzzer/good_norevokedcerts\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/empty_sequence\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_distributionPoint_fullName_uri\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_distributionPoint_nameRelativeToCRLIssuer\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_dpname_onlyca_reasons_and_indirectcrl\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_indirectCrl\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_onlyContainsAttributeCerts\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_onlyContainsCaCerts\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_onlyContainsUserCerts\nnet/data/fuzzer_data/crl_parse_issuing_distribution_point_fuzzer/idp_with_onlySomeReasons\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/044c89073dda2578e218e8934869f0a15c121a38\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/0620fb60b2ff9ff795e2dd413d0545ca58f63709\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/2268bc00bd254f5cb58988df68732f3467c45fc4\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/3e4a076acb3d00966a7763e3ad89ca5e72509175\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/4670070b564199f319dbec20005f5903bcbc5490\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/4f86c3a7a92e81bf244b3368262742fe96a2fb09\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/503597a1559e5f9d51cb9e66b74a9ae301df2f6c\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/5ba93c9db0cff93f52b521d7420e43f6eda2784f\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/69680cbb83d53048e155e2aa8b82d8a6394881c2\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/7fa9b019da0c7f9f31064f5ffe1e848c22ecdf1d\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/9620ade7bd026caa500fb35f345a9e28eb8637e8\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/9e5bd6e1df85d8ae062a3b3590db38069b7e7195\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/ae2b8e89c5bff5cbcf95128a5c19cfb0da0fb5a2\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/b4c123b1ddc222437bc1d0b75a96c5aa6c6cf4a0\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/b69c8bcecde14710f78c2b67686d40dd13bc3ef5\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/b79b2d8e1b636e7587cac2dc7929c6191bdaf1c1\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/c2e91e458ba641913f110a1d8389ca4511b5bee9\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/ce74af6e2ce87543db9d75b4a12914e173a72e9b\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/dafea2c7c305815546f43e13a376c5c5216bff22\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/e66eb703ff487697a9c47b2cd8f92cebd50805a2\nnet/data/fuzzer_data/ct_decode_signed_certificate_timestamp_fuzzer/f24a615d79cfde25caa8cb6b355e8b95fb1da755\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/1\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/10\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/2\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/3\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/4\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/5\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/6\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/7\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/8\nnet/data/fuzzer_data/dns_parse_domain_ascii_win_fuzzer/9\nnet/data/fuzzer_data/http_server_requests/websocket.bin\nnet/data/fuzzer_data/net_crl_set_fuzzer/crlset_by_intermediate_serial.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/crlset_by_leaf_spki.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/crlset_by_leaf_subject_no_spki.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/crlset_by_root_serial.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/crlset_by_root_subject.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/crlset_by_root_subject_no_spki.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/multi-root-crlset-C.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/multi-root-crlset-CD-and-FE.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/multi-root-crlset-D-and-E.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/multi-root-crlset-E.raw\nnet/data/fuzzer_data/net_crl_set_fuzzer/multi-root-crlset-unrelated.raw\nnet/data/fuzzer_data/net_spdy_session_fuzzer/simple_reply.bin\nnet/data/fuzzer_data/ntlm_client_fuzzer/01203e2ff7f2a628bce6a5abf01e45a9b65a2e3d\nnet/data/fuzzer_data/ntlm_client_fuzzer/01f23d6e8afac727dda9fc22bbbc8f20a8859673\nnet/data/fuzzer_data/ntlm_client_fuzzer/0244efc4be5c51b0505e50de5e47daf3e8ae8742\nnet/data/fuzzer_data/ntlm_client_fuzzer/026cd7d12bea861f2b7baebc50be69be1b72fefe\nnet/data/fuzzer_data/ntlm_client_fuzzer/02d80cc4f69dd2a551260c40d166b79cdfa4c838\nnet/data/fuzzer_data/ntlm_client_fuzzer/0302fa512febc55193ce6540e764571f9facf813\nnet/data/fuzzer_data/ntlm_client_fuzzer/034701a8073fe971199e7ed4e6cab470ee8a2fe4\nnet/data/fuzzer_data/ntlm_client_fuzzer/037f9ac35de20158ea386c19269991ed33d6a951\nnet/data/fuzzer_data/ntlm_client_fuzzer/03a3f03e4a4d9de0d367225b603cb3c5fb635f61\nnet/data/fuzzer_data/ntlm_client_fuzzer/03c22fdc462d8b54a1fd24a5c4b4661eb51d76a7\nnet/data/fuzzer_data/ntlm_client_fuzzer/03e0c068a82dafd93073f08edd1c8f97347485dc\nnet/data/fuzzer_data/ntlm_client_fuzzer/044ac82504b0dda496fdf3456a27ff136e39048f\nnet/data/fuzzer_data/ntlm_client_fuzzer/0647d364263be75a106c2293dddb2997d82bc1ea\nnet/data/fuzzer_data/ntlm_client_fuzzer/0803b67bce74b3b876cc1d8ca047c3c6525bb2f2\nnet/data/fuzzer_data/ntlm_client_fuzzer/08bc64a82929e407eea458a3c0e4fa3e1b7c1398\nnet/data/fuzzer_data/ntlm_client_fuzzer/0942e6e953337a57ac73a2f2e703351254f87359\nnet/data/fuzzer_data/ntlm_client_fuzzer/09f7b28ea6955d2f87e9f1e55a6765a2aa269e10\nnet/data/fuzzer_data/ntlm_client_fuzzer/0ab346eeba99eacb19cb4d63dd12a6b5e169a587\nnet/data/fuzzer_data/ntlm_client_fuzzer/0abe5d060e437a1f618f3f9ec5420a374d648b21\nnet/data/fuzzer_data/ntlm_client_fuzzer/0c46616e57abbd4e89bb6cf2bb19df2a809a5c91\nnet/data/fuzzer_data/ntlm_client_fuzzer/0c6cc056a72ebf716857512876078d9ffe917a81\nnet/data/fuzzer_data/ntlm_client_fuzzer/0dc7622b02da50407f79a73d2909e65a09d17b85\nnet/data/fuzzer_data/ntlm_client_fuzzer/0e355d86c93728d6263cd51f726e0230fe7931ba\nnet/data/fuzzer_data/ntlm_client_fuzzer/0e4cee87b556bfba2fd1239f1ad1b457f8105f39\nnet/data/fuzzer_data/ntlm_client_fuzzer/0e4dc539d5dfa67f4facdf141572e08c978d6fe0\nnet/data/fuzzer_data/ntlm_client_fuzzer/0e4ff4575f703c940a9c6e5acd839d9216b3ca0d\nnet/data/fuzzer_data/ntlm_client_fuzzer/0e588cbf738d34b2f13e95c546a064f5b7bd8848\nnet/data/fuzzer_data/ntlm_client_fuzzer/0f9afcd39a061b3e776a51e423306858c5b9e11e\nnet/data/fuzzer_data/ntlm_client_fuzzer/0fa22dad896b1f0ae887081a0e77294f07291300\nnet/data/fuzzer_data/ntlm_client_fuzzer/102f00bacea338af33b5f23d1d01ded0ebdcf369\nnet/data/fuzzer_data/ntlm_client_fuzzer/10460aff1bc6b2c32c93aeac43c8e3bb8ccc4b63\nnet/data/fuzzer_data/ntlm_client_fuzzer/1075494403238466401ba7e98528a1c93fd03c75\nnet/data/fuzzer_data/ntlm_client_fuzzer/11409704564523f357bc2501299f0560e6d2ba1b\nnet/data/fuzzer_data/ntlm_client_fuzzer/122fea9881e7db62509b3804fb6ce865fa495f7f\nnet/data/fuzzer_data/ntlm_client_fuzzer/1333ad6d4f1f1fd8cc078ead0dd88f04d367e7a8\nnet/data/fuzzer_data/ntlm_client_fuzzer/134b19a1ea68b60334f69096ca22b6176c44b403\nnet/data/fuzzer_data/ntlm_client_fuzzer/1388e8e8b4566c421add09bee7ebb5c41e2d7e34\nnet/data/fuzzer_data/ntlm_client_fuzzer/138fc3f74a48b5baa8df9d713356325d166b1388\nnet/data/fuzzer_data/ntlm_client_fuzzer/143bc2719dea6729691e0fc34f64dad32bcc62ff\nnet/data/fuzzer_data/ntlm_client_fuzzer/14615b09db0e4e37be85e03a7179b8b0c2a5cb15\nnet/data/fuzzer_data/ntlm_client_fuzzer/147766dd358533ebd6c1c283c5e37a8cf6c4da73\nnet/data/fuzzer_data/ntlm_client_fuzzer/151a43bfed2bd5f11026493da3e16c035157cb11\nnet/data/fuzzer_data/ntlm_client_fuzzer/153179bcb467be5095364f3d2f0be07e155d5c58\nnet/data/fuzzer_data/ntlm_client_fuzzer/15c5f5babd0528ad65ba28305e9e865356bb38a0\nnet/data/fuzzer_data/ntlm_client_fuzzer/16a3ee53bb0725521e75183c330098ed8e7f99cf\nnet/data/fuzzer_data/ntlm_client_fuzzer/16c35aa3576f6ffbb06da2768b5ca1486b15a40b\nnet/data/fuzzer_data/ntlm_client_fuzzer/16fed049249f5aa3832bf429eab206cf4689d3b5\nnet/data/fuzzer_data/ntlm_client_fuzzer/197fad1cea9da68b123babf1e8df9e83255c22c9\nnet/data/fuzzer_data/ntlm_client_fuzzer/1a82584c47daae274bfe1cea1cb081d1fb228d70\nnet/data/fuzzer_data/ntlm_client_fuzzer/1ca5e9d227530ce08d8e2d42c0447ef45a0f25a1\nnet/data/fuzzer_data/ntlm_client_fuzzer/1d67261ebda07ceefb06bb713b1d25dd99a33589\nnet/data/fuzzer_data/ntlm_client_fuzzer/1d6c196cf8c3efefddcd999ab1e4878f8a19ef16\nnet/data/fuzzer_data/ntlm_client_fuzzer/1da4ef3ac2215168f21e0c0307c8ff1a378db066\nnet/data/fuzzer_data/ntlm_client_fuzzer/1ede738afa5e205400219fc1a5769d3a606f040f\nnet/data/fuzzer_data/ntlm_client_fuzzer/1f11c0ad6d9a757fa3c8f0a61ac5e395b742c61a\nnet/data/fuzzer_data/ntlm_client_fuzzer/1f1e86892d346d74c799aab61ee6af49da9d00c4\nnet/data/fuzzer_data/ntlm_client_fuzzer/1f54d6736191a548c84f237055c2fbd4a86e7c21\nnet/data/fuzzer_data/ntlm_client_fuzzer/2033f396b944bca17f9cb3313bb90ecd610cab36\nnet/data/fuzzer_data/ntlm_client_fuzzer/20f504bd29e29812774ce457f767e47e73f23023\nnet/data/fuzzer_data/ntlm_client_fuzzer/215780324cbaef6ca393b024a1e6778e2ab15072\nnet/data/fuzzer_data/ntlm_client_fuzzer/220e4450d385f928529bbf2bc9d2e36489fb369f\nnet/data/fuzzer_data/ntlm_client_fuzzer/2211b57efb1c063d990f622d76b1a4cd05442f98\nnet/data/fuzzer_data/ntlm_client_fuzzer/22409d9dcb3237237fb6b7c13ea20a4e6894b5e8\nnet/data/fuzzer_data/ntlm_client_fuzzer/23366157f225b7ea1db0cdb727e0fdaa99e44c74\nnet/data/fuzzer_data/ntlm_client_fuzzer/24762da37ca2c2c37a0dc25cafc0e5bb4a6baeea\nnet/data/fuzzer_data/ntlm_client_fuzzer/24c362559e0b8ddfcacdfde00c62f31b3677c329\nnet/data/fuzzer_data/ntlm_client_fuzzer/2554d02e4f60ab78a3fba0520662741b982e1851\nnet/data/fuzzer_data/ntlm_client_fuzzer/2589babca729ea1abbe68c105e3177ac1c5d2432\nnet/data/fuzzer_data/ntlm_client_fuzzer/266787fc74d850fb0f78ea7f008e90a3c56412ce\nnet/data/fuzzer_data/ntlm_client_fuzzer/267ef194f9e4145a90d7b846993781da09b494d0\nnet/data/fuzzer_data/ntlm_client_fuzzer/26a712e13ee958b1af178ab3e3319550fb09bce2\nnet/data/fuzzer_data/ntlm_client_fuzzer/26a932f75448fbfd9f32cd85e3869a4ddfe9526f\nnet/data/fuzzer_data/ntlm_client_fuzzer/26d8d0453bd16b11cef27c7fa344a865b4902c52\nnet/data/fuzzer_data/ntlm_client_fuzzer/273c3ae344606fab9ab385ebfc4fec1af5c40fac\nnet/data/fuzzer_data/ntlm_client_fuzzer/27437a66831be2253ffebaeb8b3aeeeeb34cc702\nnet/data/fuzzer_data/ntlm_client_fuzzer/2a2d31ca1382a96f19f00f439d5900717f5c32ff\nnet/data/fuzzer_data/ntlm_client_fuzzer/2a7dde1617badfb1a1d8f41fc3dbf08fb85c7c6e\nnet/data/fuzzer_data/ntlm_client_fuzzer/2af98a9142d0e51d8cd95297242fbf429b2b68ad\nnet/data/fuzzer_data/ntlm_client_fuzzer/2b25090625df6361aff5c9e637e2af08b09ec082\nnet/data/fuzzer_data/ntlm_client_fuzzer/2c4c3327238b9495410fb2d025617ed70b2d973b\nnet/data/fuzzer_data/ntlm_client_fuzzer/2eb76b0adcfb49d58808ecfaac80a4882eaa04ba\nnet/data/fuzzer_data/ntlm_client_fuzzer/2f84de286bc51be4712614b46404d480983282ba\nnet/data/fuzzer_data/ntlm_client_fuzzer/2fbfc85495d271f6acc9d56339178b9dafc80c08\nnet/data/fuzzer_data/ntlm_client_fuzzer/2fd928ca177dd0f63284f8758d891d49d3b9c1fe\nnet/data/fuzzer_data/ntlm_client_fuzzer/31204bc02172537018ca871fc063094deffa087f\nnet/data/fuzzer_data/ntlm_client_fuzzer/312255687cbfd1f59610c9a4fd84fdffb68d0e2f\nnet/data/fuzzer_data/ntlm_client_fuzzer/31babfd80b855094c9ff302b60e60d68f1cff66a\nnet/data/fuzzer_data/ntlm_client_fuzzer/321e2ef916072995869393fbceb636adad46aa52\nnet/data/fuzzer_data/ntlm_client_fuzzer/32aa2c0b375c536cf52c7ae669795e02731bb227\nnet/data/fuzzer_data/ntlm_client_fuzzer/32b39ab481f9c4a59ed3ca66bdbd679e1f7274ef\nnet/data/fuzzer_data/ntlm_client_fuzzer/33ec7a2180fd0dc47712e8b14b9168a92dba6f6e\nnet/data/fuzzer_data/ntlm_client_fuzzer/33fa33abe18a38dd7c207a0eb0915b76b04101e2\nnet/data/fuzzer_data/ntlm_client_fuzzer/348c20a78906cc8a89b19d836534a6f53a0d1dbf\nnet/data/fuzzer_data/ntlm_client_fuzzer/34b9de31b3eff794d636960d227e72a4d69d7ef8\nnet/data/fuzzer_data/ntlm_client_fuzzer/34cf64e613815c88a9f2a69c22eca7bc86cd3143\nnet/data/fuzzer_data/ntlm_client_fuzzer/34da12197c43c2a62349ddd48f22b2b5ba069b81\nnet/data/fuzzer_data/ntlm_client_fuzzer/353feac8478bb385cf500ab0a624619d9711c3c8\nnet/data/fuzzer_data/ntlm_client_fuzzer/35af0dac1a32f3dc007da0c212089f8e9e120271\nnet/data/fuzzer_data/ntlm_client_fuzzer/362c4b825a79714ac59f969993af13e1a26ed84e\nnet/data/fuzzer_data/ntlm_client_fuzzer/364962f503fd9b075bac6c1f1f7543a1f7f094bf\nnet/data/fuzzer_data/ntlm_client_fuzzer/3690198b41eb4949afd16b2c9c174668efaa07d5\nnet/data/fuzzer_data/ntlm_client_fuzzer/36b7fed46b5794d28914113c9670b66665575b85\nnet/data/fuzzer_data/ntlm_client_fuzzer/36d8c0a5828f9eda8df33190d2424d679b5d5205\nnet/data/fuzzer_data/ntlm_client_fuzzer/373a6282fbabd2ed60800ae50e36389311e7d612\nnet/data/fuzzer_data/ntlm_client_fuzzer/3755ae24dbf626bbf77ca60fbe5ab2a11a8c9831\nnet/data/fuzzer_data/ntlm_client_fuzzer/37c7af8530037907d2327239ee5c313595ed5299\nnet/data/fuzzer_data/ntlm_client_fuzzer/3813525f79440dd91eac585b8de07b5c6a6538c5\nnet/data/fuzzer_data/ntlm_client_fuzzer/38506a9862aafcbda1c33f42733177d58912733d\nnet/data/fuzzer_data/ntlm_client_fuzzer/386919d84a155b6e5701705be58a007e7d91298e\nnet/data/fuzzer_data/ntlm_client_fuzzer/38e945e236a0f55bf2758bc9534ec2f74259dfb4\nnet/data/fuzzer_data/ntlm_client_fuzzer/39091b1bebe41ce22eeb005d254a115c6a4c3250\nnet/data/fuzzer_data/ntlm_client_fuzzer/3984d370bb04e3196779f570742fb8fd58e9be2d\nnet/data/fuzzer_data/ntlm_client_fuzzer/3990007fc6cd6fba0a63e7da5f0e3283797f0c0f\nnet/data/fuzzer_data/ntlm_client_fuzzer/39c6880be883fc8bc6d7ec9902f70692da922a47\nnet/data/fuzzer_data/ntlm_client_fuzzer/3a1144eb97283d1304b63107eb2b742d1354cf57\nnet/data/fuzzer_data/ntlm_client_fuzzer/3a70a24d916361cf20bb40dac75a8f2c2ec72046\nnet/data/fuzzer_data/ntlm_client_fuzzer/3aa1c5947c9cc58ae5e67172c95e54fb23804aca\nnet/data/fuzzer_data/ntlm_client_fuzzer/3b041869485fd8f880a22ffbbb7a268808eab066\nnet/data/fuzzer_data/ntlm_client_fuzzer/3b79596df741c6c5d76a250e717eaa1a72ef5131\nnet/data/fuzzer_data/ntlm_client_fuzzer/3bb1f5530d505b639ca7ba26761c255f0c856ff2\nnet/data/fuzzer_data/ntlm_client_fuzzer/3bce3cc96b0f520d1ec5a98d82827fd905c58bd9\nnet/data/fuzzer_data/ntlm_client_fuzzer/3bf5027c3a1794ab4c7b33340260763cc24e7eb7\nnet/data/fuzzer_data/ntlm_client_fuzzer/3cfcad418543de01597ed4b3f4103a24c73a455c\nnet/data/fuzzer_data/ntlm_client_fuzzer/40574e590d9ae70852fa385b8b166820b4449e4a\nnet/data/fuzzer_data/ntlm_client_fuzzer/40fd824496cc1a63219645b0c8a709c2d955ae32\nnet/data/fuzzer_data/ntlm_client_fuzzer/415820aff1e579d4233e95b1064d5a702fb5cc3e\nnet/data/fuzzer_data/ntlm_client_fuzzer/416533a1c9823a15e1852131c4b4ae78b3439ce0\nnet/data/fuzzer_data/ntlm_client_fuzzer/41a9b5b4736291e2c5802c045e6599342979de7e\nnet/data/fuzzer_data/ntlm_client_fuzzer/4277344c4d7e962c5da31c208e3caafc54fd6f2f\nnet/data/fuzzer_data/ntlm_client_fuzzer/4358615edd88724d6c292d021a876a4e4d31a0a3\nnet/data/fuzzer_data/ntlm_client_fuzzer/4401ce39720e9f4fcb12fc800836a5f6a8a670fc\nnet/data/fuzzer_data/ntlm_client_fuzzer/440bb880bd0ece4cd5db8feda5bbff03ad5bc716\nnet/data/fuzzer_data/ntlm_client_fuzzer/44c34ff159b0843d1438972149f359c0bf31adf0\nnet/data/fuzzer_data/ntlm_client_fuzzer/44d738098c3f3cb1b507bef0e7f835d8e145f114\nnet/data/fuzzer_data/ntlm_client_fuzzer/44f63db67e34491f0ff6bc302012bdb6e8924a2d\nnet/data/fuzzer_data/ntlm_client_fuzzer/45016e41e1be021bfa0208e75fc3be91a5681a24\nnet/data/fuzzer_data/ntlm_client_fuzzer/462cd061eb0da5ae01df2231bf9ef057f0b16ce7\nnet/data/fuzzer_data/ntlm_client_fuzzer/4638b9c9226c0d7318691774395fa426b67edb44\nnet/data/fuzzer_data/ntlm_client_fuzzer/46c4e8664d3ed0b896a295585c2d17413c6b82bc\nnet/data/fuzzer_data/ntlm_client_fuzzer/473eeb8bebe027687e27405ee2cdb6f818df40be\nnet/data/fuzzer_data/ntlm_client_fuzzer/477d1afd114da66653d291d5e5eaad9c3a81aaf9\nnet/data/fuzzer_data/ntlm_client_fuzzer/47f1eb5ffdfe6fcc0f91b132653519d1e763b737\nnet/data/fuzzer_data/ntlm_client_fuzzer/4817356482f275b4ba11b6a3aec9981c9b9274a7\nnet/data/fuzzer_data/ntlm_client_fuzzer/493fe3d7d6b226e856110c4dc7e43b3d70a8d495\nnet/data/fuzzer_data/ntlm_client_fuzzer/49eb7a9b49aafd02214461539ba357b3e0f0c4ed\nnet/data/fuzzer_data/ntlm_client_fuzzer/4ac57949e8fdd712828f0219982362cf4e3da09c\nnet/data/fuzzer_data/ntlm_client_fuzzer/4bafe5887ee175229331745771a40379df2a83eb\nnet/data/fuzzer_data/ntlm_client_fuzzer/4c1bc402c18d9114e035e6c2dcf61ccfbc2d7bea\nnet/data/fuzzer_data/ntlm_client_fuzzer/4cbf7d943c4113ec85044fecf8bf8c9caecd8a90\nnet/data/fuzzer_data/ntlm_client_fuzzer/4cd86b7365a94443034fa395773ff1b5653f8346\nnet/data/fuzzer_data/ntlm_client_fuzzer/4d0881fcd258b9c525b8cfd214f1a363b4cfcb4e\nnet/data/fuzzer_data/ntlm_client_fuzzer/4e18d65af3be71989b0ce100566de21e5a0c3eca\nnet/data/fuzzer_data/ntlm_client_fuzzer/4e5dc701d5f4e4b11b3e2e0913392326904cbe5e\nnet/data/fuzzer_data/ntlm_client_fuzzer/4eb54412546fe215a3200fb0b9d9077caa2a483f\nnet/data/fuzzer_data/ntlm_client_fuzzer/4ee6b8267b5220878be10eec11dc20bf88ed15a0\nnet/data/fuzzer_data/ntlm_client_fuzzer/4f1655819ecad55399a24f87b9df38939331346f\nnet/data/fuzzer_data/ntlm_client_fuzzer/4f982983e14cbda9982ce247d8597522f62253b2\nnet/data/fuzzer_data/ntlm_client_fuzzer/4fb282e139098c885a701d31e504662345dddcc6\nnet/data/fuzzer_data/ntlm_client_fuzzer/50067881cd622b0b31bb2b7705e18bcd86aa97bd\nnet/data/fuzzer_data/ntlm_client_fuzzer/526caf9a280760db91ff169f93966bf083d028d5\nnet/data/fuzzer_data/ntlm_client_fuzzer/55720b68df57b3feffc8bb097f053de8feae4407\nnet/data/fuzzer_data/ntlm_client_fuzzer/5587a45c0b63aa96976d040530d1447defe61992\nnet/data/fuzzer_data/ntlm_client_fuzzer/567e576eefbc73eaca887ea4240abd492f24a1d5\nnet/data/fuzzer_data/ntlm_client_fuzzer/568b3ff8f416f2734a2d423f358329dcd560570a\nnet/data/fuzzer_data/ntlm_client_fuzzer/56c071138e249ab56c81a505908fe1b835e5a5e5\nnet/data/fuzzer_data/ntlm_client_fuzzer/56c8232e39d77533edcd1f0802959bd8320fd25a\nnet/data/fuzzer_data/ntlm_client_fuzzer/56fa211e1a2f3e50d9dd39296478a6238bfad500\nnet/data/fuzzer_data/ntlm_client_fuzzer/57012c4956d99bccbe3ab342aa42c40d1b5d3f34\nnet/data/fuzzer_data/ntlm_client_fuzzer/575e25abdaf0d107bfc1f3c783c814bb2cdcd77b\nnet/data/fuzzer_data/ntlm_client_fuzzer/576e8415a9ba4f2c7e9ce849c5b5b4111bd987be\nnet/data/fuzzer_data/ntlm_client_fuzzer/577c9ccd9a8b4498d5ce518a94d3376d9799f81c\nnet/data/fuzzer_data/ntlm_client_fuzzer/5804b019ce878d8fbef2575671411b8cba1194d1\nnet/data/fuzzer_data/ntlm_client_fuzzer/5845bafa28d304f6df43813275c1113bc3853d0e\nnet/data/fuzzer_data/ntlm_client_fuzzer/5891b41117c6e0922fb99431ceb6b5970b2347cc\nnet/data/fuzzer_data/ntlm_client_fuzzer/58ca38b988e01589efaf4bb2be1c528671c1e5ce\nnet/data/fuzzer_data/ntlm_client_fuzzer/58dddb1690e9d3c573524cac8c2644911fbf11bc\nnet/data/fuzzer_data/ntlm_client_fuzzer/593f92e35e7fdadd38e9b8476c62ab26a3bb7a62\nnet/data/fuzzer_data/ntlm_client_fuzzer/59a5a58500aa60100fffea3903e8a44ab523b222\nnet/data/fuzzer_data/ntlm_client_fuzzer/59b41af166db05b5603afde448958cadbeaa5b63\nnet/data/fuzzer_data/ntlm_client_fuzzer/5a09c77783d7d41bc95f3012d1f8ea5f8fd88f51\nnet/data/fuzzer_data/ntlm_client_fuzzer/5a3e9cc4ee42a28f776c98fbe63cef9d1ae0b015\nnet/data/fuzzer_data/ntlm_client_fuzzer/5a50274bc0eb4759fd7916cb1b5c3223e71ec5a5\nnet/data/fuzzer_data/ntlm_client_fuzzer/5a56aa6192499714a90449a66eaed3c682117231\nnet/data/fuzzer_data/ntlm_client_fuzzer/5a840579124fd0516820cec69449357abf7b2357\nnet/data/fuzzer_data/ntlm_client_fuzzer/5ba93c9db0cff93f52b521d7420e43f6eda2784f\nnet/data/fuzzer_data/ntlm_client_fuzzer/5bfb53f8ebe5fe6da5e8f33c0670700587729e07\nnet/data/fuzzer_data/ntlm_client_fuzzer/5c08e8aac87f7542379063f3e2e66248a04aa6d6\nnet/data/fuzzer_data/ntlm_client_fuzzer/5c85457bb787a1c199aa77bec1b6edb6f4e06136\nnet/data/fuzzer_data/ntlm_client_fuzzer/5df302227c6c2b2d5c14b7a80889d6e63dd5be38\nnet/data/fuzzer_data/ntlm_client_fuzzer/5e3ba895ed51e467e1763275d606e4ddc7be684a\nnet/data/fuzzer_data/ntlm_client_fuzzer/5f919e0f4e997f155aa561fcaac6fc80374a53b9\nnet/data/fuzzer_data/ntlm_client_fuzzer/600e0571b19df56c92f2084ff8d965bb4f721095\nnet/data/fuzzer_data/ntlm_client_fuzzer/60bffce12135b14c5f0ce096c7e9ad195dff6f25\nnet/data/fuzzer_data/ntlm_client_fuzzer/60f03c266e6f924456e141a865b92769ab06e555\nnet/data/fuzzer_data/ntlm_client_fuzzer/614fcac2e1fdfc30ec78a33be7fe0ba18251f687\nnet/data/fuzzer_data/ntlm_client_fuzzer/615c949d65d779179be139f1c94a8bf0b4ffa194\nnet/data/fuzzer_data/ntlm_client_fuzzer/618ec092a528e2e768346e9375ce2a4f9f9f62ab\nnet/data/fuzzer_data/ntlm_client_fuzzer/622cb42c7c8816291b209bfd9defc64929bd7dd6\nnet/data/fuzzer_data/ntlm_client_fuzzer/63212c997e147bf6d6feb940e6a9d65b3425af42\nnet/data/fuzzer_data/ntlm_client_fuzzer/633303056902ed214fe5f95c5bdce3f35be93ec2\nnet/data/fuzzer_data/ntlm_client_fuzzer/638253f2efdc5d333061d8a579c2cfd6fa3b9877\nnet/data/fuzzer_data/ntlm_client_fuzzer/641b51c08d2295723b706d440238fe64f8959c6e\nnet/data/fuzzer_data/ntlm_client_fuzzer/64936cab6c7e8cc80a5a72c0548eac418e13e508\nnet/data/fuzzer_data/ntlm_client_fuzzer/6495599518907f2e8e1909674a49e1b4305896aa\nnet/data/fuzzer_data/ntlm_client_fuzzer/64f79af2c26f69369b871a44565c6d40f1569b4c\nnet/data/fuzzer_data/ntlm_client_fuzzer/65034434e6e61345d9691dafb3ecad1b53a7059b\nnet/data/fuzzer_data/ntlm_client_fuzzer/650e94100a020805125154c821a4fa85a0d53909\nnet/data/fuzzer_data/ntlm_client_fuzzer/675edc469e6646fe95702dd2c823be68452d805b\nnet/data/fuzzer_data/ntlm_client_fuzzer/685543a5189189d64ff5824a4a07cd2f9e857f3c\nnet/data/fuzzer_data/ntlm_client_fuzzer/690632e6036af7e1a470890612facecf6743d58e\nnet/data/fuzzer_data/ntlm_client_fuzzer/693025a0676fce74564a05828a57e214ed860d11\nnet/data/fuzzer_data/ntlm_client_fuzzer/6aadba8c6047701c73bdda75b25c72c4d3d41351\nnet/data/fuzzer_data/ntlm_client_fuzzer/6ad35072ce217980419f870415f10ac71c36fb4f\nnet/data/fuzzer_data/ntlm_client_fuzzer/6b0d9cc96e46bb7f32a9181d399f26eef066066f\nnet/data/fuzzer_data/ntlm_client_fuzzer/6b33271de9f836544dc4196498b0b2bda489889e\nnet/data/fuzzer_data/ntlm_client_fuzzer/6b759856cddafff465d8d2f0af6fca03a18dd2bb\nnet/data/fuzzer_data/ntlm_client_fuzzer/6d6caa6a9d0f596f830c13c852c6c235bf3e4d63\nnet/data/fuzzer_data/ntlm_client_fuzzer/6d7395dd15392dbd484dc85307aff52a177ca8c1\nnet/data/fuzzer_data/ntlm_client_fuzzer/6f0d6d31873fb232dcd1603b9c5b854f650ace00\nnet/data/fuzzer_data/ntlm_client_fuzzer/6fe2d2beb05247ba66d9ff7d44064234e8c9294c\nnet/data/fuzzer_data/ntlm_client_fuzzer/71a60aa31a68ac373c826f3c485e62cfd0fe77e0\nnet/data/fuzzer_data/ntlm_client_fuzzer/71a9dd0a381abd94714a52ce3b6b1b192aa7a7cd\nnet/data/fuzzer_data/ntlm_client_fuzzer/71c213ad9c8d6dec46f094c247342babad351024\nnet/data/fuzzer_data/ntlm_client_fuzzer/7487876d32d3f61ecbca5126d212e64c4cf703be\nnet/data/fuzzer_data/ntlm_client_fuzzer/74cb4db06de9a66d6ffb8b7c429b9c1d0699dd8d\nnet/data/fuzzer_data/ntlm_client_fuzzer/754b6b1d003eafa337752c38780f874ebeb068ca\nnet/data/fuzzer_data/ntlm_client_fuzzer/7577ee17f31e3fe647703f4eccfc117008800d8e\nnet/data/fuzzer_data/ntlm_client_fuzzer/76375f6ec383cf3a2a86faf6362f351edc58417d\nnet/data/fuzzer_data/ntlm_client_fuzzer/7647e144ccbdb304d06101ddedb4f311c2db50f5\nnet/data/fuzzer_data/ntlm_client_fuzzer/783030e7692b6e37c23a027475992b1da00cb039\nnet/data/fuzzer_data/ntlm_client_fuzzer/78795bcbbcef92aebc631ee87af4c85c518a0f4d\nnet/data/fuzzer_data/ntlm_client_fuzzer/799033f462e819a4c57fb5adf8ef40600d6acc3c\nnet/data/fuzzer_data/ntlm_client_fuzzer/79f6fd3a2d087c5e855e09a2af702c42b4652d70\nnet/data/fuzzer_data/ntlm_client_fuzzer/7ba4dc20740c07afcd4be12bb8713f89e1052a02\nnet/data/fuzzer_data/ntlm_client_fuzzer/7bf8429612765ddd367c119d53813b3d81fca867\nnet/data/fuzzer_data/ntlm_client_fuzzer/7dbb6ebac8f4e300fa73abe02bbc44c4ea7b59ae\nnet/data/fuzzer_data/ntlm_client_fuzzer/7df88cb302187fd60f2048a057d2a471e621187e\nnet/data/fuzzer_data/ntlm_client_fuzzer/7e72e38998f3feb33e71d2a2f665079a71e5e440\nnet/data/fuzzer_data/ntlm_client_fuzzer/7faf23cc5aff196bf40c1fa1c478ec148fce6062\nnet/data/fuzzer_data/ntlm_client_fuzzer/81b7c983f4ae6d00edb9875202dcbe57d6df6e63\nnet/data/fuzzer_data/ntlm_client_fuzzer/8264ce274122fcab5ad3e106c1f41e790cfcc15a\nnet/data/fuzzer_data/ntlm_client_fuzzer/82c493f0f74e9f04e2329b53d08dbdb69954fc16\nnet/data/fuzzer_data/ntlm_client_fuzzer/833dbecc1ae9d0976c82cecef3c7f0d8fd48dc1b\nnet/data/fuzzer_data/ntlm_client_fuzzer/834b63787ecac7393f0f0b17604ee0f43744f47f\nnet/data/fuzzer_data/ntlm_client_fuzzer/83d06c2015c21b19eb8773914a7577c1f429bdcf\nnet/data/fuzzer_data/ntlm_client_fuzzer/840bf6d5f4d0aa32b3b419c7d56aa9aff7dc0152\nnet/data/fuzzer_data/ntlm_client_fuzzer/8461d888f7896cd17e0bc25179ba67fc5e9f37c6\nnet/data/fuzzer_data/ntlm_client_fuzzer/846358e31580f0907388c0023ad374389d231dce\nnet/data/fuzzer_data/ntlm_client_fuzzer/847cb4ed8f90ffa3d9c38c4ebe3dbecf6ed14c33\nnet/data/fuzzer_data/ntlm_client_fuzzer/8497b928eb2b1e4710a4561f15fe0f6518229f8c\nnet/data/fuzzer_data/ntlm_client_fuzzer/85f9b971e641a8e5a82c80fe254654b7a235f536\nnet/data/fuzzer_data/ntlm_client_fuzzer/86676876ca91731ac0c75b7663cf00ae44ab3475\nnet/data/fuzzer_data/ntlm_client_fuzzer/87248bc265d6789695da999bb68cd0b640ba9f44\nnet/data/fuzzer_data/ntlm_client_fuzzer/872fd2db7b75a45db29222d60720539bb9d167de\nnet/data/fuzzer_data/ntlm_client_fuzzer/874f47b24d53fa9cacd7a60a91517b5ceec1eef8\nnet/data/fuzzer_data/ntlm_client_fuzzer/8781f3365623be39e22627ac8d70eaa7eb608b95\nnet/data/fuzzer_data/ntlm_client_fuzzer/87ab5771ee145369a8967ae66e0d8015750a7b4c\nnet/data/fuzzer_data/ntlm_client_fuzzer/87f1494f43ac58a759572df97903f60f8421ea44\nnet/data/fuzzer_data/ntlm_client_fuzzer/880e1e6c845aa06836aec6ab92ed349628eafb8e\nnet/data/fuzzer_data/ntlm_client_fuzzer/889f25bb4e4f15393ae5d3c0faba00f1c3e9b745\nnet/data/fuzzer_data/ntlm_client_fuzzer/88b550b5831325d07a7794f60a579ac6a850ed00\nnet/data/fuzzer_data/ntlm_client_fuzzer/890b75c52add868bdaccb76bcad7c816c0cc23dd\nnet/data/fuzzer_data/ntlm_client_fuzzer/8980f1d8282634083f80e33779d1b3868997e6ba\nnet/data/fuzzer_data/ntlm_client_fuzzer/8b82cc65b8586d9e0059392e3653a96e95f3354b\nnet/data/fuzzer_data/ntlm_client_fuzzer/8c0b1029274a14d019f2e1b05b56022b47746dd0\nnet/data/fuzzer_data/ntlm_client_fuzzer/8e9ceeef1a9426bf6dfffe701764c1c7a149d3b6\nnet/data/fuzzer_data/ntlm_client_fuzzer/8e9d35c4f21bca8ccba033100d4b71ec71250f1d\nnet/data/fuzzer_data/ntlm_client_fuzzer/8ed905e3321bb41bcc565a0b3592fa38f386fbdd\nnet/data/fuzzer_data/ntlm_client_fuzzer/8eeba836ce0e08ba695d6e578645ff8d19fb9ee9\nnet/data/fuzzer_data/ntlm_client_fuzzer/8f01ea13c723e56651370f3d3c037ebacdcb3116\nnet/data/fuzzer_data/ntlm_client_fuzzer/8f169ab3df777790293c4321f2bd08fb63af254b\nnet/data/fuzzer_data/ntlm_client_fuzzer/8fffc593ab4a73bd024041ad7b1272a45ce6ed2c\nnet/data/fuzzer_data/ntlm_client_fuzzer/914c2a920097c7d083fe4d776e2ad4d02c811826\nnet/data/fuzzer_data/ntlm_client_fuzzer/9175475a1f8d4cb064997c682b01622f9e563b6e\nnet/data/fuzzer_data/ntlm_client_fuzzer/91b6d23c815999a5e46827268d022542b9b6e0f5\nnet/data/fuzzer_data/ntlm_client_fuzzer/92121ed6b3f167e1ef9f2a9a9ef2663a6e26ab55\nnet/data/fuzzer_data/ntlm_client_fuzzer/9238b5243b0d5d3c38b1afc42c9a71fca5005741\nnet/data/fuzzer_data/ntlm_client_fuzzer/9242f8e2cf8410a3e5b0a3602aff7e0731bd19c8\nnet/data/fuzzer_data/ntlm_client_fuzzer/9263137058b184fa15a6de31c6871ab789fca5ad\nnet/data/fuzzer_data/ntlm_client_fuzzer/92be6c67c26dd6c7f6b99286d1663fed8156ca3d\nnet/data/fuzzer_data/ntlm_client_fuzzer/936d5755fa7368f5a90922c6ecaf534156a43027\nnet/data/fuzzer_data/ntlm_client_fuzzer/93c3f5e7b7544bdb2a6cfdf5dccd669fe1e0ea7e\nnet/data/fuzzer_data/ntlm_client_fuzzer/93d2164ed967cd4093a49d1a18f60b141a4e0ebb\nnet/data/fuzzer_data/ntlm_client_fuzzer/940dc8e05fb31137d6c624aaa9621508dbfaeb83\nnet/data/fuzzer_data/ntlm_client_fuzzer/9478d73d94e84e64bacf947d0cd1b7640e3ba9d4\nnet/data/fuzzer_data/ntlm_client_fuzzer/95b8cca06afb05f39d56b2b693dbffd98795a6b7\nnet/data/fuzzer_data/ntlm_client_fuzzer/95eca3c6e8feb6d734432d193e6179558721e510\nnet/data/fuzzer_data/ntlm_client_fuzzer/95fde91612ef6c02b3bc37aa0d736770fd610c5a\nnet/data/fuzzer_data/ntlm_client_fuzzer/96af9716cc8c9b6fa4fb96766422c1241775be8d\nnet/data/fuzzer_data/ntlm_client_fuzzer/98b506c9bf7055559c920c0ab1d885d97587a78d\nnet/data/fuzzer_data/ntlm_client_fuzzer/98bdea7f81a7873d7308d0c65baea869d2a93cfd\nnet/data/fuzzer_data/ntlm_client_fuzzer/99384dc1a282d03b0079894ec5ff4d1b387795ad\nnet/data/fuzzer_data/ntlm_client_fuzzer/9968364427682a442dfb60bfb2d92c888bf1ba59\nnet/data/fuzzer_data/ntlm_client_fuzzer/996bf84c2a0ad9f095b6971c402f3b31c2f10a7f\nnet/data/fuzzer_data/ntlm_client_fuzzer/9a4907e06db360a02c075928e8fc655e5267be2e\nnet/data/fuzzer_data/ntlm_client_fuzzer/9a9452704ed6ad79bc88f150371a5e9e1d84ccee\nnet/data/fuzzer_data/ntlm_client_fuzzer/9c4265f818c48f986f35c93f808abe11f8df9d52\nnet/data/fuzzer_data/ntlm_client_fuzzer/9db439bc5b2421dc3e294ea7db968e1bbacd0b21\nnet/data/fuzzer_data/ntlm_client_fuzzer/9e557663f6cc7fdef6e4c65843b67185841537ca\nnet/data/fuzzer_data/ntlm_client_fuzzer/a00646609b369580d8bed592d8287e4daf4cdacc\nnet/data/fuzzer_data/ntlm_client_fuzzer/a038077637563b084b4d49370f63cc2bcde9a742\nnet/data/fuzzer_data/ntlm_client_fuzzer/a0a4758923f0623b8b7f3ac9eb3cb692cbba4e14\nnet/data/fuzzer_data/ntlm_client_fuzzer/a1bd01abdcc5bcebb14d05b080de464ae20131ed\nnet/data/fuzzer_data/ntlm_client_fuzzer/a1d291a2353df598639e4bccb5dcc6094ffaf5fb\nnet/data/fuzzer_data/ntlm_client_fuzzer/a20ef461e6060cda1ba9da8a02942198e4269346\nnet/data/fuzzer_data/ntlm_client_fuzzer/a25f4d27b2ec2e71996006587055310e808d0904\nnet/data/fuzzer_data/ntlm_client_fuzzer/a3e0d1813bbe35f8a15f209f78a087da7d613a2c\nnet/data/fuzzer_data/ntlm_client_fuzzer/a45152c21a3673b22e67709b8ba527377cdba983\nnet/data/fuzzer_data/ntlm_client_fuzzer/a474a77ccafcad49fb17b861ccd5e7854a219cbb\nnet/data/fuzzer_data/ntlm_client_fuzzer/a4adc35a8c7b269d0ec6878ecbe254f543fcc988\nnet/data/fuzzer_data/ntlm_client_fuzzer/a4b1b73c2178e1b968a328f3b7f77863a077390e\nnet/data/fuzzer_data/ntlm_client_fuzzer/a4e57b5160e9f5241118cc8440d13a14b6d106ed\nnet/data/fuzzer_data/ntlm_client_fuzzer/a59a8ac04d226f1af27481f2efd9be650681bfd8\nnet/data/fuzzer_data/ntlm_client_fuzzer/a6e593f110cffa2fd45ace837255c02fbabbcd31\nnet/data/fuzzer_data/ntlm_client_fuzzer/a7b4d2be7969b3611ce9bc8cc374d265f355b173\nnet/data/fuzzer_data/ntlm_client_fuzzer/a9fb3d1ec2ecb82dd8d238def92f26ceb1108385\nnet/data/fuzzer_data/ntlm_client_fuzzer/aa1979cafa26e8d136971c738a6b570eef6c4bf8\nnet/data/fuzzer_data/ntlm_client_fuzzer/aadd604f9bf2224f85c0254a93f73794a4076022\nnet/data/fuzzer_data/ntlm_client_fuzzer/ab18c9b1281c7766245907a7e9084b2dcfe4bed2\nnet/data/fuzzer_data/ntlm_client_fuzzer/ab3cf1a3e792c7ced2de84b404aa82ff80a5eecd\nnet/data/fuzzer_data/ntlm_client_fuzzer/ab9dff75a2610bd0a523f236d91cbdaae8b4b2f7\nnet/data/fuzzer_data/ntlm_client_fuzzer/abf3550262b2af04dabc9dd9ca5a2d299120401e\nnet/data/fuzzer_data/ntlm_client_fuzzer/ac6855fcd9e9e45b03ee511829c88bf54b098408\nnet/data/fuzzer_data/ntlm_client_fuzzer/acbb57a6898a570884573cb65afc4db642166b6a\nnet/data/fuzzer_data/ntlm_client_fuzzer/acbffd71aacfbf27f234ac3d0be2a6abafd4cf0a\nnet/data/fuzzer_data/ntlm_client_fuzzer/acd8e8eef53d57626024da0f91393055553c59d0\nnet/data/fuzzer_data/ntlm_client_fuzzer/ade585ac38bdc13f1935f3916c904540e9d69d77\nnet/data/fuzzer_data/ntlm_client_fuzzer/aed874be11567df57b8f08d547843691ae275570\nnet/data/fuzzer_data/ntlm_client_fuzzer/afa33585391f280ba77076e2e945dc56fc14d4de\nnet/data/fuzzer_data/ntlm_client_fuzzer/b0be1d3b6a9ab20dba18a6e44c15912f93b1d4cf\nnet/data/fuzzer_data/ntlm_client_fuzzer/b1b40b064226950bf410d9949e3cc242c70f4264\nnet/data/fuzzer_data/ntlm_client_fuzzer/b1bc9c263b558b2c5b902a6d4f3f2c9c42584b9c\nnet/data/fuzzer_data/ntlm_client_fuzzer/b218060e4d84092ab7c1ee291896fe2b590a49db\nnet/data/fuzzer_data/ntlm_client_fuzzer/b32a8e4bafd551f99d971390ffbbd12701ea5b03\nnet/data/fuzzer_data/ntlm_client_fuzzer/b3af3bcae52f68e7b34e3c63cdd0a4a67f5d70e0\nnet/data/fuzzer_data/ntlm_client_fuzzer/b3e847d2d6d10231c51e12ac9d248a864b109aef\nnet/data/fuzzer_data/ntlm_client_fuzzer/b479a36b363e194125b03c686ea960a6fea20ddc\nnet/data/fuzzer_data/ntlm_client_fuzzer/b48648afc4f88caa8dd06218b7ea54b02d2da127\nnet/data/fuzzer_data/ntlm_client_fuzzer/b4968b6aa332397a0a91b0ce4d389a5cbfa6cf77\nnet/data/fuzzer_data/ntlm_client_fuzzer/b4cbaee19f7755d2717f0e02f81463cba29ba632\nnet/data/fuzzer_data/ntlm_client_fuzzer/b4fca94155d2f73e97b1f9ade1b9c4af4ccdb6d7\nnet/data/fuzzer_data/ntlm_client_fuzzer/b52b755d13af7d94679a90bfd4c89653c39e8195\nnet/data/fuzzer_data/ntlm_client_fuzzer/b579be7460185c9b397b9817571f5df54fb558be\nnet/data/fuzzer_data/ntlm_client_fuzzer/b5884e0e9e5a64932588b6ae67c643ec2034f94b\nnet/data/fuzzer_data/ntlm_client_fuzzer/b58c1a21b5f3f7c6b267fc83bb2daca61e3edf87\nnet/data/fuzzer_data/ntlm_client_fuzzer/b6052492e5e67a4488fe54195c6b766eb14b1353\nnet/data/fuzzer_data/ntlm_client_fuzzer/b636d0d9264653d4f205db33ea6e41b683c50252\nnet/data/fuzzer_data/ntlm_client_fuzzer/b69c31f10a80f7798271fd38b53553b134558ff5\nnet/data/fuzzer_data/ntlm_client_fuzzer/b6e88793b6947777ac1f02c6f50953c690daa331\nnet/data/fuzzer_data/ntlm_client_fuzzer/b7944cd822b8c633b867c1f0119a53dd5460c97b\nnet/data/fuzzer_data/ntlm_client_fuzzer/b8272b34b538c4f420a41c2946d63748301eb9c1\nnet/data/fuzzer_data/ntlm_client_fuzzer/b87e1493ed64fd43271e2cb10a797951f8f3f4f2\nnet/data/fuzzer_data/ntlm_client_fuzzer/b8e5576942a850e8fca7ec55f377eaf38c4e26ad\nnet/data/fuzzer_data/ntlm_client_fuzzer/b958eb7c812fbec6430bf5b002aa30cea3f9f5f9\nnet/data/fuzzer_data/ntlm_client_fuzzer/b9608578928f851c44144779792fb78aac76ce2c\nnet/data/fuzzer_data/ntlm_client_fuzzer/b9794ffb1b484631287ad98cd85795a56c6a8f17\nnet/data/fuzzer_data/ntlm_client_fuzzer/b996072eb9638ef9be224068aae0204d84534748\nnet/data/fuzzer_data/ntlm_client_fuzzer/b9d88ae50e0f60534e9188b8289c69599128c31f\nnet/data/fuzzer_data/ntlm_client_fuzzer/ba866c8c3973eb8ce6bfa602a4a24de229111514\nnet/data/fuzzer_data/ntlm_client_fuzzer/bae5289ae9edad63804c49a2dbb185e9e444e42a\nnet/data/fuzzer_data/ntlm_client_fuzzer/baeed8ea4e9ea09014da462a0320fcb0e6ad1f32\nnet/data/fuzzer_data/ntlm_client_fuzzer/bc1038698713c6d9afcf073937d0919cc725fcc3\nnet/data/fuzzer_data/ntlm_client_fuzzer/bc433dada1820a81ce16363421b7d7f0ab2ff1fa\nnet/data/fuzzer_data/ntlm_client_fuzzer/bc47335fb3c4eafd8c947e4101eec7aeb05190a5\nnet/data/fuzzer_data/ntlm_client_fuzzer/bd0c539b72a8a486cf4d1991f869234f7dccbbb7\nnet/data/fuzzer_data/ntlm_client_fuzzer/bd46eb3383873ada7d289565d61e4a130fba1665\nnet/data/fuzzer_data/ntlm_client_fuzzer/bdfba67907ecd634da28bc0fa79ea57359cee9be\nnet/data/fuzzer_data/ntlm_client_fuzzer/bf598b814c5322f434e7a6a9c1d8cceec519858c\nnet/data/fuzzer_data/ntlm_client_fuzzer/bf7ef08e28a17de8187a3fb4c672f031dab2e620\nnet/data/fuzzer_data/ntlm_client_fuzzer/bf8d8aeed634a689be4d5c5da7ea2b436a1421ac\nnet/data/fuzzer_data/ntlm_client_fuzzer/bfc81c7f3f9dcdcbfed0afd578f68509ad63726c\nnet/data/fuzzer_data/ntlm_client_fuzzer/c06d439d6a7d12f36f0d6588e2d23a6b9df4b0f2\nnet/data/fuzzer_data/ntlm_client_fuzzer/c0a8a01f314d56e0895afd9e1aa23f7e4210888c\nnet/data/fuzzer_data/ntlm_client_fuzzer/c0c4a70a12d7bfa6c42a6b4ea44b8d831a5c81a6\nnet/data/fuzzer_data/ntlm_client_fuzzer/c0c6721dfeef7cc9277519a5bbdae00fae419a7a\nnet/data/fuzzer_data/ntlm_client_fuzzer/c144a03de904daab17d62ad186799df1f99e49c1\nnet/data/fuzzer_data/ntlm_client_fuzzer/c18163ede8affbae299762282990714d3302eda4\nnet/data/fuzzer_data/ntlm_client_fuzzer/c228a6813f37f514abf10f364b15904f284cd9e6\nnet/data/fuzzer_data/ntlm_client_fuzzer/c30141b2147d59b3bd3055e7a8e39794537c36c3\nnet/data/fuzzer_data/ntlm_client_fuzzer/c3230eb00843e1ddf44af1e9ed9df3d9b98643c0\nnet/data/fuzzer_data/ntlm_client_fuzzer/c3312bb04a0e5ce9e3ca06f93a3386c30ec90bf6\nnet/data/fuzzer_data/ntlm_client_fuzzer/c362a11a9a647f33e138ef6b5b572e087c55e068\nnet/data/fuzzer_data/ntlm_client_fuzzer/c36ce41b1f9b3d70be72beaae7fde774193d9a98\nnet/data/fuzzer_data/ntlm_client_fuzzer/c3a44c0dcb1c84c35193c760e1b7f27328ebb614\nnet/data/fuzzer_data/ntlm_client_fuzzer/c3cd3ad0f034a90b1089724505e3ab27902579f1\nnet/data/fuzzer_data/ntlm_client_fuzzer/c429ce244f208bb7c7c48040bcaa01cb1a8c6fd5\nnet/data/fuzzer_data/ntlm_client_fuzzer/c478eb8b465a1bc2a59e56b0f964057d5baa670a\nnet/data/fuzzer_data/ntlm_client_fuzzer/c4a72fc42f4643ccd3abed56d40d5f9241736d22\nnet/data/fuzzer_data/ntlm_client_fuzzer/c4bc0fcc39649e4261bd88da3c8788f33c821532\nnet/data/fuzzer_data/ntlm_client_fuzzer/c580b15158fa7e52e0e51590b7f6badb30ec778d\nnet/data/fuzzer_data/ntlm_client_fuzzer/c5c6aae397e944d36991fb5a94b174ee6ff10638\nnet/data/fuzzer_data/ntlm_client_fuzzer/c62e728c83da61f731986d847de61b5c01d772d5\nnet/data/fuzzer_data/ntlm_client_fuzzer/c6869b7d35bb3445fd8c75596fb0627586c2e3b2\nnet/data/fuzzer_data/ntlm_client_fuzzer/c7255dc48b42d44f6c0676d6009051b7e1aa885b\nnet/data/fuzzer_data/ntlm_client_fuzzer/c74b94db831af9f9f4ca62d282d90bdf63f5b722\nnet/data/fuzzer_data/ntlm_client_fuzzer/c77ad37ffcd949aa2f04389a4f4330de5da9675b\nnet/data/fuzzer_data/ntlm_client_fuzzer/c79a4c2f5473894019e208662ead71aba1f1947c\nnet/data/fuzzer_data/ntlm_client_fuzzer/c8d3cc6de17682363e8b28e539851660f0299373\nnet/data/fuzzer_data/ntlm_client_fuzzer/c8d56e86c7bae8f098abb82a3b768d55f78def10\nnet/data/fuzzer_data/ntlm_client_fuzzer/c9813620cf70c448ac366f4829eb627c18d2ded1\nnet/data/fuzzer_data/ntlm_client_fuzzer/c9aa36c9ec6ad0b14bd931a826833ea8c71065f6\nnet/data/fuzzer_data/ntlm_client_fuzzer/ca1361700d6d92b47b53eb5b18b6e770714853a4\nnet/data/fuzzer_data/ntlm_client_fuzzer/cc01028b6eaf4122034b07d75c7ec07b88f13d75\nnet/data/fuzzer_data/ntlm_client_fuzzer/cd1671557c6aefc571cfab7070592964e171b421\nnet/data/fuzzer_data/ntlm_client_fuzzer/cd3c634d56405fea2de86cdb418cfda47a5af3bb\nnet/data/fuzzer_data/ntlm_client_fuzzer/ce0bfec5f2763189af06eff15d831776999b5acd\nnet/data/fuzzer_data/ntlm_client_fuzzer/ce48f1a8bb6d029bcc2d3e92f6c825ecdc656e65\nnet/data/fuzzer_data/ntlm_client_fuzzer/cecb484b6da69981df77511da19b10902be77d94\nnet/data/fuzzer_data/ntlm_client_fuzzer/ced1e15446c6dcae431cd920a1d010deddce27be\nnet/data/fuzzer_data/ntlm_client_fuzzer/cf2043e18520f6fb82b8a33132f799b3c235c8b0\nnet/data/fuzzer_data/ntlm_client_fuzzer/cf2fa6a612eeab5013f3c95dad01f845bb3f169c\nnet/data/fuzzer_data/ntlm_client_fuzzer/d00471bccf37bb960516205906191aa7df89fd76\nnet/data/fuzzer_data/ntlm_client_fuzzer/d030276ab97f9e9f1ab89d983f5470c6281c77fe\nnet/data/fuzzer_data/ntlm_client_fuzzer/d0731f0136dbbee6db7c1b8d77b4220cec5aeb5d\nnet/data/fuzzer_data/ntlm_client_fuzzer/d0fea544723bc3c1db9c28a17c9f34f793ac1bc8\nnet/data/fuzzer_data/ntlm_client_fuzzer/d1b9790b8fee0270e51037e950c12ff282e0a07a\nnet/data/fuzzer_data/ntlm_client_fuzzer/d253d241c6de4eadc1600ee6b60f24789f64fc6a\nnet/data/fuzzer_data/ntlm_client_fuzzer/d32c77d065acfb3822a32ee521f54990e9c1fcc7\nnet/data/fuzzer_data/ntlm_client_fuzzer/d505f3f667f992dda34a2a25bc06b97f5c6e0f84\nnet/data/fuzzer_data/ntlm_client_fuzzer/d53aaaa1c234b5482e1ce79135a7a2eb4e2f1e38\nnet/data/fuzzer_data/ntlm_client_fuzzer/d6139157ab7c8e38e2b628ac7d4de5325695ccef\nnet/data/fuzzer_data/ntlm_client_fuzzer/d68279bd73b4e31748b2cebccf8231932953dac7\nnet/data/fuzzer_data/ntlm_client_fuzzer/d80e9907486b1e7de982ebbb485905329310360a\nnet/data/fuzzer_data/ntlm_client_fuzzer/d84d1ac5d3969f39b2f3ad1a63f181d4d99442ce\nnet/data/fuzzer_data/ntlm_client_fuzzer/d8dccd94951179c9bdad73e5f7ae1f614240d540\nnet/data/fuzzer_data/ntlm_client_fuzzer/da59f4b7b4c665cd6750feb35acd0159f41e112b\nnet/data/fuzzer_data/ntlm_client_fuzzer/da6ba36dc06c94a1261c0787e5293ff856776d40\nnet/data/fuzzer_data/ntlm_client_fuzzer/db28df81c00e4b20b750e3928fd4f3a6cbd33cc7\nnet/data/fuzzer_data/ntlm_client_fuzzer/dbf9f26fa35a5fbab2cbd2eea406479179619fee\nnet/data/fuzzer_data/ntlm_client_fuzzer/dc476fe3c493ebc469c314fc673293ae8c8ccbb3\nnet/data/fuzzer_data/ntlm_client_fuzzer/dcb34b38987afeb612c8d4a93cfbc92f9948bd6c\nnet/data/fuzzer_data/ntlm_client_fuzzer/dd1ebfdc7f651f60c42a53967a1892880d63f1e1\nnet/data/fuzzer_data/ntlm_client_fuzzer/de1bff4c76f9e168869a5c48d7f3c9d221531da9\nnet/data/fuzzer_data/ntlm_client_fuzzer/de30dbb1db7c95555d50c87ba81ce8f584b5ab6e\nnet/data/fuzzer_data/ntlm_client_fuzzer/de3e0e359bac865db3f56163b12e718f8b5dd944\nnet/data/fuzzer_data/ntlm_client_fuzzer/dee4bfb3fc063f37b9b3affe4ef838624c6f7796\nnet/data/fuzzer_data/ntlm_client_fuzzer/e00141e223b534cc67027ce4a0ceb20a496aa77c\nnet/data/fuzzer_data/ntlm_client_fuzzer/e01b79bdc4ade1bb9eeed769c05d5643bca698d8\nnet/data/fuzzer_data/ntlm_client_fuzzer/e07c3373f281fb2ebb131a4dd19f3751f4a05d9a\nnet/data/fuzzer_data/ntlm_client_fuzzer/e0ce653a76388bfdf36d073eaf47cb86f2027fb0\nnet/data/fuzzer_data/ntlm_client_fuzzer/e160d7c2b10edef5b884b85b726aef09a430c226\nnet/data/fuzzer_data/ntlm_client_fuzzer/e1dfedec1bd1a833b2fcd38f82ab91ee563e9295\nnet/data/fuzzer_data/ntlm_client_fuzzer/e2115b0977793afa807d02de64532f1cbc5831cd\nnet/data/fuzzer_data/ntlm_client_fuzzer/e23415059327344b4c6bf80237ea1d6ec6cbfa1c\nnet/data/fuzzer_data/ntlm_client_fuzzer/e2dbeb179a003f3d025ca25ce2b0f3c7933ad50b\nnet/data/fuzzer_data/ntlm_client_fuzzer/e2fc6cda8b100d30b9fb0669d7271d1b063bfc7c\nnet/data/fuzzer_data/ntlm_client_fuzzer/e45e6be25996a470348adb10999037162c82238b\nnet/data/fuzzer_data/ntlm_client_fuzzer/e507ac2ee689674641e13a1042434e86c57668de\nnet/data/fuzzer_data/ntlm_client_fuzzer/e50ecaa6233f3674c730affcc1e63c3fd04f09ad\nnet/data/fuzzer_data/ntlm_client_fuzzer/e5754ca4fd8739c9c690a2e9a7dc255f3a7f3f2d\nnet/data/fuzzer_data/ntlm_client_fuzzer/e78797f2e893eea7f0341ad15881f8fa7eb8cda3\nnet/data/fuzzer_data/ntlm_client_fuzzer/e87c3477a494b7e3e91e45cac57896ac4fea7f41\nnet/data/fuzzer_data/ntlm_client_fuzzer/ea671f71a82891197a7d5a3a559337e5fd331e2a\nnet/data/fuzzer_data/ntlm_client_fuzzer/eb91fbc1e24fc9af9b39cc08b3048ffbff9c3797\nnet/data/fuzzer_data/ntlm_client_fuzzer/eba921f1ef502f64b718dff4908a0e6b67710b47\nnet/data/fuzzer_data/ntlm_client_fuzzer/ec41f90bb3ceae0885ad377a88ca5802e24168cb\nnet/data/fuzzer_data/ntlm_client_fuzzer/ec426aeebb745cbf37b47c65e637cc38bd669ef0\nnet/data/fuzzer_data/ntlm_client_fuzzer/ec9cd3f298f4538bca2649332c50646c77a812e7\nnet/data/fuzzer_data/ntlm_client_fuzzer/ece53afe40cee178a98d5b103c63d7b1c33ac428\nnet/data/fuzzer_data/ntlm_client_fuzzer/ee8e61eeb7b38bcc9b232493dbbd1cc2b5a288ec\nnet/data/fuzzer_data/ntlm_client_fuzzer/ee8e8ab365a46fe69407ff76e2a0012017ee8cf7\nnet/data/fuzzer_data/ntlm_client_fuzzer/efe8bd14126d4dd4880d8c769919f3abce42fb62\nnet/data/fuzzer_data/ntlm_client_fuzzer/f0363b4c5978a009ade5083ee03e71c7baeabf6c\nnet/data/fuzzer_data/ntlm_client_fuzzer/f03cdc8d4bab7812d6362f6cf2c9fef9ea44e5ea\nnet/data/fuzzer_data/ntlm_client_fuzzer/f0d36c54a9b55719aae3819f05b8957a8c50ebd7\nnet/data/fuzzer_data/ntlm_client_fuzzer/f1361e4f6aa5c2d789781edf07d679eba0872929\nnet/data/fuzzer_data/ntlm_client_fuzzer/f14d5e05e9a83c29b19b689713147dbd74b62640\nnet/data/fuzzer_data/ntlm_client_fuzzer/f24c2a843490284c906a89d14819dda818f53693\nnet/data/fuzzer_data/ntlm_client_fuzzer/f26a4bd8d1781ec968d1801da82e7b52df6f68d5\nnet/data/fuzzer_data/ntlm_client_fuzzer/f2eff3b020be8e594729f9901e4360a253c6cec3\nnet/data/fuzzer_data/ntlm_client_fuzzer/f2f0ea78c4b745968719efd41992944c4d8ebab7\nnet/data/fuzzer_data/ntlm_client_fuzzer/f30b042b2c51718ba33c7af725b8767a01e44c54\nnet/data/fuzzer_data/ntlm_client_fuzzer/f35418c9ff8cd0958bf8426c3d8d8b4887af4e3e\nnet/data/fuzzer_data/ntlm_client_fuzzer/f3b39374ce0a47e4f6f1e45ad84592d028aa7c5a\nnet/data/fuzzer_data/ntlm_client_fuzzer/f3bb99ffed1c643b421b896000803fd1dae270df\nnet/data/fuzzer_data/ntlm_client_fuzzer/f3e0c2fb19014fa7c8fb27a6c89e0beed0a92621\nnet/data/fuzzer_data/ntlm_client_fuzzer/f3e5023e892b21a098011e426cd77c30bc22610f\nnet/data/fuzzer_data/ntlm_client_fuzzer/f446ca295cc66646e0ec31e6eaae3f54c84ce975\nnet/data/fuzzer_data/ntlm_client_fuzzer/f4dfae495b3895dfc7ed9dd0e6d30688da7d9afe\nnet/data/fuzzer_data/ntlm_client_fuzzer/f504532dea4a4fdc3184100858e606e9b4d4c026\nnet/data/fuzzer_data/ntlm_client_fuzzer/f51ea2e3eeb1b73f13ef6c6f7bfa77cac015cc80\nnet/data/fuzzer_data/ntlm_client_fuzzer/f546e40a900d3107e67c80c4370ac64ce1bd554b\nnet/data/fuzzer_data/ntlm_client_fuzzer/f54fae32a3caf8fb9b3135108c2b70bb1e1d1509\nnet/data/fuzzer_data/ntlm_client_fuzzer/f691112114a05ad9be413fe0d50b7fce3a193400\nnet/data/fuzzer_data/ntlm_client_fuzzer/f7c1e977264dd6ae60e08c43f0c7acb539568388\nnet/data/fuzzer_data/ntlm_client_fuzzer/f7ce46bdceae13fb49310932fce8b2d93a0680cb\nnet/data/fuzzer_data/ntlm_client_fuzzer/f830487d459836db06b908475f4f72a09eadce70\nnet/data/fuzzer_data/ntlm_client_fuzzer/f9d25420e3851f0db8e1d99986513eec1516d536\nnet/data/fuzzer_data/ntlm_client_fuzzer/fa35b5ac1fb5608d211b143e893db79ece124e5e\nnet/data/fuzzer_data/ntlm_client_fuzzer/faae8197b295466e67c86eec64ef82bdf9b1c44c\nnet/data/fuzzer_data/ntlm_client_fuzzer/fcf98b4482bb5b968a483943681d120861b2262f\nnet/data/fuzzer_data/ntlm_client_fuzzer/fd0e2a4cb935307adfb2f397dff3e3396d30381a\nnet/data/fuzzer_data/ntlm_client_fuzzer/fd7d5b922907bf9135618de77295f73d0a06484c\nnet/data/fuzzer_data/ntlm_client_fuzzer/fdc4211c72bbeef34eb6a68c519f0acbf0621d4b\nnet/data/fuzzer_data/ntlm_client_fuzzer/fef223ff6a12f0b7cd03cf55f5075b4843627392\nnet/data/fuzzer_data/ntlm_client_fuzzer/ffb53809271105f9989a5c66cba9d225377975ba\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/empty_sequence\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/extra_contents_after_issuer_and_serial\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/invalid_contents\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/issuer_and_serial\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/issuer_only\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/key_identifier\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/key_identifier_and_issuer_and_serial\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/serial_only\nnet/data/fuzzer_data/parse_authority_key_identifier_fuzzer/url_issuer_and_serial\nnet/data/fuzzer_data/parse_crldp_fuzzer/crldp_issuer_as_dirname.der\nnet/data/fuzzer_data/parse_crldp_fuzzer/relative_name_and_reasons_and_multiple_dps.der\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/bad_issuer_key_hash_type\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/bad_name_hash_type\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/bad_params\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/bad_serial_number_type\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/empty_hash\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/empty_hash_oid\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/empty_sequence\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/empty_serial_number\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/good\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/hash_as_integer\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/hash_oid_as_integer\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/md4_params\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/negative_serial\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/non_minimal_serial\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/not_sequence\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/null_params\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/overlong_serial\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/trailing_data\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/trailing_inner_data\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/unknown_hash_oid\nnet/data/fuzzer_data/parse_ocsp_cert_id_fuzzer/zero_serial\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/bad_produced_at_type\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/bad_responder_id_key_hash_length\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/bad_responder_id_key_hash_trailing_data\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/bad_responder_id_key_hash_type\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/bad_responses_data\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/bad_responses_type\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/empty_extensions\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/empty_responder_id_name\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/empty_responses\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/empty_version\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/null_responses_data\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/trailing_junk\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/trailing_outer_data\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/version_explicit_default\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/version_too_large\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/version_too_new\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/version_trailing_data\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/wrong_outer_type\nnet/data/fuzzer_data/parse_ocsp_response_data_fuzzer/wrong_responder_id_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/baisc_response_bad_data\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/baisc_response_trailing_data\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_certs\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_certs_inner_data\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_certs_trailing_data\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_certs_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg_bad_params\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg_bad_sha1_non_empty_params\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg_bad_sha1_params\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg_data_trailing_params\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg_empty_oid\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg_oid_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_alg_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_bad_sig_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_empty_certs\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_empty_sig\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_null_certs\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_trailing_inner_junk\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_trailing_junk\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/basic_response_trailing_outer_junk\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/response_bytes_bad_oid_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/response_bytes_bad_response_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/response_bytes_empty_oid\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/response_bytes_empty_response\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/response_bytes_trailing_data\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/response_status_type_out_of_range\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/response_status_type_too_large\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/trailing_inner_data\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/trailing_outer_data\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/try_later\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/unused\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/wrong_basic_response_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/wrong_outer_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/wrong_response_bytes\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/wrong_response_bytes_type\nnet/data/fuzzer_data/parse_ocsp_response_fuzzer/wrong_response_status_type\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_cert_status_context\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_cert_status_type\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_extensions\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_next_update\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_next_update_trailing_data\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_next_update_type\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_outer_type\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_date_offset\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_date_type\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_date_value\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_reason_integer\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_reason_primitive\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_reason_value_out_of_range\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_reason_value_too_large\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_reason_value_trailing_data\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_reason_value_type\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_reason_value_unused\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_revoked_info_trailing_data\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/bad_this_update_type\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/empty_extensions\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/empty_next_update\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/no_extensions\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/trailing_inner_data\nnet/data/fuzzer_data/parse_ocsp_single_response_fuzzer/trailing_outer_data\nnet/data/fuzzer_data/pickle/04aa6691\nnet/data/fuzzer_data/pickle/06060415\nnet/data/fuzzer_data/pickle/082b8e5c\nnet/data/fuzzer_data/pickle/0a3be2bc\nnet/data/fuzzer_data/pickle/0af7cc9e\nnet/data/fuzzer_data/pickle/0c1ae000\nnet/data/fuzzer_data/pickle/0c804310\nnet/data/fuzzer_data/pickle/0c89dec0\nnet/data/fuzzer_data/pickle/0ce36686\nnet/data/fuzzer_data/pickle/0dd3479e\nnet/data/fuzzer_data/pickle/0f983fe3\nnet/data/fuzzer_data/pickle/0fa45b93\nnet/data/fuzzer_data/pickle/10e0437f\nnet/data/fuzzer_data/pickle/11161345\nnet/data/fuzzer_data/pickle/11abd4e1\nnet/data/fuzzer_data/pickle/1296a200\nnet/data/fuzzer_data/pickle/1487b43f\nnet/data/fuzzer_data/pickle/18157ea2\nnet/data/fuzzer_data/pickle/1950805e\nnet/data/fuzzer_data/pickle/1a56ec86\nnet/data/fuzzer_data/pickle/1ab61f5f\nnet/data/fuzzer_data/pickle/1adab76b\nnet/data/fuzzer_data/pickle/1afe886b\nnet/data/fuzzer_data/pickle/1bcd1a28\nnet/data/fuzzer_data/pickle/1cbf4387\nnet/data/fuzzer_data/pickle/1d721965\nnet/data/fuzzer_data/pickle/1ebe0574\nnet/data/fuzzer_data/pickle/1f1a3856\nnet/data/fuzzer_data/pickle/1f91ea5a\nnet/data/fuzzer_data/pickle/22221e58\nnet/data/fuzzer_data/pickle/2313ad3a\nnet/data/fuzzer_data/pickle/24766325\nnet/data/fuzzer_data/pickle/26da8b0d\nnet/data/fuzzer_data/pickle/28cf8189\nnet/data/fuzzer_data/pickle/298bea5f\nnet/data/fuzzer_data/pickle/2cc7edc5\nnet/data/fuzzer_data/pickle/2ecb81e4\nnet/data/fuzzer_data/pickle/32265718\nnet/data/fuzzer_data/pickle/337a73e1\nnet/data/fuzzer_data/pickle/366b56c0\nnet/data/fuzzer_data/pickle/382f8d07\nnet/data/fuzzer_data/pickle/39f56695\nnet/data/fuzzer_data/pickle/3b39b56c\nnet/data/fuzzer_data/pickle/3bb66388\nnet/data/fuzzer_data/pickle/3e9decb4\nnet/data/fuzzer_data/pickle/43148e51\nnet/data/fuzzer_data/pickle/43b1b874\nnet/data/fuzzer_data/pickle/44d2c284\nnet/data/fuzzer_data/pickle/4614d168\nnet/data/fuzzer_data/pickle/464f88bb\nnet/data/fuzzer_data/pickle/46c905ba\nnet/data/fuzzer_data/pickle/472835de\nnet/data/fuzzer_data/pickle/487e87da\nnet/data/fuzzer_data/pickle/49a205b9\nnet/data/fuzzer_data/pickle/4b0274c5\nnet/data/fuzzer_data/pickle/4bf4ed85\nnet/data/fuzzer_data/pickle/4d39f76e\nnet/data/fuzzer_data/pickle/4f9e02a6\nnet/data/fuzzer_data/pickle/510342bb\nnet/data/fuzzer_data/pickle/5284d9b2\nnet/data/fuzzer_data/pickle/536f63fc\nnet/data/fuzzer_data/pickle/5446738e\nnet/data/fuzzer_data/pickle/5556fec2\nnet/data/fuzzer_data/pickle/55ce1b36\nnet/data/fuzzer_data/pickle/56c7f8fc\nnet/data/fuzzer_data/pickle/58e01c9b\nnet/data/fuzzer_data/pickle/5a7338c9\nnet/data/fuzzer_data/pickle/5a742552\nnet/data/fuzzer_data/pickle/5b83d0ed\nnet/data/fuzzer_data/pickle/5c5082cb\nnet/data/fuzzer_data/pickle/5c6c8915\nnet/data/fuzzer_data/pickle/5cd0e8de\nnet/data/fuzzer_data/pickle/5f43c02a\nnet/data/fuzzer_data/pickle/5ff3358a\nnet/data/fuzzer_data/pickle/60360a67\nnet/data/fuzzer_data/pickle/6324141b\nnet/data/fuzzer_data/pickle/641560a8\nnet/data/fuzzer_data/pickle/641756d4\nnet/data/fuzzer_data/pickle/64ce758e\nnet/data/fuzzer_data/pickle/650f476a\nnet/data/fuzzer_data/pickle/6871dab0\nnet/data/fuzzer_data/pickle/6a094969\nnet/data/fuzzer_data/pickle/6b322ac3\nnet/data/fuzzer_data/pickle/6ca2db8f\nnet/data/fuzzer_data/pickle/6d0514a7\nnet/data/fuzzer_data/pickle/6e343227\nnet/data/fuzzer_data/pickle/6e6b0d4e\nnet/data/fuzzer_data/pickle/6f55c48d\nnet/data/fuzzer_data/pickle/70840753\nnet/data/fuzzer_data/pickle/71104af4\nnet/data/fuzzer_data/pickle/71770192\nnet/data/fuzzer_data/pickle/71f9f819\nnet/data/fuzzer_data/pickle/7228d2d1\nnet/data/fuzzer_data/pickle/7310d13f\nnet/data/fuzzer_data/pickle/73e92f4f\nnet/data/fuzzer_data/pickle/74fea65b\nnet/data/fuzzer_data/pickle/7557733e\nnet/data/fuzzer_data/pickle/75b58e83\nnet/data/fuzzer_data/pickle/7764e058\nnet/data/fuzzer_data/pickle/79cf7c51\nnet/data/fuzzer_data/pickle/7b5051d5\nnet/data/fuzzer_data/pickle/850261bc\nnet/data/fuzzer_data/pickle/855ce411\nnet/data/fuzzer_data/pickle/856dbcac\nnet/data/fuzzer_data/pickle/8610f03b\nnet/data/fuzzer_data/pickle/861ae5f9\nnet/data/fuzzer_data/pickle/88ada712\nnet/data/fuzzer_data/pickle/88c66fe9\nnet/data/fuzzer_data/pickle/89c49c6e\nnet/data/fuzzer_data/pickle/8a3fe779\nnet/data/fuzzer_data/pickle/8b5e4b70\nnet/data/fuzzer_data/pickle/8bdf113a\nnet/data/fuzzer_data/pickle/8c5c023c\nnet/data/fuzzer_data/pickle/8f325d24\nnet/data/fuzzer_data/pickle/9507fee9\nnet/data/fuzzer_data/pickle/95191182\nnet/data/fuzzer_data/pickle/9625d695\nnet/data/fuzzer_data/pickle/9b0b350a\nnet/data/fuzzer_data/pickle/9e7c6631\nnet/data/fuzzer_data/pickle/9e8bdadd\nnet/data/fuzzer_data/pickle/a69af538\nnet/data/fuzzer_data/pickle/a6c67128\nnet/data/fuzzer_data/pickle/ab93cf20\nnet/data/fuzzer_data/pickle/ad734490\nnet/data/fuzzer_data/pickle/ade9c3cd\nnet/data/fuzzer_data/pickle/b1a4a781\nnet/data/fuzzer_data/pickle/b3e4648d\nnet/data/fuzzer_data/pickle/b3f4718e\nnet/data/fuzzer_data/pickle/b4a52ae1\nnet/data/fuzzer_data/pickle/b6a8deed\nnet/data/fuzzer_data/pickle/b9bcd3dd\nnet/data/fuzzer_data/pickle/b9e54611\nnet/data/fuzzer_data/pickle/ba179ea4\nnet/data/fuzzer_data/pickle/bb4ab78d\nnet/data/fuzzer_data/pickle/bc8b31b0\nnet/data/fuzzer_data/pickle/bd370220\nnet/data/fuzzer_data/pickle/bd6928b9\nnet/data/fuzzer_data/pickle/be3f22be\nnet/data/fuzzer_data/pickle/bfc9ed63\nnet/data/fuzzer_data/pickle/c10ad0a2\nnet/data/fuzzer_data/pickle/c1ebf068\nnet/data/fuzzer_data/pickle/c670d261\nnet/data/fuzzer_data/pickle/c6fd7106\nnet/data/fuzzer_data/pickle/c73f04e3\nnet/data/fuzzer_data/pickle/c7ad7b0b\nnet/data/fuzzer_data/pickle/c94e582d\nnet/data/fuzzer_data/pickle/ce63f8d9\nnet/data/fuzzer_data/pickle/d34b250e\nnet/data/fuzzer_data/pickle/d63d4e28\nnet/data/fuzzer_data/pickle/d771a6f4\nnet/data/fuzzer_data/pickle/d8f73384\nnet/data/fuzzer_data/pickle/d943647f\nnet/data/fuzzer_data/pickle/da797864\nnet/data/fuzzer_data/pickle/deb3d664\nnet/data/fuzzer_data/pickle/df6f6653\nnet/data/fuzzer_data/pickle/e166221a\nnet/data/fuzzer_data/pickle/e2881d1b\nnet/data/fuzzer_data/pickle/e32cc803\nnet/data/fuzzer_data/pickle/e40fbba4\nnet/data/fuzzer_data/pickle/e4a4b826\nnet/data/fuzzer_data/pickle/e6899e34\nnet/data/fuzzer_data/pickle/e7002af4\nnet/data/fuzzer_data/pickle/ea8f42ba\nnet/data/fuzzer_data/pickle/ec76a08b\nnet/data/fuzzer_data/pickle/eefd76b4\nnet/data/fuzzer_data/pickle/f0eae6eb\nnet/data/fuzzer_data/pickle/f4533a73\nnet/data/fuzzer_data/pickle/f4adf8aa\nnet/data/fuzzer_data/pickle/f50adab0\nnet/data/fuzzer_data/pickle/f7e82410\nnet/data/fuzzer_data/pickle/f92c8fa9\nnet/data/fuzzer_data/pickle/fae28644\nnet/data/fuzzer_data/pickle/fc881663\nnet/data/fuzzer_data/pickle/fd3b1404\nnet/data/fuzzer_data/pickle/fd423ced\nnet/data/fuzzer_data/pickle/fd5c305b\nnet/data/fuzzer_data/pickle/fd7c2ce0\nnet/data/pac_file_fetcher_unittest/gzipped_pac\nnet/data/pac_file_fetcher_unittest/utf16be_pac\nnet/data/parse_certificate_unittest/v3_certificate_template.pk8\nnet/data/spdy_tests/examples_07.hpack\nnet/data/ssl/certificates/2_client_certs_1_key.p12\nnet/data/ssl/certificates/client-empty-password.p12\nnet/data/ssl/certificates/client-nokey.p12\nnet/data/ssl/certificates/client-null-password.p12\nnet/data/ssl/certificates/client.p12\nnet/data/ssl/certificates/client_1.p12\nnet/data/ssl/certificates/client_1.pk8\nnet/data/ssl/certificates/client_1_u16_password.p12\nnet/data/ssl/certificates/client_2.p12\nnet/data/ssl/certificates/client_2.pk8\nnet/data/ssl/certificates/client_3.p12\nnet/data/ssl/certificates/client_3.pk8\nnet/data/ssl/certificates/client_4.p12\nnet/data/ssl/certificates/client_4.pk8\nnet/data/ssl/certificates/client_5.p12\nnet/data/ssl/certificates/client_5.pk8\nnet/data/ssl/certificates/client_6.p12\nnet/data/ssl/certificates/client_6.pk8\nnet/data/ssl/certificates/client_7.p12\nnet/data/ssl/certificates/client_7.pk8\nnet/data/ssl/certificates/client_with_ec_key.p12\nnet/data/ssl/certificates/crlset_blocked_interception_by_intermediate.raw\nnet/data/ssl/certificates/crlset_blocked_interception_by_root.raw\nnet/data/ssl/certificates/crlset_by_intermediate_serial.raw\nnet/data/ssl/certificates/crlset_by_leaf_spki.raw\nnet/data/ssl/certificates/crlset_by_leaf_subject_no_spki.raw\nnet/data/ssl/certificates/crlset_by_root_serial.raw\nnet/data/ssl/certificates/crlset_by_root_spki.raw\nnet/data/ssl/certificates/crlset_by_root_subject.raw\nnet/data/ssl/certificates/crlset_by_root_subject_no_spki.raw\nnet/data/ssl/certificates/crlset_known_interception_by_root.raw\nnet/data/ssl/certificates/cronet-quic-leaf-cert.key\nnet/data/ssl/certificates/duplicate_cn_1.p12\nnet/data/ssl/certificates/duplicate_cn_2.p12\nnet/data/ssl/certificates/foaf.me.chromium-test-cert.der\nnet/data/ssl/certificates/google.binary.p7b\nnet/data/ssl/certificates/google.single.der\nnet/data/ssl/certificates/invalid_key_usage_cert.der\nnet/data/ssl/certificates/mit.davidben.der\nnet/data/ssl/certificates/multi-root-crlset-C.raw\nnet/data/ssl/certificates/multi-root-crlset-CD-and-FE.raw\nnet/data/ssl/certificates/multi-root-crlset-D-and-E.raw\nnet/data/ssl/certificates/multi-root-crlset-E.raw\nnet/data/ssl/certificates/multi-root-crlset-unrelated.raw\nnet/data/ssl/certificates/multi-root.keychain\nnet/data/ssl/certificates/nist.der\nnet/data/ssl/certificates/quic-ecdsa-leaf.key\nnet/data/ssl/certificates/quic-leaf-cert.key\nnet/data/ssl/certificates/quic-leaf-cert.key.sct\nnet/data/ssl/certificates/unittest.key.bin\nnet/data/ssl/certificates/unittest.selfsigned.der\nnet/data/ssl/certificates/websocket_client_cert.p12\nnet/data/url_request_unittest/BullRunSpeech.txt.deflate\nnet/data/url_request_unittest/gzip-encoded\npdf/pdfium/fuzzers/corpora/pdf_codec_tiff/not_kitty.tiff\npdf/pdfium/fuzzers/corpora/pdf_jpx/not_kitty.jp2\npdf/test/data/bigtable_micro.in\nprinting/test/data/emf/test4.emf\nremoting/host/installer/mac/Keystone/GoogleSoftwareUpdate.pkg\nservices/device/hid/fuzz_corpus/report0\nservices/device/hid/fuzz_corpus/report1\nservices/device/hid/fuzz_corpus/report2\nservices/device/hid/fuzz_corpus/report3\nservices/device/hid/fuzz_corpus/report4\nservices/device/usb/fuzz_corpus/descriptor0\nservices/device/usb/fuzz_corpus/descriptor1\nservices/device/usb/fuzz_corpus/descriptor2\nservices/device/usb/fuzz_corpus/descriptor3\nservices/device/usb/fuzz_corpus/descriptor4\nservices/device/usb/fuzz_corpus/descriptor5\nservices/device/usb/fuzz_corpus/descriptor6\nservices/device/usb/fuzz_corpus/descriptor7\nservices/device/usb/fuzz_corpus/usb_string_descriptors_example\nservices/device/usb/fuzz_corpus/webusb_descriptors_unittest_example\nservices/test/data/content-sniffer-test0.html.gz\nservices/test/data/decoder/google.br\nservices/test/data/decoder/google.gz\nservices/test/data/decoder/google.gz.br\nservices/test/data/decoder/google.zst\nservices/test/data/hello.html.gz\nservices/test/data/passage_embeddings/dummy_embeddings_model.tflite\nservices/test/data/passage_embeddings/sentencepiece.model\nsql/test/data/recovery_387868\ntesting/libfuzzer/fuzzers/flatbuffers_corpus/monsterdata_test.mon\ntesting/libfuzzer/fuzzers/woff2_corpus/6df91fe5cbca947ae7b7b43d4cd4a861213fae9f\ntesting/libfuzzer/fuzzers/woff2_corpus/fd14c502730b85e8b9c078ecd5b309d1e6c0a6d1\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Abidjan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Accra\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Addis_Ababa\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Algiers\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Asmara\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Asmera\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bamako\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bangui\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Banjul\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bissau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Blantyre\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Brazzaville\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bujumbura\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Cairo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Casablanca\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ceuta\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Conakry\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Dakar\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Dar_es_Salaam\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Djibouti\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Douala\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/El_Aaiun\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Freetown\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Gaborone\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Harare\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Johannesburg\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Juba\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kampala\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Khartoum\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kigali\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kinshasa\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lagos\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Libreville\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lome\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Luanda\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lubumbashi\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lusaka\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Malabo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Maputo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Maseru\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Mbabane\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Mogadishu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Monrovia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Nairobi\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ndjamena\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Niamey\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Nouakchott\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ouagadougou\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Porto-Novo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Sao_Tome\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Timbuktu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Tripoli\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Tunis\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Africa/Windhoek\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Adak\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Anchorage\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Anguilla\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Antigua\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Araguaina\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Buenos_Aires\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Catamarca\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/ComodRivadavia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Cordoba\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Jujuy\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/La_Rioja\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Mendoza\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Rio_Gallegos\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Salta\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/San_Juan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/San_Luis\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Tucuman\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Argentina/Ushuaia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Aruba\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Asuncion\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Atikokan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Atka\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Bahia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Bahia_Banderas\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Barbados\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Belem\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Belize\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Blanc-Sablon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Boa_Vista\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Bogota\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Boise\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Buenos_Aires\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Cambridge_Bay\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Campo_Grande\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Cancun\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Caracas\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Catamarca\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Cayenne\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Cayman\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Chicago\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Chihuahua\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Ciudad_Juarez\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Coral_Harbour\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Cordoba\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Costa_Rica\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Coyhaique\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Creston\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Cuiaba\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Curacao\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Danmarkshavn\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Dawson\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Dawson_Creek\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Denver\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Detroit\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Dominica\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Edmonton\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Eirunepe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/El_Salvador\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Ensenada\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Fort_Nelson\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Fort_Wayne\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Fortaleza\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Glace_Bay\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Godthab\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Goose_Bay\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Grand_Turk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Grenada\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Guadeloupe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Guatemala\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Guayaquil\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Guyana\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Halifax\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Havana\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Hermosillo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Indianapolis\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Knox\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Marengo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Petersburg\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Tell_City\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Vevay\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Vincennes\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indiana/Winamac\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Indianapolis\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Inuvik\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Iqaluit\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Jamaica\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Jujuy\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Juneau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Kentucky/Louisville\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Kentucky/Monticello\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Knox_IN\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Kralendijk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/La_Paz\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Lima\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Los_Angeles\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Louisville\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Lower_Princes\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Maceio\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Managua\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Manaus\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Marigot\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Martinique\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Matamoros\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Mazatlan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Mendoza\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Menominee\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Merida\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Metlakatla\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Mexico_City\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Miquelon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Moncton\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Monterrey\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Montevideo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Montreal\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Montserrat\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Nassau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/New_York\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Nipigon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Nome\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Noronha\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/North_Dakota/Beulah\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/North_Dakota/Center\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/North_Dakota/New_Salem\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Nuuk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Ojinaga\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Panama\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Pangnirtung\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Paramaribo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Phoenix\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Port-au-Prince\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Port_of_Spain\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Porto_Acre\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Porto_Velho\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Puerto_Rico\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Punta_Arenas\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Rainy_River\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Rankin_Inlet\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Recife\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Regina\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Resolute\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Rio_Branco\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Rosario\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Santa_Isabel\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Santarem\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Santiago\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Santo_Domingo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Sao_Paulo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Scoresbysund\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Shiprock\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Sitka\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/St_Barthelemy\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/St_Johns\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/St_Kitts\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/St_Lucia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/St_Thomas\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/St_Vincent\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Swift_Current\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Tegucigalpa\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Thule\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Thunder_Bay\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Tijuana\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Toronto\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Tortola\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Vancouver\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Virgin\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Whitehorse\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Winnipeg\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Yakutat\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/America/Yellowknife\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Casey\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Davis\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/DumontDUrville\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Macquarie\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Mawson\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/McMurdo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Palmer\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Rothera\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/South_Pole\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Syowa\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Troll\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Vostok\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Arctic/Longyearbyen\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aden\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Almaty\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Amman\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Anadyr\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtobe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ashgabat\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ashkhabad\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Atyrau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baghdad\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bahrain\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baku\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bangkok\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Barnaul\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Beirut\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bishkek\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Brunei\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Calcutta\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chita\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Choibalsan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chongqing\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chungking\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Colombo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dacca\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Damascus\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dhaka\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dili\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dubai\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dushanbe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Famagusta\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Gaza\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Harbin\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hebron\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ho_Chi_Minh\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hong_Kong\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hovd\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Irkutsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Istanbul\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jakarta\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jayapura\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jerusalem\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kabul\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kamchatka\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Karachi\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kashgar\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kathmandu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Katmandu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Khandyga\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kolkata\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Krasnoyarsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuala_Lumpur\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuching\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuwait\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macao\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Magadan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Makassar\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Manila\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Muscat\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Nicosia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Novokuznetsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Novosibirsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Omsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Oral\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Phnom_Penh\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Pontianak\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Pyongyang\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qatar\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qostanay\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qyzylorda\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Rangoon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Riyadh\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Saigon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Sakhalin\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Samarkand\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Seoul\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Shanghai\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Singapore\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Srednekolymsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Taipei\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tashkent\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tbilisi\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tehran\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tel_Aviv\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimbu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimphu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tokyo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tomsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ujung_Pandang\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ulaanbaatar\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ulan_Bator\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Urumqi\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ust-Nera\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Vientiane\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Vladivostok\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yakutsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yangon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yekaterinburg\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yerevan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Azores\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Bermuda\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Canary\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Cape_Verde\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Faeroe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Faroe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Jan_Mayen\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Madeira\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Reykjavik\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/South_Georgia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/St_Helena\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Stanley\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/ACT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Adelaide\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Brisbane\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Broken_Hill\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Canberra\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Currie\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Darwin\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Eucla\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Hobart\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/LHI\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Lindeman\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Lord_Howe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Melbourne\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/NSW\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/North\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Perth\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Queensland\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/South\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Sydney\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Tasmania\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Victoria\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/West\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Australia/Yancowinna\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Brazil/Acre\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Brazil/DeNoronha\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Brazil/East\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Brazil/West\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/CET\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/CST6CDT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Atlantic\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Central\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Eastern\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Mountain\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Newfoundland\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Pacific\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Saskatchewan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Canada/Yukon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Chile/Continental\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Chile/EasterIsland\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Cuba\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/EET\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/EST\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/EST5EDT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Egypt\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Eire\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+0\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+1\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+10\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+11\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+12\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+2\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+3\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+4\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+5\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+6\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+7\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+8\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+9\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-0\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-1\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-10\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-11\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-12\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-13\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-14\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-2\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-3\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-4\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-5\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-6\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-7\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-8\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-9\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT0\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/Greenwich\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/UCT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/UTC\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/Universal\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Etc/Zulu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Amsterdam\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Andorra\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Astrakhan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Athens\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Belfast\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Belgrade\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Berlin\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Bratislava\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Brussels\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Bucharest\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Budapest\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Busingen\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Chisinau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Copenhagen\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Dublin\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Gibraltar\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Guernsey\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Helsinki\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Isle_of_Man\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Istanbul\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Jersey\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kaliningrad\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kiev\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kirov\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kyiv\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Lisbon\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Ljubljana\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/London\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Luxembourg\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Madrid\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Malta\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Mariehamn\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Minsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Monaco\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Moscow\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Nicosia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Oslo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Paris\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Podgorica\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Prague\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Riga\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Rome\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Samara\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/San_Marino\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Sarajevo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Saratov\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Simferopol\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Skopje\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Sofia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Stockholm\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tallinn\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tirane\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tiraspol\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Ulyanovsk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Uzhgorod\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vaduz\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vatican\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vienna\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vilnius\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Volgograd\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Warsaw\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zagreb\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zaporozhye\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zurich\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Factory\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/GB\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/GB-Eire\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/GMT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/GMT+0\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/GMT-0\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/GMT0\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Greenwich\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/HST\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Hongkong\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Iceland\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Antananarivo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Chagos\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Christmas\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Cocos\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Comoro\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Kerguelen\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mahe\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Maldives\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mauritius\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mayotte\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Indian/Reunion\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Iran\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Israel\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Jamaica\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Japan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Kwajalein\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Libya\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/MET\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/MST\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/MST7MDT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Mexico/BajaNorte\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Mexico/BajaSur\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Mexico/General\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/NZ\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/NZ-CHAT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Navajo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/PRC\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/PST8PDT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Apia\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Auckland\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Bougainville\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Chatham\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Chuuk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Easter\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Efate\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Enderbury\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Fakaofo\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Fiji\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Funafuti\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Galapagos\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Gambier\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Guadalcanal\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Guam\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Honolulu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Johnston\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kanton\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kiritimati\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kosrae\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kwajalein\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Majuro\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Marquesas\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Midway\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Nauru\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Niue\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Norfolk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Noumea\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pago_Pago\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Palau\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pitcairn\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pohnpei\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Ponape\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Port_Moresby\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Rarotonga\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Saipan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Samoa\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tahiti\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tarawa\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tongatapu\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Truk\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Wake\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Wallis\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Yap\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Poland\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Portugal\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/ROC\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/ROK\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Singapore\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Turkey\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/UCT\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Alaska\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Aleutian\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Arizona\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Central\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/East-Indiana\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Eastern\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Hawaii\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Indiana-Starke\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Michigan\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Mountain\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Pacific\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/US/Samoa\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/UTC\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Universal\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/W-SU\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/WET\nthird_party/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo/Zulu\nthird_party/afl/src/testcases/archives/common/bzip2/small_archive.bz2\nthird_party/afl/src/testcases/archives/common/cab/small_archive.cab\nthird_party/afl/src/testcases/archives/common/compress/small_archive.Z\nthird_party/afl/src/testcases/archives/common/cpio/small_archive.cpio\nthird_party/afl/src/testcases/archives/common/gzip/small_archive.gz\nthird_party/afl/src/testcases/archives/common/lzo/small_archive.lzo\nthird_party/afl/src/testcases/archives/common/rar/small_archive.rar\nthird_party/afl/src/testcases/archives/common/tar/small_archive.tar\nthird_party/afl/src/testcases/archives/common/xz/small_archive.xz\nthird_party/afl/src/testcases/archives/common/zip/small_archive.zip\nthird_party/afl/src/testcases/archives/exotic/arj/small_archive.arj\nthird_party/afl/src/testcases/archives/exotic/lha/small_archive.lha\nthird_party/afl/src/testcases/archives/exotic/lrzip/small_archive.lrz\nthird_party/afl/src/testcases/archives/exotic/lzip/small_archive.lz\nthird_party/afl/src/testcases/archives/exotic/lzma/small_archive.lzma\nthird_party/afl/src/testcases/archives/exotic/rzip/small_archive.rz\nthird_party/afl/src/testcases/archives/exotic/zoo/small_archive.zoo\nthird_party/afl/src/testcases/images/jp2/not_kitty.jp2\nthird_party/afl/src/testcases/images/jxr/not_kitty.jxr\nthird_party/afl/src/testcases/images/tiff/not_kitty.tiff\nthird_party/afl/src/testcases/multimedia/h264/small_movie.mp4\nthird_party/afl/src/testcases/others/pcap/small_capture.pcap\nthird_party/android_build_tools/gradle_wrapper/gradle/wrapper/gradle-wrapper.jar\nthird_party/angle/samples/multi_texture/basemap.tga\nthird_party/angle/samples/multi_texture/lightmap.tga\nthird_party/angle/samples/particle_system/smoke.tga\nthird_party/angle/src/tests/capture_tests/expected/CapturedTestCL_MultiFrameCL_ES3_Vulkan.angledata\nthird_party/angle/src/tests/capture_tests/expected/CapturedTest_ActiveTextures_ES3_Vulkan.angledata\nthird_party/angle/src/tests/capture_tests/expected/CapturedTest_MultiFrame_ES3_Vulkan.angledata\nthird_party/angle/third_party/clspv/gn/clspv--.bc\nthird_party/angle/third_party/clspv/gn/clspv64--.bc\nthird_party/angle/third_party/glmark2/src/data/models/asteroid-high.3ds\nthird_party/angle/third_party/glmark2/src/data/models/asteroid-low.3ds\nthird_party/angle/third_party/glmark2/src/data/models/cat.3ds\nthird_party/angle/third_party/glmark2/src/data/models/cube.3ds\nthird_party/angle/third_party/glmark2/src/data/models/horse.3ds\nthird_party/angle/third_party/r8/custom_d8.jar\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-0bb59816-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-10205257-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-12221360-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-1710ed24-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-4bc23689-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-4fc38a81-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-77c3dd93-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-8031e9af-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-80f9dc94-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-81f29dfa-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-85479680-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-96ea1009-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-98385e16-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-c8ee01a0-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-cc503035-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-da941766-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-e43c9cdf-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-eec47a2c-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-f6dc13e0-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/blink-fa1d6af2-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0065f146-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0265e6e6-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-04d70617-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-05e30aee-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0d472bda-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0d6d9be6-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0df2f610-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0e3040c7-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0f614d4f-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-0f7a093d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-112702c5-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-14cf33d0-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-14d09955-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-1719c21a-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-193e56ea-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-1a2d801a-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-1b2817e8-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-1d216e94-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-1ec711b7-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-1fbee994-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-206a9ff3-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-21232b9b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-22515138-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-227bd930-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-23538394-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-2356bdcd-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-238cf5a3-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-2717a699-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-27d4fb16-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-29237ffb-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-2a7fab51-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-2ae4c690-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-2b6ad6b4-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-3033f796-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-30560136-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-30e82465-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-34d7eeb8-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-352bcca5-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-391febca-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-39972e5c-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-3b4d032b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-3e38e5f2-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-3e4a3847-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-3ec4ef72-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-409022d4-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-431ae55b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-448b6517-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-45a3954b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4860299d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-49408d29-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4943685d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4979fb31-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4a7a8fd9-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4e0f779f-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4f8b123f-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4faf8731-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-4fb59c46-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-54c9e937-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-54e84adc-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-57c93d97-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-583157ad-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-58b1b81c-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-59c20b40-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-5ab8dd34-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-5b10babc-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-5b6f9989-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-5c8e79a9-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-6106fe54-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-61cd47de-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-62257292-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-64cc1797-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-656a2fb2-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-684d1822-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-6ce0f7ef-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-6d85b46b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-6f08aebe-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-70e36c35-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-74d0c3a7-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-74d5c04a-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-76018e17-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-76eee380-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-76fa5a5c-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7a05abbf-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7ab41628-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7bd2f08e-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7c567e4a-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7d5804c4-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7de5747c-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7e80aca9-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7e90ea67-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-7fb88d30-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-83cfc047-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-858d5c20-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-859ade88-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-864ea264-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8789b1e7-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8a24e87b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8a6f9477-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8c83e6bb-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8d5392e6-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8d8c306b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8d8d16bf-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8dd2c9ce-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-8e26a946-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9063b717-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9543b5cf-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-960c913b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-96455faa-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-96d5c0fc-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-96efbea6-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-985ebbbf-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9a2c099a-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9a44e597-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9b31a8ed-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9bd71c16-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9c7c2eb3-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9cc492d5-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9cc7aea3-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-9fef0c31-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-a1e1b5f1-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-a3f8b628-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-a4e713d9-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-a8fb3890-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-a9527fcb-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-aa3e5dcd-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-ab0c258b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-afc94065-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-b0a826d0-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-b24d9392-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-b57ca54d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-b6a3218f-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-b80b6b7c-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-b897e78d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-b9e332be-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-baae8244-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-baf6b266-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-bb23c946-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-bd00b791-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-bda84275-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-beb59e97-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-bf35cad8-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-c11a8e42-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-c2c6c148-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-c540eaad-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-c586948d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-c783c03b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-c7c1495f-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-cb6b36c6-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-cc48904d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-cc557859-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-ccbb229b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-cdb7134d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-ce35fe2d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-ce91bd00-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d0882af7-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d0be63da-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d0e092b9-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d43fa98b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d49c0ed0-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d51a04cc-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d53a8b2a-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d6b97507-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d6bb4082-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d7a1ff21-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-d7b86074-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-daa44822-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-db179485-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-de342cee-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-e2c1d349-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-e3f44ac8-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-e49087c3-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-e7176202-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-e9c701ff-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-eb130ddb-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-eb1ec3c9-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-ec47f847-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-efdb3a33-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f25f9676-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f2d38f62-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f2f2e2e8-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f3d415be-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f40204e3-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f544e59e-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f56e9880-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f615446c-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f62f4522-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f692b3ed-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f6e6f76b-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-f76c5727-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-fa63a87d-x86\nthird_party/blink/renderer/bindings/core/v8/serialization/fuzz_corpus/v8-fff15497-x86\nthird_party/blink/renderer/core/testing/data/exported-names.wasm\nthird_party/blink/renderer/core/testing/data/invalid-module.wasm\nthird_party/blink/renderer/core/testing/data/non_UTF8.wasm\nthird_party/blink/renderer/core/testing/data/test.webm\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0091b89571c844a754df4bdd133ad4d5b628e51d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/017fd5359998719d5fa3b3df5fc7b72fdb163936\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/031ccb60903b3cd5780b6d3743051e216068b7cc\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/037017bbfe44de68091da219ac9f83d9100e4b6a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/03cc7ffa27b3a0309adfa4eed49fae9c7a91c970\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0425ce6fe2ee20810034f7c8347fe3f3a323f0e4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/04bff48dcd66a033a9892df1ea38ca038436b3bb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/04ecc32312c98ebb1c08f6d57d98c7520a3b0d0f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/06ae60aae063a917d795388c4c36230286745111\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/075d2498e7c5370f5b4ad4d3a39b0aeb7e7b6242\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/07a75c4fd6ce06b8b82c40108c1333fab8cdf7a7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/07e318cd144fc7efe7b9e95f065bd8e35189287b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/07ecf359453ac3521a0254b50fd2f2c2e90b481d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0860ddb77abbc133ca7cf871020979abf1f82c0d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/090a9ed30399e75da9d5ec8ee1b09668881c82be\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0952e648c4e17520dd85935964fee52375ecfedb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/096684dc01d867661fe2f7455f9ab22e0857d7e4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/09ec95829dbcf10db5349e44d7b4d442cc3646b6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0a80baa1797615faddb0ccfaa6d46382a6b3e0e2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0b49f431e39df252e4b2404c7ead05fd97f3e23f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0c23817d368a1d420721709b639d99933b51fa45\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0cdb4b25ce305c78897a92f359a2c8c1477ba571\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0d015b964100880a09aaa492447c5ea1ca60aaa4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0d3ce4f01204e526d5bc5afb7a754235423044c1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0db82720176ea60c0948406dc77d8fe6d225f377\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0df9cfd31ac0bd6d932145f32e68bc65cc883da8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0eb1c6c9f8227944aef1fd3dcb413b7e592d7bfe\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0ed3b05749ab8c5346fe983701ed388589f31012\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0f639c2b9e1a8ce651e9f78dbba9bf5d1cdec07d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/0f63d1414ef452e3a0cd6f02426027be24cf05ea\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/106e06e64de76e45fc8b350b9ac8c86b5c6bc511\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/12108e195d16ed36f3a2342cbd6fa681e14d27be\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/122ca249dac2943200b259fd23e18a4cb31035d9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/13a965f9e03c788dda767783dedbdee04fc921d9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/14be6cc2655b8c0eca2e16a205a48b619d4ab329\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/155fa724bd473d8d66ea8e5866261ffad848589d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1599e9fa41ec68c80230491902786bee889f5bcb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/160fd1afc477f8f5f46b25291b4b33098f4f00f6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/165435e80cf32dfbb9fad8d24e0d2c92d1814b1f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/167609a843b8eaa0d6db4375f66fda15461950be\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/167749d0e421d223150a6c4248f8b355e8ce66b0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1714db8daebbab059a62b71f571565125c0a297b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/18310219d1b7f501d07dff568926bcf8d997e6d3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/19c42d45aa7d98a0ef2f2de2997b6e22aa1a8f1c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1a0cb01355c7db499eccf0dc45dc27ec89856f39\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1b181fded6cd8ca58cfde81415b702b0e3da82a1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1d8207d5b9b1abea52fb7d5d8c6ef2a0d5068ffe\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1e1946a1b74ecf5e21460531d89043b59b15270a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1e1d033b68bcb40e166166d8d86be1350231d232\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1eb24b4138ebcc36e94021f06f7f89c64cd4b583\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1ee6992c347409ea83901afbcad6666cf169f983\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/1f412eca783baa2cebfdfa7d20b6d64e4ae712cd\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/201c21a10bd4fb38e8f399951ba4d303821f2dea\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/20f68a183711473f34885a340a83207791d73004\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/22064b5d3d2b8920c85c3cd43ff9d0442f21c021\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/226493237f5a5d1ef606df325650862279f45c80\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/22a3b3ca448b9873d362154bb4a0889e4ae72e7c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2311b8b93a21c9565e1f39ff3749a982a8b21559\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/238b22352e0766896b15e26ee0b184690b39b7c9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2393e7d3d00847697336ab38f7b812c2b09ecd60\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/24c08e3d9ca730a81eac96c1345ae775b10acf5b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/259b3a4f074e9cb311971fee987a232eaca8a589\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/25a03ae6dc0c77f9f5546031d22050a9374067bb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/264ff1528d215678b7d0cab6f30d75067a8b69ce\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/265e53fceb8d465cbc82135e9dfdc45d78c50af9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/266ddd93d187e4bd0ac6495cedd8ebcbf55aa171\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/267e1b92f50fb25b7d6995d72ba2b607c491094e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/268554ad42965d1d12fc2e14f6cd25dde82cbf22\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/26b5604da5596b2733b603a176babce7db65084f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/26e268692cf273e5ca7686759ffba67ab0c2a962\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2751c451ecf0e2e1e61b14d5bc42fc96f8ee9a90\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/29ed2cf7b7d7844677c23fcebf5d6d7c7c745433\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/29ed3e6d98b4e03cb088941a472c74e258991dca\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/29f498a7b643fad9f03c5563bec1d57177b55655\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2a2568f696a5396ebf6a29f30d3e7da7517d583f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2b3dece417ae8dd46a921e70290367680dbc2ad4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2b465dd11f7a27dca616dfe36281f590128f4eb6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2bf3a0edb8d97471d635d43bbb2126018649437f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2c3338b0400e039743ad2fa537cbbd89d4aa8824\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2c3a0197ebe801d0982f5230568081c936f95e28\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2cbf6e11f35337aba018755545eacb3a08443337\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2dd374ed8f7a33fdaeab8e161a010400340210c4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2f05530ca067c990cdc6283661f950ddca781d4a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2f235b7ba2d613888ad53a1430e1043752a3fb9a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2f336d0e17a48e2edc13a2e8a437aa9773099608\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2f3693dfdbb384b066ab8b2f69473456b03e5c2b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2fb8064bc537fea2daec0ab6ae773577314b6876\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/2fe44b618a89d1cdf9627297460f36d6e927ebd6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/30140397fe38ee61f01eff44b5cfa48285e47889\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/302de7fd35416714976c8b80d1aa3e64b604c671\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/30af3da9ce882193e3588303797edb80ebaabd6b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/30fd500a65dd24adaa7b516381301a183f08508e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/315c8c4c6165a05a6003907cf44bc7ac1d367d82\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/31a9912eb9e093fcdce27d83ff1e9bbee5fe34e3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/31fd332b18f4960afad7af5b4a8ed9027e74da0f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/32ae073bdd9501d7617c7b2afeb53ca0c15f2ea4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/331c576d7334011219b2455e07e52c3633769585\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3382c113667455cd7b38c8b41662fdddd3e60bf3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/345cdc7aadb5e1f24dd5708eaafe88ad5e1852af\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/345ebd88fd96892142cef88bdefc7c16d3216a0d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3479cba50395ea6785a51cfe3d247634f5e601fe\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/34bc251961f054bf752bf103738399ba4eaa09c0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/34c2d14e77be385419644a3f15dbb3fea62724c2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/365791bfe51a4809b7b1be97a6c6064fff34245e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/36a915cb8f078a9ed3b744c4f876ecc946a2ec5f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/370b4d8ccb0d0671e7c66651585703815fe16c09\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/37b1e6b8ddaac24c3f3fa3b83646c4cc5ea4fcef\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/37daaae08ca0337f2b50a5db48171e8680583241\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3807d30510e275eeba48f261f1e1d72eca14b095\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/383c7323b00bd06cc911bf28f025752cdb9d088e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/386563dc4dbfd50a632e9ecf03b99e6955e56ee1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/38e857fcb5086ca80620c1c77dacd93dd70c7247\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/38f1413cd7389276c46425fbc06623ffca06ab8b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3a387a4da1d05575e4154e689d3b7aea816c9955\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3a3e4ccd65af3efcb6717be0828690ad6196b532\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3a5a90e4668e4112a67184bda480990ed4e25a18\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3a8bcfee35966bf857a833a91d6b3d17c333b961\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3c4b8716d0701aec5792c6ef51a033487d9f2052\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3d15fbef3d7252f176dffffb42d9064ddd10f08e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3d8fbe87ab0c655db7c32a846112ad2c9d3e7f4a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/3d9fbb9019796c63c14425c56eb154f8e5d82717\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/405a2d2c0bd3f6762605b612a668efe1763ce75b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/425098d86e6ab28bd6f17ad53ae09db75b5772e1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/428bc20500605fc0cf424f870d1e8f83c5059df5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/42bd94f85db3f5ac4c01ff7ba172bc8ddef60432\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/43889ce379baa9132173fc398fafe55f3d356505\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/438f603cb985b367fc217425d8f98200203a4dca\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/43c775987fb5eddb58c8c5df5efbc83b06b87546\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/45620f98144efb07521ce60df2d85adabb0df2ff\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4622094cc10659c5b7185c529a4216821d481eee\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/465fe4b5501c930d1d14e6ce04057889967c1c27\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/46bf374d6cbe5dcbc6d6642efdc0e21a742bf648\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/47bd0fe45358302b5d0ea59d5c81e8a0fe2aed7d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4974f2975b9edf3b5f045838364dbb141911ad17\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4988df6115609e79c6a37a06046f47c571ddddeb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/498b00ddd7f75a93d2b0731372c290e10020b17b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4a6483b5d52b34b4a0aa9a3a1bc38340161c226e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4ae70fa44b52ce5c6828ddc648ed0e0748629640\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4af42e15d5fa2e5f6f83942c024a11dc7e70d7e7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4b61b7402eefc4f49ff187c549ce09bc5ea6f549\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4b8cbf97d57464de8802b869c7a16d91647f305b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4be79e98814c59631c5737400ad09d67907b2416\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4dd140b8aa76604ca93c928056fee0b7061712d2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4e511d2c95640f8646e9aed3527aea1b9bac35be\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4e75b118acd9bbe263e8c1a00ba1cb8f71054c0d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4efdcd497072f85306dca983b56b030a61bfdb5d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4f3d0b3312bb9e4897859408ff1455a70d83c56b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4f6d30eb731ef1bb8a2faf1d61363c21366455b4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4f97056b65a42fb1f93b2fe25d70bb58a5e36180\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4fb0166607616ed8c7ffb9061cc214949974575b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/4fc2b1701d23d3ef1bd18dad25da22b9d6b2a24c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/500645591c80e1bf4641774d972da02865cdc697\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/50781232df4526cfdae1952e84e912352d0b92a0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/50a32d6d96c3273717e1c8b8e4daf4e7f5ff72de\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/50b87134e7464b32a37740403190c8ef03116565\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5308c7cd09d4b244fbbc544bcffdf7501f23b87b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/53438950d2b47be5ab6849cac445825732abffdb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/546fcaca292b59045074e9d78560511341987acc\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/549c9f3fffff6112030056a212563dab0ccfc3ea\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/55228c704fd6a9b6468d470ed6877332f7d912d0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/569eae3c857f63840f56560014ff4b2adb5e0b07\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5723227540d0bc577b6d06b42942e939b9fd1f85\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5742af4a414373bf4d465c268766765a388272c1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/57dc2437d9c8773f1d728052253e849ff093c64b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/58036d855a77e281076e0ab54e4e63500317a00a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/59dc4f0b83a23844023b09cc4fe0f277121c7be4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5a8c02ca27412b03a77d81d55e8f612b3139f3d6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5a9b1c687e2ffdd959dce79456b0c3808c49a021\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5ac4c39d8de57e953d752984c2a454eaa6ac3921\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5af236be1e7908f68252598cfaba2b668151d65b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5b3a38217ea491444c80a17d739936b0eb7d6276\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5bbf36ae3e0d4375b257eaddac36a20aea30e289\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5d12e34c71e5d001fa6ced3b5946164f0a4e8157\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5d2e30fd6f0b5e45ca6a53957d45666ded1f7e62\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5d32f59baad9f63b365f61d2fe7604a83e668782\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5d5d543446198ca0c1ee0a90d9bd1dc1c906f1e7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5db3b1cd26803a8f8f3570720b1c8bda531d7973\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5dda51b9d05f7d99590bd108e0fcbd51cfea8b92\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5e6e9f58761723d241d8a5d131b289f0b4931142\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5e8f156ea2e2f8b82a31c57d387c9d73e3048b53\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5ec6996fffe4c392ad8a7ee446e17466c31eba6e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5f10e932ff3d91c82027093fcd7ebf7963622c82\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/5f32e883581eda6501dc45377d2cb092246c807b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6021fff400694a589fbe487512fe0a75acbefa81\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6116459314bee4a46c07a849105edd8dd31086de\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/62275b63bcdf4ddcff849c7c0d5b74685f951781\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/628e5bbbae6fed6ea8e56c0020648fe805a4b81d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/646a8e6c1455092fbdfeeff8511739ff88c4c31c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/64b68bf5b882b9bd0b37267287980ecfa0e44a85\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6585f4e2b5be491aea76a1174036796535c01570\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6638644549adf34f2549da316a538874827f2dc4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/66e303967b5f0df9441edfebc843f974bca85616\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/675fb106acc92ecfe6d5e13081ac49bcd0366992\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/676c9720a8e137a235adbd9857109ec4a80a3975\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/67a24c8ca1c9501b488ed1ebd0a6dca5b2beb18f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/683dc48c0057cd1f0fb8dd57299d7919d238e087\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/68c906d67e12fb6eedef7accf599793b63424e07\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6907c48d082962b116a35a157470c25b3d615042\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6982d23746dd5380bdbdc870b04d913975ebda35\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6a2f9f7369d31e0961e6c066265fa93e677c1e98\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6a6d36fc57672f18dc8687c67f92fc7916dfa8ab\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6a6fe8f178f97ec588885365b8921044b567bb65\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6b4d1620e335083dd08e08e55407509336d45ad8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6bc10c9d19b66c285f2f34787ded5ebacb3fd5f1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6cac1f78df3a53057534598c63d258e441da9260\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6cb3b692a507eab869acfec4f59553dac54ee13d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6d485d07919ee9e2ce40dbfe85af6d91180b37de\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6e9248b93031bf55ca151bf7c4997efe03391194\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6e9f26c319655235857db9f515b4d7ce3540aa72\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6f57614f7968d1ec1272bf99eee1755ec0c4ec28\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6fd2b983ababa634e057f1c36a83e246882939ff\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/6ff63cce00d07decba06d52e8968057477421b7d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/70c0f0a855145d47e1f43c4e2dfbc43c7ae83cb7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/70d13ee99f89b4766262b612910eed696f97c63b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/70fb57e41949e4f274f796571f918a1a4ed90bf9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7115b5fac7a322124258809ee267e218dcede33b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/71db046590e7096f4adb4df3870bc7a83be32a06\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/720b5f41cee126560e096c86e63fbad79f27539c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/72152e023c4acac71fcb17eb190a5006d9cc326d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/72428a53149aa6814271b34e8739ca94a5186467\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/749d4d53263431538db0aad0955a00d27a6290d3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7512e4b6487628aab55a3bfcac9d98a044b35d4d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7521a524b21f3bca4914862fcaec7c93b17ee456\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/754326af79272baf12eed6135e279f05760b090d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7544ab036f63e3d8d6fac775a1726b2b2b98880d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7567cd6037ee58f9c0e185b3ab9431b7c105621d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/756a757748d1dd648d369ce8cf9a2a8236305280\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7649cb328ba87f23e0f5a920223376b2342f9d91\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/76aef317f1628a04c82e21bf6fe33d2d562e753a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7777e7e27a1dd2804cf12bab78987a69286ab44e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/782b07efd1d43b640dc84626ec375c6593cb0e4b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/78a974488d0ef6bf8f585e03d1306edeba5ad2b4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/78f4b1ff07a84ba09491b0d159eb65b8f17e97c9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/797006985d47c774d618d5b5f9552348977fd70f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/79e206d6a750918f6e73475d0961ee52d2899928\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7a6d3a6255de7ef65924ef6cf2beca37e07f2ab5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7ab9d193d63c4b48353e8eb18fb515d35acfeaa9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7af0ea65622381e22bfa8d5992bf39396f142033\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7b8f7e6cca594c099cd64168f7d231a52d4a78ff\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7bc82f8d0c482f7e90b3c29e7bee82dfdc177d89\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7cb507bbc72d774252939608d5dded947bd15e5d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7d39cf0e7187394e31a37fbc45edc3825ad3df67\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7e80c5307b5b65c62ce8f97509a3588eaf0ad162\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7efd9ce5b0523f09f7b4f37a838f07739038aba9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7f2f798b8893e00cfba14ebac6d233360ebfc101\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/7f92472679d1050f3e766d2d34dc482d7e22e654\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/80ec0565eb3e7900903c134584d494b618d3abf5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/844121ae58d6bb36f81e92c42723528a7123b5c0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/847c3d55a452bf83a6eb209b0411da3477491300\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/84ff3957ecc05bc806b183ee8d2310b09f8fc5da\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/856f3b79f3a56514f0fbbb7c63f361bb6cc07be8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/859f2ac933251900bc8ac45ae8b6ae64c25f54e7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/85e53271e14006f0265921d02d4d736cdc580b0b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/86592b6d5006db6b8515fcf98800e0154e0e1894\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/868ff4054649d579a1d0efa5356a4363848b9fdb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/87040a63d8cb013d0acf4dae68805d2e6b5cf251\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8727e0346f1575344192b5457954528744289af4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/885f266cf4582b510d66e9de969beccd6b4d450f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8887b2f899212d3292a2e67015a9622938d79a8b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/892c6b54361baf9960565fcf047da435a7c6d27e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/894d0bc2371a815befbafda9971c31bfc65e27b6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8963c57885ebbd41fe8a12b7459efe6d5295fab9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/897c5f0c74ca1f0f63befc2b09e67acccf302acf\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8a39167b995cd88282a5c9f9ac54441325e80403\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8a78efcd5256d9523588dc0b6baf5deede51f309\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8accdac41a14523199975b8919241f3c2bbc7e72\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8b0d9bf66f3fb977a9c7c57c3cb7ca4667391d0a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8b455cb428e79e300de4ffdf63d523a1cc8c5f6e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8b641c5fd96962ec14679365774e141e5f417af3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8cba0484abbb6537f3b95f2a9553b454fc67b175\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8cbd2c17b14d60e47de147325d2c2feae299c19e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8ce2e0a7e0b40b3aefbc5d78ae51d7a137bc7351\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8d352b0bfe03414b30083dc56aace56eef975bba\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8ec10c7b8b7bad61459153975bece3912b7ba55b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8ef73a357235fae6f3ce4738b2af4e9918f4861f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/8f3b0d41963bd53158153fea42d73a6521289d7c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/901a58adfcedf69d1eb9ede77bf365944564b653\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/92258e1bb3be4b1c16cc3ea9f83c0c1ad69a81ff\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9364fa0234f0aa53d7e20fc960c9b1ed7b0a6c57\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/93683cc766ed6e4582c992e97f9a883be22772a9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/93865ee370b7c5b46eb9690fa88f70d288817a63\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/93e914167275387141c1cafcff5c799b0310a81f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/941cb1a3f06cae3ded8242d250eb7a4cdd0c00f0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/943d3677ac55bcc70ef846300b077cd3521f6c63\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/943e337039d71a32c0d2800434b11a8f3ab0a3ff\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/947507c0cf74bd7525de63a30de65067d5c753c0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/94abddc43e4382ddd011e570a40d4d6a8c6a83ff\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/94bf062093c396d7a7915dc0e826e13233522815\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/95358d5226cce134ef7383a07b3088fefa510fa7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/95750c0f6ae3297204e59b120601c5a349dde5d1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/959432e49a04a4d29f98efbaee5994c8f19bae2a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/960a49d0fc52b2cae053dce5d78d47d0a8273b84\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/96706073f398f6811f43000954ec6cf2a6ac6e2c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/96847b259da89a453d233ade419eb7db38484193\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/991e91d666edbf577e009fdf1705df66b34c0e2b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/993836301f85ee87b8049c3d277be35699da6b53\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/99a15414b858c8899c547b872c14d885ccfd7732\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/99f8d3a4b9e03c55d49051c37facc09060a27a17\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9afde5ff243e9e0b83bd41fe9e14a2b51700f3b0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9b0f3060c0c827affd4d9d09ae7c5ef8d9a02bdb\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9b3cc9238c57e1fbf96b881d3fc7a50b5fe1adc8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9be325272f875f0ac5da945ae13eddf54f478d2b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9bec724abc6ad8aa4736674b0400f24e0964acb8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9eeaded113dc382607cd40008ff95ffc3931698e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/9f044ac98aafab31444e6b40701aa1aa24c4f16b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a01dadac65200d320c4237dcfd2b5a918f0e75b3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a1a7715c7596c77b892dc6d4debb7c108ca4ef97\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a1fb0023740e215a79615b048ae2cd44c5c5a21c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a2ac47e1458897c2106586cd82ba4cf955250db9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a331fcf28f87a61b052f8a1625166e4aed890951\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a33286264113976a15d42b41d7365c9f9c7fdb7f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a3dfc0c77acade0ee48dcc73e795a597d0270a73\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a425a34727d6676a695037d5466f691b551778f6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a5a1aad89237ae6074cecd5359b7632c57153a7d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a74d9214eba82e2d2e619f60087628a690970811\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a79e5e7e7e73e60bfe334f7700723467399f8292\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a869cc1ba8c28159882e53171a480f3ac97138ea\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a8954512ba38ba4fddc38c8918ab99bce9f35c02\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a922e9e2cc2edb309b2a8ddc0cf7b062657b72e5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/a9b6b42e3c65774dcfb7af278e1d10f8a6f24b71\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ab131dde88bf9765ecdb4f21c6e0ba6c7254d809\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ab2902184de2ffc88cabfdbc9fa6171d6b7a6f2f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ab76a7aaa7285c49488be4d8e9f4a6a86e4ab51b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/abc389bb60ba2d57b1366067aac6fe90e0ce246f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ac6e5a17a260ee1601f58e997e9943888a07bf07\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/acbaf77d495a9cdc3a6602ccdfb98ac7cce3d1e7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ad3048344db255a3ce132b52c0bed0519d746779\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ad323408848448bccf938cc89d39b019766052b8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ae0e0a09eefd341e3c578df802dc004f83c61e9d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/af26968b71caf11c882b07cc25306d748e28c4f6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b1b3ab17cfd331677d32b65e52fb3ebc3fdae431\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b1d3810c7343c79212acdaada973ee18b7db156f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b20bcec80dcb1d4ac6d26070a6032e7e21c1b8ed\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b2c4d853da500f3766902c2d0f4bc5b11605a7c1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b2fe70050194511642fb0ce458f7eabf99c827fe\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b37e56fe2d9ef05a0383a9ea4eb4858711528321\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b5245e2f6770333319794ee0148866173b2f4941\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b5af0f0f8e809e2de1a516ce42d5930f5b913326\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b69aae002ffa00a7db0fdfe2d2ab8bd8ddb192b1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b8bc0fbaf88034370ef49d7cf791f32783221d00\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b8d8a865f23bcaa4c6428712bec185e0bdc421d2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/b98689a4ba024cfb07535194d9b9f23d95ef70b3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ba714f908ae61e60c111d21a75a6126b02afe85a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/bb6d10fd85abd60bb59bde89d770f99d3ed25454\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/bbfbcb079db8785b0ff8a27814a4298d97a24a0c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/bd38ac80bdfada6fdbd70689d28052206b5da757\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/be00ab687a5c33e75468f68662b87b13e2393fe5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/be3950f02753b8e0cdf26e70367c1eb0fb41e20a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/be4ae7a571dd64ddbfdedec01560f4795e8d83cc\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/be71e72303e85788184ead184fac1dd90c84030e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/bf44d29be7a2eadad300f06b57f65a1af8368426\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c0887dd7e04bd38e49e30842cbea040b6d725302\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c15d4f25799729e0df173d00b9344a41866872c6\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c20e3f03556e0c3bdcc145929b39b724d554d24c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c3ee8765cdf7204dd0e84c749b488a2d57ed6fae\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c50f46e18d37df40e28d1757cec8f461e4a2643b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c5248449556ff7961b05cdcb46e26915bf71f232\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c5abe4b58a57cd820ba85d4b4f8c978c4b6fc325\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c668a201cf1472bfd7b1133cf3037e43d8ddac44\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c799bee0f970f0026ac15c5fd69f9ab129672c65\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c80a0213adf212446effe69a790c2ae590e5d1db\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/c9a7f5a196e67f9e9d8269fdf913c8c6cc7ee320\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ca736d07e01117faa9efdb2eb46fd76fe1a4b361\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cab3cd4da6ace0baf6e2098437a20e67df16c854\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cb00a2de12f9d97ced5e76216cf9c3421a5572a7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cb29f52b15a3d9ce259a78569e3889e874d0a1f2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cc7c3847fd9c3dae275a047ad9768e7b0cf0d34e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cc8cfcc9023fb2641c1edd4deb1082d4fa7e3b48\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ccd8917b4913548142a88960662a064e51e675ad\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cd428d63c2a5b48f6034bc6e2ab9c6dcba3cc010\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cd7dacec5470c7822000513f2b1c2c98b4cd0845\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cd9aeb9f43d9aadb4e36572c8a6b81aebdd52c15\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cef34c646eaffb941f130a68d2059f48d5c7ab46\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cf7167d0b37666c882b00c3f5e1237dbf4e83204\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cf8a91ce4797721dd124ecdd875b9b9934154f62\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/cfde91bf46ff3ae67a9ecfbdb38f37173e71c8f4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d0559199e54c28f9e946d0dce5ab2dbb377a9375\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d07e4bc786c88b8d2304f84c7db2098666f822c0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d146392e0062eeb2ce5a7c41ed2bdde4c7496309\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d1aa3d34981242af940bd5aed0da9c4a3ab8df66\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d257fd5032bef81e055650924b99bf3f9edc9241\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d26ec55cbd5c5b8e4caa7d3db1e3a28050279061\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d35f44f256dd19b4c3a57552b3c31c7ac2f10c71\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d3b49ca37e4587315ae85884c71eadb46fd216b2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d4167367d1f2f8f8a215d26a9e8d769ad76088d7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d515ed898716e2cb64a423f9616226222e2cc094\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d59af7f859402a6e5f5ecd70f89da19fbdc91df8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d665dabc1a3fd8b71784e4bd1f7ee30d8ae5810d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d69e544084fd583fcc259a395fe27ae401493fba\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d748324df83ffc92899a87a249da3b22a766ace0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d7a63b95c19318604e338a59367e4c1e482cf23f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d901627df99ef6e0dd39f069fe57f8a6b4d07eaf\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/d9bdb949b4b12ecc07bb2a6f069945184154b5b2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/da0759b181fdb1786c825b9269dfcd6576294540\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/db081156226de488cba28da316a06b0584e47dac\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/db2a2a890cece89427cdac0f3da25870f79de5b5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/db41c3fd66b879bc44734149c16673506bdb5cb1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/dc2550cc5d4d010b825bc19b7a199776826e78f8\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/dc2d035effe5ef99e8053dd0e491bb46a0823eed\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/dceca140e820d93bae46c226db040532fcbf44a2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/dcf3999552449b6700c3216bbbc6ef1bdc77505b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/dd42e9c767d472a425beeb8acc32d564860b7d2e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/dd97e6544dd275f099f8061d623706f1c13f2138\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/de5319c8c809e45e7b0e488d3cc9acf6bf752687\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/decb0cfd19b3258049933b6fbcb46fec73a4d548\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/df10bfdd5da26e30797873ef8674a13fb1c3f053\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/dffb62d6a8e866560a740ed82a9c393a38b637a9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e03108134e00e531868244ee6bf423e99ebbfc46\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e03f6f90b2caae447cc9e98e84d6a75e35e58751\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e0512998437db37bd3cb8a7aad0b3ab0242ce797\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e2e4bc47f012d97d70d1956e49bddae2e1244d0f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e3db9eacfc32f38da67361cba3b3eb3752634164\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e4969d40e8341427dbf49bf74b7d97afe1169bf1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e50634e178601a5938c5a0448cb4157b02e6a1b4\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e5179878e3fb95877a41c20778ee5016dea8d8d3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e5ee3fabcb52e7f8858042a856fff30efe6c7acc\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e62b3eb166d52861354ca337ded5d43daba4bb66\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e6896001a225f621044aec7ddb845e5cb38eff00\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e730ae86386fa1fe0c4450398b1e54ae1c39634b\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e7b71ef22ca8436fde215810dae55aaa887ccb32\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e7c8785213e42e2f7697a217806e5de4a0997b26\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/e83aed593d8d3ff801af1b34880f50125dba6c33\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ea28a8c84a47b956dc3e847c6145bb91d3cd82d0\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ea768448f4902b2b15ebdb25938aa739b2d6e881\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/eadf0ead393cb49cfbb02f765da794d368393401\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ebb6456eb1eb805f71c55cbc46a42a14a622d8dc\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ecbbcb5ad293d71d49e3cc3885b7f96e5b1dcf5f\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ece5af415cc041bb735aa86afa06b075b4c54834\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ed8e0e4cb585c3ff11e7f8d6efafec59e471e2cc\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ee336547d0acfd8958ec01b018e8530947520977\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/eefa939889601e0d205e95378595edc06832711e\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/efc3c7f8c4fd74deed16b5bb2aee0615e90c47a9\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f0af4ce54b32c3d9dd2b0711541bbe9f7c2a38ad\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f0d760923f2a897a427b03ce6c9a47cd48181150\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f1a2437e8045ddca09679937f1f992eccdf78cf5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f1c41d56e520130a00a1eb903ff65ff56959b383\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f375c6bb597d19eba397de0c632e3827b2ab0e60\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f3c93dcf82cbd38a84d53163889ed83583c1757a\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f3d896c80afd90ba7aaad52e5a58a6847d3b06b2\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f3f1d178edbab5fbc6ad3633279b6e2c6122ba92\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f406f3f60cf7f821824b7f6ed96e8464059da397\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f433573fbc60e06dbef10cab93d4da29824aaa66\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f4374cd2ce923bfa39f1c610ebd98c20b9479bb3\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f4be1d5768af0d4d87947a5d9d7047304df57e10\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f503dd5d6d53129eb2a3788297afe481249cbed7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f69cee58c4edfe1fa3d9f5bb55101e23bfa2904d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f6ac1e6f1bab62eb2249b23ebff5c37c7433dfde\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f6c4066e45d76615b04825c9b15a577877e55bdf\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f7272e731ab47fb9d5a040a54ef562cd8dfba839\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/f8753a03428cb55091e1e616cbfae5ef4d34dfd1\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fa547ad152f92ad07d5b92b4fb237bf8e0dbae2c\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fae3a5206c778c8bac02f916f55fd3f18d100173\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fb77df6aaea88f191f0e615f8637544f1d9908f7\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fb8e8dcceaed38fe038d6a8b7aaa45841f0897ea\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fb95bb125f3d370e97278aaff87dc7650b6c89a5\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fdd02b03ce9fdcb1ad0677308ede92f1f6b80951\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fe58d5023d23b8960c8d7018a96dcb7659fe809d\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fe7afd1d477b946c02e7609d4c5fddf2df911c49\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/fe8488887062749e9c47274436d3b4a3586c8585\nthird_party/blink/renderer/platform/text_codec_fuzzer_seed_corpus/ff4efc7e62cbf78e3bb877eee51602eb0d335a61\nthird_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx\nthird_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20210319.docx\nthird_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx\nthird_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx\nthird_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx\nthird_party/boringssl/src/crypto/pkcs7/test/nss.p7c\nthird_party/boringssl/src/crypto/pkcs7/test/openssl_crl.p7c\nthird_party/boringssl/src/crypto/pkcs7/test/sign_sha1.p7s\nthird_party/boringssl/src/crypto/pkcs7/test/sign_sha1_key_id.p7s\nthird_party/boringssl/src/crypto/pkcs7/test/sign_sha256.p7s\nthird_party/boringssl/src/crypto/pkcs7/test/sign_sha256_key_id.p7s\nthird_party/boringssl/src/crypto/pkcs7/test/windows.p7c\nthird_party/boringssl/src/crypto/pkcs8/test/bad1.p12\nthird_party/boringssl/src/crypto/pkcs8/test/bad2.p12\nthird_party/boringssl/src/crypto/pkcs8/test/bad3.p12\nthird_party/boringssl/src/crypto/pkcs8/test/empty_password.p12\nthird_party/boringssl/src/crypto/pkcs8/test/empty_password_ber.p12\nthird_party/boringssl/src/crypto/pkcs8/test/empty_password_ber_nested.p12\nthird_party/boringssl/src/crypto/pkcs8/test/no_encryption.p12\nthird_party/boringssl/src/crypto/pkcs8/test/nss.p12\nthird_party/boringssl/src/crypto/pkcs8/test/null_password.p12\nthird_party/boringssl/src/crypto/pkcs8/test/openssl.p12\nthird_party/boringssl/src/crypto/pkcs8/test/pbes2_sha1.p12\nthird_party/boringssl/src/crypto/pkcs8/test/pbes2_sha256.p12\nthird_party/boringssl/src/crypto/pkcs8/test/unicode_password.p12\nthird_party/boringssl/src/crypto/pkcs8/test/windows.p12\nthird_party/boringssl/src/crypto/x509/test/rsa_pss_sha256_key.pk8\nthird_party/boringssl/src/fuzz/bn_div_corpus/011264e97cb60706f2ed1acec26f847cccddef45\nthird_party/boringssl/src/fuzz/bn_div_corpus/0b97ef3472b2be70e869ebdf8998f4c5833d7ca6\nthird_party/boringssl/src/fuzz/bn_div_corpus/0f7c43030e4a5c6fc1f2578b34c18764bbd062de\nthird_party/boringssl/src/fuzz/bn_div_corpus/11fddec0040065aab95df4a14a63cb3c5d6f9208\nthird_party/boringssl/src/fuzz/bn_div_corpus/12628bf7fcacc3b640c62da86c2c874dd51582fc\nthird_party/boringssl/src/fuzz/bn_div_corpus/13d497bba7406b4a79443481d1b3696520ab9bc8\nthird_party/boringssl/src/fuzz/bn_div_corpus/1e156db6d1a07f4e86545f389aa8809a8bc85fb8\nthird_party/boringssl/src/fuzz/bn_div_corpus/1e57129e2c6c679464cee614d81c462b0f147eef\nthird_party/boringssl/src/fuzz/bn_div_corpus/213033ad25c8c4838bdef316c9eb855f5dd7d816\nthird_party/boringssl/src/fuzz/bn_div_corpus/251ca054062530c4e6272861bfde8c33d37141ab\nthird_party/boringssl/src/fuzz/bn_div_corpus/270a1d87dd75ef549f4e0b94fc24f5bfae0f06ed\nthird_party/boringssl/src/fuzz/bn_div_corpus/2752bd3868343186df578cadead88962bb98323d\nthird_party/boringssl/src/fuzz/bn_div_corpus/2d39fa30c023a347b487f9e5b1e4c1c00892d41a\nthird_party/boringssl/src/fuzz/bn_div_corpus/35957a881658eb060929c02d724d59e77f1f1f00\nthird_party/boringssl/src/fuzz/bn_div_corpus/36709f14e1f232bb4eb39693024cc8c2e5dd94b3\nthird_party/boringssl/src/fuzz/bn_div_corpus/384d47f68ae16cdd41d8fddb52948dca1c4a6dd7\nthird_party/boringssl/src/fuzz/bn_div_corpus/4d7c6eb09c9846a5b11be1547dd8fc370767dde8\nthird_party/boringssl/src/fuzz/bn_div_corpus/562d10e2366468b89a152bb903cf25285768d228\nthird_party/boringssl/src/fuzz/bn_div_corpus/608c2e2f8de31dffa2eb542cf6d9bb3455b695c7\nthird_party/boringssl/src/fuzz/bn_div_corpus/6a3d7c46660905d3fdc6d111214d26eaa40aa0e8\nthird_party/boringssl/src/fuzz/bn_div_corpus/6b766df68e14eef0337110e8342bc607a8abed8b\nthird_party/boringssl/src/fuzz/bn_div_corpus/7447ef5475a9ec9c40378dee4e29aa0f44044a32\nthird_party/boringssl/src/fuzz/bn_div_corpus/7c467c2fe37f9d942aca57b1e6bab1b3f24bffc3\nthird_party/boringssl/src/fuzz/bn_div_corpus/7e487d80bb99546eeed660afab834fae4249fc7d\nthird_party/boringssl/src/fuzz/bn_div_corpus/8041e13e35eae5d3582fb69c23e596f44095afdc\nthird_party/boringssl/src/fuzz/bn_div_corpus/80695153370141d6e38064fc74aea1d5eda40bb7\nthird_party/boringssl/src/fuzz/bn_div_corpus/809df693e4230a3e698d58c1d87566424ec5ee0b\nthird_party/boringssl/src/fuzz/bn_div_corpus/8432b7ab5a9f2d29777d2a07eb08b77167698b40\nthird_party/boringssl/src/fuzz/bn_div_corpus/8e17b30d7fb275a7959785fc0e2bf7fef7cb5b7b\nthird_party/boringssl/src/fuzz/bn_div_corpus/960e750aaad2b4a7b66b1e6eb5359811e5bdaada\nthird_party/boringssl/src/fuzz/bn_div_corpus/9a555ee1b1b6c360e6f937071861f5a7535f95ff\nthird_party/boringssl/src/fuzz/bn_div_corpus/9c58b3f3ed38c285b778a5965af62a4301223630\nthird_party/boringssl/src/fuzz/bn_div_corpus/9c5927144d99691ea8aa8d173d7695b5d9aa51d5\nthird_party/boringssl/src/fuzz/bn_div_corpus/9f421d87e5b067ed476ca0392a7ef20f6bf0ce84\nthird_party/boringssl/src/fuzz/bn_div_corpus/a90d70badbac1859660956d2780990d5ae4f4fe6\nthird_party/boringssl/src/fuzz/bn_div_corpus/aa98d46e4d7c79527945e8011b4ae3ecd2d80c60\nthird_party/boringssl/src/fuzz/bn_div_corpus/abdbf8f43a0f65fe0f19ed485a3840765392c2ab\nthird_party/boringssl/src/fuzz/bn_div_corpus/b543b6b3b287da672007e24b5baaab1a1c0ca9ae\nthird_party/boringssl/src/fuzz/bn_div_corpus/b9efda59f2f8a203bbed172fa3cb8829ea280ee1\nthird_party/boringssl/src/fuzz/bn_div_corpus/cdf121b785996f33cd415cf82f665224a052840a\nthird_party/boringssl/src/fuzz/bn_div_corpus/cf02a0aefa4537047875f18e3c6641a5c5e48692\nthird_party/boringssl/src/fuzz/bn_div_corpus/e58d8cf7428f8f441b8fd436b6687fd2d968fd75\nthird_party/boringssl/src/fuzz/bn_div_corpus/e72a1c1c205d067e3f19db6ae3f401b1d1aee54a\nthird_party/boringssl/src/fuzz/bn_div_corpus/e97beb555d638d22d2db99a221685d764a6587ab\nthird_party/boringssl/src/fuzz/bn_div_corpus/ec538241c2693fd721d0fbd7714829577f952cb9\nthird_party/boringssl/src/fuzz/bn_div_corpus/f1e214ebc29b8743d9a8e2e91c0f3b0671289aca\nthird_party/boringssl/src/fuzz/bn_div_corpus/f9d588a8a4a3ff296f54c05d9c6cdf443289cb27\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/00f534365f942fe096693fe535921ff99529a9b8\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/0415d6443d574d70c328713fae9f036d1d3a538f\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/0eaaec6b9462d9679345db28517d3a3298db2183\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/10c6fe8d8e8b6b1729af6e18a810d2574a4e5bac\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/1c4f3500fd06ce7640060869cb6a00b2164c54bb\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/233880f6d297360e8c15876fb1c542b91d917593\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/24477f7df164c27c609ed4e826ac89086207bea4\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/25c0182f54d1646c1701cbba9208c27cb6d491f6\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/2638dec28b05837f0a7e5d909f13d4a1010c3133\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/310ee9f10a610166777befe13fa167de01d49ddf\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/31a96425354abd29e3d406cd3c7b45941a56d5ba\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/31f9f3515fa8537fdba7bb72f9f95922ee28a5e5\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/33e05978f5a4b051eab869b9bb758ad91230acc4\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/365dcef4d231a1971051088003f368ffa41c4513\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/3ee811b9dd0f12b92da0b35f944d8da2271444ce\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/411ba7eacac8fd8dc081590bcef69816ee7b0983\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/470b2eb2332e52e33fb4e6331a46041d843fbf08\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/48e04e851db38f1137857d535b259632cddbdb4b\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/49a1ee4773e81e36fa9d30d0d910683b0a9268f8\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/4a66c4e140f4fdc8e50d04fc2c5138e9ea8bc0e6\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/4c2ab744202abe9ab1ab5be3e7729cfe36ef2252\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/50fe9b46fb7ccf989c5c18adaae09ad94a2a7ba4\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/568411accf2ea14651edff9919eb355f3eb67168\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/56d2f13712a216b6a48f25696b1caed8cbabfd87\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/6351165cd1f725c617abf8f1d25711635fe91e02\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/6725ef75d309849c0ab011426b7f0dffb204b4b6\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/68014c66740d8d12fe474af21ff723572ecaec8a\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/73c2e09b19974387bacd21dc5d1d9d5cc2b5536e\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/7833060c25293069c46c551e3f642ea42c2fe6fe\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/78d5ed530d5555f4dda00b2d7b6ce8f3df0ee06a\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/7a88556b6faf1b03dbd318358c2e298ec9ca9cef\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/7af72c5a0361dee6f9f14713a00513b18ce495e5\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/7da8111c805417199ef5485ae96bfbf38973cfe2\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/80ed7c38eb35b5d879be521b629313734acb49a8\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/83da4fcc6059cc60fedb27fb12ae6e54137a5fdc\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/856c6e4d95157a56fe2dc5c48fdbfd3b532d4a9e\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/8819d510168272f0373e2d09d838a51f7208804a\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/88b768e22dde0cdca89b0229a72ac4a2e583eabe\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/8b30c425cdc8833272c41b0d687a7cd17e482259\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/960cfef74e82e56cc85247556a693484e6a815ae\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/96fd7ae97ebed97b3dc56b70dc75617aa094390a\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/99eb779ab482c7e32f2e2b8c14f60a339f0220dd\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/9aeb319b51a940cc41ee9a1b5bd60dcfbd16ec39\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/9facdafd1938c93598185fd0db046b3532a0cce2\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/a115e708bd4c50b29e4fc62b7dbf95376255bc07\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/a62baa87c61848fe52c27646363685f67011afbf\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/ab2560a995cdb4ca495a45baabeb32471431950c\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/ad923a40f08537e2de33ad148de3a4780036b857\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/ae6ac92384da3f4def47b587cff8a86d8f8c0711\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/b208049eea7e6ac1e5666321c427d4e761243f48\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/b2958e12f2cbfb7155057bcafc2f88f8ff153994\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/ba136b5e876b5a03aeea7dba7d0a89d6c3293f3c\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/c06a506efb8a44ed81d75ab2623f75909d8f8651\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/cd32f1d618121ea039c2208db9c2abb67054fa63\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/ceed2eb46633f9632961cf6afce7d90a883c8b52\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/d02df9fd296ae8883904956a7b7660ab7a598bbf\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/d29e2abc2737dd2215963c5ebca8a2d9c602fa56\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/d3da2d5faee70e4f37b297be18b01c18d4760ac6\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/d4f286933bc793a76a44143d22c0f9530983e9f6\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/dbed9c7798669142551e9dbc8caf64c3b9c701ee\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/de299167e46caed650b8241cd35520ef9d28d9e3\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/e2633a66f260322a2d1c1ad0a9843c729cdd2ed5\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/e798cdac1d73bd2d274401a74fd89483b06c5cbb\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/ea13724d9a6842f2b8d28ce07b017fa5224511a6\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/eb7a27f2a3c1a1f57798c31b104b91eb57b7d240\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/efaa53e5ee3b72da467ee6211a327953629276ef\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/f0f1a7438bc6280c325705632c9191444f95f1d7\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/f399ddbc816381a607996d4e76f1f9be0042877c\nthird_party/boringssl/src/fuzz/bn_mod_exp_corpus/f6df0381cbab15d93c3920090155a42516748d25\nthird_party/boringssl/src/fuzz/cert_corpus/01f0bc1bd4b94f8f8c0867d289ec8a4b3c8905fe\nthird_party/boringssl/src/fuzz/cert_corpus/047746a08d38a07ce30952f8992e47e6f9c42c02\nthird_party/boringssl/src/fuzz/cert_corpus/07802918a9947a2b9b3db9e93b92acaa04010a65\nthird_party/boringssl/src/fuzz/cert_corpus/0d40f75f1d8a84a817c75f1fea14ad14ac822c67\nthird_party/boringssl/src/fuzz/cert_corpus/0d4d68ae2f1fb326d6d32ee71d5e7b03dc410b5c\nthird_party/boringssl/src/fuzz/cert_corpus/0db162e4f63fdba351279036c57df16b7fdc491f\nthird_party/boringssl/src/fuzz/cert_corpus/0f845604775fb8dac06bc8c80bbedba128f7a96f\nthird_party/boringssl/src/fuzz/cert_corpus/12a9daa27150bc163815b92f7d8d12a19080342f\nthird_party/boringssl/src/fuzz/cert_corpus/159cc124352f0c0ac1cef2399c5c25614e29c6eb\nthird_party/boringssl/src/fuzz/cert_corpus/2a8a35c937e4b9d98e23bfb4aafefeeac6cbb8e2\nthird_party/boringssl/src/fuzz/cert_corpus/2af55a3666502ec29b1157d018e0259605673389\nthird_party/boringssl/src/fuzz/cert_corpus/2df27b0263191cb8029ca6f646f543e647c5c6ad\nthird_party/boringssl/src/fuzz/cert_corpus/31dad1d547e55649e2ca06f479081d5418d212b1\nthird_party/boringssl/src/fuzz/cert_corpus/32585c72f201b556c98be5dd5da1144230c527a3\nthird_party/boringssl/src/fuzz/cert_corpus/3377dcd98d7cf9446f13cef5c2c9eb4bfb46a574\nthird_party/boringssl/src/fuzz/cert_corpus/354ad535f3e1989636660154a3fdf5b03c22e3fa\nthird_party/boringssl/src/fuzz/cert_corpus/3594e4a17dbe05024407d8819f96e07e0891d6c3\nthird_party/boringssl/src/fuzz/cert_corpus/360e330b02ff481851b528cdb2fdc952d21afa91\nthird_party/boringssl/src/fuzz/cert_corpus/36ace68d189b6d3cf23f1cc44df698d700986926\nthird_party/boringssl/src/fuzz/cert_corpus/37bca4ce167007fa9cc2ea42263d1483c4c17db5\nthird_party/boringssl/src/fuzz/cert_corpus/391b2ba9b8322af5b4c8b4ada27b5a734e9f8d8d\nthird_party/boringssl/src/fuzz/cert_corpus/3b5f3b8d26f97e1774fa7890adb5477d96349f1f\nthird_party/boringssl/src/fuzz/cert_corpus/3f62a76c9e78a1a8032c289dba5d57856cd3fa9d\nthird_party/boringssl/src/fuzz/cert_corpus/4298a95b560d773b41276414f4f7e991126fe619\nthird_party/boringssl/src/fuzz/cert_corpus/45f7155e3dfd2feb10e302768d2675679c5f7875\nthird_party/boringssl/src/fuzz/cert_corpus/48158490d84d0c2edee7017978273f647a7c874b\nthird_party/boringssl/src/fuzz/cert_corpus/49cf319f65874bd676e94d1392d0633489ef15b2\nthird_party/boringssl/src/fuzz/cert_corpus/4a02d1b38ed81f13a71b8c0ca8cb0d0d830a372f\nthird_party/boringssl/src/fuzz/cert_corpus/53cf43589a0b5a9ac900c5d471cd55f2cfa9647d\nthird_party/boringssl/src/fuzz/cert_corpus/54b712905dafa849b9af0f0cb674a0b1bedb9d7a\nthird_party/boringssl/src/fuzz/cert_corpus/55ffd1395766edd018e7b98d86767d175629a420\nthird_party/boringssl/src/fuzz/cert_corpus/580233de69f61b32ff2f0523f4233a62b35b0466\nthird_party/boringssl/src/fuzz/cert_corpus/5edf2e8c8c37b9326932d81ae6a3230c8c2144b9\nthird_party/boringssl/src/fuzz/cert_corpus/611f7a7477aa93354cdd839f2575a27fe88ecfba\nthird_party/boringssl/src/fuzz/cert_corpus/61eaeb064de9b973f6f51578387e5bb87d5ceb81\nthird_party/boringssl/src/fuzz/cert_corpus/62377523f740c070c6a3f57d9c5246e6ae4ef2b4\nthird_party/boringssl/src/fuzz/cert_corpus/630f3fbe6eecbfbba7ce15e531a5ec4ec43dda47\nthird_party/boringssl/src/fuzz/cert_corpus/65b5a4eca60817b11bdb326c29cb000d2ad7797c\nthird_party/boringssl/src/fuzz/cert_corpus/68e6b7596f13f750fc18b826f23cfaaaa9e7ca77\nthird_party/boringssl/src/fuzz/cert_corpus/7193a15efa6efe2395db8bab4ec1c04773c97019\nthird_party/boringssl/src/fuzz/cert_corpus/739b6e977a403fa06deb8af5e0afa967fcb8d13e\nthird_party/boringssl/src/fuzz/cert_corpus/752d1dad45e5768274bc56f2ec34dda13df86ca5\nthird_party/boringssl/src/fuzz/cert_corpus/784574f30cf7b2e30f85a26a7257c7a4d724f1b3\nthird_party/boringssl/src/fuzz/cert_corpus/7a37f6614fd5c0dda82eceb3d171090c7581f0c1\nthird_party/boringssl/src/fuzz/cert_corpus/7b7eba1a5c8a050ebe26e2c000eb25a8aed15861\nthird_party/boringssl/src/fuzz/cert_corpus/827edcf363c580b727c2246026e582c5d1787bcb\nthird_party/boringssl/src/fuzz/cert_corpus/84c7b51c0a1e02fa6e154b5566e805b01dfef772\nthird_party/boringssl/src/fuzz/cert_corpus/89b2e812f30560eead2c021c92d445c8cd67728b\nthird_party/boringssl/src/fuzz/cert_corpus/89f5d9614abf6e736f62a9559bc6ef101815e882\nthird_party/boringssl/src/fuzz/cert_corpus/8de9c5589e1fbc865d7bdded105c78beba00470e\nthird_party/boringssl/src/fuzz/cert_corpus/9710c55087bda038a0366e023f2ce43a29912da3\nthird_party/boringssl/src/fuzz/cert_corpus/9738cede3fd16b965145df41be8c9f970ace7d12\nthird_party/boringssl/src/fuzz/cert_corpus/9d78029f18d69ef543cd278130822447a86eec29\nthird_party/boringssl/src/fuzz/cert_corpus/a1cb8f059c2d8684bffb265fe3680affce3029f9\nthird_party/boringssl/src/fuzz/cert_corpus/a49df1ddfd2ce833c917f8e51f1f136a565c4f8f\nthird_party/boringssl/src/fuzz/cert_corpus/a6df7d67934419f900194d58e284dd351d24e092\nthird_party/boringssl/src/fuzz/cert_corpus/a77af1cb679faa23ad49896cc79a0fd1cc324073\nthird_party/boringssl/src/fuzz/cert_corpus/a87b5018ededeb170f7684da3d3a5669e5917e69\nthird_party/boringssl/src/fuzz/cert_corpus/ab4cfa04101b512daa2ffcd99773d820b41d429b\nthird_party/boringssl/src/fuzz/cert_corpus/ad520c064da535365c2cf4262dc960cc03011a0a\nthird_party/boringssl/src/fuzz/cert_corpus/b12fc1dc76c9d900cdce219fcb5dab28c4e071d3\nthird_party/boringssl/src/fuzz/cert_corpus/b177d17a1b55c4ae3d1c2539cfea426ecf86a944\nthird_party/boringssl/src/fuzz/cert_corpus/b2a55c5d37dea08c7e7c328c91c34e1ea06a9a7a\nthird_party/boringssl/src/fuzz/cert_corpus/b46eb914ca1b97912ccc335d057cbeee1d7bcd39\nthird_party/boringssl/src/fuzz/cert_corpus/ba9e3c974091cc39145eae3c393109c7ae9fdcef\nthird_party/boringssl/src/fuzz/cert_corpus/bb3eaefa532c6acccfef82c89500cbcbc86e1129\nthird_party/boringssl/src/fuzz/cert_corpus/bb61b707a58021e32ea83339eede94037c11bb3c\nthird_party/boringssl/src/fuzz/cert_corpus/bb788308800e54e89016d82c97d5e2ab8952d285\nthird_party/boringssl/src/fuzz/cert_corpus/bcae504875dc1ecefc706d691c4d2045183d84eb\nthird_party/boringssl/src/fuzz/cert_corpus/bcd11eab5654e16876e0af3895bc45a2f2dee41d\nthird_party/boringssl/src/fuzz/cert_corpus/be837488ff011b41125cd2cd32321a290e07cadf\nthird_party/boringssl/src/fuzz/cert_corpus/be90a3884cd25267d650126e9a6ca14b540f0f06\nthird_party/boringssl/src/fuzz/cert_corpus/c2ff966235f78f146c41f5d3bc4d61781cdcdcb0\nthird_party/boringssl/src/fuzz/cert_corpus/c470fd0883a5f55b958332fc90f30cd1fb63e48d\nthird_party/boringssl/src/fuzz/cert_corpus/c4f3c6cfbef081bf63b3b5972c9137635d445fdd\nthird_party/boringssl/src/fuzz/cert_corpus/c5e56990cdcbfdd54248c8f82e587e49cf3fb40c\nthird_party/boringssl/src/fuzz/cert_corpus/cb85f4d7dfe43c1ea445ec83a012850bb9c6f474\nthird_party/boringssl/src/fuzz/cert_corpus/cba275dc8965ce4c778ab0e4a3d006afc446b7e9\nthird_party/boringssl/src/fuzz/cert_corpus/ce51c496a6055ea3bb9f21fe56dfd89cdaf7ad44\nthird_party/boringssl/src/fuzz/cert_corpus/d0edaeac423dae22e0c6fa47d27de63da76e11c2\nthird_party/boringssl/src/fuzz/cert_corpus/d138385c4a97582b8c14354771c866384f6509ca\nthird_party/boringssl/src/fuzz/cert_corpus/d1ddd8d3b57da965f51a89995006adf07000803c\nthird_party/boringssl/src/fuzz/cert_corpus/d40d2e0a06f7d538c1025f947142fa92941395d0\nthird_party/boringssl/src/fuzz/cert_corpus/d539f8826b82bddc80d54a84778e07ed579bf1c8\nthird_party/boringssl/src/fuzz/cert_corpus/d6cc4eb420fddd5446fa0f7542929014d9509acc\nthird_party/boringssl/src/fuzz/cert_corpus/d6ef20a9f3b5b8a75a9f2bed08df00c99dbfe273\nthird_party/boringssl/src/fuzz/cert_corpus/d6fbf9b383059c337f2f382c7974531af64ca6a5\nthird_party/boringssl/src/fuzz/cert_corpus/d7190fc735cea3bbe095656a55db13d92484755f\nthird_party/boringssl/src/fuzz/cert_corpus/d7de6d7aa558f82819e8d894f53f322cc22aba24\nthird_party/boringssl/src/fuzz/cert_corpus/d9eda4c148afa43f6f93dd222960b110a1608707\nthird_party/boringssl/src/fuzz/cert_corpus/db68fd3f8d92535b766d4446c2253a8f8389409a\nthird_party/boringssl/src/fuzz/cert_corpus/dca8de0323046c3ec1eee30a3a6155b027e3ade4\nthird_party/boringssl/src/fuzz/cert_corpus/debfa36c66a729509b706ddd79c39cb2da7fc78c\nthird_party/boringssl/src/fuzz/cert_corpus/df492c0808f12ee3519c7b43c1a7e741dbada767\nthird_party/boringssl/src/fuzz/cert_corpus/dfc9cd6401090982f2bd4002d5f3638a4f87b8a7\nthird_party/boringssl/src/fuzz/cert_corpus/e180a3d31c43db5ce2c0ed9ba1254f1786cbc717\nthird_party/boringssl/src/fuzz/cert_corpus/e1ea9e24d98c45caaa8a2384802e150944f9ef26\nthird_party/boringssl/src/fuzz/cert_corpus/e4683b91c43b8c7c374af6c379263513c0fb14e0\nthird_party/boringssl/src/fuzz/cert_corpus/e4ee0945aa0344ea30fa6602b6aa1fe373463972\nthird_party/boringssl/src/fuzz/cert_corpus/e5a4adde1804e10f389c10ee782d35f8eed893b4\nthird_party/boringssl/src/fuzz/cert_corpus/e5d75e9481b628c931d24915f874b58d032f4ce0\nthird_party/boringssl/src/fuzz/cert_corpus/e5e26dcd52901e1d4a5532678f8730bbf3bbb6cd\nthird_party/boringssl/src/fuzz/cert_corpus/e6b039ce8f710ff7f42b0aa1917309656caca0c5\nthird_party/boringssl/src/fuzz/cert_corpus/e6cec5e0c9305b5c928a2c2853110655403fd00e\nthird_party/boringssl/src/fuzz/cert_corpus/e6e28772ab70fd1827b8edec1a3af54db9da7be6\nthird_party/boringssl/src/fuzz/cert_corpus/e6fce9d573d3bc5470c8d9cf865dfbc77e80337a\nthird_party/boringssl/src/fuzz/cert_corpus/e8ca7bae4d70a5e7d510a89c744099a347c645b4\nthird_party/boringssl/src/fuzz/cert_corpus/e8ccc85a09b0126f510bb74f2c6c9929bd5b9701\nthird_party/boringssl/src/fuzz/cert_corpus/ea2d92c021c7a240632afc8c83fccfe478b034c4\nthird_party/boringssl/src/fuzz/cert_corpus/eaa8b4213046e2d93173afb0851a3d29d19f3e92\nthird_party/boringssl/src/fuzz/cert_corpus/ec73cbb8f7285d6292cd87c00baea11d4b90fe46\nthird_party/boringssl/src/fuzz/cert_corpus/ecfaf036f2cb14202a971fd62d5f14bf6c3cbabb\nthird_party/boringssl/src/fuzz/cert_corpus/ed9a6b417a176aab61ec778e7b9c8343a63fc5df\nthird_party/boringssl/src/fuzz/cert_corpus/edfbcffbd1b4b56797ce51152661789038b0cf74\nthird_party/boringssl/src/fuzz/cert_corpus/f042987a02f478ebf62ef23872b24b5c677df8fd\nthird_party/boringssl/src/fuzz/cert_corpus/f0ce34f2169249cecfa0ab15bb013cc69404209c\nthird_party/boringssl/src/fuzz/cert_corpus/f175ab932a0fa4fffc1efd0350d2ef9e8f019ec1\nthird_party/boringssl/src/fuzz/cert_corpus/f1c86e96e6d1f630098675ab24a910e8cf25e383\nthird_party/boringssl/src/fuzz/cert_corpus/f20f50c6c3231da1d7d6876d4aa25969c83524ab\nthird_party/boringssl/src/fuzz/cert_corpus/f26d0dfcd8f8346f1d00be71ddc0c4f7d2d87c75\nthird_party/boringssl/src/fuzz/cert_corpus/f37829fea0b1728cc16e4fc09dd908eebf926332\nthird_party/boringssl/src/fuzz/cert_corpus/f3faee77126782a4f0591c9fd3f7021699646a90\nthird_party/boringssl/src/fuzz/cert_corpus/f48595187fcab0102474f59c3b66c9b2f9f35a5e\nthird_party/boringssl/src/fuzz/cert_corpus/f4a6f30f6dcf2b88f1cd11a01d715918ff83ed9c\nthird_party/boringssl/src/fuzz/cert_corpus/f62a665b9d52e55c8e97a24c9fe59a3cedceae37\nthird_party/boringssl/src/fuzz/cert_corpus/f6385c5e1b81ec7c0dac9798362544f195fd0368\nthird_party/boringssl/src/fuzz/cert_corpus/f6b0541c9bf4d9dfc363d84b6c4e97cc172ab9fa\nthird_party/boringssl/src/fuzz/cert_corpus/f759d004b43db028079b7074b89bb9b96957b802\nthird_party/boringssl/src/fuzz/cert_corpus/f76c343e4143ecf6e7c3140102278e2eb4ba5d95\nthird_party/boringssl/src/fuzz/cert_corpus/f7cc48ca871b7a53b07785aa341e03ba50d3df59\nthird_party/boringssl/src/fuzz/cert_corpus/f854226f0d113c1f7908b86e2aabebb702c3da5a\nthird_party/boringssl/src/fuzz/cert_corpus/f866fae8b79caa1abddccba9ca64d9d3b15bc585\nthird_party/boringssl/src/fuzz/cert_corpus/f86b1bfba46b762935326f47396b910215184cf2\nthird_party/boringssl/src/fuzz/cert_corpus/f8fd7c248ad29a092f68d5f7214358b432508b29\nthird_party/boringssl/src/fuzz/cert_corpus/f9559156e1f509e2840ad88877be99ff5ae57af4\nthird_party/boringssl/src/fuzz/cert_corpus/fa62267b860e4ac0e5b2c4d2a70914d35700d0c0\nthird_party/boringssl/src/fuzz/cert_corpus/fb391fa0008e8069acadd9c77382d3f667c79dba\nthird_party/boringssl/src/fuzz/cert_corpus/fb9674a9953f4e4e766e9fdf9eb1c0d8579b3902\nthird_party/boringssl/src/fuzz/cert_corpus/fba966271f48a666c70291ef98617634ce13c291\nthird_party/boringssl/src/fuzz/cert_corpus/fd97ab445a88cdab6f0da14bbe0a2ec56c6c21e6\nthird_party/boringssl/src/fuzz/cert_corpus/fed85e5a43ee7e461484ebc6bfbca249337f6647\nthird_party/boringssl/src/fuzz/cert_corpus/ff6c360fc1ef0748adad4f4a9d148f6a9cf485c2\nthird_party/boringssl/src/fuzz/client_corpus/00a4669a03175476c55d468345e3159e2c2a352d\nthird_party/boringssl/src/fuzz/client_corpus/013319235fb754a9d4c7b8ea44acd187f5cd5d18\nthird_party/boringssl/src/fuzz/client_corpus/022ade30caf5b616424343c130e9af35a05abe23\nthird_party/boringssl/src/fuzz/client_corpus/02f44c799d522c30b53075a1d1df1f294c6f009e\nthird_party/boringssl/src/fuzz/client_corpus/045757f7f419961c2f07c0a55631ce64dd7ba98b\nthird_party/boringssl/src/fuzz/client_corpus/04c28ad57f2d16bed209a9761e1ec774010c0c63\nthird_party/boringssl/src/fuzz/client_corpus/04c4d8584b0f30ecbe3e4402abd65a4534865f7a\nthird_party/boringssl/src/fuzz/client_corpus/051434bcceafc34c19a34eb15093fba4eb6995c8\nthird_party/boringssl/src/fuzz/client_corpus/051f33f8159bd96def2dfe4980bf498def1cf4b1\nthird_party/boringssl/src/fuzz/client_corpus/0528fc7b3e8d415e2591a4074527daf493b14eb2\nthird_party/boringssl/src/fuzz/client_corpus/06b9a13d72ddf6dddd3f035eb905b62734a624ed\nthird_party/boringssl/src/fuzz/client_corpus/070427637b049ff46a6185a105138086721f9082\nthird_party/boringssl/src/fuzz/client_corpus/0753691c8a9b1b935e3583b75d7a3145f720d9d0\nthird_party/boringssl/src/fuzz/client_corpus/078f98f5921f5319f6168d184ba8b6d0b0ae15cb\nthird_party/boringssl/src/fuzz/client_corpus/07ab5fa897cbaebdb256b514525ef37dd6e3bede\nthird_party/boringssl/src/fuzz/client_corpus/07b8d1577fd6751b5ad7fba397487c29b3b0d1ff\nthird_party/boringssl/src/fuzz/client_corpus/0907ed7a81cd827f9851ccc428a6d37691a442a1\nthird_party/boringssl/src/fuzz/client_corpus/091129e458a7fb22128c7e0981f5c7c81014e59a\nthird_party/boringssl/src/fuzz/client_corpus/0992337019c07c5a492a4c71da5a3cd9e9f33887\nthird_party/boringssl/src/fuzz/client_corpus/0a1dbb6afc28a7fe80b74ae3288ac57cbe9529d7\nthird_party/boringssl/src/fuzz/client_corpus/0a2cf521ffbec9246c06bdfa73316f082b275dac\nthird_party/boringssl/src/fuzz/client_corpus/0adedb3d7cc622a92e13845ba85e9bf1c0d23be2\nthird_party/boringssl/src/fuzz/client_corpus/0c448d44541c3571a47b38db650a2a9d7ad41285\nthird_party/boringssl/src/fuzz/client_corpus/0c76ac23b3d5956361c4ee01a9b94e09045a4538\nthird_party/boringssl/src/fuzz/client_corpus/0c87885bf167baddbc7ed787686b4962cbee26e9\nthird_party/boringssl/src/fuzz/client_corpus/0cf02b68ec01ccd44e5d09e842fd5947db33e165\nthird_party/boringssl/src/fuzz/client_corpus/0d2206a727642ab40f8208e0ad09522c46a5c902\nthird_party/boringssl/src/fuzz/client_corpus/0d5f087bc67051acfcafa0a4c0ae8905fff7f16b\nthird_party/boringssl/src/fuzz/client_corpus/0ddf7918693a1d0d2db4d386d36428c1cf173d46\nthird_party/boringssl/src/fuzz/client_corpus/0eafeed1661611dceae201683c22cc48b7830d5a\nthird_party/boringssl/src/fuzz/client_corpus/0eb359ed50206f62ce29211fceb26d529a5221b2\nthird_party/boringssl/src/fuzz/client_corpus/0f725b6a04e75763401a4cf084d231addfdf8d2e\nthird_party/boringssl/src/fuzz/client_corpus/0fcc74786a3cfcc46b8cca0e1f386af389c1719d\nthird_party/boringssl/src/fuzz/client_corpus/10160f43e2a9a996205b01ebe97fc837447be782\nthird_party/boringssl/src/fuzz/client_corpus/11022e47b15d4ff9cdcf06c4ce3d0db19af30bea\nthird_party/boringssl/src/fuzz/client_corpus/113966997654b918c943ef60e50680934dc93785\nthird_party/boringssl/src/fuzz/client_corpus/11624bb37231bfa7ee89420ee8d635da6d397f0f\nthird_party/boringssl/src/fuzz/client_corpus/12d192b9f1e4cd1d57e78b28a1e428ca12f4d262\nthird_party/boringssl/src/fuzz/client_corpus/13248b9bf61272edbd4af057557858a18c76fa3e\nthird_party/boringssl/src/fuzz/client_corpus/1457a6df484d46354814e6d96d2f19fd66b4257e\nthird_party/boringssl/src/fuzz/client_corpus/1462b9ab928c5829124cb5bbb7d22154cf5b1221\nthird_party/boringssl/src/fuzz/client_corpus/147c7e5a738e1493bac019ca9670cdb040c5ac67\nthird_party/boringssl/src/fuzz/client_corpus/1489f923c4dca729178b3e3233458550d8dddf29\nthird_party/boringssl/src/fuzz/client_corpus/155b07c19a1cf84753c3f4557c3bb72b0f48a525\nthird_party/boringssl/src/fuzz/client_corpus/16a96ddc906ac7b0c23c9de305c9f5d57662d3b3\nthird_party/boringssl/src/fuzz/client_corpus/16edf76313dbde3f7d5bb66a1bc28a0d4e331f20\nthird_party/boringssl/src/fuzz/client_corpus/16f4de03fcbf82630122a5d85eb991ddb9446305\nthird_party/boringssl/src/fuzz/client_corpus/17f562bb0cbe1383b63b6c4e20f8c6327418d862\nthird_party/boringssl/src/fuzz/client_corpus/18fdd4b2300ddc333eae476b9d37c95fb7831827\nthird_party/boringssl/src/fuzz/client_corpus/19b2f4a1d66dddc88ec499e0fbbbf1f4fa913c8b\nthird_party/boringssl/src/fuzz/client_corpus/1a29dc3f4ddbc88e7f41f24504812f5aa031e6d6\nthird_party/boringssl/src/fuzz/client_corpus/1a920bc20dc342fd073e58c5e702fcfeabcd7d4c\nthird_party/boringssl/src/fuzz/client_corpus/1a99c05d8feb0b5db235cffea0d45dcaa78dd143\nthird_party/boringssl/src/fuzz/client_corpus/1b38a6c19d65a990faa03085fdfe03a8d03be0be\nthird_party/boringssl/src/fuzz/client_corpus/1ec693ed992d0413f7452bd12fe7c56da2f843b2\nthird_party/boringssl/src/fuzz/client_corpus/1f01512da77f2bc35554ebdec20f95c922fabe90\nthird_party/boringssl/src/fuzz/client_corpus/1f27ef50ed64041270dbe15c8fa70970d2f53673\nthird_party/boringssl/src/fuzz/client_corpus/1fa317904e38b79eb0f97ab5cb5cd921da263735\nthird_party/boringssl/src/fuzz/client_corpus/20772b4b2e3717da6130fd5eaa28cfa9610bf5c8\nthird_party/boringssl/src/fuzz/client_corpus/210622b51e97820e42521231bff75ea543a20ef5\nthird_party/boringssl/src/fuzz/client_corpus/2159e9e64f99c13afed80946d5ed03c9cded0f9d\nthird_party/boringssl/src/fuzz/client_corpus/21fd5f4d8d8219de4bca7d8259dcfce2d6c98c52\nthird_party/boringssl/src/fuzz/client_corpus/2295c860d5d7f71fff164236470cb48902a46159\nthird_party/boringssl/src/fuzz/client_corpus/23b72188d77132ea04131a9888767b920c10c60e\nthird_party/boringssl/src/fuzz/client_corpus/23c0a95196ed3217c091f64bb83bf35969b3a236\nthird_party/boringssl/src/fuzz/client_corpus/240c5bc8b0733aacba156b94b0d04f76ec01745b\nthird_party/boringssl/src/fuzz/client_corpus/26509a8eecd1dc8da2539f8a6043017bee3d7e5a\nthird_party/boringssl/src/fuzz/client_corpus/2719ccc145a8813a7304811b6ebe1c58c067c241\nthird_party/boringssl/src/fuzz/client_corpus/27d8f11bba8911fab93f9a071758fde4ae68e97c\nthird_party/boringssl/src/fuzz/client_corpus/27e30e7a74e4c1f7f3cb7b593f86085d754465eb\nthird_party/boringssl/src/fuzz/client_corpus/27e3e7215df3bde2b1d9777d3d5c12d851756930\nthird_party/boringssl/src/fuzz/client_corpus/280261b9fbb593f68a40692db426a4bd349570fa\nthird_party/boringssl/src/fuzz/client_corpus/283929b83813f9faed2a0b5be58089fb222f63c4\nthird_party/boringssl/src/fuzz/client_corpus/28560285ce635b55b6b5b6418b365e8b72530c60\nthird_party/boringssl/src/fuzz/client_corpus/28885a18e7cdf0652611aa2a6c0451ccf5a80657\nthird_party/boringssl/src/fuzz/client_corpus/289c6c6e241057ac780640be41e3adccbeadea9f\nthird_party/boringssl/src/fuzz/client_corpus/28d25966f30bcb3fa3376830109d2dfcd1ec5e04\nthird_party/boringssl/src/fuzz/client_corpus/2a00857231ba1053b348af0b310417aab81525d7\nthird_party/boringssl/src/fuzz/client_corpus/2ae019bf128fe0446ddf111ede241e1133804583\nthird_party/boringssl/src/fuzz/client_corpus/2b54b2bd17efcfb44d8b9fd3b7533bc3c6e64382\nthird_party/boringssl/src/fuzz/client_corpus/2c18d5783fc3aae3a33299e98d91dd79bdd84593\nthird_party/boringssl/src/fuzz/client_corpus/2c4073fccda07d98ce3cfa12ce5067b92e7beaff\nthird_party/boringssl/src/fuzz/client_corpus/2de2c9577497e916efa2d9e22896acf27fc569ac\nthird_party/boringssl/src/fuzz/client_corpus/2e89bd3f1c6521c952ce5fc9803a6437a45db29a\nthird_party/boringssl/src/fuzz/client_corpus/2eb44da113d33ffeb7adbd554d492b8186871036\nthird_party/boringssl/src/fuzz/client_corpus/2f7c35faedfcabf2e339a0855ba414a20a5b79f0\nthird_party/boringssl/src/fuzz/client_corpus/30569fa929fa44e33ce161c4f4ca898f391352db\nthird_party/boringssl/src/fuzz/client_corpus/30bcbd3bf3da44431b4d8a9a50e8c936cdcbbe4e\nthird_party/boringssl/src/fuzz/client_corpus/312b4e89586028407304c4ca9d2fb01f72b5a55d\nthird_party/boringssl/src/fuzz/client_corpus/3197bdc988e0562051fe78df4dacf287dfb4d8a9\nthird_party/boringssl/src/fuzz/client_corpus/31dc9b4d43e1334fc3b32c8f1a99133b929a81fa\nthird_party/boringssl/src/fuzz/client_corpus/322d2b8ed42ecdfde91fab51a14def388271c29e\nthird_party/boringssl/src/fuzz/client_corpus/339e0b2606084eaaa8818645d7bd898ad47d7290\nthird_party/boringssl/src/fuzz/client_corpus/34cdb17eb999320626cb92ee813d075d74f8f4d6\nthird_party/boringssl/src/fuzz/client_corpus/356c4b48d790ab79ee43451608893f15ba82aa05\nthird_party/boringssl/src/fuzz/client_corpus/36ab82cde14fc9082875af77efe678e2d20482d9\nthird_party/boringssl/src/fuzz/client_corpus/37bd8712b1dc0a2c101c62fac2c74cca9783e0d6\nthird_party/boringssl/src/fuzz/client_corpus/38b9b04617c86537cd6d9b0f1bda85efda0bdc48\nthird_party/boringssl/src/fuzz/client_corpus/3a1979319d1ff54d055c3118763f246b9d7bd41d\nthird_party/boringssl/src/fuzz/client_corpus/3a4c09845b9fc552e4bdf06eb633c7782375f3ec\nthird_party/boringssl/src/fuzz/client_corpus/3ab00d40786b6d9df60f7c55aad889569cc2d289\nthird_party/boringssl/src/fuzz/client_corpus/3b643561a422e98f7eef3fa56e63b292be633558\nthird_party/boringssl/src/fuzz/client_corpus/3c1c9e8188e15ea8d78d0385f3bedc29d7d01237\nthird_party/boringssl/src/fuzz/client_corpus/3c57d14a2698b73a51b6e16329dce3bf3820d454\nthird_party/boringssl/src/fuzz/client_corpus/3c7d1d113858ca068aa76d82f1bf6412b71415e8\nthird_party/boringssl/src/fuzz/client_corpus/3c8401abd899a0430d19adb57ab7f7ef70898835\nthird_party/boringssl/src/fuzz/client_corpus/3cc980bb071f463cac85ecf625d9d4e969f7bcfb\nthird_party/boringssl/src/fuzz/client_corpus/3d1d894725291dc115c29a5618cecdb8efc95568\nthird_party/boringssl/src/fuzz/client_corpus/3d5f63ea051c303463d1fc9e40c94da571e5c504\nthird_party/boringssl/src/fuzz/client_corpus/3d6757443294c4de19ee61d9bf75e4c95d1b0e8c\nthird_party/boringssl/src/fuzz/client_corpus/3d8da46b556049c4085ee3a2da4bccec185acdf2\nthird_party/boringssl/src/fuzz/client_corpus/3e49dcd6a33b5f1683f878901bb62428dda37454\nthird_party/boringssl/src/fuzz/client_corpus/4187d923c91ab221da8e18f80475632a84a6e212\nthird_party/boringssl/src/fuzz/client_corpus/41a069cf62fef316e92aa67f42a0265ec974d1b3\nthird_party/boringssl/src/fuzz/client_corpus/423a5d6d609fdac8f49f403e94311fe4530e4899\nthird_party/boringssl/src/fuzz/client_corpus/42f8174145a9cd2d15016b4cf0d6db97cb884b04\nthird_party/boringssl/src/fuzz/client_corpus/437945e8100673c4399a81cd662dc71775f81819\nthird_party/boringssl/src/fuzz/client_corpus/442dd794191cb6c16e0c86f72d70c731541e4b08\nthird_party/boringssl/src/fuzz/client_corpus/44ffaaa8597c557193ed19aa61bbb1adac2fc1db\nthird_party/boringssl/src/fuzz/client_corpus/456f9a91aa2fce920e9b981484719699b4bd959b\nthird_party/boringssl/src/fuzz/client_corpus/45dbee5815a97b19e9ed9c8e11e517b551022745\nthird_party/boringssl/src/fuzz/client_corpus/463d129e21935b60fe8e7a31fbd1bb19b01b2c18\nthird_party/boringssl/src/fuzz/client_corpus/46a9fc44bab25ddf24e92c4f137080bbd8684f10\nthird_party/boringssl/src/fuzz/client_corpus/46b693f35e3a1540fd6ce64ce18c9e69d5ea04c1\nthird_party/boringssl/src/fuzz/client_corpus/46de2173c232358c76d14954b9f2bca87f34d375\nthird_party/boringssl/src/fuzz/client_corpus/48338eb76667acc1074f6d5b9d01e924cf6da688\nthird_party/boringssl/src/fuzz/client_corpus/485b51866274510b71fc0961f9dd897aca04d276\nthird_party/boringssl/src/fuzz/client_corpus/489cc5493127321ede727c2bacbe852efb19ed24\nthird_party/boringssl/src/fuzz/client_corpus/48ac42d82cd9a47386670ad75690971f60b49c1d\nthird_party/boringssl/src/fuzz/client_corpus/4a0395c510e7351c0a7b648cfcb69908618997c3\nthird_party/boringssl/src/fuzz/client_corpus/4a0b3302b909b8867613400030e009764f07d182\nthird_party/boringssl/src/fuzz/client_corpus/4a5a57629518326b445139b7c3b73e115bbd58d6\nthird_party/boringssl/src/fuzz/client_corpus/4ac923b2e4de2cc4abae15eaede2e19685df5e55\nthird_party/boringssl/src/fuzz/client_corpus/4b4a81578279494267573090e4b827af319abe75\nthird_party/boringssl/src/fuzz/client_corpus/4b4fddfae163e6a95a5e8d6702fec404953b9465\nthird_party/boringssl/src/fuzz/client_corpus/4b78d9ccf5e13c52413ae9421b6cb72de72a0973\nthird_party/boringssl/src/fuzz/client_corpus/4b87f72d48c96dca631d4fd7d6b6f69ce5cda0fb\nthird_party/boringssl/src/fuzz/client_corpus/4ba73012131429dde42414ab86ae4d99a1233e18\nthird_party/boringssl/src/fuzz/client_corpus/4c0dd18ce24558a3d29b5b059f76c4c898527ec1\nthird_party/boringssl/src/fuzz/client_corpus/4e267bab0e4e40e7fa55d9265f37b95727da81bb\nthird_party/boringssl/src/fuzz/client_corpus/4ecb26496aac2058395ba831817b2c926ca76797\nthird_party/boringssl/src/fuzz/client_corpus/4fd403d6146f7f47c32aa9b75f7da8a3ed4abcfc\nthird_party/boringssl/src/fuzz/client_corpus/515dd77e466bb091e57ae84c94505af27c1da28a\nthird_party/boringssl/src/fuzz/client_corpus/52815ef33fe06ce81d9880158900189ea0f7ef7c\nthird_party/boringssl/src/fuzz/client_corpus/531a908f6bea4f9f2fd1c59ebdd98838bd6acb49\nthird_party/boringssl/src/fuzz/client_corpus/5368017ad7d58a595bb45a7b0cd22d958aea14d5\nthird_party/boringssl/src/fuzz/client_corpus/53b51a1c9ee6cf4a29296477716727af41ff7c66\nthird_party/boringssl/src/fuzz/client_corpus/53ec88cf2f8b1464f1f2a37202bd88a44cf21e1a\nthird_party/boringssl/src/fuzz/client_corpus/54f709c5719142c49e5b85bdd96b93f4457868b7\nthird_party/boringssl/src/fuzz/client_corpus/55f1fe53f2ed32dc08b5b2c1df27fdc7016b2f15\nthird_party/boringssl/src/fuzz/client_corpus/5726ce8b9d43aa799aafc4a9d5b13673a31b2568\nthird_party/boringssl/src/fuzz/client_corpus/57be8966ffeaf6f0070ce16389c2a79446452b19\nthird_party/boringssl/src/fuzz/client_corpus/580759019207045f9187c70f19931ff8e2a7b7e1\nthird_party/boringssl/src/fuzz/client_corpus/593381897639cf34eea2247e157d6d8916decbfd\nthird_party/boringssl/src/fuzz/client_corpus/598ac46782509a6bd5d8f5ec38c2a5e8bec422ed\nthird_party/boringssl/src/fuzz/client_corpus/5a2ead481a28560485857e1963c46f4520b97bb3\nthird_party/boringssl/src/fuzz/client_corpus/5a65f8bbbcd506ba2623a9e7c98a09ddbda67017\nthird_party/boringssl/src/fuzz/client_corpus/5b491bfff0d167328a72a4035d3e340930dadc8b\nthird_party/boringssl/src/fuzz/client_corpus/5c337957318db62fa0ee3a0396f842854fea0148\nthird_party/boringssl/src/fuzz/client_corpus/5ca519ebade30a074c4c1c60973e1f1125c75d6b\nthird_party/boringssl/src/fuzz/client_corpus/5d4b9bc11776e004e29083d4325042f359a8224f\nthird_party/boringssl/src/fuzz/client_corpus/5e1bfe3836713a825a8b891364c515866c676868\nthird_party/boringssl/src/fuzz/client_corpus/5e92a442e38f49efae159a46ea50eeff31a605a0\nthird_party/boringssl/src/fuzz/client_corpus/5ea244a01d2de1fcdc94dd73e532ecfc1e401659\nthird_party/boringssl/src/fuzz/client_corpus/5f493305c89ce45a985aaaacbd2860fc1070d3b2\nthird_party/boringssl/src/fuzz/client_corpus/5f574b9afa2f0722b4c3cd704304241592d2fec5\nthird_party/boringssl/src/fuzz/client_corpus/5fba91b40ba3a86b599927d4aaa8a555f70b1f5c\nthird_party/boringssl/src/fuzz/client_corpus/6015fc30d96a89b41156000fcf38cf379c957517\nthird_party/boringssl/src/fuzz/client_corpus/603845a11adb138e9f6501503076c62661d45796\nthird_party/boringssl/src/fuzz/client_corpus/611053420e5261789e373f2313834a41e891ecba\nthird_party/boringssl/src/fuzz/client_corpus/61374a111b42d860efebb9cafffdc880cee700ba\nthird_party/boringssl/src/fuzz/client_corpus/6174a365db621b3366e33926af0ccc8f33daee92\nthird_party/boringssl/src/fuzz/client_corpus/631e3bfe44f7e32c78ead028502573df807dea55\nthird_party/boringssl/src/fuzz/client_corpus/645ba3984c1c908c76a7a18a5ce22d1bac06a9d6\nthird_party/boringssl/src/fuzz/client_corpus/6525e66edf364a7c2cd75b3eeaa63b40fc2e4317\nthird_party/boringssl/src/fuzz/client_corpus/67a05c536d859526062b3ed1dd2b2530224d776b\nthird_party/boringssl/src/fuzz/client_corpus/684980a51db7f0a6e7bce0f5c8cd30ca20ee5afd\nthird_party/boringssl/src/fuzz/client_corpus/69e6deba1250f6bf3e7e461634957ff167971037\nthird_party/boringssl/src/fuzz/client_corpus/6b556d1144e4fa33097aea9ecbd6630ae30729c9\nthird_party/boringssl/src/fuzz/client_corpus/6d0f85d6863c7b68bb982135b34ae0247af5a8e1\nthird_party/boringssl/src/fuzz/client_corpus/6eaaed5eee2df54eb20699a587c2b819ad914c36\nthird_party/boringssl/src/fuzz/client_corpus/6f0d9d91fb07d53d9ba14550059cb9a44d72c1de\nthird_party/boringssl/src/fuzz/client_corpus/6fbfaf9bc7da158f0e4744b4a35b664810dc0be2\nthird_party/boringssl/src/fuzz/client_corpus/7014edbd62a57bac82ee8067c09085eff86d8e29\nthird_party/boringssl/src/fuzz/client_corpus/72db38ec7e0b96489820750d33cfeca38868cc50\nthird_party/boringssl/src/fuzz/client_corpus/73012b33dc6aae7f6efe4146e4c1eb628a1a5c62\nthird_party/boringssl/src/fuzz/client_corpus/7314248ae8bee081435b021c1ee0f01812034ff7\nthird_party/boringssl/src/fuzz/client_corpus/737ede0e9b07905630674c3c3e68e5151373209a\nthird_party/boringssl/src/fuzz/client_corpus/744445dbc417fc06a699594ce31b514cd5f13305\nthird_party/boringssl/src/fuzz/client_corpus/744a34c9ad7b0b9207e1766ee087c3eb906ef27a\nthird_party/boringssl/src/fuzz/client_corpus/74fa42c091b6f30b6d494e6c956246a226d70f0c\nthird_party/boringssl/src/fuzz/client_corpus/75abd0da52e52c46a783e70dbfe2c142b568f3d7\nthird_party/boringssl/src/fuzz/client_corpus/773c2c70426f82aaa1ed22753f9a797db9dd81d4\nthird_party/boringssl/src/fuzz/client_corpus/7765b816e7a468c49f08fc9d5029545c082d1792\nthird_party/boringssl/src/fuzz/client_corpus/779b18a1111b5076f0d38e886c829cb9b4a01ccf\nthird_party/boringssl/src/fuzz/client_corpus/782e026f5744838a43685a90b44ecd89fe9ed59e\nthird_party/boringssl/src/fuzz/client_corpus/7888919c757d594d748f48c3fc4e38e45035c291\nthird_party/boringssl/src/fuzz/client_corpus/7909120e73ff69731956ab915c88a227ad84029e\nthird_party/boringssl/src/fuzz/client_corpus/791988af86a2fd99c324275165fb41dce142779c\nthird_party/boringssl/src/fuzz/client_corpus/7955e419198a4d6e51b52a53a244556cffa53d47\nthird_party/boringssl/src/fuzz/client_corpus/797d0603a7f0bac9e0c1b18340332ffb16eb80e9\nthird_party/boringssl/src/fuzz/client_corpus/7a4311b9751086b125edc64c4ec4c5baff811e62\nthird_party/boringssl/src/fuzz/client_corpus/7ae62bd24b71bffe9a36d6245d1a5179b3e8751b\nthird_party/boringssl/src/fuzz/client_corpus/7be28ab4a7aca1bedf365684ec6cc96dcc25cf1e\nthird_party/boringssl/src/fuzz/client_corpus/7cc3ef5d5543809c541e151119f5e8e1660809c6\nthird_party/boringssl/src/fuzz/client_corpus/7d4542c38d67324c1cbcb0b8c035658988119348\nthird_party/boringssl/src/fuzz/client_corpus/7d764419d9224b3573f3cf7ed4642d70e1e7346d\nthird_party/boringssl/src/fuzz/client_corpus/7d917db9ed2d2932031bf3575bd9820f85c9a417\nthird_party/boringssl/src/fuzz/client_corpus/7dae9ff8b8e0c96b271d938b42e77d97a63ccf24\nthird_party/boringssl/src/fuzz/client_corpus/7dcdcf07e319c36dd4dbad5a7860e853948f5019\nthird_party/boringssl/src/fuzz/client_corpus/7e624f4bcc3c0932ab1fed213a9ae624bf939510\nthird_party/boringssl/src/fuzz/client_corpus/7e75aad4b419d40093327bb3d833547ad9774c91\nthird_party/boringssl/src/fuzz/client_corpus/7ea10a6e464f01d2d109239879a3015cda444099\nthird_party/boringssl/src/fuzz/client_corpus/7f94fe1d8d2e9fcbe8a689ea405d283e0dbdec53\nthird_party/boringssl/src/fuzz/client_corpus/818fd38102f2315917b28435d75edcee5f6d01a6\nthird_party/boringssl/src/fuzz/client_corpus/8236e34d7964c5e933296f26da66f86b5d6ccc18\nthird_party/boringssl/src/fuzz/client_corpus/827f04d6fe5a7e7c451276a780908551d58bac50\nthird_party/boringssl/src/fuzz/client_corpus/82fd11c12899b4a315bb6e9ea9c696e30e121aa6\nthird_party/boringssl/src/fuzz/client_corpus/8323833dd4faa2ca179376fcf6c0f34aabf67e34\nthird_party/boringssl/src/fuzz/client_corpus/8369bfd82d90cd8fa5bd6baefee91bc5d20d15d2\nthird_party/boringssl/src/fuzz/client_corpus/83f968279035f9032b8eb3cb3d364ad131ab324e\nthird_party/boringssl/src/fuzz/client_corpus/84ba7200e08f2995d5ae601a52006a1a9de6a7ef\nthird_party/boringssl/src/fuzz/client_corpus/84f832f1fbb28b48bb2fda810703655e9b8afe3e\nthird_party/boringssl/src/fuzz/client_corpus/85abb3ad2be8579c86ff389b9ed8491a33d4c66b\nthird_party/boringssl/src/fuzz/client_corpus/85cbb909a0f7309e0f4813aafaecef26fac20d10\nthird_party/boringssl/src/fuzz/client_corpus/85e866e2b4f980da131368415e0909d6d7bc8468\nthird_party/boringssl/src/fuzz/client_corpus/8795217a382a7e4bda3cb8c840baa76afd10dc18\nthird_party/boringssl/src/fuzz/client_corpus/87b93509a12c43e3028c88370d8935dbc5719615\nthird_party/boringssl/src/fuzz/client_corpus/87bb6aa5ac056350c9a7e56d847170202d7aab35\nthird_party/boringssl/src/fuzz/client_corpus/88bacb4ed19a2e23326c9da899c820f30996b178\nthird_party/boringssl/src/fuzz/client_corpus/89dcd85dde0ef40ee035a89fb0333c667a3bd764\nthird_party/boringssl/src/fuzz/client_corpus/8af70613e43b65fcc301bcd9cc7d4ae1d2755e7e\nthird_party/boringssl/src/fuzz/client_corpus/8b05fc845aab67d727037711de7808287412f064\nthird_party/boringssl/src/fuzz/client_corpus/8b62204034a82d2988d0c9dda3172538f4205d99\nthird_party/boringssl/src/fuzz/client_corpus/8bd8970f86ff299a7f666086e120129ee123bf57\nthird_party/boringssl/src/fuzz/client_corpus/8c0d34003939963cb23f5165f6dfefffb8570a50\nthird_party/boringssl/src/fuzz/client_corpus/8c2b924d6f6e272dfc88bbf362ef45eacdf8b916\nthird_party/boringssl/src/fuzz/client_corpus/8c38b90b62dbb2966aa80093c16563f05f9c6fec\nthird_party/boringssl/src/fuzz/client_corpus/8c85ce004820c9482c894de361d45f07636a7214\nthird_party/boringssl/src/fuzz/client_corpus/8cb31f11872eb9338a9c8e2204ca45e4bd88fe9f\nthird_party/boringssl/src/fuzz/client_corpus/8e5c353c81f1f26031d4e60258f77e3812017ac9\nthird_party/boringssl/src/fuzz/client_corpus/8ef7ca659777ebd6dcf089d08ec25be59d91bc2c\nthird_party/boringssl/src/fuzz/client_corpus/8f525c06e595eb50e55519a02459e81bd8d8138c\nthird_party/boringssl/src/fuzz/client_corpus/9030584991c1a254b578429a7f92730c8b1dced2\nthird_party/boringssl/src/fuzz/client_corpus/903a43e6cec506c4a5d86e1e5d92da4157cfaecb\nthird_party/boringssl/src/fuzz/client_corpus/924b8b5719ff40cefb09db42ba5f416802eaa81c\nthird_party/boringssl/src/fuzz/client_corpus/933435eb1ee083e0261bfe133b225aa46ac11e1d\nthird_party/boringssl/src/fuzz/client_corpus/93a991961b4613cf23d85fd184f4db690ad49445\nthird_party/boringssl/src/fuzz/client_corpus/94dee8f21f9f63676d7292538971144bb84043da\nthird_party/boringssl/src/fuzz/client_corpus/950240fcd88a2f4bbf8eaa8773c8512e191d5929\nthird_party/boringssl/src/fuzz/client_corpus/95496de66dbdfed84f8e14d24a6f7aa9ef075de7\nthird_party/boringssl/src/fuzz/client_corpus/9562f7d50d338ed79f071531143447cf03f30a6a\nthird_party/boringssl/src/fuzz/client_corpus/95920ea67c6bd01f38cc9c77bf11c253082d9330\nthird_party/boringssl/src/fuzz/client_corpus/95ac138deec7bcede966af89007e21406e10c1f0\nthird_party/boringssl/src/fuzz/client_corpus/965261ea2fb6959c33a9d00aa4854eb50cbc6934\nthird_party/boringssl/src/fuzz/client_corpus/9695122c802315f88ab4b3a74ec6ceef73d93f0f\nthird_party/boringssl/src/fuzz/client_corpus/975c40a741d970ab70fdd055988167726dc87131\nthird_party/boringssl/src/fuzz/client_corpus/982ce20d16b2159f98154de0ec96eec2662e3ae6\nthird_party/boringssl/src/fuzz/client_corpus/9939194d8042e17552ffd55536ec73a40a81a342\nthird_party/boringssl/src/fuzz/client_corpus/99c2022ecce46fd66738a7620cf77f00100c94f5\nthird_party/boringssl/src/fuzz/client_corpus/9a0da3a3cdd8d3c1559fe3e09df14716737e38e4\nthird_party/boringssl/src/fuzz/client_corpus/9a3e583c686b703985312b4e7b5363976c059ee4\nthird_party/boringssl/src/fuzz/client_corpus/9ab020005067f1e698c8bb552cc1f4f027382b0a\nthird_party/boringssl/src/fuzz/client_corpus/9b09f3b5653f624705e466870401c6d0e719142c\nthird_party/boringssl/src/fuzz/client_corpus/9b5c217dcb4ae41c124be8d5dc971d4b811f32a7\nthird_party/boringssl/src/fuzz/client_corpus/9c09ab4e51ba96b5d5f09f10900b8e81c50afc19\nthird_party/boringssl/src/fuzz/client_corpus/9c6499b7237332cf47a24ff70a2a67e67193a519\nthird_party/boringssl/src/fuzz/client_corpus/9dba8b578e0c6b9c0e75de38bfd622c345eed0e2\nthird_party/boringssl/src/fuzz/client_corpus/9e4c611855fead2d56448cd284d3931d7f3baafc\nthird_party/boringssl/src/fuzz/client_corpus/9e50b7bbecd7af256d55358ea8ccb0a8f399d5ff\nthird_party/boringssl/src/fuzz/client_corpus/9fcd86e338ebf63927e734e1ae9ba41024a3e5ac\nthird_party/boringssl/src/fuzz/client_corpus/a09e50736a6dfd1fc930836f693150bd02adebfb\nthird_party/boringssl/src/fuzz/client_corpus/a0db868fe2f7cebe1c78427fb9f3cdf7c9c9d4b8\nthird_party/boringssl/src/fuzz/client_corpus/a14a8862c08a81a300e1197c1f25fd79e61905f6\nthird_party/boringssl/src/fuzz/client_corpus/a153423cef6c97fc93d3bffc0ab9228ceecfffce\nthird_party/boringssl/src/fuzz/client_corpus/a18dd1370f6585eb7601f66f13c581b363f34d9b\nthird_party/boringssl/src/fuzz/client_corpus/a22a724a5a5e5869cc869e72caf197e247ef7936\nthird_party/boringssl/src/fuzz/client_corpus/a246c1340b42d887fd2f5626ab9d6a6468de57e2\nthird_party/boringssl/src/fuzz/client_corpus/a261092ef8fbbb540490fc8f9773d88d65782748\nthird_party/boringssl/src/fuzz/client_corpus/a3df6ea0a91e2599cb4b5d3111ec31407b6e321d\nthird_party/boringssl/src/fuzz/client_corpus/a4018b58f498e8d82e5ef133ffb6041ca3263d12\nthird_party/boringssl/src/fuzz/client_corpus/a499839c75c5289eea2fe5de52c40973d7c0e853\nthird_party/boringssl/src/fuzz/client_corpus/a4a9bb7b1c713cd28b4fc60dcf221e9f4905e85f\nthird_party/boringssl/src/fuzz/client_corpus/a4f686b4aba889c331dd84e9c19ca729dc8caea8\nthird_party/boringssl/src/fuzz/client_corpus/a5365aa3fd54b10db6af724a57a5ae5aef1f1255\nthird_party/boringssl/src/fuzz/client_corpus/a69df1b052de1387bc24dcfa54e3883c57691c24\nthird_party/boringssl/src/fuzz/client_corpus/a71afc2e39779254a6de6990ba4fb0d3b5f4f236\nthird_party/boringssl/src/fuzz/client_corpus/a885f14974e060a4dd04e5fa7c96c913b9b0dcd2\nthird_party/boringssl/src/fuzz/client_corpus/a8b3c020caa9254af6bd0a5c3b0911fab42f1069\nthird_party/boringssl/src/fuzz/client_corpus/aa35b60cdea0e6fca8d704df9c9255732c4891e5\nthird_party/boringssl/src/fuzz/client_corpus/aa42f1d9302651c1d42487c5f0ed597f9cac7f00\nthird_party/boringssl/src/fuzz/client_corpus/aa519d2e0a8ae83733136753a7cc278e48d9430e\nthird_party/boringssl/src/fuzz/client_corpus/aa7344d8a6d3170f5cca3321b31d3c7808e33a53\nthird_party/boringssl/src/fuzz/client_corpus/ab3b7219ddfb549ad822d5fee7ee80ed4226366b\nthird_party/boringssl/src/fuzz/client_corpus/abc2e2a7c1a65b7c6b373edd46ee890e7afba519\nthird_party/boringssl/src/fuzz/client_corpus/abe52a0ca90b274b3f11f2e2035e0ac3294feafe\nthird_party/boringssl/src/fuzz/client_corpus/ad1f576ae9df13a632ada14d5d908373239a808e\nthird_party/boringssl/src/fuzz/client_corpus/ad607e0e365c85eac8625760b0fcf9d66541e700\nthird_party/boringssl/src/fuzz/client_corpus/ae1efc0b2a8d3c8ef85c46a688647d458441df6b\nthird_party/boringssl/src/fuzz/client_corpus/ae89bf8b22dc2dad1933a88188c848bb49b2b276\nthird_party/boringssl/src/fuzz/client_corpus/aefb0ebfa73939d1ad1090290b88728d36c215d7\nthird_party/boringssl/src/fuzz/client_corpus/af0d57e35744d5f9978a8cfd5a30466e5913f655\nthird_party/boringssl/src/fuzz/client_corpus/af1fe897b0d0fce9859004756c1cd18dfef7fa1a\nthird_party/boringssl/src/fuzz/client_corpus/b06ca89358a62d30e7f08f0ba726058606a891fd\nthird_party/boringssl/src/fuzz/client_corpus/b074bbfb940d18612f09471e9374a733c2cfa9a1\nthird_party/boringssl/src/fuzz/client_corpus/b0f7bd95554303e3beb9f7b1412992145765be9a\nthird_party/boringssl/src/fuzz/client_corpus/b23a39fb04fdad2b78f714ce1c850af3f92bd438\nthird_party/boringssl/src/fuzz/client_corpus/b25bccdf3174db4751ce450717d3fd8f2c00ce56\nthird_party/boringssl/src/fuzz/client_corpus/b370e07cd799054ccdd085c6a31477c5c109571b\nthird_party/boringssl/src/fuzz/client_corpus/b41609c1bad70a169bdc7dc6551b48223feedcc9\nthird_party/boringssl/src/fuzz/client_corpus/b4165aa9809dc17e6e2d25ff1cbde7f11ff6c049\nthird_party/boringssl/src/fuzz/client_corpus/b57b255bc26d2960a6c185cc9043a60062942d49\nthird_party/boringssl/src/fuzz/client_corpus/b5a0827c966b5e7771d5ee42d061ae30d583a60a\nthird_party/boringssl/src/fuzz/client_corpus/b60798f1dd83d26e3c06880a93aef04ac3dd6ef3\nthird_party/boringssl/src/fuzz/client_corpus/b695c4e3e16fc7459c83cb7dcf3da21d979dbf21\nthird_party/boringssl/src/fuzz/client_corpus/b6e04e7f3faae67551f3b03de695d1f9efc1c094\nthird_party/boringssl/src/fuzz/client_corpus/b83f3c86b68985c7e72f1aa528c354f3863b09bd\nthird_party/boringssl/src/fuzz/client_corpus/b96d64b983fe54573b993c5ce1b4a523a1b14f00\nthird_party/boringssl/src/fuzz/client_corpus/b97a82a073c00ecb45eaaa02fe30fd467908d12d\nthird_party/boringssl/src/fuzz/client_corpus/ba063e83b4accfa28f356d3c0c3395c86002c680\nthird_party/boringssl/src/fuzz/client_corpus/ba86c336ff68fe730760c55c2139cdc16070265a\nthird_party/boringssl/src/fuzz/client_corpus/baa04654605d4327f87363e8bbad16abaebedb30\nthird_party/boringssl/src/fuzz/client_corpus/bb7894f1583f71e1d1739bd897891723454ec6da\nthird_party/boringssl/src/fuzz/client_corpus/bcdf21fa08f5feefc2ad8d67c54a6765323d4526\nthird_party/boringssl/src/fuzz/client_corpus/be0efe37a78e896ad187dc4f7a9c0e6154fee8e6\nthird_party/boringssl/src/fuzz/client_corpus/bed4feca102e15414efc423809944ddde9341d6f\nthird_party/boringssl/src/fuzz/client_corpus/c0a51d3e265eb49369027b42f75d0a3afd05bae9\nthird_party/boringssl/src/fuzz/client_corpus/c148ccb47ac7d0d6e9cf5cbd6b8b4184f3b9c644\nthird_party/boringssl/src/fuzz/client_corpus/c1ae95d46e8ca34f399a64f0d1b4bfd3cf063bef\nthird_party/boringssl/src/fuzz/client_corpus/c3412e715cac1d93863561dd1952adbaca3e66ca\nthird_party/boringssl/src/fuzz/client_corpus/c3ff7573675eb57611ae42ace5d9ca795861f9ea\nthird_party/boringssl/src/fuzz/client_corpus/c4478798e12f21be6c984475508bb90acacb9d37\nthird_party/boringssl/src/fuzz/client_corpus/c53ede9e2bae8dc4191822b22c83cd97c74f75b9\nthird_party/boringssl/src/fuzz/client_corpus/c5e777dc898a71950ecb1701f909b88543ee2074\nthird_party/boringssl/src/fuzz/client_corpus/c63699dfffcb2cb3c3008dd8265611905efef9da\nthird_party/boringssl/src/fuzz/client_corpus/c6d77ee4f07249d041d66e4e60d02d5431b25c52\nthird_party/boringssl/src/fuzz/client_corpus/c778e849c730a16573a584f3030b1e61737ae584\nthird_party/boringssl/src/fuzz/client_corpus/c8b487285f1054a84f0a54d33b43404d32283bd1\nthird_party/boringssl/src/fuzz/client_corpus/c92c4f274b565905321738eb5eeb0f0c44720c65\nthird_party/boringssl/src/fuzz/client_corpus/c9784107f0415460555380b32d4e29d4cc47a8f6\nthird_party/boringssl/src/fuzz/client_corpus/ca2ed4c4f6f6fd8ac15b8e778686d9bfe181c5fb\nthird_party/boringssl/src/fuzz/client_corpus/cb8c22cd8252df9e5d2458068009978db5fec6d4\nthird_party/boringssl/src/fuzz/client_corpus/cc8d58451ea229642e78bad1081a8cbd2e8ba758\nthird_party/boringssl/src/fuzz/client_corpus/cccda73c2270a1f7b1745767581b01bbb1244367\nthird_party/boringssl/src/fuzz/client_corpus/ccd924524e8d51b2eaba60977c13193afdb3f920\nthird_party/boringssl/src/fuzz/client_corpus/cd571b007c73933077ea4a8c7aeb84d543434b0a\nthird_party/boringssl/src/fuzz/client_corpus/ce140c839b75c2aca49dc513cf84a2d65079ff1c\nthird_party/boringssl/src/fuzz/client_corpus/ceaecaf2c790b485a4e5a31564ffd9ca5773e29c\nthird_party/boringssl/src/fuzz/client_corpus/cec3c5c57065a85c43d1735159d917aa5221c64c\nthird_party/boringssl/src/fuzz/client_corpus/d02cbd2fbcaae96d98fae62dc63655b76fa718d4\nthird_party/boringssl/src/fuzz/client_corpus/d09a9de612f6d2fe4ee32b52c7d5f7d3b0017eb1\nthird_party/boringssl/src/fuzz/client_corpus/d0ddeba6e41127c75501ecd6c535db1497099649\nthird_party/boringssl/src/fuzz/client_corpus/d0e763648dc51d7b96abc7e4b2d120b4182ac42b\nthird_party/boringssl/src/fuzz/client_corpus/d0fce1a992b77535716aac570b0f38f23c8e9b83\nthird_party/boringssl/src/fuzz/client_corpus/d178c3a66463fcdddb58cca4bf13b2aaca1d2df4\nthird_party/boringssl/src/fuzz/client_corpus/d43c4a189e89c6f28048f954f67236f65f39bf27\nthird_party/boringssl/src/fuzz/client_corpus/d480f9e70d196fe771b2a3e67d9a1bef96570f00\nthird_party/boringssl/src/fuzz/client_corpus/d598c9e588535db13f919b3e0b4f9d00b12395ea\nthird_party/boringssl/src/fuzz/client_corpus/d5bd30086dbf53ae76c39eaf20cbb8d4ab59466e\nthird_party/boringssl/src/fuzz/client_corpus/d611b2ab5713e5eee4e95ea674c80be461819529\nthird_party/boringssl/src/fuzz/client_corpus/d730865172f1a4eb9b7c49930e6ebf2a0080c0ac\nthird_party/boringssl/src/fuzz/client_corpus/d75c006b6a3257821d36dd60fefd414311eae123\nthird_party/boringssl/src/fuzz/client_corpus/d84f2d6370a4264e0a297d88e2b21f24ad524807\nthird_party/boringssl/src/fuzz/client_corpus/d8ff93f2b82aaf768e9bfdac5d294b08d03f1266\nthird_party/boringssl/src/fuzz/client_corpus/d9513bd88e6e7f837d56cac45ba0b9d7d65becd0\nthird_party/boringssl/src/fuzz/client_corpus/da1e75ef829bf87b86edf01cdbd8fe93061e29b8\nthird_party/boringssl/src/fuzz/client_corpus/da3daabe56539c4851e7dd21a54793fec1ed7aa2\nthird_party/boringssl/src/fuzz/client_corpus/daa279a3a46d0282b588e5c59982835def06ec42\nthird_party/boringssl/src/fuzz/client_corpus/db0a315e9d82a5d245048d6ffed7e05b42d85671\nthird_party/boringssl/src/fuzz/client_corpus/db4c1a4b6dafc2cbbf594791afbff215f172a709\nthird_party/boringssl/src/fuzz/client_corpus/db6253a552c9b15d05c75abd422b002def6179f7\nthird_party/boringssl/src/fuzz/client_corpus/db7b39a7a057f604ccb5874a56c47a6e1872758b\nthird_party/boringssl/src/fuzz/client_corpus/dcf87d6e67e311234ce6ea2becec26a00634353c\nthird_party/boringssl/src/fuzz/client_corpus/de5bf780d15d5f002bf3fb7b77571cc00e16bd74\nthird_party/boringssl/src/fuzz/client_corpus/dfe5e8862697cfac7fca54f1c272a05adbb59673\nthird_party/boringssl/src/fuzz/client_corpus/e02330b2655e1af9d3279e407a50890b770ca3c1\nthird_party/boringssl/src/fuzz/client_corpus/e0af320f22d66d4ebd45d5ae626ec2abd7a23757\nthird_party/boringssl/src/fuzz/client_corpus/e1027ed036ec96728acba3d72f0a0ea5d59b9cc8\nthird_party/boringssl/src/fuzz/client_corpus/e1538ffef6a4fa4f7f3387b175cd06095244dce5\nthird_party/boringssl/src/fuzz/client_corpus/e28ecd51ebedd2dd20d6da5b786f56e40aed7cb5\nthird_party/boringssl/src/fuzz/client_corpus/e35b35150652f135401bb2cffeca233eb398f93d\nthird_party/boringssl/src/fuzz/client_corpus/e5986c31ee75c48f54ebbdcb4e1001fde788acba\nthird_party/boringssl/src/fuzz/client_corpus/e776e7480415fc2bcf7bd3fa7012624e14ba2d8e\nthird_party/boringssl/src/fuzz/client_corpus/e7907612baf7af477320d805b50df07fc772d53c\nthird_party/boringssl/src/fuzz/client_corpus/e87218d1f2f884a66ca8bb2be3cb38f84b92edd6\nthird_party/boringssl/src/fuzz/client_corpus/e927cd58411a37d401a6b4490ef2fb3a6dd9d057\nthird_party/boringssl/src/fuzz/client_corpus/e9406103946a4230367ea3483936061335557240\nthird_party/boringssl/src/fuzz/client_corpus/ead5344ca161aa580257868de88d98ec05bd2a9f\nthird_party/boringssl/src/fuzz/client_corpus/ebd79a26be47e3e840275edd455aaacbe4d9423b\nthird_party/boringssl/src/fuzz/client_corpus/ec2eb34ed6da144585d66820b121cd22ec7edaeb\nthird_party/boringssl/src/fuzz/client_corpus/ec52fdf44df5cb311dba136892b3bbce77a62627\nthird_party/boringssl/src/fuzz/client_corpus/ed1f142caf3bdda7f269344d4f35d7a28c94ea47\nthird_party/boringssl/src/fuzz/client_corpus/ed49f8e682adc4e286abc8f03a20b348cc340504\nthird_party/boringssl/src/fuzz/client_corpus/ed9329a7f470b8172133a025d694e940e570b5ab\nthird_party/boringssl/src/fuzz/client_corpus/eeb876cb6cdeec8998afa3da7cae6c0bcc6e8207\nthird_party/boringssl/src/fuzz/client_corpus/efd05fb2cd4e199c94e5a06ac12f8d0d38163af4\nthird_party/boringssl/src/fuzz/client_corpus/f08b4679f2d5201da635830df6983522222528eb\nthird_party/boringssl/src/fuzz/client_corpus/f104ef16a95266bb7938cb6b8e4022abd54f4837\nthird_party/boringssl/src/fuzz/client_corpus/f27cbd42cf922eff104fd2ca555626c343b4332e\nthird_party/boringssl/src/fuzz/client_corpus/f344621b9d55f44969dbeac5997f7f9683d2ed5e\nthird_party/boringssl/src/fuzz/client_corpus/f37496d899bdc8d284d4fdc679811c0810bdee80\nthird_party/boringssl/src/fuzz/client_corpus/f3cbbbc24b6dbd5de8655f28e59e4e180170c1bc\nthird_party/boringssl/src/fuzz/client_corpus/f3f7dc50d154709995c2213d0d8bd5bac9a0e2ec\nthird_party/boringssl/src/fuzz/client_corpus/f5af4da8f41eb4619e920f15badcaed52ab37a27\nthird_party/boringssl/src/fuzz/client_corpus/f63efe1383053a5bb4a46012818938a16226b4d2\nthird_party/boringssl/src/fuzz/client_corpus/f651ac6b5cc69fa474c29cff2c1996da2046373b\nthird_party/boringssl/src/fuzz/client_corpus/f6875bdfff87523a3b37b9c5273aa2ec1dc2c2c3\nthird_party/boringssl/src/fuzz/client_corpus/f70542841855744e718c75436fac40fe6001e19d\nthird_party/boringssl/src/fuzz/client_corpus/f79e38fffbf711fc3c85920e3e1c34586ab3cd44\nthird_party/boringssl/src/fuzz/client_corpus/f889d65fc9a7b4b75f085b61a240cb7c10940dd3\nthird_party/boringssl/src/fuzz/client_corpus/f8b6088f8c34f2847c78ecf0e70a71b41c7193a8\nthird_party/boringssl/src/fuzz/client_corpus/f8be00b1c3922da992fe91fab1ef328d4613929c\nthird_party/boringssl/src/fuzz/client_corpus/f8d1f2e014ef92a74eddd2fc8f96bfb7ef19921e\nthird_party/boringssl/src/fuzz/client_corpus/f98f5dd3d7714ff2376ffb23aedb3797d4169699\nthird_party/boringssl/src/fuzz/client_corpus/f9b80eecce34e597d452ad03a511a7487403c739\nthird_party/boringssl/src/fuzz/client_corpus/fa29728083c19ba2b1fd8828499060828a6fbd9d\nthird_party/boringssl/src/fuzz/client_corpus/fba3e36ff9038e8cc1139d722fda5b9fa7f5d901\nthird_party/boringssl/src/fuzz/client_corpus/fc45a752e0663b7c446e31ff7dee01881334ed82\nthird_party/boringssl/src/fuzz/client_corpus/fd293e624377970e90e10fb0f202cbf09c87786d\nthird_party/boringssl/src/fuzz/client_corpus/fd3dd6b9b568a9da77c9d213031da5ad17f2cfc6\nthird_party/boringssl/src/fuzz/client_corpus/fd3e6f784078d95acfbfea317205220b8b9390c3\nthird_party/boringssl/src/fuzz/client_corpus/fd967f905e97b50b5afcb9d4daacddf8ee00a565\nthird_party/boringssl/src/fuzz/client_corpus/ff6b644d310397f2f63a362bae3059de091a0d89\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/0406a0ce3873776e65a0fcb5f9f8e735cd110f8a\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/072afe5e9ba1fcec2b47f13e5628dff55f2131a9\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/0885d2f5e56debe90d702b3885edbec580af8d24\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/096eddc240c9044debb4cb35995671a2dd555646\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/097b025d14e29f7d92152377e73b5ccb6bb900ad\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/0a1d783db7943f465520159b2c9b28e692cb1b2e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/0b0f3818d48b140b7660d30630e2da7be213d13c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/0c387c40350d3f4259d32d875a1554d8252d8a50\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/0c8aabd31abb8e0ae4d7e1301220fb230d7dc99a\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/11f842ca4f752d206c9f1d893f4af5b2a0ba39df\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/13526c64ba521bed4c2da7620086ca463671592f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/1489f923c4dca729178b3e3233458550d8dddf29\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/151f21f5cb1ffcb105ff9b51af388fef3780f217\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/15d88286efd2b01b2f19bed5be9d06e803b01200\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/17bf733e2011f066cbc4dbd62ed9051b3bee44bc\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/196024484e94a9d7aa4e1ed3fac5f9f4969c6956\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/198387c95d3a24ce414348516fc51ae5d6f46bff\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/1a99c05d8feb0b5db235cffea0d45dcaa78dd143\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/1bd3619ace632829246ecd717c5e2b6048649e5f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/1ef89e5a4c6308cb40d8167759ccd1987796a0b4\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/1efd691b9e956ab5119a03a520a42f1855d095f8\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/255472a1dff67bdd5cd03b12682189c32c36230f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/27d953a930479f1e89cf2d33d9473e94e426598f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/28b2ccdfe98839ef49df6be3e7c87c67629cba3c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/28d25966f30bcb3fa3376830109d2dfcd1ec5e04\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/2ae0b8de2c353abb4352391fd013e5a6a9ac9e5e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/2efb50ea788432cd71beffe0c38b36a338e57e8e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/2f10f9e3ea83fa53d7bb9e514f468d1bfc3c01a9\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/2f7c35faedfcabf2e339a0855ba414a20a5b79f0\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3061373083005b2f9bc481a52ac2089de73d6a73\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/308f27e07c79eb98b4964384ee4a411d637aca11\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/30bcbd3bf3da44431b4d8a9a50e8c936cdcbbe4e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3142b8fa87c64bda644eb691791d669b1781e2a0\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/321847a2ce634faeaffa56ae79df8d5a568d4f41\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/32759b9b755a4793c190395f3a4f083c88de8100\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/32928f8ffca1409175feb2eb227c37948a77a9ab\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/33534cd816af0da589f5acf0aff55d34f380af53\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/35b6f5a0f0cf102b0ebe24deecb63e8a28f41bab\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/364fe53a69109d29ea9de3beb2377b173df412a1\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/372b95c854577b041dafad1e0f7005642e70d416\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3849f809f030d1094d19cce6a636befba1281009\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/39448989ad2e60a738afa81c2cbd14e0fa44a72c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3948bed942bd57a28bd3b0b78bc8760f625b8c0c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/39d44f5e3d2c70593e82506504825e556f1003ad\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3a63ce2d84ccc70bc35b6c7b2849b606785dd032\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3b402925b3ed581d86ba39c3949810f26f6f28ad\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3d543946691b7da695c51f06788f1fbdbba0078e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3e153e6b6d0146a43ec3fd09464f942704daf1a4\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/3fb9220ae4d3f9b932efb342db26b96938767750\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/40b6d468cd4142d775eb3b79f6b1900405502b90\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/41a069cf62fef316e92aa67f42a0265ec974d1b3\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4231fbee5082d2873c44ce777f37a5acf705b415\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/42f8174145a9cd2d15016b4cf0d6db97cb884b04\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/43008da4f82a6b0997a881bd55a4f1448b14f6a2\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/43d550b1eef83a237a3d96a85eca01afca7f4064\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4552802489552783e316f1edf339a112643381f9\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/461bb6e7d93af42775a640b70b6043d3c43f990d\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/46a9fc44bab25ddf24e92c4f137080bbd8684f10\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/46be951703158b1af3986c9f0eade0bdb618f5c3\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4856721e2cf47eebec756e23c877558b4cb10f3f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4a43d832406bb9eb0706b717e5af4c977d88f67e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4a8349850aab837eadebfe0d1a49a84adac18fab\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4ad796d335814bab0d3bbe5b50c1898eb9eb96d4\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4b67f6e81d4c05c21b1cbc336c8bfa632dd7fc18\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4c108c7588df5d3a0a70725d2ee59b180b30f455\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/4cfff273128abfdf42e0ead3c0c98d53bab74a68\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/52eab1080ae6856eb5dc5e13996ebb225d97b918\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/5326b1ab999cbca2d5e4525e368b4a31f0357088\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/53ca7b40934b63df766c5dc95abd75fac34eab0c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/54de963a4c073668a7728fd22f83881451b46b65\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/554d380008acbad20916f43fdf249e94b822ddfe\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/564cfd52b7873bea5d715c87b4ec56053ebd14e4\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/57cdb41b10c91c1461a690397683acce0bc23595\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/57e66cd964d46e9a1eb8bb03c35b5a9b6c79487b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/5837fe69b76cfe5fba1d11efccddcab6f2396b5a\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/58b40f20324f77a88604e1866e6dbe13182e8b72\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/5a470bceaa3bae05ed0f360a6b410c779ba0003b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/5bcda6ff42d95781bdf79b7df73362743181bb37\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/5d68e739190e5f8eceed6fa26c5c24d454974b76\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/5d8c35e774db92e469cb224592a4afdae9ec8846\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/5ec26ce93fcfef50c4d818b5852dccc3d964cd88\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6293fac74bf94aefe343aaaa979f05d63d217664\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/641f9bf3f164cc63c71b806fc0eaf673ec796b09\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6485e23f6bc3d84a6fb8cff8ffcdc1854b0e4ba4\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/669266bdf7f920870d296bb56b84c5e887e1f51b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/66e7a5d0682175c1c0125b2b46d5312e07bcde98\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6755737227f4a22c52504d5d8f40ae9b4e64cffb\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6788b372c40f83a7dd2d29dd2d0f8f94d7f077bd\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6991365467c8619c71581bffc9c30f65975e700c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6bb2c140712c00af87ee8f7208ce5843af6e7072\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6c4da1109f815449cd487b96fe59ddc3060a535f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6d869da19df18992541b89b783009cc5e69868bd\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6e2ccd0ae5e2d1934e717cbd1ecb6befa9ed6140\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/6f2ef80912b8292e54be7d627ae04b056ec32cb0\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/715ea107bb66d37a57161139384852e434f5e9af\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/71a53759871766a1777635ac953a0397aec89b49\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/72db38ec7e0b96489820750d33cfeca38868cc50\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7461f62ca214c576c43dc6024f126056f54c044f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/74de0c746d7d094bd79797a013743e8531d6b642\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/752ba4ace927edd3ef0fc70516b2fc55c383c1ca\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/759606f3e01eb7a55aa16d40af0b9d4dc03ca02a\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7690aaee06c6d307efabc1ec7b40ae8035323bd6\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/76a6426c9e3c75daa67a10c125a9bc3b79ee4908\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/780a84fcc9d2572b250467d8084def560be9073c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/78be03dce34d5a034897e179c051ddcfe0e7f9e5\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/798eb6f6cd396eaefcc583e5105c7b4298ac3f3c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/79e14f63c4d09bea200ca22765808d1566dbbfb6\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7a960e8b8537fa769d9d105ae28792149bc7b546\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7bbc30cc86d24f0d0462ba712c786bd56821d699\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7bf2629128b91edc6fd53bafa9b56b6108ea0562\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7d7f767e98437ae3f09759a9ebc5b9f9c9864110\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7ef87ee636938c2bb4235227cc5347d8adae7196\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/7f94fe1d8d2e9fcbe8a689ea405d283e0dbdec53\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8172072778eeb36c76c630dfe2df10ad2e538b55\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/81de5ce745cff95ee4005cd3d00e5d149cce4013\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/820f772e67ae14c9c876144baed0c94a30d4cfad\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8369bfd82d90cd8fa5bd6baefee91bc5d20d15d2\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/838e4e375d628e8fa42d455b603c888a83d70d05\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/850c011baf104aa882f5b27d4048f299c7ff902d\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8662df29e6376489a950812aa5a5ff9c44a2a65d\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/87762fe096e0042e7d6b376c705010bbbdada192\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8a1c75bde791aa363cba0a6a146a098aef100e07\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8a59f02a23c0345533220925e57c316ef7de552b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8c1d1ac4961975e7ff6592a8293046e8b00d87b1\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8cc3c96276b65dfa9cdd6012fdc0bc6a085ea146\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8d95927e1a1d8deaf76c328979171a041ed0cd6a\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/8d9d6cfc1b60fff0eac72f537aa04900e3b6049b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/90ce0951f9404f14c7bcff894f86b5adfbe2ea55\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/91085e28b15a76c0eb952e29a32958c64210fa22\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/911b77a559df01da7635687f76d5332317c7e08b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/92bae4073f6ff276cdee0096302c3e9f8d6c10fd\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/92e6ca7ef1f7fef8fbd3d1d590d9e5ae6b766f42\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/932ac830ad5d51d928c2369a54f50a4f5b924f66\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/934e88078ef793c18c2395e0bc96d8caa35e8841\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/93d0f7fb2676b2ceffee437b9009cdb9970d484c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/964a71f0e7be3d918e17930feb8cb493cd320c49\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9763c6b7d81835078e3b20fdb41b5288cab9930d\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/990fc339eeb1c77883a5f078f566a7b33ef2bc71\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/99c689cce634fc93c6da78966eead9e035ad4cfa\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9a3e583c686b703985312b4e7b5363976c059ee4\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9c26ea944d6af8ca8a40fbe140b1546c35bed999\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9c658f6134d4ee8d92cbb14c17ef3f95866f9244\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9e7480708f1639b3d7d28c24b8d0069872cd9792\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9f512feaf6dedde799fb54ca956d3919d80cae5a\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9fb42b24e724fcc7b045403afbfdd101cb7cbf22\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/9fb493abce1d36d1279c94f79909b0c02ccf9dfe\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a0ae9f3a0a7f4e296a2dc204f0ce4bb20b7681ec\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a15d97ec9dfa09552cb5a2c6f76b7841a2f5e22c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a164f5d41fc8a52882e4da1eab21d684d75575ed\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a31485be9beb36c2e8de3c8dff871f5a7ebe6286\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a36c75741c2a634a8e15e4a79f7d530f0857461d\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a48061bd3de257ac7f848d715308b6b83cbaef0e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a57ddf52041372f881af848f2b624a17e939d38d\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a5dfc336934d434aad04cc9914d27426d00c2a34\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a6c05de8e45ea2b821158d004808c6beebaf0301\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a73e17bb891d223f500c95916dd2ba549661f9ae\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a8870d429c8e771cc689d8c5f5d3c2bb26d9470e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a8d671e53e7e66c2a627a21f04de9617fc7d1ce5\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a90d298af651bb2dff49a9eab4a1b3a8434ddd58\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/a9dee07816a237b7c8b3366bf4e939fbfa855a11\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/aa42f1d9302651c1d42487c5f0ed597f9cac7f00\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ab16b90e9c6ffadad9ca78492e011e9467b93ade\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/abc84e32c9322d849428edcc88f300c6b5092201\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ae1efc0b2a8d3c8ef85c46a688647d458441df6b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/af44ac4c3b0371c29f408f6b42edf8b8403785d9\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/af745b0ef88bf0ef382e3410e758043ad993ee84\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b01af8aca6a58bcda50555e3afab1c40bcf7f582\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b030e2429fc53927881d58145d088d06452f6a26\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b1376725e3bf74c6519c219c6472c6d81515182a\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b217013fcc4b7f16e856b8c91df61f7e071c5cd2\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b4fb2886caa7253df5484e13fc1f5b5e064ac310\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b7d6540600ab6d67e85b698a97ba5d39e9ad7a66\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b7f51c55bd011598a8e3e1d0671fc9d4a17a4d09\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b7f92e1901074aad1041b2e33b02ab2cf2757f2c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/b93a61088b431cc110b6a2f1c0908b56133d473e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/bb78e3d26db4f97235fda0a0329847a655bac48e\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/bbad23c67780619ce04acfab4995c6ba06039863\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/bbb0dc96445fec9c12306e6e6202696ae48add91\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/bc19949a4f9d9309a48ec184fb6c59002f42e86c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/bf8a9329652af9d8c79a4049a63000282fcc1fba\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/c175d2816aceebfe5d24c64a610238b8a640033c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/c42fe981d6fe631b3780b6d3054fdfc38630bc44\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/c61d8cf81fa324aa38ecf1ef94738ed7bafc217c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/c7b5dca54cc0ebdf9a47878a0629eba3242a69ee\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/c7c685c2d3992a29cb0ac5f3491481a81e9c37ed\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/c88decc00c709493fd2b46582cc39fb2d90b9c2f\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ca2ed4c4f6f6fd8ac15b8e778686d9bfe181c5fb\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/cb4fbcb22b4625792d9d9eee7b4284c69ab6a257\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/cc3f076cf16324863c399adb8b3f5064036641ce\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/cd280adb132d1fc580a5411d9b3544d24909e0bf\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/d1584204aa43ad0785402278756663e39a8e7804\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/d2328f74204a8ab6cfe30cd2700bd87cf824ff70\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/d7e3f40604984ffa180fd18d02b25d2d6db0fed3\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/d90ce69847da6a1e6afa0ef67dea51c3232921c0\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/db0dc10acf7ec0d014ec49f891d95aac21c50a94\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/db6253a552c9b15d05c75abd422b002def6179f7\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/dc29d977fce71e060b9ae6a7feb965ed9bd2abc8\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ddff64620b2c59316fa331ffe65da25a4667f0b3\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/df69f4b2fbc627d7f1719c0eb8f9b44b8c1f1fc9\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/dfb41c32dca4464951f14eb246f0386afd2f8b87\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e02445df45e951ea7c2819584678658b987234a7\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e180ab112d2cfe38105931af1ec32b63e7293997\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e1c4b3f06aa06b9686aeab585832383003365963\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e2c512cb0534f93ebf02a528019f50cc677792db\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e631a562a9a07024bd3905583c6feb1a557a2356\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e6760514765cf56f5544cdd72a48e845a1648665\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e72e007032c5cdcf65b3c91bed4e90403d3f7f59\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/e93e86d33769c266fc3c8ef19eb06a7e3c6aedab\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/eae093893ad367e52f83275a9e85e2042b4f3839\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ebffac674a30c42965f2b0db2782bbf4f5b2beac\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ec26ae2d7ce633f0ad20c29219a43b275d112e56\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ed49f8e682adc4e286abc8f03a20b348cc340504\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/eeb06e0fab0469910b4116f4c41265afe2723f5d\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/eee378854e90402bc4a80bc0c5d35a9a11c39a68\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/f6c2fc500115c6db954ddb0a4cff9e105f5124e7\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/f6d5ec326e8f1027a68accda8da48489b705564b\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/f9e44b77292e35b43bc0d0e485447e1ecdab88e5\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/f9fad23530597588efd0af3187526e3bb0151e31\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/fa2cefdf344569957b3ea326c8f759738face0eb\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/fb1007d8cc0a626dcf13b4910cbe3cef5ec564a3\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/fb1a5d0a53477c504d6bf01e36c2680d941c12c1\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/fba3e36ff9038e8cc1139d722fda5b9fa7f5d901\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/fbb0d2ec0fa012edbb368960f141773bd7193f2c\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ff261b7426d59abe341f87143f622f47ba3b9289\nthird_party/boringssl/src/fuzz/client_no_fuzzer_mode_corpus/ff867841f39f078b4c08e7a6915cf07341e95a8c\nthird_party/boringssl/src/fuzz/crl_getcrlstatusforcert_fuzzer_corpus/bad_empty_extensions\nthird_party/boringssl/src/fuzz/crl_getcrlstatusforcert_fuzzer_corpus/bad_empty_sequence\nthird_party/boringssl/src/fuzz/crl_getcrlstatusforcert_fuzzer_corpus/good\nthird_party/boringssl/src/fuzz/crl_getcrlstatusforcert_fuzzer_corpus/good_no_extensions\nthird_party/boringssl/src/fuzz/crl_parse_crl_certificatelist_fuzzer_corpus/good_minimal\nthird_party/boringssl/src/fuzz/crl_parse_crl_tbscertlist_fuzzer_corpus/good\nthird_party/boringssl/src/fuzz/crl_parse_crl_tbscertlist_fuzzer_corpus/good_noextensions\nthird_party/boringssl/src/fuzz/crl_parse_crl_tbscertlist_fuzzer_corpus/good_nonextupdate\nthird_party/boringssl/src/fuzz/crl_parse_crl_tbscertlist_fuzzer_corpus/good_nooptionals\nthird_party/boringssl/src/fuzz/crl_parse_crl_tbscertlist_fuzzer_corpus/good_norevokedcerts\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/empty_sequence\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_distributionPoint_fullName_uri\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_distributionPoint_nameRelativeToCRLIssuer\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_dpname_onlyca_reasons_and_indirectcrl\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_indirectCrl\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_onlyContainsAttributeCerts\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_onlyContainsCaCerts\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_onlyContainsUserCerts\nthird_party/boringssl/src/fuzz/crl_parse_issuing_distribution_point_fuzzer_corpus/idp_with_onlySomeReasons\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/1801ac92348bd90de6d206ca01bd373272452e8e\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/195d372ef6ed267cf60dfd56978d82c8ba1d6b68\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/1bb5c0f4248499b759d8668e2c4efea8479fd1ee\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/1c06e6b3020dd225661cbcd03572aa07642b4dad\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/2443b30fb09522f442abaee7b0e03a259752d2de\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/27af6473351f2ab64838dcfe3e4cb4fa3d08f198\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/291b9c64c834a5b3d7f63bfde1a19b0980a002d3\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/29636cecf19beeb7856ace13eafac6ec03731822\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/3b0782d27c1bbe783588e48e50e83bf35d8159f8\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/3d8eee9c5e982b5df48ddc70f6f87e71cd2cc857\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/5d04d5c50fa239df2d82e908587381fa51eac5b3\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/6e768d7ebcfdf7ef78cd278c9f56cadb5c3aee2a\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/6f65c5d2f71c83643dbd849fbdc8c4ae41c45043\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/708d0eb40157fb1850229b02b84ada5c4a4d2526\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/8f26d09f836be335b9c2e478615395c0954f9b74\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/93d475fdb214a1ac30d26e1504f26791bbd74bb7\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/981cc58bf5297f1bb8a07c11fa8c7c31b93f5402\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/a9d80dd82f2d0415d224ebd3c184397746cecbb4\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/af0a8a94bf269d473e743dbdf50068850d580391\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/b981d55ae19824ba148859582b6220203f2efc91\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/c449468cc1e0287b1b7417bbc7035cd7b5665b6d\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/c594eec108bbe6151362a455982c1dec3da856c4\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/d608cfbc975dc08e7d035a9f17496d60a89579b3\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/de2d121cb0614d83d60ab3604aa12a85b53495cd\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/e459531b7ab45bd032c1fc12d3f16479b1d2fe7a\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/e4a31c4c2a141aad3dd0ebe33cebc2b3394bba6b\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/e8c3cd451645134ca6e2495c4aae8e7132f97678\nthird_party/boringssl/src/fuzz/decode_client_hello_inner_corpus/f6d419ff34a20222303aa7b58f0025ca751fc2ad\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/0461791e54b4840c109637952eab43d9b938cab8\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/06e57a7b98a403a00822739739924b97ae6c74e9\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/078c3c1199930781466871c8dda69bec379286a4\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/082a991742f652549e4b207100ee521f474e0a99\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/091e3389548686c5038d04e3d76b9c4d30502074\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/153d254254345b61e20e7b37637dd6f6fd71ba01\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/163605136e22f5b5302fe60d1f17837bee6b6b2b\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/1cc9ad96fcee279e8589b7071c7a0ccd111098f2\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/229b8e1825512868e0e11a199ed71231dd41bb4f\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/236d820eadf7f84d70de7bb8be5f1c57a4005de2\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/24fd9742dbdee3167509db4af245ad6f8c4c1e99\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/2896f8deb3c4e8bdfeab743b22c64c92316880f7\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/29b6252fe9c4d1186394b1664c421cca795b61a5\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/2b4955132275314d1d377f37f93d8c1879a3519a\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/2e7112ac524a7a663632397cbb41f7dfd22e92c6\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/396d197005432accf99bf0f483286e459eb24063\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/3c75fe79266cf639f2180722a3f03f8fc3e25685\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/422fa995b3fdfed572b68b292062c330d6d05272\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/428b48fc494cee828f0c27f77aef477cb2e1fd80\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/4bd69e424b6fa38f9e63e58b8d0e95ac2d38d598\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/4be7e1f134e1c55aeadeead515200f6f1e6254ba\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/4de268400e174db2dc306f45c833cf968a6c6546\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/52d2c7efcd7da0eb7463829e05a598e36729bfae\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/53cf415eb9de49fb5a0cb46e745e413a99aa0779\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/5ba93c9db0cff93f52b521d7420e43f6eda2784f\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/5e5361730362736fe3e2804d8566e3c91454509b\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/6654fedb1fc4b07095695b062b5af4c2f12d59ae\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/6f40330ec07e8e22f113f982b297ff7f86b8e485\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/738f291e53e97c08dae378c71ef70a60e31ae900\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/7396791821e64fc9340249a4bcbd2198e9f237db\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/7653595e28f23e62ea6707c99ca08c780a69335f\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/7cb5c71603a787032973d6ddc9c2c34638005784\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/80a1e1ae75c1e5ef7bbde5f5877e3e5b26b3cf58\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/8855f2d904cf1bbaffc54e68d98890fdc9ec14cc\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/8a22f56ee86cc2d67e9610a6b0ed59f21008a341\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/935a69e9f3bfa1dd3bf058fa3e1b953e82195de6\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/951ccb49640c8f9e81fb4e0d82730321f4e15bb3\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/9af1f3ed10c7a54f6b57c344015141cc082db23b\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/a0b7dd1684089c63a4aac2e4a832544df4d639d6\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/a22d0d3565a509a4bfedce078090d8c6a908d950\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/a22f1185582f66227118c8e9002a5c29728f0650\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/a457945cb86ec812235f407ed70fe72fbaf694a1\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/a4ee44c4e8728d4924642ef8765063262e8c4601\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/a4fc609a6546fc0061f499f0faed9054fd388c9a\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/a98e22a5a8c2f5dda365d55e76536931010e1560\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/aca6ed86348b1176bfbe4ebf32b2d48a0aa42f9f\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/aeefb82d7f5cc69168aade3b196a84d0f5c14bf2\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/b5d4e67f0ec5b1a90100d8ad424d77aea8e16353\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/b65ea16ba4dae8599ebbad7c4cb9fcd505edf485\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/b95311782071c4d9182c0effe32487fc5cdbd33d\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/bbcaf4d15f92bfc6d624eee967fade1a74329f30\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/bc26b8c794ac0adf948cbca02e88b3901824ef17\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/bc7b23c2c68e4ad33ecea493ff6e60d423371cd0\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/bd8daf3e78d8ba3a25838053b6993edc7a21c30e\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/c4d94647e646f02da1736b3179804ad6083acde9\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/c869b259f9f81bec8ed24a9bc2cef35a513fb9fc\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/ceee46f04a09ef5d3342ef25d9f483e861727575\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/d05c069216b54f35bc7e3ee08371baee243c089a\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/d18c30ba21e0d085dd983ad528f2c9001285d3d2\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/d2c00146b2f2bcb4c6cecb731d2062273523d8c8\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/d9bc7157a485958a5fce35ce777f551fe3f7d94c\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/df9b696736847e43672b7a99ca05655af8a81135\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/e5b420f71cf412bd9fdebdd46245fabd1f3462e5\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/e7979b0e6e3e9cd64ceab99778c55205d6f92a73\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/ee629f1935abc05fdc32ba314ec1f80f4bff2a17\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/f944dcd635f9801f7ac90a407fbc479964dec024\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/fadcde7d914246ca04bd56e68fd4045b1cf1c5ef\nthird_party/boringssl/src/fuzz/der_roundtrip_corpus/fd8be6506a9995f626eef831b9c981a80b0e3640\nthird_party/boringssl/src/fuzz/dtls_client_corpus/007f80cf3375202f763d5fd1cce1c5ddee0bfba8\nthird_party/boringssl/src/fuzz/dtls_client_corpus/03f449edcffdb24c7af4c088a437e4ed00d8ca2b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/041362f31da6c05403821b4350eaeabf321ee892\nthird_party/boringssl/src/fuzz/dtls_client_corpus/047004be89c0a1f302611570def65a023d6abba3\nthird_party/boringssl/src/fuzz/dtls_client_corpus/05474066990baed9e18653244a6db30617c09816\nthird_party/boringssl/src/fuzz/dtls_client_corpus/05de1a1709ffcbee9c7c20f3ff266d63cc28b1ba\nthird_party/boringssl/src/fuzz/dtls_client_corpus/061aa2ed7ad4d532b07fa5b223cd7071e471e945\nthird_party/boringssl/src/fuzz/dtls_client_corpus/06322e5e52afdc3b47f488546c9cb537b16becb2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/06395514b9a6a8bc1d3094f95bfcbce7638dbaa0\nthird_party/boringssl/src/fuzz/dtls_client_corpus/0653c30ea148bee41cc94ad2cb22ef67ffa417fa\nthird_party/boringssl/src/fuzz/dtls_client_corpus/0845d1131ac8bf4a8b6ee3870f2078df9258550d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/0beae17629a5bf7b6231701d53b7dfb8db6931fb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/0c1ce87b94e25d966f08f48c80406adf2fb97fd3\nthird_party/boringssl/src/fuzz/dtls_client_corpus/0c5b33f2dac698af9c0da0c0512cfbfc3bc4aebd\nthird_party/boringssl/src/fuzz/dtls_client_corpus/0db28f3eb43b6ce82d88640ce8fb5e01b860155d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/0f3528e531214d8e4631577932a55a5646cc8e8c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/10a2d883df2f3575ade0ded4546157da0d07efb5\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1167fc3d8c7f1d0d357d0fd0f84d12d2fe41c73a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/13f129c8eed84edb4c60cd8a8716662677253077\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1489f923c4dca729178b3e3233458550d8dddf29\nthird_party/boringssl/src/fuzz/dtls_client_corpus/15c9d356c8f734a26102c900e498f8c666fb0088\nthird_party/boringssl/src/fuzz/dtls_client_corpus/15cc174e0221f92f56c2120faacf6b8a1bdf7a3e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/182c0022271354bab9ca17039fcaf484d3e7d691\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1932fedc680a4f2c8bb53221249c1ca8251fa7dc\nthird_party/boringssl/src/fuzz/dtls_client_corpus/195319fd6318edb38c054de4e9466ab4f7e07dfa\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1a842ec0ace80c86bc827dd59bb034ec5203ad72\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1acf9017d3811009bdda26a3649c662f914f7c72\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1b5c9c7cfe90fcafee3ebf0495b343ca308af677\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1bdfc7f32c3e72eebb26b25fad44440f865bf3c7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1c0e747ee12ece6f1aeb29c974d963676a0616ca\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1c6251fbf2208107bb4f06d5b566203a03feef84\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1f6fcb04c527f83973de2eec964461009c8de4cb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/1fd902b458ec970435c0bef8481d4d314c1ac011\nthird_party/boringssl/src/fuzz/dtls_client_corpus/20a028018c0eb6b155149d4ffc4541364c25d4cf\nthird_party/boringssl/src/fuzz/dtls_client_corpus/20a0701c77e6b6f473aafdd94cda8eacbbdaa55d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/214af1a2c165525620ab41468a5bc212f16ea4b2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/21d3e07079db5f0955e4c08b9bef04275c3d4971\nthird_party/boringssl/src/fuzz/dtls_client_corpus/25e0104cb51c2c90f2ce1c447202dc68867529e6\nthird_party/boringssl/src/fuzz/dtls_client_corpus/27a489c47f8764700080982cd23239e498932b24\nthird_party/boringssl/src/fuzz/dtls_client_corpus/28110c154cf726e084f1ee0fa106bc4bc71fe46d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/28d265e21e1c1fafe3ee805342011d16bb697afb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/294c0474a3e75554781083d9d38f509a2e37d02e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/29667960178b5cecc1d148fe02f39a8526364f28\nthird_party/boringssl/src/fuzz/dtls_client_corpus/2d000dd918340d10ed7ea10d3ca1803a213df751\nthird_party/boringssl/src/fuzz/dtls_client_corpus/2d3fdca1b5fff996ee56640369be5e75ba1db5d4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/2ddfb2a8e11d0c728a37b77b88d3e9c51219d3ea\nthird_party/boringssl/src/fuzz/dtls_client_corpus/2df768ebbd283880fcaa89180927012bbba47dda\nthird_party/boringssl/src/fuzz/dtls_client_corpus/2e22e0f2bd5535f4a369d413c7408c7d86367c08\nthird_party/boringssl/src/fuzz/dtls_client_corpus/312d50de7e940c2e6f08926c35d8d4d6e2e39a05\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3376c5cf1940344a79c7336ea762128af1af6820\nthird_party/boringssl/src/fuzz/dtls_client_corpus/33ac6ec7a60cd1b45a28fa08aea2f117039d24fa\nthird_party/boringssl/src/fuzz/dtls_client_corpus/35da948f91c986c88cefe7f7f9fedcd38421b653\nthird_party/boringssl/src/fuzz/dtls_client_corpus/363399bdc9899cbc9fa286286d13b440cf5da9a5\nthird_party/boringssl/src/fuzz/dtls_client_corpus/366ed4a770b0966e2c7c5a439e4432d61e12264d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/36a03970bcea32e964f08a11573abe470e083cfc\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3723e23dc413d4aeb735e94396b666a60feded1d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/37434ded0b5b1cd5ddae96af353331e2a9ee2fc1\nthird_party/boringssl/src/fuzz/dtls_client_corpus/387f8ee8edbc40836e71590cbd0b5c119b876184\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3908fa8d5b93c5baad5d48cf855b546fb16b3e89\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3a916a58304465a0d915365e7289eef60320ee6a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3af7c78d33a9447dd82481a092408f81380a262b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3d33df613bdefa90bd99f71635f25d7d1bea0f8f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3e3fc2b516a97adc49d558bea7e99feb29168e74\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3f5ba29f1d0a9e39f83224848b7770b5ea05c38a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3fa0f1925fa1fb8a72c2813d20bb6aad716949d2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/3fdf6f325607e0d54b8702224deff33b57f8f267\nthird_party/boringssl/src/fuzz/dtls_client_corpus/402ad94308701ed3a38bc5c239849ea87655a07e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4133ff41880f14a1dbda603391281f324443cf4e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/413e9bfecceddf63e304006240e89bddf3f6fd1d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/41d879d1704ed32ecd44200b70f4d65233a4a771\nthird_party/boringssl/src/fuzz/dtls_client_corpus/441d830df3826e86cd1a75b6f4b83e17fe8a388c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/441df3d2904892dae21aae7be22f782c6d52f789\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4445400c0d9142bad2288079067ac7622272e9a3\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4470c858f6a0121e22fc5112ee2e1ea01e15a69f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4527c27a4e5eb4f767a14258d335a8b98c375da1\nthird_party/boringssl/src/fuzz/dtls_client_corpus/45c19daeae7317c8d91cd57399aabf39df735390\nthird_party/boringssl/src/fuzz/dtls_client_corpus/484771aede66525454d20010042c06b793b89301\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4868aaf8ea86ed3de57eb2a54eddb8a6d77ea60b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/49d3ed1ea4fc16fc66bfae610afaeb9e8d3704a9\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4c5a181248ab0a6dcf19f3e7ee04227ba28fbcbe\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4c9445ac3cbdb53b68c01bb0a0fdc2d2a348798d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4cdd85fb5bee52b4ca8ee4e8fc60515a03a7735b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4d0121d03fd0681373ae2e3c7b8c64df847f8c61\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4fa6fd26dc5c8e63658d9d01b1ebcb53fb49e9a2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4fceb3c47f7fe10bec69e3301949058bfeb0021d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/4fe93f7ad715a63f786c485ab1fe83533102ec15\nthird_party/boringssl/src/fuzz/dtls_client_corpus/522dc10bcac57ae649b8101d076c33e0559c6060\nthird_party/boringssl/src/fuzz/dtls_client_corpus/54e9e3c7feb59090afef2addf59bdf2fad99d6ba\nthird_party/boringssl/src/fuzz/dtls_client_corpus/551c2dc5339dcfaebb3218746a741343c42b4213\nthird_party/boringssl/src/fuzz/dtls_client_corpus/560246995c1266c9f6a58e8c53d24de1296ffb08\nthird_party/boringssl/src/fuzz/dtls_client_corpus/580a2a56b5cd4013c08e1486550d4b16433c6ead\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5876ef9b2726b1336e2be83b4a368ef657d22480\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5adc20572d03b887fb6d7426e222b6eaf72d1330\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5c077526f600f0a0116367ba443c8b01bac3969b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5c69210714bc0f3e553a7a10a789f40a6d1ccf4c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5dae0700e336c6b3c4d9dfc2af7f2716a484862e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5ddbc31979a4d501710dc4749ba4e73ec8f12be2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5e40aa8bce2d0acf10e033b317e9bf0b65bb3764\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5ed17bc8bcc8139bb9d71d4169e1548ddafe05d2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5fb11b4df37e2e7f0c2eba0293e8ed8816241ca4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/5fdbb56362f53ed3210edf252ad85263736f7ab4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6120b6c5eea7e5dd9e867812fc5b40f5dfd94172\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6172e1cf38befd7527956767820110f9d02b7a49\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6197709ac426aa7b13657b9c1ea55859d1a6cdc4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/625b4de8fbf52101edf11781c41682d5c0ecbcb2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/626ca01e4a61fea7f7fc456779391b6335e6c422\nthird_party/boringssl/src/fuzz/dtls_client_corpus/628e600b81ae7c48cfd3fbddc1012ad8936060c9\nthird_party/boringssl/src/fuzz/dtls_client_corpus/62aeb161041dee52395e7e364d5ea6ba4c1cacee\nthird_party/boringssl/src/fuzz/dtls_client_corpus/634092529241f492347bccf5aae48319bd95ea6e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/639758c54be9c435d966c585adb5a3a18e60f5e9\nthird_party/boringssl/src/fuzz/dtls_client_corpus/63a65e5ccc3779e5938c4ec27048063f1c709ddf\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6425c267ebef530085b0c5591978e761956b4136\nthird_party/boringssl/src/fuzz/dtls_client_corpus/643f7bb1dbc44f98a93198e8f5916e5c54876659\nthird_party/boringssl/src/fuzz/dtls_client_corpus/64916ff0215e9bc4ad0247ef1365d82d87461e59\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6554ae9bc3df20ff30bbc8328703805c08baa158\nthird_party/boringssl/src/fuzz/dtls_client_corpus/661bad319f2fe1328742b4032d3e0667b452d848\nthird_party/boringssl/src/fuzz/dtls_client_corpus/673d0f8863600fb923184f36b63c4a9f6a277a53\nthird_party/boringssl/src/fuzz/dtls_client_corpus/696878f56f7a6fe20c95bbf5248dbb7079600b0f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/69f717ef05e0751b25908ac15f03160f792d7404\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6a97bfc9a6785a72411fcc7d4c3a11986550cccd\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6ab3bf26ed1ca437bb12e24b298a2b0d1e80df0a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6b1da4d0c31e4b7153526030dccb8b94582f6164\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6b289e162f3fc1bc897286a443f363854d0c71e7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6c0ec5dde3ce34b4ec4a43c6b2e9927e1ff2631c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6d74558ee03e3d1920fc7df29b144eeee9c8ac8c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6e0adb74a63f675d50162775ff6223c82e29a897\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6ef07ea181133e5181f7bec17f575df70391d399\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6f30491c17e6636ae051bc44b5d85415bfb4c9ff\nthird_party/boringssl/src/fuzz/dtls_client_corpus/6f30b0ef2f2e51b01b3868ebc6d39a01f7cbcc65\nthird_party/boringssl/src/fuzz/dtls_client_corpus/708aef210c5e5ecfa9dfdadfa7396cce4bfdb716\nthird_party/boringssl/src/fuzz/dtls_client_corpus/7171d10347e910ed066d3cc857d4cb2649609178\nthird_party/boringssl/src/fuzz/dtls_client_corpus/720019e2ab1f13fecf84d86d06138288f9930e78\nthird_party/boringssl/src/fuzz/dtls_client_corpus/726d716220ad95706d5f4eb587a27af3496854cc\nthird_party/boringssl/src/fuzz/dtls_client_corpus/7328a56646d0c55f69868226bba35faf7a88d17e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/733bd91414992c60794e88df7014ec4317816a34\nthird_party/boringssl/src/fuzz/dtls_client_corpus/734d1b9e93d03ee45fe01c59f275ca959fa089e1\nthird_party/boringssl/src/fuzz/dtls_client_corpus/73723278141b86f8e154de840202c9dabc5ee04b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/73993f70f9de92b8680c7dbe9c7f3ac8493ca789\nthird_party/boringssl/src/fuzz/dtls_client_corpus/73b41678b572f8e5f9247bbb3f2a15cf0145b0b6\nthird_party/boringssl/src/fuzz/dtls_client_corpus/743aa2322c72a9876ec2857ab7173f335ff31341\nthird_party/boringssl/src/fuzz/dtls_client_corpus/74bb6df8293bb681e9b1b0fb3213e1c743c2380f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/756e9a71dd7d1bea413b80dd1d98e0b268f815ef\nthird_party/boringssl/src/fuzz/dtls_client_corpus/75c157a2fec96af7a30014a0025ba5ed3bb4a2ee\nthird_party/boringssl/src/fuzz/dtls_client_corpus/7696000cb9f9f162295367c882966bb72bb636c1\nthird_party/boringssl/src/fuzz/dtls_client_corpus/76aa2db8766473839b501d804da20838b6e52c46\nthird_party/boringssl/src/fuzz/dtls_client_corpus/78a63a29db708ac9939b88f8585f4ec8a92a2f41\nthird_party/boringssl/src/fuzz/dtls_client_corpus/78d66c874da7f61747993f4b90cc2e157254b40b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/799b953ea197813ba022008721c7146ed8de5cc4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/79f9bb00d0a7ec55093147aa1935af500a9ff0d2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/7ebcb3b4bfa414b1922a0d62765e4a2d64aa3ced\nthird_party/boringssl/src/fuzz/dtls_client_corpus/7fd4a2edff6826eecbb8e274de183c1b78605b56\nthird_party/boringssl/src/fuzz/dtls_client_corpus/806e37e1b404d2cf2034addb943329a05a7d0a0e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/815a5b1976ab2cac3d90ddeed53abf55dd9d4414\nthird_party/boringssl/src/fuzz/dtls_client_corpus/81751a73bdfc4423b79e5cb76211fd573ba23edb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/82e5af2fb0bd8e3ffb958548f63b2d2699c4f662\nthird_party/boringssl/src/fuzz/dtls_client_corpus/84d5c450b4b953e2176ad00b4300e57d1c21a46c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/866a3eaca4d16effeefb354ae77905e87c6c43d9\nthird_party/boringssl/src/fuzz/dtls_client_corpus/86bb3b2a64b5e5a039f7ab3d60bc5713bdb00c75\nthird_party/boringssl/src/fuzz/dtls_client_corpus/86ca4581fb07713a95e99f37354721059805ad55\nthird_party/boringssl/src/fuzz/dtls_client_corpus/8713f75eb9831ba67d3d1953cf45a77988ade56b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/879222be5375766b28474624e2317876d4fe808c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/880c5478fc7c5bf7909035f4e808b634df4587de\nthird_party/boringssl/src/fuzz/dtls_client_corpus/882486b43e31b3cc88aad996d4fe5ecf04bb9eff\nthird_party/boringssl/src/fuzz/dtls_client_corpus/8875287e1fe8d940445b01c12a60094152e890ff\nthird_party/boringssl/src/fuzz/dtls_client_corpus/89498ded1215ec0cc38b0d9f6d15840049aefeb5\nthird_party/boringssl/src/fuzz/dtls_client_corpus/8c0ba4119b643b37d6ce7de2e5aeb1a30e594a1a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/8edc09ec772d8e3acf96504f11681344aa96c4fd\nthird_party/boringssl/src/fuzz/dtls_client_corpus/8f88d21772bc43335cc21cee87392bb880d70f18\nthird_party/boringssl/src/fuzz/dtls_client_corpus/90e9b8ceea14c168cbc8f158d4f5d869acb093ce\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9167fd14cc195e78a7d288b96b00cbaef013dcf3\nthird_party/boringssl/src/fuzz/dtls_client_corpus/91bba88b342d01b90c2e00f4cc518d727d57798a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/924b80b736ca1351f014dfe70086c3632a9cae05\nthird_party/boringssl/src/fuzz/dtls_client_corpus/927b3dfc765ecf948c603f1ae290ff571263d958\nthird_party/boringssl/src/fuzz/dtls_client_corpus/93c707de2c4a7544b643007806f63cc62bf20697\nthird_party/boringssl/src/fuzz/dtls_client_corpus/94358de7aeccf8754e2e66cc72e213ac12a6b045\nthird_party/boringssl/src/fuzz/dtls_client_corpus/954e182849c0f4ae5252b3dfd2236a251774acb4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/964c6e1cbc4ee5b5d0e41ba08b5d07302efdec85\nthird_party/boringssl/src/fuzz/dtls_client_corpus/985492ff34b101f2e408b4305fec02cc1ea7c0ed\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9962c076e6e63b87828351456a4077e8cd6ea0ff\nthird_party/boringssl/src/fuzz/dtls_client_corpus/99e800b65fec78a05213be63c2b496c9195429a1\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9a289b28b0d33309ae370c996d7f1b5f7ed409ba\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9b27e2761965a0a9363f999dcb82ce12fafc84ac\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9b4c05fbd487dfd415f9d78deaf7222df5cc3c7b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9c2cd9bf3505671f0ce173fe835b7b7c5679c433\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9f1c3ffddfbb913fb3cf16b519a0fe68af28074a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9f1fd3644c1f0566d3ef55ea435ea97e5422d3ab\nthird_party/boringssl/src/fuzz/dtls_client_corpus/9f96f0bb2062ea530fcf8144d963c02b211a5790\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a02143e3751225e8633fa8d10d5b71baff2dfe32\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a03955cce2bf230ac089ce5df2b96fb8a83b62d0\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a18272baa61c5c904c5ba241ebcce736c8acaade\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a42d64535920ecb5873c86fe13c2b71b6523408d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a526f93c153350013af4279af6c7213022f2a906\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a6a762790cf6d347a07baa602fba7548bbe49694\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a6b230d953b2d6ddd1cfe881a62c69f5995b366d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/a90c6760c986bb97bed222b1aea997bd90066ac5\nthird_party/boringssl/src/fuzz/dtls_client_corpus/abc220fb76be92d122688b13c9eb7f3332d6f331\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ad70020137ab9f826ff903243ae3bb388bff1b97\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ad86ec911cf4a53a0020f36319ba2fa9bc38ac12\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ade9a4bc53bdb65d3bf9f2f00ee41f6811672c8e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ae52804892f0b630508c1f8b8950b411c1373110\nthird_party/boringssl/src/fuzz/dtls_client_corpus/aeef0b4c5015c1eb5eba64c717c530419e9b5dcc\nthird_party/boringssl/src/fuzz/dtls_client_corpus/af0a95c7b91735f1152e9746d0289413d84ee135\nthird_party/boringssl/src/fuzz/dtls_client_corpus/af96df715d65dc4b9165119c7b838a0f7f0c6beb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b00a5fcb7d799ee039d50d6ed0e7761ddd829bab\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b04ee0d5c1ae7fa5043d3edf334403346422edf5\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b0e0aabfe0da150524a1c19ed0307849b3f5b07d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b1b15d9734346cf0c0dd4b199b7f2b1e9990dbbc\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b1c4d1babe5a49123dfac762bbed954ca76e87ab\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b29e2054e14dc0fe51974cd199c7053eb7dd384f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b3036d506f001bd2ca9b123e4fd5a9b0cb94f973\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b3962ca9c82812733027a79be8db8f4c3de076bf\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b3c3b9e27e6dcc78747b8e79e9d44188e0149bfd\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b3f43aba8b0cf6ee60ab103857816765e35d8133\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b43582495cde4e53d44316b3a85a07fd1e5a496e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b4699b93a7da2dfc771c7edff30c04b9dd3ce3ef\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b47b516fd56c7422c98954ae0efcb5379a68acf0\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b4c7ba00524072be98f0ae5a7cc20d0c9720b3b8\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b5fa2472eb3d5253c54f45da21ec7b492b1ab826\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b6d488077103bc18eed785811a64e756cc68c38a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b7e359d911ce34196818fbbb5bf65067cf8ac67c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b8d77f102b5d2725dc37b74591bde4f2990e46ba\nthird_party/boringssl/src/fuzz/dtls_client_corpus/b8f1e960b6e9a7fed2b6fab9f5b971046203a5b0\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ba3f40f6bf53fd26e3450ba091a755fae59468c6\nthird_party/boringssl/src/fuzz/dtls_client_corpus/bab329d413e2c0b0dc67023c9337edc75e90f673\nthird_party/boringssl/src/fuzz/dtls_client_corpus/bb303cd769107c128e570d711260058f807a34fb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/bd9a28c9a13ff988b1d1c04427992fcfb6562edd\nthird_party/boringssl/src/fuzz/dtls_client_corpus/be3b2a7350f7d4187f2ca2dcbd329536f367d303\nthird_party/boringssl/src/fuzz/dtls_client_corpus/be48573e3cbbd1e55a3248629d786b162bb95f9a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/bf5b0c3dc062b2c349119a1ac419d2a960314944\nthird_party/boringssl/src/fuzz/dtls_client_corpus/c2e9f09dcf2af4c86edfc1d112a8af822ccc452a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/c333fa3ef0971cabe468284eb5a8110f63b7aae2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/c5c8a23672e7134c4a6a3811ff028d6b1fac87fa\nthird_party/boringssl/src/fuzz/dtls_client_corpus/c60bc1cb348cfe104b05ee0837c2ca547a5ef1c0\nthird_party/boringssl/src/fuzz/dtls_client_corpus/c7b5933d974d99141b3095d499af57ea1cf1e2ab\nthird_party/boringssl/src/fuzz/dtls_client_corpus/c97e4b695be2cfd280d6ae25742b44c932e3f0eb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/cac11f0cb32dab3865070fb0f9bb1d30e6c7ecd2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/cba9336fccc082d71bd63a97b3281bccc0f4756c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/cc68fc86bd19ab73b81f76a2c4ea5765ebdc7c52\nthird_party/boringssl/src/fuzz/dtls_client_corpus/cf8c85d24cbc0181cc1f0c2f0b95c039408833a4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d07f0b1190a56102730b48436bd4348668af22cd\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d0895c5473a1f5fcf373f0280ef1352527b0c34d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d1c1fc74557bcc33ba5a979c2382df296698690f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d1f37f7ce719ff03bfe60447dc4aa3058cb9639a\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d3564eebfda121b8d37623bfb0b256d621c7d6d9\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d3891dd27bf4e244dc3499795db87f99cddb79b4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d4094bdba115f3421843f8a2dd8a1c573b1f27b6\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d4e360441e133b11108d537e0c6071a3091876dc\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d6524cd28d9f8294199950c4a3216c3d280ad2d7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d683d1367d037118cf5c62bc14889743432b957c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d6a905805ac6519a4010ec4fcaa86c7c58626448\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d6b3b7d7f8c96f72ef4ac861d463d49e03db5008\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d721653345ceb8f8f8b41388a3c8c3a23eec18c7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d778a030032459286ee81547ab9aca1546d864b7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d83cffa27e732856c2d50e096ad19f3194abf898\nthird_party/boringssl/src/fuzz/dtls_client_corpus/d87115abd0bdb5f1683e1cf0d9d941d13facb54f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/db6a572bb1623ce93ae855ab9b4d37a9ab8226a8\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dbbc66a7bfd35108d439fac636a755f66045dde7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dbc242ea500bec2e8e7a328ed34e60fdbee60ceb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dc3f70aeabbef9d00901443f39e544d0b86a914b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dcd1cacb1f553c43442002a85ec79076d458336c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dd004aece27dfe85fe484b33006c31bbe07f2ed4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dd2b38988491c594e2fddbed84fb5054418dfe7d\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dd303e61296120c83505fc822d731bbb555f9520\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ddfb60b4a3925c82ff006354ebafa90b043a90f0\nthird_party/boringssl/src/fuzz/dtls_client_corpus/dece99520d7112ecc8fad00273af5aac74364d8e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e0fe7970c8e7c966c7f83013b6120cbe8d4a927b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e1fa2e434d15ed96bcaee3bcec950e658ff3cfe7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e3008d20ea3c034bd4582c8e2f11fd36450e2548\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e3fafe3c9e1be8fb12115494ad963b87f84cdb69\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e4cd38b05f81aa466a1e1ccd7c0c8cd7e8fae4d2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e4f4e5a496566e45cdc9bbdd42b28649f0fe2306\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e55008422b0ad1341ee485b31e19c422e8de137e\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e57a70dc8a09ed6863441096f3ed53fd517f9d9c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e61ce0dea06320041bd5a81729c06b5fc8f1410b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e6b9e1c5e86dc6de8bb336a4e8771a0f43debb75\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e6c058c075b88de7f1c85939c1580bdd826a2d25\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e6f6aee93b6647054370c31653a9c80c1d1dcbd2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e6fe0a7b6e78ddbbe8d3129b05f98a1985216d7f\nthird_party/boringssl/src/fuzz/dtls_client_corpus/e8ec4c5ece41e3ee58ba64658fd8af841e302079\nthird_party/boringssl/src/fuzz/dtls_client_corpus/eb309c64a2ddbfbbab0bb110e2704a8eb8a16d00\nthird_party/boringssl/src/fuzz/dtls_client_corpus/eb6d3b88e51f6edfc275ef29813ed6640a67f632\nthird_party/boringssl/src/fuzz/dtls_client_corpus/eb6e82dd8a10e9af5bfa934a1eccac6c54d2a4f7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ebecc26fe64581352019e89dbb1e360471f6f822\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ec8127f277a0dee80f418ec5587c2e31bd5e3919\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ef0c43ed259278c01dbd064e9765d19bc3b71fc4\nthird_party/boringssl/src/fuzz/dtls_client_corpus/ef54025e14d581ab506aa273134c01313962d332\nthird_party/boringssl/src/fuzz/dtls_client_corpus/efbfbcebdf54db1a8dc5a0f54fbb1a3178a17116\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f21e378d5ff5f3e76357d74ee697417606087279\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f23fe75aafd98c945acd44f70dc3c90f7f2150fd\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f4ebae33ef1956e524d6e6a9c89ba661d6e5a061\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f4f6da6d7f4ba0db5e062240c338a42401f12a68\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f55c18e340ef06cf0d96af903a2e255128a27733\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f5998d6c71a7be9cb95165c29f4ac9105351f72b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f6f51e4190a3dc6b29f8f583870dabde96c43a2c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f72be697af1aa821fc0359d683a7224345e13dc6\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f88cbc7f6fd63a19d6498cd0dd63cacac08e0d6c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f8b8ecbf79e25fed7635b8a1c8e5dc34006bd43c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f8e6543a05471c20a3d45f341fe51b298155177b\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f96eee484c7c1518bf5238d359170ad57182ecd2\nthird_party/boringssl/src/fuzz/dtls_client_corpus/f9ba5f3fa08480f39d56759cc44a5398bd0e34e7\nthird_party/boringssl/src/fuzz/dtls_client_corpus/fb86e599216a928833b46cdfb223152b6fbe86fb\nthird_party/boringssl/src/fuzz/dtls_client_corpus/fc6ada9f12a2fd269297bb86c66ee9ae7503b5d3\nthird_party/boringssl/src/fuzz/dtls_client_corpus/fd0a3d20332eda22ceb60df929340585f8b4af46\nthird_party/boringssl/src/fuzz/dtls_client_corpus/fdc71ca17ad0ca04cbe369b32baf7175cab9c27c\nthird_party/boringssl/src/fuzz/dtls_client_corpus/fe50f103f62869e546326af5b6aa1c16f1299640\nthird_party/boringssl/src/fuzz/dtls_client_corpus/fea70aaf93b1a261d9be5613b3237860e26ec9e1\nthird_party/boringssl/src/fuzz/dtls_client_corpus/fece2fa2c5d21fcd5a39a776c2732186ca2f4313\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0054fce440402e2f0067a305a3734afb0171fb8c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/008916cded453a950ba4eb58899b0e62a56d0f65\nthird_party/boringssl/src/fuzz/dtls_server_corpus/01b6a52869f1d9412d80068e74506a2118648941\nthird_party/boringssl/src/fuzz/dtls_server_corpus/02ad66d36ad3ada67987e13b9f6a1b870fd5564e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/030a07bb6b2c5cab924442e1f2fbbaff88a6b856\nthird_party/boringssl/src/fuzz/dtls_server_corpus/031d6287d94b4f1730451eebfa17e4c1972d55f9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/04c1d3950b5628fec670a703fa01489a1f2ffb84\nthird_party/boringssl/src/fuzz/dtls_server_corpus/05003894a05c280e08516b4d204abfea5181a302\nthird_party/boringssl/src/fuzz/dtls_server_corpus/05ac06e69980d54ea593fab78f58dfd37a46c2a3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/065303f217db55f290195b427fe559a7e0982138\nthird_party/boringssl/src/fuzz/dtls_server_corpus/07ffa901be7296d538f8ab05c305eb494aaba6cc\nthird_party/boringssl/src/fuzz/dtls_server_corpus/09fc14b96cad9e32c38c2f709fb06da97327c111\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0ae90b427382f5b78da273b666138d5f844e9ab8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0b5231d17fc9f87a5b9fe3ace7149ef6c50c1b57\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0b9d620ac660471b43beced291319377e901b026\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0bee02bc7026e6b035199a6490e1b7f6c7f02525\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0e1ad8ff2eae0ab91e97a7583aa9c28ee78cb1c8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0e5bcdc4f4e6a01f9d5df2f0cb70bc390e43810a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/0f3d6706c7ca5f6f23866abd9e376da62e7343a2\nthird_party/boringssl/src/fuzz/dtls_server_corpus/10157581c296b656df3ae7df1915b5b0ec6e68dd\nthird_party/boringssl/src/fuzz/dtls_server_corpus/11ded1bc5355aa02ea3ce0880d13fe88a4afea6f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/11f8ebb03ca90572e1100f192a6a6b5ab75ebacc\nthird_party/boringssl/src/fuzz/dtls_server_corpus/12112f91da570fe312267ede7a3a19363f8758e5\nthird_party/boringssl/src/fuzz/dtls_server_corpus/1271659c755766883a8287e85077aa6a003ee00d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/13c3d37e9e492531537bf340894176cfbc431879\nthird_party/boringssl/src/fuzz/dtls_server_corpus/14e234c1ea0ff56c3204bb0cc2cfa2bbb3c45bfe\nthird_party/boringssl/src/fuzz/dtls_server_corpus/18bc855f190448841b8b2aa6856e68cefe60eba2\nthird_party/boringssl/src/fuzz/dtls_server_corpus/1a00451bc9c454ce4394fb50b2b3f5623a82fa42\nthird_party/boringssl/src/fuzz/dtls_server_corpus/1b7740543f282bb0fe17eb93b7fcef4288f85bc0\nthird_party/boringssl/src/fuzz/dtls_server_corpus/1c195d2d8ed41e235bfa543e1c199ad2f6d63197\nthird_party/boringssl/src/fuzz/dtls_server_corpus/1c51b2d525d6a6f2fc4e76ab2b96869610735064\nthird_party/boringssl/src/fuzz/dtls_server_corpus/1d5036ea50e3e6d97b1c7ed62d8a7af7b651bf4b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/1e0c6b28a070046904db2f5ffee717694a1c2eb5\nthird_party/boringssl/src/fuzz/dtls_server_corpus/22e419fa266d3f4586122d8b28fd5fa81a0f538f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/230d05a45466e36252c6c2bf27720b908669ca82\nthird_party/boringssl/src/fuzz/dtls_server_corpus/24219ceb8283118dc0f7c70463c0b7a1db136d1c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/26eae355b585e0a43e90cc4dd0694d1671e7fbec\nthird_party/boringssl/src/fuzz/dtls_server_corpus/28ef1f1a199019e05f672935a2595904d08188b7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/296d678b2d972651f64ff9b8900377cd7c88af9a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/29abf4455ddf0d8c2134be802e02538d7d61222f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2ae1c10c3e5be95c4bb4c55f680f0e9bc70ccba4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2b65c81933ac0a88fb35956334f86c9d5cce38f3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2d1082bd0c42e38132a435064cc739d430a0fbb9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2e29e834a49fbe6b696d3c0e23d792491bf0895a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2e74842ad17f63bca5ca89fa3378b19637467045\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2eb49392be464058d80e4badfa20d84d06d69800\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2ee4786fc35ea6820e4fc9c7c9ab21680bdb7fe0\nthird_party/boringssl/src/fuzz/dtls_server_corpus/2fbaa104e8aee77d9433aef24df0fd8736a8602d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/340c2d6082824b38bb15ff4d6272d53dac45a0d9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/34a29ab07891278c3382e66cfa9cc3b5b655ba6e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/367c8c73e88c4519ebadd8b666b1de6b72c93459\nthird_party/boringssl/src/fuzz/dtls_server_corpus/36aeeb86c51166cfe337f05f4b3aa14a4062434f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/38540bd4fea15a81d37d7cd18c305072f4ae25cc\nthird_party/boringssl/src/fuzz/dtls_server_corpus/394cc7d8dea4a6683b6e65c07efa05ef77c38417\nthird_party/boringssl/src/fuzz/dtls_server_corpus/395409f74681ef2ae2a6ac76e15696e8a67d4425\nthird_party/boringssl/src/fuzz/dtls_server_corpus/3962a1b9a37cb59617991781ebbe92ddc0d79b22\nthird_party/boringssl/src/fuzz/dtls_server_corpus/3efc9c9ab550322ba1fc06b60e5077c0b7d83ae6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/3fa1997f91f472c0bb037d0072ca1a0a28f63fe4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/402621e50c6f7c2774094cb1bc9f1a8f28b214fd\nthird_party/boringssl/src/fuzz/dtls_server_corpus/404434e90ae5960edfd6fdfc7ae63b478a2e7788\nthird_party/boringssl/src/fuzz/dtls_server_corpus/40d7c5c4e89ef81179a3e50632f5b179ccdd0fb9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/40db58ea04b838f7d0d587a6926b49d0f193133d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/4240ef147006bc41cb04dfd71529645d92250aca\nthird_party/boringssl/src/fuzz/dtls_server_corpus/426b6791308c372fc4866694ac5b27b7a5901696\nthird_party/boringssl/src/fuzz/dtls_server_corpus/42c9d88358d353ffe0759248daba7810641f3ea9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/42dafaa6cb82e9917e6675c2d6b18419519993fe\nthird_party/boringssl/src/fuzz/dtls_server_corpus/434334bf305970ddf81d750c0cf4df1a9f1da15e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/43c2b6593249e8350e8f9311295df2d2b916416b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/44b5ac4222500230e99c420dc6f3a071ca36b9ea\nthird_party/boringssl/src/fuzz/dtls_server_corpus/45193f5a2794582d1f0f6350f06b04b949e75e71\nthird_party/boringssl/src/fuzz/dtls_server_corpus/452ccead46b0f9dff22c8c6c4cc3dbfd6b3a2a97\nthird_party/boringssl/src/fuzz/dtls_server_corpus/461aea82d3ad95188138eb534b49b09920bf01e9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/46201a375d8fe71db07a32073dcda27b38eddd57\nthird_party/boringssl/src/fuzz/dtls_server_corpus/4683a1a1353b2f7cb2c8c860724dcfd4ee44353d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/47cfa005c9377a360a72bd19af2b792f11f79ad8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/48329565f1b9f3cba1d01fcc5e5f7da797930429\nthird_party/boringssl/src/fuzz/dtls_server_corpus/493252eea431b0a92fa0df39baeaeef1388d9ed3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/4bd201a7b122e2293dec6970831fbb21a7ff1deb\nthird_party/boringssl/src/fuzz/dtls_server_corpus/515e847811f0f11a4593435e8f8c283c941e9030\nthird_party/boringssl/src/fuzz/dtls_server_corpus/517c8306ac9d724c6d39b03322619161816b15ed\nthird_party/boringssl/src/fuzz/dtls_server_corpus/5204d958fab7bc6c7f35a9459dd43dd2ee9c0b82\nthird_party/boringssl/src/fuzz/dtls_server_corpus/5210047131b7e7920a5adbd87aff07add5af6d17\nthird_party/boringssl/src/fuzz/dtls_server_corpus/52ac0f73c28879e0d5224b6441d82fb7a126e94c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/52d0b7ba9bb03aaec0ed74b6235f88a41e63af67\nthird_party/boringssl/src/fuzz/dtls_server_corpus/53d22313325013c0265327ee42e44bcffdfafc9b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/583e7e56f1c6d9dba2f9bf06d9e625cf1cc5fec4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/5d091e9da7e10337cc871e49b4669f414bf6ec8d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/62517c394ce01e3730dee9f60ae393d6cd262747\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6280e3143db5fcb3fcf42127ca63689992fdbfeb\nthird_party/boringssl/src/fuzz/dtls_server_corpus/62817eb73d3fcd3ca81008a123517e7c455b5116\nthird_party/boringssl/src/fuzz/dtls_server_corpus/62c10dc65e6f4b443b37ae1b91c10e1d9cb78ea2\nthird_party/boringssl/src/fuzz/dtls_server_corpus/632ec0d29c72f874aa92f915d674cd9b0e3bf50c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/63b242f29bdcd8c48f3dbcf5adcbc0d624a7fbba\nthird_party/boringssl/src/fuzz/dtls_server_corpus/652db1114d3581629061c4db6265ef77eba7b2c9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/65e6be10db4a7e6d5ade2c4d701c57de689a301a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/65ee04cf5a660a0e0559221af9cff29b481a7aaa\nthird_party/boringssl/src/fuzz/dtls_server_corpus/67543416d15e7f335700c0d00480365c31e0d072\nthird_party/boringssl/src/fuzz/dtls_server_corpus/684c44a1c50cb8cea94089907a359953ef9ee8b7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/694dd523dac7f05eb92d4a73dd7747b02ab04754\nthird_party/boringssl/src/fuzz/dtls_server_corpus/69b4a5ab39c7985ad1fefa934581e4e3df29857a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6bc84da16d57458e69b2b0bd7041141e9416173e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6bee34e093c449d085d922eb965fe5226d960937\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6c1f4748c7ffdc07b8989b50d1119be2bcfb5b4a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6c7554dddb5c1d99006fd392bcb60a2170f3e25c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6d26870ebdceef0f4a0b374613a91c21efe3900c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6d3091f2a9875cfddd127ed6b308c3c52b194295\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6d9ab3f08bfb7af1fb7ebe11c5e4f5185aa301c7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6da93542141db918f8a891ca3381681ad48f67f4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/6e303ef2848592afbc8972a07f98b0b9559f5f94\nthird_party/boringssl/src/fuzz/dtls_server_corpus/70240d6bcb8bc9702e57af897d6a6b385a1d37a7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/705234e7cc185c1d577a069ab89f7b76434c833a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/70bf2e3a024d7049da3f48a513a374231583e424\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7323c43aa09512aa29148fb16f94bd9a5d8c9ee3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/739bcb7b767570a15f9751cb60516bb00bd07202\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7457ee5f29ffab12bce0f112fe876a3b8cc9eea5\nthird_party/boringssl/src/fuzz/dtls_server_corpus/762052441d3f40954b3db60add8d602000fd24f3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/76d62bd41aa0b5add0d618c4cbac096a8c14342c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/76ea2099aa1c8833df277691ce8aec6f6bb8ce94\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7849cf0a39b044c30a3f7d5432d8605afe7be93a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/790057cc94bb0fb74f13b2223ee1638b431800f9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/797dda77ec0af91c21537e2802e5a180fb2b2df4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/798b4f764f0126c8d792b2e5108ac009c61a59a7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7a1d1bb6e1220894618e8a328d78b1061c4200a8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7b72fa4bf43dfd9da7c0bf028800a17487bee4c7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7b99ab4e3544fad298568aef08be2e688d35e3a6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7be8a3ab33bed53e551f2b685ba025445d3d81f0\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7c1da78699fec0f345165bfe9e984a8db3e4bdc5\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7c7811d979d349657a15deba2d06ce54791a0038\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7cf309e4712559d39deaae9036c55786946e4a6b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7d0994b25597ad64d7305835d2728e0634f92476\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7dcb68f00240b0109af2a09362bef6a064941f04\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7eb64f3676c051319d3933b770fd4ffbb6247eb7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7f5504997c90e8cbac8d365a5ccd1567f2127baf\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7f882c93b1b259c48c55b1d0b6bcd288e75c84a6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/7fc025eb63568a18256057a7a43e43093d004730\nthird_party/boringssl/src/fuzz/dtls_server_corpus/81172d029ca2ca4897185050854711049e2c35be\nthird_party/boringssl/src/fuzz/dtls_server_corpus/81afcd412e40dd3f91bde35ff18081c2e46f8265\nthird_party/boringssl/src/fuzz/dtls_server_corpus/828d78d0ddbc4f3692e2c515fd57e308e4d01e89\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8291a8b5e99562067229514187884e663e1e3b88\nthird_party/boringssl/src/fuzz/dtls_server_corpus/85bdd0276d33adb0a0dd33fcd65249fd5d3b9b95\nthird_party/boringssl/src/fuzz/dtls_server_corpus/865df7db12edde5c7025c64a785afe9dce63fc48\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8691d050327923a996835108157843ac8199f79b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/87ff93e800e3956bfaee7276683c14f718058553\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8890477cfa105d0b10951f4b43709cc280c03a2d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/88b155676d384245d07034d8975a7761e50ff726\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8926022774e0a5b025021273fcee1b3f244d1f1d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8a65c9aba6d05664d7c95a68794a46151bcf8b4b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8b049e2e07d5e5da2042a466561f3eb4f790f47f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8b4a84b78ec7b407accce5896c0e4d5a187ce0ed\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8c41b4c59bb26a3f70834faff1c7b6cac0a39f28\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8ea94fa89d7100c68dca6323289357f5c57fdf5f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8f1392e9baf4a7f354da3ba2705ba420241d9fd9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/8fd650c2e910afb29d22560526cfafb663915bcc\nthird_party/boringssl/src/fuzz/dtls_server_corpus/90237833748f124b562a8a464e8f058236c4434e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/90311d335d972398836e12b4fb7d118c97f2db96\nthird_party/boringssl/src/fuzz/dtls_server_corpus/90776700965014bd67bcd1cee51bd33ab32ac0e7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9226774c9b34679b36df540a5be4a2140786957c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/92dca9c96ef4b2fc90519f2e7f276bc218e3e788\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9501e58753addbdf6bf10989f548a5794b63bca9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9580b54f2559dc736b9415c5aa61892ce5ad6c25\nthird_party/boringssl/src/fuzz/dtls_server_corpus/97dee2921638bde76a4765be77032404a6391436\nthird_party/boringssl/src/fuzz/dtls_server_corpus/988d5f0eaf44a1cf974fc660cd07a85e0bedaf92\nthird_party/boringssl/src/fuzz/dtls_server_corpus/996a9ce6892751c2cf514e4ef6e970479d50e8b9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9975f2d09713dd04c1aa48d30600898c6b9b9c7c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/99baecf1add1ed668880dcb37f7914518c8f9c04\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9a249a4191d36893c645c776b3d85d11ec6e43b8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9a4bd4301d63e4e0e69431e954a3291380467716\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9a64574c75f98921fef9466fd31474afde298c5b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9a78eefdd644d251c8abd4a091438c4c8f9279b4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9aeb57cca795217a65520a9ee9677b857ef761de\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9c5ef660f11f887ec1e12c602e2b558ee95d3f3d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9e2515c32d7538bac3668e47f8a75940b19f8847\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9ec1b1a7bce39a7aa7633b4225c2ff43a3cc2be1\nthird_party/boringssl/src/fuzz/dtls_server_corpus/9f140d158db604dd5bbb7057c80361536ce56af2\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a0854ae9455d5cdff8c6a3a3b54a7f1034c2b017\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a16162fed667cb6e3bf61df8aa38cef7da8d739f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a1fc98bda30c3698cb440c5d5c27609bd03c47b3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a2a32e550620f2ab42d8384c5b17fd784558e87a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a30338831fbb3558f9609653c7602b17517f8ab5\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a44c468a599211d043aaae73a9dd55a4fde864af\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a6c9521cde99272be17e2b9f72ee77a85f24fa5e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/a8b0038adb4e93c0ad414defe7e4520af5d09917\nthird_party/boringssl/src/fuzz/dtls_server_corpus/ab90f5453807efdd27ed4410be32289fc1c73383\nthird_party/boringssl/src/fuzz/dtls_server_corpus/ac6d4b13bfcd5c428da0b97bc43bf5d107c455fa\nthird_party/boringssl/src/fuzz/dtls_server_corpus/acface2b19bfd44777fc4972bcf63c48fd10b29a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/ada750f131912ceafe1fa434ed6f304cf21fb331\nthird_party/boringssl/src/fuzz/dtls_server_corpus/aede02c55d31db32186d6d4ba9f2d9e840d0c0f8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b05fcd7462597d846c684cafe694d663f1b73d4b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b2048942476dabac368de4ebcc72c09c929d34c6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b4d69853f3a3143be9670f44b4e147564d3c3528\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b5ba6774835aaddd76f9b546e2530c2b54237249\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b5d8bd48ba0ab9ea699d766a8d8d29ba2f55c3b3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b64cf8d33cbb8d0305c60b454343ff0e4159dc39\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b6d19df92f0ffb86a10fdbf8093e215dadb43ccc\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b7e518d9041f284f5a69c3fa943ee71ebb48dfd1\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b84c82413b101a88522653bbd16e03ca0de0d946\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b95f0c7cf09a9b064e464d819c36878e12bfe5af\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b99645a5401e409e30a573a0d4febb27d367736f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/b9c953c8eb5e35827a5bd5a5ae54dc2d470314f2\nthird_party/boringssl/src/fuzz/dtls_server_corpus/bbb700da571a9d5f31e3e4f30e7352d13394a3b1\nthird_party/boringssl/src/fuzz/dtls_server_corpus/bbef659dfbc48c2d895aed951e5d88b4cfcdc0c5\nthird_party/boringssl/src/fuzz/dtls_server_corpus/bd37d9deab416c2983a405f5b20e8d114b1de6ea\nthird_party/boringssl/src/fuzz/dtls_server_corpus/be84b42eb37c2ec846a83e086f1c272a47c71eeb\nthird_party/boringssl/src/fuzz/dtls_server_corpus/bf757072e4ced07842b7f48dcc20ccc2440cc21e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c0bb48139c4ac5387db3eb29641c297228b1266e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c20f11b9a147a8d00d2990cc6029d29ad421f110\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c3109373610b14e47396af64d3013ab8f97970bb\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c4cb8db9ba022cdf5b1194576eb2c7151ff2c773\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c5a4a04eefcd90d09440b54ab165b60a5e140555\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c6c5bec3e12e249d57c5a2f0a6bd3133f020001c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c806234ea5d56d309ecd5629a133a74c293b4301\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c85b5ebae9157c049be9c1f774eb36593c0fe318\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c8f7efcb2b35b73c32de7db5f3e5ac5561533b80\nthird_party/boringssl/src/fuzz/dtls_server_corpus/c9b31bcbfc7838a59c5daada9ed8cd689f0ba76c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/ca9326982892026b1eae8eabe0dd0e20c3466f22\nthird_party/boringssl/src/fuzz/dtls_server_corpus/cc65afbe4eeac303ad445a79fc85552027f2c4c6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/ce86bb5be4dada1d7077b151a419d8716d4f8af4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/cf0b0b0f31e2c571372d2facc6e804e6f1b1185c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/cf25227c38996d1330f55e17fdcefad821750b33\nthird_party/boringssl/src/fuzz/dtls_server_corpus/cf3698febcc5294382127a8ba1ae7d7f44712d44\nthird_party/boringssl/src/fuzz/dtls_server_corpus/cfc49e6b495f0e023c9b16d3ce14184ed79f5c19\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d0eb7f09dcd05fe3ff6bf5c1c30ed2f0b1181ed6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d135a0ed5a895ca7738e7baa5a6c8d22b51fa80f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d1f647a1d5a14fdb19cb1218180ef77f29aa991c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d1fc5cff1c2799ffcc7490144738332ea2f5ee3c\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d2c210a299a4143897158bf0b82197f8b2301821\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d39180ad3897cee28729b3e9e622aa1137a866a8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d5c52e9e1a33d990733e5b6e04f5ff8ae37a7e86\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d7d2123fbf6badca8d53a85bedd86eff7a8d2eb8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/d86fd0b8ab90e07cc04cb8cf15e29e07361cdf9d\nthird_party/boringssl/src/fuzz/dtls_server_corpus/da1aa65893cc06b2f79849fd181cd222378209cc\nthird_party/boringssl/src/fuzz/dtls_server_corpus/da9ab70c4be04b8fcc49cdb7827ac4adc8d979b4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/dac8df80ea8548268996e58f473c8bf02ea2c053\nthird_party/boringssl/src/fuzz/dtls_server_corpus/dafc22fd98c47478823fc9296b9d2de03f9fa3b3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/db8690518ce60fa92e28bdc97f69519ade9a237a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/dbc966891621ad2ab035ec7f2e83d97736827901\nthird_party/boringssl/src/fuzz/dtls_server_corpus/dd87d419aed498d5c1b6186996ff8447113baed6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/dda0d4672fdf8de5134511b13d9098c2ac388ec0\nthird_party/boringssl/src/fuzz/dtls_server_corpus/def3765cc82ec61af93cd50a5de8f6d9134cd3e4\nthird_party/boringssl/src/fuzz/dtls_server_corpus/df1b0047b81d4a256e33670ffeb888c7f84b5e1e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/df5a41dc4edc113ed5c23ef6c9ff46ea9d27e198\nthird_party/boringssl/src/fuzz/dtls_server_corpus/df7694683e3983f36340a381c9ed4ba288d2f510\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e013043155dacef54814aead504732431146e905\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e0e0ee673f0ee0b126e8bc3b2fd0b4c0a6737ed6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e2e21f93dbea779373f3f00d2deb17e2347c1ba7\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e3defbc805bf5cb16d044424adbc05c76788ec1e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e4b8827c6cff93a007fdad603d0a2f2d4b46def9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e4eba30c8235c6c3eeda757ee90c66e0af51755e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e4ee9f44f72c6891d0832c1c32a22e16a27b20a3\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e5b29006498eae42c1ef28e67b5da57a2ef15160\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e5c38c224ed1c7b2d77c6466a1d292a4f44f53da\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e6a48234db89b57ba7fb541a8fbecd4edb64b68a\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e6bed9bf3568b12ba3fb49cf84a844f448bc949b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e6c49c70820b93214b7bfab26caa0ed4a362caf6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e76685d946faf56e405c1a8ed5d388161ac77816\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e7f20beb38c842e821b53df5c1e3d9de42b46824\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e8391c002864076c99925df0db40e2ab2714c3f6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/e8c910c02404ae196457a5964ec8565e60a5f9d9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/eca6e13214faf730d7dbbc67728309ca1cf1f1ae\nthird_party/boringssl/src/fuzz/dtls_server_corpus/ed0aceb4d37b5a21b1d35de568699f592bb51139\nthird_party/boringssl/src/fuzz/dtls_server_corpus/ef39c285eedafe862cee60451c6431b3b386db35\nthird_party/boringssl/src/fuzz/dtls_server_corpus/efd480f520f0e105160d6022ddf91478b027d998\nthird_party/boringssl/src/fuzz/dtls_server_corpus/efd6c1e5b39386d76a9e697acadd61f3020ca0e5\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f025ee81a11e1421b271b5b17233d88d3b9847e9\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f19b0c089807eb2f25ce5b0913fb24a465d341d8\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f2253b8ced394f3cadd8fc475b5843cf5fa8efe6\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f36112d755c2a835d699da80f00e91782c545645\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f5021e18e809a5372a774c61b211311fe2191327\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f536734f4596a963331284d022d0c1860873afb1\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f5415246362a2a0f1ca90f6dfd5f48b90a6367db\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f5d004345957d50b25a6e8308236a8e1d4dd965b\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f605e05e962ea66ac86bc8b494aac4a9aad648df\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f78786eccd28b6e14ee5265e3bf071dd4917046e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f7f0dbe0a26488998282bdd169329f753bcb367f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/f8f2233679636c5f5ee55e4b2b9fc23c2946623e\nthird_party/boringssl/src/fuzz/dtls_server_corpus/faf146114721bbd2a88b57be48fe5896145fa4fe\nthird_party/boringssl/src/fuzz/dtls_server_corpus/fc7721782ac42a866540c7b42f7d5a9c216b3145\nthird_party/boringssl/src/fuzz/dtls_server_corpus/fd137a41f8e914b2d0b1e9e8d4ab285c13e19d6f\nthird_party/boringssl/src/fuzz/dtls_server_corpus/fea89f4caefb4f363f9756aa3e3b7d406b9c29f1\nthird_party/boringssl/src/fuzz/dtls_server_corpus/feeb97b07440ae300a89bf3076bcd503ad8506c0\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/bad_issuer_key_hash_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/bad_name_hash_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/bad_params\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/bad_serial_number_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/empty_hash\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/empty_hash_oid\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/empty_sequence\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/empty_serial_number\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/good\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/hash_as_integer\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/hash_oid_as_integer\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/md4_params\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/negative_serial\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/non_minimal_serial\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/not_sequence\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/null_params\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/overlong_serial\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/trailing_inner_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/unknown_hash_oid\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_cert_id_fuzzer_corpus/zero_serial\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/bad_produced_at_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/bad_responder_id_key_hash_length\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/bad_responder_id_key_hash_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/bad_responder_id_key_hash_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/bad_responses_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/bad_responses_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/empty_extensions\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/empty_responder_id_name\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/empty_responses\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/empty_version\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/null_responses_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/trailing_junk\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/trailing_outer_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/version_explicit_default\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/version_too_large\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/version_too_new\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/version_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/wrong_outer_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_data_fuzzer_corpus/wrong_responder_id_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/baisc_response_bad_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/baisc_response_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_certs\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_certs_inner_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_certs_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_certs_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg_bad_params\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg_bad_sha1_non_empty_params\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg_bad_sha1_params\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg_data_trailing_params\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg_empty_oid\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg_oid_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_alg_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_bad_sig_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_empty_certs\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_empty_sig\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_null_certs\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_trailing_inner_junk\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_trailing_junk\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/basic_response_trailing_outer_junk\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/response_bytes_bad_oid_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/response_bytes_bad_response_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/response_bytes_empty_oid\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/response_bytes_empty_response\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/response_bytes_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/response_status_type_out_of_range\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/response_status_type_too_large\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/trailing_inner_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/trailing_outer_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/try_later\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/unused\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/wrong_basic_response_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/wrong_outer_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/wrong_response_bytes\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/wrong_response_bytes_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_response_fuzzer_corpus/wrong_response_status_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_cert_status_context\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_cert_status_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_extensions\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_next_update\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_next_update_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_next_update_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_outer_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_date_offset\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_date_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_date_value\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_reason_integer\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_reason_primitive\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_reason_value_out_of_range\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_reason_value_too_large\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_reason_value_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_reason_value_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_reason_value_unused\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_revoked_info_trailing_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/bad_this_update_type\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/empty_extensions\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/empty_next_update\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/no_extensions\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/trailing_inner_data\nthird_party/boringssl/src/fuzz/ocsp_parse_ocsp_single_response_fuzzer_corpus/trailing_outer_data\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/empty_sequence\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/extra_contents_after_issuer_and_serial\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/invalid_contents\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/issuer_and_serial\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/issuer_only\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/key_identifier\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/key_identifier_and_issuer_and_serial\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/serial_only\nthird_party/boringssl/src/fuzz/parse_authority_key_identifier_fuzzer_corpus/url_issuer_and_serial\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/00f78d998009ee0e7603ff7f984232de2acdb783\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/01209ad2e72e59062a91d7a490f70d1d91d0f3e0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0136ad7252f92f49b2d6f1d54afd1962d0951420\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/02db935efbf95bdfdd1e7dc21ab9dfe6c2f66a91\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/02e6c2ab69c76706584a5b97c5a802d32c79abed\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/02fa267b8481d6c3acab2cca6c7655bfde917bb1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/02fbeb1e1951852226bba4f8cc1532ad05e7153d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/038b054f81d3fa67dfb84431cb5174bcb909c9b5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/03f096bbbd3696583bb6752d59d4cbf18544eb46\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/04094c570c1d42c28fcba1fcf3f1e80c6771208c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/041b6ab80ca9528283d16a5f14095241a94794fe\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/04356bf6e1d7bfc6ade3cde7fe73dab4bac4e00e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0444f2658cbaa0a17c4f0f019d6baa40e33462fd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/047411e37763049b1ca326c95232f06154b975f5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/04bf2fbc2c38e02dbc061bcaac55abc3385bf4f0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/051477a28bfda94997d4fa15bfd3ff79a153e63e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/053cc19202bcef4e8d3ba4094f4ab605360ab427\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/05673c8e6157cf6708cf8ac283c67c608010cf46\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0674e19d96cb3fa60aa7cf4936a9d0d99c38e876\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/077781f13f8a795ba7c0be126840ffa84fd16c91\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/07937fa880be2e48fd65c84a6b24af92c78da6d0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/07b27fe6258295f12fdca3583d57c116d8243a11\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0827129ba15ef34efbcf6b2eff407581cf0322c5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/084898ea1fc006ef9c49877290e99f7c0ff7c8bc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/08a6a412e4072daeebe5170e5bb013fdcc7eaebb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/093aee521ec7db5211e20b40341e7d538eb55bdd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0a2d9035ad8db4256e748488b9276b69fbd268dc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0aea2d0d151dcbde177e74c76e63481d471bd7ec\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0b89e8bc5309220a131c969e3e154c39dc043bf0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0b8cc654cb72abe122e4d0451b9c02bc302a3b04\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0bbfbacdffdf78370d32f28b0ab4423d381b6f17\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0bd1ed8f7d4194ad2c5fb2e365f3aa462afcd5e9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0c0631df2fa415f025cbe4747e644c3240859241\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0c53a0d9da02702188da6b05675ca33dce03cbb6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0c66f2030eb390b429bd2e95eeb1a83a95f17226\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0c7a1291981d57825aab6bff642b85317e6b6fda\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0cb4d3e7f0d74ac9f1d077271c80f39b074f4f95\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0cbe4feee555dc35cf8053a43e462e93ac5e315d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0de5dce8af19f363b4060de28171562def2bac9e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0df63368181db55cc92f5a10659859b99ec93451\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0e356ba505631fbf715758bed27d503f8b260e3a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0e92fc76fd6839481e8d80282e18af4fe614007d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0ea019bbe85dca9108484fb791d6a3a140e38347\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/0fec85d351da3a02885b60af02574956c20e6fac\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/10eb5ee6d9477fe345567b0552b9fe8e65c33d7b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/113c2e738b8ab39460fd2d760ee66c4590752159\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/116dddafd3a16dbd6818e7b87bca38eb5c511158\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1193fc637705abbf77d30a586970efdc643f258d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/11e62b8869458ee68d14bb1d0ae9900f818db005\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/12cd9a27d832d25d06a470d328a04d7bffa3835b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/12d78f4aa81c8c413c9ba80cc9a5caa42ff286ac\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/13a8cffe4c7d9351475d7e4aa4c7af4329f07e96\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/14361a39c426599924238c0b5824f470a805656a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/159cc124352f0c0ac1cef2399c5c25614e29c6eb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/166db358d7e21a40fb95e51eb183ba38ddedd14e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/172af532aa28c54bdb3f1fda96e49c158a61836e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/187dcdd2879b96e1a01e7c4b287301f9558d63b0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/18827e005cd7709890ba226c6a9d046eb4adb97f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1948be63b1c99b9b0d0a59f969cdfd8bd8d76c16\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/19b61735e240df99f6c773c24cd13abf15c87c63\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/19de7d03b460b87519ca9cb23d94521b45c7ec58\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1b9f03bf33def7492d44ba965c8eec9809e012ec\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1bac25dcac967e81fc40f0e6d4016d3bdda5fc3e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1bb279eac6dba2450eaac1f6377390809678eb64\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1c55e3f26026b14b5f3df793c1e44bc82609bd67\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1c5751d34ffa0dd0b74d134f6e0d118cb7e2ce59\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1c89d78c7ecfbdb58cdfc8e6eaec855bebae260a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1d09858f086443e535d2a1c0a8e5d265aeac8f64\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1d7646e2e17b616db80a0fc04eadbb46aff615b6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1dc076095653dc8cfb14c1263d0ddaea046a5b3d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1df37abcb3b29eaa6e960e5a238b7cf57e29535d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1e33930a0bcdb250c6c1c8ea3c115115b9253d89\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1e7c880bdbfc270e883b69e9f35173db1392006d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1ea0c15aa3b4fecfecd7e90463e67234a6c6b055\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1eb014e28a70d5cac7fd26395ccf707f80b5c085\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1f3769e3d45828fd61f17e384b35317a23cd8581\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1f5987eef8d637585f1ace1b0125f9ae1d030747\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/1f86ad4d52d500a98968240ee20d3ec0a1cebbd4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/20002ccfe6ca91a968c6df664f0c8e26bca708c3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2019221d21cb33bcaa5da1612e7e8ec6fea5a0dd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2021efd8f0205d529874e3a30e14f153b9d024ec\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2041c8765db24404126569211df6bb682826b201\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2065985f882159bc0a3eed21aecac7bac2dd6c8b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/21d94c968ec0a61bfd18134cb9c394eebc8b2650\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2294b3a5296ca0d37293ad4a7a03ae8c5ef3dccb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/24b578ccf510908ee72987802810efa3c977c741\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/24d6a29dcd2a83695ad7914d195866485782080c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/24fef0ad23c9b874d303f322be1247814c5ce2c3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/260d122e591cdacb3a935c4c1382dc63e45d7d66\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/26ad876c06e4314fb64ea3da3c5bf449911a5592\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/26e08d0f56fa48b43e9d587373ec3bda70b71313\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/26fb3f9e229fc827336337e50c8414d2c59b7d11\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/275c2e117cd5871b2a577a5a883c27c31badf06b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/27655d9286e8b439d1ec2a1db9edcbe7c323bbf6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/28becd5f222f5edb7c532bb9c9f2e728805ab703\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/293153384d09986a31bacbfda538e1d0c04e553e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/293f3d7121dce7398b774f2ea10a9dc9d650bef7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2a8a35c937e4b9d98e23bfb4aafefeeac6cbb8e2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2aa4b09e2cba1ae9d206ce1da196fd11ffeffae5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2b09767e6cb4316c07f8d52f003b62d78b26dd24\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2c08c5e08d75f308801371c8636c0d2184cc1106\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2c337262b1f551750a173e7ee39d1be4386dfe0d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2ce998e7fd5f7fd6fa8c876219aebfdf4d566ccd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2ce9fcf4a5313b2d06d2536c8a627e841f209d06\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2d53ec146c0fde2266e6a21d7e8a08c25334910f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2dae5a3a619f7fbcb66f6bf85e0a041d889bc8a9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2ed41b3ea57e6c3743219521e7d828ca8976e696\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2faf06384679e52b784cac24363d5030277408af\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/2fc307ce4787915808a8266cd5f2252cfb53e52f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3031842fe3485fe6a9c474c761ab7b9d1bca4fab\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/30f77f1e9a4fc86b3257f6d4f977bc232cd50b63\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/314e5d0819dc503e6d19e76e2754cbbe4eb96b9b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3258375726526f3307a20ad15450b6f207dfd173\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/331161d24c3a30c2eab3cf16df29ce9c963084a8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3377dcd98d7cf9446f13cef5c2c9eb4bfb46a574\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/337c506518dfa52875810d837fe0703a102dd269\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/33834b66cb16fbca499539b90cfcc0b2158cc104\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3397d64e032790e9ebb8ad2085173544cb630337\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/33ec474cfbb55634312dba0509343d730e7a0b17\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/34a7129b0bde19eae9b1e05d357a6ad0008d03d1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/354213c002d6da45a69865caf8c82dd216dceb18\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/358aac77c6d47575fad40a251458a12738f26d80\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/364e2141ce952e1fdcaf6b957a95d79fd8bdda1d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3727802096d518033aba03b5a06461d71430d864\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/37e60fc248fc2d99c68693e910608cc6afe3380c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/38496c93488c8be31c2fc58b23896c3fea09c74e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/388a1d4b858ff0bfeb77f2cf1417118997938a47\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3899eed5e8f36394379a03d910b20ec0330bb3b6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3903c50802f692ef2afb50118bc2a571a3368e59\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/39160bfb37afcd171b43c470053e604704330327\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/392eb73eda3b78c1a8afc4ec4398736f2745e408\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/393bfae57811859e1da39e9b92c34ce19e32f826\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3a693d773cf2ba9610451edd11d6a5d6ec97f821\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3ab1e85875845a9cad7a67f22cece77d91c6c5ef\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3b4ea74641e3710df1cf14238968dcd9fe7722e2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3b94f1863f7e1466af70bbfe2890ef214e53af6a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3bec2690a9d73b0615cb224f68cd14172b8cd399\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3cd2d97b2fa16f7d55d1e4c60c3efeae4a23376a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3cec7e4ec164059a9e35ff89ede15e76ad53ccdf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3d2dae23fd23774b70b76104627bed488c9803fc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3dcdfaf8fd27216c83341daa2dea523893dc1582\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3e2bcf7e0bc64cbedd3fb526baafe24a09933671\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3f62a76c9e78a1a8032c289dba5d57856cd3fa9d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/3fb0b5c09cb8b69f3e3d5c33ae43877551037cad\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/40d5b925765d4044ae30108cbb6ea486d2a96bfe\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/41e2c959995f1869ddc6f7e5973c2a632e72e30e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/42357d1210c2977bd1636385841fde46084cac8d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/42499716c2332042efe5a3216f5828b56232b909\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/431171bb3cd07fadb8737fc80429e7cf01ee875f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/43dfd4bc185bd6babd9e447b87ed86176e8a88cc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/45c71806795ab5a1f3000d6d35bf106adf4c4020\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/45d31e216497f9797107d59cdc7b8332385dd5d7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4600c55f5c80065f365394f4ea0fac5c219fa9c7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/460c6b19955f35717bec6f553036a3ad23516aca\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/461512b4f09956fd7469c4bdd12e9d83dfb822b0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/465dc1f8f7e482e3d1c8b766d914402da5e610fd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/46901419078aa8a3145cdcd03ebcb406056d1483\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/46b59e85f2e9163f0a921c29385a10877fe410d9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/475f11b2aa98c4cef34c39e94d5ffd0d46b30420\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4763f1dc14a5dd9fb47fc723b55ef3748d7b96af\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/478d59c3e75e05316b313274c755453891213563\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4814bbdd0a271edc4a8ca458002ba9b9202fa0bb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/498a58c09776485f3bb285dc961f3439dd558b46\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4a02d1b38ed81f13a71b8c0ca8cb0d0d830a372f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4a606d5b71a57eee237250dd270f74f1a7d218bd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4aa5c267bc0fe2c01d511f6010bf8877d88a6f1a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4ab7b5947abd7970921a7a2c051bea26a8ccc853\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4affb9b46e7124a9ce5e1dcc6d0d4a848ee86f1d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4b2ab5f996d89ba0dc2ddc69ef9c3cd59f575483\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4b3a0b5c2d55ca844b409c933d21e75c422c3e3d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4c2bb712aca9d16ba0e010595fd61853a73cbb6d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4cc1f49e27b5e57bd1c64bd25d74a906084a4301\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4ce6a28ac58174d214ee98b0df936019bbf637d6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4e12537c1f59f724052aa7957a40a4bc73ef7c13\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4e1ab30e8c67adef4c0a363cb8140266cbd3f394\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4e62d79b3d0042c651ad8f89378a1334fc942e93\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4ecdc8f7d5f59a35b1025a4e0e936f27f90adcbf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4f2265ba7e814bfc067231049467eb6ff5685ab0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4f95050a6450228a5d9509347635cbfe612fc2fd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/4fa44bd8289e9553d011b89d580829e1663df490\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5012b65837778f3432a47c6ddd1e0fc5918c473e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5074dea85612f3b1f6c50da4580a8c397051d33d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/50bb21a3f3c9dfb0d6ac456f54f197acb40f6a1d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5184ae7eb968e5676f62e74ed8929e7c4d54a438\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/51c89a5804da3dbe9c2eb496a01fe5c11360137b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/51eb53e3982ba7f42c52a4663e1ea0f685dc958a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5219cec16280e1f000eb5fb786a1de13b5425ceb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/52b84a49338a34e11b63429c3ec0a372ffe64b24\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/52c06e27a1cf8148b68cfb3ca82c0f8dd710433b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/52fe882267a8eeddec6c20ae5572352c8661f3cf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/53b644036776f58519a6e1b9c1ac7c1abd19d464\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/53bbfb1d0267e323027c113c32a549532aa5586a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/540a6dcf5cfeb5fd283ee408e246da729ebe75aa\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/549a85b0dbd29b62fade98afd183a3c250746748\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/551a6b6e9711a59fbfc39632c1058a15ab4bcfed\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5544b182ec0781039d42e4c1889ffcc78a8069eb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/56c5d4e0784b488c4ee1d2d293c0b9d49775eea3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/572912d17120597300981480d2817ec9ed851a8f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/572ae9eb7f1438aa2ffecba061988f3df745e74e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5735bb6e3d4a4f45ba4c78fc6fd1c09143a65062\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/57596c4e80042e4804cbfac502355548909e3e9d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/57a1b36bd017d01f9787f56fdc7314cfa509c4be\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/57cf291c2331f6a9a2f691cdea5d428d5b7b93ef\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/57db41583cf20380cf889e8223d85e2331149bf6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/57e71e20fd5bbb041fd67a4b231295ec08d17d81\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/57ffc8334a15995528f0f478c80f8d53ba8e17a5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/58a71b0a99715cf6863149b0068477460dabca4c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/592d5002a5fd84806bf0dd5f2a76d63af9f063d8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/59becbefdc2bcca40c1c33245dc6d398e8c31205\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5a1446b805dd72e6588172f36a2eb198bb3e6f16\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5a428227ae4cdfd60a7d5e878118bc6367734ffb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5a79ad4274521f5a37de2d0a73fa16a128b239e6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5acfa14a08feee6e790d8846d225727b3bbe6d08\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5ad0dc668a3c7605f5fda43c6b78907dd8b762e6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5b8728d1e790af735e37b025b61c1ccef47e56bf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5bd3c20b854bb6daca29a94d4f3961c0acf91f8f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5bfc5956fd865a4c63ece7157804ee67a259efeb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5c274c7c9b53d2cf81c01fa693175d3dec99f051\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5c9c4cd397162f49d61025702475ec4ed61cd56b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5cf014aeabb6a0f203b8edf03d842856283b3ad5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5cf73fb1c4c11aa3f219d45cad4885b186ca3f6a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5d18043d94c92fa8eccd4b92555137654a58d0e4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5edf2e8c8c37b9326932d81ae6a3230c8c2144b9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5ef42f3a913d9f5542562610bcc19e39b6bd8379\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5f150088090da3f4597c7e13605534ff5da5b2b1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/5f5741c650f0640455701c72c17ba2eda57dcda9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6114d8807f544105af6ad20cc9973eefe83b34d8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/61d95397713e37d909392d8edf9e1ed7075956c5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/623a68fee210b75596835b2cd22281dc480e5696\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6263486686b954ffdaa0eec68eecd5d483a66efc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/626c4b05a48fd058452a6afadc1811a235eeb14f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/628d1142276d719e3f62c64182f4895b20cdf762\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/63290c05e3073e71c535fcd4c745672780ce03b2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/63a95d78dc13b805fa08daeef7db4d8cdbcfd3a9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/64117f25a8500fc96d63d003241ab206c7e3883a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/647fe0d1a816ffae16e784d481f99260021fbe5a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/648c74c80fa23a76083795f194e0520a34d1fcec\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/654acc2a9085b3265a03af56c87494b267321583\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/65d77f6be8e6bbefd12a434844581b6a4b00c12a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/66e8a4b7d7e57b438edfbe7eb2de3b1315f923c8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6774f9534ece2d63b48e51535333429b982c7da6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/677c84ab95a7b69e9838d4f534837c94917375e0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/67c69ba36f72c4b987015a145baa715a1abb2532\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/68119dcc453d4c461e00e0da1d16c77356276681\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/68d39e3da1176611eda202ecb38ae162041463b3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/68d59133df6c92c82d2f1636a579e2455ed7775f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/68e6b7596f13f750fc18b826f23cfaaaa9e7ca77\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6906d2a3904d8c9286decfe7b336ff86d6c5f472\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6a20c9396182bd8f1b900262e9829d6f32e8a78b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6a4a6fdcdc1e5b2fee12041639f431d7c14bdfa1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6b9bdb95ccd62c50a7597904b097ecb9bcf94e49\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6c2aa9eefb1f7cad7cb50db9ce714df4946c07af\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6c5cd9744471a86d3882ded9e9a0f4157be35196\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6c9df7eb838c26da660eded1cb478d6f942b8644\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6d06cd76d49137f749c2988c83b590c667fd1127\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6d298847232b8f0144f6970a1bae27fa47a10592\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6d346b15bb4bc87509b53c2d46796d07a560969a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6e82d2798d4f3662567827ca17e2ead9a7d90577\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6ed1e7822555cd1347df8ef96bf7dd7d9c39b79c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/6f2f3cfb59bf29c23de732a3edd0964787b3ad36\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/70106748a3d1f3fb5c17622771751ef1b3fd374c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/70cee3ef3d7b3a1c8a3ea8b00388671cdb9309aa\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/70dbc777f3a779202c1813b2457313e6ed317fac\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/713fbde805a3ca6ffa01531306a12763272dc865\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/721c853cc612e7a8ca61a146b31fe7d998d46297\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/736a94108890807cf6955288e44b2d24800663cf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7403b84f9d2538d1a5e7734c2ef86f593275f967\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/74791bdd9c198862df9cb236b720e09c4f5c9862\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/74def8a661e227f4b429a8ced506e4d483c8cd07\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/76d515bb3cff708749713ba4369ffd74eaf65c05\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/77a60417e6355ae0a17c83708111f1733decfb80\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7812006cdfaed235c312d11314bcec35cc7ab308\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/78398e1c35542a3fef955483dd10503279073ba8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/78c1d944fd5590921eac95ceeb8aae1fde2ab10a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/79087ec1498d20da3a1c0c8a8040c754acb900d2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/792def48e0358a5ad16c2bc24874d7323747061c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/79c82d018ed74971f6ba08228e3c4346b34f9cd6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/79dc2d4520ee081507e82edbfbb632bd69c33d85\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/79f44d78bd75853a3a305d33a9f37a9e57b460ca\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7a05eed248aa92efb032485c1e028ecc780eac6b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7af1a9f83beeea6432a48a276ae98c5e8ef936ac\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7b93a741ad0fe132f654067cf383d0591f5d03e6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7c136c53844cafb67aecba4ec0abeb155f6ed91e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7c17762c8eb2528462580f14382a6c94c4bf4bf7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7cf60f8c979a0ceb6e912cbe90ecca0383cd8fc4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7d046e62a79a5095ca5e81cd7b868ea4b44e52ea\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7d9c500ed811ef84262ba88be3f659448147535c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7df2653a04346b772c861b1fbabcd4fab91cfec0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7e7539ff72efe6adf31727caaf34472f48040217\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7e77ec8d07f883dd58c5ad0008087d93905d59cc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7e80b3ba0275e60e2eafd8e47c8b990a5c33b5c4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7ec11906a64a85fa521835b9cb534fccddde67d5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/7f1472d76e497aaf8edd01bf0853141a0655c1e3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/805694e8d064bc74d34bbd6920183b79769019fd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/809aba37f93a068c7b94239e7f75b8ab91ae0595\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/80b294437dbeb7264a9b9a05ff9643d2e710d6ef\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/824639efa8a2510a19a8dbbeee1a2a7112e02b3f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/82d42551a25439a1eec18bba1b87e2f92c7607b6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/82de1de5529a3a31ea3ca0dcf4f55486ff0d0377\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/83f7ad7561fccc316a7eef04fc8a261d0fa05582\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/84811c8ad2f05034cb13fc14de6157f0cd5cbc83\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/849cc8f590c6c9279b3c5de83dcb2f994de1ba17\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/850dcb22aa192bb1649e93f900129235ebd6009e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/855f600187b4f9800f032759d5083493d7ac7701\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8688dbbb7d40a819374af9c95eabcb697593beb9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/86ab2be533ce709f61d3e0a6fdae77b6015889ec\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/86c4b812ce15ec5d1864712a6fffbee5bedd0c28\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/871380e3dffb99813bd97d2b0ee0a681bca409af\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/876cef71c4f40bba5cba9e8cdd905f191fe5e874\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8858c2eb841404947ecf2b93da2642f457b163ab\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/891c891b75a0506073a6edfca961eafc7dc1a3f9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8974702941775487b1c0a7dbb1f697e27c4f182d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8a02a5a133b69c46e83d200fbcc38c1c973e9f3b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8bbf7a603012e6a0512c0e741fe6baecdf42e72c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8bd46882c5186aef0a9ab0ab47c45c55b16b8926\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8c33c508fe7792696a2f9fd950c76d428d64319a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8c81fcc0262b0df9abc7d6f35f52c92850282f34\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8cd2d2d3951b748be79ce63ad25f449961234ba5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8cf8effafb2fde7d79eb89f708e4132dcb84f916\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8d294d3e3686e83fa8f39c97c0df5d535777cd15\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8dbe86b32c91db05f4f3a9c4d26d7b93065c6606\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8dfbc6db72e3358e266867aefc2f35e7c86a1c39\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8e6d97804ec0a90e8634b713e97d7ea988971142\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8ea0786104fdd4c7691291609a20b160f6e16175\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8eb99ce3f275393f4ceebc36f319c10e340cf406\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/8f0b4ec9e45d8144d0754ada621758579759e29c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9049da454d722af2def6dcb1076fb0f39a45b9d6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/910cc734b65af04154c3569e2a1c1d929453d3a2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/91bf5d18da4ad6622280db9551651b4e76524452\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/93a947914e1042bfc6942c5befd9a84c9944bfef\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/93d03ba2fae62c63cdb13257aa503f31903f8098\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/94444b589924f79f665b143d094a2b6dc2c9db50\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/94ae86d1a134918b0812de4635c652771fcde977\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/94e25ce2a5371f8fd15bbd64dfc356207e1c85f5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/953083e8f81c9c1ec90903c05480b45eba16a8c1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/95904dbd0b77baf592023f8fefee9bc888bab3b6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/95bf450aa57648e81c16b7cfa5fc9d2194f0ac52\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/95d233644cac33d90dbf725c20f169c7cb30dae1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/96a54b40fd107a97bda868318df982bc0781ff58\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/97e133029cc5df67b13351ee09741256125ca6dc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/988e03603dc3226f2d1ba190d85cf8ee474b4b8d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/99431b7219705b0faba2931bf2a8e1d1b58ede96\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9951b905b9828267437bcc456adadeb5f713eed9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9a06232792ae8bc6c6192e49a4f8c881d673c320\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9a210b686a8d1af7255721f0633b0cf576d4d2b0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9ab10330bdd387e5d089ad592a6bda606e546ac8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9ac034fe7b6273e443871451192378ba070a97f7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9acba843e7c4677da6cc7c6022009ee405dae82f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9be29a4104b3949b52cefcf3be46183713a19457\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9d6f90d8fd093f451d75650495477b212ddd7468\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9db8511fcf5c0fb7210799d6a7211ff576c04152\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9e1dd9e2d5778853760081ad5d2b90c4c02e2be2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9e4456dc4f41555659cf3f4443add9b48ab1e764\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9e5083901a111310db4bcb9a70d08078a86b2d2f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9ed9b733cbdb5f44e8a8ce9c4782c807a60114fa\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9f0c8caae8202bba3080841e30e0f46b871f7469\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9f4a73ad902c1e7a38f8af8e2bd2f166211fe58a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/9fbf5cc140a1ff2b1d5d6c4ee8c3a7a46dd849af\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a0ff495bda3e72a52b46e2bea6cc7745ce539a04\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a132e28a657b41d38302319d5192d5e8a57a0b40\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a246c2fb5030f41e17f81cf6125b8ca5a72f821f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a2c6991cc7c32a9863facb9c0216418530c6fa49\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a2da87f5fee273f978c24e881352e6186a9f8caf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a3e6515df5a8f30a5f67ef85798be57f7c3185d3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a4a1c7ccffb1dc59c73c47e04d2dc609c7c1565c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a4b60f0c5b57fc2f89ed81794cbd9d24594ce36c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a546452717970ce33bd8e08d5f043537c551b24d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a59432a10ed4852c53eb0db1a511f93ac7055887\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a6715356744ded3821ccabf2b514ecf4e2d98be6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a6738d2cd542e50358cbc1090004ff97917a352d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a6db3474cff926589725e80359fadda09e48b9f5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a7049648fc74b25e4d8614685f93787dd398be6b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a7055d4b56146623fca8ead54bc856c6188024a4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a7cd41fb55b22ac31452966261603c2b6910612e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a7d938e370def1531ab0755c2a3f86cf633e6d95\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/a9f1e886be15ac8ca7050b6b8bb237da35a9a5d8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/aaa1dcfb840d80e1f64b86f26774884650b21759\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/aaed7b93b67a10665a9e580d78b9dc1081747a7f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/aafffc16d824f259e4f4fb656c92a8651d829371\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ac9df5f09312c78625a22701466a26634aa5e8bf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/acbd93ce8e4a9fa44c458416f657cc1b332876a7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/adf6aefef0a55fb3e4df0b1d915e8dd15e85d05b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/af185e3a43ed04ce604dd398edc01b29b473c309\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/af59e7b2b699f415041e9a3a8c8027edb2f433e4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/afebe5b5040c35d63cfd9a9be8fd3a96d7e49c82\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b0ae63ea32688fb2d22b485d68458f0954a2543e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b1fae705ec93293d1608c9afc85559fce57f7876\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b3dbd1372544b738a67e882e3a03ddb4148cc7f9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b3eb5931affc7877db7c87c2bff75894898875ac\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b4e535d95f7f6d923ce22d1ac1ad039762d5e9fa\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b572be04bf3dfc79ce08c38dca75225c2fbf0b34\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b5e54db3669c55fa9cfde46c0fcd5e9510e84ab5\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b63a138472c209bcdd2f41a56460f2bd186caafc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b67ea3eb7bb7c7c662e4e4e7864aa3073211305b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b69770b62883abc6a5cc83455b9120b01b871726\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b6a6577344eeb1aca257513afe40ad41461e47be\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b6f7858019dc0bdc2d813010febb10c8f3d5b690\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b713c142aa517ff9045000fa5b804ba2998301eb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b764b21d9dccaaf53d29c7121880251f05bc95da\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b84428b87cd68782bdb2d94796e3e76c34acc3d7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b863fd07cb88311773893757bb294b325bb66d46\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b8c6f1796d8bc3d41fe1debfbf2e99de401c228f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/b8fb49afd0ec65b6bf65e8625650bae76304937f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ba03478ff0fa0567bb411cb1bf54925c8849b5b9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bb72a797e5a6b3f292054af07d4c5b375e3fc01e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bcaee4dbd6a9fed948fd72b688cd7ae6d0b3b874\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bcd11eab5654e16876e0af3895bc45a2f2dee41d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bd74209b2a887afa750009fe66587c1ec5e5c48d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bd88b896407f683c2aeadb7a8c9114e3fc4b2725\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bda156654f1cab6d3be93e610e45a2e0b7c56b39\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bdae985fbcf69524d50ade0c147ece3ef1c31563\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bdc5015209ac3137e0167c860293f794c832a950\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bdd52d3d78cb45e10fa205726e029b716ea494d9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/be05328d8e92af766c523fd052b1e1ba85b70c25\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/beff956e4121b91887361b1603632766697d43ff\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bf583d52b38909c82d7f8adbe5ea8d99a45c52ff\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bfa9cea29a47a76a400d8ab9f041d61578cc61e0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/bffbb511e4b22cc7c145b4952a9de6abfac13df8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c08d15865e350b5a88b3caadc0fc03442447f74e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c19393d033f543fbb3e0be95c84ea8186aec5780\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c1aa129de39b8d4b641bd734d0317a50c2207adb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c20eba4383f88d255c0360984c2d6419e3f178f7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c234bfe8deb2a1e50439db6ae194c54f6ddd7d80\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c2ccad1c58f1da488745efdd24d72437c8cc19dd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c2d1f1a71a0955e2b0a5c5ef6de9eb50838526d1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c2dcd304ff7075081ef144ecd7a6d59af614ea3d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c3041de024f84227a84ea1b184788ea9e810735a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c30d80ab3bbec8f9f296e5d5a9e3b2e7deca7d27\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c43e461e86c301dba1d02b0fea544098753b1274\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c4e686a66d5b24d4903577aaf091f6da0e7cc031\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c5017850c4531f14372828635bb47a873c6070b4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c59b174688749851fdc09af5301cb88ff65c1872\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c6b6cc5c31e5c856a96f4f7d920c465a8ace4766\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c7594bd3dd500f22d3561d5eff0f4936db7ceacb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c773fef6f939fd18b85427e95d2ee890b7018e41\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c7ba591cf3ae0236f937a2ab0399f77ece8a7af0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c829508b32d802e866171897d71713f3fe546c3f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c833a64b7833b7181c42735b7a62007b57005db4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c87526fbf212473f1f5f05e8d82b60ee5321ce46\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c89ab5a0e0443843158687e0e10e53c5dd09a876\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/c8fd6b44d35bbfe953bf3f6514a4d119777b5959\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ca93f7c5ff884c5cd87f011544f88ee8af9ef26f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/caa26ac5f75b647dd4d4968b1df43b0f9bf9e925\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cad0d8411cd459615d7440511a5ea88ab276cdc6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cada2d724139660be4a5d7d7059a5e86f1b7810d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cb7d183b84b820b23459b9a3b7309f09baf02041\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cb85f4d7dfe43c1ea445ec83a012850bb9c6f474\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cc114a0807f9d894b78c9dcb4d93627d408ffcb1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cc62eed20da26540accfd861b767f3e70676fa24\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cca88b1e4a01cf29a296eb55507e0d34d7f970a2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ccfeb952ce8d418aa9b971f0c4d42a6675378443\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/cd33fd75abfb8a071c936db2efd9d979d5a5804a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ce101dc9dc4874864f0fc5fe764e680c4a292462\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ceff9ebd78d8a7a097d4148287450d6026c30a3e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d01ecd4e8029250d18c1f5ab1e9a3a5772af42f2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d113b9c890b577e5a7f8cd542401326a778ad9ef\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d1468202dc91dee5c2498a9cd97cbdfb3d818957\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d1c8b4f99decfadaccb623b459d1c2513cf72060\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d1cbed7979877367434fe12623da102ed61cec22\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d2aab11a475c6eb7243f437a2fc8f3f9575061d7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d34f4f37f5a63bfceabb96606f1d277ec95902cb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d369ebd9a5d07c24eb5cb17f54bff42e892c036b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d3810a2e51e9ec7e1be7af4ae0389dd4019b034c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d3c4f930a375215456ec4d64e0a5fb35da0fc15c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d40d2e0a06f7d538c1025f947142fa92941395d0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d5529868cefdd4574cd71af2c786bbcf246732da\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d55c44423a62a85e8a2b646c2097116b71f2c403\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d58a335ae0e6a5341873ac6fb3b192c1fc24b85c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d6362ff908bfd81f53ded3d6c7fcad4890590a10\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d637f167d101f89175c75b0d8117cec46d73d991\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d6a90ce7a91aa38fa8bfac355c5a641e9934248a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d7301f45b2c5e2e011f91021ee19861af3aafb8f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d76d14ddf1ad087d49efc122dc5d036b50352336\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d8048b567e6e405364f10e5f0766a5b1a05f2c4d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d84a2fa747ea49620c0f337b392a63612d36ba48\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d8e9ea8f922da33f5ea99b9e02d168be04256ac9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d950ef1534694fdff60aeac605c85237062966fc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d9eda4c148afa43f6f93dd222960b110a1608707\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d9efa7934a2d8d13e5f058159846560852d67878\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/d9fc04ca1fe2d03eafc9fc32060f92d949499c16\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/da2b9afe216ee2c929a1b45a29de887d36da76b3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/da669bc2804db8054904cd07c3ec8e43248ebc3a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/db797826a4204e03d2b7ab650dca46a49fea4f74\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/dce659cd2cd4410f9898f3fd5f115497c1a406b8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ddaa08bbc0bb9a78080f1d3620ee68ea99e2a7fb\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ddff83e8dc1689708b93006b43f6dce895e434e0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/de1efac048d99f5deb0f177442bf80f0ee1b2d9b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/de35837dbfb09671a8cb88f41d4766f1d2054daf\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/de992153d4fd0a9f3f221eed9fe5d1ed47ac508f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/df1bba6cf64f963471094a147786366c3bfe436c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/df492c0808f12ee3519c7b43c1a7e741dbada767\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/df6fd809a32f71c44b205c3e088f89a9878db8ae\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/dfe2ab9f49761619c9ebb6482b310106ec63662d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e0d864d70545f60870b1ca1e743652cbe405d452\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e22b9859587c9b54f8329395de1fe5a59cc400b7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e2403d60044ee65d46c6707d0cfa137fb77e9c3b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e2da772f8496f91e8a41d7aa5b695b2d6578af8d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e396dfe241993e4f05bbe9786df62d4b414286a1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e3e77ccd822c61fe4f90fb36a67e613c8fc40ff0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e4789495136cd1a7a41f1d16f4e5cb27a4009455\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e50688ade210910d1098fd52b0abf1dcfcd22fcd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e528ac7d68d76dcfb11f859195ba2e27f73ee1f2\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e575386f2b65576e4256922d658c6e265a0dcddc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e5e26dcd52901e1d4a5532678f8730bbf3bbb6cd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e6cec5e0c9305b5c928a2c2853110655403fd00e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e6d7de8b5aaeea5535ded66d9d854b97306248a6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e6e28772ab70fd1827b8edec1a3af54db9da7be6\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e75abb5c120484a78dbbb30fe5b0ba60d90b2110\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e82e520d8cf4c5fcde705131d06084e830272163\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e850112a56e41caddd52a3b1e9d10c9267e6b84a\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e8e14268d7dfc61e6e32b06bcf0238474ac3d77c\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/e95692fed3eaa864d6648d6a6e637a98d92733e7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ea2d92c021c7a240632afc8c83fccfe478b034c4\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ea620fc97de94fcfecb8de495369142c3113307f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/eb1999e01e23f95dc9ea9a7321fe914c350a3e32\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/eb912870d7a67e0e905b1553341f501fcf297f15\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ec9f68610484e74b489b48ea8b8055f8f7139a8b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ed9a6b417a176aab61ec778e7b9c8343a63fc5df\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ee58e1af5e862a96719b8baa2b035c86a085e494\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/eec186e23c60032365b9d5ec12e92abb51f983ea\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/eed341a6b8c34146c747bbed1ae7a638961a52e3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/efdd20ce06cc0df17f971ea77825e43710a253b9\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f1cf7f50d73c2e7c727251518ab8dcf921641580\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f22a25d78a04d7124c8f7fe72af2b133c34a2b62\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f23808b3b2207747f107fbce894a52bc90504bd7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f35e6779fd018a14ed56a9d00fb844aadf26c61d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f3705dc8c7a374e337b3dbc06b9d1d3141cfd0b0\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f3ae9b74c634c7accc6798a38a9fca604fedeea8\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f3d47d384487219b3650a951e1576c34639bb8dc\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f42da6f9d592e993e3e659d64f9c14392a4583c7\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f45461144e46024a0992f5a73da60896640c4737\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f45ab2a39168ecfb6c3873338a8057c437f81dee\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f48595187fcab0102474f59c3b66c9b2f9f35a5e\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f4c9e992a50da65991d77134a6c9667dda0ffe81\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f6ea2f559d87cdf58dc59ef9c26b9f96427b8525\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f759d004b43db028079b7074b89bb9b96957b802\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f7dac090053203d28db6de7dfe9cb64327005d5b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f82bac0cf4ebd1d3b8cfa43b1f337d8a35eb5f16\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f83f94a04e4058c5ded7796ee6e0e3c3d0a34081\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f873e0973e1b534208d62779010450b7459bbf07\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f89757c055df283fc748bf36d32044f66161767d\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f9276a499c4ba0d65690b9d5dff1bc993141504b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f944dcd635f9801f7ac90a407fbc479964dec024\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/f9c50b8a2699c8a53806ffb790eef0d349f5da20\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/fb103f0cac3a36baa4a1809fdc62db227311630b\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/fc0ef2281913afbbdc2fc8a5491937313d787ccd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/fc43714698641583ccb452a231068149b2a5cacd\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/fc4be0b0fccca3c620133014fd1f2f7d7a0ecda1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/fcd54145afe1025f572c471efc8aac2f534b2254\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/fe4f743c2f79f22aa9612044b8ef32c1ec624878\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/fe61891d68797ef7a8aa039c9d836858f630353f\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/feb6a1d3377dadf7a3e152c1b14ba578972f32b1\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ff77dd6c362c66b593c750f51c3c0482ad091174\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ff887ccb7b1a3fc53aa53e0edb9059879fc4f8a3\nthird_party/boringssl/src/fuzz/parse_certificate_fuzzer_corpus/ffc5077ed0160c01651c5c8a083a9a1f1b23858a\nthird_party/boringssl/src/fuzz/parse_crldp_fuzzer_corpus/crldp_issuer_as_dirname.der\nthird_party/boringssl/src/fuzz/parse_crldp_fuzzer_corpus/relative_name_and_reasons_and_multiple_dps.der\nthird_party/boringssl/src/fuzz/pkcs12_corpus/04191202c1f7d978bcb3a4c1316d88b046689e31\nthird_party/boringssl/src/fuzz/pkcs12_corpus/7dbf598a00e4d22ac2ae1bc658fbc6596901d53f\nthird_party/boringssl/src/fuzz/pkcs12_corpus/aab806b45129f3284cf9598951cdd57a86e63ab5\nthird_party/boringssl/src/fuzz/pkcs12_corpus/fff673b3287ad0d26ffa212d14d94ce2d015c7ab\nthird_party/boringssl/src/fuzz/pkcs8_corpus/129ebe4bf8b167a37741c9c470fd7c4a0359ad63\nthird_party/boringssl/src/fuzz/pkcs8_corpus/1bf03b5d9f129cd80513b820a55c9568eb1d350b\nthird_party/boringssl/src/fuzz/pkcs8_corpus/225df81ad5fc9783575b57e20207645e55a8fa3f\nthird_party/boringssl/src/fuzz/pkcs8_corpus/3033b336d833baef80981f40394c281c20677f53\nthird_party/boringssl/src/fuzz/pkcs8_corpus/31aa87887801ac3f6eaab0bade714e56fcb5fab7\nthird_party/boringssl/src/fuzz/pkcs8_corpus/3f7e0b4378403f44de34874789bce582790a1348\nthird_party/boringssl/src/fuzz/pkcs8_corpus/40d5a9f71cacb2389b58a8a24cfa52d6b51bf046\nthird_party/boringssl/src/fuzz/pkcs8_corpus/57e8e625f2f2313f2ec174a3209972e9bc5125ab\nthird_party/boringssl/src/fuzz/pkcs8_corpus/89db3807a0d30e36007b74c8ee4aac912fe3fd75\nthird_party/boringssl/src/fuzz/pkcs8_corpus/d38e79992de4ffaf585a6450ba2e6f21188fdd08\nthird_party/boringssl/src/fuzz/pkcs8_corpus/d9206dbdd26c06ee8de4e587553e72b3bb22d36b\nthird_party/boringssl/src/fuzz/pkcs8_corpus/e0a0b34deb64510a36919a13258bd2c8725e41fe\nthird_party/boringssl/src/fuzz/pkcs8_corpus/e5cfb9f3e23eda47731b1cf3414df1bd408179b7\nthird_party/boringssl/src/fuzz/pkcs8_corpus/efb2c016e9375355e04a5d99e2a17415c9d4f648\nthird_party/boringssl/src/fuzz/pkcs8_corpus/fc0fad9f9fb142dee99a03a50a64d10767f9f18e\nthird_party/boringssl/src/fuzz/privkey_corpus/00c42569d947a510cf9797c6f57e072aa0ca5bb3\nthird_party/boringssl/src/fuzz/privkey_corpus/040e09a6e89086dfd9260699f1dd27f1ac8fc608\nthird_party/boringssl/src/fuzz/privkey_corpus/05a573fb3bb39c31923a303fc2792e72eff61cc4\nthird_party/boringssl/src/fuzz/privkey_corpus/09db9192b630c602121231a0de852de7888af92f\nthird_party/boringssl/src/fuzz/privkey_corpus/0ce90fa3fde09714028bbed4b835b9889868f05b\nthird_party/boringssl/src/fuzz/privkey_corpus/0da750195873f5330d846c55736fa9c952daba74\nthird_party/boringssl/src/fuzz/privkey_corpus/144955d4b56923a5003f4778a724aaae45e133a7\nthird_party/boringssl/src/fuzz/privkey_corpus/21390a583c6914c6217e3e7a6f0f500565c3db01\nthird_party/boringssl/src/fuzz/privkey_corpus/2d4091ae2ed10fe2008a9345042316e0d9e12f78\nthird_party/boringssl/src/fuzz/privkey_corpus/30d35fe2026932f96aa4254f12fba48d42ddabe4\nthird_party/boringssl/src/fuzz/privkey_corpus/3499daeee13c1a1f32021dd6666834b3f57eaf75\nthird_party/boringssl/src/fuzz/privkey_corpus/35d56dec4d0b9eee7bc3f7116694b78bd3e14adf\nthird_party/boringssl/src/fuzz/privkey_corpus/3d70c8546bd266eb21f3ad3410ce40ce0f11c754\nthird_party/boringssl/src/fuzz/privkey_corpus/3fa9a81502da9188dc226556ca3ebedf247b2a31\nthird_party/boringssl/src/fuzz/privkey_corpus/408eb93771f2db1955f2d3b886aa1288955e9595\nthird_party/boringssl/src/fuzz/privkey_corpus/4225b400b9e45f5b3a9bea9b4b1ded8c400a1be5\nthird_party/boringssl/src/fuzz/privkey_corpus/51911d8d5529737e78a8c07f7835add996096e4e\nthird_party/boringssl/src/fuzz/privkey_corpus/5c755df2a1f4c2672ff31c9d7d58d6e003a5f42e\nthird_party/boringssl/src/fuzz/privkey_corpus/5d50b7105a65869ceb68ad2a8d6dbadc184d0841\nthird_party/boringssl/src/fuzz/privkey_corpus/6099440734ee930046e454c92ff576aafe33023c\nthird_party/boringssl/src/fuzz/privkey_corpus/63a1c254ef76396040a8a11c9715f0d7435ca3cb\nthird_party/boringssl/src/fuzz/privkey_corpus/63fcd39ff8f3d87e84282915540cbf08e2df0d7d\nthird_party/boringssl/src/fuzz/privkey_corpus/64d5fbd143dd252a45201c7ca8a9d5df6503fca3\nthird_party/boringssl/src/fuzz/privkey_corpus/6564b23ca877f7b46600c0628d9ecc503888cc67\nthird_party/boringssl/src/fuzz/privkey_corpus/7019dcba7ca33cc061327b124fb24709299a3e9b\nthird_party/boringssl/src/fuzz/privkey_corpus/7115008ca4af946a5e2cec6166c8cf2bfacf6f0b\nthird_party/boringssl/src/fuzz/privkey_corpus/7508d58d4f00dc14a072ef68c79d5db942195bac\nthird_party/boringssl/src/fuzz/privkey_corpus/7b4202b35800a1c6fbfde9de8dd7c06704353bdd\nthird_party/boringssl/src/fuzz/privkey_corpus/7baa95845eeabd342bfec6eacfa14a623c59e158\nthird_party/boringssl/src/fuzz/privkey_corpus/7dfd158e7e1d8c6737ece7d1ea5d67820c671c90\nthird_party/boringssl/src/fuzz/privkey_corpus/825915611b3cd3ba1ae6a9c178fe27bbc7dd3688\nthird_party/boringssl/src/fuzz/privkey_corpus/83a952b25c76484e160a04f5f2c0263cc07cc99d\nthird_party/boringssl/src/fuzz/privkey_corpus/864e3b9ea0ec966bcf1d1dc827c5b5d32dfe5bd9\nthird_party/boringssl/src/fuzz/privkey_corpus/91583ca2b096602157ea1e68c7d6b2adff9378e4\nthird_party/boringssl/src/fuzz/privkey_corpus/92ba02b6268e6c21133447c6518a896157d68afa\nthird_party/boringssl/src/fuzz/privkey_corpus/94a53c59e935429397267a33a6d19fb5bd90c594\nthird_party/boringssl/src/fuzz/privkey_corpus/9daaa6a59373116fdafd6a88ae78a66f82d3b12c\nthird_party/boringssl/src/fuzz/privkey_corpus/9f1eabfff336e298505550b3f369c61431289713\nthird_party/boringssl/src/fuzz/privkey_corpus/aa3a41b9a808b2028bb83d5279ba42371c8dca4d\nthird_party/boringssl/src/fuzz/privkey_corpus/aafac2d9b5d50385e892a1c9792bbf9f31530544\nthird_party/boringssl/src/fuzz/privkey_corpus/ae4960ecdce376a9bbd26afbc481619ba303f4e4\nthird_party/boringssl/src/fuzz/privkey_corpus/b3f8287d91c8ae6d29b8db61b5d4b757a9c4c238\nthird_party/boringssl/src/fuzz/privkey_corpus/b73ec5775410255daf79b77df66d8bc3844ac185\nthird_party/boringssl/src/fuzz/privkey_corpus/b8e3f3d19adcbb244d85b968264adf4bc34bbba4\nthird_party/boringssl/src/fuzz/privkey_corpus/be998be251e63a0d855a269dec3abd974edf064f\nthird_party/boringssl/src/fuzz/privkey_corpus/c0fb9c7ea154ea9bd8d69b07054aef25a7c7122b\nthird_party/boringssl/src/fuzz/privkey_corpus/c24ffe679d844cc26ac590f2657bd36de7876703\nthird_party/boringssl/src/fuzz/privkey_corpus/c5be586cbc10f9982b132505e84eed971e375fd3\nthird_party/boringssl/src/fuzz/privkey_corpus/c63c2f2c72fa6788f4e229f4021c3f9001d9ae71\nthird_party/boringssl/src/fuzz/privkey_corpus/c8f478aa35ec77a762c0289f59baeb61fc4bbb7b\nthird_party/boringssl/src/fuzz/privkey_corpus/ca3805fce726847a1fcd57e100bde2c4058afa6e\nthird_party/boringssl/src/fuzz/privkey_corpus/cc28f7a74f73a3429ef1268030fff5ee64e09acf\nthird_party/boringssl/src/fuzz/privkey_corpus/cd54bf63ab01d994be8c966cb92ef919530afc21\nthird_party/boringssl/src/fuzz/privkey_corpus/d124af93bea4a34e7faf20d4c2d81b93c2d8e7c1\nthird_party/boringssl/src/fuzz/privkey_corpus/d23dd357f27569aa18f9ca99bedc31267977eedb\nthird_party/boringssl/src/fuzz/privkey_corpus/d3c7a122c93a36b2e2ddd3576ea446e0cb39fc32\nthird_party/boringssl/src/fuzz/privkey_corpus/daa4d5092473a26fa51d907baf58b62001574112\nthird_party/boringssl/src/fuzz/privkey_corpus/dcd1e294bde4644814fcce9efae0302f7eb0238a\nthird_party/boringssl/src/fuzz/privkey_corpus/e5c82c5fcbe0067ffda8defedc3ce3a7fc1e0ce9\nthird_party/boringssl/src/fuzz/privkey_corpus/e9734e0052649aab1e22f6638d4e4070fd7675dc\nthird_party/boringssl/src/fuzz/privkey_corpus/ec8c496dd5407c982d19a0814c282bed0bc8ba94\nthird_party/boringssl/src/fuzz/privkey_corpus/ecb6d9c45861c603a32054d8543fa740598751e7\nthird_party/boringssl/src/fuzz/privkey_corpus/ef7b58b485fa43fe4db625066556e21c53d74c96\nthird_party/boringssl/src/fuzz/privkey_corpus/f02080cd564a6b1a46ceff085f2a44ac015af1b8\nthird_party/boringssl/src/fuzz/privkey_corpus/f84e4fd02339fdc0d688342523e803b1a786848a\nthird_party/boringssl/src/fuzz/privkey_corpus/fa21edf3b4aac56ad7c2e224d31b269b099f420d\nthird_party/boringssl/src/fuzz/read_pem_corpus/0b08765ad46bb11ac55348755ad5c8e4386bd2f3\nthird_party/boringssl/src/fuzz/read_pem_corpus/0bdb9660f74f82a5471210026fdee0b674f1114e\nthird_party/boringssl/src/fuzz/read_pem_corpus/0c4287915a432e6b50e1c2eb0f4ca037b1730aa0\nthird_party/boringssl/src/fuzz/read_pem_corpus/0d583f2aee2e15a7dc7eb93af1ecf44203b537f4\nthird_party/boringssl/src/fuzz/read_pem_corpus/0e3deb2e809b535f39efded20697314a29c8335a\nthird_party/boringssl/src/fuzz/read_pem_corpus/0f29362dfb076a14a103e8bc2c9681fac93c237d\nthird_party/boringssl/src/fuzz/read_pem_corpus/1078e6b183abbe50aa19cffd741db1cb30e5cf4f\nthird_party/boringssl/src/fuzz/read_pem_corpus/149b4073e8ee2d37455c0d7867c7cffdecf0f8e1\nthird_party/boringssl/src/fuzz/read_pem_corpus/15dd914fbdc4335ebc69caa9afe37681dd75cc32\nthird_party/boringssl/src/fuzz/read_pem_corpus/18810634408061267ccb64d68fb85b4ed93515e8\nthird_party/boringssl/src/fuzz/read_pem_corpus/20a000f3932e041a634b759b7cef8138b5b40f67\nthird_party/boringssl/src/fuzz/read_pem_corpus/20d3859cd71d9b215f55983a5ac9cce7c0a36cc4\nthird_party/boringssl/src/fuzz/read_pem_corpus/217d0e120e43e1899a8ab51009de55038fe52789\nthird_party/boringssl/src/fuzz/read_pem_corpus/2493849afd1697d00f4c2f36af4522e6a9ba46b8\nthird_party/boringssl/src/fuzz/read_pem_corpus/27c891aa76f51487ada28b1fc69ac13c7315c933\nthird_party/boringssl/src/fuzz/read_pem_corpus/2904f9b6f6cb0ddf9248537b4fb4b2170174b74f\nthird_party/boringssl/src/fuzz/read_pem_corpus/2a7b8759f3267d3ddca22e936df0b21eabb1aeed\nthird_party/boringssl/src/fuzz/read_pem_corpus/318bcf81a2b6fa0ce680ec82cf11e8a6e4bd93f0\nthird_party/boringssl/src/fuzz/read_pem_corpus/35bae979e092abdc6b31f8b3c52ddcafa4722a9a\nthird_party/boringssl/src/fuzz/read_pem_corpus/3b981c1e4697103278b32ee4e29e3a7b5225d798\nthird_party/boringssl/src/fuzz/read_pem_corpus/3bff6c9ef0381ea1080fdfb5b4f9c02e95f549b2\nthird_party/boringssl/src/fuzz/read_pem_corpus/3cdb51f7ffc8ef0bd03265c3a414069815821d18\nthird_party/boringssl/src/fuzz/read_pem_corpus/3f46a93da1448c00d2a9f3a62117bd522ce8de64\nthird_party/boringssl/src/fuzz/read_pem_corpus/42650de48dbf62d86a91ede484061f834214915d\nthird_party/boringssl/src/fuzz/read_pem_corpus/488ae502baabc6506f8722dcdc5294940fa5d588\nthird_party/boringssl/src/fuzz/read_pem_corpus/4aa25eda7560bbd746d9a69b63965c0de21bb53e\nthird_party/boringssl/src/fuzz/read_pem_corpus/4b32aa9edbd17b2d63390a41cc98739be7d45596\nthird_party/boringssl/src/fuzz/read_pem_corpus/548649f5502df5e77b9d332d3f1e29dedd7afdb2\nthird_party/boringssl/src/fuzz/read_pem_corpus/55885a3f94688b36e34fac8ce1fd7fcc7bb7208c\nthird_party/boringssl/src/fuzz/read_pem_corpus/5891dd7c6715eca7f427ed9267de9da72b8e82e8\nthird_party/boringssl/src/fuzz/read_pem_corpus/58bdb0aea139a2790c2e1a3b25e302892a6c4b55\nthird_party/boringssl/src/fuzz/read_pem_corpus/5c720dc0326e4ffa322f706337df9bc87f42fd96\nthird_party/boringssl/src/fuzz/read_pem_corpus/667da9df1cde33d635bbde1986827573ed686a7e\nthird_party/boringssl/src/fuzz/read_pem_corpus/66f8b696c46c10a6db20b690e4431b72745f4760\nthird_party/boringssl/src/fuzz/read_pem_corpus/699044ddfe4887d6081ce2a36c1302814294eb68\nthird_party/boringssl/src/fuzz/read_pem_corpus/6d1d12ef00c585b4c859479bfa2522f4a447d907\nthird_party/boringssl/src/fuzz/read_pem_corpus/6d67bafd83bed7aadd641417671e6864dc87073c\nthird_party/boringssl/src/fuzz/read_pem_corpus/6dcb7976d9af4a72b3667926f1fe7642c75685b2\nthird_party/boringssl/src/fuzz/read_pem_corpus/729be2837328d9f25597b1d605188bc724c632e6\nthird_party/boringssl/src/fuzz/read_pem_corpus/74b9536c60def2f9cb8e83512b80ff8406d12567\nthird_party/boringssl/src/fuzz/read_pem_corpus/74b97735df0ee03d5a912734de93772093826bda\nthird_party/boringssl/src/fuzz/read_pem_corpus/7539289d67a0974d16f0ed01ded0a58a02b21126\nthird_party/boringssl/src/fuzz/read_pem_corpus/7a582440bd4712ab88a3e745f928202707585e6f\nthird_party/boringssl/src/fuzz/read_pem_corpus/7b8e2a5dfa03cc13b70eb5f77d61222c108ab6bd\nthird_party/boringssl/src/fuzz/read_pem_corpus/824b6dd27deb9ed157fdc80485f104268f7232fe\nthird_party/boringssl/src/fuzz/read_pem_corpus/874ed5d633d245b10fdda52c49627b43b3f2e25b\nthird_party/boringssl/src/fuzz/read_pem_corpus/88581ebac8ffbea71bb83f704e14d789dbc33f37\nthird_party/boringssl/src/fuzz/read_pem_corpus/892155ce92d4c3293f48e6fc2097336ba882a0ad\nthird_party/boringssl/src/fuzz/read_pem_corpus/894e092b7fd9f4e0a5911ca106e097d3833d3491\nthird_party/boringssl/src/fuzz/read_pem_corpus/8c07d6299f33fee89ab0c82e92e06cd558ade60f\nthird_party/boringssl/src/fuzz/read_pem_corpus/8e07fb01e0cfa23caddb6b0280c03d0ae2bac57e\nthird_party/boringssl/src/fuzz/read_pem_corpus/92207925db84106af0167e887696d936aa41e785\nthird_party/boringssl/src/fuzz/read_pem_corpus/956c8cf1db9220ac8004eb9a75e3ebc1df33a33f\nthird_party/boringssl/src/fuzz/read_pem_corpus/97c5565f723c0e49787fdec9ed15354760fcb1e6\nthird_party/boringssl/src/fuzz/read_pem_corpus/9832fea1fe1c8b575790f59f98404fb61672a3f3\nthird_party/boringssl/src/fuzz/read_pem_corpus/9940bd2f440a8c1e07dba6476c219349afeae711\nthird_party/boringssl/src/fuzz/read_pem_corpus/a2bc14d4be3bb4f4deb93ddaa77224db305158af\nthird_party/boringssl/src/fuzz/read_pem_corpus/a92c58dfadb8195fbd90c70b4dc576986dbb7c46\nthird_party/boringssl/src/fuzz/read_pem_corpus/aa82ef4cf1c3c2d7dd7811803227cc87d2429b3c\nthird_party/boringssl/src/fuzz/read_pem_corpus/ad49ff8fb9ff95a8f110b15702f8209df64f8fad\nthird_party/boringssl/src/fuzz/read_pem_corpus/af9207c320f7400ba18dea62fd4af98330ba260b\nthird_party/boringssl/src/fuzz/read_pem_corpus/b709f3412c5fb9a0b38a69eee59620a5c3990385\nthird_party/boringssl/src/fuzz/read_pem_corpus/b92f0f72b6839f6c7ac10f4c663765b89e1fa513\nthird_party/boringssl/src/fuzz/read_pem_corpus/bc205ed015bb01de66b5a6b5a631d167c8077a5c\nthird_party/boringssl/src/fuzz/read_pem_corpus/c0348b5dd7aaf73888372a5a6abef82bd0df97b9\nthird_party/boringssl/src/fuzz/read_pem_corpus/c0596e573f43d2bd5a5d038bf4bd7d073141ddf0\nthird_party/boringssl/src/fuzz/read_pem_corpus/c7e4b7f4c3bbc7c6ed4e3366d1d4c16ed44952f1\nthird_party/boringssl/src/fuzz/read_pem_corpus/caf489bb8f6f48e35b95032b2824ca0ffc77d26a\nthird_party/boringssl/src/fuzz/read_pem_corpus/cf1b3d1ed204deed6c62f41d0e706ee47bc802e0\nthird_party/boringssl/src/fuzz/read_pem_corpus/cfc3b1348ca73b8c02d9aed715d1e0681326888c\nthird_party/boringssl/src/fuzz/read_pem_corpus/d4f0a19ece82b78c82c81eae5b49dc662c6f4a89\nthird_party/boringssl/src/fuzz/read_pem_corpus/d959c647c6a5ea641fec147b0de36187a9d2f8c5\nthird_party/boringssl/src/fuzz/read_pem_corpus/df9fe7d51a89ee267034a2834025f71505d4a421\nthird_party/boringssl/src/fuzz/read_pem_corpus/e1a6c4096b145ced5362ede6ffedbc49d16ba57e\nthird_party/boringssl/src/fuzz/read_pem_corpus/e3344ef8d734471ef90b16c719cb0f11af2ce743\nthird_party/boringssl/src/fuzz/read_pem_corpus/e7ef91e03a3aa8bd53b2466a2207a5028185678f\nthird_party/boringssl/src/fuzz/read_pem_corpus/ebcae74985ccc7905a3800c0db2723392cfd2f2c\nthird_party/boringssl/src/fuzz/read_pem_corpus/ed31baee70d3b705762e808e494b4debf604c5fb\nthird_party/boringssl/src/fuzz/read_pem_corpus/f18ebc593b87baa03b5e003b7540577001ba6aca\nthird_party/boringssl/src/fuzz/read_pem_corpus/f72115838630c70a067e89b98615357fcf19d058\nthird_party/boringssl/src/fuzz/read_pem_corpus/f9f61f03681250b015a00df3010b89d2d776d8fc\nthird_party/boringssl/src/fuzz/read_pem_corpus/fb36b0ce1600b9399d552eab916600c239be5ad5\nthird_party/boringssl/src/fuzz/read_pem_corpus/fb64fef6ea2f835804b69ae3d21fb2cac7e4973f\nthird_party/boringssl/src/fuzz/read_pem_corpus/fb6d4702bcb98df173527a5f08d5ac829adb2f9f\nthird_party/boringssl/src/fuzz/read_pem_corpus/fd1cc706033976b86a93d2b0c74b15bb2f31fccf\nthird_party/boringssl/src/fuzz/read_pem_corpus/ff7dcdb0fc13ddea6e82cac7bf3a0414cb772ded\nthird_party/boringssl/src/fuzz/server_corpus/00297505661b08ffccf461853d5210e89c4fdadc\nthird_party/boringssl/src/fuzz/server_corpus/00845b0b293b021eb8227a40d8d4f459c0f6c87c\nthird_party/boringssl/src/fuzz/server_corpus/0102298d15e9282866a5f2260302eff322a13c13\nthird_party/boringssl/src/fuzz/server_corpus/01025c6fa6e1200c776e588dbe1a7a82b050e199\nthird_party/boringssl/src/fuzz/server_corpus/01072e35d1fc2a63782d67981cee6821fb58bbb3\nthird_party/boringssl/src/fuzz/server_corpus/013747bfa2cf4629fbb78e2cf8aad57ac916dede\nthird_party/boringssl/src/fuzz/server_corpus/01815ba153ed7aea022dd43053e4138b46c3c51d\nthird_party/boringssl/src/fuzz/server_corpus/01ee0b1daa505b2371ae9160902a7fdb3179c102\nthird_party/boringssl/src/fuzz/server_corpus/02c96391cef8f47b6bf3b4539803172fe992c918\nthird_party/boringssl/src/fuzz/server_corpus/032ed3bc6cf30af6738e04b960554931a1405c84\nthird_party/boringssl/src/fuzz/server_corpus/03a17ff7c3ec92253d340b23b7d9e826dbc561ab\nthird_party/boringssl/src/fuzz/server_corpus/03bb0ac2d6bcdce6c424610866233ec9a790f37a\nthird_party/boringssl/src/fuzz/server_corpus/0400e9c88283a21403b12822ced66e4a755f9353\nthird_party/boringssl/src/fuzz/server_corpus/048b1529d81d0cb6648cb0e58441746cb9e9546f\nthird_party/boringssl/src/fuzz/server_corpus/0492c19a6f6acb987a79a82ae9941556fc52897b\nthird_party/boringssl/src/fuzz/server_corpus/04c5c81fba6070627d1635396370059b02afc975\nthird_party/boringssl/src/fuzz/server_corpus/04f5750d6d1c2f88d1dc68a667445069e2ea33b3\nthird_party/boringssl/src/fuzz/server_corpus/051434c181791fafd8448ab05392e1f74c45d8b6\nthird_party/boringssl/src/fuzz/server_corpus/059878a43741e57ea90470deb87ec8d7fe805434\nthird_party/boringssl/src/fuzz/server_corpus/06115f4a2f0130c780a7e683a252c17c2b12f009\nthird_party/boringssl/src/fuzz/server_corpus/0714ac481b5679f271a50bb03d6b67de238dbb06\nthird_party/boringssl/src/fuzz/server_corpus/075031c9683cc159909ac53935f28e045b8560de\nthird_party/boringssl/src/fuzz/server_corpus/08f94db2baf68e874968c88cd285c53c20b10172\nthird_party/boringssl/src/fuzz/server_corpus/0a1fa52ace56fa15987bea607bcfc5b1036ba8e6\nthird_party/boringssl/src/fuzz/server_corpus/0a30bf5f031bbf135e8d716edb944a8ac4b6b50f\nthird_party/boringssl/src/fuzz/server_corpus/0a4a46ec7671370ae9806a252bc70a03b4f7b95b\nthird_party/boringssl/src/fuzz/server_corpus/0a764719541a1af5098ff9dfea7e1d65eeac97d6\nthird_party/boringssl/src/fuzz/server_corpus/0ac7f3a86b7160e431ae050c4f17fae52acda902\nthird_party/boringssl/src/fuzz/server_corpus/0aebeb57985c43b5e98fb52eb3c4e4130a1874c6\nthird_party/boringssl/src/fuzz/server_corpus/0af045716659703fffdead0ec8576b425c7f2608\nthird_party/boringssl/src/fuzz/server_corpus/0af4dcca8de94c52b1bd40e6c456e8a4d08d4320\nthird_party/boringssl/src/fuzz/server_corpus/0b203123d059e87b871101c4ffa7d280166e933b\nthird_party/boringssl/src/fuzz/server_corpus/0bcae43fb2315c737f23fb5086db3449c6aceb81\nthird_party/boringssl/src/fuzz/server_corpus/0bde73784d2dbd121302fe52dffa4db7dbcf008b\nthird_party/boringssl/src/fuzz/server_corpus/0c7c0f0ad47aa2d09b9a97e8b36c9b6ad1b579ec\nthird_party/boringssl/src/fuzz/server_corpus/0c9f157117eca1f4466f522de6bf33b0118312cb\nthird_party/boringssl/src/fuzz/server_corpus/0d521f070f8466c16ecf54b3ae94c805b6735dc7\nthird_party/boringssl/src/fuzz/server_corpus/0dc0f477fe4d7075902307b7479334f4ad306dae\nthird_party/boringssl/src/fuzz/server_corpus/0dc5aeb589079c6b702d1a82b20a96b326bf1d0f\nthird_party/boringssl/src/fuzz/server_corpus/0e400dbc8a5dd4415aed25730631212da9f7643d\nthird_party/boringssl/src/fuzz/server_corpus/0e63a469313a8a9f88877b007b9613ee8e0f2181\nthird_party/boringssl/src/fuzz/server_corpus/0ec1495a1b861bfde674ed45141203477f8e4d93\nthird_party/boringssl/src/fuzz/server_corpus/0eea88830d13a4081c0048c5bcee0519446792b3\nthird_party/boringssl/src/fuzz/server_corpus/0f236db3c77b3023fb893f5291ca6b200be50e50\nthird_party/boringssl/src/fuzz/server_corpus/0ffa96674299739d66143ae6d4ec8d6a66d4c56a\nthird_party/boringssl/src/fuzz/server_corpus/105b17a867a46e1bbd4b78c54c423f8359885c5e\nthird_party/boringssl/src/fuzz/server_corpus/108a1312aaeb86892f2c3023ae3f0554302d64f0\nthird_party/boringssl/src/fuzz/server_corpus/10d1d90fcf146b2473cfe5213af6c2233fa3a6a9\nthird_party/boringssl/src/fuzz/server_corpus/10f9aa26d8184bc071a982cae13c7ca8946b3197\nthird_party/boringssl/src/fuzz/server_corpus/1106e9e9c3ad2d7fd09647b8c7a52592c27c7d2e\nthird_party/boringssl/src/fuzz/server_corpus/110ad0c11960037e047425d678cee954fdb45791\nthird_party/boringssl/src/fuzz/server_corpus/112b5273413fd7f205685155316033f8320a3f72\nthird_party/boringssl/src/fuzz/server_corpus/11640368a03c0ab4f33619bd9b6c6e7533935e1a\nthird_party/boringssl/src/fuzz/server_corpus/119c3806868a614658090de3963276aec44b64c0\nthird_party/boringssl/src/fuzz/server_corpus/11c91d3aa29f06d800aacbf6a388d3c02a666ff4\nthird_party/boringssl/src/fuzz/server_corpus/128f79ce8ac918fd5808b915d6bd93539e9f128e\nthird_party/boringssl/src/fuzz/server_corpus/12c4a4c3a7c0e9702fb69a15b1a21bfddc33d57b\nthird_party/boringssl/src/fuzz/server_corpus/12f8bee4045e5df9be96cba4f8ea5317f9cb3a71\nthird_party/boringssl/src/fuzz/server_corpus/1344b747653d9ac67352dce3ff8c4273c02483d5\nthird_party/boringssl/src/fuzz/server_corpus/144adb23e15fa3239e29fe3838514f3ff8486c6f\nthird_party/boringssl/src/fuzz/server_corpus/14855f9d3ac8d7a8b0f2494885035b053936c10b\nthird_party/boringssl/src/fuzz/server_corpus/1489f923c4dca729178b3e3233458550d8dddf29\nthird_party/boringssl/src/fuzz/server_corpus/14b7b3cd06353e8508ca80d917bb5945d91569ab\nthird_party/boringssl/src/fuzz/server_corpus/14baaa77a5343e061ecb48d1a6b033bb1d074b14\nthird_party/boringssl/src/fuzz/server_corpus/151551b7934af51b7d8774efb31510bf4c93b33a\nthird_party/boringssl/src/fuzz/server_corpus/15b3f537487c00d2828137b801d8170f5e137515\nthird_party/boringssl/src/fuzz/server_corpus/160e379ac5d7918ebfcb4586b71bc181cdae75c4\nthird_party/boringssl/src/fuzz/server_corpus/1722394127928520f54880c216f21206e58da9b0\nthird_party/boringssl/src/fuzz/server_corpus/1743aa1e9e9f03a04809e98bc8cbe9c4e13e857a\nthird_party/boringssl/src/fuzz/server_corpus/175e6184c326dc13ba216018e39f41e69552fea9\nthird_party/boringssl/src/fuzz/server_corpus/17f3c521d80d99e99f57a263bb94b906e69c1c0a\nthird_party/boringssl/src/fuzz/server_corpus/186262a3b3edbe7aaeaed2227605a42f00443399\nthird_party/boringssl/src/fuzz/server_corpus/19296373181ecb6818015c773ec78a928b7be7bc\nthird_party/boringssl/src/fuzz/server_corpus/19c6028f9266e83c4ea9d354b15b636d6ab2c14d\nthird_party/boringssl/src/fuzz/server_corpus/1a25f5a985c0acbac57833e349506e9864a5c010\nthird_party/boringssl/src/fuzz/server_corpus/1c17e41e2c7b63ca88ab7cdcfa17f37f6e7340ab\nthird_party/boringssl/src/fuzz/server_corpus/1c4bf9eac8153b8954a197b2dfd67bba629205c4\nthird_party/boringssl/src/fuzz/server_corpus/1c531ea117559cb08cd537418dbbdff7444d8dfa\nthird_party/boringssl/src/fuzz/server_corpus/1c60aadca7bd5a3241d7b9fba82ca6eabef00bf9\nthird_party/boringssl/src/fuzz/server_corpus/1ca39c922f08bc2740725655556d55311c4603bb\nthird_party/boringssl/src/fuzz/server_corpus/1cd4151700c87404d79e9636110b71a94fee194d\nthird_party/boringssl/src/fuzz/server_corpus/1cfb227bdb25250c144eb3580eb3dc887a409163\nthird_party/boringssl/src/fuzz/server_corpus/1d2451672313e182093a3fb3ecbf5f2efbe1177c\nthird_party/boringssl/src/fuzz/server_corpus/1d75c7b2b9e619e4447b133d6780a6f5f72e363e\nthird_party/boringssl/src/fuzz/server_corpus/1e74eaa6f82c33ede12903604d1c018ae2ec7b67\nthird_party/boringssl/src/fuzz/server_corpus/1ed70b69f19cc328d13550da30247e27376e3e42\nthird_party/boringssl/src/fuzz/server_corpus/1f55cc0fec163a152a2e5abafa374403c597fb41\nthird_party/boringssl/src/fuzz/server_corpus/1f70a54ca5b1b73abc8cdd4045c23b4bbed3ddbb\nthird_party/boringssl/src/fuzz/server_corpus/1fd6bd44d7c69c097e7b417b0987eef60ad7426d\nthird_party/boringssl/src/fuzz/server_corpus/206fabbbd678c4c8c9cde43a4ee022cdef978dda\nthird_party/boringssl/src/fuzz/server_corpus/208d33ad0d73b73f2bd768680e87cb2fd6cbf56c\nthird_party/boringssl/src/fuzz/server_corpus/2125023d7a1d999b5fa6f2a666b30a16f5d96f59\nthird_party/boringssl/src/fuzz/server_corpus/21cddb02178830bf7b34cf621f65dc9206a97e7d\nthird_party/boringssl/src/fuzz/server_corpus/2207c3136bfec2ea48f7e1a6a79ec51ca98fb355\nthird_party/boringssl/src/fuzz/server_corpus/229b1e1d2c1533f39dad8d75259385d281d3e920\nthird_party/boringssl/src/fuzz/server_corpus/22d5990e718f15581c37a21be83e49fe9a670339\nthird_party/boringssl/src/fuzz/server_corpus/231bc77d3a4a1d1bb09239af3fe8cfe7c79e06c9\nthird_party/boringssl/src/fuzz/server_corpus/237ce3aed4fe295c823329bbd0099c10043b7719\nthird_party/boringssl/src/fuzz/server_corpus/23a4fb6fe87273eba1d7ef7f61800db5bb39be1b\nthird_party/boringssl/src/fuzz/server_corpus/23cebd856de957ac75d29b995d38923d8c35f00c\nthird_party/boringssl/src/fuzz/server_corpus/241d3ce8f51f7b5e27233d5381e5d36c40d78652\nthird_party/boringssl/src/fuzz/server_corpus/256c797f5fd2672727a5446d3b338289ea3255ff\nthird_party/boringssl/src/fuzz/server_corpus/258efd6fc31573594163cba4aab779400381cf87\nthird_party/boringssl/src/fuzz/server_corpus/26aa086074b1fb236ab08048bede1a5ba5ddb881\nthird_party/boringssl/src/fuzz/server_corpus/27ccb66ad1a8b4d1ed8f998248afed6118272a75\nthird_party/boringssl/src/fuzz/server_corpus/29226dc4bcb3e9e9930558dfb0e5c254e577a9a4\nthird_party/boringssl/src/fuzz/server_corpus/29867583e9a4525201b6dc707b53f9dfe9176603\nthird_party/boringssl/src/fuzz/server_corpus/299453c9134280dcf3a4fdd9431c1778197a6e89\nthird_party/boringssl/src/fuzz/server_corpus/29a46a6da7a15bf4958f75c78fb5bd302880c4ca\nthird_party/boringssl/src/fuzz/server_corpus/29af140d0ba9c35246bb352ecb22652ea3a11d81\nthird_party/boringssl/src/fuzz/server_corpus/29bf6b1e98730d1e68f8499bb650fb309a410a28\nthird_party/boringssl/src/fuzz/server_corpus/2a049b071dba1c3f52e1cde2eb6581e76de44c5c\nthird_party/boringssl/src/fuzz/server_corpus/2a2362cfc3d811386120efddd3c72f8936afa293\nthird_party/boringssl/src/fuzz/server_corpus/2a99f7db2a53b6066b505377bac566776f79616e\nthird_party/boringssl/src/fuzz/server_corpus/2bd8befd0ff11db3cf644f8680bb1bfc67716b73\nthird_party/boringssl/src/fuzz/server_corpus/2c17cf2fdb619d40733ee66a01dd32f6c6906cb4\nthird_party/boringssl/src/fuzz/server_corpus/2c19cfcde510e4272fc1e1536678ddb7136308fd\nthird_party/boringssl/src/fuzz/server_corpus/2decb8e0bda759216a98beb017aea06581ca2081\nthird_party/boringssl/src/fuzz/server_corpus/2f30f458e3e2f93c3df539e181427baf43dd8da5\nthird_party/boringssl/src/fuzz/server_corpus/2f848c8a612d0406275b17f5a203acaeeaf3263e\nthird_party/boringssl/src/fuzz/server_corpus/2fb5fc4cb7c2f6fdc91fe885e931707e9de5b827\nthird_party/boringssl/src/fuzz/server_corpus/30990ff7250df77e8c6d543d1691830d30b10015\nthird_party/boringssl/src/fuzz/server_corpus/30c3599adaf88fa71633d8cd719804296873294b\nthird_party/boringssl/src/fuzz/server_corpus/312b954a1808122eab9f0b4938a3a21106cf3df0\nthird_party/boringssl/src/fuzz/server_corpus/314b0c35047597104082c28c6bd32f6c06f51b6d\nthird_party/boringssl/src/fuzz/server_corpus/3176c92dff283f513eaa8f2488cda223a14df6fa\nthird_party/boringssl/src/fuzz/server_corpus/31faf51e693067afea269a4699b04a29852ee1af\nthird_party/boringssl/src/fuzz/server_corpus/326b3dc79dfbf85141919f0701b9139f03f316cc\nthird_party/boringssl/src/fuzz/server_corpus/328d5d60c646d83e1f6df13ff0fd60f4b249b7c6\nthird_party/boringssl/src/fuzz/server_corpus/3298398dd6130869015408bba20122fece4e2ab5\nthird_party/boringssl/src/fuzz/server_corpus/330335aace369c26193d4e3e3ac14abadc8e0f6e\nthird_party/boringssl/src/fuzz/server_corpus/3307ffe0e0c5d13bac2c435e1ef572d44a390861\nthird_party/boringssl/src/fuzz/server_corpus/35dcc02c10b87bbded51c738e7e8f9f31ec4353d\nthird_party/boringssl/src/fuzz/server_corpus/36b808ed76bd71deb88ac4e22ad63afd6f7ced67\nthird_party/boringssl/src/fuzz/server_corpus/373075999756785f3019899debcfe3df8a3729ca\nthird_party/boringssl/src/fuzz/server_corpus/374c13e768b14174dd9854228bf7bd70f617e1bc\nthird_party/boringssl/src/fuzz/server_corpus/37a76cc0144185c7e86e3ba7ee0b4a4ddba88aca\nthird_party/boringssl/src/fuzz/server_corpus/381d7638c8d78731018eb45ccef62656102a1edd\nthird_party/boringssl/src/fuzz/server_corpus/38782780870efe01276992695144688ed7fc0d0e\nthird_party/boringssl/src/fuzz/server_corpus/390c601ab4fc7955cbc293bdfe06d4596a6a4d1e\nthird_party/boringssl/src/fuzz/server_corpus/39b6413db9535c6e91951e2844984590a44e0350\nthird_party/boringssl/src/fuzz/server_corpus/3a1713d346c4347abc2894c4f3822636a4769814\nthird_party/boringssl/src/fuzz/server_corpus/3a33f19b5caa8d3376a51d722b27cadecb6f5840\nthird_party/boringssl/src/fuzz/server_corpus/3ab864791515c180550308937b3d1e9e7e568cd9\nthird_party/boringssl/src/fuzz/server_corpus/3b2db44c429d4bb1f6a28c51f7b37c16ebc6ab96\nthird_party/boringssl/src/fuzz/server_corpus/3b799eb5c5d69984fd2ea32a490fa277dad57f09\nthird_party/boringssl/src/fuzz/server_corpus/3badccd2324079efd6f53ba4ab18d08e2cea56c5\nthird_party/boringssl/src/fuzz/server_corpus/3d3cc44136a9e7a385dd1ebf8239d49927791e65\nthird_party/boringssl/src/fuzz/server_corpus/3dc81f53361ab02ee05134aa43d6288424980bdd\nthird_party/boringssl/src/fuzz/server_corpus/3dd1840ebbbb7b0b83b575e20858585ffee5cb53\nthird_party/boringssl/src/fuzz/server_corpus/3e85aa34c7d115cb846abacf7e7ce4707ae6d940\nthird_party/boringssl/src/fuzz/server_corpus/3ecc81efabd7b97dbb3a18acca467076b5deb85e\nthird_party/boringssl/src/fuzz/server_corpus/3ef74f600ea370e7a7dbe8278b3b374cb879aa1f\nthird_party/boringssl/src/fuzz/server_corpus/3efe14ef2ba6b99729e8c7013fd33d27f56e6da5\nthird_party/boringssl/src/fuzz/server_corpus/3f14c41ef3c80f8a3385058551d16d480b655541\nthird_party/boringssl/src/fuzz/server_corpus/3f4f571a6306785bd50b8b60274dd533aa1f6f96\nthird_party/boringssl/src/fuzz/server_corpus/400ecb15011e12bbfdcc9ef6ab617ca8b4570a31\nthird_party/boringssl/src/fuzz/server_corpus/40d316980f717766252f3bf287f54376cad01109\nthird_party/boringssl/src/fuzz/server_corpus/4164c47852dfd9d3e60a09ea9319650873d78988\nthird_party/boringssl/src/fuzz/server_corpus/416bad0364df5d4a1d10526d45181e294b79027e\nthird_party/boringssl/src/fuzz/server_corpus/418f7b53c578f63d0a081eaab3f33a6d10859b79\nthird_party/boringssl/src/fuzz/server_corpus/42991d78a742d0f802462ddd280d0666f409b664\nthird_party/boringssl/src/fuzz/server_corpus/42d4400dfdd879fdf475a0d8db19512c120bf018\nthird_party/boringssl/src/fuzz/server_corpus/43950962cb3b5fc1eff31aadbc02cba63990923b\nthird_party/boringssl/src/fuzz/server_corpus/44f3308c11724ed6392fa46f8e72600e498988dd\nthird_party/boringssl/src/fuzz/server_corpus/45bce9b531de56e5140b50125eadc189908c01a8\nthird_party/boringssl/src/fuzz/server_corpus/46234d5af2c9e7616818c831cef75c8712d5a8f4\nthird_party/boringssl/src/fuzz/server_corpus/465d728f035e75665e6237c1836eace6e9119b18\nthird_party/boringssl/src/fuzz/server_corpus/468d8dce2bd41adf834040605a56466d5e709e8a\nthird_party/boringssl/src/fuzz/server_corpus/47439b90acf87f2b330763e4860450c4c17acd72\nthird_party/boringssl/src/fuzz/server_corpus/474428a93a9a918d80041056823a79e63f4c7b0e\nthird_party/boringssl/src/fuzz/server_corpus/475f0400a2b3e73c59f1d13cd5efadbbe90ad3d9\nthird_party/boringssl/src/fuzz/server_corpus/47b0b68cc57e0f4e49cf75d1c6031e110b168bfb\nthird_party/boringssl/src/fuzz/server_corpus/47ffa6e724b3af0681a543eeb0af9eb0d225b2c5\nthird_party/boringssl/src/fuzz/server_corpus/484c8136bc326bc3966c6365cf38a5e5520848c1\nthird_party/boringssl/src/fuzz/server_corpus/4886592053943c4d4fab906aa2eee87848fcd212\nthird_party/boringssl/src/fuzz/server_corpus/488f4e02dc2a4ea43de53272a92b86edd6dd1b3e\nthird_party/boringssl/src/fuzz/server_corpus/49d69241647c18288e24ae4e75c5e216667a70bd\nthird_party/boringssl/src/fuzz/server_corpus/4a3e486334b153d1552d4644f3ead7b65b826d8a\nthird_party/boringssl/src/fuzz/server_corpus/4a608931b94ef2d65e6ad9c5c97fcc268c6330d0\nthird_party/boringssl/src/fuzz/server_corpus/4aa6ddc122b53afb2aa16f7c51399d75c4b3e79d\nthird_party/boringssl/src/fuzz/server_corpus/4bc45d8c12b4dc50f4448f56fa7c336b4c32921b\nthird_party/boringssl/src/fuzz/server_corpus/4bc5a2435f377cae5bf7653e2fcb653f31cc4be0\nthird_party/boringssl/src/fuzz/server_corpus/4c03cd42fca9e25b2d3de2bb4528253335ccb459\nthird_party/boringssl/src/fuzz/server_corpus/4cd8f0a71f53c6863958d85cdf8ad4aa43e27ea6\nthird_party/boringssl/src/fuzz/server_corpus/4ceea9ed5a2de154cb0cd38a2e6e13b794513eea\nthird_party/boringssl/src/fuzz/server_corpus/4e01048b6ae090988d89f065d6a9425970240e8e\nthird_party/boringssl/src/fuzz/server_corpus/4eb9a52dea91dc4b912f70374fa2eb647511c098\nthird_party/boringssl/src/fuzz/server_corpus/4f49b84d412e0fa3280cf182506aa44b42a89e29\nthird_party/boringssl/src/fuzz/server_corpus/501acf6f5bc1ff3f3cc40850b12863b5d9494ded\nthird_party/boringssl/src/fuzz/server_corpus/503ff204bcc3ad87d8582c9520a7cccddc053d58\nthird_party/boringssl/src/fuzz/server_corpus/50941592691c0b7538d29de114992c7f7b2109e8\nthird_party/boringssl/src/fuzz/server_corpus/50bb99de00f57b41ee4804711e240d7c24c9274e\nthird_party/boringssl/src/fuzz/server_corpus/517aa26723b8801b7b6eaa522b1d9ef2b6863e92\nthird_party/boringssl/src/fuzz/server_corpus/5194a786c4f246728ffdd228bf1a3aecf73927fd\nthird_party/boringssl/src/fuzz/server_corpus/527396c34e64984be7242af28d395fc695803193\nthird_party/boringssl/src/fuzz/server_corpus/5323c5c76efc31e768f1102ca69f838c4f610f17\nthird_party/boringssl/src/fuzz/server_corpus/53659ecce89ed21ace295eb51d04c3d4682a35d0\nthird_party/boringssl/src/fuzz/server_corpus/53b8d54136f323758b8512349d268c9dbc89b769\nthird_party/boringssl/src/fuzz/server_corpus/5506fe6ab44fff394278081f18f47661b8858e61\nthird_party/boringssl/src/fuzz/server_corpus/550c6de19d52cf0178d12b3eece0a701186f798f\nthird_party/boringssl/src/fuzz/server_corpus/5518f546d6c1e9b013e66dd0e3dc86af95bf15fa\nthird_party/boringssl/src/fuzz/server_corpus/55aed3586629570fac664cdb3f97b58cf495d9fb\nthird_party/boringssl/src/fuzz/server_corpus/55fb9ebb5755c11880e6d7c1d3a907c80282b105\nthird_party/boringssl/src/fuzz/server_corpus/56600e121b0605c98b131ee03962901eb5c00f9f\nthird_party/boringssl/src/fuzz/server_corpus/56f39043f9c5bd11444e35b1c88c471b4a3b2dcf\nthird_party/boringssl/src/fuzz/server_corpus/57734d73ffc293ec27ff987c0965d7e595d4dc64\nthird_party/boringssl/src/fuzz/server_corpus/57a71e5204de5c8ef78a112b0be71bc621e0d79a\nthird_party/boringssl/src/fuzz/server_corpus/57df4ed00f406f9cd9af6d0e2feffe082df91761\nthird_party/boringssl/src/fuzz/server_corpus/5820645412502aa980e7d300e2fbd8ea5e6fe156\nthird_party/boringssl/src/fuzz/server_corpus/5899a200b4e0353f7dedefb9fea3a2643a3e07b1\nthird_party/boringssl/src/fuzz/server_corpus/593e021cf28b592a39cf9a89bc31a337e8fcba5b\nthird_party/boringssl/src/fuzz/server_corpus/5a8ea6b2735d677471f668a090a451ad424dcd20\nthird_party/boringssl/src/fuzz/server_corpus/5ab138ec34db3a88a6657ff3c92e9e2ac961788d\nthird_party/boringssl/src/fuzz/server_corpus/5b36b2a85ccba93f17bebfa41924d5d2da9631ef\nthird_party/boringssl/src/fuzz/server_corpus/5b85df01bcc34eab15a8c083d48ba95f1002c367\nthird_party/boringssl/src/fuzz/server_corpus/5b9786b388dcac69eeb336d605b09349c577f77a\nthird_party/boringssl/src/fuzz/server_corpus/5bcf557998414da4bc2e989490b41fdcb7a70983\nthird_party/boringssl/src/fuzz/server_corpus/5bdf24223a3247c80c560e0117551fdac036dd90\nthird_party/boringssl/src/fuzz/server_corpus/5be89060882b5a65ee59fa536ee7314ce8a58905\nthird_party/boringssl/src/fuzz/server_corpus/5bebfe9ba65801179484ee57ffea7e93d6245d15\nthird_party/boringssl/src/fuzz/server_corpus/5c1e061635e7fd602b3bfdc4a0cdfa65cc5751b1\nthird_party/boringssl/src/fuzz/server_corpus/5c8bd84b8153f2d6baa22fdd9e485d22d12b503e\nthird_party/boringssl/src/fuzz/server_corpus/5c9b1f2ec7d6401f040330330ed47e7101fd86fc\nthird_party/boringssl/src/fuzz/server_corpus/5cab4135b16d0aaa5f4a5b5b3bc7257754eb6fe1\nthird_party/boringssl/src/fuzz/server_corpus/5ce3b53ef0f5ff1bd909c0a3fb41be416fbbe0bd\nthird_party/boringssl/src/fuzz/server_corpus/5d6384b5248f87e4ef42af56a4ee44de9c9b80b8\nthird_party/boringssl/src/fuzz/server_corpus/5edf784543003743dc69d76dbc94ea3f2f9d8063\nthird_party/boringssl/src/fuzz/server_corpus/5ef46c070f21d61dc477869747b599f9595796e7\nthird_party/boringssl/src/fuzz/server_corpus/5f6a28210d528a712ef0bef7397c3550a5014ff9\nthird_party/boringssl/src/fuzz/server_corpus/60bfa18b5141d4721fa1f77161e94b92cfe5ce19\nthird_party/boringssl/src/fuzz/server_corpus/611bff1395d37cfebe40961126bcada5aeb9a3ef\nthird_party/boringssl/src/fuzz/server_corpus/6276008ebe737311fe0daf872b50c38f0ccf7259\nthird_party/boringssl/src/fuzz/server_corpus/62a48af78f24759a831d127e401fa34ef0b48373\nthird_party/boringssl/src/fuzz/server_corpus/6338a12bd594b3e2096ea2b183a3f193eacea0ba\nthird_party/boringssl/src/fuzz/server_corpus/63a659a4ada4bf925f09a03981d5f6640fe43ce1\nthird_party/boringssl/src/fuzz/server_corpus/6406a450ebc559f97054f5e6cdb77d40438e7819\nthird_party/boringssl/src/fuzz/server_corpus/6437d9945f8fc394a076462bcdd271f0f65d73d0\nthird_party/boringssl/src/fuzz/server_corpus/647089810cc1deb21961d088c730916c86be6db3\nthird_party/boringssl/src/fuzz/server_corpus/6557ac5a19159d8c16fa1d7a996389c7eef96234\nthird_party/boringssl/src/fuzz/server_corpus/65f6b79cea429f39f6669d64e3653e85e2695a69\nthird_party/boringssl/src/fuzz/server_corpus/6630ad518fc97580dc9e1f291f3661cb448db51d\nthird_party/boringssl/src/fuzz/server_corpus/676049ad1165bc45be4c446b9efd623654700ecf\nthird_party/boringssl/src/fuzz/server_corpus/676c8a4f39c2bef17ec5bfb80ef128c22325953b\nthird_party/boringssl/src/fuzz/server_corpus/67b930c873eaef58768feda77e37b6a989daae0d\nthird_party/boringssl/src/fuzz/server_corpus/67f9f9f0c5dc571443548dee3eaa43e5da943ed5\nthird_party/boringssl/src/fuzz/server_corpus/68ccbbf7037575019290a88ca120e37fd38c314a\nthird_party/boringssl/src/fuzz/server_corpus/68ee51fb0926f7a6f72aa48422109f9050b52132\nthird_party/boringssl/src/fuzz/server_corpus/69bd5142894b008f0a5a56396be56b6a02e0e27e\nthird_party/boringssl/src/fuzz/server_corpus/6ad5786780fd99fb9c00551593c436275fb78db4\nthird_party/boringssl/src/fuzz/server_corpus/6ae20d1545bc022b79d028cbe274bdf2b3ce64c2\nthird_party/boringssl/src/fuzz/server_corpus/6b9a3d316c769c22c32487004d02f0a45251ecde\nthird_party/boringssl/src/fuzz/server_corpus/6c1d519d8abdc17bf8eb0c650d4912e8d4717516\nthird_party/boringssl/src/fuzz/server_corpus/6c64e0fa0c3077c7024b86bd112d2279a84a3198\nthird_party/boringssl/src/fuzz/server_corpus/6f1a320acc1519666e923edbd54ffba0770878da\nthird_party/boringssl/src/fuzz/server_corpus/7033103633833275f2148e19ea662a6b5f7f99e9\nthird_party/boringssl/src/fuzz/server_corpus/703c9b7ea22f9f7d7ea5342fb1b603528ea54841\nthird_party/boringssl/src/fuzz/server_corpus/70c01d4feb193e6632171472faec3ddd5dda0e19\nthird_party/boringssl/src/fuzz/server_corpus/7110aebc25faeb3a98f5c7493f34e8dfe7259774\nthird_party/boringssl/src/fuzz/server_corpus/71178ffc0f7263e9825d6a6fc402fe1e37df8f9b\nthird_party/boringssl/src/fuzz/server_corpus/721f5b496439598dbcc51271dfbb6cd300468942\nthird_party/boringssl/src/fuzz/server_corpus/72904e29a4101aa69111d5ef3ea388d5bca6abf9\nthird_party/boringssl/src/fuzz/server_corpus/73b76a43fe8b46126bde4c9626ca5c4bbe82680d\nthird_party/boringssl/src/fuzz/server_corpus/745299cb67ee3b5afd64802787b6224d8bfa5921\nthird_party/boringssl/src/fuzz/server_corpus/75d0c720e59ff8e03c3b506c5e17a4845c88464b\nthird_party/boringssl/src/fuzz/server_corpus/76790ee802c4219b97471c4f4f7f6730c33ebb2f\nthird_party/boringssl/src/fuzz/server_corpus/76a3b062e1d3a1b19f1185941d3ac3bd2cbe8458\nthird_party/boringssl/src/fuzz/server_corpus/774f5f6cd08e9b015ca7a075ccc45e020d63c78e\nthird_party/boringssl/src/fuzz/server_corpus/776e47c61a9ef4da1e34778618740391c35c1854\nthird_party/boringssl/src/fuzz/server_corpus/7793a091fabba19f878feed5e77f735a37e62f0b\nthird_party/boringssl/src/fuzz/server_corpus/77cff5c40efb406b39069802bebc73bd85ef9622\nthird_party/boringssl/src/fuzz/server_corpus/7849478fd5fd1e79f9aa4e53703a7bf50b7aca38\nthird_party/boringssl/src/fuzz/server_corpus/78dd8777109bbed7077aae8cea518c60b540bcb7\nthird_party/boringssl/src/fuzz/server_corpus/78fc5d40a52c6d7627bc4c6a63a204762ce0437a\nthird_party/boringssl/src/fuzz/server_corpus/7926ff84e3e3d60bbef5d8aa2b43acb8c183126c\nthird_party/boringssl/src/fuzz/server_corpus/79da62d0e1044d89d911ff630d975ebfdcfdd8df\nthird_party/boringssl/src/fuzz/server_corpus/7a20bf91964b88497788d10f2ac9fc97fd8ac09f\nthird_party/boringssl/src/fuzz/server_corpus/7a8c73cea9c48dbe754d3367d7dd2eff63d78fe3\nthird_party/boringssl/src/fuzz/server_corpus/7b20109580dafb6e311ca14a33464d3bcc159846\nthird_party/boringssl/src/fuzz/server_corpus/7b2db2bf1236cb014f03b82e2f46816bd3d1915f\nthird_party/boringssl/src/fuzz/server_corpus/7b350f1c552d937fc537b18f7c7643a2cef162a8\nthird_party/boringssl/src/fuzz/server_corpus/7b41d44f9e48b89d2a1aea6ca97fba934e752e2e\nthird_party/boringssl/src/fuzz/server_corpus/7bd092f7e71e1eb6575777c96780a2650ff0b0f2\nthird_party/boringssl/src/fuzz/server_corpus/7c6647b33f3f487e5d5472b2a3249de4f74bd0ad\nthird_party/boringssl/src/fuzz/server_corpus/7cd92a3d1f746abbba835aae057711981e7c1197\nthird_party/boringssl/src/fuzz/server_corpus/7d41a0bd11324b450f19acb27d710e988895db16\nthird_party/boringssl/src/fuzz/server_corpus/7d6f7ac64346d6e372f7df9a088c6c6d2ebed1ce\nthird_party/boringssl/src/fuzz/server_corpus/7e2349e65344e9cebfa80c1807dcc4585e1686fd\nthird_party/boringssl/src/fuzz/server_corpus/7e46b0aef044768aa690b6a2f4f79cf198272431\nthird_party/boringssl/src/fuzz/server_corpus/7e49f7eed0f563792d57ef3192e0f3d8f940362b\nthird_party/boringssl/src/fuzz/server_corpus/7f525a74a61a07bd0fe96372172d3a562748db25\nthird_party/boringssl/src/fuzz/server_corpus/7f7b944b245c79a393b9dbb06034391a6472a438\nthird_party/boringssl/src/fuzz/server_corpus/7fa0e208ee5fdde8f4597e7d80d6bcb1e0b8fef2\nthird_party/boringssl/src/fuzz/server_corpus/7fa3e02659107717cffa607c80a8ab0926f0023a\nthird_party/boringssl/src/fuzz/server_corpus/7fbbd3611f4745dd11326b9aa98789fdd5317226\nthird_party/boringssl/src/fuzz/server_corpus/7fcae221a6fb5ee9cbdc1b04c207b2f61ea7698e\nthird_party/boringssl/src/fuzz/server_corpus/801ad1e0acb46e7543954772c32f7e77f22fd695\nthird_party/boringssl/src/fuzz/server_corpus/802c8691245f7112ed1f16568397463138f1a071\nthird_party/boringssl/src/fuzz/server_corpus/80beb613ab236cf7178f27b94e2ebdf8705fdd57\nthird_party/boringssl/src/fuzz/server_corpus/8180f89dd6aaf304490d3381ce9e696f605b6feb\nthird_party/boringssl/src/fuzz/server_corpus/81c7a3f820923de6af1ce58a251390a03e59b002\nthird_party/boringssl/src/fuzz/server_corpus/81ca016442a2c6a2a0674a1aa990c339c25a84c1\nthird_party/boringssl/src/fuzz/server_corpus/81ff6876c1e7678da8cfe28724c237c7ee9d5863\nthird_party/boringssl/src/fuzz/server_corpus/824aad3da574c6e693c53d3105b299e16d3f2388\nthird_party/boringssl/src/fuzz/server_corpus/83050fd71fdffad5521d713a11e2e274974f4e69\nthird_party/boringssl/src/fuzz/server_corpus/8311155ac46bae1fc887b1f05c260972e689d88d\nthird_party/boringssl/src/fuzz/server_corpus/83175afb805f1724e3f90db080a6f085cc235acc\nthird_party/boringssl/src/fuzz/server_corpus/840ce4b082a6762b66d6284e981e0e9f29abd211\nthird_party/boringssl/src/fuzz/server_corpus/8417e42a1fe86bbd2c1b5d6ced6f3a51fc431d8d\nthird_party/boringssl/src/fuzz/server_corpus/84e9bee8189e405a4e29b33d411353aac4b6dce8\nthird_party/boringssl/src/fuzz/server_corpus/85370d249d65aa2a98720457d685ecb6d24bc27d\nthird_party/boringssl/src/fuzz/server_corpus/862191460d9266ca576cc67ed4e635f19c84e350\nthird_party/boringssl/src/fuzz/server_corpus/869f0c1aeee7f3cf148b2fd536199df7aa9214e6\nthird_party/boringssl/src/fuzz/server_corpus/86f2df0d0bdddb98cb6c16bf6e467be212f9e5ae\nthird_party/boringssl/src/fuzz/server_corpus/8767010bca1093dab884298472f3c810cba3718b\nthird_party/boringssl/src/fuzz/server_corpus/87c9ad41d338fd39b3e2d18e90a19689b2aa0a4a\nthird_party/boringssl/src/fuzz/server_corpus/88fbadaa4011de66b7de55d7f1a5ac92f7f9ad5e\nthird_party/boringssl/src/fuzz/server_corpus/895f1b87f6d991d9d690dbdf6f54761fcd975582\nthird_party/boringssl/src/fuzz/server_corpus/8992056e63812be6fcc096bc9cd77158c18c7e96\nthird_party/boringssl/src/fuzz/server_corpus/89b2f527463e7b3c74430435407ca811c74d8cea\nthird_party/boringssl/src/fuzz/server_corpus/8a712e268ce3db47e079a7dfa138a0426a2a6b8d\nthird_party/boringssl/src/fuzz/server_corpus/8b41db3a58cfcc484be4b1eacd8cc9f1264090ab\nthird_party/boringssl/src/fuzz/server_corpus/8baeb58c7c4a2d0297f9e350f0554f0b61919891\nthird_party/boringssl/src/fuzz/server_corpus/8bf41d8b3808360285ca461d0d86843ab50dd60c\nthird_party/boringssl/src/fuzz/server_corpus/8c4a1f8f0dcffd3016b240da8ba969ea1f42f2be\nthird_party/boringssl/src/fuzz/server_corpus/8c4c0e35e8a947355f331d8bd9e195680985a58b\nthird_party/boringssl/src/fuzz/server_corpus/8c8b05830795351152c78f25810381ed9e0dbef9\nthird_party/boringssl/src/fuzz/server_corpus/8cbb00a724255fbcc73fe415583d60d4b5d1d04e\nthird_party/boringssl/src/fuzz/server_corpus/8cc9ef63fea6954c9af8416005525db090419cee\nthird_party/boringssl/src/fuzz/server_corpus/8d529debd66a67271cf4b1909938d517adc35157\nthird_party/boringssl/src/fuzz/server_corpus/8df729102a2d35ebc97ad212890fd51529f6dcda\nthird_party/boringssl/src/fuzz/server_corpus/8fb2be0735f1517db41588127f086e50cb555143\nthird_party/boringssl/src/fuzz/server_corpus/90d7ff2d7fd456c8126226f41b65a84e0a1d7d33\nthird_party/boringssl/src/fuzz/server_corpus/9136e4d20a8420b2ed4d459ae1942ef50fdf8052\nthird_party/boringssl/src/fuzz/server_corpus/91be88a16cd8e9e863822788703afb5461276fa0\nthird_party/boringssl/src/fuzz/server_corpus/91f2cad8f7246ddadd1d5f679087683d3ae3d195\nthird_party/boringssl/src/fuzz/server_corpus/9246ffd4626557c6968ceb5672af00a2f906dfb6\nthird_party/boringssl/src/fuzz/server_corpus/9281f2a52d6e17d5cf88d0af47b431e49c886cfb\nthird_party/boringssl/src/fuzz/server_corpus/929ff17e78d77731f2265da58028fde629f10bb9\nthird_party/boringssl/src/fuzz/server_corpus/92d9a1b4346215d3410275cdd279b01bead7d5ec\nthird_party/boringssl/src/fuzz/server_corpus/930e81987ffeba9a6923675a5409cc18ffb9ddf9\nthird_party/boringssl/src/fuzz/server_corpus/93a74b8c6fdc3d536bdf2f6c716b4689f6a2d6d9\nthird_party/boringssl/src/fuzz/server_corpus/93ca2c1111a586013c917599e3fecbf696f3f710\nthird_party/boringssl/src/fuzz/server_corpus/9463bad3abd25f33e55847f46ee4aa37f29a9013\nthird_party/boringssl/src/fuzz/server_corpus/94d9ab7e57996f993bff6601b4be61111320827e\nthird_party/boringssl/src/fuzz/server_corpus/94fdcc30fbeb38416b2d6fe020427f771518e05d\nthird_party/boringssl/src/fuzz/server_corpus/958409936feeb7ba8462e144d5685852f5848274\nthird_party/boringssl/src/fuzz/server_corpus/959b1a7e4d90a6916910f00d421f1859737da667\nthird_party/boringssl/src/fuzz/server_corpus/959c1f4abfcbb7e3bbb3375db6fb7e869f3e72ad\nthird_party/boringssl/src/fuzz/server_corpus/95a329aa666948e3c7e26a0f9802a8b730698f9b\nthird_party/boringssl/src/fuzz/server_corpus/95a929f27c932c8add4d8e668b8990081173e584\nthird_party/boringssl/src/fuzz/server_corpus/9623746829a65d542851478dba5e9ea5fc60b664\nthird_party/boringssl/src/fuzz/server_corpus/9642dd10833e6e823fef684f682dfe196956ca9d\nthird_party/boringssl/src/fuzz/server_corpus/971733f112c3e7c293a7eaf8f83d5de804793b52\nthird_party/boringssl/src/fuzz/server_corpus/9756b988afe8bf1c64c983c8cf67ae2de7f7a700\nthird_party/boringssl/src/fuzz/server_corpus/97e95b4bfc5504e79927a932c4b4fb43e67d8c14\nthird_party/boringssl/src/fuzz/server_corpus/97f63639b6cbc864df541cb80f26232b78a4e7b8\nthird_party/boringssl/src/fuzz/server_corpus/9805b5135b5a369bf7a72796cd055a44c7490dd8\nthird_party/boringssl/src/fuzz/server_corpus/985788a281c53ea9c227f421fb1c430526cb94b6\nthird_party/boringssl/src/fuzz/server_corpus/985c30aeba0ac2eaa724f95faf2d00dd6160260d\nthird_party/boringssl/src/fuzz/server_corpus/989493fc889dbfd224e01105e07bc8b5c587b9cb\nthird_party/boringssl/src/fuzz/server_corpus/98b8f7673fd5fb2abd8d0436725aa0d842e8aeb9\nthird_party/boringssl/src/fuzz/server_corpus/98d196b74441d547a274db7e960998f327109511\nthird_party/boringssl/src/fuzz/server_corpus/98d306a3275db9348f029c12d8a2ffa07b60b17b\nthird_party/boringssl/src/fuzz/server_corpus/994eb4fc829cbad4f0c3cb7a5508ab0d60f29323\nthird_party/boringssl/src/fuzz/server_corpus/9981e7a43c6d35b6e5c853057ca795a848182a36\nthird_party/boringssl/src/fuzz/server_corpus/9b2454996cb666d576b66726d795e12eb3282f60\nthird_party/boringssl/src/fuzz/server_corpus/9bcf275bae2c3965820c447a331f95f1a159175f\nthird_party/boringssl/src/fuzz/server_corpus/9be577c18aab8a69511c298dc2941b9b1bfbf92a\nthird_party/boringssl/src/fuzz/server_corpus/9c34981b88a050357ca2db56e4062d73caf117f0\nthird_party/boringssl/src/fuzz/server_corpus/9c61299a2c8db8b9c3b5c52b7193270e29f6ec77\nthird_party/boringssl/src/fuzz/server_corpus/9cb5d0216b08919b8db0cd32c969bc3e089c292b\nthird_party/boringssl/src/fuzz/server_corpus/9d39a6c74b932fa6952c4bc557ef48f3d7b01a6e\nthird_party/boringssl/src/fuzz/server_corpus/9e79a32a080793bb5c2fed4bae7e9dd9e62a450e\nthird_party/boringssl/src/fuzz/server_corpus/9e7d0bc0173340d5c128335585a9b6148b9500cc\nthird_party/boringssl/src/fuzz/server_corpus/9f032fe134e8df722ffb7935e1c04c290a4ad464\nthird_party/boringssl/src/fuzz/server_corpus/9f58ec28f61263e8bb6d03040e525ac6138791e0\nthird_party/boringssl/src/fuzz/server_corpus/9fb64b2073ee0c8eb87752eff64134418d4d567e\nthird_party/boringssl/src/fuzz/server_corpus/a073adac3f46be4e4ef7680b33d5f01a8baf5cea\nthird_party/boringssl/src/fuzz/server_corpus/a1bf5a13fa7c7cbf37ccaf51dbb8393f7b8d5b69\nthird_party/boringssl/src/fuzz/server_corpus/a2bfe9f3118afd8712d87d10a3d80956977a6550\nthird_party/boringssl/src/fuzz/server_corpus/a3984c6e1626fdc3859d1d18c5414300e73e3e09\nthird_party/boringssl/src/fuzz/server_corpus/a3b32f588723a5e570b649a21e0582a58ad961f0\nthird_party/boringssl/src/fuzz/server_corpus/a3fd12b9f62bfd0404c5b731a5cdef86f3fbedb5\nthird_party/boringssl/src/fuzz/server_corpus/a4025775158a7947f004d5c14d976cbb07f15ed8\nthird_party/boringssl/src/fuzz/server_corpus/a4453bdbd5ce958f3d26dc05a1607aa7be0f617e\nthird_party/boringssl/src/fuzz/server_corpus/a4596413a1bb15cbc9b05b2c339e6db2b1c272f0\nthird_party/boringssl/src/fuzz/server_corpus/a5448c7734739c3ab33a23042802184bc4c90470\nthird_party/boringssl/src/fuzz/server_corpus/a57552d5fc0489e540e6b1bfaa34c9488c81cd7c\nthird_party/boringssl/src/fuzz/server_corpus/a6c3849c4b77bc0766159ccfb5c9c4f967670150\nthird_party/boringssl/src/fuzz/server_corpus/a6f3f350d42893f2cd2c1402284618e2fec769e5\nthird_party/boringssl/src/fuzz/server_corpus/a72755909c898005e518086a497b3f9bb4251525\nthird_party/boringssl/src/fuzz/server_corpus/a739e2d445d18e5f8abab7b11b3f6223971675f1\nthird_party/boringssl/src/fuzz/server_corpus/a78123b4f5a448f59d3e929d5ea5ecc1dca21277\nthird_party/boringssl/src/fuzz/server_corpus/a798d1faafda0a53d4c8a50a4dc958f24d62620f\nthird_party/boringssl/src/fuzz/server_corpus/a8214199e6bc6e40662ed6450e66d903dbe54844\nthird_party/boringssl/src/fuzz/server_corpus/a829ded0839150bdb2c7776ff81176df72117f3e\nthird_party/boringssl/src/fuzz/server_corpus/a88c61ac8d76739c79b34337d1ed0d319017936b\nthird_party/boringssl/src/fuzz/server_corpus/a92393954fb7770060b70a37143b03c7ac8f17e0\nthird_party/boringssl/src/fuzz/server_corpus/a95aa0e69dec38691357a5250f9e80e87a11b530\nthird_party/boringssl/src/fuzz/server_corpus/a99cd94438d7df5192f0913f45236b6ffddb1e14\nthird_party/boringssl/src/fuzz/server_corpus/a9f81fd12c58db7c9574b5df75c5e24462c839f4\nthird_party/boringssl/src/fuzz/server_corpus/a9f852dc8958bba16c685a455e867501afb31e72\nthird_party/boringssl/src/fuzz/server_corpus/aae019279a0c7900da44485a1b0a5dc6142ea21d\nthird_party/boringssl/src/fuzz/server_corpus/aae73cecab585e74fc50128230c90be687998285\nthird_party/boringssl/src/fuzz/server_corpus/aaee3d02c5b40e6ca1954304f60b20a07c3918b9\nthird_party/boringssl/src/fuzz/server_corpus/aafff906acf6636012e8c1abc35405c90f842497\nthird_party/boringssl/src/fuzz/server_corpus/ab614a93e616e3dac52383dadc67a65c65edfd39\nthird_party/boringssl/src/fuzz/server_corpus/ab6fdeee6ccfd0c9ce0784a11182813abc816b2a\nthird_party/boringssl/src/fuzz/server_corpus/abd05a8de5d4f087692177ecc5342d6fd1aa8a7d\nthird_party/boringssl/src/fuzz/server_corpus/ac66b26753ab258bee78da83be3c08244184c394\nthird_party/boringssl/src/fuzz/server_corpus/ae8703e80c04ce723cab49b1e7ae074756937052\nthird_party/boringssl/src/fuzz/server_corpus/af10d08638cb276031a38616da54b5ef22a61740\nthird_party/boringssl/src/fuzz/server_corpus/af3cbe6c7b1914d651684d655ac8d5310b91507e\nthird_party/boringssl/src/fuzz/server_corpus/af706c19a32116c657c2458ac4370722d72d67af\nthird_party/boringssl/src/fuzz/server_corpus/afd8fc0c3d43d9960784e2500466a6b1c3923fc4\nthird_party/boringssl/src/fuzz/server_corpus/b14bf9b60379f6fde0224ba7256042e113e17c12\nthird_party/boringssl/src/fuzz/server_corpus/b1df59e123891b2f93c814cfb28487699d824a72\nthird_party/boringssl/src/fuzz/server_corpus/b270aa4bd506203b514d34fd4b8d671832d7c108\nthird_party/boringssl/src/fuzz/server_corpus/b2f7450588592354c260f5fc07f7ed2205d89d36\nthird_party/boringssl/src/fuzz/server_corpus/b34e617b165bab370f253fff42b81b737a39476e\nthird_party/boringssl/src/fuzz/server_corpus/b37c7244ce3fa00952a6f28f3e855aa2f1919a98\nthird_party/boringssl/src/fuzz/server_corpus/b3d8d5aa494152723871a49605962abb69c8a1ba\nthird_party/boringssl/src/fuzz/server_corpus/b3f25ad31c75ab3828a121c76c97c51aa0faadc2\nthird_party/boringssl/src/fuzz/server_corpus/b44d8b156bda86bc45b8cd14e253b346f714ed8b\nthird_party/boringssl/src/fuzz/server_corpus/b452ae2c8055fffe680647d163d941ad96deef9e\nthird_party/boringssl/src/fuzz/server_corpus/b4e118750bf130774c11d8caae6bbcb152291e76\nthird_party/boringssl/src/fuzz/server_corpus/b5a50dc15fc08a47f0dd8dc00eabdad63d6ffb11\nthird_party/boringssl/src/fuzz/server_corpus/b5aca9463efda591b9415e7e68d35e82ff6e9a4f\nthird_party/boringssl/src/fuzz/server_corpus/b645eadfe63851bbbff943332b9164675489fdea\nthird_party/boringssl/src/fuzz/server_corpus/b675c4e95985e850d9c0c2b6019622e96a8e3f2b\nthird_party/boringssl/src/fuzz/server_corpus/b6b5963313280ece651c786756ce12185ebaca15\nthird_party/boringssl/src/fuzz/server_corpus/b70c4af52ca2819b2f92b507e4266dd82f3e9d6a\nthird_party/boringssl/src/fuzz/server_corpus/b710e9edc2af35bea6231c3bc3d2f2805886c22a\nthird_party/boringssl/src/fuzz/server_corpus/b7abd59f85e262f3998e8d7ad014c2c89d36da2e\nthird_party/boringssl/src/fuzz/server_corpus/b7b5a436f812396d93bdead261181c092e732349\nthird_party/boringssl/src/fuzz/server_corpus/b892c387b2dd448ee601337c3e6b310036fb3c39\nthird_party/boringssl/src/fuzz/server_corpus/b8936c625a6fdace06eeb9f29dbe279256f31fd6\nthird_party/boringssl/src/fuzz/server_corpus/b93f9b79956fb8f8329723eb8101aabe14e86e75\nthird_party/boringssl/src/fuzz/server_corpus/b94ccff912094ae1dc375e2c224e4242f3719dc7\nthird_party/boringssl/src/fuzz/server_corpus/b955b8b50862161194a267301e6649b69587fa8b\nthird_party/boringssl/src/fuzz/server_corpus/b96a12c6ff8122c1dbaca92c37d30e4e4960036a\nthird_party/boringssl/src/fuzz/server_corpus/b97e458fae40a7d62eae2a3bb5d277cf63839d12\nthird_party/boringssl/src/fuzz/server_corpus/b98ca0288a4797dba4ad579f751fad06421c8d78\nthird_party/boringssl/src/fuzz/server_corpus/b99fe43a4ea84a207a45279f9e385353270c56e7\nthird_party/boringssl/src/fuzz/server_corpus/b9dc258d38fef14c3ad2302abd27c6f582c3b0ba\nthird_party/boringssl/src/fuzz/server_corpus/ba6c4f2d0505f13c41453cc9ab03ecf18204a519\nthird_party/boringssl/src/fuzz/server_corpus/ba90e6e58fa5589ebb2b5a26e8d8dd372bb5be61\nthird_party/boringssl/src/fuzz/server_corpus/ba95d3aec06836bd2f168dc0db745c2ba8048c57\nthird_party/boringssl/src/fuzz/server_corpus/ba981e85fea1397dfe46f98d286f7ca0ccd1975a\nthird_party/boringssl/src/fuzz/server_corpus/bb104d37742b84d1a7909896c2531076c2102ee0\nthird_party/boringssl/src/fuzz/server_corpus/bb7c210cf8bbf1dbdfb781af35473180354a93cf\nthird_party/boringssl/src/fuzz/server_corpus/bc6bd4081663dd28da74b1691617c140e3791fed\nthird_party/boringssl/src/fuzz/server_corpus/bddf65ecf0812e7498226bb4a907ce2398febdaf\nthird_party/boringssl/src/fuzz/server_corpus/bdfe3aa86a5df04fb0a10a9486de9ee11d294b81\nthird_party/boringssl/src/fuzz/server_corpus/bf92b35f52e24b39046efa1394d609b88f05708a\nthird_party/boringssl/src/fuzz/server_corpus/c07dc4f71b2b35b9e67ad5555e2e2fc1cd53392a\nthird_party/boringssl/src/fuzz/server_corpus/c08d9c1e6da141c68585da137592cc94d52d09a2\nthird_party/boringssl/src/fuzz/server_corpus/c095ef83741e7dc39bd78b51cfad9a983b7130b9\nthird_party/boringssl/src/fuzz/server_corpus/c0b9ba63f6d8ed159aef4a9b2906ca3cbc4d3b2c\nthird_party/boringssl/src/fuzz/server_corpus/c1a7f86390db27e3ecde2a42d024a2668c604342\nthird_party/boringssl/src/fuzz/server_corpus/c1e894ad9156e24e9127f6567c1491369e14d5d0\nthird_party/boringssl/src/fuzz/server_corpus/c1f5f28dd59e11c565a46f15f3d6855630420e32\nthird_party/boringssl/src/fuzz/server_corpus/c24d3cccfe8869149850d2037a7c8d7cfd267d74\nthird_party/boringssl/src/fuzz/server_corpus/c28c78d83d45a210030ff178336ce31fb522bbe4\nthird_party/boringssl/src/fuzz/server_corpus/c28d2a04a1324308f280042bb4caf408fe092adb\nthird_party/boringssl/src/fuzz/server_corpus/c2938bfcc8c53cabd7b88a66e08a2b3a5435ecf4\nthird_party/boringssl/src/fuzz/server_corpus/c2b99e8b229591250e8211c90f70914afb74f14e\nthird_party/boringssl/src/fuzz/server_corpus/c35d18d95ba659c8f3c2a05365b896b4ead07f99\nthird_party/boringssl/src/fuzz/server_corpus/c49b86641c88d6fef43e5d8934186ec00cc4ab9c\nthird_party/boringssl/src/fuzz/server_corpus/c4e56cac35cfe89088afe637256ba999be99c60f\nthird_party/boringssl/src/fuzz/server_corpus/c5ea01b14f9fc9082778650e0a734b43d5759f25\nthird_party/boringssl/src/fuzz/server_corpus/c63b1cdf0ae77f6d9fa37e21cf12853bbe3fad85\nthird_party/boringssl/src/fuzz/server_corpus/c64c8c098b60cad4f15349a7867a9771ac3388a7\nthird_party/boringssl/src/fuzz/server_corpus/c6b4907fc1c449f2d5d1f99b215ad11253fa5055\nthird_party/boringssl/src/fuzz/server_corpus/c72432ec56a0aa75e92627f5a84423cc3304f4a9\nthird_party/boringssl/src/fuzz/server_corpus/c75f5b3eb55b26d64b8fd27508f0cf26a6d94461\nthird_party/boringssl/src/fuzz/server_corpus/c7e8a64c99fb8bfbb300b3b2a4c488d404083223\nthird_party/boringssl/src/fuzz/server_corpus/c86ea6491a2fc788eb6f463c590b83517ba3ded4\nthird_party/boringssl/src/fuzz/server_corpus/c8a62cd8e28be15f8ac18cce9f86e9111b798149\nthird_party/boringssl/src/fuzz/server_corpus/c8ca71e441e00e36e88e2d65acff1d0fcd066181\nthird_party/boringssl/src/fuzz/server_corpus/c9230554c746ebf0fd64dbcb3fac2f83510eba21\nthird_party/boringssl/src/fuzz/server_corpus/c93640c586c2c26335254f3927685af9c4bbb1b2\nthird_party/boringssl/src/fuzz/server_corpus/ca6a958e3e0f8bbdc5b65de2a3cb01b1328b1d2b\nthird_party/boringssl/src/fuzz/server_corpus/ca875771027ff691b9befcfc704ee2820afe7306\nthird_party/boringssl/src/fuzz/server_corpus/cb2255588304ded0676f605a13689ff1545db9e5\nthird_party/boringssl/src/fuzz/server_corpus/cba7661f1bb778d5fd731b4d07dbaeef535efb8a\nthird_party/boringssl/src/fuzz/server_corpus/cc071b1e330754548d02a1c220d80a5c96b1249d\nthird_party/boringssl/src/fuzz/server_corpus/cc50d207f8ddacd10b5d20037820173d94e9ba55\nthird_party/boringssl/src/fuzz/server_corpus/ccf92abac46acb774570c04d9564cd7bf1b3cd14\nthird_party/boringssl/src/fuzz/server_corpus/ccfd302c42179819000207bb9e3c99836e355fb2\nthird_party/boringssl/src/fuzz/server_corpus/cdbcbdfd2cbe3a0da118265268760478a8b6d40e\nthird_party/boringssl/src/fuzz/server_corpus/ce0becbb650090efd38fc81c6f3580a0f3729917\nthird_party/boringssl/src/fuzz/server_corpus/ce379cfdfd574ed0eae276cccba12f66dc37020e\nthird_party/boringssl/src/fuzz/server_corpus/cf2634dfbb707d5cc7c386a6429b8ce8797b165a\nthird_party/boringssl/src/fuzz/server_corpus/cf84b5aaf37e2f6c0d6c961ea7a320551fc95400\nthird_party/boringssl/src/fuzz/server_corpus/cfcfd583541d14102cb3d04ea39f8b9f832b1f83\nthird_party/boringssl/src/fuzz/server_corpus/cfde569d073b9ecf0e0a4da7db51a299e4045e82\nthird_party/boringssl/src/fuzz/server_corpus/d043cc8d21cece08d5f822e1c638a9c4b33c196b\nthird_party/boringssl/src/fuzz/server_corpus/d06b42cbc0adc9a873e2d441b48fd02ee2cca941\nthird_party/boringssl/src/fuzz/server_corpus/d09338bb34900df890ca7e489121bee5819e3fa2\nthird_party/boringssl/src/fuzz/server_corpus/d0ad6c3c9e64c0247154d1bc6f5ddfb28a4050e4\nthird_party/boringssl/src/fuzz/server_corpus/d12e50f9168b09e26db64cd633798f50a3eb853b\nthird_party/boringssl/src/fuzz/server_corpus/d1b6e3764a394b18a02aead5689cce0a3d2e5807\nthird_party/boringssl/src/fuzz/server_corpus/d2de40201797384be8b1dade0151651915f7d340\nthird_party/boringssl/src/fuzz/server_corpus/d517a5be9b607fa0a608ba42e5565d08df9b4010\nthird_party/boringssl/src/fuzz/server_corpus/d5c44ed21c8c6c4cbcff3c8562d7b17d7c8d1353\nthird_party/boringssl/src/fuzz/server_corpus/d618f184b503bad8652558c46a44a30ad5665078\nthird_party/boringssl/src/fuzz/server_corpus/d64398fb6922b8496b7db160042be7ec9a1089ce\nthird_party/boringssl/src/fuzz/server_corpus/d656c4d08908e6431beeb1dc375b4926e1389a0b\nthird_party/boringssl/src/fuzz/server_corpus/d6c176d1c068430166df8554b39e7f0aa42ef594\nthird_party/boringssl/src/fuzz/server_corpus/d70d48d9fc4f8ecb62754fda6dc28ec407744312\nthird_party/boringssl/src/fuzz/server_corpus/d7120f106e982db1a9d965a42a7d6800370c9966\nthird_party/boringssl/src/fuzz/server_corpus/d7181cdfbfd4d8296bb7252efccd2e77408808f9\nthird_party/boringssl/src/fuzz/server_corpus/d8971b51391a55bc9e7b4148a0b9fcb4afc393ae\nthird_party/boringssl/src/fuzz/server_corpus/d90bdcda7ba866bab86ae83feb9aec5ef6549902\nthird_party/boringssl/src/fuzz/server_corpus/d94a3f235821b70b992bd17b00903da283027de3\nthird_party/boringssl/src/fuzz/server_corpus/d9b8bcbae65ae98899984683afde7e551bbb5e0f\nthird_party/boringssl/src/fuzz/server_corpus/da1de3833aa970b9cbe0126cf9af5d8a70b74b3e\nthird_party/boringssl/src/fuzz/server_corpus/da27b4c7d48c40380f200b1ae505dc3069b3346a\nthird_party/boringssl/src/fuzz/server_corpus/da6a90e60c844604902a7bc5a40584dde788b084\nthird_party/boringssl/src/fuzz/server_corpus/da78bf3dd1a1b85075870fa99805d2d855fac2fa\nthird_party/boringssl/src/fuzz/server_corpus/db0364479b679e607b6bd082626bb64555a7a171\nthird_party/boringssl/src/fuzz/server_corpus/db77457a6d70338051b0a6e48f074a7b59ad8e12\nthird_party/boringssl/src/fuzz/server_corpus/dbd76258aa46d1c2a5d70d063e84e90bc1e4121e\nthird_party/boringssl/src/fuzz/server_corpus/dd1e5f0f9346baef3d9149bd9ebe55ddc8aa3a7f\nthird_party/boringssl/src/fuzz/server_corpus/dd27b92eed552fb3bd5c379a7ab7939d52add722\nthird_party/boringssl/src/fuzz/server_corpus/dd7914d69e864e336840594315525736d4a6d6e1\nthird_party/boringssl/src/fuzz/server_corpus/df951c7c1b68a233f59456842b368e6d7b41587d\nthird_party/boringssl/src/fuzz/server_corpus/e111319f587d560b0c420a54dfb785d952a9dc1f\nthird_party/boringssl/src/fuzz/server_corpus/e1e41d2326fe0de1712b46f4a92a728a3a33142e\nthird_party/boringssl/src/fuzz/server_corpus/e25aa5443228efde91daef6e43bfed771477093d\nthird_party/boringssl/src/fuzz/server_corpus/e2c1041c292a794a7b9043083d7ce1779c1265e2\nthird_party/boringssl/src/fuzz/server_corpus/e493f261273edf063fa643c66e14c15f059a17a9\nthird_party/boringssl/src/fuzz/server_corpus/e4c534d22c6571469ff83761d883623d3546e466\nthird_party/boringssl/src/fuzz/server_corpus/e4ca779155a2ac65415a30eee6a9a4aa1c07b35b\nthird_party/boringssl/src/fuzz/server_corpus/e507612f3ea21e4e71ee87bb2667b497e3a6a73d\nthird_party/boringssl/src/fuzz/server_corpus/e5ad077a0ce16a1adbec0e45c9c85a6689db4a46\nthird_party/boringssl/src/fuzz/server_corpus/e5b74311f06564cc90891a87f0916780822b92dd\nthird_party/boringssl/src/fuzz/server_corpus/e5dbf1327e79895153fa42ceefeec7eda6fc8755\nthird_party/boringssl/src/fuzz/server_corpus/e6027a81e6f763a077248edadb268aa4260e44b5\nthird_party/boringssl/src/fuzz/server_corpus/e604b5ad4073ee5c5ffa378dfb4afdd071a091f3\nthird_party/boringssl/src/fuzz/server_corpus/e62840531b1b856eb443d4c44aa816ecb77956c2\nthird_party/boringssl/src/fuzz/server_corpus/e677b1f4452c206a64f1a139885ab636e5561ef2\nthird_party/boringssl/src/fuzz/server_corpus/e72c7c42724b69d428ef84456b469fd5f0e21ab3\nthird_party/boringssl/src/fuzz/server_corpus/e7878fcecb311ea866ce4eda988043c1019d8db8\nthird_party/boringssl/src/fuzz/server_corpus/e80074d9c02fb8bb7e38fbd3436f521fea618f7b\nthird_party/boringssl/src/fuzz/server_corpus/e855a42f253b08e0daeb51585bbe2cb5489e4f95\nthird_party/boringssl/src/fuzz/server_corpus/e8b38cb2b910c355f0ada1bb844416f8636b49b9\nthird_party/boringssl/src/fuzz/server_corpus/e96ba13c0b68fdd0be0e6faf38d7d4789d9d6cba\nthird_party/boringssl/src/fuzz/server_corpus/e9b63b2be0c99f8fff8d61d6033831544b80b034\nthird_party/boringssl/src/fuzz/server_corpus/ec6a0b75036edaa5bb756ed508ad8361214c7f5c\nthird_party/boringssl/src/fuzz/server_corpus/ecd8ea0ef2684f8af1ed6b875914b12e04e173d7\nthird_party/boringssl/src/fuzz/server_corpus/ed2054da9e5ced772fd2a6678ae639400874fb35\nthird_party/boringssl/src/fuzz/server_corpus/eda3344b4658865e082a2339efb1555a7e382d9e\nthird_party/boringssl/src/fuzz/server_corpus/edb257f0614684369b4ac771b4a00c2f9e125341\nthird_party/boringssl/src/fuzz/server_corpus/ee31b271ce14cbd5372de311c6fcc5ae9262e05b\nthird_party/boringssl/src/fuzz/server_corpus/eefec8f96f2e6eeef784a5b79d57de24e60ff275\nthird_party/boringssl/src/fuzz/server_corpus/ef176236eeff5cd0b8dc1c607d0179083212fc78\nthird_party/boringssl/src/fuzz/server_corpus/ef89de5566f7ccb394e5a5bcc83179c9465e8164\nthird_party/boringssl/src/fuzz/server_corpus/f0822b171dcaa395b98a911e170cf65be323bbc6\nthird_party/boringssl/src/fuzz/server_corpus/f15213b8e1049fa9a327d3791fd5660932afa89b\nthird_party/boringssl/src/fuzz/server_corpus/f1f07a7b203a5a935bdc40c750b780663af7483e\nthird_party/boringssl/src/fuzz/server_corpus/f22cf507459734bba03b208fb9675ab47073c3a5\nthird_party/boringssl/src/fuzz/server_corpus/f291ee3fbf5966239d3bfc1c44841e44141d2033\nthird_party/boringssl/src/fuzz/server_corpus/f32d2b09eaba6e74dd1c605443af862b18e3850f\nthird_party/boringssl/src/fuzz/server_corpus/f33bff345898388806bbb33bb93b5a1d7e15b50c\nthird_party/boringssl/src/fuzz/server_corpus/f3b0fb38fefff0d049362dbe2aa8cf3c8b5aa51d\nthird_party/boringssl/src/fuzz/server_corpus/f3f655485aecd8ac9ec91c8517d5fc45a7dd5973\nthird_party/boringssl/src/fuzz/server_corpus/f57c3797d6efeea636c170c716a9375f033214e4\nthird_party/boringssl/src/fuzz/server_corpus/f5842fc854d57ec46637be0816caa8ecf595e83e\nthird_party/boringssl/src/fuzz/server_corpus/f5e66338a91dc02a44cacd67d28307c7415ddb31\nthird_party/boringssl/src/fuzz/server_corpus/f63693f3613310448d6ba07f32262196714fddc8\nthird_party/boringssl/src/fuzz/server_corpus/f66d09257eeb79826740163065f0184de8a0eb64\nthird_party/boringssl/src/fuzz/server_corpus/f6fc98e74ff5dfc981e52ee8afecb0bd4f5e2e77\nthird_party/boringssl/src/fuzz/server_corpus/f72fc9992a10abbff8af0e658bdd950cfc44072b\nthird_party/boringssl/src/fuzz/server_corpus/f7af4e777244b717fd6979fa67dffbf6d675dc75\nthird_party/boringssl/src/fuzz/server_corpus/f804e850da50817af75b07194c929f1c49eb2abe\nthird_party/boringssl/src/fuzz/server_corpus/f87540a7c651d8444ce7bdd61bf3db777d96af5d\nthird_party/boringssl/src/fuzz/server_corpus/f9e447c3612f52a58266e539fcbec9479452b000\nthird_party/boringssl/src/fuzz/server_corpus/fa2e950dee2e2dfb6dfe81e6f47242e9e1f16dc5\nthird_party/boringssl/src/fuzz/server_corpus/fb547d6d1279820895d9d1cdb4e712cb284c8bab\nthird_party/boringssl/src/fuzz/server_corpus/fb9d71db1caca5acd166c5704ad00a434542e820\nthird_party/boringssl/src/fuzz/server_corpus/fbffa655536dc027faf00260f0a1373a3df3056b\nthird_party/boringssl/src/fuzz/server_corpus/fc0df2e87565d4870fdc469a6eaf9dda146b1b9d\nthird_party/boringssl/src/fuzz/server_corpus/fcb6fc93b91bc83b5a41ce5a60b15785231bc342\nthird_party/boringssl/src/fuzz/server_corpus/fd45441a2193f07bcc430bb90ad9f9c981aab93c\nthird_party/boringssl/src/fuzz/server_corpus/fdc3224638be61e73432011e13cc9b74f144ebe9\nthird_party/boringssl/src/fuzz/server_corpus/fdcfd3e231301b9d1d9272bbb3ec9336b007cc70\nthird_party/boringssl/src/fuzz/server_corpus/fe55c35dba128f7f155422d697382acef2e9b340\nthird_party/boringssl/src/fuzz/server_corpus/fe6799444c1073c5644933b65d1fae22cd048677\nthird_party/boringssl/src/fuzz/server_corpus/ff0bd5b7e18fe68699839a3d5cc1a9ff8b6b46e8\nthird_party/boringssl/src/fuzz/server_corpus/ffc928938510a6704bff891e999acf92572f461b\nthird_party/boringssl/src/fuzz/server_corpus/fff55481b7a5a42fa5847e07241a91041be372a7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/004fa174d6a55815aaa28a643663e4f7defe17b7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/00a5d300edb498ed6ad6c6e1d89542aab9a02b22\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/00d25fd7ea0f58eb6f4a82c851ed8a931e65dd64\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0102298d15e9282866a5f2260302eff322a13c13\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/01e0cbccb0834c995ec281f2cef6bc2a74d58ad4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0204408e62b9b167d6ccf405f42a7d7b3ac8df45\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/023f6ec7de2d391c3a5df308362bf03c343b5c4a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/03225608b841a3768e061337c015e55514ed439a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/035f22634e63cc269a411f33ccd2fa73b8509ece\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/03d8a3c5c91cee6f44ecf79c6b7729a9680a0489\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/040be56e0312f0675b002650988abb8733779d4c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/041fd0d839026e1b1c71e9e6e45ae3442495edf8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/04c5c81fba6070627d1635396370059b02afc975\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/06201bff91e6af9e6acabe82dfcd2ff7f3e39186\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/063057c4179560dbf246978e5721d226fe2bacf8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/06a0473104336191d845d5147a96c18e7188851f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/074c9a9417a8abed82ecc1b4d3cbdd3b32a45b9b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/079bbcaa8d43e42750d6ced26e9d67a594d38386\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/07a9b5a6f0e6ab3b32ddafa7d6afa062a170b590\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/07d5b3bcdcd13284acbbdc30e6052d9317c84ff5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0845b7db11759cb6e1b42e4454c76526e39f6055\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/090318ebc9cf1da627cb9bbd06364a63b0c3c860\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0a1fa52ace56fa15987bea607bcfc5b1036ba8e6\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0a29785fc7793363905fd9dc5b68db5a8563159a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0ad14ebc9369516f1887c9610a0a5bee991603ea\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0b7d4daa747ce6d4e04090076ed2592f33cca1f9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0bef2cd9e280962d885ef79be5f9d6b2677ced20\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0d3467650586d68ce881887c569b9beb26d57c48\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0dc21f7863914bf167cd2d79d42c1c7e425deb5d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0dda9ab2464b2c919969510c6f9c6c67cce3a08a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0df0ecc9f0e1976dccc8101c324c3e0078ad6e0a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0e70573c236286a5ddc0353b749f94ff11860c73\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0eea88830d13a4081c0048c5bcee0519446792b3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/0fc0d891f2b05996e455fad7f8b1931dd93f3d17\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/10bda1aaab9f5500a831b5311d55e4a6fb5b22af\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/10c246224654166896d7802847d2781109aa6730\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/119c3806868a614658090de3963276aec44b64c0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/11c91d3aa29f06d800aacbf6a388d3c02a666ff4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/12201bf41e3ab5f51e3645469cabf1e82758b488\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/12286b7d2caa026577cad2ac90b001663ce79730\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1269bc0ff52e5b0c7478ddeae0654280c837041c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/12c4a4c3a7c0e9702fb69a15b1a21bfddc33d57b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/12d6352ace21a4bddc93e04b4befc9fa456667c2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/13046cba999eb24ca290d3a51ece837488502d67\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1314921c35bcf2033155d3091e5bf87fdd7e2423\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/13704026841a0d07225402f780f3a6465aaebea8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/138679e5a423adcb8c6be1ef9d34166465c25f72\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/13b2490d5da9d5a43a2162008004ac290e629bec\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/14209811578c32a959299259a2090f012e4881d9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1489f923c4dca729178b3e3233458550d8dddf29\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/15225c241c1c56fc666cd8e52ae9c666f6bc0e60\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1573211bae710105a5ec8007eb30165361674477\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/15dc111ac3f4ef92733d50415fcae488bc3d0c7c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/164c004717340af31817d65e90c5bb57e717abbc\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1693b2794e49f4bf5ae68f4993fb3dbe13082e76\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1696b64a30ff9f652f70b6853114b6a4d9495d92\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/17a11f55cc31839a468c5ce54c5fdd6df65daa4c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/18372eeeba5efd2ad8d36bf84ae8feec4d5fbba4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/195ecb2a6b9f63fdc8fa84dc8b1c3abb67ef3fa6\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1a6b0a34883df3fe0fc342275ad60e3edd67fc3d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1b924c2a6ed3315c60e7f70bc3c3a272ea3411c3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1bd4feee0785eef8ff1e8c70882af1cf46b8945f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1be74a4b3069487d2ab4e3fc38582d13fbfc6982\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1c634714f8a6359cc53f1bc1c7a1348f39b2f9ea\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1d42ff3a79a609bb91813f06b2a8b4d91afe54a7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1d66bf16a89f32b85fefe906753d2f23b0fda8f9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1d92c060ea2a91d536c9ed016314f20fa2411788\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1e74eaa6f82c33ede12903604d1c018ae2ec7b67\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/1f04d58e13c50cbdbb989781c4154d021b2437af\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2003175cdfd0c765027642e4cbacf6fdc4002154\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/20c101d0d759880be159128d7a652751648d3338\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2134e034dafd716f2f416313abcb9f3f7ea858e9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/21e95c8e2790d9bffec74e4a0d8f94d989e2589d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2250f8e04cc212126b2df3bac6ed84293e83715a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2282590f86aa9e6346694931c88ab0427efc255a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/22ed42b85618274ca56f412dbc95cf158076864a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/22f989f35ca560a1f7da05c0cc454f98a44d6c1c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2334fb59f8b4b7852c4546f36e5e3b241e5a8f04\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/23b47ae3f11c3f4a3573d1531128c5d0efedcdd9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/241422d7ee7a1c86910ac543c840ae040d3dcf77\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/245c140f4a5800adfa7a6e94ecbdc0c67a626ef2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/246327b4f9198aa302033c73781462e5798efcf5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2467263c0f7188169166b0d4347461b5ae058cdd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2504d089c2ba4bbb51f7588f791f95f00617ede1\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/27159295d9da1910cc4090c0b90df0bc0a3c065a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/284c4ecf66b5d18df255aa441476f3b6f8fd956d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/28595fdccec9a49cf650b8841b76c48e367d7ac0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/28d75987bd7855b6f3c04c8d0de4040ae319322c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/28daa994ceff3f0cee5702491b93bd14c59383ba\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/297de488559833cfbceb42024f16390fdffb1093\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2a21fcec464b8262d6300f8f0c7f3518e146acc4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2ad583821c1860f52d94c6692faccaed025acfdb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2ba03e96d467ad75f911b4f55319a56cc3312751\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2bcbc0d023a29bc3bedc22b2b61a1df6737e785d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2c09301393be1636d0a8cc70b6b75e2dffc10f2e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2c437eed7cb8f2599f1f987eb462e5dfa8b95005\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2cc1ef77d85171cf85462d750136e699967c4062\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2cd81aeed696eb0b3a941f1ca8e8ce9b3a7d00b1\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2cf927e5b4f3db56e90563f6b7b4193298691ebe\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2d18b5f4f5f3a0235f499d76f6d9e9db7a5ef0cf\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2da8bdc397014d7f5a1fee1b7d30b1cd28b7e862\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2dc4d57d10664322de1220bb2030e1b3661544b1\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2ec8ed2f45f5a5b8f66ab3b47f16b235718f0ec6\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2ede02b70e97de69de384bedcec01813ca769f35\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2f0f63d0a3dbc0410feda2deecd9c7622834f6b5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2f30f458e3e2f93c3df539e181427baf43dd8da5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/2f44c3b502e4bb0b88a1bf4fa9760540447c74ce\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/306f10d3374c29f86351764870b814f25e96fb00\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/30cf369f8271fc2e5a363b05727a2b6993a91782\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/322de7ec5c0671e0fb799996b2d7c30f7ad927bc\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/327c35674beb6c067401986360dd7e05234bc31e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3399fb5bf14f0340e00828ab18d292f0de51a25e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/33da2d1bc96d7201287c8a845582ddbf50bcb37a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/342abffbd3a33d4b73e54c0675585fcd511f492d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3434baa9770fe589fc2110be2680d4b0ca7ccc24\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/343dea8f3f2a78c7db0dce8a4b5f151176c5d882\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/34682a590921e907b96b9e3ea4ca81e7a1ddb42a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/357179e5cfeffc0d0a70072d83cb8ebf6c9b567f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/35a7bba0e41884293b9c1e91003489563e16163c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/35c0efd2c9cbc6f3b4e76cddb8c1d94ee1a44794\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/35ff95557bc6038f4b3866e8cf5f9529b511b51a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/36408aff7c4939c52780f09d2b959a02087009d8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/36eb60784edea2c9e84965e234df7162cf09b472\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/372dfd3ad38c81697a88f223c61bebe4108d9e7d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3797cfedecf9e7abe3c140a8700416cec19e456b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3815608992bbaf73e9830ed71bc994580aa8b262\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/38782780870efe01276992695144688ed7fc0d0e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/390c601ab4fc7955cbc293bdfe06d4596a6a4d1e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/393218bd0709e8f01050f972cac5f7943dcc92d0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3a120b8a4862c1bc0beb6a7d5f3fe9538af6fd80\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3a737d30c5a8805fadc8ad37ec97415facd482b2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3c1b292602bb262917b28348d87e42726a3b4f7f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3c2f22d033ddba01cf6e8cc32a7856c345b8fa39\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3c5f664fd82e10a83df15830bd0ae0b66c3a3a4a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3cd98577646d22f4af245e2b3cf623e19a63827c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3cdfdd6097562b00bada1729212b675702ed597b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3cfac745077d5b35a20306b7370bb75a8ed81385\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3d324da734ed5f9480f251da38869f41e638d617\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3dfb621c543412bb858fa84ef59323f7bdb2ed36\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3e452bfb827194370dc64efc2ef5b4a1efde76f0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3f17b10a71b0f2883378fe9a0aae96e3280140ee\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3f4f571a6306785bd50b8b60274dd533aa1f6f96\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/3fddee660c732806c4cf75c0a535a906adeaf2f8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4119dd280b114874c907a50cbb768e33417fa43f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4153d1ab2cd0068f9c99eae3748da0e16ea31d3d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/438d757e41c4964ff23c877038331b62410df122\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/43b965aebbcddea6c776f56a9ccc67e6617d5d2e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/43d1508a5748ed862dbda3a7c5732c756a45371f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/44096b89a066ce2ea3e62dc4f9c4ce68496b1f4b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/44b88a54b45e929895e62f0df349d2118fac4926\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/44e28bf531e394c9652141e0c214ccf7e83c8f49\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/46d476cec07892045e43fbdec297eefac47d1dcd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/46ee49bf71d81db9ec25e63ddd3005c403f3eaff\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4701a996db9f51a3785672a418d817ac918af030\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/472dc3c76762f89ca0b67d4fa9e6a0b80ab96d46\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4764e1747f76ecd6fd07828c24badb99dbfb4585\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4872d27fdf102f2dfe776a718db33dbc5fb814d0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/497f86b8cf01e8870743bf4ea157834b179a39ce\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/49b45defe1fbe376e9988bf6c7eb6c1767f0425f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4a18136ad23f65ccd751cf307f85010c1f856a24\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4a550882f9caf933a356463a02f02964ebf587a1\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4aa6ddc122b53afb2aa16f7c51399d75c4b3e79d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4aa7a3d7dca16a5b125ae3161759a3013a843b4a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4b80a7e2d86957b1ac8646ee81fb8d549140a0ab\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4bf6cf93aad8725818db77fe3681497907b74675\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4c204fb176ad1966501d0688d9567cdbc89be691\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4c2f75a07df986496c0124e82a0daf53ef5733ef\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4d326efc3fdfe62eb1aa6d32baa5bba49875737c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4d4b32eecde94edf651c64ff66ade2a3e51ea2db\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4dd5ef15636fee27ab973b4235656a48fb0dbee4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4e37ca19e3ad4c3239b7b8f14063b7357d3bee47\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4e8b0f090c6d4c3e7cf44bd0c0b5c5cb6f190960\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4eea539ee813b43f3242b7a30f5f8fd67fd4bd8d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/4f49b84d412e0fa3280cf182506aa44b42a89e29\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/51dd3eb54f8b7b8440b4f6f46c579c227012a0b2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5251f7fcfde5023989abd4694a23271fdd7f3f82\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5518f546d6c1e9b013e66dd0e3dc86af95bf15fa\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/55ccbe8e02901ab3e0f009d73befd2c2a59aa48b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/562d3a9f84f5304c2fe84e9cf0f522a5316ccf6c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/568bc0da595603a2412d0d182f1996f5c8af4e44\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/56988b521baeb78522bba750bb94b5024b2e80e0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/57a71e5204de5c8ef78a112b0be71bc621e0d79a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/583154d034eac68a265654797c9dea99b6ffb8c8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/595b8d5661597a065ef843bc241f46d1026a8c60\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5a04e5bec40de8728cf12fd7662a8654b377003e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5b893cbfdd4d524e091ec66bb2e35bf477a7e5f3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5b8bdf3f7553868f91403a49bdc32e18d56540a0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5b945b8aba17cf37de8da44246482397bb653370\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5bad4f224133c1189a9f68840fc80b55d0fcec09\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5bf4694cf0e2eb094a3a437b4d33e2f8d94b83c0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5c09923b5d854ea172edd91e245737ee1da84f97\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5ca590cabb6eff12e445b3a46f7723636f3f383d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5cdc5e563f563076d78d1c152ecad8868e4ebb40\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5cea68d5e95c3b3002eb3038ece431e32cf620b0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5d04402a860b737a6f12e8d5e86a3247f2c9444f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5d6384b5248f87e4ef42af56a4ee44de9c9b80b8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5d6f2716b2dae48229e5f459b1d2d591c44a6d53\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5d8b9c2f571f945a671465f9d707532342c707d0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5d9d829821ed03338ab892d38b4479dfeeee663d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5dc9d42eb49d3223281248ac3d6d0f7ba3037dce\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5dd145b1b92c4f903e7d75b24e9b452743205e9f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5e1cf62ca22f839bbc2c61e2e1bb2e7e81ed7bee\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5e57a0141d2b14d0739ac0b8a02db9da1cda661d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5ee0835e4c227fb2e2a9d83a4197c04bf80a34bb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5ef8b90c3ef4ffb0e87ad987f5ce573e3650e68e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/5f46dd35ce756a42da7e301b0f85df2e533cc422\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6074ec8f2be2b2a160055368337aa9c88445b8cc\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6088101bb24a4f3215d8cd54ce65c98ac25b2a4a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/60e32d6e31df066ecf0f393014c52b788f6810ba\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/611bff1395d37cfebe40961126bcada5aeb9a3ef\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/618bdf7184839285341c130bc68eaf3f87ef03cb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/626996d0b8bc362a6f8a538516f373eb1a771482\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/64a901854f4211fdc0be06215ff1bdb427e22d27\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/660d46a5e4194cd5c80bc4f5b30ca23708dc727a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/669e7413977900e1a1611c9c941989c765c4e236\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/676c8a4f39c2bef17ec5bfb80ef128c22325953b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/67816ae7bf8c7c76cb2fcd60c2cea995f2f85c29\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6795fbbd10b982336bc6fdf18fedd5540e1cdb5e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/67f9f9f0c5dc571443548dee3eaa43e5da943ed5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6a46272294a3c8cb305211f0e4897521f4fd0396\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6a5610536c842736fa7f3582504f10f3c2218ab2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6adf86bf945a72fcca8ef6b7bd182703c941ec58\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6b7e5431e0a8f9d8e3db01c42bcdb7caef5579b5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6dc59cee133378570b955b045aae46d189bfede9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6f72491711e69a5ede3650b189f27c8e0e51c6dc\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6f89bf28647f655108d51837b98bf20821497a31\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/6fe2a9faf86292a05c8ef3ae87dddce4b59366b0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7055ce13e1f6c1841168aa8a33655fae1c703ef3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/707b0f1ccd8a88377f0fa0d4feb395c662a0a120\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/71178ffc0f7263e9825d6a6fc402fe1e37df8f9b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/718403e68916dc47ab71e8546465e3e8a0cb09c1\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/718487afa1d377f123c6756bd3251b181b0b5879\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/736e50c5689e7cbb2f0b380a6748a0c7cc080dfa\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/756cae31cc203e8b73481e667ce714f794413526\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/75d0c720e59ff8e03c3b506c5e17a4845c88464b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/75ebf6152695e8160a9765b8f3f23349f34bef7d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/76004034fcbe63d7e8a6a75770d437995b8237cf\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/766c3f823846075e032780a90c901b1ca9f34b33\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7805d9a0fcc60059aa961104b53631df4baded7d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/78453b23ede1f62b308ebf6330c999304c0fa50c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/79c21d4627814845abb47f422f55dce52396e471\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7b976de73f25c7fde1bdf9a7e1b1d690c90eac8c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7d432b7e92184ce59d40f0980b6519878076c0bf\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7d943509937db131b9d406715007444de7dfa0e0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7dc5dbb29d21ff78bb6816b3abc638251aa025a8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7e717339a399dd1ab377076e6fbd3ae53bd0533b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7e8ece78856f6d3d8e7dbf93dcc607615954f806\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7f6cb4c8c0aa983b6d4d92738e7725a314ccf21e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/7fbbd3611f4745dd11326b9aa98789fdd5317226\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/80b0fd23e419bc63185b219828876a0a799e9292\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/80b62afd604052f368219c4ecf68cb13b5949e8e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/821fbdcc1dae7f2e165d8612c216cb9f87c993b9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/822842ea89615192b041877e7a75fd41c2e82790\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/83127908faab278f20ab9bb6187c3a7de9141bb2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/83de936cbeff0cf860fdcfb2977d79e8475a47a1\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/843ae2ae8e64013b78ae489cd8223e3576e73453\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/854e7723cc5226072b5b9353200431a9cca34f1c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/856717f6e978ed5dc06d3e98f819becf360a0c8f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/85f12f993c076a451c8a93b4d83ca01acb2784dd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/860fa3d88cc39d5a9c008c5e451e746238ac1bdd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/86274c56c95f710d955eecf162f466e7ee48dde6\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8721de4079859692cfb630adc2ebb1d93affdf67\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/877acade5135a842fa32414c9de11e39e62276bd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/879869086d669960666b14d379affcc3acedc3c7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/88e3c6bbe38fe2359327308f3492ac1902d35c1b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/88fbadaa4011de66b7de55d7f1a5ac92f7f9ad5e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8a046e8af539745b3fa115d1332db059da5228bf\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8a06ce6fc9fb00b63dd1920d9d443c5ebc6f6b3d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8a19f558c0b396a1772c85d64fb6c6f5bd8f269e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8a1a7fa937593cb98656fb6ea85d2619237cb0c2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8b41db3a58cfcc484be4b1eacd8cc9f1264090ab\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8ba3ad4f520f6fbfeb1fda66fb312f92b5e52d37\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8bc2ed3ea8079724e11704db483b5fd627b2340c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8c0a2f5793f148ca0782f2ba9c3f6633f7d99806\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8c79943f1258629438d0f2e7a596a53f9fa4714a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8d2143c6d4bd2ce07101389222acc1f39be47f3f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8e99da49c383818a60e748d408303bed43812a12\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/8eb4f628da35d5bdd81e927d30d1143e9a05d35b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9016681d920295065e90ff3cfc2d7f17bb54222d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9072ecf76bc288e26aa74c1ca5118a73563fe219\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/90d7ff2d7fd456c8126226f41b65a84e0a1d7d33\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/91187d13c0deebb8ac9a3f6f8aac183e37b74ad6\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/912c06b53d4e9fd7c1d2c97b1dcdd1a1144a5566\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/91429029b2a72dd8a669720e5744413e5885613f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/920eae0f62f4e7e9315ec2c04133d6f7a9b5d94b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/92dc5d17326a519fdf94b4cf940533f428dbf03b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/932e116423a150bd4040058c62ae81b943e8c850\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/93414030e49fca198d8f7260e62a469f4be07376\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/93b6cf4454b478278eb8eaf0d160cebea6f8d79b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9471e688d7bb3e3551645a38d3bb8efa89c599a6\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9489ab5adbb97ee605d3a85762347f259076616e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/94e110cf70bf139a282897fb2b33ccc7fcc72752\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/94fb12e2eeef46140ca841bcfa45ffcbacc7362e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9642dd10833e6e823fef684f682dfe196956ca9d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/970fa798580d6f587d100df8d82a8a14045d04f3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/97c24fc64a94260d54d427e731dd671d6ef1c87a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9811a62726742b957e45b31b4ac7813b69256cde\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/981c0aa863e36f30c68b0e1515304e2e46fda0ae\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/987f62cdf4de7b4305821ca6b364e12ff6d2024e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/997311e3ae79c132057c98a6d166deebdab69c71\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/99862d97d721139bf4510838cc6ba6f88965f35f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9987df311d7c30432c4df8d14193c8f5236f58a2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9a9fe018246f72cc3fd6692605e4fe534e168240\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9bc3038b0a30d90868ba599f7e44417e3dec7dfb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9c34981b88a050357ca2db56e4062d73caf117f0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9c5fa0fc7080a2990f85ef48ec9c2d22f6e3af60\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9c922a546a18b59d7f4cf8bc5171ba10a66cd700\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9d6fa1090c493ac01361927414ac0a49535c92ee\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9d735b723b0ed2d4d433c00b613e14c28921f0f4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9e9c00e8f297955206b62ecd77638fd241b5da3a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/9eff0be6355a0c6c70e2e4aec16a6f0e17ef5b2a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a131c62b37efa169925184ed88dc9d7c886cf590\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a159c0b29640bd5e21a9b82b2c38b5173d0e1f7a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a1c0be5740d5410c8b35639b2bdd033f208168a9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a1fbaaac6d6560a1f3c4ca79062b6ace5c67e6cd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a2c824d536d09f292644d246e16c4a02b4d57786\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a3808ef364037ff1ad87b1134f0730e3b0e88c22\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a4025775158a7947f004d5c14d976cbb07f15ed8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a4722ffec3db2c312ac095f50b356e25bfd65728\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a4e9e8471ce156a8b3fbfd6b6b87c42e2f164e33\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a5470fb0945d46ab47bbb42b9df384ea7a9f741b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a6c3849c4b77bc0766159ccfb5c9c4f967670150\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a6e5bfddcb943a4bfa3b8824a9acdc259521bccf\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a76e8b2f1ef5ca89e6467dbd4e3e4bd8ac7d11b7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a79b0ea6d8a869a01aa80ae52485c0e2d004853f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a8049a59d608040e0d15895c4c58b1580d384f3e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a84eb2e5d64ab8b2277af470ce5548d8f33722f7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a884770432b51fa684eef92319cecb96be224c4c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a92fd79c824d9d8cf151e3849da62d4feb3fcb56\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/a95da87ecdf14770236874bd0705cd24e19ecf7c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/aa31df42a5d6865fc19a31ddad7b5f2822ff0f5e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/aa363a2f7e23c854b829b5b63d9edb43ad070510\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/aa3bafdc5f2dfe86fcae30c5efacc3fc2e34ce6f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/aaee3d02c5b40e6ca1954304f60b20a07c3918b9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ab6845efd4c4de05cb349cfd1d2ad5edd1bae8ad\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/abb86edc3eec24f266067adc33248e914e2d2703\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ac91a6d718ec3af5036ed496ee7d851d3838675a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/acb085d551ffef796cc44723a630581b275b6584\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/acf9c9f7d279236c0b41bcf169ff787626cb2ee9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ad2ea836613b670a12f09185e17b6b79a395076d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ae895315f4117a892c308b5aa700b4ec317703d7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/af3768615dac960bf89e461cfbbd87e96dd7bb64\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/af8d9905d8361d3d52ce3b9a7ec948c317b64950\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/afc79c287b8a0d903b27ed1e5784224c75b6b7f2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b08dc0f49074c6bf20d9c2e259c97b3f2e67aad4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b09d11ffd2373cbc36cfce836e7e4ceff3ac4f1a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b11d38272bc4d0437a8eacdff7f205af3432ca71\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b14bf9b60379f6fde0224ba7256042e113e17c12\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b19c2fd0d8801fec4f7cb840a2153cdf6e78901d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b1f0922757222a821b46f1651a929f32d6d15a1d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b29c8b64b36839d22537bd5780b1195a2d795482\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b2f7450588592354c260f5fc07f7ed2205d89d36\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b376633f3ef4a2ea1007e91ca0c298b6a143f730\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b4776e4299c0668615623599cfb17e179f0c8c41\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b48a9014bcef59e5b812bf107116b3469ca6e738\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b5aca9463efda591b9415e7e68d35e82ff6e9a4f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b645eadfe63851bbbff943332b9164675489fdea\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b659359f3cf3802af64e4eb666012e3ce7ff17bc\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b6d09b9ab245323fd1991b3d7cc69ef3127b3b69\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b73a8f60a8a5ef12759bef41079da3353ead032b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b73b25c98ffd9c07a6a7452e27ec03a1a519cd47\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b7548fce385bfb9cca56d02b2bc3d08299c3ef88\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b8b5b4c31fe1515f6b0f6aae3405c9150ba8b927\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b9b3467169abe938b54aa4844d2d50ca50c7b67a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/b9dc258d38fef14c3ad2302abd27c6f582c3b0ba\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ba3775f513ea972e0baa17c247da85706064d873\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/baa81ef9575f23fe76c884b3ec1cec00142fd3de\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/baf5151de4a778a04a21a2ab59d8822529f5f1aa\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bb76ae9d433dd50e2d6848a4e34517cb6fa57a29\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bbb583fc45fc784cdb3772e038bba8fb462cfa7b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bc33a1a7556a073237bb66ff9091234b0b7b6bde\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bc65bf3746a64d9d8345618d8bf788f0841ce42a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bd37abc58cfee26c5c3f678e8f4296b2ca7e9458\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bd44b1a9e99f819110f901c2862527d7cb73d0d3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/be07a269336d9884734a35679b3fd12a7c83b1cd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/be746ae50e9847503828cd685f5419e703ba08c7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bec6a7bd83f7ef6e2f611427b335a8885ed1a79e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/befc181804f18716d0997986f889e25d0296173b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bf75767d1269f7227835e8a70e4ba5607daae8e4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/bfdf4e74388014a68a4ef7970508afc15115fd3f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c0e817e8bacedd33d014b949a05750bd020dbdc9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c115e4ea913845d3b933d40abaf730d17fdecbe8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c19f831d1043ca4bbf9d68ce89b2883f840748f7\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c1c1ef9aed717efc942fb8b33049f39c7b98d938\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c1f28bebad1f86668e77d71e61d47e92afcddf51\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c21cd9a0d7cb4ca1739505aba5dc1a8ebbbeb1be\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c27abf4967e683747d82c46aa53a0e911e9f4cdf\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c2cab2cd536db692b7389b5264696579792ff141\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c2d82516b4e32beaed4a4d5069a7c3822c08db34\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c3431a06f4342fe5ad23f4b45c4ddaa59c18ad4f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c349dbdf689b7afda2cef864284a189e350372d2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c36cb7e24270125a95ef26167b03817d1ac03ab4\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c3ad01a4290838318265b3bb2ab427c321c80e77\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c40f822fff3902d4f6361cb1636e2054d7e09611\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c45e7923ea5c985d8af12865cdeba48ff9876dae\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c466d73dc7e37acb845d1e233099a788eee5de73\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c46ea3f769cb11459f92d47fec8a8195b7f48023\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c4f6653a8eb82a9584a75167c788add431c72180\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c5a62b826b99d9a9bfdb8c256152580b350b340d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c659fd53cd0aba5228a3f123dfc4931eac5ceef2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c6c48658dbe7d3aa286c31684309396127239acd\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c7e8a64c99fb8bfbb300b3b2a4c488d404083223\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c8bb9ed0433460f95bbfb4d1a1e8a63219e5794c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c8e49f9f721f228a9298571601943c821141f98c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/c95f0d1eefff062578a679ac816a67aa2b3adb1b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ca9f8e76c8c58ec6e701745612f63e6b4648304a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/caac485cb7b8c10526b13bfbde98bf1d0abc7fe5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/cad39b590237acb48b7326e9cb42ffd4d5f7f63a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/cae2e0f7d7bc254a7a48a4dade13884a886b3efc\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/cc0f546418b16ca1a34acdfc04fc5ba3daff3837\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/cca0e7c364566ea16f60e61378f3ad2c6d606743\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ccfc53fa2579b5c9179127d6d151e67b48ab0a61\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/cd84cc6ac0083b7b62628e3bfb5dfa943f7633d6\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ce4102e7e196f7e395bbc7ee62231d482a3d25ca\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ce453e5752209c3938b132a781b652b70fb02548\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ce922e8c3a49bcc46ebdb6f34c19c2914127fe94\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ce9db526fea8914002423911d3936ba49d182ecf\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d0b3efe8a7595f32ae87ac63d679f59542f2feeb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d174b16da23fd30f9a003a64af4a0f07166acbca\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d2c1dc8d69d60114e8e0a186ecbb4d9bcf811933\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d2c40217ae5014d03aa83c867da14c53bc1d4a35\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d439784e7e3ef0aae959b44d909cb2c4c3a9bed3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d4f1c55856461a99d65a88882925c2d8fb61cdc8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d56e6b76f1f1196bcbdab3d1e9329398f02cbfd3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d7c0581e009c8e4bb05263c28081918aede18f36\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d7d6ffe7ab1d18c754f71bde4d0436c50f80f80e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d7dbda60702a2b2bdefa84383fb955f92b1c0552\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d85642b9eac7fc349903a3648ac6cee7f18e9987\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d8ca9b84d438ebb40dc29606af5658686e5e4b19\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/d90061e9ff6cab9f4e5a99c1a39004457b34bc7e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/da27b4c7d48c40380f200b1ae505dc3069b3346a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/db0364479b679e607b6bd082626bb64555a7a171\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/db5c028cb8265147379470a3240c635672eca685\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/dbc5cec15023e17b1e75d6aa75e76ade5fe779ca\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/dbda59a2ecb988a37bab285203f85ddf8e71f73f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/dbf6a36e96e0afe83dffa0a8cc9bb179a69dc1e3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/dd27b92eed552fb3bd5c379a7ab7939d52add722\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/de5307331f1c7f97aab5f3a4f530686436661e47\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/df916f86637758402c0159b523cf6fa7d5e8c17f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/dfb715d146ff04d4cf17d5860cf7b0370ae51dba\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e08ffba2acb6f49749a55cdd8c093d8024cd6aeb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e109fd0e9edf89f25f92b61af5e11d6f5d13647f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e19613e61a7e3dfa632b99e1b86003262ccbe3da\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e1ec1a35da4ef5886739f5955a83454189a5806e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e2740e51814a2531daae9e2a153d904644ebbf66\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e27a5d318166e706e0331dd39f48a946da831da1\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e37dcb9edb9406613ab058b52109cff6e5eb7373\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e4ca779155a2ac65415a30eee6a9a4aa1c07b35b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e4cce0a0ca9071cf023358688fad05f18bc5e4fe\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e4db629559cb7b8b0036f4d1ee4c4bc947b10564\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e5aaef377b5b77a2365ae18b743cc6603a252a34\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e5b1d6a4dbd2161a4fe4d9a7454ddbaae0aae52a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e721d03081c16f89aabe228e2d491f10ebd7d4f0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e7812858b0e60a4949b8e51bd2abc314f934ad44\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e79894801828ab2c84ce83aabef5762365e9531b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e7dc9378b96b825749873eb5b2ceac26f9ec4d0e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e80074d9c02fb8bb7e38fbd3436f521fea618f7b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e841dee2ac5ce35147ecd19ffaca010ca2b2b0b5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e8592060c38e29df3b6f64e0076f46afd36e6988\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e85e807eb8b5c8c7b3264fb3cdfb3951e7079dfe\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e877e2afa34c81aba949338cc8292df7c66d2e52\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e886760f57e697fd4a080bc7a813ab4cc22d98de\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/e958885558605789e1d5b2ebb389ea8595d8ae9f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ea2c8ae59f99ce50ae99e036782202aa990779a8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ea7f6b81047b4f8def57d225ed7890763738f2e2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ebe8291cee2dc491b8817396a8258ea9ae2381ab\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ec59163f9e5197161e6cf27a9420f88dca993f2a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ec7f842055ee3eaef1836efdf1bf0684d90ffc6f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ec8c7f4b7156a184596c73c9d1c2c2a736456cb2\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/eca05ae2db4db1b8fb60240e0b50efead7507bd9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ed54e9249f4d5f4a8716a7b178c145eade55894f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/edf576bc7f4600ac40b05d204344d0a49915f51c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ee3b4d1718ff90e7869b69c4070424f913830ad8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ee6cbe2eca89f970438173aa484acc596fc53289\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/eeac8e5b5fbba5b4afc8af69e7136a0ca3106f58\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/eec97495ec0176d661aae751faefe3e29c970bf3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ef176236eeff5cd0b8dc1c607d0179083212fc78\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ef534991638836fe68555475e7888aecc4573180\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f05e70506f28f841ed940e8822dd541faf41ba82\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f078545c63e4592e6b69f061f178b3e2bd2539eb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f088ba074ccb35225983c4568512de7631285b2f\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f0ca9d97efe48c3aacfba4667b9e0cbc872715c0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f1dff08c50bc7a2fb07a23579c4d534a834c1fce\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f1e2cc634a6ba6db2c3a826f337b635ef340f17d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f1f9319fec8b3854cebe6886a03ead6a67ad082e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f264f07f3e1b8e20f775abc608c9cede7a963790\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f2e068164194840d77a9b833bab341a2d01f86c9\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f2e67d3787a62b80783c411a61244b53c13be69c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f3593861333a38e2a307963329186d43d1c59cd0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f3825d1d3a3a6a59be01b3cdfae1a89d9ac31ad3\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f405f617763ee694f4d2efbb6340595e5b5c7d82\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f4e074ba0c8181a2b96482e29c238b7c174d0f1d\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f5703e319cf0627f5886386cd1e04192bdd4fb8b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f618e090ad5c914a567d94a8bebd732b5d55d3fb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f63693f3613310448d6ba07f32262196714fddc8\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f655b7a7526edddc8ed006902fcef94bc08a5df0\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f7095fcae0eeea759bb71ace0d4c819f45916813\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f79e5ecfa82f228fc86b3d78cfd66f5f4a91e681\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f7f18e8a4ffb813cf94a7888c2984e0d5d58b967\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f84945893aadcf4422f9f1ef47d4000ff4296892\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f8e933a802366ba454b5449880db99d7c65dcf21\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f91ff9b71b566f49b7f455193ece86db7380751b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f942643bf0edec936a846340f72d5b092a834063\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f98c252bfb626ddbd1f4a206220c939f14cc5249\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/f9d2656776aa01522491e1bdf5cd8851ad15b39b\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/fa75e552f36ba9824e6fad71274b384bd4800da5\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/faff846f97bed687cc0a19fda11f6e6a6e7a1a01\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/fbe8018dbcea38eabdaa9a74b5de86b74ea121bb\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/fc06fe23281bee455c11b39ef4c4bad0c3363367\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/fc84fd6e18c99133de1b445215c42b46f1a93788\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/fe63cd927616d11e5210d3e180d699ff8a1d594a\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/feeed70cfd0107aed1b812fe78d9d011fcb36d8c\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ff75d2c084faf0b7c9d39eb304d7ad32dbb4026e\nthird_party/boringssl/src/fuzz/server_no_fuzzer_mode_corpus/ffa80e2c9aee0b05dfa2ce0c2111862b8d34badc\nthird_party/boringssl/src/fuzz/session_corpus/00bff688b187a70181ffbc2f3e4b8bfad5a2fa67\nthird_party/boringssl/src/fuzz/session_corpus/177ed9c6a351c40e51c711a9d741446818135ba5\nthird_party/boringssl/src/fuzz/session_corpus/30d9e05c398a2b4f4e365c9d1ab9ecccb14b45c5\nthird_party/boringssl/src/fuzz/session_corpus/3d979305bea736b3dad84be50f560c728e3a8261\nthird_party/boringssl/src/fuzz/session_corpus/4f83848f049b10901df130a626bd138f83dbd147\nthird_party/boringssl/src/fuzz/session_corpus/511d42a381c86e2543cf60338be40237784a9f7f\nthird_party/boringssl/src/fuzz/session_corpus/5539a165114947f10a1c321994b9dffc7fe70196\nthird_party/boringssl/src/fuzz/session_corpus/61840ff5532ebe2ba4a75384390df3c084c338c4\nthird_party/boringssl/src/fuzz/session_corpus/678f562f93ab09a2502a9857f3b05b5a840c2c18\nthird_party/boringssl/src/fuzz/session_corpus/7c05fbbe2bcfb9293bf862b76c600d971cc656ce\nthird_party/boringssl/src/fuzz/session_corpus/7f4f3e0d908bd50e1d7d24385dfd84c884de5b90\nthird_party/boringssl/src/fuzz/session_corpus/85148da46a55127eceb9d5b685660f235561ba18\nthird_party/boringssl/src/fuzz/session_corpus/91fc38244f91d59cee8d704ec12a1adb0ea21f72\nthird_party/boringssl/src/fuzz/session_corpus/9a86a2adec5181b4f82bc38a65490717ebc8e0fe\nthird_party/boringssl/src/fuzz/session_corpus/9f7d1b28f7924e39dce343b92e9f29eaf1098c97\nthird_party/boringssl/src/fuzz/session_corpus/a9124782234bbe9d6e9e3ee7b1a76cc432c68ee0\nthird_party/boringssl/src/fuzz/session_corpus/ded78b6ea86efd8bf76e734212765812d93b382f\nthird_party/boringssl/src/fuzz/session_corpus/e0c7b00c5a8bded3c2e5e086c0fb3450a5801323\nthird_party/boringssl/src/fuzz/session_corpus/ec1581705424e60415f9e35f9ed2260a08260052\nthird_party/boringssl/src/fuzz/session_corpus/f81709f8352c89b0151dd7f14f3e113d42e737c9\nthird_party/boringssl/src/fuzz/spki_corpus/04f58baf6e4bba0bb3094e2e26d3a531a7c263ee\nthird_party/boringssl/src/fuzz/spki_corpus/079bdf85c086ad0a92bd01f1f70c645d81053f3a\nthird_party/boringssl/src/fuzz/spki_corpus/0f5bd094b20a4632f14903bf62db8d467d2c548f\nthird_party/boringssl/src/fuzz/spki_corpus/183c579d75863c1e10100f76e3ffb757b44a9587\nthird_party/boringssl/src/fuzz/spki_corpus/4ee178363e1d8411f30e540cb97d550d4ce62f0c\nthird_party/boringssl/src/fuzz/spki_corpus/70da87d1d374ade329433dde31805abc8d80d915\nthird_party/boringssl/src/fuzz/spki_corpus/de0338b0c809548dc79d5a34e28b0010852a8f00\nthird_party/boringssl/src/fuzz/spki_corpus/fc941f77c710354d3c3c1426432a5ee935d51dd6\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/009f7a3df2effc9612a913d269fd0b4598ca7f8c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/026afe4f429f84464af660220094a83beec7a071\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/06a3b68b6c8693eff8d97b6c06518ee2c2e8141f\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/07d535fc311ad10b14ef7a65cd618e6afb45d648\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/08564edcbcec9114892f9d978e319e0bd1c77872\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/0972d0d992f275c87ac63ef0fc137e2f56286670\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/09a5369eb85b116912cf4e83cf325d90b6e55bfa\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/09d94e479cf65ea4ad04aa8c0224db41d796144b\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/0c62ac60b2ac1c308221c74f474c4f3256f3df36\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/10c7775dbc2a144813f291af67d5f91bdfb0ea0c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/12a2028349a1816a07ee99560fc7da7524e696c7\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/13ef5db570f33c5fe4f6f82e92da40144c7d919e\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/1bf624afc5fdba9f3c71706fa03efa01c2e16305\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/1c64c2d850b630557420c29ca26ad30f661adef7\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/2074a2adeaa7dd7fe37272bbb3049ede2c831970\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/2163130865e0677a6a7f002f54d871dde4fabb68\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/21706101336bbddc30e306231d72b309d2b9e836\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/25007521cc10af3b94d0934c0eaba1b8060669ad\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/25bd67c4c473cc6d31ce474adb5aa9ad62ce18a8\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/288d84b0a69b42d5787082ede1a3e567ae44697c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/2a0f1836091935bd41ef1f67848ff4d4dec5cddb\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/2cce9e986ff1fb27c2781db6f8ebf775ed4a9415\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/2dfd744a3d893d601e50cca35b69c74be2b9c36b\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/2e9465ac03749a65bd8f8c9694fedd3bced04561\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/3016bbfa996146fbc081237076417c6c7b52983b\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/31f6d2b134d159793186a86a550377b74d1e60e9\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/332979b63654521a9e4bfd2fb7d9b00bbdfc28ec\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/364b3fc5be3d73a70d2277d7fc01a4e6b253d727\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/36c6ac66c8580725bd2d8fd4ad9aa56bba1963b2\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/37e54824c72db958a9002f0026683a1f33dc8c70\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/3811c814888e813affe2550df4a2bf037a589eb1\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/398ab275a9f62552f912dd52246c1fc89abdc86e\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/3a48fc80e03e0afdb68ed1d6c50c3187b319fcb5\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/3a501a0367fa930a440631bfa836ab72865bf864\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/3cf8169dead8fcc30936323e84a7a2ae208cc74b\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/433d382f161cc95725a04442566a79923304ef3c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/46619661018e05207c45ff7e1de0ddbc85e9e867\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/4702c017d07edf17440f2f629312661a9e1fd543\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/476b6d1d089784fde721c01f7374ac935dcf2915\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/47db5e2dc351ad58286ba28132a4fc371bace01a\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/4add2b1ae380f6cf919883ef9fdaddabe85ae88f\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/4dbedef06a21cb0690f1006b25218b1563da2904\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/5248979766bb4e0bff0ce030e6695e0013251999\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/55b6224eeecf97b57ef58977fa36937358d2ab89\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/58794533bc6e38fdefb33e9c57531f12be7aacdb\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/5b25d5624861c48c67b58c765237cae2cf4c3836\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/5e25e03fea64c54193378f355df58fe510b61154\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/6041b00dc361f85a60f450b69e2117e9c78ccbd9\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/6140bd9f24aed8183413888061f1fe8542e61c78\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/6192e0a83722dd2ab56ef0d61ca4b270a640195e\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/63f6abb2fa0c22b016cfc7051d775bf9a1ebe3df\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/64ac648d4dd72adb692364c49fd1fa292c8a7a0a\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/65fbaa7c96346bca80305a1eec0b130b329b1829\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/67c1471efd2a5f025516e6a33c74ed897d642384\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/67f6920be1eb0364f05b61223eff28e13c32446c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/68fdc6128f0c8e4400e0ed9aef297554f8b7aadd\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/691ac0a1767370c88b38b8e751b340a57ea044f2\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/6d1639f82015dc66d2a065a8c326327decd7cef2\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/6f0c4f050313c82af19f5360eb2adba152d2888a\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/710dd5522cb6a1b3a1816cae3b3c2adcb2a117b7\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/72844840cd80f4b872045713174e00b8f0271fde\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/74d88935c978b2d5ee6b6ccdc1c8f1641c9f8952\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/74e692c715ba518caf90e63326a6cfda0c8e30c7\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/75c9045e5f3671b4b49931f0f80db98d4cb9728e\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/77252bdbb967eec03064db7ab25260cdfe9bcaf8\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/7750149e6f43cf659411444e1b9f848d42ffa176\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/7df09cb0a69a074baf2df79913af62853719f1b1\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/7ed8b46893fa26e317de63df3350d429345a0533\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/7f43a96a2775e5f591a43064ed9a59e4a2cd564c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/807d85da8dcabf21716bfd7c02486de56c9fc619\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8392a9e3ec86ba39dfe8c036cd0416992d13a340\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/83a0888fa03d675693525099d93c675f4579adc9\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8625e1eac770e6e6678d5f994f6a8397c9e68d60\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/88c5922c4323bcabefa07c1708440d93931ec25a\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8915060ad343b5a138a7446e6d9e9e17fc325f0b\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8a0e062ffaa166a0c02b5063eb7dabc2d32d5ed0\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8a65d58173fcf4f013c95b3818863bce18e29d5e\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8b16bc00c3a1b3194ac5f9aa297285cd0eab02c3\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8b372036bed64c142f7cc2b5a81d1cf5c3efa90f\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8fa84bcdb1265474f53734824c2e3b1c69960dbd\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/8fea0c92bab91e90371b4522b5d28b7000ff8d19\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/9359e78c231dbcc19053101cac076324fb681162\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/948fdc9b4e13aac83c6386a043c5efddeb7d270f\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/958605bb2a0034d9974a3180e363ef34bfaba69d\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/9747ff7d608c2d6a3f133593899d95ef6c9b62bd\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/9814a4643ac56938e8344c96db218cec850b6fc6\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/9828aa805fbaf037e8a1da84153c6faabdc2b188\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/989adfeaba6ccbc9ab65cb99ebd6eeaaa57f7794\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/98a10827fdadc8615c0fdfbe60551ead34662171\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/996383f4e06c3a77c2f558b8f2e78fc1ad7e3949\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/9c6eb59d6ed678fd0147e271f0eac0f9f0fa1d3a\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/9d845241bbfffc971c2a8aac10f7c7e284b9b2b6\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/a161705c496d8d1a4bdd3c19dbef037694cbb219\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/a4cc6430c86baa74e37fa8bbc891f6db3bddad3c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/a57182d0493295456d59fc57419a9f2a5fb60b12\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/a6f2361fc42425ee250c050f3ab3735e6627c05d\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/a965050d585f50b092e43cdcd35684f074b0fff3\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/abff218cec62fb1b814888bce335d4e4db92dd9b\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/adf72015d9afd34be37022fa0161328b0a12acab\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/aec4bcbe58dea4f00a7d45a025439973213705ce\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/af9cc8c9b38d08f39e458090f6f0679e26504822\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/b0468f08aaca3cd5744bf28064b45b0c4f606abe\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/b062ed17ac2c7b3a2da15d1ddd0e20f6d4687ec0\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/b1583fbbfef45482b725872051965ea0257985c9\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/b4353b8e626fc7d827689a48d90ee91db391d821\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/b43f2df26afa3f3d052d035f4405dee1a5f9c3b1\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/b653f22e1be54197eb19a1754ebcc168f84835c4\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/bf75f5d85d96563e8dec61d5c89ae95dde7d53c9\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/c18a757c4143a5f8a72e114c951f57814b87ccd4\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/c2498115a975c8564ce8ef164c03d46cf9bff65c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/c559962ce9848cd8d6314509d830bbcbc757f48e\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/c5ffa32dc0b47b17aa8400f57c86bc4aaf73ba2c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/c6c0a3c40d64bd35f624e5e9bd164ef241b2db50\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/c752a93f5437dd4cc69edb562498316850b3f4e6\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/cadb86bd2ac1503c2667c9e874e055cb9e6224c9\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/cb8051446f545bbc25a6e703ceb94deb7eb3eceb\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d10c8033f8dc4d6dd53fefc61cba8973918c7867\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d2055ec0f43541cf10096464c9e28235af1d2c1d\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d22242a19caaeb8ef75e434f06abbef50e0e804c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d285d65ca0dc51a865285aa1407ccf1c970f67f1\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d2d6e43fd3f6e8cd76c24166630e1b24e3163a5f\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d4b63113d70a709307571285e41083213d809bad\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d5fa3d27acc4bd3f9c9e05f7f8416ba62858f7d9\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d70706f7c202106ff88a42cb2b882990066e03bd\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/d971a57d899756c41bacfab8bace310d753e2c26\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/da20e410720e5268200c20744a67f3d74066a80d\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/dc6c6685108bb04875ce64ecb2b2d45577242940\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/dd7b72a121f76fd77da977ff5f02384a609e5043\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/e14375b5ea4b33c57e9703e6b81d621069f50e7f\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/e15d1ac4af994a693e3147f4711b8d9a9319eb60\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/e1fd6829aa986046cde2a5df55d92e321d77537a\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/e21c940b0cd9493e0683c285e32e6e71bc78c7ec\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/e461696564168008945225bca75946e4067a1bf8\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/e8cfbed06a9aae8d8d1bab24cca7ceb6a3b6fdd4\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/e965ba6d35841ba5e0cde2c975987cf919132b7c\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/ea38c8ccd0379bd5cad8cac05787f9aab684de28\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/ec6d04d9f57b607103a65b1f7c7b690360c696b6\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/ecd7bb1096aa8a0639ef3379d3044c311f8af597\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/efcad17df7fe50a03a116b52a7db3b23f70cf19f\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/f1bfb902408b6aa045d6aa202cb6383156cddd75\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/f25375126a98ce742fd2018e88d7728b9986eff3\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/f5a5edfe62ae361c5257c41f828e1fbae166bca4\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/fa0a7f39314c78e899e640f3f08d695a5503b4fb\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/fbc2a9a1fab84d662fe4b867f7fca1d772772860\nthird_party/boringssl/src/fuzz/ssl_ctx_api_corpus/fe6076054db748a16858ba736c4eee9c66a6d0c5\nthird_party/boringssl/src/fuzz/verify_name_match_fuzzer_corpus/1b016c1840c8e898f9ff55e637fafb3cf3ead130\nthird_party/boringssl/src/fuzz/verify_name_match_fuzzer_corpus/4294e32c0898747dbab77e9305416adb00507c4f\nthird_party/boringssl/src/fuzz/verify_name_match_fuzzer_corpus/8e747a3d570ba8af6fd8a086363be7c7ff129717\nthird_party/boringssl/src/fuzz/verify_name_match_fuzzer_corpus/a530be31dc772f5da83827396e2db7f3530dbd63\nthird_party/boringssl/src/fuzz/verify_name_match_fuzzer_corpus/b010e4b4f94f13421176001e854c198d659cdbc6\nthird_party/boringssl/src/fuzz/verify_name_match_fuzzer_corpus/c100b87975cddf2b5ba2dc5c79cf19be094ba49c\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/37924c444319c3e53f946bfecb9619f49feac82c\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/42ddf23c41b1cd18d91ee88cbf4ce16691c26ccf\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/471f1dd828dbff86838a550fd418921eb694739b\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/50feeb838ca58e5faaba45e34db5ebe95fc79d90\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/7bbf4751b9c581ae33c572f5313728414c598fdf\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/81ea9ea4435b0dffc2df539aa81fe1baa9c1bab3\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/897be1df5da3a82bb30a3c3cfe6e737c791e7a64\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/8c8d92335b0dd8916648af9298a03be29c47cb3b\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/a716b31050528102348026757fa7f5637da9e8b6\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/f26c509626316176ed2d9ad0d8df8bd53a66f5a1\nthird_party/boringssl/src/fuzz/verify_name_match_normalizename_fuzzer_corpus/f944dcd635f9801f7ac90a407fbc479964dec024\nthird_party/boringssl/src/fuzz/verify_name_match_verifynameinsubtree_fuzzer_corpus/1b016c1840c8e898f9ff55e637fafb3cf3ead130\nthird_party/boringssl/src/fuzz/verify_name_match_verifynameinsubtree_fuzzer_corpus/4294e32c0898747dbab77e9305416adb00507c4f\nthird_party/boringssl/src/fuzz/verify_name_match_verifynameinsubtree_fuzzer_corpus/8e747a3d570ba8af6fd8a086363be7c7ff129717\nthird_party/boringssl/src/fuzz/verify_name_match_verifynameinsubtree_fuzzer_corpus/a530be31dc772f5da83827396e2db7f3530dbd63\nthird_party/boringssl/src/fuzz/verify_name_match_verifynameinsubtree_fuzzer_corpus/b010e4b4f94f13421176001e854c198d659cdbc6\nthird_party/boringssl/src/fuzz/verify_name_match_verifynameinsubtree_fuzzer_corpus/c100b87975cddf2b5ba2dc5c79cf19be094ba49c\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/AnyPolicyTest14EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BadCRLIssuerNameCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BadCRLSignatureCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BadSignedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BadnotAfterDateCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BadnotBeforeDateCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/CPSPointerQualifierTest20EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DSACACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DSAParametersInheritedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DifferentPoliciesTest12EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DifferentPoliciesTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DifferentPoliciesTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DifferentPoliciesTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DifferentPoliciesTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DifferentPoliciesTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/DifferentPoliciesTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/GoodCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/GoodsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidCASignatureTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidDSASignatureTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidEESignatureTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidMissingCRLTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidNameChainingTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidRevokedCATest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidRevokedEETest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidWrongCRLTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidcAFalseTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidcAFalseTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddistributionPointTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddistributionPointTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddistributionPointTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddistributionPointTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvaliddistributionPointTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/LongSerialNumberCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/Mapping1to2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/MappingFromanyPolicyCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/MappingToanyPolicyCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/MissingbasicConstraintsCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/NameOrderingCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/NegativeSerialNumberCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/NoCRLCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/NoPoliciesCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/NoissuingDistributionPointCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/OldCRLnextUpdateCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/OverlappingPoliciesTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/P12Mapping1to3CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/P12Mapping1to3subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/P12Mapping1to3subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/P1Mapping1to234CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/P1Mapping1to234subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP1234CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP123CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP123subCAP12Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP12CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP12subCAP1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP2subCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP2subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/PoliciesP3CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/RevokedsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/TrustAnchorRootCertificate.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/TwoCRLsCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UIDCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UnknownCRLExtensionCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UserNoticeQualifierTest15EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UserNoticeQualifierTest16EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UserNoticeQualifierTest17EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UserNoticeQualifierTest18EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/UserNoticeQualifierTest19EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidCertificatePathTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidDSASignaturesTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidNameUIDsTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest12EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest13EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest14EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidPolicyMappingTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidTwoCRLsTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidcRLIssuerTest28EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidcRLIssuerTest29EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidcRLIssuerTest30EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidcRLIssuerTest33EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddeltaCRLTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddeltaCRLTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddeltaCRLTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddeltaCRLTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddistributionPointTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddistributionPointTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddistributionPointTest5EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValiddistributionPointTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/WrongCRLCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/anyPolicyCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/deltaCRLCA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/deltaCRLCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/deltaCRLCA3Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/distributionPoint1CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/distributionPoint2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA3Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA4Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA5Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/indirectCRLCA6Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy0CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy1CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy5CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping0CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping5CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/keyUsageNotCriticalCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN1CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN3CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN4CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDN5CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDNS1CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsDNS2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsURI1CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/nameConstraintsURI2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/onlyContainsCACertsCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/onlyContainsUserCertsCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/onlySomeReasonsCA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/onlySomeReasonsCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/onlySomeReasonsCA3Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/onlySomeReasonsCA4Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint0CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint0subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint1CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint1subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy0CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy0subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy10CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy10subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy2CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy2subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy4CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy4subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy5CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy5subCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy7CACert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BadCRLIssuerNameCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BadCRLSignatureCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BadSignedCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BadnotAfterDateCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BadnotBeforeDateCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/DSACACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/DSAParametersInheritedCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/GoodCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/GoodsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/LongSerialNumberCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/Mapping1to2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/MappingFromanyPolicyCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/MappingToanyPolicyCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/MissingbasicConstraintsCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/NameOrderCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/NegativeSerialNumberCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/NoPoliciesCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/NoissuingDistributionPointCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/OldCRLnextUpdateCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/P12Mapping1to3CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/P12Mapping1to3subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/P1Mapping1to234CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/P1Mapping1to234subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP1234CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP123CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP123subCAP12CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP12CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP12subCAP1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP2subCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP2subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/PoliciesP3CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/RevokedsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/TrustAnchorRootCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/TwoCRLsCABadCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/TwoCRLsCAGoodCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/UIDCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/UnknownCRLExtensionCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/WrongCRLCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/anyPolicyCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/deltaCRLCA1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/deltaCRLCA1deltaCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/deltaCRLCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/deltaCRLCA2deltaCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/deltaCRLCA3CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/deltaCRLCA3deltaCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/distributionPoint1CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/distributionPoint2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/indirectCRLCA1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/indirectCRLCA3CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/indirectCRLCA5CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/keyUsageNotCriticalCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN1CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN3CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN4CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDN5CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDNS1CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsDNS2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsURI1CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/nameConstraintsURI2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlyContainsCACertsCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlyContainsUserCertsCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint0CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint0subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint1CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint1subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy0CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy10CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy2CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy4CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy5CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy7CACRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl\nthird_party/boringssl/src/pki/testdata/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl\nthird_party/boringssl/src/pki/testdata/parse_certificate_unittest/v3_certificate_template.pk8\nthird_party/boringssl/src/pki/testdata/verify_unittest/google-intermediate1.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/google-intermediate2.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/google-leaf.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/lencr-intermediate-r3.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/lencr-leaf.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/lencr-root-dst-x3.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/lencr-root-x1-cross-signed.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/lencr-root-x1.der\nthird_party/boringssl/src/pki/testdata/verify_unittest/mozilla_roots.der\nthird_party/boringssl/src/util/ar/testdata/linux/bar.cc.o\nthird_party/boringssl/src/util/ar/testdata/linux/foo.c.o\nthird_party/boringssl/src/util/ar/testdata/linux/libsample.a\nthird_party/boringssl/src/util/ar/testdata/mac/bar.cc.o\nthird_party/boringssl/src/util/ar/testdata/mac/foo.c.o\nthird_party/boringssl/src/util/ar/testdata/mac/libsample.a\nthird_party/boringssl/src/util/ar/testdata/windows/bar.cc.obj\nthird_party/boringssl/src/util/ar/testdata/windows/foo.c.obj\nthird_party/boringssl/src/util/ar/testdata/windows/sample.lib\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-CBC-CS3.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-CBC.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-CCM.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-CTR.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-ECB.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-GCM-randnonce.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-GCM.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-GMAC.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-KW.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-KWP.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ACVP-AES-XTS.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/CMAC-AES.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ECDSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/EDDSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/HKDF.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/HMAC-SHA-1.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/HMAC-SHA2-224.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/HMAC-SHA2-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/HMAC-SHA2-384.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/HMAC-SHA2-512-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/HMAC-SHA2-512.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/KDA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ML-DSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ML-KEM.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/PBKDF.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/RSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SHA-1.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SHA2-224.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SHA2-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SHA2-384.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SHA2-512.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SHAKE-128.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SHAKE-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/SLH-DSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/TLS12.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/TLS13.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/cSHAKE-128.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/cSHAKE-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/ctrDRBG.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/hmacDRBG.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/expected/kdf-components.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-CBC-CS3.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-CBC.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-CCM.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-CTR.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-ECB.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-GCM-randnonce.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-GCM.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-GMAC.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-KW.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-KWP.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ACVP-AES-XTS.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/CMAC-AES.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ECDSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/EDDSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/HKDF.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/HMAC-SHA-1.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/HMAC-SHA2-224.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/HMAC-SHA2-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/HMAC-SHA2-384.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/HMAC-SHA2-512-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/HMAC-SHA2-512.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/KAS-ECC-SSC.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/KAS-FFC-SSC.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/KDA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/KDF.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ML-DSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ML-KEM.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/PBKDF.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/RSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SHA-1.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SHA2-224.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SHA2-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SHA2-384.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SHA2-512.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SHAKE-128.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SHAKE-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/SLH-DSA.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/TLS12.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/TLS13.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/cSHAKE-128.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/cSHAKE-256.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/ctrDRBG.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/hmacDRBG.bz2\nthird_party/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/kdf-components.bz2\nthird_party/breakpad/breakpad/docs/getting_started_with_breakpad.md\nthird_party/breakpad/breakpad/src/client/mac/gcov/libgcov.a\nthird_party/breakpad/breakpad/src/client/mac/handler/testcases/testdata/dump_syms_dwarf_data\nthird_party/breakpad/breakpad/src/client/mac/sender/English.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/English.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/da.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/da.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/de.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/de.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/es.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/es.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/fr.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/fr.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/it.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/it.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/ja.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/ja.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/nl.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/nl.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/no.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/no.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/sl.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/sl.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/sv.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/sv.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/tr.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/sender/tr.lproj/Localizable.strings\nthird_party/breakpad/breakpad/src/client/mac/testapp/English.lproj/InfoPlist.strings\nthird_party/breakpad/breakpad/src/client/mac/testapp/crashInMain\nthird_party/breakpad/breakpad/src/client/mac/testapp/crashduringload\nthird_party/breakpad/breakpad/src/tools/solaris/dump_syms/testdata/dump_syms_regtest.o\nthird_party/breakpad/breakpad/src/tools/windows/binaries/dump_syms.exe\nthird_party/breakpad/breakpad/src/tools/windows/binaries/symupload.exe\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/dump_syms_regtest.pdb\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/dump_syms_regtest64.exe\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/dump_syms_regtest64.pdb\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/omap_reorder_bbs.pdb\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/omap_reorder_funcs.pdb\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/omap_stretched.pdb\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/omap_stretched_filled.pdb\nthird_party/breakpad/breakpad/src/tools/windows/dump_syms/testdata/pe_only_symbol_test.dll\nthird_party/breakpad/symupload.exe\nthird_party/catapult/telemetry/telemetry/internal/testing/bear.webm\nthird_party/catapult/telemetry/telemetry/internal/testing/jebgalgnebhfojomionfpkfelancnnkf.crx\nthird_party/catapult/telemetry/telemetry/internal/testing/screen_3_frames.mov\nthird_party/catapult/telemetry/telemetry/internal/testing/vid.mp4\nthird_party/catapult/third_party/gsutil/gslib/tests/test_data/favicon.ico.gz\nthird_party/catapult/third_party/gsutil/gslib/tests/test_data/test.p12\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/key.json.enc\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/key.p12.enc\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/privatekey.p12\nthird_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/user-key.json.enc\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/UTF-16/bom-utf-16-be.srt\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/UTF-16/bom-utf-16-le.srt\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/UTF-32/bom-utf-32-be.srt\nthird_party/catapult/third_party/gsutil/third_party/chardet/tests/UTF-32/bom-utf-32-le.srt\nthird_party/catapult/third_party/gsutil/third_party/crcmod_osx/crcmod/_crcfunext.so\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/secrets.tar.enc\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/secrets.tar.enc\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/old_oauth_credentials_py3.pickle\nthird_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/privatekey.p12\nthird_party/catapult/third_party/gsutil/third_party/httplib2/ref/img1.old\nthird_party/catapult/third_party/html5lib-1.1/html5lib/tests/testdata/tree-construction/domjs-unsafe.dat\nthird_party/catapult/third_party/html5lib-1.1/html5lib/tests/testdata/tree-construction/pending-spec-changes-plain-text-unsafe.dat\nthird_party/catapult/third_party/html5lib-1.1/html5lib/tests/testdata/tree-construction/plain-text-unsafe.dat\nthird_party/catapult/third_party/markupsafe/_speedups.cpython-39-x86_64-linux-gnu.so\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/domjs-unsafe.dat\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/pending-spec-changes-plain-text-unsafe.dat\nthird_party/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/plain-text-unsafe.dat\nthird_party/catapult/tracing/skp_data/google_homepage.skp\nthird_party/catapult/tracing/skp_data/lthi_cats.skp\nthird_party/cpuinfo/src/test/dmesg/alldocube-iwork8.log\nthird_party/cpuinfo/src/test/dmesg/galaxy-a3-2016-eu.log\nthird_party/cpuinfo/src/test/dmesg/galaxy-grand-prime-value-edition.log\nthird_party/cpuinfo/src/test/dmesg/galaxy-j1-2016.log\nthird_party/cpuinfo/src/test/dmesg/galaxy-s7-global.log\nthird_party/cpuinfo/src/test/dmesg/galaxy-s7-us.log\nthird_party/cpuinfo/src/test/dmesg/galaxy-s8-us.log\nthird_party/cpuinfo/src/test/dmesg/huawei-mate-8.log\nthird_party/cpuinfo/src/test/dmesg/huawei-mate-9.log\nthird_party/cpuinfo/src/test/dmesg/huawei-p9-lite.log\nthird_party/cpuinfo/src/test/dmesg/iconia-one-10.log\nthird_party/cpuinfo/src/test/dmesg/oppo-r9.log\nthird_party/cpuinfo/src/test/dmesg/xperia-c4-dual.log\nthird_party/cpuinfo/src/test/dmesg/zenfone-2.log\nthird_party/crabbyavif/src/tests/data/heic/blue.heic\nthird_party/crabbyavif/src/tests/data/heic/blue_422.heic\nthird_party/crabbyavif/src/tests/data/heic/blue_444.heic\nthird_party/crabbyavif/src/tests/data/heic/blue_alpha.heic\nthird_party/crabbyavif/src/tests/data/heic/blue_gh_issue_692.heic\nthird_party/crabbyavif/src/tests/data/heic/blue_grid_alpha.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/autumn_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/bird_burst.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/bothie_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/candle_animation.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/cheers_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/crowd_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/grid_960x640.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/lights_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/old_bridge_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/overlay_1000x680.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/rally_burst.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/random_collection_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/sea1_animation.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/season_collection_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/ski_jump_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/spring_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/starfield_animation.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/stereo_1200x800.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/summer_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/surfer_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/nokiatech/winter_1440x960.heic\nthird_party/crabbyavif/src/tests/data/heic/yuv420_image_with_yuv400_gainmap.heic\nthird_party/crashpad/crashpad/handler/win/z7_test.dll\nthird_party/crashpad/crashpad/snapshot/elf/elf_image_reader_fuzzer_corpus/crashpad_snapshot_test_both_dt_hash_styles.so\nthird_party/crashpad/crashpad/snapshot/elf/elf_image_reader_fuzzer_corpus/ret42\nthird_party/crashpad/crashpad/snapshot/ios/testdata/crash-1fa088dda0adb41459d063078a0f384a0bb8eefa\nthird_party/crashpad/crashpad/snapshot/ios/testdata/crash-5726011582644224\nthird_party/crashpad/crashpad/snapshot/ios/testdata/crash-6605504629637120\nthird_party/crashpad/crashpad/snapshot/ios/testdata/crash-c44acfcbccd8c7a8\nthird_party/crashpad/crashpad/util/net/testdata/binary_http_body.dat\nthird_party/crossbench-web-tests/synthetic/powerline/adv-fashion-1080p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/adv-fashion-240p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/adv-fashion-360p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/adv-fashion-480p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/adv-fashion-720p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/adv-motor-240p.webm\nthird_party/crossbench-web-tests/synthetic/powerline/adv-motor-360p.webm\nthird_party/crossbench-web-tests/synthetic/powerline/adv-motor-480p.webm\nthird_party/crossbench-web-tests/synthetic/powerline/adv-motor-720p.webm\nthird_party/crossbench-web-tests/synthetic/powerline/con-corgi-1080p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/con-corgi-480p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/con-corgi-720p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/con-corgi-x265-1080p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/con-corgi-x265-720p.mp4\nthird_party/crossbench-web-tests/synthetic/powerline/podcast.m4a\nthird_party/crossbench-web-tests/synthetic/powerline/podcast.ogg\nthird_party/crossbench-web-tests/synthetic/powerline/podcast.opus\nthird_party/crossbench/crossbench/probes/profiling/time-profile.tracetemplate\nthird_party/crossbench/tests/crossbench/plt/pb/battery/ac_powered.pb\nthird_party/crossbench/tests/crossbench/plt/pb/battery/battery_powered.pb\nthird_party/crossbench/tests/crossbench/plt/pb/display/1080p.pb\nthird_party/crossbench/tests/crossbench/plt/pb/dumpsys_meminfo.pb\nthird_party/dawn/third_party/benchmark_shaders/unity_boat_attack/unity_webgpu_0000017E9E2D81A0.vs.spv\nthird_party/dawn/third_party/benchmark_shaders/unity_boat_attack/unity_webgpu_000002778DE78280.cs.spv\nthird_party/dawn/third_party/benchmark_shaders/unity_boat_attack/unity_webgpu_000002778F740030.fs.spv\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil-asm/call2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil-asm/cs3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil-asm/cyclecounter.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil-asm/hs3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil-asm/indexabletemp4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil-asm/indexabletemp6.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/abs1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/abs2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/atomics.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/bad_ftoi.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/binary1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/bool1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/bool2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/bufinfo.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/calc_lod.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/call1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/call3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cast1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cast2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cast3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cast4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cast5.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cast6.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cbuffer1.50.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cbuffer1.51.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cbuffer2.50.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cbuffer2.51.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cbuffer3.50.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cbuffer3.51.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cmp1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/constoperand1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cs1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cs2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cs4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/cs5.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/derivatives.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/discard.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/dot1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/double1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/double2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/double3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/double4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/double5.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/double6.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/ds1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/empty.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/eval.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/f32f16.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/gather.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/gather_cmp.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/gather_po.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/gather_po_cmp.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/getdim.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/gs1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/gs2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/half_rcp.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/hs1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/hs2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/icb1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/if1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/if2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/if3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/if4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/if5.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/indexableinput1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/indexableinput2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/indexableoutput1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/indexabletemp1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/indexabletemp2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/indexabletemp3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/indexabletemp5.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/input1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/input2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/input3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/interface1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/liveness1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/loop1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/loop2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/loop3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/loop4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/loop5.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/minprec1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/minprec2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/minprec3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/minprec4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/minprec5.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/minprec6.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/minprec7.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/neg1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/neg2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/negabs1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/nonuniform1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/output1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/output2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/output3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/output4.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/passthrough1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/passthrough2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/precise1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/raw_buf1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/rcp1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/redundantinput1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample_b1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample_cmp1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample_cmp2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample_grad1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sample_l1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/samplecount.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/samplepos.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/saturate1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/shift1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sincos.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/snorm1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/srv_ms_load1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/srv_typed_load1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/srv_typed_load2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/struct_buf1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/sub1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/switch1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/switch2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/switch3.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/swizzle1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/temp1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/temp2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/uav_counter_dec.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/uav_counter_inc.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/uav_raw1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/uav_typed_load_store1.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/uav_typed_load_store2.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/dxbc2dxil/ubfeu16.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/regression_tests/AppendStructuredBuffer.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/regression_tests/ConsumeStructuredBuffer.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/regression_tests/UpdateCounter.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/regression_tests/fork_instanceid_with_modifiers.DX12.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/regression_tests/fork_instanceid_with_modifiers.dxbc\nthird_party/dawn/third_party/dxc/projects/dxilconv/test/regression_tests/unaligned-isg1-osg1.bin\nthird_party/dawn/third_party/dxc/test/Assembler/2007-05-21-Escape.ll\nthird_party/dawn/third_party/dxc/test/Assembler/invalid-name.ll\nthird_party/dawn/third_party/dxc/test/Assembler/invalid-name2.ll\nthird_party/dawn/third_party/dxc/test/Bitcode/DICompileUnit-no-DWOId.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/PR23310.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-GCTable-overflow.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-abbrev-fixed-size-too-big.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-abbrev-no-operands.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-abbrev-vbr-size-too-big.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-abbrev.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-alias-type-mismatch.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-align.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-array-element-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-array-op-not-2nd-to-last.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-array-operand-encoding.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-array-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-bad-abbrev-number.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-bitwidth.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-call-mismatched-explicit-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-call-non-function-explicit-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-code-len-width.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-extract-0-indices.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-extractval-array-idx.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-extractval-struct-idx.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-extractval-too-many-idxs.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-fixme-streaming-blob.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-fp-shift.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-function-argument-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-function-comdat-id.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-fwdref-type-mismatch-2.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-fwdref-type-mismatch.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-gep-mismatched-explicit-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-gep-operator-mismatched-explicit-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-global-var-comdat-id.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-insert-0-indices.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-inserted-value-type-mismatch.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-insertval-array-idx.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-insertval-struct-idx.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-insertval-too-many-idxs.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-invoke-mismatched-explicit-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-invoke-non-function-explicit-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-load-mismatched-explicit-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-load-pointer-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-load-ptr-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-metadata-not-followed-named-node.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-no-proper-module.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-non-vector-extractelement.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-non-vector-insertelement.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-non-vector-shufflevector.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-pointer-element-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-pr20485.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-too-big-fwdref.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-type-table-forward-ref.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-unexpected-eof.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-vector-element-type.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/invalid-vector-length.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/padding-garbage.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/Inputs/padding.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/aggregateInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/attributes-3.3.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/binaryFloatInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/binaryIntInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/bitwiseInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/calling-conventions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/case-ranges-3.3.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/cmpxchg-upgrade.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/cmpxchg.3.6.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/constantsTest.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/conversionInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/drop-debug-info.3.5.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/function-local-metadata.3.5.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/global-variables.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/highLevelStructure.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/invalid.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/linkage-types-3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/local-linkage-default-visibility.3.4.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/memInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/metadata.3.5.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/miscInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/null-type.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/old-aliases.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/pr18704.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/standardCIntrinsic.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/terminatorInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/upgrade-global-ctors.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/upgrade-loop-metadata.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/variableArgumentIntrinsic.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/vectorInstructions.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/visibility-styles.3.2.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/weak-cmpxchg-upgrade.ll.bc\nthird_party/dawn/third_party/dxc/test/Bitcode/weak-macho-3.5.ll.bc\nthird_party/dawn/third_party/dxc/test/LTO/X86/Inputs/invalid.ll.bc\nthird_party/dawn/third_party/dxc/test/Linker/Inputs/drop-debug.bc\nthird_party/dawn/third_party/dxc/test/Linker/Inputs/old_global_ctors.3.4.bc\nthird_party/dawn/third_party/dxc/test/Object/Inputs/GNU.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/IsNAN.o\nthird_party/dawn/third_party/dxc/test/Object/Inputs/MacOSX.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/SVR4.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/absolute.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/archive-test.a-coff-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/archive-test.a-corrupt-symbol-table\nthird_party/dawn/third_party/dxc/test/Object/Inputs/archive-test.a-irix6-mips64el\nthird_party/dawn/third_party/dxc/test/Object/Inputs/coff_archive.lib\nthird_party/dawn/third_party/dxc/test/Object/Inputs/coff_archive_short.lib\nthird_party/dawn/third_party/dxc/test/Object/Inputs/common.coff-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/corrupt-archive.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/corrupt-version.elf-x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/corrupt.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/darwin-m-test1.mach0-armv7\nthird_party/dawn/third_party/dxc/test/Object/Inputs/darwin-m-test2.macho-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/darwin-m-test3.macho-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/dext-test.elf-mips64r2\nthird_party/dawn/third_party/dxc/test/Object/Inputs/elf-mip64-reloc.o\nthird_party/dawn/third_party/dxc/test/Object/Inputs/elf-reloc-no-sym.x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/elf-versioning-test.i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/elf-versioning-test.x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/hello-world.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/hello-world.macho-x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-bad-rel-type.elf\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-bad-section-address.coff\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-section-index.elf\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-section-size.elf\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-sh_entsize.elf\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-strtab-non-null.elf\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-strtab-size.elf\nthird_party/dawn/third_party/dxc/test/Object/Inputs/invalid-strtab-type.elf\nthird_party/dawn/third_party/dxc/test/Object/Inputs/liblong_filenames.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/libsimple_archive.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-archive-unsorted-x86_64.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-archive-x86_64.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-data-in-code.macho-thumbv7\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-empty-kext-bundle-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-hello-g.macho-x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-bad-symbol-index\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-header\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-no-size-for-sections\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-section-index-getSectionRawName\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-symbol-name-past-eof\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-too-small-load-command\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-too-small-segment-load-command\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-invalid-zero-ncmds\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-no-exports.dylib\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-rpath-x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-text-data-bss.macho-x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-text-sections.macho-x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-text.thumb\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-universal-archive.x86_64.i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho-universal.x86_64.i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho64-invalid-incomplete-load-command\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho64-invalid-incomplete-segment-load-command\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho64-invalid-no-size-for-sections\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho64-invalid-too-small-load-command\nthird_party/dawn/third_party/dxc/test/Object/Inputs/macho64-invalid-too-small-segment-load-command\nthird_party/dawn/third_party/dxc/test/Object/Inputs/micro-mips.elf-mipsel\nthird_party/dawn/third_party/dxc/test/Object/Inputs/no-section-table.so\nthird_party/dawn/third_party/dxc/test/Object/Inputs/no-sections.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/no-start-symbol.elf-x86_64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/program-headers.elf-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/program-headers.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/program-headers.mips\nthird_party/dawn/third_party/dxc/test/Object/Inputs/program-headers.mips64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/relocatable-with-section-address.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/relocation-dynamic.elf-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/relocation-relocatable.elf-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/relocations.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/sectionGroup.elf.x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/shared-object-test.elf-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/shared-object-test.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/stackmap-test.macho-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/symtab-only.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/thin-path.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/thin.a\nthird_party/dawn/third_party/dxc/test/Object/Inputs/thumb-symbols.elf.arm\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-executable-test.macho-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-label-test.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.coff-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.coff-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.elf-hexagon\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.elf-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.elf-mips64el\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.elf-mipsel\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.macho-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test.macho-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test2.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/trivial-object-test2.macho-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/unwind-section.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/very_long_bytecode_file_name.bc\nthird_party/dawn/third_party/dxc/test/Object/Inputs/weak-global-symbol.macho-i386\nthird_party/dawn/third_party/dxc/test/Object/Inputs/weak.elf-x86-64\nthird_party/dawn/third_party/dxc/test/Object/Inputs/xpg4.a\nthird_party/dawn/third_party/dxc/test/Other/Inputs/block-info-only.bc\nthird_party/dawn/third_party/dxc/test/Other/Inputs/has-block-info.bc\nthird_party/dawn/third_party/dxc/test/Other/Inputs/no-block-info.bc\nthird_party/dawn/third_party/dxc/test/Transforms/GlobalOpt/2007-04-05-Crash.ll\nthird_party/dawn/third_party/dxc/test/Transforms/SampleProfile/Inputs/fnptr.binprof\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic-archive.macho.x86_64\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic-lto-dw4.macho.x86_64\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic-lto-dw4.macho.x86_64.o\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic-lto.macho.x86_64\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic-lto.macho.x86_64.o\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic.macho.x86_64\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic1.macho.x86_64.o\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic2.macho.x86_64.o\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/basic3.macho.x86_64.o\nthird_party/dawn/third_party/dxc/test/tools/dsymutil/Inputs/libbasic.a\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/binary-formats.macho32b\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/binary-formats.macho32l\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/binary-formats.macho64l\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/copy_block_helper.gcda\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/copy_block_helper.gcno\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/highlightedRanges.covmapping\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/lineExecutionCounts.covmapping\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/range_based_for.gcda\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/range_based_for.gcno\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/regionMarkers.covmapping\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/report.covmapping\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/showExpansions.covmapping\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/templateInstantiations.covmapping\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test.gcda\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test.gcno\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test_exit_block_arcs.gcda\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test_exit_block_arcs.gcno\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test_file_checksum_fail.gcda\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test_func_checksum_fail.gcda\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test_paths.gcda\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test_paths.gcno\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/test_read_fail.gcno\nthird_party/dawn/third_party/dxc/test/tools/llvm-cov/Inputs/universal-binary\nthird_party/dawn/third_party/dxc/test/tools/llvm-cxxdump/Inputs/eh.obj.coff-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-cxxdump/Inputs/trivial.obj.coff-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-cxxdump/Inputs/trivial.obj.elf-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/AArch64/Inputs/ObjC.exe.macho-aarch64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/AArch64/Inputs/ObjC.obj.macho-aarch64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/AArch64/Inputs/hello.exe.macho-aarch64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/AArch64/Inputs/hello.obj.macho-aarch64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/AArch64/Inputs/link-opt-hints.macho-aarch64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/AArch64/Inputs/print-mrs.obj.macho-aarch64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/ARM/Inputs/data-in-code.macho-arm\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/ARM/Inputs/hello.exe.macho-arm\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/ARM/Inputs/hello.obj.macho-arm\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/bad-ordinal.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/bind.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/bind2.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/common-symbol-elf\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/compact-unwind.macho-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/compact-unwind.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/export.dll.coff-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/exports-trie.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/file.obj.coff-arm\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/large-bss.obj.coff-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/lazy-bind.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/many-relocs.obj-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/nop.exe.coff-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/proc-specific-section-elf\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/rebase.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/unwind-info-no-relocs.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/unwind-info.macho-arm64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/unwind-info.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/weak-bind.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/win64-unwind.exe.coff-x86_64.exe\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/Inputs/win64-unwind.exe.coff-x86_64.obj\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/ObjC.exe.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/ObjC.obj.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/Objc1.32bit.exe.macho-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/Objc1.32bit.obj.macho-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/Objc2.32bit.exe.macho-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/Objc2.32bit.obj.macho-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/Objc2.64bit.exe.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/Objc2.64bit.obj.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/dylibLoadKinds.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/dylibModInit.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/dylibRoutines.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/dylibSubClient.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/dylibSubFramework.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/dylibSubLibrary.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/dylibSubUmbrella.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/exeThread.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/hello.exe.macho-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/hello.exe.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/hello.obj.macho-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/hello.obj.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/hello_cpp.exe.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/linkerOption.macho-x86_64\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/macho-universal-archive.x86_64.i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/macho-universal.x86_64.i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/out-of-section-sym.elf-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-objdump/X86/Inputs/trivial.obj.elf-i386\nthird_party/dawn/third_party/dxc/test/tools/llvm-profdata/Inputs/c-general.profraw\nthird_party/dawn/third_party/dxc/test/tools/llvm-profdata/Inputs/compat.profdata.v1\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/Inputs/dsym-test-exe\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/Inputs/dsym-test-exe-differentname.dSYM/Contents/Resources/DWARF/dsym-test-exe-second\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/Inputs/dsym-test-exe-second\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/Inputs/dsym-test-exe.dSYM/Contents/Resources/DWARF/dsym-test-exe\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/Inputs/fat.o\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/Inputs/ppc64\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/pdb/Inputs/test.exe\nthird_party/dawn/third_party/dxc/test/tools/llvm-symbolizer/pdb/Inputs/test.pdb\nthird_party/dawn/third_party/dxc/tools/clang/test/DXC/Inputs/bom-inc-utf16le.hlsli\nthird_party/dawn/third_party/dxc/tools/clang/test/DXC/Inputs/bom-main-utf16le.hlsl\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_hitobject_accessors_failing.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_hitobject_fromrayquery_failing.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_hitobject_invoke_failing.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_hitobject_make_failing.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_hitobject_trace_failing.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_hitobject_trace_invaliduav.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_maybereorder_failing.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_reorder_scope_sm68_failing.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/LitDXILValidation/ser_reordercoherent_invalid_sm.ll\nthird_party/dawn/third_party/dxc/tools/clang/test/Misc/Inputs/serialized-diags-stable.dia\nthird_party/dawn/third_party/dxc/tools/clang/test/Preprocessor/Inputs/headermap-rel/foo.hmap\nthird_party/dawn/third_party/dxc/tools/clang/test/Preprocessor/Inputs/headermap-rel2/project-headers.hmap\nthird_party/dawn/third_party/dxc/tools/clang/test/Profile/Inputs/c-general.profdata.v1\nthird_party/dawn/third_party/gn/dxc/win_build_output/mc/include/dxc/Tracing/dxcetw/dxcetwTEMP.BIN\nthird_party/dawn/third_party/gn/dxc/win_build_output/mc/include/dxc/Tracing/dxcetw/dxcetw_MSG00001.bin\nthird_party/dawn/third_party/gn/webgpu-cts/cache.tar.gz\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/SGI/cubemap.sho\nthird_party/dawn/third_party/khronos/OpenGL-Registry/extensions/SGI/imaging_pipeline.sho\nthird_party/dawn/third_party/webgpu-cts/deploy_key.enc\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/abs.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/acos.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/acosh.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/asin.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/asinh.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/atan.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/atan2.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/atanh.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_addition.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_division.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_logical.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_matrix_addition.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_matrix_matrix_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_matrix_scalar_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_matrix_subtraction.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_matrix_vector_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_remainder.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/af_subtraction.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/ai_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_addition.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_division.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_logical.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_addition.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_matrix_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_scalar_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_subtraction.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_vector_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_remainder.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f16_subtraction.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_addition.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_division.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_logical.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_addition.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_matrix_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_scalar_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_subtraction.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_vector_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_multiplication.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_remainder.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/f32_subtraction.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/i32_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/i32_comparison.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/u32_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/binary/u32_comparison.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/bitcast.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/ceil.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/clamp.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/cos.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/cosh.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/cross.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/degrees.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/derivatives.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/determinant.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/distance.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/dot.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/exp.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/exp2.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/faceForward.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/floor.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/fma.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/fract.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/frexp.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/fwidth.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/inverseSqrt.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/ldexp.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/length.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/log.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/log2.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/max.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/min.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/mix.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/modf.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/normalize.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/pack2x16float.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/pow.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/quantizeToF16.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/radians.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/reflect.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/refract.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/round.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/saturate.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/sign.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/sin.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/sinh.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/smoothstep.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/sqrt.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/step.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/tan.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/tanh.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/transpose.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/trunc.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/af_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/af_assignment.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/ai_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/ai_assignment.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/bool_conversion.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/f16_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/f16_conversion.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/f32_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/f32_conversion.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/i32_arithmetic.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/i32_conversion.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unary/u32_conversion.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unpack2x16float.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unpack2x16snorm.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unpack2x16unorm.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unpack4x8snorm.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/cache/webgpu/shader/execution/unpack4x8unorm.bin\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-h264-bt601-hflip.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-h264-bt601-rotate-180.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-h264-bt601-rotate-270.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-h264-bt601-rotate-90.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-h264-bt601-vflip.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-h264-bt601.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp8-bt601.webm\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt601-hflip.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt601-rotate-180.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt601-rotate-270.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt601-rotate-90.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt601-vflip.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt601.mp4\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt601.webm\nthird_party/dawn/third_party/webgpu-cts/src/resources/four-colors-vp9-bt709.webm\nthird_party/devtools-frontend/src/test/e2e/resources/media/corrupt.webm\nthird_party/devtools-frontend/src/test/e2e/resources/media/fisch.webm\nthird_party/devtools-frontend/src/test/e2e/resources/performance/timeline/enhanced-trace.json.gz\nthird_party/devtools-frontend/src/test/e2e/resources/performance/timeline/web.dev-trace.json.gz\nthird_party/devtools-frontend/src/test/e2e/resources/performance/wasm/profiling.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/add.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/callstack-wasm-to-js.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/memory.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/scopes.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/stepping-with-state.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/syntax-highlighting.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/unreachable.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/unreachable_with_dwarf.wasm\nthird_party/devtools-frontend/src/test/e2e/resources/sources/wasm/wasm-with-sourcemap.wasm\nthird_party/devtools-frontend/src/third_party/image_diff/linux/image_diff\nthird_party/devtools-frontend/src/third_party/image_diff/linux/libbase.so\nthird_party/devtools-frontend/src/third_party/image_diff/linux/libboringssl.so\nthird_party/devtools-frontend/src/third_party/image_diff/linux/libc++.so\nthird_party/devtools-frontend/src/third_party/image_diff/linux/libchrome_zlib.so\nthird_party/devtools-frontend/src/third_party/image_diff/mac/image_diff\nthird_party/devtools-frontend/src/third_party/image_diff/mac/libbase.dylib\nthird_party/devtools-frontend/src/third_party/image_diff/mac/libc++.dylib\nthird_party/devtools-frontend/src/third_party/image_diff/mac/libchrome_zlib.dylib\nthird_party/devtools-frontend/src/third_party/image_diff/win32/image_diff.exe\nthird_party/federated_compute/src/fcp/client/engine/data/join_model.flatbuffer\nthird_party/federated_compute/src/fcp/client/engine/data/length_model.flatbuffer\nthird_party/federated_compute/src/fcp/client/rust/testdata/endorsement.json.sig\nthird_party/ffmpeg/tests/reference.pnm\nthird_party/flatbuffers/src/android/gradle/wrapper/gradle-wrapper.jar\nthird_party/flatbuffers/src/dart/test/monsterdata_test.mon\nthird_party/flatbuffers/src/java/src/test/resources/monsterdata_test.mon\nthird_party/flatbuffers/src/kotlin/gradle/wrapper/gradle-wrapper.jar\nthird_party/flatbuffers/src/net/FlatBuffers/flatbuffers.snk\nthird_party/flatbuffers/src/samples/monster.bfbs\nthird_party/flatbuffers/src/tests/64bit/test_64bit.bfbs\nthird_party/flatbuffers/src/tests/64bit/test_64bit.bin\nthird_party/flatbuffers/src/tests/FlatBuffers.Test/monsterdata_cstest.mon\nthird_party/flatbuffers/src/tests/FlatBuffers.Test/monsterdata_cstest_sp.mon\nthird_party/flatbuffers/src/tests/alignment_test_after_fix.bin\nthird_party/flatbuffers/src/tests/alignment_test_before_fix.bin\nthird_party/flatbuffers/src/tests/annotated_binary/annotated_binary.bfbs\nthird_party/flatbuffers/src/tests/annotated_binary/annotated_binary.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_root_offset.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_root_table_too_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_root_table_vtable_offset.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_string_length.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_string_length_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_struct_array_field_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_struct_field_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_table_field_offset.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_table_field_size.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_union_type_value.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vector_length_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vector_scalars_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vector_strings_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vector_structs_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vector_tables_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vector_union_type_value.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vector_unions_cut_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vtable_field_offset.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vtable_ref_table_size.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vtable_ref_table_size_short.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vtable_size.bin\nthird_party/flatbuffers/src/tests/annotated_binary/tests/invalid_vtable_size_short.bin\nthird_party/flatbuffers/src/tests/arrays_test.bfbs\nthird_party/flatbuffers/src/tests/gold_flexbuffer_example.bin\nthird_party/flatbuffers/src/tests/javatest.bin\nthird_party/flatbuffers/src/tests/monster_test.bfbs\nthird_party/flatbuffers/src/tests/monsterdata_go_wire.mon.sp\nthird_party/flatbuffers/src/tests/monsterdata_python_wire.mon\nthird_party/flatbuffers/src/tests/monsterdata_test.mon\nthird_party/flatbuffers/src/tests/swift/Tests/Flatbuffers/monsterdata_test.mon\nthird_party/flatbuffers/src/tests/ts/monsterdata_javascript_wire.mon\nthird_party/flatbuffers/src/tests/ts/unicode_test.mon\nthird_party/flatbuffers/src/tests/unicode_test.mon\nthird_party/fontconfig/src/test/4x6.pcf\nthird_party/fontconfig/src/test/8x16.pcf\nthird_party/fontconfig/src/test/broken_cff_major.otf\nthird_party/harfbuzz-ng/src/perf/fonts/NotoSansDuployan-Regular.otf\nthird_party/hunspell/fuzz/bdict_corpus/02a25363e79f11115132055fb880773b325f6aef\nthird_party/hunspell/fuzz/bdict_corpus/0883e336027e9e21911a277a9d8fa4c1b9490edd\nthird_party/hunspell/fuzz/bdict_corpus/0c70b309d63d09ac033b8c80abff19457c93772a\nthird_party/hunspell/fuzz/bdict_corpus/0d78b77395c09c9db65dc76b276944154e9cf91b\nthird_party/hunspell/fuzz/bdict_corpus/0df4db3e331d781458ed7f5e5326812ba22a980f\nthird_party/hunspell/fuzz/bdict_corpus/142541422e926a0e54acfe3c00292d7ae269c9f5\nthird_party/hunspell/fuzz/bdict_corpus/1f2216ed82922b16e3cf2194fbe320c1d0f31831\nthird_party/hunspell/fuzz/bdict_corpus/2051fd638bbbd568fe55066340f4827f1b60014e\nthird_party/hunspell/fuzz/bdict_corpus/29a708fe3eea419ee8fa22f66fa60e60ccae4398\nthird_party/hunspell/fuzz/bdict_corpus/2fb325875fb0367f26affb28f1b0fbf8ead43b48\nthird_party/hunspell/fuzz/bdict_corpus/3a9cb078ca19ad92faa8695bf15bb6138386a713\nthird_party/hunspell/fuzz/bdict_corpus/3d922153192cbf2238450647127e88ec294576ce\nthird_party/hunspell/fuzz/bdict_corpus/9bee55d2991f5c3b673c541152afa6b1d1c6521c\nthird_party/hunspell/fuzz/bdict_corpus/9deab6c08f36bbebfd65ee52fa031d8834ad886e\nthird_party/hunspell/fuzz/bdict_corpus/b56dab34aac0c0f9863cd5e7a17bebab99389d9d\nthird_party/hunspell/fuzz/bdict_corpus/bbf0c58cdbc56d84118b2c6ccda1521497d07dea\nthird_party/hunspell/fuzz/bdict_corpus/bd81796eafc329a45ea7d76ab6b85a2f27334b1e\nthird_party/hunspell/fuzz/bdict_corpus/cf670ba4a6e5d9871e334f67b137cec5efe3785b\nthird_party/hunspell/fuzz/bdict_corpus/e168bd974f8f0bc25219207694e3a1e9d53458c3\nthird_party/hunspell/fuzz/bdict_corpus/e8576db25f36cfc9c26570f098fd8c83cd92a68a\nthird_party/hunspell/fuzz/bdict_corpus/edb7834459dd9eb4b19e48ed1c9ba73d20c4c4e8\nthird_party/hunspell/fuzz/bdict_corpus/en-US-7-1.bdic\nthird_party/hunspell/fuzz/bdict_corpus/en-US-8-0.bdic\nthird_party/hunspell/fuzz/bdict_corpus/f95048cdc0fc231dd712bad106578a9eeecd869b\nthird_party/hunspell/fuzz/bdict_corpus/fda69541054125551c41ab3e591e0482405ca2dc\nthird_party/hyphenation-patterns/hyb/hyph-af.hyb\nthird_party/hyphenation-patterns/hyb/hyph-as.hyb\nthird_party/hyphenation-patterns/hyb/hyph-be.hyb\nthird_party/hyphenation-patterns/hyb/hyph-bg.hyb\nthird_party/hyphenation-patterns/hyb/hyph-bn.hyb\nthird_party/hyphenation-patterns/hyb/hyph-cs.hyb\nthird_party/hyphenation-patterns/hyb/hyph-cu.hyb\nthird_party/hyphenation-patterns/hyb/hyph-cy.hyb\nthird_party/hyphenation-patterns/hyb/hyph-da.hyb\nthird_party/hyphenation-patterns/hyb/hyph-de-1901.hyb\nthird_party/hyphenation-patterns/hyb/hyph-de-1996.hyb\nthird_party/hyphenation-patterns/hyb/hyph-de-ch-1901.hyb\nthird_party/hyphenation-patterns/hyb/hyph-el.hyb\nthird_party/hyphenation-patterns/hyb/hyph-en-gb.hyb\nthird_party/hyphenation-patterns/hyb/hyph-en-us.hyb\nthird_party/hyphenation-patterns/hyb/hyph-es.hyb\nthird_party/hyphenation-patterns/hyb/hyph-et.hyb\nthird_party/hyphenation-patterns/hyb/hyph-eu.hyb\nthird_party/hyphenation-patterns/hyb/hyph-fr.hyb\nthird_party/hyphenation-patterns/hyb/hyph-ga.hyb\nthird_party/hyphenation-patterns/hyb/hyph-gl.hyb\nthird_party/hyphenation-patterns/hyb/hyph-gu.hyb\nthird_party/hyphenation-patterns/hyb/hyph-hi.hyb\nthird_party/hyphenation-patterns/hyb/hyph-hr.hyb\nthird_party/hyphenation-patterns/hyb/hyph-hu.hyb\nthird_party/hyphenation-patterns/hyb/hyph-hy.hyb\nthird_party/hyphenation-patterns/hyb/hyph-it.hyb\nthird_party/hyphenation-patterns/hyb/hyph-ka.hyb\nthird_party/hyphenation-patterns/hyb/hyph-kn.hyb\nthird_party/hyphenation-patterns/hyb/hyph-la.hyb\nthird_party/hyphenation-patterns/hyb/hyph-lt.hyb\nthird_party/hyphenation-patterns/hyb/hyph-lv.hyb\nthird_party/hyphenation-patterns/hyb/hyph-ml.hyb\nthird_party/hyphenation-patterns/hyb/hyph-mn-cyrl.hyb\nthird_party/hyphenation-patterns/hyb/hyph-mr.hyb\nthird_party/hyphenation-patterns/hyb/hyph-mul-ethi.hyb\nthird_party/hyphenation-patterns/hyb/hyph-nb.hyb\nthird_party/hyphenation-patterns/hyb/hyph-nl.hyb\nthird_party/hyphenation-patterns/hyb/hyph-nn.hyb\nthird_party/hyphenation-patterns/hyb/hyph-or.hyb\nthird_party/hyphenation-patterns/hyb/hyph-pa.hyb\nthird_party/hyphenation-patterns/hyb/hyph-pt.hyb\nthird_party/hyphenation-patterns/hyb/hyph-ru.hyb\nthird_party/hyphenation-patterns/hyb/hyph-sk.hyb\nthird_party/hyphenation-patterns/hyb/hyph-sl.hyb\nthird_party/hyphenation-patterns/hyb/hyph-sq.hyb\nthird_party/hyphenation-patterns/hyb/hyph-sv.hyb\nthird_party/hyphenation-patterns/hyb/hyph-ta.hyb\nthird_party/hyphenation-patterns/hyb/hyph-te.hyb\nthird_party/hyphenation-patterns/hyb/hyph-tk.hyb\nthird_party/hyphenation-patterns/hyb/hyph-uk.hyb\nthird_party/hyphenation-patterns/hyb/hyph-und-ethi.hyb\nthird_party/icu/cast/icudtl.dat\nthird_party/icu/chromecast_video/icudtl.dat\nthird_party/icu/chromeos/icudtl.dat\nthird_party/icu/flutter/icudtl.dat\nthird_party/icu/flutter_desktop/icudtl.dat\nthird_party/icu/ios/icudtl.dat\nthird_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu\nthird_party/icu/source/data/in/coll/ucadata-implicithan.icu\nthird_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu\nthird_party/icu/source/data/in/coll/ucadata-unihan.icu\nthird_party/icu/source/data/in/nfc.nrm\nthird_party/icu/source/data/in/nfkc.nrm\nthird_party/icu/source/data/in/nfkc_cf.nrm\nthird_party/icu/source/data/in/nfkc_scf.nrm\nthird_party/icu/source/data/in/pnames.icu\nthird_party/icu/source/data/in/ubidi.icu\nthird_party/icu/source/data/in/ucase.icu\nthird_party/icu/source/data/in/uemoji.icu\nthird_party/icu/source/data/in/ulayout.icu\nthird_party/icu/source/data/in/unames.icu\nthird_party/icu/source/data/in/uprops.icu\nthird_party/icu/source/data/in/uts46.nrm\nthird_party/icu/source/test/fuzzer/collator_rulebased_ICU-21041.fuzz\nthird_party/icu/source/test/testdata/TestFont1.otf\nthird_party/icu/source/test/testdata/encoded.utf16be\nthird_party/icu/source/test/testdata/importtest.bin\nthird_party/icu/source/test/testdata/old_e_testtypes.res\nthird_party/icu/source/test/testdata/old_l_testtypes.res\nthird_party/icu/source/test/testdata/uni-text.bin\nthird_party/icu/tzres/metaZones.res\nthird_party/icu/tzres/timezoneTypes.res\nthird_party/icu/tzres/zoneinfo64.res\nthird_party/jni_zero/test/java/src/org/jni_zero/JavapClass.class\nthird_party/libdmg-hfsplus/src/test/attribution_reference/hdiutila.hfs\nthird_party/libdmg-hfsplus/src/test/attribution_reference/hdiutila.hfs.dmg\nthird_party/libdmg-hfsplus/src/test/attribution_reference/hdiutilb.hfs\nthird_party/libdmg-hfsplus/src/test/attribution_reference/hdiutilb.hfs.dmg\nthird_party/libdmg-hfsplus/src/test/attribution_reference/hdiutilp.hfs\nthird_party/libdmg-hfsplus/src/test/empty.hfs\nthird_party/libdmg-hfsplus/src/test/hfs_xattrs_reference/hdiutil.hfs.dmg\nthird_party/libdmg-hfsplus/src/test/hfs_xattrs_reference/hdiutila.hfs.dmg\nthird_party/libdmg-hfsplus/src/test/hfs_xattrs_reference/hdiutilab.hfs.dmg\nthird_party/libdmg-hfsplus/src/test/hfs_xattrs_reference/hdiutilb.hfs.dmg\nthird_party/libdmg-hfsplus/src/test/run_spanning_reference/hdiutila.hfs\nthird_party/libdmg-hfsplus/src/test/run_spanning_reference/hdiutila.hfs.dmg\nthird_party/libdmg-hfsplus/src/test/run_spanning_reference/hdiutilp.hfs\nthird_party/libdrm/src/intel/tests/gen4-3d.batch\nthird_party/libdrm/src/intel/tests/gen5-3d.batch\nthird_party/libdrm/src/intel/tests/gen6-3d.batch\nthird_party/libdrm/src/intel/tests/gen7-2d-copy.batch\nthird_party/libdrm/src/intel/tests/gen7-3d.batch\nthird_party/libdrm/src/intel/tests/gm45-3d.batch\nthird_party/libgav1/src/tests/data/five-frames.ivf\nthird_party/libgav1/src/tests/data/ivf-header-and-truncated-frame-header\nthird_party/libgav1/src/tests/data/ivf-header-only\nthird_party/libgav1/src/tests/data/one-frame-large-timestamp.ivf\nthird_party/libgav1/src/tests/data/one-frame-truncated.ivf\nthird_party/libgav1/src/tests/data/one-frame.ivf\nthird_party/libjpeg_turbo/testimages/monkey16.pgm\nthird_party/libjpeg_turbo/testimages/monkey16.ppm\nthird_party/libjpeg_turbo/testimages/test1.icc\nthird_party/libjpeg_turbo/testimages/test2.icc\nthird_party/libjpeg_turbo/testimages/test3.icc\nthird_party/libjpeg_turbo/testimages/testorig.pgm\nthird_party/libjpeg_turbo/testimages/testorig.ppm\nthird_party/liblouis/src/tables/da-dk-g18.ctb\nthird_party/liblouis/src/tables/fr-bfu-comp8.utb\nthird_party/liblouis/src/tables/hr-chardefs.cti\nthird_party/liblouis/wasm/liblouis_wasm.data\nthird_party/liblouis/wasm/liblouis_wasm.wasm\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1242_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1246_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1264_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1268_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1284_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1340_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1345_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1441_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1473_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1649_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1658_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1659_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1664_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1670_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1671_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1684_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1758_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1767_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1784_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1787_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1809_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1868_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1869_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1876_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/1939_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/20_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/211_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/212_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/213_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/216_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/218_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/220_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/221_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/222_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/223_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/224_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/225_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/226_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/227_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/228_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/229_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/230_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/231_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/232_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/233_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/234_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/235_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/236_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/237_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/238_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/239_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/240_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/241_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/242_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/243_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/244_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/245_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/246_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/247_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/248_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/249_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/250_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/251_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/252_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/253_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/254_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/255_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/256_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/257_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/258_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/260_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/261_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/262_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/263_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/264_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/265_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/266_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/267_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/268_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/269_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/27_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/290_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/291_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/297_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/298_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/299_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/30_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/31_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/32_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/33_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/34_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/350_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/351_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/352_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/353_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/354_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/355_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/356_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/357_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/358_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/359_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/36_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/370_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/371_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/372_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/373_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/374_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/374_ru\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/375_be\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/375_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/375_ru\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/376_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/377_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/378_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/380_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/380_uk\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/381_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/382_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/383_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/385_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/386_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/387_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/389_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/39_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/40_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/41_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/420_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/421_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/423_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/43_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/44_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/45_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/46_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/47_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/48_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/49_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/500_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/501_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/502_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/503_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/504_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/505_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/506_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/507_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/508_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/509_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/51_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/53_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/55_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/56_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/57_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/58_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/590_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/591_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/592_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/593_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/594_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/595_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/596_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/597_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/598_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/599_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/60_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/61_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/62_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/63_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/64_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/65_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/66_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/670_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/672_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/673_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/674_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/675_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/676_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/677_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/678_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/679_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/680_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/681_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/682_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/683_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/685_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/686_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/687_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/688_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/689_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/690_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/691_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/692_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/7_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/7_ru\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/81_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/82_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/82_ko\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/84_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/850_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/852_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/852_zh\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/852_zh_Hant\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/853_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/855_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/856_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_zh\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/86_zh_Hant\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/880_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/881_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/882_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/886_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/90_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/91_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/92_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/93_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/93_fa\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/94_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/95_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/960_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/961_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/962_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/963_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/964_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/965_ar\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/965_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/966_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/967_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/968_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/970_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/971_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/972_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/973_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/974_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/975_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/976_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/977_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/98_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/98_fa\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/992_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/993_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/994_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/995_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/996_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/998_en\nthird_party/libphonenumber/dist/java/carrier/src/com/google/i18n/phonenumbers/carrier/data/config\nthird_party/libphonenumber/dist/java/carrier/test/com/google/i18n/phonenumbers/carrier/testing_data/1650_en\nthird_party/libphonenumber/dist/java/carrier/test/com/google/i18n/phonenumbers/carrier/testing_data/244_en\nthird_party/libphonenumber/dist/java/carrier/test/com/google/i18n/phonenumbers/carrier/testing_data/44_en\nthird_party/libphonenumber/dist/java/carrier/test/com/google/i18n/phonenumbers/carrier/testing_data/44_sv\nthird_party/libphonenumber/dist/java/carrier/test/com/google/i18n/phonenumbers/carrier/testing_data/config\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1201_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1202_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1203_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1204_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1205_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1206_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1207_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1208_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1209_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1210_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1212_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1213_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1214_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1215_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1216_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1217_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1218_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1219_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1220_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1223_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1224_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1225_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1226_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1227_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1228_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1229_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1231_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1234_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1235_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1236_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1239_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1240_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1242_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1248_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1249_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1250_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1251_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1252_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1253_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1254_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1256_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1260_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1262_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1263_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1267_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1269_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1270_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1272_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1276_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1279_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1281_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1283_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1289_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1301_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1302_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1303_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1304_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1305_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1306_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1307_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1308_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1309_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1310_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1312_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1313_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1314_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1315_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1316_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1317_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1318_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1319_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1320_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1321_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1323_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1325_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1326_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1329_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1330_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1331_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1332_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1334_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1336_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1337_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1339_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1340_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1341_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1343_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1345_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1346_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1347_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1350_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1351_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1352_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1354_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1360_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1361_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1363_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1364_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1365_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1367_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1368_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1369_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1380_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1382_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1385_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1386_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1401_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1402_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1403_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1404_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1405_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1406_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1407_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1408_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1409_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1410_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1412_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1413_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1414_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1415_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1416_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1417_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1418_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1419_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1423_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1424_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1425_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1428_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1430_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1431_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1432_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1434_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1435_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1437_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1438_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1440_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1442_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1443_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1445_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1447_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1448_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1450_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1458_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1463_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1464_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1468_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1469_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1470_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1472_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1474_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1475_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1478_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1479_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1480_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1484_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1501_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1502_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1503_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1504_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1505_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1506_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1507_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1508_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1509_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1510_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1512_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1513_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1514_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1515_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1516_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1517_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1518_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1519_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1520_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1530_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1531_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1534_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1539_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1540_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1541_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1548_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1551_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1557_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1559_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1561_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1562_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1563_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1564_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1567_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1570_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1571_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1572_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1573_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1574_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1575_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1579_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1580_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1581_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1582_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1584_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1585_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1586_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1587_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1601_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1602_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1603_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1604_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1605_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1606_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1607_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1608_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1609_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1610_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1612_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1613_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1614_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1615_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1616_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1617_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1618_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1619_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1620_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1623_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1626_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1628_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1629_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1630_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1631_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1636_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1639_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1640_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1641_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1645_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1646_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1647_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1649_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1650_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1651_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1656_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1657_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1659_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1660_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1661_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1662_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1667_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1669_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1671_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1672_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1678_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1680_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1681_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1682_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1683_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1689_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1701_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1702_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1703_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1704_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1705_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1706_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1707_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1708_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1709_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1712_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1713_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1714_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1715_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1716_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1717_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1718_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1719_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1720_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1724_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1725_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1726_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1727_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1730_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1731_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1732_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1734_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1737_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1740_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1742_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1743_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1747_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1753_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1754_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1757_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1760_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1762_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1763_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1765_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1769_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1770_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1771_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1772_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1773_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1774_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1775_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1778_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1779_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1780_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1781_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1782_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1785_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1786_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1801_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1802_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1803_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1804_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1805_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1806_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1807_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1808_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1809_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1810_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1812_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1813_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1814_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1815_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1816_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1817_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1818_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1819_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1820_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1825_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1826_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1828_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1830_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1831_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1832_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1835_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1838_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1839_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1840_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1843_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1845_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1847_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1848_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1850_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1854_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1856_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1857_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1858_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1859_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1860_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1862_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1863_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1864_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1865_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1867_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1870_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1872_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1873_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1876_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1878_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1879_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1901_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1902_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1903_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1904_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1905_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1906_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1907_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1908_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1909_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1910_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1912_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1913_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1914_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1915_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1916_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1917_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1918_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1919_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1920_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1925_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1928_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1929_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1930_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1931_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1934_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1936_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1937_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1938_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1940_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1941_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1943_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1945_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1947_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1948_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1949_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1951_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1952_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1954_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1956_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1959_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1970_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1971_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1972_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1973_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1978_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1979_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1980_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1983_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1984_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1985_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1986_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/1989_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/20_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/212_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/212_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/213_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/216_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/218_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/220_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/221_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/222_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/222_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/223_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/224_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/225_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/226_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/227_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/228_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/228_es\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/228_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/229_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/229_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/230_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/230_es\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/230_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/232_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/233_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/234_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/236_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/237_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/238_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/239_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/239_pt\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/240_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/241_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/242_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/243_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/243_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/244_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/244_pt\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/245_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/245_pt\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/247_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/249_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/251_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/252_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/254_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/255_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/256_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/257_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/258_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/258_pt\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/260_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/261_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/263_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/264_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/266_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/267_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/268_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/269_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/27_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/290_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/290_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/299_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/30_el\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/30_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/31_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/31_nl\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/32_de\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/32_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/32_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/32_nl\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/34_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/34_es\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/351_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/351_pt\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/352_de\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/352_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/352_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/353_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/354_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/355_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/358_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/358_fi\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/358_sv\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/359_bg\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/359_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/36_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/36_hu\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/370_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/372_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/373_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/373_ro\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/373_ru\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/374_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/374_hy\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/374_ru\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/375_be\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/375_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/375_ru\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/380_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/380_uk\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/381_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/381_sr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/382_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/383_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/383_sq\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/383_sr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/385_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/386_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/387_bs\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/387_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/387_hr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/387_sr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/389_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/39_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/39_it\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/40_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/40_ro\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/41_de\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/41_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/41_fr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/41_it\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/420_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/421_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/43_de\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/43_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/44_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/46_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/47_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/48_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/48_pl\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/49_de\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/49_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/501_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/504_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/51_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/52_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/52_es\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/53_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/54_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/54_es\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/55_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/55_pt\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/56_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/56_es\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/57_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/58_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/58_es\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/592_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/593_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/595_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/598_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/599_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/61_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/62_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/62_id\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/63_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/64_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/66_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/66_th\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/670_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/672_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/673_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/675_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/676_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/678_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/679_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/680_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/682_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/685_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/686_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/688_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/689_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/690_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/7_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/7_ru\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/81_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/81_ja\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/82_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/82_ko\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/84_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/84_vi\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/850_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/86_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/86_zh\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/880_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/886_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/886_zh\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/886_zh_Hant\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/90_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/90_tr\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/91_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/92_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/93_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/93_fa\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/94_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/95_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/960_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/961_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/962_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/963_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/966_ar\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/966_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/967_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/968_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/970_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/971_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/972_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/972_iw\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/975_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/976_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/98_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/98_fa\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/992_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/993_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/994_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/995_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/996_en\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/geocoding/data/config\nthird_party/libphonenumber/dist/java/geocoder/src/com/google/i18n/phonenumbers/timezones/data/map_data\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/1201_de\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/1201_en\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/1212_en\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/1617_en\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/1650_de\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/1650_en\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/1989_en\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/54_en\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/82_en\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/82_ko\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/geocoding/testing_data/config\nthird_party/libphonenumber/dist/java/geocoder/test/com/google/i18n/phonenumbers/timezones/testing_data/map_data\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_255\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_27\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_30\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_31\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_34\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_350\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_351\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_352\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_358\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_359\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_36\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_372\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_373\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_380\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_381\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_385\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_39\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_43\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_44\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_49\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_505\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_506\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_52\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_54\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_55\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_58\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_595\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_61\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_62\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_64\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_66\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_675\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_676\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_679\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_7\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_81\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_84\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_855\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_856\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_90\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_91\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_94\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_95\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_971\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_972\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberAlternateFormatsProto_995\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_800\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_808\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_870\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_878\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_881\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_882\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_883\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_888\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_979\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_AZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BQ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_BZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_CZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_DE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_DJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_DK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_DM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_DO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_DZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_EC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_EE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_EG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_EH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ER\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ES\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ET\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_FI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_FJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_FK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_FM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_FO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_FR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GQ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_GY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_HK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_HN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_HR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_HT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_HU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ID\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IQ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_IT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_JE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_JM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_JO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_JP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_KZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_LY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ME\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ML\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MQ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_MZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_NZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_OM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_PY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_QA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_RE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_RO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_RS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_RU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_RW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ST\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_SZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_TZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_UA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_UG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_US\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_UY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_UZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_VA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_VC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_VE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_VG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_VI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_VN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_VU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_WF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_WS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_XK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_YE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_YT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ZA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ZM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProto_ZW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_AZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BQ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_BZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_CZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_DE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_DJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_DK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_DM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_DO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_DZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_EC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_EE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_EG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_EH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ER\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ES\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ET\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_FI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_FJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_FK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_FM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_FO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_FR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_GY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_HK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_HN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_HR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_HT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_HU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ID\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IQ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_IT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_JE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_JM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_JO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_JP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_KZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_LY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ME\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ML\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MQ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_MZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NP\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_NZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_OM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_PY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_QA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_RE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_RO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_RS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_RU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_RW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SB\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ST\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SX\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_SZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TD\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TH\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TJ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TL\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TO\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TR\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TV\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TW\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_TZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_UA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_UG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_US\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_UY\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_UZ\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_VA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_VC\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_VE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_VG\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_VI\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_VN\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_VU\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_WF\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_WS\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_XK\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_YE\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_YT\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ZA\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ZM\nthird_party/libphonenumber/dist/java/libphonenumber/src/com/google/i18n/phonenumbers/data/ShortNumberMetadataProto_ZW\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_800\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_882\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_979\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_AD\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_AE\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_AM\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_AO\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_AR\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_AU\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_BB\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_BR\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_BS\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_BY\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_CA\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_CC\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_CN\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_CO\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_CX\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_DE\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_FR\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_GB\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_GG\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_IT\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_JP\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_KR\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_MX\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_NZ\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_PL\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_RE\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_RU\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_SE\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_SG\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_TA\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_US\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_UZ\nthird_party/libphonenumber/dist/java/libphonenumber/test/com/google/i18n/phonenumbers/data/PhoneNumberMetadataProtoForTesting_YT\nthird_party/libphonenumber/dist/metadata/metadata.zip\nthird_party/libphonenumber/dist/migrator/src/test/java/com/google/phonenumbers/migrator/testing/testData/testMetadataZip.zip\nthird_party/libphonenumber/dist/tools/java/cpp-build/target/cpp-build-1.0-SNAPSHOT-jar-with-dependencies.jar\nthird_party/libwebm/source/testing/testdata/accurate_cluster_duration.webm\nthird_party/libwebm/source/testing/testdata/accurate_cluster_duration_last_frame.webm\nthird_party/libwebm/source/testing/testdata/accurate_cluster_duration_two_tracks.webm\nthird_party/libwebm/source/testing/testdata/bbb_480p_vp9_opus_1second.webm\nthird_party/libwebm/source/testing/testdata/block_with_additional.webm\nthird_party/libwebm/source/testing/testdata/chapters.webm\nthird_party/libwebm/source/testing/testdata/colour.webm\nthird_party/libwebm/source/testing/testdata/cues_before_clusters.webm\nthird_party/libwebm/source/testing/testdata/discard_padding.webm\nthird_party/libwebm/source/testing/testdata/estimate_duration.webm\nthird_party/libwebm/source/testing/testdata/fixed_size_cluster_timecode.webm\nthird_party/libwebm/source/testing/testdata/force_new_cluster.webm\nthird_party/libwebm/source/testing/testdata/invalid/block_ends_beyond_cluster.mkv\nthird_party/libwebm/source/testing/testdata/invalid/blockgroup_block_ends_beyond_blockgroup.mkv\nthird_party/libwebm/source/testing/testdata/invalid/chapters_truncated_chapter_string.mkv\nthird_party/libwebm/source/testing/testdata/invalid/chapters_truncated_chapter_string_2.mkv\nthird_party/libwebm/source/testing/testdata/invalid/fixed_lacing_bad_lace_size.mkv\nthird_party/libwebm/source/testing/testdata/invalid/invalid_vp9_bitstream-bug_1416.webm\nthird_party/libwebm/source/testing/testdata/invalid/invalid_vp9_bitstream-bug_1417.webm\nthird_party/libwebm/source/testing/testdata/invalid/primarychromaticity_fieldtoolarge.webm\nthird_party/libwebm/source/testing/testdata/invalid/projection_float_overflow.webm\nthird_party/libwebm/source/testing/testdata/long_tag_string.webm\nthird_party/libwebm/source/testing/testdata/matroska_doctype.mkv\nthird_party/libwebm/source/testing/testdata/max_cluster_duration.webm\nthird_party/libwebm/source/testing/testdata/max_cluster_size.webm\nthird_party/libwebm/source/testing/testdata/metadata_block.webm\nthird_party/libwebm/source/testing/testdata/output_cues.webm\nthird_party/libwebm/source/testing/testdata/projection.webm\nthird_party/libwebm/source/testing/testdata/segment_duration.webm\nthird_party/libwebm/source/testing/testdata/segment_info.webm\nthird_party/libwebm/source/testing/testdata/set_cues_track_number.webm\nthird_party/libwebm/source/testing/testdata/set_pixelwidth_pixelheight.webm\nthird_party/libwebm/source/testing/testdata/set_segment_duration.webm\nthird_party/libwebm/source/testing/testdata/simple_block.webm\nthird_party/libwebm/source/testing/testdata/test_stereo_left_right.webm\nthird_party/libwebm/source/testing/testdata/tracks.webm\nthird_party/libwebm/source/testing/testdata/webm_doctype.webm\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/00805c2543756a5fd85652d03bfbbd2eb6192ca5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/00d120eb143bb02c48d7c863e5826d2ad1a6da4b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/018dee8285e9e20ca3996bb2dc0284b5c57ba75a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/020edb59637c1e6439f19aa3a5a9d50c3377dbe9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0247ce2b1a71752a3af11e1065ca90afa0df9d30\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/028b19f7d79f5da7a2af13a0c1e2d13f7eaf24cd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/029ab55b16df41881f8de2351205201da334550a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/029be5e90913b19cf5890559cf3f98aa909f0a84\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/02fb96539b84bbd12de84ff05cbc9dc3faa96b7e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0349f5632d21faa36b85520ad0b524d561f5e13f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/036fc9daf7fb1b4274dd668cfd883248ebbad967\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/037a4edc18e475ec81081e47277cbf51f1316680\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0481dad9a7d0e6fab0c703bba9b3268db96c6793\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/04dc2407e7142f5618aa5105377925b0b0ed544b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/04fa2f34ff4a4406d136e5aaba5debe7d8129a06\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/054fd0041ad81cfad0a85e3c59195485492a4493\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/056b83ab2457979ea021e7118ab847eba265df15\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/058326151c1d4a490964d495d35adcf15178030f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/05847b5be0eb200d6a6b340c939c7a654b55003e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/05b600ae9a9072ac2865247e69ed0736a0c58316\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/05cf976698b55df1fcd03bc07446bb9283dad9d7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/05d4dfda5e264fffda243f2991a86e96141f579a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/07c3ade9713892bb75db2d93b48ef40b262a54e6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/07eaf3c7437032f60c905f6f8e3dfc193491b602\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/07f67b922b503354b2aebcdcc4ab7b6d3150b048\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/08af8d91bb21835c50330e997d973cac8ff67766\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0a18f05bb16402756202160225aec9c5a654f1ae\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0b60823983971ee17a2590678f0fc0762c21bb73\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0bae7f0976af0f75974047b5f2cf4c9645412066\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0c1862b4065eefab2535ecc6951295e38069a82e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0c2f51d5ffc69e69680bf3d6edb91d76c353ad14\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0c3af72d69f18103383c9cd41a7f2676a9d28a40\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0c43df7fc9d06187249187583c3c082520701289\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0cadf5ecf58a394560a1f6db72a2e21264445d13\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0cd91a4e7bec912beb3b47a685b89d5be24d0046\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0d0da60f91f9489af113d8484d9b6871622523d5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0d30a4f88e53de1ce4bf1ec724016f2f4c11bc9b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0d6b3b1d024e7aa73fbc58b157ab53df048a2f2c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0d94310cfd8a9acdbc7fb82ad9c73cdf3f64f926\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/0f5741483be8f4f6eddcb70ea418fb0c08da9443\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/109e125f729f84d69c3e3a614123547a094534ad\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/10d257a4a314e20644fbc469cdebafe16c7f46a8\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/10d951f88995a2176878501a2633b9bb4822ff96\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/11c122ce1f7d993f809a4eb5db17c738f279a707\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/11e288617056809208561f2a9112fd0664d378d2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/124fde9cfe7157773d8febcbb0829914bf4d17d3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1386cc740c80ede6dfea5f3bb1d4fe1501ab5e91\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/13dd373ccb0c534402c6f7c4a0bdd723a26bc2c1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/13fc3d2b32d789c84be6349bb585c308289b4c3e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/148357130d1e5ac4059ad2bb6c63d78e2523f7d2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/15366a3aafe2590c2e3183c088dde4cc100cb956\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/15feeb939fa90b25f57622a0abd9155ca88ad08b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/16282b78a2018eb78544316554a92fe1003859e3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1717628a6d6ea868febec5fb196edcf4b9eb284d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/17921b1e28600e7e3faf67fc68b397ecab4e2a52\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/17b8276355dd2368647b7756431820f5275cc3e2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/17d0aece97973ab23a467486b177ea9722e1b90b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/17e80cf8c247d17acad56c88750da34893fcb4fd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/18040e106688eb1d54323927a403439ecfde6626\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1813261b3141faa01431c82e06292485516d3327\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/184ee2343d4b9f62c69383692829fd852ad8855d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/186035a2f5c09ccd6b7d15de46f8561c98d8897d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/186292900ad9d43881b71765158c32d78d80c8f3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/18fd762b91406d37b85a7b342a91434a15f17290\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/19334eee05eeb18c549498e7ca2e792a2a4e04f3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1a9a5df35779dd6e9e1de171b9bb0d316d2b64a5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1ab3d30f60743c2a1d3043773aae3a04f83c07c0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1ad84ed46f3fda305150bac93958a5a390e23a67\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1b40a997150aa03c23ecc6efe445a2d7c3dd8368\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1b6b3bab9032cd420f350b6bb252942484f6b527\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1b7765cb05c94581461ffcd38d38b7b272d8e9d6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1b89e3fe0cbd4c2291a74bf21969a9d9d851cbf1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1b95d4da08fe949a60f63cd59213d42d30dbd381\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1bac1200e05bb3269d019903241791c917a12bd0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1bb8f5f81b7f6c1d58e1f7bb13fa561fe1a146bc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1c56068c6dd17e9a824db6da78d64f933267a8c0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1c8db8b9d88dd3483b6f81e4224c4f985046e6ac\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1d29a77924602a79c0f546535a885f59cbbbc405\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1d75a65733da627e5c401625bff522eadf098315\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1df9507cc2a54a369646d6d34d846d3fcc172479\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/1e7a571be5aa542c3dfec1223d2e089a3075ce1f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/20a6b040258fbfa09bb37c6fc07106b2e43bada7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/20e8ca854d3c0c375dc943142a04ee2260f0d1fd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/212ee7d21a8cb25249644cab4f959db111f3a3c0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/224ce7b415f7950118880fce0594734aef489fec\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/226e70c1beddace83862791a6555c80475640bd0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/233d53e3eb21b6ea6feebd6e59e3ef888a840f49\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/237f7aee90f206d3a6b138cc908b8921b544e190\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/23e1ac0f77f1283cf6e9fa044df3ec51bff27fd4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/23fcee6c71a8f5a22447df688724c0250fb77a70\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2459eb855d8c6ebac13cb74d996565d78130f4dd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/259188e5fb0c09046df96f6d565c59e0d146f198\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/26f07f8e28e7521ed282fe5c3938c1ae225816b9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/276425d65d58453d03a3444c9f6662d08d449af7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/27d62874ec87a2552e7c842da65de113aa69f7aa\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/281b259280ada5d07b07a22cbe9a78c7b0fba94b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/299ed12b98673c6c4adbcf886cb70db8adde6aa1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2a40feb7480d0b31c36d5626761e948d0ae52792\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2a6d7e2b829ed28307b551eda0d96f1834bff899\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2a8dda90aa286175b5c683b57fae1dc7e6ac1e7e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2a9588e6fab82016b545462cff2ed014c0345551\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2b1d57a8e8fa7164c9ba00957c9486010754560c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2b475d1a8f2fe4fbba92e1424f0ea96d95b12fb7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2bb80c6d0e2eadd73018eb2a8cae37d41602ee79\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2c1f94c76e4eec607cce5311323620f349912e73\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2c962c7fbceaacf8247ac9b70c8eeb1f814e435b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2c9aaabacf3a3b48dec4a85767cc5d38a1736aff\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2cf086299f983d0afc7f95c5e0c86b657448af33\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2d0d96b95e9a3316d1ff0ef019ada509bbde4c9d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2d414d5dfd20055393df3208009840da9cfabca9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2df967edcc00ac5c8e00037f1a43680600af5cba\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2e6b09f1eca05ce2bba920fb78f9bca2a883fda0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2e8bde3549723e13849b604f4deedd51c71dfef5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/2f6e92a71918d01c16762d5ca59b328f1341d326\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/306e2cf9aebe012cb0769b1b2a6ea68af2e8ed44\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/30f7348d35de0c47d2044736cb115972b800569d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/310798b8d94a3a2fe649a4c871458b4d74fdcf32\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/31ea606a9859bb29d7f98162d254348021e0d932\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3230fc31ab8d408c484aa28bbe36431f71101243\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/328b7c92996e480d1f11efe847c3be4b5dc0f8eb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/32e58bb3d00863115f33707e0c8af722036676fd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/32fc8547b6145c502d98e5e0c296ebd05badfdb9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/334cddba889265a1263feb77a2afdc454ca54f5e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/33c9f9990890d2baf0c30d74b34b486082782413\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/341f3e8689e57eeab4234fcdd6d2b8f800b9ab34\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3457e356eac79bf1c30b59940532d360dba2c1a9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/351185a29bdbc7bf0d584479001fb47c32c61e5b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/35ae0d43c6bfc5f4b45f16877157832fddafce77\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/35b2f81c573b15304cb9b13f00008b460da78942\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/35d9256a4d7ef3ee54384616178af3a8092d0981\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/36352efd680a747f0f2c93d760559d69399a4102\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3685ffbcfe28b166ced0a783b012a446f9cfea46\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/36def8b2661197d594756f116a750822ae1d65d5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/371950308853fb3b1b3a940c0598bfdfeb1d0f9c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3765e9174971dbac9cfeb7e485ca61dc4941f7a9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/37cae036ce7ff5d0671f32d3757579f248609c9c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/38460ea06ee847ff3d5733415c299b44b0866e58\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3865de2fec3f353513d86b28e43bf936d4707f97\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3867b18060c307e0d04e0098f195d699e4b3294f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/391920720c3609b7c1f7b51162ce3ec99329a0b4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/395027454c7d5babff9544414c04a39d712eed1c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3a258c9ed48e634ed8d495f07caf21dbc6978205\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3a397485197e6b99c77158132eaf211389615fe5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3a66b34706b686fe0fa8ca8f10c829758b2ebb07\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3ba666ad891fa8009dfc961aa3c215bbfd2d81d2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3ba9769c7c23cc3c80542ad123a371cf4f69e858\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3beb4432302433e303a9ccaf34637dd3a910028e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3c6cdebc450d20a58150a9c71335b45a6a5ee0e5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3c867362eb6a20f573a890db87749fce3c719d14\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3cd69ddcd34bd874e3abade696f95c949c17198d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3de495ebac4b80064b79844f3a9453270caec251\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3e04542bcc462ded0025b53371f709d8fcd25c21\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3e94196e55a9214083bda470772d71aedc17eb5f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3ec4ac00bb967a335b5caae0ae51488f2fda6583\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3eec38c0ac3a96856d3210a0357857e70b07a9cb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3ef82ba46238fa46b89148a230d23e741ba5f1da\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3fbd43f81888ca60e5bfe49b47e23cb115d5cd7d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3fe56e5b06653e8a37c99da190ff8d44d14bfc06\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/3febffec3be8b1f4bcb76a01c1d713600d8e4adb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/43380e5a9dd29ca847e9b5bfba12a0a95d94d0da\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/435d3ff6ddc43ac582e740ead969397fd2bfc7f5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/448120a37132488f48ab6c46a146c995948958cc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/46db501d3e9a8808118333740a22bf9c808af239\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/47a2ca2b47aa1993cb655b77a0273ff139dd2280\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/490576c8f6c235e1ed921c4932bac028070c806a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4930b86bf0dfb02836b0319d21aa4a63a8dd894d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/49667ff0b09901223117e74d2506bc37a5ae1580\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/49906adf7313330e29be20d51fb36e9bdf1939c3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/49c0e3eed81c1827e755c70c9c6d9606e7f54b22\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4a3e77f5bc061fc8121ef7ebd2b8e3ebb0bdd609\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4a454e01ef09b175f3864b654cfc1104a850e871\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4acd9df9a7ee34e48c6c80777159b089f417a69a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4af5564129d7b4c9c4736a3e511926c29348a4a4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4b3957bcbe5975399e34485cf0e5229169ab67b9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4c9e40aa8a439a500f073cf5a1e060a16ad12a6f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4cb5ff0e26f5bd0bb1fca846b4843db69095f18b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4ce80549344cf5b0432e39e7b5382407f0763e8c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4d10ae0032f04fa01148a54fae6838c44e4bb5bd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4db2ded939a16fb1907dc2bad7acf67a64e38c0c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4dc3a9a9477fb452ba7a4026bbc01d4cdd3d4990\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4e1fb006a2268fa5fc70ca6b241bbc71faa6d7ff\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4e871bbc5089f9550533641ddf6850f8722dfc36\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4eeb4507868732d3705d1ab10f6a31f70f579556\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/4f21f3584c99e97453ebe513ed44c86530fbebba\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5103160695cd56d281faa45d9267013488cc7bde\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/521103054e395afd0f9612b47c71cfa0e62151b9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/523511e33c8788ebb1b703d7c5ad12b5da03964e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/53809012a8d5cfee839c3d0961b7fdc9468329a7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/53c01d820d125e57b28410ca5b3a9c72c18d4102\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/53c27071f53df6b8d2e5c419edf95b7792b278e7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/53d5307f2e7852b183839fe93c20647004d151ec\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5506797514c0b214f5faa9764a9e149cd1df9d28\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5566c6d599866f5e523c54e6575d7b9e557a2539\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5600abaefe804c50a353bbfdd0f9e10ffc102f81\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5611ddd40488973ee6c64c45ad57d6eefe6da100\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/56b0ddd4e44492b45ebb7e9438b0a5556c244bfb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5729395b452092152b06fbb8976e9bf1fda06439\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/57cce6fac7c0992eb338e0e538d3e0ee3fe7f1cd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5822672f068da89546838004ae59552e12e132f7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/59ce13e9a22e88dac879841256ff66f02cd2f8cc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5a020527fc80b0de64e279fc44635687e014a9cf\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5a645b30948850f8efb7bdd11944bdf3112c7bfe\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5b2f727461cde3c02ffdfb300adb0b4a09734911\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5b5531d859ab5bbb034345bbaa2852e9d8a1e1ef\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5b980cb94e35769ec92a140ca00d34977e7da5ec\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5bfec2fe795176646fa0babecf97c04045bd4814\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5c28d94242e9a5ba7e7324e59e5dd12f3e31e51c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5c67728ab04ba3dfe4b2636cf609f9617c4a5974\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5cd36053e269c97f5359b0a075d80bf1e23b5f47\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5d6f99c2afbf68a1b15a17e07945c11db8579e5f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5dd149b1b8509f456c16c4ac6dac3c7d6aa217ed\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5e84011c6b092e9f0d6ba60f12fc0fae95a622ca\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/5f56766993de2b8c2db87116090af546e1add3b0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/60571c8be9bee3b13428613df66ff36cf54309ec\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/60ac245f262ee1ff177d351a4fe246060fb4538b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6120aafb0db1715400e47d0a61fb9f6d8665a736\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/61953a8f7a9f0613020d297a6d350abeeaf6e58c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/61c0a7fef46c0c1b081b1c2b40835805e5989b54\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/620d85870206e88db0bc3ee978c24c0bbc1821ba\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/621131d8e28a67a6b4fb03c611f4375873d69678\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/624cbd42e3ebf35a3a0ba55b3b4969b99054f84d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/62a329f65143f1571dc4a2fbb256800c8ce4d89f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/62f8a53cfb4dd625dcb31ee2ba258db3916a3bd0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6318dc574b3ad7291fee7e01bfeaa674eb0feb48\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6457a079debb9b532255e3e6ddf276b29808b49d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/646061a4526506a0b3c62629f4f77b6072c8f9c3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6538d0517865c8832ee9bec87609b7bd4facb025\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/653de28e2f085334e30ec1c964540b432a3cfbc6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/657c9c42bf3e1c79a6dcb9071bf123367dc37734\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/65ebba0df08a5484686905e99631a4ead845c08b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/66dd27c22fe09842ac4c4f51fdef4bea500b6a70\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/66e25df2bd43c840337a49e0cb5b386e9d290d80\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6714df1ac1c54d4c30add212454e9513c6880767\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/68a6f9c2f62e9f57667de9563b5d612ec2f2c829\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/69089b76cc62fe00615702bdd1f339e259194d42\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/69d8622d24c7315f344c424297986170f7ef2243\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6a700d958cb3a7565d5a6b74540486874d52b4c7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6a852150c5c2a12d325e78056687a8ea97b25fe7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6ac8c9f754d5ff3c0cd3f3f585de99dd73944bbe\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6ace27a48f12990e2169cc099007aa5fa11962d2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6b10397dc3bff2ccf57be4fe3ff9d8d1acb8c76e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6c3f1d96c06b853551f685dde821142928f55acf\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6c8de4d4bbb5294154c3b140d43836757b9f08ac\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6cf122ee328af5cf6f18d5f9546b0fe761951b8d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6cfbbc25caa217e22fd7ca3e92d2051c5f661bdb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6d703bc900e74d1a576bebcccb63e3b2701ae86d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6e1afa81dfcd6833705d84b45881f085c19b2211\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6e244ec3b81e0d2f8b5810854859e1b8140422d9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6e323b4c733df90d55c754e099fb5a13bd9701cb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6e36720f3f55dc0cd5d585c6770572964719b5b8\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6e8384ab115ac92bb7787121cfb03582e2d72585\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6ebf8b74dca1657f5f7ffadeccd629984473dcb4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6ec18dcca0d820fff04c03c3a1bce37dd8ada41d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6eceebb8f46545393d217ab0111ff7dd29bc99f7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6ee071f654fd6b7b25725a8bdd880bb6836e8c81\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6f1088b3d1f4cdfbc37d9b8cfc1ff4c3bde2f205\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6f79e36e880664c9b3b610140d2485fb6a6e5039\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/6fbea59066b2b97fa45259aa87c40c4310070019\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7056b9c294f0cff7b4ace611a19363b2fc096bb3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7073dca40b911fb22f738c99aff43a10ae6c4db5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7164d8ca3f4c3d621cc5eed7b59e3495e7b017a0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/720d36ea7f9616b1a1d47fa5b746e8657b5f973f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/72ccbcbc53c7fa54247a81bd1d0e62dd0779494b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/736c0460f94c089c9e270857a4222a21ffd9e13f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/745e32f46833c075c8e68552e0fbbcdd5ec52641\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/74aa7256477af2c0e2511df16376dee323f3ccb6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7528086eea404dccc3ee5b214befbc2a95676feb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7528f9f08f80c8e85951aa1db2dc616e992c1a62\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/75af94f9695c375e5eb620849f0213ad41e8f205\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/75e1ff2e016b7b80ecb7a6a1f4c3238a2a2ed130\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/76129c3bdedafb3bda93f53266bd17bffdc30682\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7670db89e0c3fe492c91458de219c3be34a3dcb7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7673d7fdf630637c6ae2b96694a047044c1a9cb0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/76903905e654ddc59acf57380bf3dc1ea136bad9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/76d36e3cf3d31e0f76af08bd7ba5571f679057a1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/775ce646f7dbf50199b8e8df85c9441b8a0a5447\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7770a6fd33ce821e60c78b0cb67a7e8c8bb74269\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/781b24e3433ba400df3ccddf56cb8fc7b1fd52ce\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/784db9d87b31ffb040ad212e4018b30c3535ad18\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7880e2ae55d255065ad415c4c625e1b63bfd2a93\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/78cb3d726e4f9e8bc89b399fa514c3b600bf8e5a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/79ba60931988a5974328a73fe091bdf6f5992891\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/79cdb8dec1ad07b389f544a511f89b347429837e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7b12a398a1860ac2f3930d5020e422aec061f177\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7bf1682743405f3d5b3433830eadae4ea311807d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7c7ef0e305f37f833708b375271d59300d120d84\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7d06bd4a7de57953ef09c2e18ca67aa7ff367c76\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7d31bd53bb7eb7b1f354c5f85d376390760ab16f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7d67ef4d0c681655d4b4e93e848d56865630390b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7db9fe869081fdc855913dd000de0d493f5d5192\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7f20c1e73451c3321c30223db91b891753ef77dd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/7fd4d999983c3fbf22763853e90ec10b03c70b17\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8104a007bc88a0a8d81ce1fd26d8b2333061e920\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/81320c48ed6eea94712c5e8594c0799fbfe30d10\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/81425ca3d0afb88cc10d412dcc9795905eacd6d9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/819b4bd08ae7d758990aea8ab9739f3cb97fd42c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8206d92b710c04ce0bd706cec25fbb72014c79bf\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/822926c528d16c0a9ca4c48a25651f6a0730d797\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/82d80b6051f0750777bdc37319851741144b3671\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/830c73748baaa10c2016d04b408a7f481882cd89\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8315ca46618bd0771353336407396df293e8c182\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/831c152337e8b2993b8cddfde7553a8c9e64631f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/832fad0e723027e5bd74726b1722a838183dada7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/83b78d2ad8afd0729de45b4d9fdd765a949d8073\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/84a04bf3e15345f5c992bc6732a42b95857631a7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/84d3a72c434074ee0d810fb2357047efd23f58f6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8659fe309298ca90f201ac7ced95b9d0de510eeb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/866cf21064b9e20eded44e2e096fd9ce6185ce86\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8864c6c9319ef120d3accb7b70c32c8f5c1ebccb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/88f01cffe9972bf447a21034c45f6b943ea3ec07\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/88f15d430469d209b72cd098405efd15a6d18b05\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8936b35f29084151fa3755d81030386940523c07\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/89a42d72ffe0b23309a9da4e15b8854c1cf939ea\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8a0cf07d2592231bd579e4399538d9f490e3e5b9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8a5d1c05f894414aa5aaa66cf901c52dfcb119a1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8aa514b6e6fef8d045aa049fdb52fa8adcf722d4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8b0dcd4400fe19cf6a268af780990f47dba08189\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8c4655e6528071edd445715ff1559f399dc9d47c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8c695cbcc43e37ce25194c4b61b3d87488b308a1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8cdcf83eb89d7e5c87cfa1b8811c95f738747a6a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8d0c6e6b3d74233685c3a2c1793d1a7b0ae2e34d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8d444e8b311d158f854a03ca35d2c7865cd2c46b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8dc289730cc03ecbbed57d04cdca538a4fd08059\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8dc58cfcb396a60db921901f1b0807c4f4f37619\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8e05be75b7c14c463af277559dc8ea7841a733c8\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8e7eef00a7a6719e77544b57d1d98ff83a37e55a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8ed6ef9af5555ce4ff12b23139add9621e7ad930\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8f39f83b71d49805a451f81a5a451f5f3d74927d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8f403efbef079f1775b63bcf1061983e4c5d2162\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/8f8f956eaaf8f7f5e65002be888b946218f0f7ce\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/90a03241b5cc656b7c2a4ef55664b0320fa3bd43\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/925a91e7c25a43d9da8b63eba51ed66a52d833aa\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/92de5c217802ec24886240188dca293325eb17c9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/939da66e1fc8bb9854865066ee47b6ac4b933aa9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/93a91331e7c3c060f461ae1f22e2bbf4747ffe33\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/94f6dfc499cbf2e84ffe1d69cb751ada9f2f2e3a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9539fef8ffb9f7c542061f1af1f3f98e9a714cc3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/953c9a616ea56067225c88fccc6423496f2501a6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/95a60268c555a77c1010d75bb44142af47635486\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/95e410025b965cf6ab2e8e2d3559efbe71c1a972\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9671f253d1eb7cd504a5617058ce4c01a80c897e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9698d3424f1581a6bbb66c764f14c95a74b87675\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/970ab6333aa5ccf8c2dc14bb56814f7bb4303b94\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/98978113d2116dc4bdbb10265fa32bd95230bdb6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/989e2872d2a34de543f23c5061db68212d8258f7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/98ca9a00ad571c4454fce709d5405e5aca2a363c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9965361765a4151902ec04fb21d9247b3a5ed10d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/99d6fe94a50faa50db9d7eb38d74bc3cc8417dc1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9a6869cec3dc84f2051bfaf0ee0d3552aa221f89\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9cc1f26de1e3a7df8c7c03b95ff73ce9709c85f1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9cc5b552abbd551485135fa87eab739a0a784057\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9cca361865a4fbff75abdbb79c1e91706780576c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9d8e99f07604d6cb05ef613d41cbfb93b2aff787\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9ecd61eaf2681a882473247a603b9f30c2663d49\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9f0a3b7c0814b4f80c0745161c8769f63098981b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9f711c29ccf3f54d44000d7ef6299585674be288\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/9fae60819c28d4fcc88a6a1b93dcf69b4e458203\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a02431cf7c501a5b368c91e41283419d8fa9fb03\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a0ac6c3c83817637bbbcb11a5106c57aa6654afb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a15fdfa620d19a92d9eaa9f3f13010e53f902796\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a18e76ae792a054c2f6d0d01e0e78d58678b35e3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a26fb85be3d2bb8a2360bb4d9533a1651bd12d99\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a3071bfcb7b2fd3c4286ea42e1f7940754b55697\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a4fafc117cbfde8c240deccc8997c7966d9109ba\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a59ffb5f6122e45136352585d3b53294a71346d0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a5b3a3c48727c26dfd625f247069d2cdbfa031f0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a5c829fbcd9fd760bc55bc8ab6901b8d401b65f6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a5fbbce038cad4f5e0c0f97fa69ebc3601123e5c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a6e57b33e7a219168280e51bc98a44de40f0f9ca\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a78afe9e4e9f02a10ebadac64171ad49749a6965\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a823a019c0b19c97a1d35722cd843109ab016c17\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a8468104c65a6002fd3a9d4ac39f3ee34c21ce4a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a899424027f1d69a05384355858311a6fa3940a3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/a8a5de5a86a16952aacdf602120f27807294c3ec\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/aa65229e62d7cb8048d2f5911226b177e8e53cab\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/aaa96713f8ccb0bbd5c8e91715d4b86e7b338676\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/aae6354e5ba12ee3ad89fabfd72f5368a639d30f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ab6f3dc497f93f251ebacc153409b1eb8e05e2db\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/abf5b18d1c1155d3e455c8b781948498f364965e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/abfe5dbf594a2f22173fae7ca8de28b4e3a40099\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ac842f2cc55d7f193273a35f8af3521bfe2317d0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ac923c36dd85ff5cb2a0c5b29c701999c5f2eaa0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/acc6e100b519d6408a8c6d8aed19203d874a187a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/aceb250195867e7d9bbf6eb6e0055251e4bb5d67\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/acf1dd17e6a2848dfe17fb0d76cef2ce7d59ebdd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ad94c2bda2ae4afa0f7264070fd642bf37aae596\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/adb1f8cd3b68c076d81311071aee2a1c3785c7cb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ade30c327d9f51daf37cb3e39fdb15125b84a257\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ae783661f52d36f9d6b87c8394ee6f2d61dae640\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ae8da06c3c69076c06108219e19c8b36dba05a5c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/aec8a29238dba3c37f45f2e2e4e64b0e7fa60a74\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/affba8e4061bf260b1bdf8a815675cc3b4ebefa5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b01c4e2657a230e2b600a20da6f107b0dfe2467c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b0798ecae4d9e56eefb0c1d95b657865938e62d6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b0ab4f92df810edf4371baad1d4bbd95d360c607\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b14e5f5f6d29b6b71e7fec03eaf7d8237c0c6b2e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b1708df7f6dee0f2feb11f8b6330be0fcffc1f58\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b1af4f4e86890fad6fac96a23956405c550778be\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b1efd9e687d79e3f5a75eba02bd80bedb72350ba\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b2786e0b9d6e7b39165eb4e87e3110362e9e6660\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b332536a77d6efcd379cfc2f9828291516cc1ff4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b33962eca397f59591dbb9668e622cf99f2d7cda\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b38b6e93da1b43441f88aa53370a9f00b35c3326\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b53e7ef9aad70fcd80986696ebc586c03495b8ed\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b540412c01f960f95edd2a1bc03f1b4447f2b4f2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b62c2c591db32b26e997aa4ece577742db84428a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b62d99583f30c15c3c2dbed2f69c5e45075d7640\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b62f98976c11d79674b019ea78a7ce4d6d78b479\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b6787dabeb5cd64ac85f1ec5a7cbeecfd48b2c5f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b82ebcf4d09ba28d835cb9667da603e46e3438eb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b85c6bc2473aa12e22f91db3546dfa9d85d8b3d1\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b86e98660980680890bcbf02cacdf568d530fa64\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/b8d9beea35762009941189674c2cfcd14f81254a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ba517141fc9a468142a8d03d4ee395b4d4f30edc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bb0a596017cfc2185505d28065ab3cd238d0e2ea\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bb6232815b373e441e2acfcca015f75c680eafac\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bbdf4fa36ba9d645399f72c74033fd9c2631aebb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bc53c9f93974b4f13382c1d49b1e3ec374005ee2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bcacc9bcd3b9cc7dbda9c52c6e4a06a756a9de90\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bcc55f432bcf39c6ffc6d7e950612b35e9ea2ec8\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bdb1cc868d6ced390f5d35c5f43da9f464fac464\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bf67bb08e0abde692748031c297bc1c7910542f4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bfc07c62ef2770d53d9188b260f531a8128a5c5e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/bfed121df31ff73b770ed7f27fc7f4da2fa73e0c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c01816206d93691165e6e3a1924cf9fbc9cf39bd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c02be525edae59ad9d0d9dcbd790629dc9aaee9b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c094ce0c13ee9a4ca37817d9f7dddc11b2d60177\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c0aab5486ad2e80bcc12fca9fb6653984aa68274\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c13ca850db259c032cf24cdf6f2833c9d74529d0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c1a8da6cdc8988e6a69961413803acbd1ee935e0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c25abc82a0470129f2d098ac65fabf34c4e11188\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c2787d2cf1d95cbcd8b9bcd15d50f67f7e92ad9f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c2895ff545ebdc4140951c0ca956524d7a364b77\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c2cc55849ff4858bf80f1a4713187618d14a496d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c2d63b1d75cf53ee3b955bb143036ca93ef3a256\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c372a27f78a62ebc013958fa4953a8bc792db53c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c392963b395a7f92b3bef63fd34bc31ecd3029f3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c3b2749ab6c4d303bfd5da9ea9c8807e9f92d259\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c52fa8d16e520980e470d76e3fb4f6a612f0f3cf\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c56fb214efcd707e6fa68b803d9e7686fc2f4336\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c5902afe54998ebc5d8d59043227d379a8c2eee0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c6a16abeea323833079e97b1830610aa6c6eba91\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c6fcfd2a1f91a7f6a8c124f2637e60645be01006\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c75b02a90370df1f54de2f63a4da8db22f2cf719\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c77cb763d73db279aebfb42d2b5dca3d705d3df7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c877c08a79a7408aed779d4a430c5db1bce26314\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c8aff6e2e2dfb18be385483b871ac86ff6eac63f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c8c1c1f970bc809a75ad076bdb06275b6f72d078\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/c9e7fc3e0e1015a1c15992447f678a495c3ea5dc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ca5b619ce1bbe23d519f5764d53458d2b85eb9fa\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cb0556c65c7381192c94324a3b1b8afb7e33fecc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cb1a093e6810c7f6c002a2a54ea390cf769c9949\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cc1487af64aeefd7080e7678a04870dc85a7928a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cc71d2c9f5eae12acee133bd9e50d84881a1bd88\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ccb8f962426683663972534c15354f70c3b34a10\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cd0771c4754dfcd9c89b9b8a02df96fed974850d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cd8899c66cbd92ee57f94e000744b32662258ba3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ce0138cd7718397b365d4c15b0b14f666c307419\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cec5c7e50ef1d865c879563d1a6d677adb86695c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ceff1dfaf2de4e33d2e3c20aeb7ba4b98f97784c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cf04b5d28cea1971478806979b256a030a671541\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cf1cf6ad5b3554c3ffc86a859319445158665ea7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cf2338960588d4a5f02a47f3ee96a556224aad75\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cfb09018afa0eb1a829e556d9f8bceff40cb36bc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/cfbe3d66d7eb3199440e8e911a93044cc3165c6c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d0a91f7984904976de592cb68e8832853fbec9bc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d22f52563c16725ce4a924dc05d6ac7d64798c43\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d2709a1c9d96e72cb844eedca8bfe8440cdb0ef8\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d2facb213561b30a5bcd012e4e01d0d5b0b26957\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d300e5e46a825e5892fae1ba3c466c836f9e1da2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d302c69c881e230e6433283007d318ba437025c3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d30c1b65bc141d1a15d4ed622ba182c96dacdf92\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d3adf09fe6fb1534157c1dc68eb61365b46b1c35\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d3c74d3a64dba86f98a31bb726587ec97a7e4531\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d3c9846ab319f12fc646c23a532c780daa9e993f\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d3f03301b52cf4a830c7dd200ed8ccbc09e6ec94\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d4800745440dace38766db3520ffe7baa0bd78f2\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d4d6271bba704ba08c2678eb8b1bc4e457144f50\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d588515f125ebe968fe6a81cb6df7cfc41969e68\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d5ee5e4dc8fad9f1da43102d8322beb005a047c0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d62459bb217d3050bcd9e29a6327cf81f5ed68b9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d6acbf1cb46845618ed0d5a322c8bd4879d16422\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d6fc8cdbb0f1517159531098e900e2dcc91edba0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d7a9bbd9875a60edf9c528b298ea72a2fad7d3d7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d82e70046a544e95e81f6271dd2695f2599f0574\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d84bc8dca7c8fcd227254c06f5b88eaaf7cd5fde\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d8bcb7dd21205e7126e700323b1d58817e9d9a6d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d8e2628b4092b9bbab4f02041647f950503eeb48\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d8ee4c2b79863a237c432efe7d43d99c8d0afb9b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d8ee9724bf16ff336387723dcf27319c3be72e01\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d9379969bc956ad623e4bab8bbe47270a880a62d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/d9ccb79b0e070dcc2f5ed8e15d99bc5ef86ecff7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/db83586ca6266e03067e9a9772ea728ab770ad9a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dcc63c06ed2790d1380bdb9281fe8677f439c76d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dd509e9a4660ec34b8f9dc23441c6df4ff97c34d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dd72f8ff3a067dc7871438b6023e1ed0a4c5787b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dd75880c5ad488885260f4031a763c86a8084406\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dd962d74d04aa4aed270fd8e6b0ae9c4ac35fd19\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dd9aa9a49dd790b2ce99c5af1933232d46a7f80d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ddad7630818a1caa8054d2d7280a1d01bdb33ca3\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ddb2eaf33960ce69d579a551a7b05733adcd52aa\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/de0d98cb997c0a0f7be127a46d8a24d8a003931d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/de9e0ed8ae29220e5b65e5b97eb3b254ccbe7e0c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dec5e8ffb35aa707d127a11a49e47cb59954e969\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/df1b205e339e7199b5094fcf0ec3b8a8ca7a692c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/dfdcde31231b8b3d3fd4e0ef8ea88885f488c4db\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e058723f2964bf1405ae043ddb99efb17d821e15\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e09e306ef596dcd0e44bd3ef3c5f7019c7343f84\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e154eb76d096c1e545dcad591a58a02c37cd71ff\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e198d2e4f2f3528c2ff46d769a9281ebb3cfb44a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e2068af1e903f4a81cd6fa5f4022e62070c259ec\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e2890330b5655cb277a581b8dd2eeba0d9061ba5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e2e0767d055a7042c24a7acd5d5b6b7c093ad065\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e394a8e21e2c43c42135daa034ad5aabb06acffb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e3b200e97ec226a197e91f12103aaa53d5c37b0e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e45b077cda64c380ae1b0910bc81d010c27e1c93\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e45e71ca01ebe01b01b0ca99b8f20a756c36b967\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e4ff4bd938c3737a02862fc0656a1859d384d066\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e5a1acb7e6f71bc1a2fedaa6173764dfd04c844c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e6081eeff4ddb76e88e87ef9e4b5f199f5f11c28\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e73c42dd266c4d9671da0c7af09e98c02fc052fd\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e7b4559a77df21b73285243a8350b844775bb380\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e7dd34a80646a8c38ae1ec3a27c1358bab13b360\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e80b344f943ff0ad9219277c4578d3b4100b71dc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e86e26200290d9d428c5e98e191ec874eb918fb6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e873a3b8f5c3b716e6446df34279b837cf8d2c30\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e8fb71319db98d8e8cd131a4eb82879bfbec14d0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e93c3f14614595a2675993438b4c1bfaafdc02d0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e93faef2d77b7c467ae280ba433928d66d63ea63\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e95401b11d974ba63270668d3c32c29e95ae85da\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e9a4389895c006d4b912e8ac1169229e6b2a66da\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e9dc3d10b47ea580404c8e80b844a9978fcf4747\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/e9e2ac24e5674e7ee424e2b270e5abe84f1a15c9\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ea2b4df24b526aad253ab175334cb934b9d80b83\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ea681d11486feeab2f080b06ddd2533575b7ace4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ebb747925360528a9f366f9a57730883c636b2c7\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ec39abab70a8e1ff072eb082caa6ca77b1ae8087\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ecdd96d6cab2dc714a0b0ada1c4fcb18c75298e4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ed008faa6c9001951f50588a1597e03931501343\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ed12e272a27a2fbdbfe5a6e78e49ed722ebd3c69\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ed799ba0608690ac68dd85c588004197b86e02bf\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/edd982c5bd3030bde8c044760e9a678c2a9306f4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ee82c97e35ec92ec3b0bbf911904a050b3aca633\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ef11f14feee00e3c198015e6bc76688e970e2d8c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/efa12e91e0d63c2353c120ca1ded7b36afbf57eb\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/efa14cba9bbaf749067b7bb8515a5d8a289fa389\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/eff9bf13cd33ea50a8eacc5f2839cc4b5d67b2de\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f0143756917f0b2e374bd03e731cd64168180054\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f0b9dcd4e1845f774bb0f42653b11040baee0765\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f1a41ceb420b6b3df50b10f27108c133d4d07508\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f39378fd978c6cdb4a8d08cdffc9034e2ca5b687\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f39707a104112d13d9d6bcfbef0efe8dfd98270c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f5511a42d83f94619ff8ca6c940cacc32bdc4834\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f57a39fa918249e6941b4e770e15a8131ac16ea5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f5ac272a1dbf362e265210869aaf70ca410f1703\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f64c5ca1de57bcf323741f56754f53c642be8ab0\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f64dcdee393b4b0a3343f8e684c9db91a6eaeb6e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f69d2954da077043c6ae085e2771a702689314d5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f74e2203adb9c94ba80f7cc3214e3b3040e5675d\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f7906e7dc01323b9d3d6e298e8dc2386c8d152f6\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f825cac511f3dc38a5ecf3aab3691b4c49ca8f0e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f84c3f9e305172f2ae15dff0b4d955324b3a398e\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f87cfad97831c33610fbbe34a04369bd93862464\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f8ebd7703fd3ba1a135b243fd947dbd61907d0f4\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f926f6b2337650f8b518422c2f63a8869f47c742\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/f939897b9fbe865c96020927dc81de9dc255d385\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fa79e8ad34cabea4d3c434cc02ea1499069fcafc\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fa7a8dfdd46845ab0fd9b5b7004e37d0232941bf\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fcb3054fde86111e2c346aa71af2456a1705902c\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fce30dcdf2f23b14c580c282a39e065d7aacbfe8\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fd15b8dd6c27bc65f90e1c988e0245b1ad7d51c5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fd608012362d161cc7f3d30e1700c51f4ccef4ac\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fe203731ada762e02bf843b82e33daee4c2efbf5\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fe46e6ef4cd5788d89a101c77123387e3fc9d206\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fe7ac2ef276b817af3487bab5fe089186ca0484b\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/fe7ef7c0e835873b7b1cd780f248114f18adf13a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ff5274cad94d590347d6cdba7637078f82e3d44a\nthird_party/libwebm/source/webm_parser/fuzzing/corpus/ffff6a92363e0e55a9688d9bc025cd8dea3b50d4\nthird_party/libwebp/src/examples/test_ref.ppm\nthird_party/libwebp/src/gradle/wrapper/gradle-wrapper.jar\nthird_party/libwebp/src/swig/libwebp.jar\nthird_party/libxml/fuzz/seed_corpus/1f50fd9aa3a95df4a16b2ff4ce266ca83a4ff1fc\nthird_party/libxml/fuzz/seed_corpus/3ae23066e6ca32d416573bf52ee2229db42b91ce\nthird_party/libxml/fuzz/seed_corpus/5b3fdf55aa19abd6531bcff7b036b925eedf1cb3\nthird_party/libxml/fuzz/seed_corpus/61daa071fecd91e30c36bf5ff9f09676f54e477d\nthird_party/libxml/fuzz/seed_corpus/8107206fa6e510fd3b3faa09c11bc54b5f3e0b53\nthird_party/libxml/fuzz/seed_corpus/d8cd7c6cbd7df0ccaf2775eb871056c8e1440492\nthird_party/libxml/fuzz/seed_corpus/da0113f5e076c5cc48013f0bb94a647225494fdb\nthird_party/libxml/fuzz/seed_corpus/eb36d039e3d4684168e891f622ac594cc3fbaf42\nthird_party/libxml/fuzz/seed_corpus/fbcdd7a1e0f5b2e115172130a7c514ac9a6dd62d\nthird_party/libxml/fuzz/seed_corpus/fbd91b3106732ac8dbbb4e004059863e5f52c13c\nthird_party/libzip/src/regress/bigstored.zh\nthird_party/libzip/src/regress/bigzero-zip.zip\nthird_party/libzip/src/regress/broken.zip\nthird_party/libzip/src/regress/cm-default.zip\nthird_party/libzip/src/regress/encrypt-aes128-noentropy.zip\nthird_party/libzip/src/regress/encrypt-aes128.zip\nthird_party/libzip/src/regress/encrypt-aes192-noentropy.zip\nthird_party/libzip/src/regress/encrypt-aes192.zip\nthird_party/libzip/src/regress/encrypt-aes256-noentropy.zip\nthird_party/libzip/src/regress/encrypt-aes256.zip\nthird_party/libzip/src/regress/encrypt-none.zip\nthird_party/libzip/src/regress/encrypt-pkware-noentropy.zip\nthird_party/libzip/src/regress/encrypt.zip\nthird_party/libzip/src/regress/encrypt_plus_extra.zip\nthird_party/libzip/src/regress/encrypt_plus_extra_modified_c.zip\nthird_party/libzip/src/regress/encrypt_plus_extra_modified_l.zip\nthird_party/libzip/src/regress/extra_field_align_1-0.zip\nthird_party/libzip/src/regress/extra_field_align_1-ef_00.zip\nthird_party/libzip/src/regress/extra_field_align_1-ef_ff.zip\nthird_party/libzip/src/regress/extra_field_align_1-ff.zip\nthird_party/libzip/src/regress/extra_field_align_2-0.zip\nthird_party/libzip/src/regress/extra_field_align_2-ef_00.zip\nthird_party/libzip/src/regress/extra_field_align_2-ef_ff.zip\nthird_party/libzip/src/regress/extra_field_align_2-ff.zip\nthird_party/libzip/src/regress/extra_field_align_3-0.zip\nthird_party/libzip/src/regress/extra_field_align_3-ef_00.zip\nthird_party/libzip/src/regress/extra_field_align_3-ef_ff.zip\nthird_party/libzip/src/regress/extra_field_align_3-ff.zip\nthird_party/libzip/src/regress/extra_field_align_4-ff.zip\nthird_party/libzip/src/regress/filename_duplicate.zip\nthird_party/libzip/src/regress/filename_duplicate_empty.zip\nthird_party/libzip/src/regress/filename_empty.zip\nthird_party/libzip/src/regress/fileorder.zip\nthird_party/libzip/src/regress/firstsecond-split-deflated.zip\nthird_party/libzip/src/regress/firstsecond-split-stored.zip\nthird_party/libzip/src/regress/firstsecond.zip\nthird_party/libzip/src/regress/foo-stored.zip\nthird_party/libzip/src/regress/gap-add.zip\nthird_party/libzip/src/regress/gap-delete.zip\nthird_party/libzip/src/regress/gap-replace.zip\nthird_party/libzip/src/regress/gap.zip\nthird_party/libzip/src/regress/incons-archive-comment-longer.zip\nthird_party/libzip/src/regress/incons-archive-comment-shorter.zip\nthird_party/libzip/src/regress/incons-cdoffset.zip\nthird_party/libzip/src/regress/incons-central-compression-method.zip\nthird_party/libzip/src/regress/incons-central-compsize-larger-toolarge.zip\nthird_party/libzip/src/regress/incons-central-compsize-larger.zip\nthird_party/libzip/src/regress/incons-central-compsize-smaller.zip\nthird_party/libzip/src/regress/incons-central-crc.zip\nthird_party/libzip/src/regress/incons-central-date.zip\nthird_party/libzip/src/regress/incons-central-file-comment-longer.zip\nthird_party/libzip/src/regress/incons-central-file-comment-shorter.zip\nthird_party/libzip/src/regress/incons-central-magic-bad.zip\nthird_party/libzip/src/regress/incons-central-magic-bad2.zip\nthird_party/libzip/src/regress/incons-central-size-larger.zip\nthird_party/libzip/src/regress/incons-data.zip\nthird_party/libzip/src/regress/incons-ef-central-size-wrong.zip\nthird_party/libzip/src/regress/incons-ef-local-id-size.zip\nthird_party/libzip/src/regress/incons-ef-local-id.zip\nthird_party/libzip/src/regress/incons-ef-local-size.zip\nthird_party/libzip/src/regress/incons-eocd-magic-bad.zip\nthird_party/libzip/src/regress/incons-file-count-high.zip\nthird_party/libzip/src/regress/incons-file-count-low.zip\nthird_party/libzip/src/regress/incons-file-count-overflow.zip\nthird_party/libzip/src/regress/incons-local-compression-method.zip\nthird_party/libzip/src/regress/incons-local-compsize-larger.zip\nthird_party/libzip/src/regress/incons-local-compsize-smaller.zip\nthird_party/libzip/src/regress/incons-local-crc.zip\nthird_party/libzip/src/regress/incons-local-filename-long.zip\nthird_party/libzip/src/regress/incons-local-filename-missing.zip\nthird_party/libzip/src/regress/incons-local-filename-short.zip\nthird_party/libzip/src/regress/incons-local-filename.zip\nthird_party/libzip/src/regress/incons-local-magic-bad.zip\nthird_party/libzip/src/regress/incons-local-size-larger.zip\nthird_party/libzip/src/regress/junk-at-end.zip\nthird_party/libzip/src/regress/junk-at-start.zip\nthird_party/libzip/src/regress/large-uncompressable\nthird_party/libzip/src/regress/manyfiles-zip.zip\nthird_party/libzip/src/regress/multidisk.zip\nthird_party/libzip/src/regress/rename_ok.zip\nthird_party/libzip/src/regress/stat_index_cp437_raw.test\nthird_party/libzip/src/regress/streamed-zip64.zip\nthird_party/libzip/src/regress/streamed.zip\nthird_party/libzip/src/regress/test-cp437-comment-utf-8.zip\nthird_party/libzip/src/regress/test-cp437-fc-utf-8-filename.zip\nthird_party/libzip/src/regress/test-cp437-fc.zip\nthird_party/libzip/src/regress/test-cp437.zip\nthird_party/libzip/src/regress/test-utf8-unmarked.zip\nthird_party/libzip/src/regress/test-utf8.zip\nthird_party/libzip/src/regress/test.zip\nthird_party/libzip/src/regress/test2.zip\nthird_party/libzip/src/regress/testbuffer.zip\nthird_party/libzip/src/regress/testbzip2.zip\nthird_party/libzip/src/regress/testchanged.zip\nthird_party/libzip/src/regress/testchangedlocal.zip\nthird_party/libzip/src/regress/testcomment.zip\nthird_party/libzip/src/regress/testcomment13.zip\nthird_party/libzip/src/regress/testcommentremoved.zip\nthird_party/libzip/src/regress/testdeflated.zip\nthird_party/libzip/src/regress/testdeflated2.zip\nthird_party/libzip/src/regress/testdir.zip\nthird_party/libzip/src/regress/testempty.zip\nthird_party/libzip/src/regress/testextrabytes.zip\nthird_party/libzip/src/regress/testfile-UTF8.zip\nthird_party/libzip/src/regress/testfile-cp437.zip\nthird_party/libzip/src/regress/testfile-lzma.zip\nthird_party/libzip/src/regress/testfile-plus-extra.zip\nthird_party/libzip/src/regress/testfile-stored-dos.zip\nthird_party/libzip/src/regress/testfile-xz.zip\nthird_party/libzip/src/regress/testfile.zip\nthird_party/libzip/src/regress/testfile0.zip\nthird_party/libzip/src/regress/testfile2014.zip\nthird_party/libzip/src/regress/teststdin.zip\nthird_party/libzip/src/regress/teststored.zip\nthird_party/libzip/src/regress/utf-8-standardization-input.zip\nthird_party/libzip/src/regress/utf-8-standardization-output.zip\nthird_party/libzip/src/regress/zip-in-archive-comment.zip\nthird_party/libzip/src/regress/zip64-3mf.zip\nthird_party/libzip/src/regress/zip64.zip\nthird_party/litert/src/litert/js/packages/core/testdata/add_10x10.tflite\nthird_party/litert/src/litert/js/packages/core/testdata/add_1d_2d_3d_4d.tflite\nthird_party/litert/src/litert/js/packages/core/testdata/add_c1_c7.tflite\nthird_party/litert/src/litert/js/packages/core/testdata/delegate_compatibility_test.tflite\nthird_party/litert/src/litert/js/packages/core/testdata/mixed_input_model.tflite\nthird_party/litert/src/litert/js/packages/core/testdata/multi_signature_model.tflite\nthird_party/litert/src/litert/js/packages/core/testdata/torchvision_mobilenet_v2.tflite\nthird_party/litert/src/litert/samples/semantic_similarity/libs/libLiteRtOpenClAccelerator.so\nthird_party/litert/src/litert/test/testdata/FFW-2-bit.tflite\nthird_party/litert/src/litert/test/testdata/MTKEXT_CONV_2D.tflite\nthird_party/litert/src/litert/test/testdata/attention.tflite\nthird_party/litert/src/litert/test/testdata/attn_vec_einsum.tflite\nthird_party/litert/src/litert/test/testdata/constant_output_tensor.tflite\nthird_party/litert/src/litert/test/testdata/ff.tflite\nthird_party/litert/src/litert/test/testdata/island_partial.tflite\nthird_party/litert/src/litert/test/testdata/k_einsum.tflite\nthird_party/litert/src/litert/test/testdata/l2_norm_composite.tflite\nthird_party/litert/src/litert/test/testdata/lookup_rope.tflite\nthird_party/litert/src/litert/test/testdata/matmul_quant.tflite\nthird_party/litert/src/litert/test/testdata/mobilenet_v2_1.0_224.tflite\nthird_party/litert/src/litert/test/testdata/model_magic_test.tflite\nthird_party/litert/src/litert/test/testdata/mul_quant.tflite\nthird_party/litert/src/litert/test/testdata/norm.tflite\nthird_party/litert/src/litert/test/testdata/precompiled_mediatek_model.tflite\nthird_party/litert/src/litert/test/testdata/q_einsum.tflite\nthird_party/litert/src/litert/test/testdata/reverse_signature_model.tflite\nthird_party/litert/src/litert/test/testdata/rope.tflite\nthird_party/litert/src/litert/test/testdata/sdpa.tflite\nthird_party/litert/src/litert/test/testdata/shared_input_cpu_npu_google_tensor_precompiled.tflite\nthird_party/litert/src/litert/test/testdata/simple_add_dynamic_shape.tflite\nthird_party/litert/src/litert/test/testdata/simple_add_op.sm8750.tflite\nthird_party/litert/src/litert/test/testdata/simple_add_op_google_tensor_p25_precompiled.tflite\nthird_party/litert/src/litert/test/testdata/simple_add_op_qc_v75_precompiled.tflite\nthird_party/litert/src/litert/test/testdata/simple_add_uint16_qualcomm.bin\nthird_party/litert/src/litert/test/testdata/simple_atan2_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_ceil_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_elu_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_floor_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_group_norm_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_l2_norm.tflite\nthird_party/litert/src/litert/test/testdata/simple_log_softmax_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_logical_or_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_mirror_pad_reflect_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_mirror_pad_symmetric_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_model_google_tensor.bin\nthird_party/litert/src/litert/test/testdata/simple_model_mtk.bin\nthird_party/litert/src/litert/test/testdata/simple_model_npu_google_tensor_precompiled.tflite\nthird_party/litert/src/litert/test/testdata/simple_model_npu_mediatek_mt6989_precompiled.tflite\nthird_party/litert/src/litert/test/testdata/simple_model_qualcomm.bin\nthird_party/litert/src/litert/test/testdata/simple_model_qualcomm_sm8650_precompiled.tflite\nthird_party/litert/src/litert/test/testdata/simple_quantized_ops.tflite\nthird_party/litert/src/litert/test/testdata/simple_reduceall_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_reduceany_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_reducemin_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_relu0to1_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_relu1_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_round_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_scatter_nd_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_sign_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_squeeze.tflite\nthird_party/litert/src/litert/test/testdata/simple_tile_op.tflite\nthird_party/litert/src/litert/test/testdata/simple_topk_op.tflite\nthird_party/litert/src/litert/test/testdata/single_add_default_a16w8_recipe_quantized.tflite\nthird_party/litert/src/litert/test/testdata/single_add_default_a8w8_recipe_quantized.tflite\nthird_party/litert/src/litert/test/testdata/single_mul_default_a16w8_recipe_quantized.tflite\nthird_party/litert/src/litert/test/testdata/single_mul_default_a8w8_recipe_quantized.tflite\nthird_party/litert/src/litert/test/testdata/single_rsqrt_default_a16w8_recipe_quantized.tflite\nthird_party/litert/src/litert/test/testdata/single_rsqrt_default_a8w8_recipe_quantized.tflite\nthird_party/litert/src/litert/test/testdata/sqrt_mean_mul_multiple.tflite\nthird_party/litert/src/litert/test/testdata/sqrt_mean_mul_ops.tflite\nthird_party/litert/src/litert/test/testdata/static_a8w8_quantized_sdpa.tflite\nthird_party/litert/src/litert/test/testdata/static_w8_a16_quantized_attn_vec_einsum.tflite\nthird_party/litert/src/litert/test/testdata/static_w8_a16_quantized_k_einsum.tflite\nthird_party/litert/src/litert/test/testdata/static_w8_a16_quantized_q_einsum.tflite\nthird_party/litert/src/litert/test/testdata/static_w8_a16_quantized_v_einsum.tflite\nthird_party/litert/src/litert/test/testdata/torchaudio_conformer.tflite\nthird_party/litert/src/litert/test/testdata/transformer.tflite\nthird_party/litert/src/litert/test/testdata/v_einsum.tflite\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/add_with_const_input.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/argmax.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/broadcast_to.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/concat.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/custom_op.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/fc.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/fc_qat.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/gather_nd.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/lstm_calibrated.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/lstm_calibrated2.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/lstm_quantized.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/lstm_quantized2.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/maximum.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/minimum.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/mixed.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/mixed16x8.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/multi_input_add_reshape.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/pack.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/quantized_with_gather.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/resource_vars_calibrated.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/single_avg_pool_min_minus_5_max_plus_5.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/single_conv_no_bias.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/single_conv_weights_min_0_max_plus_10.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/single_conv_weights_min_minus_127_max_plus_127.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/single_softmax_min_minus_5_max_plus_5.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/split.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/svdf_calibrated.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/svdf_quantized.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/transpose.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/unidirectional_sequence_lstm_calibrated.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/unidirectional_sequence_lstm_quantized.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/unpack.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/weight_shared_between_convs.bin\nthird_party/litert/src/tflite/converter/quantization/lite/testdata/where.bin\nthird_party/litert/src/tflite/converter/sparsity/testdata/sparse_tensor.bin\nthird_party/litert/src/tflite/converter/testdata/add.bin\nthird_party/litert/src/tflite/converter/testdata/multi_signatures.bin\nthird_party/litert/src/tflite/delegates/xnnpack/odml_sdpa_composite_gqa.tflite.bin\nthird_party/litert/src/tflite/delegates/xnnpack/odml_sdpa_composite_mha.tflite.bin\nthird_party/litert/src/tflite/delegates/xnnpack/odml_sdpa_composite_mqa.tflite.bin\nthird_party/litert/src/tflite/experimental/acceleration/compatibility/gpu_compatibility.bin\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/chair_224_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/city_224_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/early_color_photo_face_128_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/early_color_photo_faces_320_320_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/face_in_painting_128_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/face_in_snow_128_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/faces_in_painting_320_320_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/faces_in_snow_320_320_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/flowers_192_192_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/food_224_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/person_192_192_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/plant_224_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/rural_192_192_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/shoe_224_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/single_face_128_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/single_face_320_320_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/snowman_128_224_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/snowman_320_320_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/street_192_192_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/data/toys_192_192_3.jpeg\nthird_party/litert/src/tflite/experimental/acceleration/mini_benchmark/models/blazeface_mlkit_v1.tfl\nthird_party/litert/src/tflite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/add.bytes\nthird_party/litert/src/tflite/ios/testdata/extended_filename/input.a\nthird_party/litert/src/tflite/java/demo/gradle/wrapper/gradle-wrapper.jar\nthird_party/litert/src/tflite/java/ovic/demo/gradle/wrapper/gradle-wrapper.jar\nthird_party/litert/src/tflite/java/src/testdata/add.bin\nthird_party/litert/src/tflite/java/src/testdata/add_unknown_dimensions.bin\nthird_party/litert/src/tflite/java/src/testdata/float32.bin\nthird_party/litert/src/tflite/java/src/testdata/int32.bin\nthird_party/litert/src/tflite/java/src/testdata/int64.bin\nthird_party/litert/src/tflite/java/src/testdata/mul_add_signature_def.bin\nthird_party/litert/src/tflite/java/src/testdata/multi_signature_def.bin\nthird_party/litert/src/tflite/java/src/testdata/quantized.bin\nthird_party/litert/src/tflite/java/src/testdata/string.bin\nthird_party/litert/src/tflite/java/src/testdata/string_scalar.bin\nthird_party/litert/src/tflite/java/src/testdata/tile_with_bool_input.bin\nthird_party/litert/src/tflite/java/src/testdata/uint8.bin\nthird_party/litert/src/tflite/java/src/testdata/with_custom_op.lite\nthird_party/litert/src/tflite/python/optimize/test_data/mobilenet_like_model.bin\nthird_party/litert/src/tflite/python/optimize/test_data/string_input_flex_model.bin\nthird_party/litert/src/tflite/python/testdata/control_flow_v1_saved_model/saved_model.pb\nthird_party/litert/src/tflite/python/testdata/pc_conv.bin\nthird_party/litert/src/tflite/testdata/0_subgraphs.bin\nthird_party/litert/src/tflite/testdata/2_subgraphs.bin\nthird_party/litert/src/tflite/testdata/2_subgraphs_dont_delegate_name.bin\nthird_party/litert/src/tflite/testdata/add.bin\nthird_party/litert/src/tflite/testdata/add_quantized.bin\nthird_party/litert/src/tflite/testdata/add_quantized_int8.bin\nthird_party/litert/src/tflite/testdata/add_shared_tensors.bin\nthird_party/litert/src/tflite/testdata/call_once_mul.bin\nthird_party/litert/src/tflite/testdata/conv3d_huge_im2col.bin\nthird_party/litert/src/tflite/testdata/conv_huge_im2col.bin\nthird_party/litert/src/tflite/testdata/custom_lstm.bin\nthird_party/litert/src/tflite/testdata/custom_sinh.bin\nthird_party/litert/src/tflite/testdata/double_flex.bin\nthird_party/litert/src/tflite/testdata/dynamic_shapes.bin\nthird_party/litert/src/tflite/testdata/empty_model.bin\nthird_party/litert/src/tflite/testdata/lstm.bin\nthird_party/litert/src/tflite/testdata/multi_add.bin\nthird_party/litert/src/tflite/testdata/multi_add.pb\nthird_party/litert/src/tflite/testdata/multi_add_flex.bin\nthird_party/litert/src/tflite/testdata/multi_signatures.bin\nthird_party/litert/src/tflite/testdata/multi_subgraphs_while.bin\nthird_party/litert/src/tflite/testdata/nested_while.bin\nthird_party/litert/src/tflite/testdata/no_signatures.bin\nthird_party/litert/src/tflite/testdata/no_signatures_no_tensor_names.bin\nthird_party/litert/src/tflite/testdata/no_subgraphs.bin\nthird_party/litert/src/tflite/testdata/reverse_signature_model.bin\nthird_party/litert/src/tflite/testdata/segment_sum_invalid_buffer.bin\nthird_party/litert/src/tflite/testdata/softplus_flex.bin\nthird_party/litert/src/tflite/testdata/sparse_tensor.bin\nthird_party/litert/src/tflite/testdata/string_input_model.bin\nthird_party/litert/src/tflite/testdata/string_input_model_with_signature.bin\nthird_party/litert/src/tflite/testdata/sub.bin\nthird_party/litert/src/tflite/testdata/tensor_string_data_type.bin\nthird_party/litert/src/tflite/testdata/test_custom_node_with_init_data.bin\nthird_party/litert/src/tflite/testdata/test_min_runtime.bin\nthird_party/litert/src/tflite/testdata/test_model.bin\nthird_party/litert/src/tflite/testdata/test_model_broken.bin\nthird_party/litert/src/tflite/testdata/test_model_redux_precision.bin\nthird_party/litert/src/tflite/testdata/test_model_versioned_ops.bin\nthird_party/litert/src/tflite/testdata/two_subgraphs.bin\nthird_party/litert/src/tflite/testdata/unidirectional_sequence_lstm.bin\nthird_party/litert/src/tflite/testdata/while_op_with_forwarding_input.bin\nthird_party/litert/src/tflite/testdata/with_metadata.bin\nthird_party/litert/src/tflite/testdata/zero_size_constant.bin\nthird_party/litert/src/tflite/toco/logging/testdata/toco_log_after.pb\nthird_party/litert/src/tflite/toco/logging/testdata/toco_log_before.pb\nthird_party/lzma_sdk/google/fuzzer_corpus/compressed_exe.7z\nthird_party/lzma_sdk/google/fuzzer_corpus/file_folder_file.7z\nthird_party/lzma_sdk/google/test_data/bad_crc.7z\nthird_party/lzma_sdk/google/test_data/compressed_exe.7z\nthird_party/lzma_sdk/google/test_data/empty.7z\nthird_party/lzma_sdk/google/test_data/empty_file.7z\nthird_party/lzma_sdk/google/test_data/encrypted.7z\nthird_party/lzma_sdk/google/test_data/encrypted_header.7z\nthird_party/lzma_sdk/google/test_data/fake_crc_table.7z\nthird_party/lzma_sdk/google/test_data/file_folder_file.7z\nthird_party/lzma_sdk/google/test_data/folder.7z\nthird_party/lzma_sdk/google/test_data/inner_archive.7z\nthird_party/mediapipe/src/mediapipe/graphs/face_effect/data/axis.pngblob\nthird_party/mediapipe/src/mediapipe/graphs/face_effect/data/facepaint.pngblob\nthird_party/mediapipe/src/mediapipe/graphs/face_effect/data/glasses.pngblob\nthird_party/mediapipe/src/mediapipe/modules/face_geometry/data/canonical_face_model.fbx\nthird_party/nasm/test/br3392667.asm\nthird_party/nasm/test/br3392668-3.asm\nthird_party/nasm/test/br3392669-57.asm\nthird_party/nasm/test/br3392708.asm\nthird_party/nasm/travis/test/_file_.bin.t\nthird_party/nasm/travis/test/a64.bin.t\nthird_party/nasm/travis/test/absolute.bin.t\nthird_party/nasm/travis/test/addr64x.bin.t\nthird_party/nasm/travis/test/alonesym-obj.obj.t\nthird_party/nasm/travis/test/amx.bin.t\nthird_party/nasm/travis/test/aoutso-o0.o.t\nthird_party/nasm/travis/test/aoutso-ox.o.t\nthird_party/nasm/travis/test/aouttest-o0.o.t\nthird_party/nasm/travis/test/aouttest-ox.o.t\nthird_party/nasm/travis/test/avx.bin.t\nthird_party/nasm/travis/test/avx005.bin.t\nthird_party/nasm/travis/test/avx2.bin.t\nthird_party/nasm/travis/test/avx512cd.bin.t\nthird_party/nasm/travis/test/avx512er.bin.t\nthird_party/nasm/travis/test/avx512f.bin.t\nthird_party/nasm/travis/test/avx512pf.bin.t\nthird_party/nasm/travis/test/bcd.bin.t\nthird_party/nasm/travis/test/binexe.exe.t\nthird_party/nasm/travis/test/bintest-o0.bin.t\nthird_party/nasm/travis/test/bintest-ox.bin.t\nthird_party/nasm/travis/test/br1879590.bin.t\nthird_party/nasm/travis/test/br2003451.bin.t\nthird_party/nasm/travis/test/br2030823.bin.t\nthird_party/nasm/travis/test/br2148476.bin.t\nthird_party/nasm/travis/test/br2496848.bin.t\nthird_party/nasm/travis/test/br3005117.o.t\nthird_party/nasm/travis/test/br3041451.bin.t\nthird_party/nasm/travis/test/br3066383.bin.t\nthird_party/nasm/travis/test/br3109604.bin.t\nthird_party/nasm/travis/test/br3174983.bin.t\nthird_party/nasm/travis/test/br3189064.bin.t\nthird_party/nasm/travis/test/br3385573.bin.t\nthird_party/nasm/travis/test/br3392252.bin.t\nthird_party/nasm/travis/test/br3392259.o.t\nthird_party/nasm/travis/test/br3392275.bin.t\nthird_party/nasm/travis/test/br3392278.o.t\nthird_party/nasm/travis/test/br3392392.bin.t\nthird_party/nasm/travis/test/br3392396.bin.t\nthird_party/nasm/travis/test/br3392411.out.t\nthird_party/nasm/travis/test/br3392442.bin.t\nthird_party/nasm/travis/test/br3392531.asm\nthird_party/nasm/travis/test/br3392637.o.t\nthird_party/nasm/travis/test/br3392643.obj.t\nthird_party/nasm/travis/test/br3392707.bin.t\nthird_party/nasm/travis/test/br3392711.o.t\nthird_party/nasm/travis/test/br3392716.asm\nthird_party/nasm/travis/test/br890790.bin.t\nthird_party/nasm/travis/test/br978756.o.t\nthird_party/nasm/travis/test/clzero.bin.t\nthird_party/nasm/travis/test/coffalign.obj.t\nthird_party/nasm/travis/test/cofftest.obj.t\nthird_party/nasm/travis/test/crc32.bin.t\nthird_party/nasm/travis/test/ctxlocal.o.t\nthird_party/nasm/travis/test/dbxsize.o.t\nthird_party/nasm/travis/test/elfso-o0.o.t\nthird_party/nasm/travis/test/elfso-ox.o.t\nthird_party/nasm/travis/test/elif.o.t\nthird_party/nasm/travis/test/expimp-o0.bin.t\nthird_party/nasm/travis/test/expimp-o1.bin.t\nthird_party/nasm/travis/test/expimp-ox.bin.t\nthird_party/nasm/travis/test/far64.bin.t\nthird_party/nasm/travis/test/float.bin.t\nthird_party/nasm/travis/test/float8.bin.t\nthird_party/nasm/travis/test/floatb.bin.t\nthird_party/nasm/travis/test/floatexp-o0.bin.t\nthird_party/nasm/travis/test/floatexp-ox.bin.t\nthird_party/nasm/travis/test/floatize.bin.t\nthird_party/nasm/travis/test/floattest.o.t\nthird_party/nasm/travis/test/floatx.bin.t\nthird_party/nasm/travis/test/fwdopt.bin.t\nthird_party/nasm/travis/test/fwdoptpp.bin.t\nthird_party/nasm/travis/test/fwdoptpp.warning.bin.t\nthird_party/nasm/travis/test/gather.bin.t\nthird_party/nasm/travis/test/gotoff64.o.t\nthird_party/nasm/travis/test/hexfp.bin.t\nthird_party/nasm/travis/test/hle.bin.t\nthird_party/nasm/travis/test/ifelse.bin.t\nthird_party/nasm/travis/test/ilog.bin.t\nthird_party/nasm/travis/test/imm.o.t\nthird_party/nasm/travis/test/imm64-o0.bin.t\nthird_party/nasm/travis/test/imm64-o1.bin.t\nthird_party/nasm/travis/test/imm64-ox.bin.t\nthird_party/nasm/travis/test/immwarn-no.bin.t\nthird_party/nasm/travis/test/immwarn-o.bin.t\nthird_party/nasm/travis/test/immwarn-ono.bin.t\nthird_party/nasm/travis/test/immwarn.bin.t\nthird_party/nasm/travis/test/imul-nowarn.bin.t\nthird_party/nasm/travis/test/imul-warn.bin.t\nthird_party/nasm/travis/test/inctest.com.t\nthird_party/nasm/travis/test/insertps.bin.t\nthird_party/nasm/travis/test/insnlbl.bin.t\nthird_party/nasm/travis/test/invlpga.bin.t\nthird_party/nasm/travis/test/jmp64.bin.t\nthird_party/nasm/travis/test/lar_lsl.bin.t\nthird_party/nasm/travis/test/larlsl.bin.t\nthird_party/nasm/travis/test/lnxhello.o.t\nthird_party/nasm/travis/test/local.bin.t\nthird_party/nasm/travis/test/lwp.bin.t\nthird_party/nasm/travis/test/mmxsize.bin.t\nthird_party/nasm/travis/test/movd.bin.t\nthird_party/nasm/travis/test/movd64.bin.t\nthird_party/nasm/travis/test/movhpd.bin.t\nthird_party/nasm/travis/test/movimm-o0.bin.t\nthird_party/nasm/travis/test/movimm-ox.bin.t\nthird_party/nasm/travis/test/movnti.bin.t\nthird_party/nasm/travis/test/mpx-64.o.t\nthird_party/nasm/travis/test/mpx.o.t\nthird_party/nasm/travis/test/multisection-elf32.o.t\nthird_party/nasm/travis/test/multisection-elf64.o.t\nthird_party/nasm/travis/test/multisection.bin.t\nthird_party/nasm/travis/test/newrdwr.bin.t\nthird_party/nasm/travis/test/obj.o.t\nthird_party/nasm/travis/test/objexe.obj.t\nthird_party/nasm/travis/test/optimization-o0.bin.t\nthird_party/nasm/travis/test/optimization-o1.bin.t\nthird_party/nasm/travis/test/optimization-ox.bin.t\nthird_party/nasm/travis/test/pinsr16.bin.t\nthird_party/nasm/travis/test/pinsr32.bin.t\nthird_party/nasm/travis/test/pinsr64.bin.t\nthird_party/nasm/travis/test/popcnt.bin.t\nthird_party/nasm/travis/test/prefix66.bin.t\nthird_party/nasm/travis/test/pushseg.bin.t\nthird_party/nasm/travis/test/r13.bin.t\nthird_party/nasm/travis/test/radix.bin.t\nthird_party/nasm/travis/test/rdpid.bin.t\nthird_party/nasm/travis/test/riprel.bin.t\nthird_party/nasm/travis/test/riprel2.bin.t\nthird_party/nasm/travis/test/sha-64.o.t\nthird_party/nasm/travis/test/sha.o.t\nthird_party/nasm/travis/test/smartalign16.bin.t\nthird_party/nasm/travis/test/smartalign32.bin.t\nthird_party/nasm/travis/test/smartalign64.bin.t\nthird_party/nasm/travis/test/splitea.bin.t\nthird_party/nasm/travis/test/sreg.bin.t\nthird_party/nasm/travis/test/ssesize.o.t\nthird_party/nasm/travis/test/struc.bin.t\nthird_party/nasm/travis/test/test67.bin.t\nthird_party/nasm/travis/test/testdos.bin.t\nthird_party/nasm/travis/test/testnos3.bin.t\nthird_party/nasm/travis/test/tmap.o.t\nthird_party/nasm/travis/test/uscore.bin.t\nthird_party/nasm/travis/test/utf.bin.t\nthird_party/nasm/travis/test/v4.bin.t\nthird_party/nasm/travis/test/vaesenc.bin.t\nthird_party/nasm/travis/test/vex.bin.t\nthird_party/nasm/travis/test/vgather.bin.t\nthird_party/nasm/travis/test/vmread.bin.t\nthird_party/nasm/travis/test/vmx.o.t\nthird_party/nasm/travis/test/vpcmp.bin.t\nthird_party/nasm/travis/test/weirdpaste.bin.t\nthird_party/nasm/travis/test/winalign.obj.t\nthird_party/nasm/travis/test/xcrypt.bin.t\nthird_party/nasm/travis/test/xpaste.bin.t\nthird_party/nasm/travis/test/zerobyte.bin.t\nthird_party/nlohmann_json/src/tests/reports/2016-08-29-fuzz/fuzz.tiff\nthird_party/nlohmann_json/src/tests/reports/2016-10-02-fuzz/fuzz.tiff\nthird_party/node/node_modules/node_modules.tar.gz\nthird_party/oak/src/.xtask_bash_completion.zwc\nthird_party/oak/src/cc/crypto/tink/signature/testdata/public_keyset\nthird_party/oak/src/cc/crypto/tink/signature/testdata/signature\nthird_party/oak/src/oak_attestation_verification/testdata/endorsement.json.sig\nthird_party/oak/src/oak_containers/orchestrator/testdata/test_dice\nthird_party/oak/src/oak_functions_launcher/mock_lookup_data\nthird_party/oak/src/stage0/testdata/table_loader\nthird_party/openh264/src/autotest/performanceTest/ios/fruitstrap\nthird_party/openh264/src/autotest/performanceTest/ios/iFileTransfer\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/03d4b4028b559489768e2cccd6015c907f70a2c0\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/333be5dfffb2c6eeadf31be2dc219ef841c99ea0\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/b03aaebaa88ca4f4b8d63c7a63fc55ba402cfbb4\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/bad_len1\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/bad_len2\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/bad_proto\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/cf93596ce5bbb0d4c91f3ee493e01f0674d36c0c\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/e14c401475d86e0f279691c168c7122ceb77c2c6\nthird_party/openscreen/src/cast/common/channel/message_framer_fuzzer_seeds/e9b451d1575019d52e0e072ce5b22a2418d237c7\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_basics.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_including_picture_loss_indicator.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_including_receiver_report_block.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_with_lots_of_nacks.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_with_lots_of_nacks_and_some_acks.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_with_lots_of_nacks_and_some_more_acks.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_with_multiple_acks.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_with_nack_mix.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/builder_with_one_ack.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/feedback_with_nacks.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/feedback_with_one_nack_and_one_ack.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/feedback_with_zero_nacks_and_many_acks.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/picture_loss_indicator.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/picture_loss_indicator_and_reference_time_report.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/receiver_report_and_reference_time_report.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/receiver_report_with_report_block.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/receiver_report_without_report_block.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/simple_feedback.bin\nthird_party/openscreen/src/cast/streaming/compound_rtcp_parser_fuzzer_seeds/three_extended_reports.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_for_key_frame.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_for_key_frame_with_bad_packet_id.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_for_key_frame_with_latency_ext.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_for_key_frame_with_multiple_ext.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_for_non_key_frame_with_rfid.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_for_non_key_frame_without_rfid.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_trunc_to_18_bytes.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_trunc_to_22_bytes.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_trunc_to_33_bytes.bin\nthird_party/openscreen/src/cast/streaming/rtp_packet_parser_fuzzer_seeds/rtp_packet_trunc_to_34_bytes.bin\nthird_party/openscreen/src/cast/streaming/sender_report_parser_fuzzer_seeds/compound_packet_with_other_then_sr.bin\nthird_party/openscreen/src/cast/streaming/sender_report_parser_fuzzer_seeds/compound_packet_with_sr_then_other.bin\nthird_party/openscreen/src/cast/streaming/sender_report_parser_fuzzer_seeds/rtcp_packet_with_no_sender_report.bin\nthird_party/openscreen/src/cast/streaming/sender_report_parser_fuzzer_seeds/sender_report_with_report_block.bin\nthird_party/openscreen/src/cast/streaming/sender_report_parser_fuzzer_seeds/sender_report_without_report_block.bin\nthird_party/openscreen/src/test/data/cast/common/certificate/testsuite/testsuite1.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/auth_challenge.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/auth_response.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/bad_signature_crl.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/bad_signer_cert_crl.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/device_revoked_crl.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/device_serial_revoked_crl.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/good_crl.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/invalid_time_crl.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/issuer_revoked_crl.pb\nthird_party/openscreen/src/test/data/cast/receiver/channel/issuer_serial_revoked_crl.pb\nthird_party/openscreen/src/third_party/protobuf/csharp/keys/Google.Protobuf.public.snk\nthird_party/openscreen/src/third_party/protobuf/csharp/keys/Google.Protobuf.snk\nthird_party/openscreen/src/third_party/protobuf/csharp/src/Google.Protobuf.Test/testprotos.pb\nthird_party/openscreen/src/third_party/protobuf/objectivec/Tests/golden_message\nthird_party/openscreen/src/third_party/protobuf/objectivec/Tests/golden_packed_fields_message\nthird_party/openscreen/src/third_party/protobuf/php/tests/generated_previous/GPBMetadata/ProtoPrevious/TestPreviouslyUnreservedMessage.php\nthird_party/openscreen/src/third_party/protobuf/src/google/protobuf/testdata/bad_utf8_string\nthird_party/pdfium/testing/resources/CMYK-alpha.jpf\nthird_party/pdfium/testing/resources/CMYK.jpf\nthird_party/pdfium/testing/resources/RGB-alpha.jp2\nthird_party/pdfium/testing/resources/RGB.jp2\nthird_party/pdfium/testing/resources/bigtable_mini.in\nthird_party/pdfium/testing/resources/bug_1469.jp2\nthird_party/pdfium/testing/resources/bug_2034.idat\nthird_party/pdfium/testing/resources/bug_552046.in\nthird_party/pdfium/testing/resources/bug_861842.in\nthird_party/pdfium/testing/resources/gray-alpha.jp2\nthird_party/pdfium/testing/resources/gray.jp2\nthird_party/pdfium/testing/resources/hint_table_102p.bin\nthird_party/pdfium/testing/resources/pixel/bug_1236805.in\nthird_party/pdfium/testing/resources/pixel/bug_1388_2.in\nthird_party/pdfium/testing/resources/pixel/bug_358039783.in\nthird_party/pdfium/testing/resources/pixel/bug_527174.in\nthird_party/pdfium/testing/resources/pixel/bug_591137.in\nthird_party/pdfium/testing/resources/pixel/xfa_specific/bug_1258_1.in\nthird_party/pdfium/testing/resources/pixel/xfa_specific/bug_1258_2.in\nthird_party/pdfium/testing/resources/pixel/xfa_specific/bug_1258_3.in\nthird_party/pdfium/third_party/NotoSansCJK/NotoSansSC-Regular.subset.otf\nthird_party/perfetto/python/perfetto/trace_processor/metrics.descriptor\nthird_party/perfetto/python/perfetto/trace_processor/trace_processor.descriptor\nthird_party/perfetto/src/ipc/buffered_frame_deserializer_fuzzer_corpus/two_valid_frames\nthird_party/perfetto/src/profiling/memory/shared_ring_buffer_fuzzer_corpus/empty\nthird_party/perfetto/src/profiling/memory/shared_ring_buffer_fuzzer_corpus/overflow\nthird_party/perfetto/src/profiling/memory/shared_ring_buffer_fuzzer_corpus/read\nthird_party/perfetto/src/traced/probes/ftrace/cpu_reader_fuzzer_corpus/one_page_sched_switch\nthird_party/perfetto/test/data/chrome_custom_navigation_trace.gz\nthird_party/protobuf/csharp/keys/Google.Protobuf.public.snk\nthird_party/protobuf/csharp/keys/Google.Protobuf.snk\nthird_party/protobuf/csharp/src/Google.Protobuf.Test/testprotos.pb\nthird_party/protobuf/objectivec/Tests/golden_message\nthird_party/protobuf/objectivec/Tests/golden_packed_fields_message\nthird_party/protobuf/php/tests/generated_previous/GPBMetadata/ProtoPrevious/TestPreviouslyUnreservedMessage.php\nthird_party/protobuf/src/google/protobuf/testdata/bad_utf8_string\nthird_party/pyelftools/examples/sample_exe64.elf\nthird_party/pyelftools/test/external_tools/readelf\nthird_party/pyelftools/test/testfiles_for_readelf/clang33-simple.o\nthird_party/pyelftools/test/testfiles_for_readelf/exe_simple32.elf\nthird_party/pyelftools/test/testfiles_for_readelf/exe_simple64.elf\nthird_party/pyelftools/test/testfiles_for_readelf/exe_stripped64.elf\nthird_party/pyelftools/test/testfiles_for_readelf/gcc48-simple.o\nthird_party/pyelftools/test/testfiles_for_readelf/libelf0_8_13_32bit.so.elf\nthird_party/pyelftools/test/testfiles_for_readelf/obj_simple32.o.elf\nthird_party/pyelftools/test/testfiles_for_readelf/penalty_32_gcc.o.elf\nthird_party/pyelftools/test/testfiles_for_readelf/penalty_64_clang.o.elf\nthird_party/pyelftools/test/testfiles_for_readelf/penalty_64_gcc.o.elf\nthird_party/pyelftools/test/testfiles_for_readelf/reloc_aarch64_gcc.o.elf\nthird_party/pyelftools/test/testfiles_for_readelf/simple_aarch64_gcc.o.elf\nthird_party/pyelftools/test/testfiles_for_readelf/simple_arm_gcc.o.elf\nthird_party/pyelftools/test/testfiles_for_readelf/update32.o.elf\nthird_party/pyelftools/test/testfiles_for_unittests/aarch64_super_stripped.elf\nthird_party/pyelftools/test/testfiles_for_unittests/arm_with_form_indirect.elf\nthird_party/pyelftools/test/testfiles_for_unittests/exe_solaris32_cc.elf\nthird_party/pyelftools/test/testfiles_for_unittests/exe_solaris32_cc.sparc.elf\nthird_party/pyelftools/test/testfiles_for_unittests/exe_solaris64_cc.elf\nthird_party/pyelftools/test/testfiles_for_unittests/exe_solaris64_cc.sparc.elf\nthird_party/pyelftools/test/testfiles_for_unittests/lib_versioned64.so.1.elf\nthird_party/pyelftools/test/testfiles_for_unittests/lib_with_two_dynstr_sections.so.1.elf\nthird_party/pyelftools/test/testfiles_for_unittests/lib_with_two_dynstr_sections_reversed.so.1.elf\nthird_party/pyelftools/test/testfiles_for_unittests/sample_exe64.elf\nthird_party/pyelftools/test/testfiles_for_unittests/simple_gcc.elf.arm\nthird_party/pywebsocket3/src/test/cert/client_cert.p12\nthird_party/quic_trace/src/examples/example.json.gz\nthird_party/quic_trace/src/examples/example.qtr\nthird_party/r8/custom_d8.jar\nthird_party/r8/custom_r8.jar\nthird_party/rust/chromium_crates_io/vendor/fdeflate-v0_3/tests/input-chunking-sensitivity-example1.zz\nthird_party/rust/chromium_crates_io/vendor/fdeflate-v0_3/tests/input-chunking-sensitivity-example2.zz\nthird_party/rust/chromium_crates_io/vendor/fdeflate-v0_3/tests/input-chunking-sensitivity-example3.zz\nthird_party/rust/chromium_crates_io/vendor/flate2-v1/examples/hello_world.txt.gz\nthird_party/rust/chromium_crates_io/vendor/flate2-v1/tests/corrupt-gz-file.bin\nthird_party/rust/chromium_crates_io/vendor/flate2-v1/tests/good-file.gz\nthird_party/rust/chromium_crates_io/vendor/flate2-v1/tests/multi.gz\nthird_party/rust/chromium_crates_io/vendor/jxl-v0_3/tests/testdata/fuzzer_smallbuffer_overflow.jxl\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_dense_crash-9486fb7c8a93b12c12a62166b43d31640c0208a9\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_dense_minimized-from-9486fb7c8a93b12c12a62166b43d31640c0208a9\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_sparse_crash-0da59c0434eaf35e5a6b470fa9244bb79c72b000\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_sparse_crash-18cfc246f2ddfc3dfc92b0c7893178c7cf65efa9\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_sparse_crash-61fd8e3003bf9d99f6c1e5a8488727eefd234b98\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_sparse_crash-a1b839d899ced76d5d7d0f78f9edb7a421505838\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_sparse_crash-c383ae07ec5e191422eadc492117439011816570\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_sparse_crash-d07703ceb94b10dcd9e4acb809f2051420449e2b\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/fuzz/testdata/deserialize_sparse_crash-dbb8172d3984e7e7d03f4b5f8bb86ecd1460eff9\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/dense/multi_pattern_v2_fwd.bigendian.dfa\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/dense/multi_pattern_v2_fwd.littleendian.dfa\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/dense/multi_pattern_v2_rev.bigendian.dfa\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/dense/multi_pattern_v2_rev.littleendian.dfa\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/sparse/multi_pattern_v2_fwd.bigendian.dfa\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/sparse/multi_pattern_v2_fwd.littleendian.dfa\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/sparse/multi_pattern_v2_rev.bigendian.dfa\nthird_party/rust/chromium_crates_io/vendor/regex-automata-v0_4/tests/gen/sparse/multi_pattern_v2_rev.littleendian.dfa\nthird_party/rust/chromium_crates_io/vendor/resb-v0_1/examples/data/zoneinfo64.res\nthird_party/rust/chromium_crates_io/vendor/unicode-ident-v1/tests/fst/xid_continue.fst\nthird_party/rust/chromium_crates_io/vendor/unicode-ident-v1/tests/fst/xid_start.fst\nthird_party/rust/chromium_crates_io/vendor/windows_aarch64_msvc-v0_52/lib/windows.0.52.0.lib\nthird_party/rust/chromium_crates_io/vendor/windows_i686_msvc-v0_52/lib/windows.0.52.0.lib\nthird_party/rust/chromium_crates_io/vendor/windows_x86_64_msvc-v0_52/lib/windows.0.52.0.lib\nthird_party/skia/modules/canvaskit/tests/assets/Roboto-Regular.otf\nthird_party/skia/modules/canvaskit/tests/assets/red_line.skp\nthird_party/skia/modules/canvaskit/tests/assets/test.ttc\nthird_party/skia/platform_tools/android/apps/gradle/wrapper/gradle-wrapper.jar\nthird_party/skia/platform_tools/android/apps/skottie/perfetto_config.pb\nthird_party/skia/platform_tools/android/bin/linux/perfhost\nthird_party/skia/platform_tools/android/bin/mac/perfhost\nthird_party/skia/resources/crbug769134.fil\nthird_party/skia/resources/diff_canvas_traces/lorem_ipsum.trace\nthird_party/skia/resources/empty_images/zero-height.wbmp\nthird_party/skia/resources/empty_images/zero-width.wbmp\nthird_party/skia/resources/empty_images/zero_height.tiff\nthird_party/skia/resources/fonts/7630.otf\nthird_party/skia/resources/fonts/NotoSansCJK-VF-subset.otf.ttc\nthird_party/skia/resources/fonts/Roboto2-Regular.pfb\nthird_party/skia/resources/fonts/Stroking.otf\nthird_party/skia/resources/fonts/test.ttc\nthird_party/skia/resources/icc_profiles/AdobeRGB1998.icc\nthird_party/skia/resources/icc_profiles/HP_Z32x.icc\nthird_party/skia/resources/icc_profiles/HP_ZR30w.icc\nthird_party/skia/resources/icc_profiles/srgb_lab_pcs.icc\nthird_party/skia/resources/icc_profiles/upperLeft.icc\nthird_party/skia/resources/icc_profiles/upperRight.icc\nthird_party/skia/resources/images/b78329453.jpeg\nthird_party/skia/resources/images/crbug1465627.jpeg\nthird_party/skia/resources/images/crbug999986.jpeg\nthird_party/skia/resources/images/dng_with_preview.dng\nthird_party/skia/resources/images/flower-bc1.dds\nthird_party/skia/resources/images/flower-etc1.ktx\nthird_party/skia/resources/images/gradient_adobe_to_p3.jpeg\nthird_party/skia/resources/images/gradient_adobergb.jpeg\nthird_party/skia/resources/images/gradient_displayp3.jpeg\nthird_party/skia/resources/images/gradient_p3_to_adobe.jpeg\nthird_party/skia/resources/images/iphone_13_pro.jpeg\nthird_party/skia/resources/images/iphone_15.jpeg\nthird_party/skia/resources/images/mandrill.wbmp\nthird_party/skia/resources/images/sample_1mp.dng\nthird_party/skia/resources/images/sample_1mp_rotated.dng\nthird_party/skia/resources/images/test0-hdr.exif\nthird_party/skia/resources/images/test1-pixel32.exif\nthird_party/skia/resources/images/test2-nonuniform.exif\nthird_party/skia/resources/images/test3-little-endian.exif\nthird_party/skia/resources/images/wide_gamut_yellow_224_224_64.jpeg\nthird_party/skia/resources/invalid_images/ossfuzz6347\nthird_party/skia/resources/sksl/errors/Ossfuzz38107.sksl\nthird_party/skia/resources/sksl/errors/Ossfuzz44555.sksl\nthird_party/skia/resources/sksl/errors/Ossfuzz44559.sksl\nthird_party/skia/resources/sksl/errors/Ossfuzz44561.sksl\nthird_party/skia/site/docs/dev/tools/calendar.mskp\nthird_party/skia/tests/sksl/errors/Ossfuzz44559.glsl\nthird_party/skia/tests/sksl/errors/Ossfuzz44561.glsl\nthird_party/snappy/src/testdata/baddata1.snappy\nthird_party/snappy/src/testdata/baddata2.snappy\nthird_party/snappy/src/testdata/baddata3.snappy\nthird_party/snappy/src/testdata/fireworks.jpeg\nthird_party/snappy/src/testdata/geo.protodata\nthird_party/snappy/src/testdata/kppkn.gtb\nthird_party/spirv-cross/src/tests-other/c_api_test.spv\nthird_party/spirv-cross/src/tests-other/hlsl_resource_binding.spv\nthird_party/spirv-cross/src/tests-other/msl_constexpr_test.spv\nthird_party/spirv-cross/src/tests-other/msl_resource_binding.spv\nthird_party/spirv-cross/src/tests-other/msl_ycbcr_conversion_test.spv\nthird_party/spirv-cross/src/tests-other/msl_ycbcr_conversion_test_2.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_000.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_001.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_002.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_003.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_004.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_005.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_006.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_007.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_008.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_009.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_010.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_011.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_012.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_013.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_014.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_015.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_016.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_017.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_018.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_019.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_020.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_021.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_022.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_023.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_024.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_025.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_026.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_027.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_028.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_029.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_030.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_031.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_032.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_033.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_034.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_035.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_036.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_037.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_038.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_039.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_040.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_041.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_042.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_043.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_044.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_045.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_046.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_047.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_048.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_049.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_050.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_051.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_052.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_053.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_054.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_055.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_056.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_057.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_058.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_059.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_060.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_061.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_062.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_063.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_064.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_065.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_066.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_067.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_068.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_069.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_070.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_071.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_072.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_073.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_074.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_075.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_076.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_077.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_078.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_079.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_080.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_081.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_082.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_083.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_084.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_085.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/graphicsfuzz_086.spv\nthird_party/spirv-tools/src/test/fuzzers/corpora/spv/simple.spv\nthird_party/sqlite/src/ext/recover/recovercorrupt2.test\nthird_party/sqlite/src/tool/win/sqlite.vsix\nthird_party/swiftshader/tests/kokoro/gcp_ubuntu/clang+llvm-11.0.1-x86_64-linux-gnu-ubuntu-16.04.tar.xz.sig\nthird_party/swiftshader/tests/kokoro/gcp_ubuntu/tstellar-gpg-key.asc\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_000.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_001.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_002.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_003.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_004.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_005.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_006.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_007.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_008.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_009.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_010.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_011.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_012.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_013.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_014.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_015.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_016.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_017.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_018.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_019.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_020.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_021.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_022.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_023.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_024.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_025.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_026.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_027.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_028.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_029.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_030.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_031.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_032.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_033.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_034.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_035.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_036.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_037.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_038.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_039.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_040.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_041.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_042.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_043.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_044.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_045.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_046.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_047.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_048.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_049.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_050.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_051.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_052.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_053.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_054.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_055.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_056.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_057.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_058.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_059.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_060.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_061.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_062.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_063.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_064.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_065.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_066.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_067.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_068.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_069.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_070.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_071.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_072.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_073.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_074.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_075.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_076.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_077.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_078.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_079.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_080.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_081.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_082.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_083.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_084.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_085.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/graphicsfuzz_086.spv\nthird_party/swiftshader/third_party/SPIRV-Tools/test/fuzzers/corpora/spv/simple.spv\nthird_party/tflite/src/tensorflow/c/experimental/saved_model/internal/testdata/SimpleWhileLoop/saved_model.pb\nthird_party/tflite/src/tensorflow/c/experimental/saved_model/internal/testdata/SimpleWhileLoop/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/c/experimental/saved_model/internal/testdata/SimpleWhileLoop/variables/variables.index\nthird_party/tflite/src/tensorflow/c/experimental/saved_model/internal/testdata/UninitializedVariable/saved_model.pb\nthird_party/tflite/src/tensorflow/c/experimental/saved_model/internal/testdata/UninitializedVariable/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/c/experimental/saved_model/internal/testdata/UninitializedVariable/variables/variables.index\nthird_party/tflite/src/tensorflow/c/testdata/tf_record\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/AssetModule/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/AssetModule/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/AssetModule/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/CyclicModule/debug/saved_model_debug_info.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/CyclicModule/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/CyclicModule/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/CyclicModule/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/OptimizerSlotVariableModule/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/OptimizerSlotVariableModule/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/OptimizerSlotVariableModule/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/SimpleV1Model/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/SimpleV1Model/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/SimpleV1Model/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/StaticHashTableModule/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/StaticHashTableModule/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/StaticHashTableModule/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/VarsAndArithmeticObjectGraph/debug/saved_model_debug_info.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/VarsAndArithmeticObjectGraph/fingerprint.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/VarsAndArithmeticObjectGraph/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/VarsAndArithmeticObjectGraph/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/VarsAndArithmeticObjectGraph/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/bert1/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/bert2/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.cpb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/fingerprint.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/bad_node_attr/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/bad_node_attr/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/bad_node_attr/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/const_with_no_value/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/const_with_no_value/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/const_with_no_value/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/negative_shape/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/negative_shape/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/fuzz_generated/negative_shape/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two/00000123/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two/00000123/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two/00000123/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_main_op/00000123/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_main_op/00000123/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_main_op/00000123/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_v2/00000123/assets.extra/validation_result_do_not_edit\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_v2/00000123/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_v2/00000123/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/half_plus_two_v2/00000123/variables/variables.index\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/x_plus_y_v2_debuginfo/debug/saved_model_debug_info.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/x_plus_y_v2_debuginfo/saved_model.pb\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/x_plus_y_v2_debuginfo/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/cc/saved_model/testdata/x_plus_y_v2_debuginfo/variables/variables.index\nthird_party/tflite/src/tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/add_with_const_input.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/argmax.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/broadcast_to.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/concat.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/custom_op.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/fc.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/fc_qat.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/gather_nd.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/lstm_calibrated.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/lstm_calibrated2.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/lstm_quantized.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/lstm_quantized2.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/maximum.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/minimum.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/mixed.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/mixed16x8.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/multi_input_add_reshape.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/pack.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/quantized_with_gather.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/resource_vars_calibrated.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/single_avg_pool_min_minus_5_max_plus_5.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/single_conv_no_bias.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/single_conv_weights_min_0_max_plus_10.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/single_conv_weights_min_minus_127_max_plus_127.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/single_softmax_min_minus_5_max_plus_5.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/split.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/svdf_calibrated.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/svdf_quantized.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/transpose.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/unidirectional_sequence_lstm_calibrated.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/unidirectional_sequence_lstm_quantized.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/unpack.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/weight_shared_between_convs.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/quantization/lite/testdata/where.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/sparsity/testdata/sparse_tensor.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/testdata/add.bin\nthird_party/tflite/src/tensorflow/compiler/mlir/lite/testdata/multi_signatures.bin\nthird_party/tflite/src/tensorflow/core/graph/regularization/testdata/bert1/saved_model.pb\nthird_party/tflite/src/tensorflow/core/graph/regularization/testdata/bert2/saved_model.pb\nthird_party/tflite/src/tensorflow/core/ir/importexport/tests/saved_model/savedmodel_v1/saved_model.pb\nthird_party/tflite/src/tensorflow/core/ir/importexport/tests/saved_model/savedmodel_v2/saved_model.pb\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/012e3ad384a4a1165f8498b5c94ba0d32a73e187\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/055d77f7810048caa28323f6eb552a53d156040b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/131e251bfb82c681cb075d32b99f18fceaca115d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/1399ab0bd9f2c91d270cb43251bdc5729bef3526\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/16a6ce88f66d2e9686c8354cad8ba915cf0c11de\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/185097ed0588195164619ea930ddd8274a5f32ad\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/27711a87e06a50c81571c27c3aa403a6ad5dc55c\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/298c3787ad1722b22569cbc405c464d2\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/2b95ba6d8141ce0d29ff279770903922\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/321fb3d758b86e37fc340ae2b09b8ed9fa73a4cb\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/331a98b4e4c87840efea69223766ebd0e1736542\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/352d73f841223ecb630b5836585d2ba7b0f9d883\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/3a84f409d4c117edfdebc508cd23e8fc\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/3ef5cc982c0b45f69a26fd0f7d376415fdebabd1\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/401c7de8e122018a0e17f57c93db7ee49ab0e906\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/52fee71bb8c9c79068e1fe580677ad739a2d0415\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/57b11507813d5727b7789354d888eda83d5f3d86\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/57dff0fa53ee0ef24a43cca6ab0523bfdc1f720d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/5c42d3df0dc400a7a4175b8d4eec6cc8ee2437b2\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/5cca20637ae75fddad9370ee930837baef8aeb43\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/5d34bc9cef0c844b9c5ebe948145c4ca11b5ca09\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/5e162fe883bd12fb1c4131d4e0c979a12bd15eac\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/5e83f8faab9c1a51a33d5e29edbb9dcec23c6092\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/61b29dc2fcef7b6fbe3e0cc88769a7ef\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/6361eca190157ece389665ee523ccc3aefcd957f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/65150515ab3b11d657519b22bb887d74e94b2d7f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/656f38ef6dcd58c6a909d61db11f777def69c394\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/66e0d2cafd592bf9d61ad900fade8ee530d5f3d7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/6b5b42cb105a2c4c5fd6034e9885cbe457f1b50c\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/722ed0197cb92ecbf9745edb38275e7a9aaf322f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/77bdd2efdf328366cbbf3c5688768dc0a88d02b1\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/7841bfa002c05c61d5a5d9241f214cc17a336166\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/7899e22fc83f6be28e9130c4a1c91a48\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/7dddccaebd16ae0c26daeffc42df50f529891119\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/8157442eee4bbfdd9716e264b11085d61a9955b7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/81ff28ed63d5435ddc4c8771dd5d40aa658cbbe0\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/820c8c0d33c18f6c4d9edd314e91289186931ad0\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/849e9d7cee1c52105242327086997296e452b981\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/84ddb92c63e0fad7018f6069daf8779ce11501e2\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/86bc3d5dbb9313137502080e58551edd2e649c70\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/87d94d88fe29d277c76e1a52042b02c092d5ae14\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/8c4646f3357945c4e19a59ff79fffe3c874dbf16\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/90632bc6dee4eb836f3d7db1d16446a9c8510080\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/94d06016aa949e8e7203217e4cc6625ded7f4244\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/9875819b9e5783e7489c29a81cc9d4279209956a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/9c1cc734114b29aac6c51782d5c17e9dbe1faca2\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/9d2961871eeb201ef8a6f5503d8a8b62\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/9f39e11cdd88344a4894b678e5a04a810880064d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/a350588a6dabe4376a066aed44ef8786d8e752e7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/a6101a79919d444e1fc50aefab5837c39e3f4a19\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/a9c8793f8fb063bec839ee1280406fe5396545e5\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ad4e9d2234e8599bdf12607c6b8cab4edae82c4e\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/b90b6830917919e94186d312f06481bd\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/b98fd4cb1d7031240414301c19b03097c0035c6b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ba976fcdb4daf092ef17ce43bf2b78d9d8bc2aeb\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/bc112b571eafee0f5a031f3c9cce6244216d128d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/c42b981c28a1715c375050f6fcf53f1d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/c6049874b33eadb016fccf0c5fa66e556ae069b9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/c8697bf2369f6ab85f501376c4d93bb8a56974a3\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/c8daf283e0aef2fd7b630c0430e05dc28f24ecf6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/cacff56e1af4b8fde912822da06b10fb8c545a19\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ce4dcc22b1d595c49a25121c0b580104\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/d0cd71dbf039fd64cf42eff30da92a71a919226a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/d5ce626ac3264bed6af5580e341a89406857cbb9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/d77ada02e9bc8c24b2711eca6a8f52ae356bfc21\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/d7eb9c5a0f9803df4c00390793b8ab57bd7c9484\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/dc1efccdeec17e151a1ec8228c09ab61c3040b33\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/dcea22c66c60088165a2f1772036473f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/de539ae7442fa05dafcfe1a021f0186ef74a2b0e\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/e2306b1d6b88d0ccc4e2c3a9edb07462a5a32215\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/e2778da0240fdd15ef5844905d81c4e05f34a8bd\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/e6642e9266875f9d908942e534bf898103a2c794\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ec6cdb929c08d8daf2bd7fc185fbf4d787b45120\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ed8636357f79439b6a03eb14469b686cc401a1c9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ee313e9acecb5c688ce8c9bb10e70e136fbb9c6d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ef689af320e7d9e22231109faae2e8149cb86e1c\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/fda6b9a9f6ffdf4765c00465619c7ceb3f7db2e4\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_bmp/ffe829bb0adac20d9c0756f68a22d1255e4fdb54\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/010dc3d4b05288fcc40de2721052b3dc699f1cb3\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/0555cd5e9d99629819cc985285f80da0f00be1e9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/0a0352aa168803ff65455792d9f6ee555c3e7c3f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/0ed54162df93ef8d00f993ce6b59ba422903d381\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/1547b448171c700613c3946d730de496c9b9863f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/17859046cbe4ac598a645173d679ce2a52c6afba\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/1b0384bc2d5ac42b7425ac51c374f60c\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/1df76c07817fbc3653a26f34d97658e9973627c2\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/1f0717f8856d7782e3ab7992d3a72d783a018443\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/23b911e4ce936def88bc9a46b8b433c0e83fba2a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/25592201c3edff0578dbdac6b0e4f2be109ce151\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/266fd8495e0b8eb64387c1a62264185e061fee73\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/27f178cf415b4ff8671131ddf1d042dafac2fb3e\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/2a0bdc4d9cc5ea5bb21dd256d6ac96075376a94f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/2e5d25add6adc68e0457b358c7a34abf3d41c938\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/2e6c5b6a766dd5e9bd41eacfd0a36572bd2f7544\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/2e9c935cf82f6ca640e9a9abc3c30a578ad46176\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/2fcf1ed4477f7eaee028f5b3f9edeb5f1a737826\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/3480713774f590908ca5dba16d121cdfb8fba62b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/38bd2bd767d0c4ddd531b3893080b952\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/39289afcec60d98802b333e0fbb1da4d7aed4ce5\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/3adc488e21d4aca7bed9422f0241a42d0f93e7d9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/3cbf274da522483dc991fad9df43a22ac4fb3173\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/3d840cdff7f5ad16fe8bcb985ed4946c03459432\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/3f1e6753c1fca958e859189857449746592158ea\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/3fa4075993cb0f9bfa8eea785174a2038a69aa1b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/4023a373e977be58413e55350380310c5dd1fd6a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/40caba69dce1cfc48e0e43184d2bfbc6daa4399a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/41438a3c1c77c64a2f0840a2427f8834\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/41841e9561d8135945c1c1e55ab9e9a1e933653b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/41d40f2d66fa43e34537385594ee9911e65deadf\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/421bd39810b50309a71adb2dadc3b19f01a52312\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/446c305b2c0665736f94fb2b62dbdef445eff0cf\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/449cee952bb645f6f4241a6665d3c6028c073c7a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/45520b07609978c5aa3516d803527438b93fbadb\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/4da74a34bcede234b0415f77fbd87d70bf9a777e\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/51db5d31d2c5300d34831d9f23bcdd0aff9a998b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/5cde2a9167798cb77f10abbfb2640a5c357f99fc\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/5e352fc10ac476cfbe1d755f092e069820223249\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/63661677dd1306cec4b5a565190e65adf2446e52\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/65887ed3db382aab1d9485c500f4401318d303b9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/67b5181f8f0644597e9bde539e8f083b5cacd0e7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/74c9dcf7afee2a6cb1ab3a2c0de744d1b03c1466\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/792181ca19e6ded261434e588bb7fc2a4816d4ce\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/79f0e2a475487f8fa69e68c1cc947c5851bda741\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/7e5fcdfeb557ce379ed96925c68505eaac0112db\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/7eec7530acf34b3a96fa9189783453999f7b6838\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/80114bf9781bffc9db411413d83541d8deaaf7c1\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/80425fb92bb86627e854892f23823fa804e5fdc3\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/821cdd6eeb919a8dd7f35289abbd583828dd4945\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/83e1a31785285338b0ddb3334b0ed098e63dedde\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/8a4c8100dedd0fb5f2a8b468c678f7ad8269deeb\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/8ae8268c24dc866c1edb3826b93a1c75dbf74ff4\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/90f72038cc627f34f074ea72eadbba87a5e3e288\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/92b67faee4a49df2cdbed785e27b4a1cddcfffa3\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/9463810467aacdc9923b2b20a2236116b760d75b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/94d7c96aea32ad41ce643d35b951a6d8990b81d6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/98cc7e9fe87df914d89a0aef008930f27b3c26f5\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/99172dfdb4f59aaced29c7681ac6e6ce8356e814\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/9ae3b647d895af97fe872c0b1442df7b5b767160\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/9d2b1d2121b0508a4fa8d1508adb9d05633fdac3\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/a335af37917ccf0c8b11bb884a3a74f3f1d2a7c6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/a738609112d3a6772c50a71e2c3504ebc515b709\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/a8cecab5d917da5a4729632a7a18c564d7e1607d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/ade919ab2b4a458e806575c941dfe50ae3fd3621\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/b1251621a5eb5e7fda9cac9baead1c993a285c36\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/b1516b78c3dfe77eeb554985fd7344c0478fbbcb\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/b41241740f5f8ad2c1d408f7bb6a313bd863c158\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/b799c8596523a7ebeb8e11ada08818c10f7eabfc\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/ba48d0521a111222dc95a3a997c7c92dea5f4443\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/c01457c6889fb1b597d308363a36412c0b7f90e7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/c82ebc0d6688d104af04fd20d6d3da591dc391f7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/c9a03eb758dd84e954e3d70916e2311e8fd21f3c\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/cf892756b33578a54ab20044514e573328d2f1d7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/d3bc3f158a63f1d50b474addd3f7b3d17f23e8e9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/d4906950aa9d60ad09dc0f5413c3d88080c3bc37\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/da31578a8068bad65e1c7a3d06e8f543a2a0bc65\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/dd4a9b5d0740679c249fc884efc499433b29436b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/deea4ecc6f0b2a6d89fd25ff76762299f21602fb\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/e1040c7ffcb39915e0f539018c81f9798924cba6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/e381dc85682cc33ad99f622b89d145b47f7d6392\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/ea24498fc7a144fccc6f1665ebf7020df803dd1a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/eaa5d677e797c07bac98c3c7051abad91852e7c6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/ed7871269315725535d8bffec7836c45a3fc5c26\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/ee8460f4077064c5a2137075b48eba7d3db5c570\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/ef09f26e0ee61329f84a9f589629a865ae9ee0a6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/f477da4d7d8ff2066041e1dd5ee4e833b7111a1a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/f8a379b2498a4eb452a85791a49adf065dab59ae\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/fe67bccb06f2174523943cc684518fcf1f7f8046\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_png/ff1e67d17c1c27ef0d97900d0ea276b563a64628\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/02cc44cdfec1d9d0d0c66c5a5f40d3d20e4c4c3a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/087e1d7fae1c1ddcbaa3b5f822a171ad15498186\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/0f61c33027394a0f14d29dcd22f405cad943b7cf\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/10cdebea1659c21a0248f88654ae41f62786abf1\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/126e68def9fd973a100e0f66cadf09448a716b57\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/1275d41ebf8788ce3a949352e4bc654b04012da3\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/1a7f1c407fb3864ddb559f88f373a21d1be51584\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/1c3e1c91f187f6bcea86f172ff5bbbd955a9654d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/300fe1e0a47543037cbf0243b6756c9aa48799c4\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/31ec5b0134bedcfe283f4978e6e65b7d35d5d4ad\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/4e7cbb27667bcfca92838aa8020749990013a9b1\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/585e469231d202812bfba8285fb30c8e31c857b9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/58eab6bc2386e2ef43fe4f55cb6ad3611399d5de\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/63448c6a9feb8c72b3e82af4d735ec2e62ddd328\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/6874d5b1c7a64b596c61f24877d422e89bebe58b\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/7501f79cb067da108020579ed654349c7933d22f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/782051f8120182b860c7fe1b265179cfa2fe03fd\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/793feab2deb35e284a975f6527d76a8be5540fe6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/7f41ec3a9805c6b8f3656c4f9f6d0ff7dbf8a329\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/8210dc595a2652f2f812093b01e239e7918ea065\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/8dffe4c5c26d891b578fd2ea4b9adfc0c96ad5f7\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/91d787a9298ddc015efa783a92c4bdba8af0d7de\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/92c065286f956f086e977556358f6b54b12bcacc\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/a35c9bb71792b60a13dea23a41b41847ad4b93d6\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/a6ea960c7b4d42772888280277b26e645ceee904\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/aa526aa853333f0bb11804b5243df411452cecd2\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/ca533cd26c7ca6bf69e62351b265ded496fdf1d9\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/f38c61da15f2cb7a39ff02e69f0b00e99f37ec86\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/f88f1012473e6cfcc9b39b2552f682b2f73eff8c\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/fa79819c5de04bc06c69bec3fa7f2e982826ea2f\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/decode_wav/fce08de222896ac3a20657a3b4f42d5b6c54a96a\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/scatter_nd/5b0e5f8d2990c3cac80fa792ba141c43\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/scatter_nd/5b61fa3a30dd267828f12d9ea2b2a191\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/scatter_nd/8bc8b7d8beb3483c48158739791e56b0\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/scatter_nd/d2ef31d47578e9de8323bb0e4806f1be\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/scatter_nd/e2791edcf2c8d9f4af3678a75d43a3e4\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split/4c01a1504da9de2216894743ecc44424\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split/5bf16424630b5afbcffe711fb9834440\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split/a7185605aef0a8fd682fcb4656e4a736\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split/d5606def44fdbb9385dd764612069db0\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split/dbac766f3160de65894bf5153f478146\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split/e85ff62f6d457666f54a37a19a115a24\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split_v2/00fd47bf73afcb72e7ed51bffd5f5fec\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split_v2/14908973e6720513a5f37676cb9fcc29\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split_v2/2779ba7c4d23eee9f79efa3660084c5d\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split_v2/5bf16424630b5afbcffe711fb9834440\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split_v2/89734a96b93275e495a9498b806fafe1\nthird_party/tflite/src/tensorflow/core/kernels/fuzzing/corpus/string_split_v2/d5606def44fdbb9385dd764612069db0\nthird_party/tflite/src/tensorflow/core/kernels/spectrogram_test_data/short_test_segment_spectrogram.csv.bin\nthird_party/tflite/src/tensorflow/core/kernels/spectrogram_test_data/short_test_segment_spectrogram_400_200.csv.bin\nthird_party/tflite/src/tensorflow/core/lib/jxl/testdata/random_128x96_gray_q100.jxl\nthird_party/tflite/src/tensorflow/core/lib/jxl/testdata/random_128x96_gray_q50.jxl\nthird_party/tflite/src/tensorflow/core/lib/jxl/testdata/random_128x96_rbg_q100.jxl\nthird_party/tflite/src/tensorflow/core/lib/jxl/testdata/random_128x96_rbg_q50.jxl\nthird_party/tflite/src/tensorflow/core/lib/jxl/testdata/random_128x96_rbga_q100.jxl\nthird_party/tflite/src/tensorflow/core/lib/jxl/testdata/random_128x96_rbga_q50.jxl\nthird_party/tflite/src/tensorflow/core/profiler/internal/testdata/ckpt.data-00000-of-00001\nthird_party/tflite/src/tensorflow/core/profiler/internal/testdata/ckpt.index\nthird_party/tflite/src/tensorflow/core/profiler/internal/testdata/ckpt.meta\nthird_party/tflite/src/tensorflow/core/profiler/internal/testdata/run_meta\nthird_party/tflite/src/tensorflow/core/profiler/internal/testdata/tfprof_log\nthird_party/tflite/src/tensorflow/core/util/tensor_bundle/testdata/old_string_tensors/foo.data-00000-of-00001\nthird_party/tflite/src/tensorflow/core/util/tensor_bundle/testdata/old_string_tensors/foo.index\nthird_party/tflite/src/tensorflow/go/testdata/saved_model/half_plus_two/00000123/saved_model.pb\nthird_party/tflite/src/tensorflow/go/testdata/saved_model/half_plus_two/00000123/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/go/testdata/saved_model/half_plus_two/00000123/variables/variables.index\nthird_party/tflite/src/tensorflow/go/testdata/saved_model/half_plus_two_empty_tags/00000123/saved_model.pb\nthird_party/tflite/src/tensorflow/go/testdata/saved_model/half_plus_two_empty_tags/00000123/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/go/testdata/saved_model/half_plus_two_empty_tags/00000123/variables/variables.index\nthird_party/tflite/src/tensorflow/lite/delegates/xnnpack/odml_sdpa_composite_gqa.tflite.bin\nthird_party/tflite/src/tensorflow/lite/delegates/xnnpack/odml_sdpa_composite_mha.tflite.bin\nthird_party/tflite/src/tensorflow/lite/delegates/xnnpack/odml_sdpa_composite_mqa.tflite.bin\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/compatibility/gpu_compatibility.bin\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/chair_224_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/city_224_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/early_color_photo_face_128_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/early_color_photo_faces_320_320_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/face_in_painting_128_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/face_in_snow_128_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/faces_in_painting_320_320_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/faces_in_snow_320_320_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/flowers_192_192_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/food_224_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/person_192_192_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/plant_224_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/rural_192_192_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/shoe_224_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/single_face_128_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/single_face_320_320_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/snowman_128_224_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/snowman_320_320_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/street_192_192_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/data/toys_192_192_3.jpeg\nthird_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/models/blazeface_mlkit_v1.tfl\nthird_party/tflite/src/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/Examples/HelloTFLite/Scenes/add.bytes\nthird_party/tflite/src/tensorflow/lite/ios/testdata/extended_filename/input.a\nthird_party/tflite/src/tensorflow/lite/java/demo/gradle/wrapper/gradle-wrapper.jar\nthird_party/tflite/src/tensorflow/lite/java/ovic/demo/gradle/wrapper/gradle-wrapper.jar\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/add.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/add_unknown_dimensions.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/float32.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/int32.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/int64.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/mul_add_signature_def.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/multi_signature_def.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/quantized.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/string.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/string_scalar.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/tile_with_bool_input.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/uint8.bin\nthird_party/tflite/src/tensorflow/lite/java/src/testdata/with_custom_op.lite\nthird_party/tflite/src/tensorflow/lite/python/optimize/test_data/mobilenet_like_model.bin\nthird_party/tflite/src/tensorflow/lite/python/optimize/test_data/string_input_flex_model.bin\nthird_party/tflite/src/tensorflow/lite/python/testdata/control_flow_v1_saved_model/saved_model.pb\nthird_party/tflite/src/tensorflow/lite/python/testdata/pc_conv.bin\nthird_party/tflite/src/tensorflow/lite/testdata/0_subgraphs.bin\nthird_party/tflite/src/tensorflow/lite/testdata/2_subgraphs.bin\nthird_party/tflite/src/tensorflow/lite/testdata/2_subgraphs_dont_delegate_name.bin\nthird_party/tflite/src/tensorflow/lite/testdata/add.bin\nthird_party/tflite/src/tensorflow/lite/testdata/add_quantized.bin\nthird_party/tflite/src/tensorflow/lite/testdata/add_quantized_int8.bin\nthird_party/tflite/src/tensorflow/lite/testdata/add_shared_tensors.bin\nthird_party/tflite/src/tensorflow/lite/testdata/call_once_mul.bin\nthird_party/tflite/src/tensorflow/lite/testdata/conv3d_huge_im2col.bin\nthird_party/tflite/src/tensorflow/lite/testdata/conv_huge_im2col.bin\nthird_party/tflite/src/tensorflow/lite/testdata/custom_lstm.bin\nthird_party/tflite/src/tensorflow/lite/testdata/custom_sinh.bin\nthird_party/tflite/src/tensorflow/lite/testdata/double_flex.bin\nthird_party/tflite/src/tensorflow/lite/testdata/dynamic_shapes.bin\nthird_party/tflite/src/tensorflow/lite/testdata/empty_model.bin\nthird_party/tflite/src/tensorflow/lite/testdata/lstm.bin\nthird_party/tflite/src/tensorflow/lite/testdata/multi_add.bin\nthird_party/tflite/src/tensorflow/lite/testdata/multi_add.pb\nthird_party/tflite/src/tensorflow/lite/testdata/multi_add_flex.bin\nthird_party/tflite/src/tensorflow/lite/testdata/multi_signatures.bin\nthird_party/tflite/src/tensorflow/lite/testdata/multi_subgraphs_while.bin\nthird_party/tflite/src/tensorflow/lite/testdata/nested_while.bin\nthird_party/tflite/src/tensorflow/lite/testdata/no_signatures.bin\nthird_party/tflite/src/tensorflow/lite/testdata/no_signatures_no_tensor_names.bin\nthird_party/tflite/src/tensorflow/lite/testdata/no_subgraphs.bin\nthird_party/tflite/src/tensorflow/lite/testdata/reverse_signature_model.bin\nthird_party/tflite/src/tensorflow/lite/testdata/segment_sum_invalid_buffer.bin\nthird_party/tflite/src/tensorflow/lite/testdata/softplus_flex.bin\nthird_party/tflite/src/tensorflow/lite/testdata/sparse_tensor.bin\nthird_party/tflite/src/tensorflow/lite/testdata/string_input_model.bin\nthird_party/tflite/src/tensorflow/lite/testdata/string_input_model_with_signature.bin\nthird_party/tflite/src/tensorflow/lite/testdata/sub.bin\nthird_party/tflite/src/tensorflow/lite/testdata/tensor_string_data_type.bin\nthird_party/tflite/src/tensorflow/lite/testdata/test_custom_node_with_init_data.bin\nthird_party/tflite/src/tensorflow/lite/testdata/test_min_runtime.bin\nthird_party/tflite/src/tensorflow/lite/testdata/test_model.bin\nthird_party/tflite/src/tensorflow/lite/testdata/test_model_broken.bin\nthird_party/tflite/src/tensorflow/lite/testdata/test_model_redux_precision.bin\nthird_party/tflite/src/tensorflow/lite/testdata/test_model_versioned_ops.bin\nthird_party/tflite/src/tensorflow/lite/testdata/two_subgraphs.bin\nthird_party/tflite/src/tensorflow/lite/testdata/unidirectional_sequence_lstm.bin\nthird_party/tflite/src/tensorflow/lite/testdata/while_op_with_forwarding_input.bin\nthird_party/tflite/src/tensorflow/lite/testdata/with_metadata.bin\nthird_party/tflite/src/tensorflow/lite/testdata/zero_size_constant.bin\nthird_party/tflite/src/tensorflow/lite/toco/logging/testdata/toco_log_after.pb\nthird_party/tflite/src/tensorflow/lite/toco/logging/testdata/toco_log_before.pb\nthird_party/tflite/src/tensorflow/python/checkpoint/testdata/table_legacy_saveable_object.data-00000-of-00001\nthird_party/tflite/src/tensorflow/python/checkpoint/testdata/table_legacy_saveable_object.index\nthird_party/tflite/src/tensorflow/python/compiler/mlir/multi_add.tflite\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/model_tests/sample_model/saved_model.pb\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/mnist/model.ckpt-46900.data-00000-of-00001\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/mnist/model.ckpt-46900.index\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tf_readvariableop_saved_model/saved_model.pb\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tf_readvariableop_saved_model/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tf_readvariableop_saved_model/variables/variables.index\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tf_variablev2_saved_model/saved_model.pb\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tf_variablev2_saved_model/variables/variables.data-00000-of-00001\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tf_variablev2_saved_model/variables/variables.index\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tftrt_2.0_saved_model/saved_model.pb\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tftrt_2.0_saved_model/variables/variables.data-00000-of-00002\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tftrt_2.0_saved_model/variables/variables.data-00001-of-00002\nthird_party/tflite/src/tensorflow/python/compiler/tensorrt/test/testdata/tftrt_2.0_saved_model/variables/variables.index\nthird_party/tflite/src/tensorflow/python/feature_column/testdata/embedding.ckpt.data-00000-of-00001\nthird_party/tflite/src/tensorflow/python/feature_column/testdata/embedding.ckpt.index\nthird_party/tflite/src/tensorflow/python/feature_column/testdata/embedding.ckpt.meta\nthird_party/tflite/src/tensorflow/python/feature_column/testdata/unicode_vocabulary.tfrecord.gz\nthird_party/tflite/src/tensorflow/python/feature_column/testdata/warriors_vocabulary.tfrecord.gz\nthird_party/tflite/src/tensorflow/python/feature_column/testdata/wire_vocabulary.tfrecord.gz\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/bf-split-tree.cpb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/df-split-tree.cpb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/function-large-nodes.pb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/function-lots-of-nodes.pb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/graph-def-and-function.pb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/many-field.cpb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-large-constant.cpb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-large-constant.pb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-large-nodes.cpb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-large-nodes.pb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-lots-nodes.cpb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-lots-nodes.pb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-standard.cpb\nthird_party/tflite/src/tensorflow/tools/proto_splitter/testdata/split-standard.pb\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aaa\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aab\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aac\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aad\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aae\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aaf\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aag\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aah\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aai\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aaj\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aak\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aal\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aam\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aan\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aao\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aap\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aaq\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aar\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aas\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aat\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aau\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aav\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aaw\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aax\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aay\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aaz\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aba\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abb\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abc\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abd\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abe\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abf\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abg\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abh\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abi\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abj\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abk\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abl\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abm\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abn\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abo\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abp\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abq\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abr\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abs\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abt\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abu\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abv\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abw\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abx\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aby\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.abz\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aca\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acb\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acc\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acd\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.ace\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acf\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acg\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.ach\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aci\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acj\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.ack\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acl\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acm\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acn\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.aco\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acp\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acq\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acr\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acs\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.act\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acu\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acv\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acw\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acx\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acy\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.acz\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.ada\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.adb\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.adc\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.add\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.ade\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.adf\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.adg\nthird_party/tflite/src/third_party/icu/data/icu_conversion_data.c.gz.adh\nthird_party/tflite/src/third_party/xla/xla/hlo/tools/tests/hlo_opt_hlo_protobinary.pb\nthird_party/tflite/src/third_party/xla/xla/hlo/translate/tests/vhlo_input.mlir.bc\nthird_party/tflite/src/third_party/xla/xla/mlir/tools/mlir_bisect/tests/snapshot.mlir.pb\nthird_party/tflite/src/third_party/xla/xla/python/ifrt/ir/tests/vifrt/ifrt_legalize_to_vifrt.0_1_0.mlir.bytes\nthird_party/tflite_support/src/tensorflow_lite_support/acceleration/configuration/testdata/mobilenet_v1_1.0_224_quant.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/acceleration/configuration/testdata/mobilenet_v1_1.0_224_quant_edgetpu.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/custom_ops/kernel/sentencepiece/testdata/sentencepiece.model\nthird_party/tflite_support/src/tensorflow_lite_support/custom_ops/kernel/testdata/whitespace_tokenizer_flex_delegate.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/custom_ops/kernel/testdata/whitespace_tokenizer_to_ragged_1d_input.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/custom_ops/kernel/testdata/whitespace_tokenizer_to_ragged_2d_input.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/custom_ops/kernel/testdata/whitespace_tokenizer_to_tensor.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/custom_ops/testdata/sentencepiece_tokenizer_flex_op.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/custom_ops/testdata/wiki40b-lm-en.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/java/src/javatests/org/tensorflow/lite/support/assets/mobilenet_v1_1.0_224_quant.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/audio_classifier/two_heads.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/audio_classifier/yamnet_tfhub.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/audio_classifier/yamnet_wavin_quantized_mel_relu6.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/audio_embedder/yamnet_embedding.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/image_classifier/mobilenet_v2_1.0_224.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/image_classifier/mobilenet_v2_1.0_224_quant.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/image_segmenter/deeplabv3.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/mobilenet_v2_1.0_224_quant.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/nl_classifier/movie_review.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/object_detector/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29_no_metadata.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/object_detector/coco_ssd_mobilenet_v1_1.0_quant_2018_06_29_score_calibration.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/object_detector/efficientdet_lite0_v1.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/metadata/python/tests/testdata/object_detector/ssd_mobilenet_v1.tflite\nthird_party/tflite_support/src/tensorflow_lite_support/scann_ondevice/cc/test/testdata/dummy_index.ldb\nthird_party/vulkan-loader/src/tests/framework/data/binaries/dummy_library_elf_32.dll\nthird_party/vulkan-loader/src/tests/framework/data/binaries/dummy_library_elf_64.dll\nthird_party/vulkan-loader/src/tests/framework/data/binaries/dummy_library_pe_32.dll\nthird_party/vulkan-loader/src/tests/framework/data/binaries/dummy_library_pe_32.so\nthird_party/vulkan-loader/src/tests/framework/data/binaries/dummy_library_pe_64.dll\nthird_party/vulkan-loader/src/tests/framework/data/binaries/dummy_library_pe_64.so\nthird_party/vulkan-loader/src/tests/framework/data/binaries/libdummy_library_elf_32.so\nthird_party/vulkan-loader/src/tests/framework/data/binaries/libdummy_library_elf_64.so\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-instance_create_fuzzer-5599244505186304\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-instance_create_fuzzer-5817896795701248\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-instance_create_fuzzer-6541440380895232\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-instance_enumerate_fuzzer-5126563864051712\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-instance_enumerate_fuzzer-6308459683315712\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_advanced_fuzzer-4788849181261824\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_advanced_fuzzer-5612556809207808\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-4558978302214144\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-4568454561071104\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-4820577276723200\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-5177827962454016\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-5198773675425792\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-5416197367070720\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-5801855065915392\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_create_fuzzer-6353004288081920\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_enumerate_fuzzer-6470575830925312\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_enumerate_fuzzer-6583684169269248\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-instance_enumerate_fuzzer-6740380288876544\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-json_load_fuzzer-4512865114259456\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-json_load_fuzzer-6182254813249536\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-json_load_fuzzer-6265355951996928\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-json_load_fuzzer-6363106126659584\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-json_load_fuzzer-6482033715838976\nthird_party/vulkan-loader/src/tests/framework/data/fuzz_test_minimized_test_cases/clusterfuzz-testcase-minimized-settings_fuzzer-4626669072875520\nthird_party/vulkan-tools/src/vulkaninfo/iOS/vulkaninfo.xcodeproj/project.xcworkspace/xcuserdata/lunarg.xcuserdatad/UserInterfaceState.xcuserstate\nthird_party/vulkan_memory_allocator/bin/Shader.frag.spv\nthird_party/vulkan_memory_allocator/bin/Shader.vert.spv\nthird_party/vulkan_memory_allocator/bin/VmaSample_Release_vs2019.exe\nthird_party/wayland-protocols/gtk/demos/gtk-demo/gtk-logo.webm\nthird_party/wayland-protocols/gtk/demos/gtk-demo/ucdnames.data\nthird_party/wayland-protocols/gtk/demos/widget-factory/gtk-logo.webm\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode-rect-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode-rect.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blendmode.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blur-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blur-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blur-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blur-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blur.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/blur.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/border-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/border-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/border-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/border-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/border.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/border.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-matrix-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-matrix-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-matrix-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-matrix-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-matrix.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color-matrix.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/color.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/crossfade-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/crossfade-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/crossfade-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/crossfade-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/crossfade-rect.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/crossfade.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/crossfade.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/inset-shadow-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/inset-shadow-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/inset-shadow-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/inset-shadow-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/inset-shadow.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/inset-shadow.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/linear-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/linear-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/linear-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/linear-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/linear.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/linear.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/mask-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/mask-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/mask-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/mask-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/mask.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/mask.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/outset-shadow-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/outset-shadow-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/outset-shadow-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/outset-shadow-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/outset-shadow.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/outset-shadow.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/texture-clip-rounded.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/texture-clip-rounded.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/texture-clip.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/texture-clip.vert.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/texture.frag.spv\nthird_party/wayland-protocols/gtk/gsk/vulkan/resources/texture.vert.spv\nthird_party/wayland-protocols/gtk/gtk/emoji/de.data\nthird_party/wayland-protocols/gtk/gtk/emoji/en.data\nthird_party/wayland-protocols/gtk/gtk/emoji/es.data\nthird_party/wayland-protocols/gtk/gtk/emoji/fr.data\nthird_party/wayland-protocols/gtk/gtk/emoji/zh.data\nthird_party/wayland-protocols/gtk/tests/marble.xpm\nthird_party/wayland-protocols/gtk/tests/service-login.oga\nthird_party/wayland-protocols/gtk/tests/service-logout.oga\nthird_party/wayland-protocols/gtk/testsuite/reftests/marble.xpm\nthird_party/wayland/src/cursor/cursor.pcf\nthird_party/webgpu-cts/src/deploy_key.enc\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/abs.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/acos.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/acosh.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/asin.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/asinh.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/atan.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/atan2.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/atanh.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_addition.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_division.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_logical.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_matrix_addition.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_matrix_matrix_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_matrix_scalar_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_matrix_subtraction.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_matrix_vector_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_remainder.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/af_subtraction.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/ai_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_addition.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_division.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_logical.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_addition.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_matrix_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_scalar_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_subtraction.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_matrix_vector_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_remainder.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f16_subtraction.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_addition.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_division.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_logical.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_addition.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_matrix_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_scalar_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_subtraction.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_matrix_vector_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_multiplication.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_remainder.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/f32_subtraction.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/i32_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/i32_comparison.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/u32_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/binary/u32_comparison.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/bitcast.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/ceil.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/clamp.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/cos.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/cosh.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/cross.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/degrees.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/derivatives.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/determinant.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/distance.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/dot.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/exp.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/exp2.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/faceForward.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/floor.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/fma.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/fract.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/frexp.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/fwidth.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/inverseSqrt.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/ldexp.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/length.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/log.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/log2.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/max.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/min.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/mix.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/modf.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/normalize.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/pack2x16float.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/pow.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/quantizeToF16.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/radians.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/reflect.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/refract.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/round.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/saturate.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/sign.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/sin.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/sinh.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/smoothstep.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/sqrt.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/step.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/tan.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/tanh.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/transpose.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/trunc.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/af_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/af_assignment.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/ai_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/ai_assignment.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/bool_conversion.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/f16_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/f16_conversion.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/f32_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/f32_conversion.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/i32_arithmetic.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/i32_conversion.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unary/u32_conversion.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unpack2x16float.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unpack2x16snorm.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unpack2x16unorm.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unpack4x8snorm.bin\nthird_party/webgpu-cts/src/src/resources/cache/webgpu/shader/execution/unpack4x8unorm.bin\nthird_party/webgpu-cts/src/src/resources/four-colors-h264-bt601-hflip.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-h264-bt601-rotate-180.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-h264-bt601-rotate-270.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-h264-bt601-rotate-90.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-h264-bt601-vflip.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-h264-bt601.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-vp8-bt601.webm\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt601-hflip.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt601-rotate-180.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt601-rotate-270.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt601-rotate-90.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt601-vflip.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt601.mp4\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt601.webm\nthird_party/webgpu-cts/src/src/resources/four-colors-vp9-bt709.webm\nthird_party/webrtc/data/audio_processing/android/output_data_fixed.pb\nthird_party/webrtc/data/audio_processing/android/output_data_float.pb\nthird_party/webrtc/data/voice_engine/audio_long16big_endian.pcm\nthird_party/webrtc/data/voice_engine/audio_long16noise.pcm\nthird_party/webrtc/data/voice_engine/audio_long8.pcm\nthird_party/webrtc/data/voice_engine/audio_short16.pcm\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/HRTF_pcm16wb.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/HRTF_pcm16wb_jitter.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/hrtf_g722_1C_48.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/hrtf_g722_1C_48_jitterT2.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/rtpplay.exe\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_g729.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_g729_jitter.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_pcm16wb.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_pcm16wb_jitter.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_pcmu.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_pcmu_jitter.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_pcmu_vad.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/stereo_pcmu_vad_jitter.rtp\nthird_party/webrtc/data/voice_engine/stereo_rtp_files/toggling_stereo_g729_pt18_pt125.rtp\nthird_party/webrtc/examples/androidapp/third_party/autobanh/lib/autobanh.jar\nthird_party/webrtc/examples/objc/AppRTCMobile/ios/resources/foreman.mp4\nthird_party/webrtc/sdk/objc/unittests/audio_short16.pcm\nthird_party/webrtc/sdk/objc/unittests/audio_short44.pcm\nthird_party/webrtc/sdk/objc/unittests/audio_short48.pcm\nthird_party/webrtc/sdk/objc/unittests/foreman.mp4\nthird_party/webrtc/test/fuzzers/corpora/agc-corpus/agc-1\nthird_party/webrtc/test/fuzzers/corpora/agc-corpus/agc-2\nthird_party/webrtc/test/fuzzers/corpora/agc-corpus/agc-3\nthird_party/webrtc/test/fuzzers/corpora/agc-corpus/agc-4\nthird_party/webrtc/test/fuzzers/corpora/audio_processing-corpus/audio-processing-0\nthird_party/webrtc/test/fuzzers/corpora/audio_processing-corpus/audio-processing-1\nthird_party/webrtc/test/fuzzers/corpora/audio_processing-corpus/audio-processing-2\nthird_party/webrtc/test/fuzzers/corpora/audio_processing-corpus/audio-processing-3\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-0\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-1\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-10\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-11\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-12\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-13\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-14\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-15\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-16\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-2\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-3\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-4\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-5\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-6\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-7\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-8\nthird_party/webrtc/test/fuzzers/corpora/dependency_descriptor-corpus/dependency-descriptor-9\nthird_party/webrtc/test/fuzzers/corpora/h264-depacketizer-fuzzer-corpus/h264-0\nthird_party/webrtc/test/fuzzers/corpora/h264-depacketizer-fuzzer-corpus/h264-1\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/1.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/10.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/11.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/12.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/13.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/14.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/15.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/16.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/17.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/18.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/19.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/2.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/20.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/3.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/4.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/5.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/6.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/7.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/8.mdns\nthird_party/webrtc/test/fuzzers/corpora/mdns-corpus/9.mdns\nthird_party/webrtc/test/fuzzers/corpora/pseudotcp-corpus/785b96587d0eb44dd5d75b7a886f37e2ac504511\nthird_party/webrtc/test/fuzzers/corpora/receive-side-cc/testcase-5414098152390656\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/0.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/1.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/10.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/11.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/12.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/13.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/14.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/15.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/16.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/17.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/18.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/19.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/2.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/20.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/21.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/22.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/23.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/24.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/25.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/26.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/27.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/28.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/29.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/3.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/30.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/31.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/32.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/33.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/34.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/35.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/36.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/37.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/38.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/39.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/4.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/40.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/41.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/42.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/43.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/44.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/45.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/46.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/48.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/49.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/5.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/50.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/51.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/52.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/53.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/54.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/56.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/57.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/58.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/59.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/6.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/60.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/61.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/62.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/63.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/64.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/65.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/66.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/7.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/8.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtcp-corpus/9.rtcp\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-0\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-1\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-2\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-3\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-4\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-5\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-6\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-7\nthird_party/webrtc/test/fuzzers/corpora/rtp-corpus/rtp-8\nthird_party/webrtc/test/fuzzers/corpora/rtp-depacketizer-av1-assemble-frame-corpus/av1-assemble-frame-0\nthird_party/webrtc/test/fuzzers/corpora/rtpdump-corpus/vp8/vp8.rtpdump\nthird_party/webrtc/test/fuzzers/corpora/rtpdump-corpus/vp9/b353565743.rtpdump\nthird_party/webrtc/test/fuzzers/corpora/rtpdump-corpus/vp9/vp9.rtpdump\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/cookie-ack-sack.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/cookie-echo-data-data-data.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/cookie-echo-data-data.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/cookie-echo-data.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/data-fragment1.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/forward-tsn.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/heartbeat-ack.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/heartbeat.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/init-ack.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/init.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/re-config.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/sack-data.bin\nthird_party/webrtc/test/fuzzers/corpora/sctp-packet-corpus/sack-gap-ack-1.bin\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/0.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/1.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/10.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/11.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/12.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/13.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/14.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/15.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/16.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/17.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/2.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/3.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/4.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/5.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/6.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/7.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/8.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/9.stun\nthird_party/webrtc/test/fuzzers/corpora/stun-corpus/validator-crash-1.stun\nthird_party/webrtc/test/fuzzers/corpora/video_layers_allocation-corpus/vla-0\nthird_party/webrtc/test/fuzzers/corpora/vp9-encoder-references-corpus/0cee4d5fd2905dc1fb2979f10a9724265b7075e2\nthird_party/webrtc/test/fuzzers/corpora/vp9-encoder-references-corpus/a1c75436e1872a23391d58316d88c45da0fb7682\nthird_party/webrtc/test/fuzzers/corpora/vp9-encoder-references-corpus/a8b3fb7be82395c9462684c766841d668dc0029f\nthird_party/win_build_output/mc/chrome/common/win/MSG00409.bin\nthird_party/win_build_output/mc/chrome/credential_provider/eventlog/MSG00409.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00401.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00402.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00403.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00404.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00405.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00406.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00407.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00408.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00409.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0040b.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0040c.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0040d.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0040e.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00410.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00411.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00412.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00413.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00414.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00415.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00416.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00418.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00419.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0041a.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0041b.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0041d.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0041e.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0041f.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00421.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00422.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00424.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00425.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00426.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00427.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00429.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0042a.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00439.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0043e.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00441.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00445.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00447.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00449.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0044a.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0044b.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0044c.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0044e.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0045e.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00464.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00804.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00809.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0080a.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00816.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG0081a.bin\nthird_party/win_build_output/mc/remoting/host/win/MSG00c0a.bin\nthird_party/win_build_output/midl/chrome/browser/browser_switcher/bho/arm64/ie_bho_idl.tlb\nthird_party/win_build_output/midl/chrome/browser/browser_switcher/bho/x64/ie_bho_idl.tlb\nthird_party/win_build_output/midl/chrome/browser/browser_switcher/bho/x86/ie_bho_idl.tlb\nthird_party/win_build_output/midl/chrome/credential_provider/gaiacp/arm64/gaia_credential_provider.tlb\nthird_party/win_build_output/midl/chrome/credential_provider/gaiacp/x64/gaia_credential_provider.tlb\nthird_party/win_build_output/midl/chrome/credential_provider/gaiacp/x86/gaia_credential_provider.tlb\nthird_party/win_build_output/midl/chrome/elevation_service/arm64/elevation_service_idl.tlb\nthird_party/win_build_output/midl/chrome/elevation_service/x64/elevation_service_idl.tlb\nthird_party/win_build_output/midl/chrome/elevation_service/x86/elevation_service_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_internal_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_internal_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_internal_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_legacy_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_legacy_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/arm64/updater_legacy_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_internal_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_internal_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_internal_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_legacy_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_legacy_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x64/updater_legacy_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_internal_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_internal_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_internal_idl_user.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_legacy_idl.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_legacy_idl_system.tlb\nthird_party/win_build_output/midl/chrome/updater/app/server/win/x86/updater_legacy_idl_user.tlb\nthird_party/win_build_output/midl/chrome/windows_services/elevated_tracing_service/arm64/tracing_service_idl.tlb\nthird_party/win_build_output/midl/chrome/windows_services/elevated_tracing_service/x64/tracing_service_idl.tlb\nthird_party/win_build_output/midl/chrome/windows_services/elevated_tracing_service/x86/tracing_service_idl.tlb\nthird_party/win_build_output/midl/chrome/windows_services/service_program/arm64/test_service_idl.tlb\nthird_party/win_build_output/midl/chrome/windows_services/service_program/x64/test_service_idl.tlb\nthird_party/win_build_output/midl/chrome/windows_services/service_program/x86/test_service_idl.tlb\nthird_party/win_build_output/midl/remoting/host/win/arm64/chromoting_lib.tlb\nthird_party/win_build_output/midl/remoting/host/win/x64/chromoting_lib.tlb\nthird_party/win_build_output/midl/remoting/host/win/x86/chromoting_lib.tlb\nthird_party/win_build_output/midl/third_party/iaccessible2/arm64/ia2_api_all.tlb\nthird_party/win_build_output/midl/third_party/iaccessible2/x64/ia2_api_all.tlb\nthird_party/win_build_output/midl/third_party/iaccessible2/x86/ia2_api_all.tlb\nthird_party/win_virtual_display/driver/ChromiumVirtualDisplayDriver.inf\nthird_party/zlib/google/test/data/Different Encryptions.zip\nthird_party/zlib/google/test/data/Empty Dir Same Name As File.zip\nthird_party/zlib/google/test/data/Mixed Paths.zip\nthird_party/zlib/google/test/data/Parent Dir Same Name As File.zip\nthird_party/zlib/google/test/data/Repeated Dir Name.zip\nthird_party/zlib/google/test/data/Repeated File Name With Different Cases.zip\nthird_party/zlib/google/test/data/Repeated File Name.zip\nthird_party/zlib/google/test/data/SJIS Bug 846195.zip\nthird_party/zlib/google/test/data/Windows Special Names.zip\nthird_party/zlib/google/test/data/Wrong CRC.zip\nthird_party/zlib/google/test/data/empty.zip\nthird_party/zlib/google/test/data/evil.zip\nthird_party/zlib/google/test/data/evil_via_absolute_file_name.zip\nthird_party/zlib/google/test/data/evil_via_invalid_utf8.zip\nthird_party/zlib/google/test/data/symlink_absolute_path.zip\nthird_party/zlib/google/test/data/symlink_duplicate_link.zip\nthird_party/zlib/google/test/data/symlink_evil_relative_path.zip\nthird_party/zlib/google/test/data/symlink_follow_own_link.zip\nthird_party/zlib/google/test/data/symlink_follow_own_link_dir.zip\nthird_party/zlib/google/test/data/symlink_too_large.zip\nthird_party/zlib/google/test/data/symlinks.zip\nthird_party/zlib/google/test/data/test.zip\nthird_party/zlib/google/test/data/test_encrypted.zip\nthird_party/zlib/google/test/data/test_mismatch_size.zip\nthird_party/zlib/google/test/data/test_nocompress.zip\nthird_party/zlib/google/test/data/test_posix_permissions.zip\nthird_party/zlib/google/test/data/unicode_path_extra.zip\nthird_party/zlib/google/test/data/unicode_path_extra_overflow.zip\nthird_party/zstd/src/programs/windres/zstd32.res\nthird_party/zstd/src/programs/windres/zstd64.res\nthird_party/zstd/src/tests/dict-files/zero-weight-dict\nthird_party/zstd/src/tests/golden-compression/huffman-compressed-larger\nthird_party/zstd/src/tests/golden-compression/large-literal-and-match-lengths\nthird_party/zstd/src/tests/golden-decompression-errors/off0.bin.zst\nthird_party/zstd/src/tests/golden-decompression-errors/truncated_huff_state.zst\nthird_party/zstd/src/tests/golden-decompression-errors/zeroSeq_extraneous.zst\nthird_party/zstd/src/tests/golden-decompression/block-128k.zst\nthird_party/zstd/src/tests/golden-decompression/empty-block.zst\nthird_party/zstd/src/tests/golden-decompression/rle-first-block.zst\nthird_party/zstd/src/tests/golden-decompression/zeroSeq_2B.zst\nthird_party/zstd/src/tests/golden-dictionaries/http-dict-missing-symbols\nthird_party/zstd/src/tests/gzip/hufts-segv.gz\ntools/android/elf_compression/test/testdata/lib.so\ntools/binary_size/libsupersize/testdata/mock_apk/assets/en-US.pak\ntools/binary_size/libsupersize/testdata/mock_apk/assets/resources.pak\ntools/binary_size/libsupersize/testdata/mock_apk/resources.arsc\ntools/binary_size/libsupersize/testdata/mock_dex/after/classes.dex\ntools/binary_size/libsupersize/testdata/mock_dex/before/classes.dex\ntools/grit/grit/testdata/klonk-alternate-skeleton.rc\ntools/grit/grit/testdata/klonk.rc\ntools/grit/grit/testdata/resources.pak\ntools/origin_trials/eftest.key\ntools/origin_trials/eftest2.key\nui/accessibility/fuzz_corpus/ax_table_fuzzer_seed.bin\nui/display/util/fuzz_corpus/eve\nui/display/util/fuzz_corpus/hdr\nui/display/util/fuzz_corpus/hpz32x\nui/display/util/fuzz_corpus/internal\nui/display/util/fuzz_corpus/lp2565a\nui/display/util/fuzz_corpus/lp2565b\nui/display/util/fuzz_corpus/misdetected\nui/display/util/fuzz_corpus/normal\nui/display/util/fuzz_corpus/overscan\nui/file_manager/image_loader/piex/piex.out.wasm\nv8/third_party/wasm-api/example/callback.wasm\nv8/third_party/wasm-api/example/finalize.wasm\nv8/third_party/wasm-api/example/global.wasm\nv8/third_party/wasm-api/example/hello.wasm\nv8/third_party/wasm-api/example/hostref.wasm\nv8/third_party/wasm-api/example/memory.wasm\nv8/third_party/wasm-api/example/multi.wasm\nv8/third_party/wasm-api/example/reflect.wasm\nv8/third_party/wasm-api/example/serialize.wasm\nv8/third_party/wasm-api/example/start.wasm\nv8/third_party/wasm-api/example/table.wasm\nv8/third_party/wasm-api/example/threads.wasm\nv8/third_party/wasm-api/example/trap.wasm\n"
  },
  {
    "path": "revision.txt",
    "content": "1\n"
  },
  {
    "path": "shell.nix",
    "content": "{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {\n  nativeBuildInputs = with pkgs; [\n    quilt\n\n    (python3.withPackages (ps: with ps; [\n      httplib2\n      six\n    ]))\n  ];\n}\n"
  },
  {
    "path": "utils/.coveragerc",
    "content": "[run]\nbranch = True\nparallel = True\nomit = tests/*\n\n[report]\n# Regexes for lines to exclude from consideration\nexclude_lines =\n    # Have to re-enable the standard pragma\n    pragma: no cover\n\n    # Don't complain about missing debug-only code:\n    def __repr__\n    if self\\.debug\n\n    # Don't complain if tests don't hit defensive assertion code:\n    raise AssertionError\n    raise NotImplementedError\n\n    # Don't complain if non-runnable code isn't run:\n    if 0:\n    if __name__ == .__main__.:\n"
  },
  {
    "path": "utils/__init__.py",
    "content": ""
  },
  {
    "path": "utils/_common.py",
    "content": "# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Common code and constants\"\"\"\nimport argparse\nimport enum\nimport logging\nimport platform\nfrom pathlib import Path\n\n# Constants\n\nENCODING = 'UTF-8' # For config files and patches\n\nUSE_REGISTRY = '_use_registry'\n\nLOGGER_NAME = 'ungoogled'\n\n# Public classes\n\n\nclass PlatformEnum(enum.Enum):\n    \"\"\"Enum for platforms that need distinction for certain functionality\"\"\"\n    UNIX = 'unix' # Currently covers anything that isn't Windows\n    WINDOWS = 'windows'\n\n\nclass ExtractorEnum: #pylint: disable=too-few-public-methods\n    \"\"\"Enum for extraction binaries\"\"\"\n    SEVENZIP = '7z'\n    TAR = 'tar'\n    WINRAR = 'winrar'\n\n\nclass SetLogLevel(argparse.Action): #pylint: disable=too-few-public-methods\n    \"\"\"Sets logging level based on command line arguments it receives\"\"\"\n\n    def __init__(self, option_strings, dest, nargs=None, **kwargs):\n        super().__init__(option_strings, dest, nargs=nargs, **kwargs)\n\n    def __call__(self, parser, namespace, value, option_string=None):\n        if option_string in ('--verbose', '-v'):\n            value = logging.DEBUG\n        elif option_string in ('--quiet', '-q'):\n            value = logging.ERROR\n        else:\n            levels = {\n                'FATAL': logging.FATAL,\n                'ERROR': logging.ERROR,\n                'WARNING': logging.WARNING,\n                'INFO': logging.INFO,\n                'DEBUG': logging.DEBUG\n            }\n            value = levels[value]\n        set_logging_level(value)\n\n\n# Public methods\n\n\ndef get_logger(initial_level=logging.INFO):\n    \"\"\"Gets the named logger\"\"\"\n\n    logger = logging.getLogger(LOGGER_NAME)\n\n    if logger.level == logging.NOTSET:\n        logger.setLevel(initial_level)\n\n        if not logger.hasHandlers():\n            console_handler = logging.StreamHandler()\n            console_handler.setLevel(initial_level)\n\n            format_string = '%(levelname)s: %(message)s'\n            formatter = logging.Formatter(format_string)\n            console_handler.setFormatter(formatter)\n\n            logger.addHandler(console_handler)\n    return logger\n\n\ndef set_logging_level(logging_level):\n    \"\"\"Sets logging level of logger and all its handlers\"\"\"\n\n    if not logging_level:\n        logging_level = logging.INFO\n\n    logger = get_logger()\n    logger.setLevel(logging_level)\n\n    if logger.hasHandlers():\n        for hdlr in logger.handlers:\n            hdlr.setLevel(logging_level)\n\n    return logger\n\n\ndef get_running_platform():\n    \"\"\"\n    Returns a PlatformEnum value indicating the platform that utils is running on.\n\n    NOTE: Platform detection should only be used when no cross-platform alternative is available.\n    \"\"\"\n    uname = platform.uname()\n    # detect native python and WSL\n    if uname.system == 'Windows' or 'Microsoft' in uname.release:\n        return PlatformEnum.WINDOWS\n    # Only Windows and UNIX-based platforms need to be distinguished right now.\n    return PlatformEnum.UNIX\n\n\ndef get_chromium_version():\n    \"\"\"Returns the Chromium version.\"\"\"\n    return (Path(__file__).parent.parent / 'chromium_version.txt').read_text().strip()\n\n\ndef parse_series(series_path):\n    \"\"\"\n    Returns an iterator of paths over the series file\n\n    series_path is a pathlib.Path to the series file\n    \"\"\"\n    with series_path.open(encoding=ENCODING) as series_file:\n        series_lines = series_file.read().splitlines()\n    # Filter blank lines\n    series_lines = filter(len, series_lines)\n    # Filter comment lines\n    series_lines = filter((lambda x: not x.startswith('#')), series_lines)\n    # Strip in-line comments\n    series_lines = map((lambda x: x.strip().split(' #')[0]), series_lines)\n    return series_lines\n\n\ndef add_common_params(parser):\n    \"\"\"\n    Adds common command line arguments to a parser.\n    \"\"\"\n\n    # Logging levels\n    logging_group = parser.add_mutually_exclusive_group()\n    logging_group.add_argument(\n        '--log-level',\n        action=SetLogLevel,\n        choices=['FATAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG'],\n        help=\"Set logging level of current script. Only one of 'log-level', 'verbose',\"\n        \" 'quiet' can be set at a time.\")\n    logging_group.add_argument(\n        '--quiet',\n        '-q',\n        action=SetLogLevel,\n        nargs=0,\n        help=\"Display less outputs to console. Only one of 'log-level', 'verbose',\"\n        \" 'quiet' can be set at a time.\")\n    logging_group.add_argument(\n        '--verbose',\n        '-v',\n        action=SetLogLevel,\n        nargs=0,\n        help=\"Increase logging verbosity to include DEBUG messages. Only one of \"\n        \"'log-level', 'verbose', 'quiet' can be set at a time.\")\n"
  },
  {
    "path": "utils/_extraction.py",
    "content": "# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nArchive extraction utilities\n\"\"\"\n\nimport os\nimport shutil\nimport subprocess\nimport tarfile\nfrom pathlib import Path, PurePosixPath\n\nfrom _common import (USE_REGISTRY, PlatformEnum, ExtractorEnum, get_logger, get_running_platform)\n\nDEFAULT_EXTRACTORS = {\n    ExtractorEnum.SEVENZIP: USE_REGISTRY,\n    ExtractorEnum.TAR: 'tar',\n    ExtractorEnum.WINRAR: USE_REGISTRY,\n}\n\n\ndef _find_7z_by_registry():\n    \"\"\"\n    Return a string to 7-zip's 7z.exe from the Windows Registry.\n    \"\"\"\n    import winreg #pylint: disable=import-error, import-outside-toplevel\n    sub_key_7zfm = 'SOFTWARE\\\\Microsoft\\\\Windows\\\\CurrentVersion\\\\App Paths\\\\7zFM.exe'\n    try:\n        with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, sub_key_7zfm) as key_handle:\n            sevenzipfm_dir = winreg.QueryValueEx(key_handle, 'Path')[0]\n    except OSError:\n        get_logger().exception('Unable to locate 7-zip from the Windows Registry')\n        raise\n    sevenzip_path = Path(sevenzipfm_dir, '7z.exe')\n    if not sevenzip_path.is_file():\n        get_logger().error('7z.exe not found at path from registry: %s', sevenzip_path)\n    return sevenzip_path\n\n\ndef _find_winrar_by_registry():\n    \"\"\"\n    Return a string to WinRAR's WinRAR.exe from the Windows Registry.\n    \"\"\"\n    import winreg #pylint: disable=import-error, import-outside-toplevel\n    sub_key_winrar = 'SOFTWARE\\\\Microsoft\\\\Windows\\\\CurrentVersion\\\\App Paths\\\\WinRAR.exe'\n    try:\n        with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, sub_key_winrar) as key_handle:\n            winrar_dir = winreg.QueryValueEx(key_handle, 'Path')[0]\n    except OSError:\n        get_logger().exception('Unable to locale WinRAR from the Windows Registry')\n        raise\n    winrar_path = Path(winrar_dir, 'WinRAR.exe')\n    if not winrar_path.is_file():\n        get_logger().error('WinRAR.exe not found at path from registry: %s', winrar_path)\n    return winrar_path\n\n\ndef _find_extractor_by_cmd(extractor_cmd):\n    \"\"\"Returns a string path to the binary; None if it couldn't be found\"\"\"\n    if not extractor_cmd:\n        return None\n    if Path(extractor_cmd).is_file():\n        return extractor_cmd\n    return shutil.which(extractor_cmd)\n\n\ndef _process_relative_to(unpack_root, relative_to):\n    \"\"\"\n    For an extractor that doesn't support an automatic transform, move the extracted\n    contents from the relative_to/ directory to the unpack_root\n\n    If relative_to is None, nothing is done.\n    \"\"\"\n    if relative_to is None:\n        return\n    relative_root = unpack_root / relative_to\n    if not relative_root.is_dir():\n        get_logger().error('Could not find relative_to directory in extracted files: %s',\n                           relative_to)\n        raise FileNotFoundError()\n    for src_path in relative_root.iterdir():\n        dest_path = unpack_root / src_path.name\n        src_path.rename(dest_path)\n    relative_root.rmdir()\n\n\ndef _extract_tar_with_7z(binary, archive_path, output_dir, relative_to):\n    get_logger().debug('Using 7-zip extractor')\n    if not relative_to is None and (output_dir / relative_to).exists():\n        get_logger().error('Temporary unpacking directory already exists: %s',\n                           output_dir / relative_to)\n        raise FileExistsError()\n    cmd1 = (binary, 'x', str(archive_path), '-so')\n    cmd2 = (binary, 'x', '-si', '-snld', '-aoa', '-ttar', f'-o{str(output_dir)}')\n    get_logger().debug('7z command line: %s | %s', ' '.join(cmd1), ' '.join(cmd2))\n\n    proc1 = subprocess.Popen(cmd1, stdout=subprocess.PIPE) #pylint: disable=consider-using-with\n    proc2 = subprocess.Popen(cmd2, stdin=proc1.stdout, stdout=subprocess.PIPE) #pylint: disable=consider-using-with\n    proc1.stdout.close()\n    (stdout_data, stderr_data) = proc2.communicate()\n    if proc2.returncode != 0:\n        get_logger().error('7z commands returned non-zero status: %s', proc2.returncode)\n        get_logger().debug('stdout: %s', stdout_data)\n        get_logger().debug('stderr: %s', stderr_data)\n        raise ChildProcessError()\n\n    _process_relative_to(output_dir, relative_to)\n\n\ndef _extract_tar_with_tar(binary, archive_path, output_dir, relative_to):\n    get_logger().debug('Using BSD or GNU tar extractor')\n    output_dir.mkdir(exist_ok=True)\n    cmd = (binary, '-xf', str(archive_path), '-C', str(output_dir))\n    get_logger().debug('tar command line: %s', ' '.join(cmd))\n    result = subprocess.run(cmd, check=False)\n    if result.returncode != 0:\n        get_logger().error('tar command returned %s', result.returncode)\n        raise ChildProcessError()\n\n    # for gnu tar, the --transform option could be used. but to keep compatibility with\n    # bsdtar on macos, we just do this ourselves\n    _process_relative_to(output_dir, relative_to)\n\n\ndef _extract_tar_with_winrar(binary, archive_path, output_dir, relative_to):\n    get_logger().debug('Using WinRAR extractor')\n    output_dir.mkdir(exist_ok=True)\n    cmd = (binary, 'x', '-o+', str(archive_path), str(output_dir))\n    get_logger().debug('WinRAR command line: %s', ' '.join(cmd))\n    result = subprocess.run(cmd, check=False)\n    if result.returncode != 0:\n        get_logger().error('WinRAR command returned %s', result.returncode)\n        raise ChildProcessError()\n\n    _process_relative_to(output_dir, relative_to)\n\n\ndef _extract_tar_with_python(archive_path, output_dir, relative_to):\n    get_logger().debug('Using pure Python tar extractor')\n\n    class NoAppendList(list):\n        \"\"\"Hack to workaround memory issues with large tar files\"\"\"\n\n        def append(self, obj):\n            pass\n\n    # Simple hack to check if symlinks are supported\n    symlink_supported = False\n    try:\n        os.symlink('', '')\n    except FileNotFoundError:\n        # Symlinks probably supported\n        symlink_supported = True\n    except OSError:\n        # Symlinks probably not supported\n        get_logger().info('System does not support symlinks. Ignoring them.')\n    except BaseException:\n        # Unexpected exception\n        get_logger().exception('Unexpected exception during symlink support check.')\n        raise\n\n    with tarfile.open(str(archive_path), f'r|{archive_path.suffix[1:]}') as tar_file_obj:\n        tar_file_obj.members = NoAppendList()\n        for tarinfo in tar_file_obj:\n            try:\n                if relative_to is None:\n                    destination = output_dir / PurePosixPath(tarinfo.name)\n                else:\n                    destination = output_dir / PurePosixPath(tarinfo.name).relative_to(relative_to)\n                if tarinfo.issym() and not symlink_supported:\n                    # In this situation, TarFile.makelink() will try to create a copy of the\n                    # target. But this fails because TarFile.members is empty\n                    # But if symlinks are not supported, it's safe to assume that symlinks\n                    # aren't needed. The only situation where this happens is on Windows.\n                    continue\n                if tarinfo.islnk():\n                    # Derived from TarFile.extract()\n                    new_target = output_dir / PurePosixPath(\n                        tarinfo.linkname).relative_to(relative_to)\n                    tarinfo._link_target = new_target.as_posix() # pylint: disable=protected-access\n                if destination.is_symlink():\n                    destination.unlink()\n                tar_file_obj._extract_member(tarinfo, str(destination)) # pylint: disable=protected-access\n            except BaseException:\n                get_logger().exception('Exception thrown for tar member: %s', tarinfo.name)\n                raise\n\n\ndef extract_tar_file(archive_path, output_dir, relative_to, extractors=None):\n    \"\"\"\n    Extract regular or compressed tar archive into the output directory.\n\n    archive_path is the pathlib.Path to the archive to unpack\n    output_dir is a pathlib.Path to the directory to unpack. It must already exist.\n\n    relative_to is a pathlib.Path for directories that should be stripped relative to the\n        root of the archive, or None if no path components should be stripped.\n    extractors is a dictionary of PlatformEnum to a command or path to the\n        extractor binary. Defaults to 'tar' for tar, and '_use_registry' for 7-Zip and WinRAR.\n    \"\"\"\n    if extractors is None:\n        extractors = DEFAULT_EXTRACTORS\n\n    current_platform = get_running_platform()\n    if current_platform == PlatformEnum.WINDOWS:\n        # Try to use 7-zip first\n        sevenzip_cmd = extractors.get(ExtractorEnum.SEVENZIP)\n        if sevenzip_cmd == USE_REGISTRY:\n            sevenzip_cmd = str(_find_7z_by_registry())\n        sevenzip_bin = _find_extractor_by_cmd(sevenzip_cmd)\n        if sevenzip_bin is not None:\n            _extract_tar_with_7z(sevenzip_bin, archive_path, output_dir, relative_to)\n            return\n\n        # Use WinRAR if 7-zip is not found\n        winrar_cmd = extractors.get(ExtractorEnum.WINRAR)\n        if winrar_cmd == USE_REGISTRY:\n            winrar_cmd = str(_find_winrar_by_registry())\n        winrar_bin = _find_extractor_by_cmd(winrar_cmd)\n        if winrar_bin is not None:\n            _extract_tar_with_winrar(winrar_bin, archive_path, output_dir, relative_to)\n            return\n        get_logger().warning(\n            'Neither 7-zip nor WinRAR were found. Falling back to Python extractor...')\n    elif current_platform == PlatformEnum.UNIX:\n        # NOTE: 7-zip isn't an option because it doesn't preserve file permissions\n        tar_bin = _find_extractor_by_cmd(extractors.get(ExtractorEnum.TAR))\n        if not tar_bin is None:\n            _extract_tar_with_tar(tar_bin, archive_path, output_dir, relative_to)\n            return\n    else:\n        # This is not a normal code path, so make it clear.\n        raise NotImplementedError(current_platform)\n    # Fallback to Python-based extractor on all platforms\n    _extract_tar_with_python(archive_path, output_dir, relative_to)\n\n\ndef extract_with_7z(archive_path, output_dir, relative_to, extractors=None):\n    \"\"\"\n    Extract archives with 7-zip into the output directory.\n    Only supports archives with one layer of unpacking, so compressed tar archives don't work.\n\n    archive_path is the pathlib.Path to the archive to unpack\n    output_dir is a pathlib.Path to the directory to unpack. It must already exist.\n\n    relative_to is a pathlib.Path for directories that should be stripped relative to the\n    root of the archive.\n    extractors is a dictionary of PlatformEnum to a command or path to the\n    extractor binary. Defaults to 'tar' for tar, and '_use_registry' for 7-Zip.\n    \"\"\"\n    # TODO: It would be nice to extend this to support arbitrary standard IO chaining of 7z\n    # instances, so _extract_tar_with_7z and other future formats could use this.\n    if extractors is None:\n        extractors = DEFAULT_EXTRACTORS\n    sevenzip_cmd = extractors.get(ExtractorEnum.SEVENZIP)\n    if sevenzip_cmd == USE_REGISTRY:\n        if not get_running_platform() == PlatformEnum.WINDOWS:\n            get_logger().error('\"%s\" for 7-zip is only available on Windows', sevenzip_cmd)\n            raise EnvironmentError()\n        sevenzip_cmd = str(_find_7z_by_registry())\n    sevenzip_bin = _find_extractor_by_cmd(sevenzip_cmd)\n\n    if not relative_to is None and (output_dir / relative_to).exists():\n        get_logger().error('Temporary unpacking directory already exists: %s',\n                           output_dir / relative_to)\n        raise FileExistsError()\n    cmd = (sevenzip_bin, 'x', str(archive_path), '-aoa', f'-o{str(output_dir)}')\n    get_logger().debug('7z command line: %s', ' '.join(cmd))\n\n    result = subprocess.run(cmd, check=False)\n    if result.returncode != 0:\n        get_logger().error('7z command returned %s', result.returncode)\n        raise ChildProcessError()\n\n    _process_relative_to(output_dir, relative_to)\n\n\ndef extract_with_winrar(archive_path, output_dir, relative_to, extractors=None):\n    \"\"\"\n    Extract archives with WinRAR into the output directory.\n    Only supports archives with one layer of unpacking, so compressed tar archives don't work.\n\n    archive_path is the pathlib.Path to the archive to unpack\n    output_dir is a pathlib.Path to the directory to unpack. It must already exist.\n\n    relative_to is a pathlib.Path for directories that should be stripped relative to the\n    root of the archive.\n    extractors is a dictionary of PlatformEnum to a command or path to the\n    extractor binary. Defaults to 'tar' for tar, and '_use_registry' for WinRAR.\n    \"\"\"\n    if extractors is None:\n        extractors = DEFAULT_EXTRACTORS\n    winrar_cmd = extractors.get(ExtractorEnum.WINRAR)\n    if winrar_cmd == USE_REGISTRY:\n        if not get_running_platform() == PlatformEnum.WINDOWS:\n            get_logger().error('\"%s\" for WinRAR is only available on Windows', winrar_cmd)\n            raise EnvironmentError()\n        winrar_cmd = str(_find_winrar_by_registry())\n    winrar_bin = _find_extractor_by_cmd(winrar_cmd)\n\n    if not relative_to is None and (output_dir / relative_to).exists():\n        get_logger().error('Temporary unpacking directory already exists: %s',\n                           output_dir / relative_to)\n        raise FileExistsError()\n    cmd = (winrar_bin, 'x', '-o+', str(archive_path), str(output_dir))\n    get_logger().debug('WinRAR command line: %s', ' '.join(cmd))\n\n    result = subprocess.run(cmd, check=False)\n    if result.returncode != 0:\n        get_logger().error('WinRAR command returned %s', result.returncode)\n        raise ChildProcessError()\n\n    _process_relative_to(output_dir, relative_to)\n"
  },
  {
    "path": "utils/clone.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2023 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nModule for cloning the source tree.\n\"\"\"\n\nimport re\nimport sys\nfrom argparse import ArgumentParser\nfrom os import environ, pathsep\nfrom pathlib import Path\nfrom shutil import copytree, copy, move\nfrom stat import S_IWRITE\nfrom subprocess import run\n\nfrom _common import ENCODING, add_common_params, get_chromium_version, get_logger\n\n# Config file for gclient\n# Instances of 'src' replaced with UC_OUT, which will be replaced with the output directory\n# custom_deps are set to None since they are large and unused\n# target_* arguments set to match tarball rather than actual build target\nGC_CONFIG = \"\"\"\\\nsolutions = [\n  {\n    \"name\": \"UC_OUT\",\n    \"url\": \"https://chromium.googlesource.com/chromium/src.git\",\n    \"managed\": False,\n    \"custom_deps\": {\n      \"UC_OUT/third_party/angle/third_party/VK-GL-CTS/src\": None,\n    },\n    \"custom_vars\": {\n      \"checkout_configuration\": \"small\",\n      \"non_git_source\": \"False\",\n    },\n  },\n];\ntarget_os = ['unix'];\ntarget_os_only = True;\ntarget_cpu = ['x64'];\ntarget_cpu_only = True;\n\"\"\"\n\n\ndef clone(args): # pylint: disable=too-many-branches, too-many-locals, too-many-statements\n    \"\"\"Clones, downloads, and generates the required sources\"\"\"\n    get_logger().info('Setting up cloning environment')\n    iswin = sys.platform.startswith('win')\n    chromium_version = get_chromium_version()\n    ucstaging = args.output / 'uc_staging'\n    dtpath = ucstaging / 'depot_tools'\n    gsuver = '5.35'\n    gsupath = dtpath / 'external_bin' / 'gsutil' / f'gsutil_{gsuver}' / 'gsutil'\n    gnpath = ucstaging / 'gn'\n    environ['GCLIENT_FILE'] = str(ucstaging / '.gclient')\n    environ['PATH'] += pathsep + str(dtpath)\n    environ['PYTHONPATH'] = str(dtpath)\n    # Prevent gclient from auto updating depot_tools\n    environ['DEPOT_TOOLS_UPDATE'] = '0'\n    # Don't generate pycache files\n    environ['PYTHONDONTWRITEBYTECODE'] = '1'\n    # Allow usage of system python\n    environ['VPYTHON_BYPASS'] = 'manually managed python not supported by chrome operations'\n    # Google has some regex strings that aren't escaped properly or set as raw\n    environ[\"PYTHONWARNINGS\"] = \"ignore::SyntaxWarning\"\n\n    # depth=2 since generating LASTCHANGE and gpu_lists_version.h require at least two commits\n    get_logger().info('Cloning chromium source: %s', chromium_version)\n    if (args.output / '.git').exists():\n        run(['git', 'fetch', 'origin', 'tag', chromium_version, '--depth=2'],\n            cwd=args.output,\n            check=True)\n        run(['git', 'reset', '--hard', 'FETCH_HEAD'], cwd=args.output, check=True)\n        run(['git', 'clean', '-ffdx', '-e', 'uc_staging'], cwd=args.output, check=True)\n    else:\n        run([\n            'git', 'clone', '-c', 'advice.detachedHead=false', '-b', chromium_version, '--depth=2',\n            \"https://chromium.googlesource.com/chromium/src\",\n            str(args.output)\n        ],\n            check=True)\n\n    # Set up staging directory\n    ucstaging.mkdir(exist_ok=True)\n\n    get_logger().info('Cloning depot_tools')\n    dt_commit = re.search(r\"depot_tools\\.git'\\s*\\+\\s*'@'\\s*\\+\\s*'([^']+)',\",\n                          Path(args.output / 'DEPS').read_text(encoding=ENCODING)).group(1)\n    if not dt_commit:\n        get_logger().error('Unable to obtain commit for depot_tools checkout')\n        sys.exit(1)\n    if not dtpath.exists():\n        dtpath.mkdir()\n        run(['git', 'init', '-q'], cwd=dtpath, check=True)\n        run([\n            'git', 'remote', 'add', 'origin',\n            'https://chromium.googlesource.com/chromium/tools/depot_tools'\n        ],\n            cwd=dtpath,\n            check=True)\n    run(['git', 'fetch', '--depth=1', 'origin', dt_commit], cwd=dtpath, check=True)\n    run(['git', 'reset', '--hard', dt_commit], cwd=dtpath, check=True)\n    run(['git', 'clean', '-ffdx'], cwd=dtpath, check=True)\n    if iswin:\n        (dtpath / 'git.bat').write_text('git')\n    # Apply changes to gclient\n    run(['git', 'apply', '--ignore-whitespace'],\n        input=Path(__file__).with_name('depot_tools.patch').read_text(encoding=ENCODING).replace(\n            'UC_OUT', str(args.output)).replace('UC_STAGING',\n                                                str(ucstaging)).replace('GSUVER', gsuver),\n        cwd=dtpath,\n        check=True,\n        universal_newlines=True)\n\n    # Manualy set up the gsutil directory for newer versions of Python\n    get_logger().info('Cloning gsutil')\n    if not gsupath.exists():\n        gsupath.mkdir(parents=True)\n        run(['git', 'init', '-q'], cwd=gsupath, check=True)\n        run(['git', 'remote', 'add', 'origin', 'https://github.com/GoogleCloudPlatform/gsutil'],\n            cwd=gsupath,\n            check=True)\n    run(['git', 'fetch', '--depth=1', 'origin', f'v{gsuver}'], cwd=gsupath, check=True)\n    run(['git', 'reset', '--hard', 'FETCH_HEAD'], cwd=gsupath, check=True)\n    run(['git', 'clean', '-ffdx'], cwd=gsupath, check=True)\n    get_logger().info('Updating gsutil submodules')\n    run(['git', 'submodule', 'update', '--init', '--recursive', '--depth=1', '-q'],\n        cwd=gsupath,\n        check=True)\n    # Apply changes to gsutil\n    run(['git', 'apply'],\n        input=Path(__file__).with_name('gsutil.patch').read_text(encoding=ENCODING),\n        cwd=gsupath,\n        check=True,\n        universal_newlines=True)\n    (gsupath / 'install.flag').write_text('This flag file is dropped by clone.py')\n\n    # gn requires full history to be able to generate last_commit_position.h\n    get_logger().info('Cloning gn')\n    gn_commit = re.search(r\"gn_version': 'git_revision:([^']+)',\",\n                          Path(args.output / 'DEPS').read_text(encoding=ENCODING)).group(1)\n    if not gn_commit:\n        get_logger().error('Unable to obtain commit for gn checkout')\n        sys.exit(1)\n    if gnpath.exists():\n        run(['git', 'fetch'], cwd=gnpath, check=True)\n    else:\n        run(['git', 'clone', \"https://gn.googlesource.com/gn\", str(gnpath)], check=True)\n    run(['git', 'reset', '--hard', gn_commit], cwd=gnpath, check=True)\n    run(['git', 'clean', '-ffdx'], cwd=gnpath, check=True)\n\n    get_logger().info('Running gsync')\n    if args.custom_config:\n        copy(args.custom_config, ucstaging / '.gclient').replace('UC_OUT', str(args.output))\n    else:\n        (ucstaging / '.gclient').write_text(GC_CONFIG.replace('UC_OUT', str(args.output)))\n    gcpath = dtpath / 'gclient'\n    if iswin:\n        gcpath = gcpath.with_suffix('.bat')\n    # -f, -D, and -R forces a hard reset on changes and deletes deps that have been removed\n    run([\n        str(gcpath), 'sync', '-f', '-D', '-R', '--no-history', '--nohooks',\n        f'--sysroot={args.sysroot}'\n    ],\n        check=True)\n\n    # Follow tarball procedure:\n    # https://source.chromium.org/chromium/chromium/tools/build/+/main:recipes/recipes/publish_tarball.py\n    get_logger().info('Downloading pgo profiles')\n    run([\n        sys.executable,\n        str(args.output / 'tools' / 'update_pgo_profiles.py'), '--target=' + args.pgo, 'update',\n        '--gs-url-base=chromium-optimization-profiles/pgo_profiles'\n    ],\n        check=True)\n    # https://chromium-review.googlesource.com/c/chromium/tools/build/+/4380399\n    run([\n        sys.executable,\n        str(args.output / 'v8' / 'tools' / 'builtins-pgo' / 'download_profiles.py'), 'download',\n        '--depot-tools',\n        str(dtpath)\n    ],\n        check=True)\n\n    get_logger().info('Generating: DAWN_VERSION')\n    run([\n        sys.executable,\n        str(args.output / 'build' / 'util' / 'lastchange.py'), '-m', 'DAWN_COMMIT_HASH', '-s',\n        str(args.output / 'third_party' / 'dawn'), '--revision',\n        str(args.output / 'gpu' / 'webgpu' / 'DAWN_VERSION'), '--header',\n        str(args.output / 'gpu' / 'webgpu' / 'dawn_commit_hash.h')\n    ],\n        check=True)\n\n    get_logger().info('Generating: LASTCHANGE')\n    run([\n        sys.executable,\n        str(args.output / 'build' / 'util' / 'lastchange.py'), '-o',\n        str(args.output / 'build' / 'util' / 'LASTCHANGE')\n    ],\n        check=True)\n\n    get_logger().info('Generating: gpu_lists_version.h')\n    run([\n        sys.executable,\n        str(args.output / 'build' / 'util' / 'lastchange.py'), '-m', 'GPU_LISTS_VERSION',\n        '--revision-id-only', '--header',\n        str(args.output / 'gpu' / 'config' / 'gpu_lists_version.h')\n    ],\n        check=True)\n\n    get_logger().info('Generating: skia_commit_hash.h')\n    run([\n        sys.executable,\n        str(args.output / 'build' / 'util' / 'lastchange.py'), '-m', 'SKIA_COMMIT_HASH', '-s',\n        str(args.output / 'third_party' / 'skia'), '--header',\n        str(args.output / 'skia' / 'ext' / 'skia_commit_hash.h')\n    ],\n        check=True)\n\n    get_logger().info('Generating: last_commit_position.h')\n    run([sys.executable, str(gnpath / 'build' / 'gen.py')], check=True)\n    for item in gnpath.iterdir():\n        if not item.is_dir():\n            copy(item, args.output / 'tools' / 'gn')\n        elif item.name not in ('.git', 'out'):\n            copytree(item, args.output / 'tools' / 'gn' / item.name)\n    move(str(gnpath / 'out' / 'last_commit_position.h'),\n         str(args.output / 'tools' / 'gn' / 'bootstrap'))\n\n    get_logger().info('Removing uneeded files')\n    for path in sorted(args.output.rglob('*'), key=lambda l: len(str(l)), reverse=True):\n        if not path.is_symlink() and '.git' not in path.parts:\n            if path.is_file() and (('out' in path.parts and 'node_modules' not in path.parts)\n                                   or path.name.startswith('ChangeLog')):\n                try:\n                    path.unlink()\n                except PermissionError:\n                    path.chmod(S_IWRITE)\n                    path.unlink()\n            elif path.is_dir() and not any(path.iterdir()):\n                try:\n                    path.rmdir()\n                except PermissionError:\n                    path.chmod(S_IWRITE)\n                    path.rmdir()\n\n    get_logger().info('Source cloning complete')\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = ArgumentParser(description=__doc__)\n    parser.add_argument('-o',\n                        '--output',\n                        type=Path,\n                        metavar='DIRECTORY',\n                        default='chromium',\n                        help='Output directory for the cloned sources. Default: %(default)s')\n    parser.add_argument('-c',\n                        '--custom-config',\n                        type=Path,\n                        metavar='FILE',\n                        help='Supply a replacement for the default gclient config.')\n    parser.add_argument('-p',\n                        '--pgo',\n                        default='linux',\n                        choices=('linux', 'mac', 'mac-arm', 'win32', 'win64', 'win-arm64'),\n                        help='Specifiy which pgo profile to download.  Default: %(default)s')\n    parser.add_argument('-s',\n                        '--sysroot',\n                        choices=('amd64', 'arm64', 'armhf', 'i386', 'mips64el', 'mipsel'),\n                        help='Download a linux sysroot for the given architecture')\n    add_common_params(parser)\n    args = parser.parse_args()\n    clone(args)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/depot_tools.patch",
    "content": "# Changes to gclient that:\n#   use system python on windows\n#   move dotfiles into the staging directory\n#   skip cipd binary downloads\n#   skip gcs downloads unless its an allowed sysroot\n#   replace 'src' in checkout paths with the output directory\n#   add flag to specify an allowed sysroot\n#   ensure shallow fetches\n#   allow using newer httplib2 with pysocks\n#   utilize a newer version of gsutil to support later versions of python\n--- a/gclient.bat\n+++ b/gclient.bat\n@@ -20,4 +20,4 @@ IF %ERRORLEVEL% NEQ 0 (\n set PATH=%PATH%;%~dp0\n \n :: Defer control.\n-call vpython3 \"%~dp0gclient.py\" %*\n+call python3 \"%~dp0gclient.py\" %*\n--- a/gclient.py\n+++ b/gclient.py\n@@ -126,8 +126,8 @@ DEPOT_TOOLS_DIR = os.path.dirname(os.pat\n # one, e.g. if a spec explicitly says `cache_dir = None`.)\n UNSET_CACHE_DIR = object()\n \n-PREVIOUS_CUSTOM_VARS_FILE = '.gclient_previous_custom_vars'\n-PREVIOUS_SYNC_COMMITS_FILE = '.gclient_previous_sync_commits'\n+PREVIOUS_CUSTOM_VARS_FILE = r'UC_STAGING'+os.sep+'.gclient_previous_custom_vars'\n+PREVIOUS_SYNC_COMMITS_FILE = r'UC_STAGING'+os.sep+'.gclient_previous_sync_commits'\n \n PREVIOUS_SYNC_COMMITS = 'GCLIENT_PREVIOUS_SYNC_COMMITS'\n \n@@ -424,6 +424,7 @@ class Dependency(gclient_utils.WorkItem,\n                  protocol='https',\n                  git_dependencies_state=gclient_eval.DEPS,\n                  print_outbuf=False):\n+        if name and name[0:3] == \"src\": name = r\"UC_OUT\"+name[3:]\n         gclient_utils.WorkItem.__init__(self, name)\n         DependencySettings.__init__(self, parent, url, managed, custom_deps,\n                                     custom_vars, custom_hooks, deps_file,\n@@ -769,6 +770,7 @@ class Dependency(gclient_utils.WorkItem,\n \n             condition = dep_value.get('condition')\n             dep_type = dep_value.get('dep_type')\n+            if dep_type == 'cipd': continue\n \n             if not self._get_option('process_all_deps', False):\n                 should_process = should_process and _should_process(condition)\n@@ -820,6 +822,12 @@ class Dependency(gclient_utils.WorkItem,\n                     should_process_object = should_process and _should_process(\n                         merged_condition)\n \n+                    if name != \"src/third_party/node/node_modules\" and \\\n+                    (not name.startswith(\"src/build/linux/\") or \\\n+                    not f\"{self._get_option('sysroot', 'None')}-sysroot\" in name):\n+                        continue\n+                    should_process_object = True\n+                    merged_condition = 'True'\n                     gcs_deps.append(\n                         GcsDependency(parent=self,\n                                       name=name,\n@@ -930,6 +938,8 @@ class Dependency(gclient_utils.WorkItem,\n \n         self._gn_args_from = local_scope.get('gclient_gn_args_from')\n         self._gn_args_file = local_scope.get('gclient_gn_args_file')\n+        if self._gn_args_file and self._gn_args_file[0:3] == \"src\":\n+            self._gn_args_file = r\"UC_OUT\"+self._gn_args_file[3:]\n         self._gn_args = local_scope.get('gclient_gn_args', [])\n         # It doesn't make sense to set all of these, since setting gn_args_from\n         # to another DEPS will make gclient ignore any other local gn_args*\n@@ -3996,6 +4006,7 @@ def CMDsync(parser, args):\n                       default=[],\n                       help='Specify to skip processing of a certain type of '\n                       'dep.')\n+    parser.add_option('--sysroot')\n     (options, args) = parser.parse_args(args)\n     client = GClient.LoadCurrentConfig(options)\n \n--- a/gclient_scm.py\n+++ b/gclient_scm.py\n@@ -979,8 +979,7 @@ class GitWrapper(SCMWrapper):\n         self._SetFetchConfig(options)\n \n         # Fetch upstream if we don't already have |revision|.\n-        if not scm.GIT.IsValidRevision(\n-                self.checkout_path, revision, sha_only=True):\n+        if False:\n             self._Fetch(options, prune=options.force)\n \n             if not scm.GIT.IsValidRevision(\n@@ -996,7 +995,7 @@ class GitWrapper(SCMWrapper):\n \n         # This is a big hammer, debatable if it should even be here...\n         if options.force or options.reset:\n-            target = 'HEAD'\n+            target = 'FETCH_HEAD'\n             if options.upstream and upstream_branch:\n                 target = upstream_branch\n             self._Scrub(target, options)\n@@ -1011,7 +1010,6 @@ class GitWrapper(SCMWrapper):\n             # to the checkout step.\n             if not (options.force or options.reset):\n                 self._CheckClean(revision)\n-            self._CheckDetachedHead(revision, options)\n \n             if not current_revision:\n                 current_revision = self._Capture(\n@@ -1708,8 +1706,7 @@ class GitWrapper(SCMWrapper):\n             fetch_cmd.append('--no-tags')\n         elif quiet:\n             fetch_cmd.append('--quiet')\n-        if depth:\n-            fetch_cmd.append('--depth=' + str(depth))\n+        fetch_cmd.append('--depth=1')\n         self._Run(fetch_cmd, options, show_header=options.verbose, retry=True)\n \n     def _SetFetchConfig(self, options):\n--- a/gerrit_util.py\n+++ b/gerrit_util.py\n@@ -36,7 +36,10 @@ from typing import Tuple, TypedDict, cas\n from typing import Generator\n \n import httplib2\n-import httplib2.socks\n+try:\n+    import httplib2.socks\n+except ModuleNotFoundError:\n+    import socks\n \n import auth\n import gclient_utils\n--- a/gsutil.py\n+++ b/gsutil.py\n@@ -26,7 +26,7 @@ DEFAULT_BIN_DIR = os.path.join(THIS_DIR,\n \n IS_WINDOWS = os.name == 'nt'\n \n-VERSION = '5.35'\n+VERSION = 'GSUVER'\n \n # Google OAuth Context required by gsutil.\n LUCI_AUTH_SCOPES = [\n"
  },
  {
    "path": "utils/domain_substitution.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nSubstitute domain names in the source tree with blockable strings.\n\"\"\"\n\nfrom pathlib import Path\nimport argparse\nimport collections\nimport contextlib\nimport io\nimport os\nimport stat\nimport re\nimport tarfile\nimport tempfile\nimport zlib\n\nfrom _extraction import extract_tar_file\nfrom _common import ENCODING, get_logger, add_common_params\n\n# Encodings to try on source tree files\nTREE_ENCODINGS = ('UTF-8', 'ISO-8859-1')\n\n# Constants for domain substitution cache\n_INDEX_LIST = 'cache_index.list'\n_INDEX_HASH_DELIMITER = '|'\n_ORIG_DIR = 'orig'\n\n# Constants for timestamp manipulation\n# Delta between all file timestamps in nanoseconds\n_TIMESTAMP_DELTA = 1 * 10**9\n\n\nclass DomainRegexList:\n    \"\"\"Representation of a domain_regex.list file\"\"\"\n    _regex_pair_tuple = collections.namedtuple('DomainRegexPair', ('pattern', 'replacement'))\n\n    # Constants for format:\n    _PATTERN_REPLACE_DELIM = '#'\n\n    def __init__(self, path):\n        self._data = tuple(filter(len, path.read_text().splitlines()))\n\n        # Cache of compiled regex pairs\n        self._compiled_regex = None\n\n    def _compile_regex(self, line):\n        \"\"\"Generates a regex pair tuple for the given line\"\"\"\n        pattern, replacement = line.split(self._PATTERN_REPLACE_DELIM)\n        return self._regex_pair_tuple(re.compile(pattern), replacement)\n\n    @property\n    def regex_pairs(self):\n        \"\"\"\n        Returns a tuple of compiled regex pairs\n        \"\"\"\n        if not self._compiled_regex:\n            self._compiled_regex = tuple(map(self._compile_regex, self._data))\n        return self._compiled_regex\n\n    @property\n    def search_regex(self):\n        \"\"\"\n        Returns a single expression to search for domains\n        \"\"\"\n        return re.compile('|'.join(\n            map(lambda x: x.split(self._PATTERN_REPLACE_DELIM, 1)[0], self._data)))\n\n\n# Private Methods\n\n\ndef _substitute_path(path, regex_iter):\n    \"\"\"\n    Perform domain substitution on path and add it to the domain substitution cache.\n\n    path is a pathlib.Path to the file to be domain substituted.\n    regex_iter is an iterable of regular expression namedtuple like from\n        config.DomainRegexList.regex_pairs()\n\n    Returns a tuple of the CRC32 hash of the substituted raw content and the\n        original raw content; None for both entries if no substitutions were made.\n\n    Raises FileNotFoundError if path does not exist.\n    Raises UnicodeDecodeError if path's contents cannot be decoded.\n    \"\"\"\n    if not os.access(path, os.W_OK):\n        # If the patch cannot be written to, it cannot be opened for updating\n        print(str(path) + \" cannot be opened for writing! Adding write permission...\")\n        path.chmod(path.stat().st_mode | stat.S_IWUSR)\n    with path.open('r+b') as input_file:\n        original_content = input_file.read()\n        if not original_content:\n            return (None, None)\n        content = None\n        encoding = None\n        for encoding in TREE_ENCODINGS:\n            try:\n                content = original_content.decode(encoding)\n                break\n            except UnicodeDecodeError:\n                continue\n        if not content:\n            raise UnicodeDecodeError(f'Unable to decode with any encoding: {path}')\n        file_subs = 0\n        for regex_pair in regex_iter:\n            content, sub_count = regex_pair.pattern.subn(regex_pair.replacement, content)\n            file_subs += sub_count\n        if file_subs > 0:\n            substituted_content = content.encode(encoding)\n            input_file.seek(0)\n            input_file.write(content.encode(encoding))\n            input_file.truncate()\n            return (zlib.crc32(substituted_content), original_content)\n        return (None, None)\n\n\ndef _validate_file_index(index_file, resolved_tree, cache_index_files):\n    \"\"\"\n    Validation of file index and hashes against the source tree.\n        Updates cache_index_files\n\n    Returns True if the file index is valid; False otherwise\n    \"\"\"\n    all_hashes_valid = True\n    crc32_regex = re.compile(r'^[a-zA-Z0-9]{8}$')\n    for entry in index_file.read().decode(ENCODING).splitlines():\n        try:\n            relative_path, file_hash = entry.split(_INDEX_HASH_DELIMITER)\n        except ValueError as exc:\n            get_logger().error('Could not split entry \"%s\": %s', entry, exc)\n            continue\n        if not relative_path or not file_hash:\n            get_logger().error('Entry %s of domain substitution cache file index is not valid',\n                               _INDEX_HASH_DELIMITER.join((relative_path, file_hash)))\n            all_hashes_valid = False\n            continue\n        if not crc32_regex.match(file_hash):\n            get_logger().error('File index hash for %s does not appear to be a CRC32 hash',\n                               relative_path)\n            all_hashes_valid = False\n            continue\n        if zlib.crc32((resolved_tree / relative_path).read_bytes()) != int(file_hash, 16):\n            get_logger().error('Hashes do not match for: %s', relative_path)\n            all_hashes_valid = False\n            continue\n        if relative_path in cache_index_files:\n            get_logger().error('File %s shows up at least twice in the file index', relative_path)\n            all_hashes_valid = False\n            continue\n        cache_index_files.add(relative_path)\n    return all_hashes_valid\n\n\n@contextlib.contextmanager\ndef _update_timestamp(path: os.PathLike, set_new: bool) -> None:\n    \"\"\"\n    Context manager to set the timestamp of the path to plus or\n    minus a fixed delta, regardless of modifications within the context.\n\n    if set_new is True, the delta is added. Otherwise, the delta is subtracted.\n    \"\"\"\n    stats = os.stat(path)\n    if set_new:\n        new_timestamp = (stats.st_atime_ns + _TIMESTAMP_DELTA, stats.st_mtime_ns + _TIMESTAMP_DELTA)\n    else:\n        new_timestamp = (stats.st_atime_ns - _TIMESTAMP_DELTA, stats.st_mtime_ns - _TIMESTAMP_DELTA)\n    try:\n        yield\n    finally:\n        os.utime(path, ns=new_timestamp)\n\n\n# Public Methods\n\n\ndef apply_substitution(regex_path, files_path, source_tree, domainsub_cache):\n    \"\"\"\n    Substitute domains in source_tree with files and substitutions,\n        and save the pre-domain substitution archive to presubdom_archive.\n\n    regex_path is a pathlib.Path to domain_regex.list\n    files_path is a pathlib.Path to domain_substitution.list\n    source_tree is a pathlib.Path to the source tree.\n    domainsub_cache is a pathlib.Path to the domain substitution cache.\n\n    Raises NotADirectoryError if the patches directory is not a directory or does not exist\n    Raises FileNotFoundError if the source tree or required directory does not exist.\n    Raises FileExistsError if the domain substitution cache already exists.\n    Raises ValueError if an entry in the domain substitution list contains the file index\n        hash delimiter.\n    \"\"\"\n    if not source_tree.exists():\n        raise FileNotFoundError(source_tree)\n    if not regex_path.exists():\n        raise FileNotFoundError(regex_path)\n    if not files_path.exists():\n        raise FileNotFoundError(files_path)\n    if domainsub_cache and domainsub_cache.exists():\n        raise FileExistsError(domainsub_cache)\n    resolved_tree = source_tree.resolve()\n    regex_pairs = DomainRegexList(regex_path).regex_pairs\n    fileindex_content = io.BytesIO()\n    with tarfile.open(str(domainsub_cache), f'w:{domainsub_cache.suffix[1:]}',\n                      compresslevel=1) if domainsub_cache else open(\n                          os.devnull, 'w', encoding=ENCODING) as cache_tar:\n        for relative_path in filter(len, files_path.read_text().splitlines()):\n            if _INDEX_HASH_DELIMITER in relative_path:\n                if domainsub_cache:\n                    # Cache tar will be incomplete; remove it for convenience\n                    cache_tar.close()\n                    domainsub_cache.unlink()\n                raise ValueError(f'Path \"{relative_path}\" contains '\n                                 f'the file index hash delimiter \"{_INDEX_HASH_DELIMITER}\"')\n            path = resolved_tree / relative_path\n            if not path.exists():\n                get_logger().warning('Skipping non-existant path: %s', path)\n                continue\n            if path.is_symlink():\n                get_logger().warning('Skipping path that has become a symlink: %s', path)\n                continue\n            with _update_timestamp(path, set_new=True):\n                crc32_hash, orig_content = _substitute_path(path, regex_pairs)\n            if crc32_hash is None:\n                get_logger().info('Path has no substitutions: %s', relative_path)\n                continue\n            if domainsub_cache:\n                fileindex_content.write(\n                    f'{relative_path}{_INDEX_HASH_DELIMITER}{crc32_hash:08x}\\n'.encode(ENCODING))\n                orig_tarinfo = tarfile.TarInfo(str(Path(_ORIG_DIR) / relative_path))\n                orig_tarinfo.size = len(orig_content)\n                with io.BytesIO(orig_content) as orig_file:\n                    cache_tar.addfile(orig_tarinfo, orig_file)\n        if domainsub_cache:\n            fileindex_tarinfo = tarfile.TarInfo(_INDEX_LIST)\n            fileindex_tarinfo.size = fileindex_content.tell()\n            fileindex_content.seek(0)\n            cache_tar.addfile(fileindex_tarinfo, fileindex_content)\n\n\ndef revert_substitution(domainsub_cache, source_tree):\n    \"\"\"\n    Revert domain substitution on source_tree using the pre-domain\n        substitution archive presubdom_archive.\n    It first checks if the hashes of the substituted files match the hashes\n        computed during the creation of the domain substitution cache, raising\n        KeyError if there are any mismatches. Then, it proceeds to\n        reverting files in the source_tree.\n    domainsub_cache is removed only if all the files from the domain substitution cache\n        were relocated to the source tree.\n\n    domainsub_cache is a pathlib.Path to the domain substitution cache.\n    source_tree is a pathlib.Path to the source tree.\n\n    Raises KeyError if:\n        * There is a hash mismatch while validating the cache\n        * The cache's file index is corrupt or missing\n        * The cache is corrupt or is not consistent with the file index\n    Raises FileNotFoundError if the source tree or domain substitution cache do not exist.\n    \"\"\"\n    # This implementation trades disk space/wear for performance (unless a ramdisk is used\n    #   for the source tree)\n    # Assumptions made for this process:\n    # * The correct tar file was provided (so no huge amount of space is wasted)\n    # * The tar file is well-behaved (e.g. no files extracted outside of destination path)\n    # * Cache file index and cache contents are already consistent (i.e. no files exclusive to\n    #   one or the other)\n    if not domainsub_cache:\n        get_logger().error('Cache file must be specified.')\n    if not domainsub_cache.exists():\n        raise FileNotFoundError(domainsub_cache)\n    if not source_tree.exists():\n        raise FileNotFoundError(source_tree)\n    resolved_tree = source_tree.resolve()\n\n    cache_index_files = set() # All files in the file index\n\n    with tempfile.TemporaryDirectory(prefix='domsubcache_files',\n                                     dir=str(resolved_tree)) as tmp_extract_name:\n        extract_path = Path(tmp_extract_name)\n        get_logger().debug('Extracting domain substitution cache...')\n        extract_tar_file(domainsub_cache, extract_path, None)\n\n        # Validate source tree file hashes match\n        get_logger().debug('Validating substituted files in source tree...')\n        with (extract_path / _INDEX_LIST).open('rb') as index_file: #pylint: disable=no-member\n            if not _validate_file_index(index_file, resolved_tree, cache_index_files):\n                raise KeyError('Domain substitution cache file index is corrupt or hashes mismatch '\n                               'the source tree.')\n\n        # Move original files over substituted ones\n        get_logger().debug('Moving original files over substituted ones...')\n        for relative_path in cache_index_files:\n            with _update_timestamp(resolved_tree / relative_path, set_new=False):\n                (extract_path / _ORIG_DIR / relative_path).replace(resolved_tree / relative_path)\n\n        # Quick check for unused files in cache\n        orig_has_unused = False\n        for orig_path in (extract_path / _ORIG_DIR).rglob('*'): #pylint: disable=no-member\n            if orig_path.is_file():\n                get_logger().warning('Unused file from cache: %s', orig_path)\n                orig_has_unused = True\n\n    if orig_has_unused:\n        get_logger().warning('Cache contains unused files. Not removing.')\n    else:\n        domainsub_cache.unlink()\n\n\ndef _callback(args):\n    \"\"\"CLI Callback\"\"\"\n    if args.reverting:\n        revert_substitution(args.cache, args.directory)\n    else:\n        apply_substitution(args.regex, args.files, args.directory, args.cache)\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser()\n    add_common_params(parser)\n    parser.set_defaults(callback=_callback)\n    subparsers = parser.add_subparsers(title='', dest='packaging')\n\n    # apply\n    apply_parser = subparsers.add_parser(\n        'apply',\n        help='Apply domain substitution',\n        description='Applies domain substitution and creates the domain substitution cache.')\n    apply_parser.add_argument('-r',\n                              '--regex',\n                              type=Path,\n                              required=True,\n                              help='Path to domain_regex.list')\n    apply_parser.add_argument('-f',\n                              '--files',\n                              type=Path,\n                              required=True,\n                              help='Path to domain_substitution.list')\n    apply_parser.add_argument(\n        '-c',\n        '--cache',\n        type=Path,\n        help='The path to the domain substitution cache. The path must not already exist.')\n    apply_parser.add_argument('directory',\n                              type=Path,\n                              help='The directory to apply domain substitution')\n    apply_parser.set_defaults(reverting=False)\n\n    # revert\n    revert_parser = subparsers.add_parser(\n        'revert',\n        help='Revert domain substitution',\n        description='Reverts domain substitution based only on the domain substitution cache.')\n    revert_parser.add_argument('directory',\n                               type=Path,\n                               help='The directory to reverse domain substitution')\n    revert_parser.add_argument('-c',\n                               '--cache',\n                               type=Path,\n                               required=True,\n                               help=('The path to the domain substitution cache. '\n                                     'The path must exist and will be removed if successful.'))\n    revert_parser.set_defaults(reverting=True)\n\n    args = parser.parse_args()\n    args.callback(args)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/downloads.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nModule for the downloading, checking, and unpacking of necessary files into the source tree.\n\"\"\"\n\nimport argparse\nimport configparser\nimport enum\nimport hashlib\nimport shutil\nimport ssl\nimport subprocess\nimport sys\nimport urllib.request\nfrom pathlib import Path\n\nfrom _common import ENCODING, USE_REGISTRY, ExtractorEnum, PlatformEnum, \\\n    get_logger, get_chromium_version, get_running_platform, add_common_params\nfrom _extraction import extract_tar_file, extract_with_7z, extract_with_winrar\n\nsys.path.insert(0, str(Path(__file__).parent / 'third_party'))\nimport schema #pylint: disable=wrong-import-position, wrong-import-order\n\nsys.path.pop(0)\n\n# Constants\n\n\nclass HashesURLEnum(str, enum.Enum):\n    \"\"\"Enum for supported hash URL schemes\"\"\"\n    CHROMIUM = 'chromium'\n\n\nclass HashMismatchError(BaseException):\n    \"\"\"Exception for computed hashes not matching expected hashes\"\"\"\n\n\nclass DownloadInfo: #pylint: disable=too-few-public-methods\n    \"\"\"Representation of an downloads.ini file for downloading files\"\"\"\n\n    _hashes = ('md5', 'sha1', 'sha256', 'sha512')\n    hash_url_delimiter = '|'\n    _nonempty_keys = ('url', 'download_filename')\n    _optional_keys = (\n        'version',\n        'strip_leading_dirs',\n    )\n    _passthrough_properties = (*_nonempty_keys, *_optional_keys, 'extractor', 'output_path')\n    _ini_vars = {\n        '_chromium_version': get_chromium_version(),\n    }\n\n    @staticmethod\n    def _is_hash_url(value):\n        return value.count(DownloadInfo.hash_url_delimiter) == 2 and value.split(\n            DownloadInfo.hash_url_delimiter)[0] in iter(HashesURLEnum)\n\n    _schema = schema.Schema({\n        schema.Optional(schema.And(str, len)): {\n            **{x: schema.And(str, len)\n               for x in _nonempty_keys},\n            'output_path': (lambda x: str(Path(x).relative_to(''))),\n            **{schema.Optional(x): schema.And(str, len)\n               for x in _optional_keys},\n            schema.Optional('extractor'): schema.Or(ExtractorEnum.TAR, ExtractorEnum.SEVENZIP,\n                                                    ExtractorEnum.WINRAR),\n            schema.Optional(schema.Or(*_hashes)): schema.And(str, len),\n            schema.Optional('hash_url'): lambda x: DownloadInfo._is_hash_url(x), #pylint: disable=unnecessary-lambda\n        }\n    })\n\n    class _DownloadsProperties: #pylint: disable=too-few-public-methods\n\n        def __init__(self, section_dict, passthrough_properties, hashes):\n            self._section_dict = section_dict\n            self._passthrough_properties = passthrough_properties\n            self._hashes = hashes\n\n        def has_hash_url(self):\n            \"\"\"\n            Returns a boolean indicating whether the current\n            download has a hash URL\"\"\"\n            return 'hash_url' in self._section_dict\n\n        def __getattr__(self, name):\n            if name in self._passthrough_properties:\n                return self._section_dict.get(name, fallback=None)\n            if name == 'hashes':\n                hashes_dict = {}\n                for hash_name in (*self._hashes, 'hash_url'):\n                    value = self._section_dict.get(hash_name, fallback=None)\n                    if value:\n                        if hash_name == 'hash_url':\n                            value = value.split(DownloadInfo.hash_url_delimiter)\n                        hashes_dict[hash_name] = value\n                return hashes_dict\n            raise AttributeError(f'\"{type(self).__name__}\" has no attribute \"{name}\"')\n\n    def _parse_data(self, path):\n        \"\"\"\n        Parses an INI file located at path\n\n        Raises schema.SchemaError if validation fails\n        \"\"\"\n\n        def _section_generator(data):\n            for section in data:\n                if section == configparser.DEFAULTSECT:\n                    continue\n                yield section, dict(\n                    filter(lambda x: x[0] not in self._ini_vars, data.items(section)))\n\n        new_data = configparser.ConfigParser(defaults=self._ini_vars)\n        with path.open(encoding=ENCODING) as ini_file:\n            new_data.read_file(ini_file, source=str(path))\n        try:\n            self._schema.validate(dict(_section_generator(new_data)))\n        except schema.SchemaError as exc:\n            get_logger().error('downloads.ini failed schema validation (located in %s)', path)\n            raise exc\n        return new_data\n\n    def __init__(self, ini_paths):\n        \"\"\"Reads an iterable of pathlib.Path to download.ini files\"\"\"\n        self._data = configparser.ConfigParser()\n        for path in ini_paths:\n            self._data.read_dict(self._parse_data(path))\n\n    def __getitem__(self, section):\n        \"\"\"\n        Returns an object with keys as attributes and\n        values already pre-processed strings\n        \"\"\"\n        return self._DownloadsProperties(self._data[section], self._passthrough_properties,\n                                         self._hashes)\n\n    def __contains__(self, item):\n        \"\"\"\n        Returns True if item is a name of a section; False otherwise.\n        \"\"\"\n        return self._data.has_section(item)\n\n    def __iter__(self):\n        \"\"\"Returns an iterator over the section names\"\"\"\n        return iter(self._data.sections())\n\n    def properties_iter(self):\n        \"\"\"Iterator for the download properties sorted by output path\"\"\"\n        return sorted(map(lambda x: (x, self[x]), self),\n                      key=(lambda x: str(Path(x[1].output_path))))\n\n    def check_sections_exist(self, section_names):\n        \"\"\"...\"\"\"\n        if not section_names:\n            return\n        for name in section_names:\n            if name not in self:\n                raise KeyError(f'\"{type(self).__name__}\" has no section \"{name}\"')\n\n\nclass _UrlRetrieveReportHook: #pylint: disable=too-few-public-methods\n    \"\"\"Hook for urllib.request.urlretrieve to log progress information to console\"\"\"\n\n    def __init__(self):\n        self._max_len_printed = 0\n        self._last_percentage = None\n\n    def __call__(self, block_count, block_size, total_size):\n        # Use total_blocks to handle case total_size < block_size\n        # total_blocks is ceiling of total_size / block_size\n        # Ceiling division from: https://stackoverflow.com/a/17511341\n        total_blocks = -(-total_size // block_size)\n        if total_blocks > 0:\n            # Do not needlessly update the console. Since the console is\n            # updated synchronously, we don't want updating the console to\n            # bottleneck downloading. Thus, only refresh the output when the\n            # displayed value should change.\n            percentage = round(block_count / total_blocks, ndigits=3)\n            if percentage == self._last_percentage:\n                return\n            self._last_percentage = percentage\n            print('\\r' + ' ' * self._max_len_printed, end='')\n            status_line = f'Progress: {percentage:.1%} of {total_size:,d} B'\n        else:\n            downloaded_estimate = block_count * block_size\n            status_line = f'Progress: {downloaded_estimate:,d} B of unknown size'\n        self._max_len_printed = len(status_line)\n        print('\\r' + status_line, end='')\n\n\ndef _download_via_urllib(url, file_path, show_progress, disable_ssl_verification):\n    reporthook = None\n    if show_progress:\n        reporthook = _UrlRetrieveReportHook()\n    if disable_ssl_verification:\n        # TODO: Remove this or properly implement disabling SSL certificate verification\n        orig_https_context = ssl._create_default_https_context #pylint: disable=protected-access\n        ssl._create_default_https_context = ssl._create_unverified_context #pylint: disable=protected-access\n    try:\n        urllib.request.urlretrieve(url, str(file_path), reporthook=reporthook)\n    finally:\n        # Try to reduce damage of hack by reverting original HTTPS context ASAP\n        if disable_ssl_verification:\n            ssl._create_default_https_context = orig_https_context #pylint: disable=protected-access\n    if show_progress:\n        print()\n\n\ndef _download_if_needed(file_path, url, show_progress, disable_ssl_verification):\n    \"\"\"\n    Downloads a file from url to the specified path file_path if necessary.\n\n    If show_progress is True, download progress is printed to the console.\n    \"\"\"\n    if file_path.exists():\n        get_logger().info('%s already exists. Skipping download.', file_path)\n        return\n\n    # File name for partially download file\n    tmp_file_path = file_path.with_name(file_path.name + '.partial')\n\n    if tmp_file_path.exists():\n        get_logger().debug('Resuming downloading URL %s ...', url)\n    else:\n        get_logger().debug('Downloading URL %s ...', url)\n\n    # Perform download\n    if shutil.which('curl'):\n        get_logger().debug('Using curl')\n        try:\n            subprocess.run(['curl', '-fL', '-o', str(tmp_file_path), '-C', '-', url], check=True)\n        except subprocess.CalledProcessError as exc:\n            get_logger().error('curl failed. Re-run the download command to resume downloading.')\n            raise exc\n    else:\n        get_logger().debug('Using urllib')\n        _download_via_urllib(url, tmp_file_path, show_progress, disable_ssl_verification)\n\n    # Download complete; rename file\n    tmp_file_path.rename(file_path)\n\n\ndef _chromium_hashes_generator(hashes_path):\n    with hashes_path.open(encoding=ENCODING) as hashes_file:\n        hash_lines = hashes_file.read().splitlines()\n    for hash_name, hash_hex, _ in map(lambda x: x.lower().split('  '), hash_lines):\n        if hash_name in hashlib.algorithms_available:\n            yield hash_name, hash_hex\n        else:\n            get_logger().warning('Skipping unknown hash algorithm: %s', hash_name)\n\n\ndef _get_hash_pairs(download_properties, cache_dir):\n    \"\"\"Generator of (hash_name, hash_hex) for the given download\"\"\"\n    for entry_type, entry_value in download_properties.hashes.items():\n        if entry_type == 'hash_url':\n            hash_processor, hash_filename, _ = entry_value\n            if hash_processor == 'chromium':\n                yield from _chromium_hashes_generator(cache_dir / hash_filename)\n            else:\n                raise ValueError(f'Unknown hash_url processor: {hash_processor}')\n        else:\n            yield entry_type, entry_value\n\n\ndef retrieve_downloads(download_info,\n                       cache_dir,\n                       components,\n                       show_progress,\n                       disable_ssl_verification=False):\n    \"\"\"\n    Retrieve downloads into the downloads cache.\n\n    download_info is the DowloadInfo of downloads to retrieve.\n    cache_dir is the pathlib.Path to the downloads cache.\n    components is a list of component names to download, if not empty.\n    show_progress is a boolean indicating if download progress is printed to the console.\n    disable_ssl_verification is a boolean indicating if certificate verification\n        should be disabled for downloads using HTTPS.\n\n    Raises FileNotFoundError if the downloads path does not exist.\n    Raises NotADirectoryError if the downloads path is not a directory.\n    \"\"\"\n    if not cache_dir.exists():\n        raise FileNotFoundError(cache_dir)\n    if not cache_dir.is_dir():\n        raise NotADirectoryError(cache_dir)\n    for download_name, download_properties in download_info.properties_iter():\n        if components and not download_name in components:\n            continue\n        get_logger().info('Downloading \"%s\" to \"%s\" ...', download_name,\n                          download_properties.download_filename)\n        download_path = cache_dir / download_properties.download_filename\n        _download_if_needed(download_path, download_properties.url, show_progress,\n                            disable_ssl_verification)\n        if download_properties.has_hash_url():\n            get_logger().info('Downloading hashes for \"%s\"', download_name)\n            _, hash_filename, hash_url = download_properties.hashes['hash_url']\n            _download_if_needed(cache_dir / hash_filename, hash_url, show_progress,\n                                disable_ssl_verification)\n\n\ndef check_downloads(download_info, cache_dir, components, chunk_bytes=262144):\n    \"\"\"\n    Check integrity of the downloads cache.\n\n    download_info is the DownloadInfo of downloads to unpack.\n    cache_dir is the pathlib.Path to the downloads cache.\n    chunk_bytes is the size for each chunk which need to read.\n    components is a list of component names to check, if not empty.\n\n    Raises source_retrieval.HashMismatchError when the computed and expected hashes do not match.\n    \"\"\"\n    logger = get_logger()\n    for download_name, download_properties in download_info.properties_iter():\n        if components and not download_name in components:\n            continue\n        get_logger().info('Verifying hashes for \"%s\" ...', download_name)\n\n        download_path = cache_dir / download_properties.download_filename\n        for hash_name, hash_hex in _get_hash_pairs(download_properties, cache_dir):\n            logger.info('Verifying %s hash...', hash_name)\n            hasher = hashlib.new(hash_name)\n            with download_path.open('rb') as file_obj:\n                # Read file in chunks. Default is 262144 bytes.\n                chunk = file_obj.read(chunk_bytes)\n                while chunk:\n                    hasher.update(chunk)\n                    chunk = file_obj.read(chunk_bytes)\n            if not hasher.hexdigest().lower() == hash_hex.lower():\n                raise HashMismatchError(download_path)\n\n\ndef unpack_downloads(download_info, cache_dir, components, output_dir, extractors=None):\n    \"\"\"\n    Unpack downloads in the downloads cache to output_dir. Assumes all downloads are retrieved.\n\n    download_info is the DownloadInfo of downloads to unpack.\n    cache_dir is the pathlib.Path directory containing the download cache\n    components is a list of component names to unpack, if not empty.\n    output_dir is the pathlib.Path directory to unpack the downloads to.\n    extractors is a dictionary of PlatformEnum to a command or path to the\n        extractor binary. Defaults to 'tar' for tar, and '_use_registry' for 7-Zip and WinRAR.\n\n    May raise undetermined exceptions during archive unpacking.\n    \"\"\"\n    for download_name, download_properties in download_info.properties_iter():\n        if components and not download_name in components:\n            continue\n        download_path = cache_dir / download_properties.download_filename\n        get_logger().info('Unpacking \"%s\" to %s ...', download_name,\n                          download_properties.output_path)\n        extractor_name = download_properties.extractor or ExtractorEnum.TAR\n        if extractor_name == ExtractorEnum.SEVENZIP:\n            extractor_func = extract_with_7z\n        elif extractor_name == ExtractorEnum.WINRAR:\n            extractor_func = extract_with_winrar\n        elif extractor_name == ExtractorEnum.TAR:\n            extractor_func = extract_tar_file\n        else:\n            raise NotImplementedError(extractor_name)\n\n        if download_properties.strip_leading_dirs is None:\n            strip_leading_dirs_path = None\n        else:\n            strip_leading_dirs_path = Path(download_properties.strip_leading_dirs)\n\n        extractor_func(archive_path=download_path,\n                       output_dir=output_dir / Path(download_properties.output_path),\n                       relative_to=strip_leading_dirs_path,\n                       extractors=extractors)\n\n\ndef _add_common_args(parser):\n    parser.add_argument(\n        '-i',\n        '--ini',\n        type=Path,\n        nargs='+',\n        help='The downloads INI to parse for downloads. Can be specified multiple times.')\n    parser.add_argument('-c',\n                        '--cache',\n                        type=Path,\n                        required=True,\n                        help='Path to the directory to cache downloads.')\n\n\ndef _retrieve_callback(args):\n    info = DownloadInfo(args.ini)\n    info.check_sections_exist(args.components)\n    retrieve_downloads(info, args.cache, args.components, args.show_progress,\n                       args.disable_ssl_verification)\n    try:\n        check_downloads(info, args.cache, args.components)\n    except HashMismatchError as exc:\n        get_logger().error('File checksum does not match: %s', exc)\n        sys.exit(1)\n\n\ndef _unpack_callback(args):\n    if args.skip_unused or args.sysroot:\n        get_logger().warning('The --skip-unused and --sysroot flags for downloads.py are'\n                             ' no longer functional and will be removed in the future.')\n    extractors = {\n        ExtractorEnum.SEVENZIP: args.sevenz_path,\n        ExtractorEnum.WINRAR: args.winrar_path,\n        ExtractorEnum.TAR: args.tar_path,\n    }\n    info = DownloadInfo(args.ini)\n    info.check_sections_exist(args.components)\n    unpack_downloads(info, args.cache, args.components, args.output, extractors)\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser(description=__doc__)\n    add_common_params(parser)\n    subparsers = parser.add_subparsers(title='Download actions', dest='action')\n\n    # retrieve\n    retrieve_parser = subparsers.add_parser(\n        'retrieve',\n        help='Retrieve and check download files',\n        description=('Retrieves and checks downloads without unpacking. '\n                     'The downloader will attempt to use CLI command \"curl\". '\n                     'If it is not present, Python\\'s urllib will be used. However, only '\n                     'the CLI-based downloaders can be resumed if the download is aborted.'))\n    _add_common_args(retrieve_parser)\n    retrieve_parser.add_argument('--components',\n                                 nargs='+',\n                                 metavar='COMP',\n                                 help='Retrieve only these components. Default: all')\n    retrieve_parser.add_argument('--hide-progress-bar',\n                                 action='store_false',\n                                 dest='show_progress',\n                                 help='Hide the download progress.')\n    retrieve_parser.add_argument(\n        '--disable-ssl-verification',\n        action='store_true',\n        help='Disables certification verification for downloads using HTTPS.')\n    retrieve_parser.set_defaults(callback=_retrieve_callback)\n\n    def _default_extractor_path(name):\n        return USE_REGISTRY if get_running_platform() == PlatformEnum.WINDOWS else name\n\n    # unpack\n    unpack_parser = subparsers.add_parser(\n        'unpack',\n        help='Unpack download files',\n        description='Verifies hashes of and unpacks download files into the specified directory.')\n    _add_common_args(unpack_parser)\n    unpack_parser.add_argument('--components',\n                               nargs='+',\n                               metavar='COMP',\n                               help='Unpack only these components. Default: all')\n    unpack_parser.add_argument('--tar-path',\n                               default='tar',\n                               help=('(Linux and macOS only) Command or path to the BSD or GNU tar '\n                                     'binary for extraction. Default: %(default)s'))\n    unpack_parser.add_argument(\n        '--7z-path',\n        dest='sevenz_path',\n        default=_default_extractor_path('7z'),\n        help=('Command or path to 7-Zip\\'s \"7z\" binary. If \"_use_registry\" is '\n              'specified, determine the path from the registry. Default: %(default)s'))\n    unpack_parser.add_argument(\n        '--winrar-path',\n        dest='winrar_path',\n        default=USE_REGISTRY,\n        help=('Command or path to WinRAR\\'s \"winrar\" binary. If \"_use_registry\" is '\n              'specified, determine the path from the registry. Default: %(default)s'))\n    unpack_parser.add_argument('output', type=Path, help='The directory to unpack to.')\n    unpack_parser.add_argument('--skip-unused', action='store_true', help='Deprecated')\n    unpack_parser.add_argument('--sysroot', choices=('amd64', 'i386'), help='Deprecated')\n    unpack_parser.set_defaults(callback=_unpack_callback)\n\n    args = parser.parse_args()\n    args.callback(args)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/filescfg.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nOperations with FILES.cfg (for portable packages)\n\"\"\"\n\nimport argparse\nimport datetime\nimport platform\nimport sys\nimport tarfile\nimport zipfile\nfrom pathlib import Path\n\nfrom _common import get_logger, add_common_params\n\n\ndef filescfg_generator(cfg_path, build_outputs, cpu_arch, excluded_files=None):\n    \"\"\"\n    Generator that yields pathlib.Path relative to the build outputs according to FILES.cfg\n\n    cfg_path is a pathlib.Path to the FILES.cfg\n    build_outputs is a pathlib.Path to the build outputs directory.\n    cpu_arch is a platform.architecture() string\n    \"\"\"\n    resolved_build_outputs = build_outputs.resolve()\n    exec_globals = {'__builtins__': None}\n    with cfg_path.open() as cfg_file:\n        exec(cfg_file.read(), exec_globals) # pylint: disable=exec-used\n    for file_spec in exec_globals['FILES']:\n        # Only include files for official builds\n        if 'official' not in file_spec['buildtype']:\n            continue\n        # If a file has an 'arch' field, it must have cpu_arch to be included\n        if 'arch' in file_spec and cpu_arch not in file_spec['arch']:\n            continue\n        # From chrome/tools/build/make_zip.py, 'filename' is actually a glob pattern\n        for file_path in resolved_build_outputs.glob(file_spec['filename']):\n            # Do not package Windows debugging symbols\n            if file_path.suffix.lower() == '.pdb':\n                continue\n            file_path_rel = file_path.relative_to(resolved_build_outputs)\n            if excluded_files and file_path_rel in excluded_files:\n                continue\n            yield file_path_rel\n\n\ndef _get_archive_writer(output_path, timestamp=None):\n    \"\"\"\n    Detects and returns the appropriate archive writer\n\n    output_path is the pathlib.Path of the archive to write.\n    timestamp is a file timestamp to use for all files, if set.\n    \"\"\"\n    if not output_path.suffixes:\n        raise ValueError(f'Output name has no suffix: {output_path.name}')\n    if output_path.suffixes[-1].lower() == '.zip':\n        archive_root = Path(output_path.stem)\n        output_archive = zipfile.ZipFile(str(output_path), 'w', zipfile.ZIP_DEFLATED) # pylint: disable=consider-using-with\n        zip_date_time = None\n        if timestamp:\n            zip_date_time = datetime.datetime.fromtimestamp(timestamp).timetuple()[:6]\n\n        def zip_write(in_path, arc_path):\n            if zip_date_time:\n                info = zipfile.ZipInfo.from_file(in_path, arc_path)\n                info.date_time = zip_date_time\n                with open(in_path, 'rb') as in_file:\n                    output_archive.writestr(info, in_file.read(), zipfile.ZIP_DEFLATED, -1)\n            else:\n                output_archive.write(in_path, arc_path)\n\n        def add_func(in_path, arc_path):\n            \"\"\"Add files to zip archive\"\"\"\n            if in_path.is_dir():\n                for sub_path in in_path.rglob('*'):\n                    zip_write(str(sub_path), str(arc_path / sub_path.relative_to(in_path)))\n            else:\n                zip_write(str(in_path), str(arc_path))\n    elif '.tar' in output_path.name.lower():\n        if len(output_path.suffixes) >= 2 and output_path.suffixes[-2].lower() == '.tar':\n            tar_mode = f'w:{output_path.suffixes[-1][1:]}'\n            archive_root = Path(output_path.with_suffix('').stem)\n        elif output_path.suffixes[-1].lower() == '.tar':\n            tar_mode = 'w'\n            archive_root = Path(output_path.stem)\n        else:\n            raise ValueError(f'Could not detect tar format for output: {output_path.name}')\n        if timestamp:\n\n            class TarInfoFixedTimestamp(tarfile.TarInfo):\n                \"\"\"TarInfo class with predefined constant mtime\"\"\"\n\n                @property\n                def mtime(self):\n                    \"\"\"Return predefined timestamp\"\"\"\n                    return timestamp\n\n                @mtime.setter\n                def mtime(self, value):\n                    \"\"\"Ignore incoming value\"\"\"\n\n            tarinfo_class = TarInfoFixedTimestamp\n        else:\n            tarinfo_class = tarfile.TarInfo\n        output_archive = tarfile.open(str(output_path), tar_mode, tarinfo=tarinfo_class) # pylint: disable=consider-using-with\n\n        def add_func(in_path, arc_path):\n            \"\"\"Add files to tar archive\"\"\"\n            output_archive.add(str(in_path), str(arc_path))\n    else:\n        raise ValueError(f'Unknown archive extension with name: {output_path.name}')\n    return output_archive, add_func, archive_root\n\n\ndef create_archive(file_iter, include_iter, build_outputs, output_path, timestamp=None):\n    \"\"\"\n    Create an archive of the build outputs. Supports zip and compressed tar archives.\n\n    file_iter is an iterable of files to include in the archive.\n    output_path is the pathlib.Path to write the new archive.\n    build_outputs is a pathlib.Path to the build outputs.\n    timestamp is a file timestamp (Unix format) to use for all files, if set.\n    \"\"\"\n    output_archive, add_func, archive_root = _get_archive_writer(output_path, timestamp)\n    with output_archive:\n        for relative_path in file_iter:\n            add_func(build_outputs / relative_path, archive_root / relative_path)\n        for include_path in include_iter:\n            add_func(include_path, archive_root / include_path.name)\n\n\ndef _files_generator_by_args(args):\n    \"\"\"Returns a files_generator() instance from the CLI args\"\"\"\n    # --build-outputs\n    if not args.build_outputs.exists():\n        get_logger().error('Could not find build outputs: %s', args.build_outputs)\n        raise FileNotFoundError(args.build_outputs)\n\n    # --cfg\n    if not args.cfg.exists():\n        get_logger().error('Could not find FILES.cfg at %s', args.cfg)\n        raise FileNotFoundError(args.cfg)\n\n    return filescfg_generator(args.cfg, args.build_outputs, args.cpu_arch)\n\n\ndef _list_callback(args):\n    \"\"\"List files needed to run Chromium.\"\"\"\n    sys.stdout.writelines(f'{x}\\n' for x in _files_generator_by_args(args))\n\n\ndef _archive_callback(args):\n    \"\"\"\n    Create an archive of the build outputs. Supports zip and compressed tar archives.\n    \"\"\"\n    create_archive(filescfg_generator(args.cfg, args.build_outputs, args.cpu_arch), args.include,\n                   args.build_outputs, args.output)\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser()\n    parser.add_argument('-c',\n                        '--cfg',\n                        metavar='PATH',\n                        type=Path,\n                        required=True,\n                        help=('The FILES.cfg to use. They are usually located under a '\n                              'directory in chrome/tools/build/ of the source tree.'))\n    parser.add_argument('--build-outputs',\n                        metavar='PATH',\n                        type=Path,\n                        default='out/Default',\n                        help=('The path to the build outputs directory relative to the '\n                              'source tree. Default: %(default)s'))\n    parser.add_argument('--cpu-arch',\n                        metavar='ARCH',\n                        default=platform.architecture()[0],\n                        choices=('64bit', '32bit'),\n                        help=('Filter build outputs by a target CPU. '\n                              'This is the same as the \"arch\" key in FILES.cfg. '\n                              'Default (from platform.architecture()): %(default)s'))\n    add_common_params(parser)\n\n    subparsers = parser.add_subparsers(title='filescfg actions')\n\n    # list\n    list_parser = subparsers.add_parser('list', help=_list_callback.__doc__)\n    list_parser.set_defaults(callback=_list_callback)\n\n    # archive\n    archive_parser = subparsers.add_parser('archive', help=_archive_callback.__doc__)\n    archive_parser.add_argument(\n        '-o',\n        '--output',\n        type=Path,\n        metavar='PATH',\n        required=True,\n        help=('The output path for the archive. The type of archive is selected'\n              ' by the file extension. Currently supported types: .zip and'\n              ' .tar.{gz,bz2,xz}'))\n    archive_parser.add_argument(\n        '-i',\n        '--include',\n        type=Path,\n        metavar='PATH',\n        action='append',\n        default=[],\n        help=('File or directory to include in the root of the archive. Specify '\n              'multiple times to include multiple different items. '\n              'For zip files, these contents must only be regular files.'))\n    archive_parser.set_defaults(callback=_archive_callback)\n\n    args = parser.parse_args()\n    args.callback(args)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/gsutil.patch",
    "content": "# Changes to gsutil that:\n#   allow usage of python 3.14\n--- a/gslib/commands/cp.py\n+++ b/gslib/commands/cp.py\n@@ -1043,8 +1043,8 @@ class CpCommand(Command):\n       self.has_file_dst = self.has_file_dst or exp_dst_url.IsFileUrl()\n       self.has_cloud_dst = self.has_cloud_dst or exp_dst_url.IsCloudUrl()\n       self.provider_types.add(exp_dst_url.scheme)\n-      self.combined_src_urls = itertools.chain(self.combined_src_urls,\n-                                               src_url_str)\n+      self.combined_src_urls = list(itertools.chain(self.combined_src_urls,\n+                                               src_url_str))\n \n       yield name_expansion_iterator_dst_tuple\n \n--- a/gsutil.py\n+++ b/gsutil.py\n@@ -27,12 +27,12 @@ import warnings\n # TODO: gsutil-beta: Distribute a pylint rc file.\n \n ver = sys.version_info\n-if ver.major != 3 or ver.minor < 9 or ver.minor > 13:\n+if ver.major != 3 or ver.minor < 9 or ver.minor > 14:\n   sys.exit(\n-    \"Error: gsutil requires Python version 3.9-3.13, but a different version is installed.\\n\"\n+    \"Error: gsutil requires Python version 3.9-3.14, but a different version is installed.\\n\"\n     \"You are currently running Python {}.{}\\n\"\n     \"Follow the steps below to resolve this issue:\\n\"\n-    \"\\t1. Switch to Python 3.9-3.13 using your Python version manager or install an appropriate version.\\n\"\n+    \"\\t1. Switch to Python 3.9-3.14 using your Python version manager or install an appropriate version.\\n\"\n     \"\\t2. If you are unsure how to manage Python versions, visit [https://cloud.google.com/storage/docs/gsutil_install#specifications] for detailed instructions.\".format(ver.major, ver.minor)\n   )\n \n"
  },
  {
    "path": "utils/make_domsub_script.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2023 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"\nGenerate standalone script that performs the domain substitution.\n\"\"\"\n\nfrom pathlib import Path\nimport argparse\nimport re\nfrom _common import ENCODING\n\n\ndef make_domain_substitution_script(regex_path, files_path, backup_type, output_path):\n    \"\"\"\n    Generate a standalone shell script (which uses Perl) that performs\n        domain substitution on the appropriate files.\n\n    regex_path is a pathlib.Path to domain_regex.list\n    files_path is a pathlib.Path to domain_substitution.list\n    backup_type is 'quilt', 'tar', or 'none'.\n    output_path is a pathlib.Path to the output file.\n\n    Raises FileNotFoundError if the regex or file lists do not exist.\n    Raises FileExistsError if the output file already exists.\n    \"\"\"\n    if not regex_path.exists():\n        raise FileNotFoundError(regex_path)\n    if not files_path.exists():\n        raise FileNotFoundError(files_path)\n    if output_path.exists():\n        raise FileExistsError(output_path)\n\n    regex_list = tuple(filter(len, regex_path.read_text().splitlines()))\n    files_list = tuple(filter(len, files_path.read_text().splitlines()))\n\n    # Convert the Python-style regexes into a Perl s/// op\n    perl_replace_list = ['s#' + re.sub(r'\\\\g<(\\d+)>', r'${\\1}', x) + '#g' for x in regex_list]\n\n    files_list_str = '\\n'.join(files_list)\n    perl_replace_list_str = '\\n'.join([f'    {x};' for x in perl_replace_list])\n\n    if backup_type == 'quilt':\n        backup_code = \"\"\"patch_name=domain-substitution.VIRTUAL.patch\nmkdir .pc/$patch_name\n\necho \"Backing up files to $patch_name ...\"\n\nprint_file_list \\\\\n| tar cf - --verbatim-files-from --files-from=- \\\\\n| tar xf - -C .pc/$patch_name\n\necho $patch_name >> .pc/applied-patches\"\"\"\n    elif backup_type == 'tar':\n        backup_code = \"\"\"backup=domain-substitution.orig.tar\n\necho \"Backing up files to $backup ...\"\n\nprint_file_list | tar cf $backup --verbatim-files-from --files-from=-\"\"\"\n    else:\n        backup_code = '# No backup of modified files'\n\n    with open(output_path, 'w', encoding=ENCODING) as out:\n        out.write(f\"\"\"#!/bin/sh -e\n#\n# This script performs domain substitution on the Chromium source files.\n#\n# Generated by make_domsub_script.py, part of the ungoogled-chromium project:\n# https://github.com/ungoogled-software/ungoogled-chromium\n#\n\n# Check that we are inside the Chromium source tree\ntest -f build/config/compiler/BUILD.gn\n\n# These filenames may contain spaces and/or other unusual characters\nprint_file_list() {{\n\tcat <<'__END__'\n{files_list_str}\n__END__\n}}\n\n{backup_code}\n\necho \"Applying ungoogled-chromium domain substitution to {len(files_list)} files ...\"\n\nprint_file_list | xargs -d '\\\\n' perl -0777 -C0 -pwi -e '\n{perl_replace_list_str}\n'\n\n# end\n\"\"\")\n\n\ndef _callback(args):\n    \"\"\"CLI Callback\"\"\"\n    make_domain_substitution_script(args.regex, args.files, args.backup, args.output)\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser()\n    parser.set_defaults(callback=_callback)\n\n    parser.add_argument('-r', '--regex', type=Path, required=True, help='Path to domain_regex.list')\n    parser.add_argument('-f',\n                        '--files',\n                        type=Path,\n                        required=True,\n                        help='Path to domain_substitution.list')\n    parser.add_argument('-b',\n                        '--backup',\n                        choices=('quilt', 'tar', 'none'),\n                        default='tar',\n                        help='Backup mechanism to use for modified files')\n    parser.add_argument('-o',\n                        '--output',\n                        type=Path,\n                        required=True,\n                        help='Path to script file to create')\n\n    args = parser.parse_args()\n    args.callback(args)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/patches.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Applies unified diff patches\"\"\"\n\nimport argparse\nimport os\nimport shutil\nimport subprocess\nfrom pathlib import Path\n\nfrom _common import get_logger, parse_series, add_common_params\n\n\ndef _find_patch_from_env():\n    patch_bin_path = None\n    patch_bin_env = os.environ.get('PATCH_BIN')\n    if patch_bin_env:\n        patch_bin_path = Path(patch_bin_env)\n        if patch_bin_path.exists():\n            get_logger().debug('Found PATCH_BIN with path \"%s\"', patch_bin_path)\n        else:\n            patch_which = shutil.which(patch_bin_env)\n            if patch_which:\n                get_logger().debug('Found PATCH_BIN for command with path \"%s\"', patch_which)\n                patch_bin_path = Path(patch_which)\n    else:\n        get_logger().debug('PATCH_BIN env variable is not set')\n    return patch_bin_path\n\n\ndef _find_patch_from_which():\n    patch_which = shutil.which('patch')\n    if not patch_which:\n        get_logger().debug('Did not find \"patch\" in PATH environment variable')\n        return None\n    return Path(patch_which)\n\n\ndef find_and_check_patch(patch_bin_path=None):\n    \"\"\"\n    Find and/or check the patch binary is working. It finds a path to patch in this order:\n\n    1. Use patch_bin_path if it is not None\n    2. See if \"PATCH_BIN\" environment variable is set\n    3. Do \"which patch\" to find GNU patch\n\n    Then it does some sanity checks to see if the patch command is valid.\n\n    Returns the path to the patch binary found.\n    \"\"\"\n    if patch_bin_path is None:\n        patch_bin_path = _find_patch_from_env()\n    if patch_bin_path is None:\n        patch_bin_path = _find_patch_from_which()\n    if not patch_bin_path:\n        raise ValueError('Could not find patch from PATCH_BIN env var or \"which patch\"')\n\n    if not patch_bin_path.exists():\n        raise ValueError(f'Could not find the patch binary: {patch_bin_path}')\n\n    # Ensure patch actually runs\n    cmd = [str(patch_bin_path), '--version']\n    result = subprocess.run(cmd,\n                            stdout=subprocess.PIPE,\n                            stderr=subprocess.PIPE,\n                            check=False,\n                            universal_newlines=True)\n    if result.returncode:\n        get_logger().error('\"%s\" returned non-zero exit code', ' '.join(cmd))\n        get_logger().error('stdout:\\n%s', result.stdout)\n        get_logger().error('stderr:\\n%s', result.stderr)\n        raise RuntimeError(f\"Got non-zero exit code running \\\"{' '.join(cmd)}\\\"\")\n\n    return patch_bin_path\n\n\ndef dry_run_check(patch_path, tree_path, patch_bin_path=None):\n    \"\"\"\n    Run patch --dry-run on a patch\n\n    tree_path is the pathlib.Path of the source tree to patch\n    patch_path is a pathlib.Path to check\n    reverse is whether the patches should be reversed\n    patch_bin_path is the pathlib.Path of the patch binary, or None to find it automatically\n        See find_and_check_patch() for logic to find \"patch\"\n\n    Returns the status code, stdout, and stderr of patch --dry-run\n    \"\"\"\n    cmd = [\n        str(find_and_check_patch(patch_bin_path)), '-p1', '--ignore-whitespace', '-i',\n        str(patch_path), '-d',\n        str(tree_path), '--no-backup-if-mismatch', '--dry-run'\n    ]\n    result = subprocess.run(cmd,\n                            stdout=subprocess.PIPE,\n                            stderr=subprocess.PIPE,\n                            check=False,\n                            universal_newlines=True)\n    return result.returncode, result.stdout, result.stderr\n\n\ndef apply_patches(patch_path_iter, tree_path, reverse=False, patch_bin_path=None):\n    \"\"\"\n    Applies or reverses a list of patches\n\n    tree_path is the pathlib.Path of the source tree to patch\n    patch_path_iter is a list or tuple of pathlib.Path to patch files to apply\n    reverse is whether the patches should be reversed\n    patch_bin_path is the pathlib.Path of the patch binary, or None to find it automatically\n        See find_and_check_patch() for logic to find \"patch\"\n\n    Raises ValueError if the patch binary could not be found.\n    \"\"\"\n    patch_paths = list(patch_path_iter)\n    patch_bin_path = find_and_check_patch(patch_bin_path=patch_bin_path)\n    if reverse:\n        patch_paths.reverse()\n\n    logger = get_logger()\n    for patch_path, patch_num in zip(patch_paths, range(1, len(patch_paths) + 1)):\n        cmd = [\n            str(patch_bin_path), '-p1', '--ignore-whitespace', '-i',\n            str(patch_path), '-d',\n            str(tree_path), '--no-backup-if-mismatch'\n        ]\n        if reverse:\n            cmd.append('--reverse')\n            log_word = 'Reversing'\n        else:\n            cmd.append('--forward')\n            log_word = 'Applying'\n        logger.info('* %s %s (%s/%s)', log_word, patch_path.name, patch_num, len(patch_paths))\n        logger.debug(' '.join(cmd))\n        subprocess.run(cmd, check=True)\n\n\ndef generate_patches_from_series(patches_dir, resolve=False):\n    \"\"\"Generates pathlib.Path for patches from a directory in GNU Quilt format\"\"\"\n    for patch_path in parse_series(patches_dir / 'series'):\n        if resolve:\n            yield (patches_dir / patch_path).resolve()\n        else:\n            yield patch_path\n\n\ndef _copy_files(path_iter, source, destination):\n    \"\"\"Copy files from source to destination with relative paths from path_iter\"\"\"\n    for path in path_iter:\n        (destination / path).parent.mkdir(parents=True, exist_ok=True)\n        shutil.copy2(str(source / path), str(destination / path))\n\n\ndef merge_patches(source_iter, destination, prepend=False):\n    \"\"\"\n    Merges GNU quilt-formatted patches directories from sources into destination\n\n    destination must not already exist, unless prepend is True. If prepend is True, then\n    the source patches will be prepended to the destination.\n    \"\"\"\n    series = []\n    known_paths = set()\n    if destination.exists():\n        if prepend:\n            if not (destination / 'series').exists():\n                raise FileNotFoundError(\n                    f\"Could not find series file in existing destination: {destination / 'series'}\")\n            known_paths.update(generate_patches_from_series(destination))\n        else:\n            raise FileExistsError(f'destination already exists: {destination}')\n    for source_dir in source_iter:\n        patch_paths = tuple(generate_patches_from_series(source_dir))\n        patch_intersection = known_paths.intersection(patch_paths)\n        if patch_intersection:\n            raise FileExistsError(f'Patches from {source_dir} have conflicting paths '\n                                  f'with other sources: {patch_intersection}')\n        series.extend(patch_paths)\n        _copy_files(patch_paths, source_dir, destination)\n    if prepend and (destination / 'series').exists():\n        series.extend(generate_patches_from_series(destination))\n    with (destination / 'series').open('w') as series_file:\n        series_file.write('\\n'.join(map(str, series)))\n\n\ndef _apply_callback(args, parser_error):\n    logger = get_logger()\n    patch_bin_path = None\n    if args.patch_bin is not None:\n        patch_bin_path = Path(args.patch_bin)\n        if not patch_bin_path.exists():\n            patch_bin_path = shutil.which(args.patch_bin)\n            if patch_bin_path:\n                patch_bin_path = Path(patch_bin_path)\n            else:\n                parser_error(\n                    f'--patch-bin \"{args.patch_bin}\" is not a command or path to executable.')\n    for patch_dir in args.patches:\n        logger.info('Applying patches from %s', patch_dir)\n        apply_patches(generate_patches_from_series(patch_dir, resolve=True),\n                      args.target,\n                      patch_bin_path=patch_bin_path)\n\n\ndef _merge_callback(args, _):\n    merge_patches(args.source, args.destination, args.prepend)\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser()\n    add_common_params(parser)\n    subparsers = parser.add_subparsers()\n\n    apply_parser = subparsers.add_parser(\n        'apply', help='Applies patches (in GNU Quilt format) to the specified source tree')\n    apply_parser.add_argument('--patch-bin',\n                              help='The GNU patch command to use. Omit to find it automatically.')\n    apply_parser.add_argument('target', type=Path, help='The directory tree to apply patches onto.')\n    apply_parser.add_argument(\n        'patches',\n        type=Path,\n        nargs='+',\n        help='The directories containing patches to apply. They must be in GNU quilt format')\n    apply_parser.set_defaults(callback=_apply_callback)\n\n    merge_parser = subparsers.add_parser('merge',\n                                         help='Merges patches directories in GNU quilt format')\n    merge_parser.add_argument(\n        '--prepend',\n        '-p',\n        action='store_true',\n        help=('If \"destination\" exists, prepend patches from sources into it.'\n              ' By default, merging will fail if the destination already exists.'))\n    merge_parser.add_argument(\n        'destination',\n        type=Path,\n        help=('The directory to write the merged patches to. '\n              'The destination must not exist unless --prepend is specified.'))\n    merge_parser.add_argument('source',\n                              type=Path,\n                              nargs='+',\n                              help='The GNU quilt patches to merge.')\n    merge_parser.set_defaults(callback=_merge_callback)\n\n    args = parser.parse_args()\n    if 'callback' not in args:\n        parser.error('Must specify subcommand apply or merge')\n    args.callback(args, parser.error)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/prune_binaries.py",
    "content": "#!/usr/bin/env python3\n# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\"\"\"Prune binaries from the source tree\"\"\"\n\nimport argparse\nimport itertools\nimport sys\nimport os\nimport stat\nfrom pathlib import Path\n\nfrom _common import ENCODING, get_logger, add_common_params\n\n# List of paths to prune if they exist, excluded from domain_substitution and pruning lists\n# These allow the lists to be compatible between cloned, tarball, and lite tarball sources\nCONTINGENT_PATHS = (\n    # checkout_configuration != \"small\"\n    'third_party/jetstream/',\n    'third_party/speedometer/',\n    # generate_location_tags = true\n    'testing/location_tags.json',\n    # CIPD sources\n    'buildtools/linux64/',\n    'components/variations/test_data/cipd/',\n    'third_party/checkstyle/cipd/',\n    'third_party/dawn/third_party/ninja/',\n    'third_party/dawn/tools/golang/',\n    'third_party/devtools-frontend/src/third_party/esbuild/',\n    'third_party/devtools-frontend/src/third_party/rollup_libs/',\n    'third_party/enterprise_companion/chromium_linux64/cipd/',\n    'third_party/google-java-format/',\n    'third_party/libei/cipd/',\n    'third_party/ninja/',\n    'third_party/openscreen/src/third_party/ninja/',\n    'third_party/siso/cipd/',\n    'third_party/updater/chrome_linux64/',\n    'third_party/updater/chrome_linux64_sans_iid/cipd/',\n    'third_party/updater/chromium_linux64/',\n    'third_party/updater/chromium_linux64_sans_iid/cipd/',\n    'tools/luci-go/',\n    'tools/resultdb/',\n    'tools/skia_goldctl/',\n    # GCS sources\n    'buildtools/linux64-format/',\n    'third_party/blink/renderer/core/css/perftest_data/',\n    'third_party/js_code_coverage/',\n    'third_party/openscreen/src/buildtools/linux64-format/',\n    'third_party/openscreen/src/third_party/llvm-build/Release+Asserts/',\n    'third_party/opus/tests/resources/',\n    'third_party/subresource-filter-ruleset/data/',\n    'tools/perf/page_sets/maps_perf_test/dataset/',\n    # Sysroots(GCS), include all arches the clone script is able to obtain\n    'build/linux/debian_bullseye_amd64-sysroot/',\n    'build/linux/debian_bullseye_arm64-sysroot/',\n    'build/linux/debian_bullseye_armhf-sysroot/',\n    'build/linux/debian_bullseye_i386-sysroot/',\n    'build/linux/debian_bullseye_mips64el-sysroot/',\n    'build/linux/debian_bullseye_mipsel-sysroot/',\n    # other\n    'third_party/depot_tools/external_bin/',\n    'third_party/devtools-frontend/src/node_modules/@rollup/rollup-linux-x64-gnu/',\n    # Match removals for the tarball:\n    # https://source.chromium.org/chromium/chromium/tools/build/+/main:recipes/recipe_modules/chromium/resources/export_tarball.py\n    # nonessential\n    'third_party/blink/tools/',\n    'third_party/blink/web_tests/',\n    'third_party/hunspell_dictionaries/',\n    'third_party/hunspell/tests/',\n    'third_party/jdk/current/',\n    'third_party/jdk/extras/',\n    'third_party/liblouis/src/tests/braille-specs/',\n    'third_party/xdg-utils/tests/',\n    'v8/test/',\n    # test\n    'base/tracing/test/data/',\n    'chrome/test/data/',\n    'components/test/data/',\n    'content/test/data/accessibility/',\n    'content/test/data/gpu/',\n    'content/test/data/media/',\n    'courgette/testdata/',\n    'extensions/test/data/',\n    'media/test/data/',\n    'native_client/src/trusted/service_runtime/testdata/',\n    'testing/libfuzzer/fuzzers/wasm_corpus/',\n    'third_party/blink/manual_tests/',\n    'third_party/blink/perf_tests/',\n    'third_party/boringssl/src/third_party/wycheproof_testvectors/',\n    'third_party/breakpad/breakpad/src/processor/testdata/',\n    'third_party/catapult/tracing/test_data/',\n    'third_party/dawn/test/',\n    'third_party/devtools-frontend/src/front_end/panels/timeline/fixtures/',\n    'third_party/expat/src/testdata/',\n    'third_party/glslang/src/Test/',\n    'third_party/harfbuzz-ng/src/test/',\n    'third_party/libc++/src/test/std/',\n    'third_party/llvm/llvm/test/',\n    'third_party/openh264/src/res/',\n    'third_party/opus/tests/resources/',\n    'third_party/ots/src/tests/fonts/',\n    'third_party/rust-src/src/gcc/gcc/testsuite/',\n    'third_party/rust-src/src/llvm-project/clang/test/',\n    'third_party/rust-src/src/llvm-project/llvm/test/',\n    'third_party/screen-ai/linux/resources/',\n    'third_party/sqlite/fuzz/',\n    'third_party/sqlite/src/test/',\n    'third_party/swiftshader/tests/regres/',\n    'third_party/test_fonts/test_fonts/',\n    'tools/perf/testdata/',\n    # lite tarball paths:\n    # https://source.chromium.org/chromium/chromium/tools/build/+/main:recipes/recipes/publish_tarball.py\n    'android_webview/',\n    'buildtools/reclient/',\n    'chrome/android/',\n    'chromecast/',\n    'ios/',\n    'native_client/',\n    'native_client_sdk/',\n    'third_party/android_platform/',\n    'third_party/angle/third_party/VK-GL-CTS/',\n    'third_party/apache-linux/',\n    'third_party/blink/manual_tests/',\n    'third_party/blink/perf_tests/',\n    'third_party/catapult/third_party/vinn/third_party/v8/',\n    'third_party/closure_compiler/',\n    'third_party/dawn/third_party/khronos/OpenGL-Registry/specs/',\n    'third_party/instrumented_libs/',\n    'third_party/libphonenumber/dist/resources/metadata/',\n    'third_party/llvm-build-tools/',\n    'third_party/llvm-build/',\n    'third_party/llvm/',\n    'third_party/node/linux/',\n    'third_party/rust-src/',\n    'third_party/rust-toolchain/',\n    'third_party/webgl/',\n)\n\n# Files that should be excluded when pruning contingent paths.\nKEEP_FILES = (\n    'chrome/test/data/webui/i18n_process_css_test.html',\n    'chrome/test/data/webui/mojo/foobar.mojom',\n    'v8/test/torque/test-torque.tq',\n)\n\n# File suffixes that should be excluded when pruning contingent paths.\nKEEP_SUFFIXES = ('.gn', '.gni', '.grd', '.grdp', '.isolate', '.pydeps')\n\n\ndef prune_files(unpack_root, prune_list):\n    \"\"\"\n    Delete files under unpack_root listed in prune_list. Returns an iterable of unremovable files.\n\n    unpack_root is a pathlib.Path to the directory to be pruned\n    prune_list is an iterable of files to be removed.\n    \"\"\"\n    unremovable_files = set()\n    for relative_file in prune_list:\n        file_path = unpack_root / relative_file\n        try:\n            file_path.unlink()\n        # read-only files can't be deleted on Windows\n        # so remove the flag and try again.\n        except PermissionError:\n            os.chmod(file_path, stat.S_IWRITE)\n            file_path.unlink()\n        except FileNotFoundError:\n            unremovable_files.add(Path(relative_file).as_posix())\n    return unremovable_files\n\n\ndef _prune_path(path, unpack_root=None):\n    \"\"\"\n    Delete files and directories in path.\n\n    path is a pathlib.Path to the directory to be pruned\n    unpack_root is a pathlib.Path to the source tree\n    \"\"\"\n    for node in sorted(path.rglob('*'), key=lambda l: len(str(l)), reverse=True):\n        if unpack_root is not None and (node.suffix in KEEP_SUFFIXES\n                                        or str(node.relative_to(unpack_root)) in KEEP_FILES):\n            continue\n        if node.is_file() or node.is_symlink():\n            try:\n                node.unlink()\n            except PermissionError:\n                node.chmod(stat.S_IWRITE)\n                node.unlink()\n        elif node.is_dir() and not any(node.iterdir()):\n            try:\n                node.rmdir()\n            except PermissionError:\n                node.chmod(stat.S_IWRITE)\n                node.rmdir()\n\n\ndef prune_dirs(unpack_root, keep_contingent_paths, sysroot):\n    \"\"\"\n    Delete all files and directories in pycache and CONTINGENT_PATHS directories.\n\n    unpack_root is a pathlib.Path to the source tree\n    keep_contingent_paths is a boolean that determines if the contingent paths should be pruned\n    sysroot is a string that optionally defines a sysroot to exempt from pruning\n    \"\"\"\n    for pycache in unpack_root.rglob('__pycache__'):\n        _prune_path(pycache)\n    if keep_contingent_paths:\n        get_logger().info('Keeping Contingent Paths')\n    else:\n        get_logger().info('Removing Contingent Paths')\n        for cpath in CONTINGENT_PATHS:\n            if sysroot and f'{sysroot}-sysroot' in cpath:\n                get_logger().info('%s: %s', 'Exempt', cpath)\n                continue\n            get_logger().info('%s: %s', 'Exists' if Path(cpath).exists() else 'Absent', cpath)\n            _prune_path(unpack_root / cpath, unpack_root)\n\n\ndef _callback(args):\n    if not args.directory.exists():\n        get_logger().error('Specified directory does not exist: %s', args.directory)\n        sys.exit(1)\n    if not args.pruning_list.exists():\n        get_logger().error('Could not find the pruning list: %s', args.pruning_list)\n    prune_dirs(args.directory, args.keep_contingent_paths, args.sysroot)\n    prune_list = tuple(filter(len, args.pruning_list.read_text(encoding=ENCODING).splitlines()))\n    unremovable_files = prune_files(args.directory, prune_list)\n    if unremovable_files:\n        file_list = '\\n'.join(f for f in itertools.islice(unremovable_files, 5))\n        if len(unremovable_files) > 5:\n            file_list += '\\n... and ' + str(len(unremovable_files) - 5) + ' more'\n            get_logger().debug('files that could not be pruned:\\n%s',\n                               '\\n'.join(f for f in unremovable_files))\n        get_logger().error('%d files could not be pruned:\\n%s', len(unremovable_files), file_list)\n        sys.exit(1)\n\n\ndef main():\n    \"\"\"CLI Entrypoint\"\"\"\n    parser = argparse.ArgumentParser()\n    parser.add_argument('directory', type=Path, help='The directory to apply binary pruning.')\n    parser.add_argument('pruning_list', type=Path, help='Path to pruning.list')\n    parser.add_argument('--keep-contingent-paths',\n                        action='store_true',\n                        help=('Skip pruning the contingent paths. '\n                              'Useful when building with the Google tooling is desired.'))\n    parser.add_argument('--sysroot',\n                        choices=('amd64', 'i386'),\n                        help=('Skip pruning the sysroot for the specified architecture. '\n                              'Not needed when --keep-contingent-paths is used.'))\n    add_common_params(parser)\n    parser.set_defaults(callback=_callback)\n\n    args = parser.parse_args()\n    args.callback(args)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/pytest.ini",
    "content": "[pytest]\ntestpaths = tests\n#filterwarnings =\n#\terror\n#\tignore::DeprecationWarning\n#addopts = --cov-report term-missing --hypothesis-show-statistics -p no:warnings\naddopts = --cov=. --cov-config=.coveragerc --cov-report term-missing -p no:warnings\n"
  },
  {
    "path": "utils/tests/__init__.py",
    "content": ""
  },
  {
    "path": "utils/tests/test_domain_substitution.py",
    "content": "# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\nimport os\nimport tempfile\nfrom pathlib import Path\n\nfrom .. import domain_substitution\n\n\ndef test_update_timestamp():\n    with tempfile.TemporaryDirectory() as tmpdirname:\n        path = Path(tmpdirname, 'tmp_update_timestamp')\n        path.touch()\n        orig_stats: os.stat_result = path.stat()\n\n        # Add delta to timestamp\n        with domain_substitution._update_timestamp(path, set_new=True):\n            with path.open('w') as fileobj:\n                fileobj.write('foo')\n\n        new_stats: os.stat_result = path.stat()\n        assert orig_stats.st_atime_ns != new_stats.st_atime_ns\n        assert orig_stats.st_mtime_ns != new_stats.st_mtime_ns\n\n        # Remove delta from timestamp\n        with domain_substitution._update_timestamp(path, set_new=False):\n            with path.open('w') as fileobj:\n                fileobj.write('bar')\n\n        new_stats: os.stat_result = path.stat()\n        assert orig_stats.st_atime_ns == new_stats.st_atime_ns\n        assert orig_stats.st_mtime_ns == new_stats.st_mtime_ns\n"
  },
  {
    "path": "utils/tests/test_patches.py",
    "content": "# -*- coding: UTF-8 -*-\n\n# Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved.\n# Use of this source code is governed by a BSD-style license that can be\n# found in the LICENSE file.\n\nfrom pathlib import Path\nimport os\nimport shutil\n\nimport pytest\n\nfrom .. import patches\n\n\ndef test_find_and_check_patch():\n    assert isinstance(patches.find_and_check_patch(), Path)\n\n    with pytest.raises(ValueError):\n        patches.find_and_check_patch(patch_bin_path=Path('/this/should/not/exist'))\n\n    with pytest.raises(RuntimeError):\n        # Use comamnd \"false\" to return non-zero exit code\n        patches.find_and_check_patch(patch_bin_path=Path('/bin/false'))\n\n\ndef test_patch_from_which():\n    # We assume GNU patch is already installed to PATH\n    assert patches._find_patch_from_which()\n\n\ndef test_patch_from_env():\n    os.environ['PATCH_BIN'] = 'patch'\n    assert patches._find_patch_from_env() == Path(shutil.which('patch'))\n\n    os.environ['PATCH_BIN'] = shutil.which('patch')\n    assert patches._find_patch_from_env() == Path(shutil.which('patch'))\n\n    del os.environ['PATCH_BIN']\n    assert patches._find_patch_from_env() is None\n"
  },
  {
    "path": "utils/third_party/README.md",
    "content": "This directory contains third-party libraries used by build utilities.\n\nContents:\n\n* [schema](https://github.com/keleshev/schema)\n    * For validating more sophisticated files such as INIs\n"
  },
  {
    "path": "utils/third_party/__init__.py",
    "content": ""
  },
  {
    "path": "utils/third_party/schema.py",
    "content": "\"\"\"schema is a library for validating Python data structures, such as those\nobtained from config-files, forms, external services or command-line\nparsing, converted from JSON/YAML (or something else) to Python data-types.\"\"\"\n\nimport re\n\n__version__ = '0.6.7'\n__all__ = ['Schema',\n           'And', 'Or', 'Regex', 'Optional', 'Use', 'Forbidden', 'Const',\n           'SchemaError',\n           'SchemaWrongKeyError',\n           'SchemaMissingKeyError',\n           'SchemaForbiddenKeyError',\n           'SchemaUnexpectedTypeError']\n\n\nclass SchemaError(Exception):\n    \"\"\"Error during Schema validation.\"\"\"\n\n    def __init__(self, autos, errors=None):\n        self.autos = autos if type(autos) is list else [autos]\n        self.errors = errors if type(errors) is list else [errors]\n        Exception.__init__(self, self.code)\n\n    @property\n    def code(self):\n        \"\"\"\n        Removes duplicates values in auto and error list.\n        parameters.\n        \"\"\"\n        def uniq(seq):\n            \"\"\"\n            Utility function that removes duplicate.\n            \"\"\"\n            seen = set()\n            seen_add = seen.add\n            # This way removes duplicates while preserving the order.\n            return [x for x in seq if x not in seen and not seen_add(x)]\n        data_set = uniq(i for i in self.autos if i is not None)\n        error_list = uniq(i for i in self.errors if i is not None)\n        if error_list:\n            return '\\n'.join(error_list)\n        return '\\n'.join(data_set)\n\n\nclass SchemaWrongKeyError(SchemaError):\n    \"\"\"Error Should be raised when an unexpected key is detected within the\n    data set being.\"\"\"\n    pass\n\n\nclass SchemaMissingKeyError(SchemaError):\n    \"\"\"Error should be raised when a mandatory key is not found within the\n    data set being vaidated\"\"\"\n    pass\n\n\nclass SchemaForbiddenKeyError(SchemaError):\n    \"\"\"Error should be raised when a forbidden key is found within the\n    data set being validated, and its value matches the value that was specified\"\"\"\n    pass\n\n\nclass SchemaUnexpectedTypeError(SchemaError):\n    \"\"\"Error should be raised when a type mismatch is detected within the\n    data set being validated.\"\"\"\n    pass\n\n\nclass And:\n    \"\"\"\n    Utility function to combine validation directives in AND Boolean fashion.\n    \"\"\"\n    def __init__(self, *args, **kw):\n        self._args = args\n        assert set(kw).issubset(['error', 'schema', 'ignore_extra_keys'])\n        self._error = kw.get('error')\n        self._ignore_extra_keys = kw.get('ignore_extra_keys', False)\n        # You can pass your inherited Schema class.\n        self._schema = kw.get('schema', Schema)\n\n    def __repr__(self):\n        return '%s(%s)' % (self.__class__.__name__,\n                           ', '.join(repr(a) for a in self._args))\n\n    def validate(self, data):\n        \"\"\"\n        Validate data using defined sub schema/expressions ensuring all\n        values are valid.\n        :param data: to be validated with sub defined schemas.\n        :return: returns validated data\n        \"\"\"\n        for s in [self._schema(s, error=self._error,\n                               ignore_extra_keys=self._ignore_extra_keys)\n                  for s in self._args]:\n            data = s.validate(data)\n        return data\n\n\nclass Or(And):\n    \"\"\"Utility function to combine validation directives in a OR Boolean\n    fashion.\"\"\"\n    def validate(self, data):\n        \"\"\"\n        Validate data using sub defined schema/expressions ensuring at least\n        one value is valid.\n        :param data: data to be validated by provided schema.\n        :return: return validated data if not validation\n        \"\"\"\n        x = SchemaError([], [])\n        for s in [self._schema(s, error=self._error,\n                               ignore_extra_keys=self._ignore_extra_keys)\n                  for s in self._args]:\n            try:\n                return s.validate(data)\n            except SchemaError as _x:\n                x = _x\n        raise SchemaError(['%r did not validate %r' % (self, data)] + x.autos,\n                          [self._error.format(data) if self._error else None] +\n                          x.errors)\n\n\nclass Regex:\n    \"\"\"\n    Enables schema.py to validate string using regular expressions.\n    \"\"\"\n    # Map all flags bits to a more readable description\n    NAMES = ['re.ASCII', 're.DEBUG', 're.VERBOSE', 're.UNICODE', 're.DOTALL',\n             're.MULTILINE', 're.LOCALE', 're.IGNORECASE', 're.TEMPLATE']\n\n    def __init__(self, pattern_str, flags=0, error=None):\n        self._pattern_str = pattern_str\n        flags_list = [Regex.NAMES[i] for i, f in  # Name for each bit\n                      enumerate('{0:09b}'.format(flags)) if f != '0']\n\n        if flags_list:\n            self._flags_names = ', flags=' + '|'.join(flags_list)\n        else:\n            self._flags_names = ''\n\n        self._pattern = re.compile(pattern_str, flags=flags)\n        self._error = error\n\n    def __repr__(self):\n        return '%s(%r%s)' % (\n            self.__class__.__name__, self._pattern_str, self._flags_names\n        )\n\n    def validate(self, data):\n        \"\"\"\n        Validated data using defined regex.\n        :param data: data to be validated\n        :return: return validated data.\n        \"\"\"\n        e = self._error\n\n        try:\n            if self._pattern.search(data):\n                return data\n            else:\n                raise SchemaError('%r does not match %r' % (self, data), e)\n        except TypeError:\n            raise SchemaError('%r is not string nor buffer' % data, e)\n\n\nclass Use:\n    \"\"\"\n    For more general use cases, you can use the Use class to transform\n    the data while it is being validate.\n    \"\"\"\n    def __init__(self, callable_, error=None):\n        assert callable(callable_)\n        self._callable = callable_\n        self._error = error\n\n    def __repr__(self):\n        return '%s(%r)' % (self.__class__.__name__, self._callable)\n\n    def validate(self, data):\n        try:\n            return self._callable(data)\n        except SchemaError as x:\n            raise SchemaError([None] + x.autos,\n                              [self._error.format(data)\n                               if self._error else None] + x.errors)\n        except BaseException as x:\n            f = _callable_str(self._callable)\n            raise SchemaError('%s(%r) raised %r' % (f, data, x),\n                              self._error.format(data)\n                              if self._error else None)\n\n\nCOMPARABLE, CALLABLE, VALIDATOR, TYPE, DICT, ITERABLE = range(6)\n\n\ndef _priority(s):\n    \"\"\"Return priority for a given object.\"\"\"\n    if type(s) in (list, tuple, set, frozenset):\n        return ITERABLE\n    if type(s) is dict:\n        return DICT\n    if issubclass(type(s), type):\n        return TYPE\n    if hasattr(s, 'validate'):\n        return VALIDATOR\n    if callable(s):\n        return CALLABLE\n    else:\n        return COMPARABLE\n\n\nclass Schema:\n    \"\"\"\n    Entry point of the library, use this class to instantiate validation\n    schema for the data that will be validated.\n    \"\"\"\n    def __init__(self, schema, error=None, ignore_extra_keys=False):\n        self._schema = schema\n        self._error = error\n        self._ignore_extra_keys = ignore_extra_keys\n\n    def __repr__(self):\n        return '%s(%r)' % (self.__class__.__name__, self._schema)\n\n    @staticmethod\n    def _dict_key_priority(s):\n        \"\"\"Return priority for a given key object.\"\"\"\n        if isinstance(s, Forbidden):\n            return _priority(s._schema) - 0.5\n        if isinstance(s, Optional):\n            return _priority(s._schema) + 0.5\n        return _priority(s)\n\n    def validate(self, data):\n        Schema = self.__class__\n        s = self._schema\n        e = self._error\n        i = self._ignore_extra_keys\n        flavor = _priority(s)\n        if flavor == ITERABLE:\n            data = Schema(type(s), error=e).validate(data)\n            o = Or(*s, error=e, schema=Schema, ignore_extra_keys=i)\n            return type(data)(o.validate(d) for d in data)\n        if flavor == DICT:\n            data = Schema(dict, error=e).validate(data)\n            new = type(data)()  # new - is a dict of the validated values\n            coverage = set()  # matched schema keys\n            # for each key and value find a schema entry matching them, if any\n            sorted_skeys = sorted(s, key=self._dict_key_priority)\n            for key, value in data.items():\n                for skey in sorted_skeys:\n                    svalue = s[skey]\n                    try:\n                        nkey = Schema(skey, error=e).validate(key)\n                    except SchemaError:\n                        pass\n                    else:\n                        if isinstance(skey, Forbidden):\n                            # As the content of the value makes little sense for\n                            # forbidden keys, we reverse its meaning:\n                            # we will only raise the SchemaErrorForbiddenKey\n                            # exception if the value does match, allowing for\n                            # excluding a key only if its value has a certain type,\n                            # and allowing Forbidden to work well in combination\n                            # with Optional.\n                            try:\n                                nvalue = Schema(svalue, error=e).validate(value)\n                            except SchemaError:\n                                continue\n                            raise SchemaForbiddenKeyError(\n                                    'Forbidden key encountered: %r in %r' %\n                                    (nkey, data), e)\n                        try:\n                            nvalue = Schema(svalue, error=e,\n                                            ignore_extra_keys=i).validate(value)\n                        except SchemaError as x:\n                            k = \"Key '%s' error:\" % nkey\n                            raise SchemaError([k] + x.autos, [e] + x.errors)\n                        else:\n                            new[nkey] = nvalue\n                            coverage.add(skey)\n                            break\n            required = {k for k in s if type(k) not in [Optional, Forbidden]}\n            if not required.issubset(coverage):\n                missing_keys = required - coverage\n                s_missing_keys = \\\n                    ', '.join(repr(k) for k in sorted(missing_keys, key=repr))\n                raise \\\n                    SchemaMissingKeyError('Missing keys: ' + s_missing_keys, e)\n            if not self._ignore_extra_keys and (len(new) != len(data)):\n                wrong_keys = set(data.keys()) - set(new.keys())\n                s_wrong_keys = \\\n                    ', '.join(repr(k) for k in sorted(wrong_keys, key=repr))\n                raise \\\n                    SchemaWrongKeyError(\n                        'Wrong keys %s in %r' % (s_wrong_keys, data),\n                        e.format(data) if e else None)\n\n            # Apply default-having optionals that haven't been used:\n            defaults = {k for k in s if type(k) is Optional and\n                           hasattr(k, 'default')} - coverage\n            for default in defaults:\n                new[default.key] = default.default\n\n            return new\n        if flavor == TYPE:\n            if isinstance(data, s):\n                return data\n            else:\n                raise SchemaUnexpectedTypeError(\n                    '%r should be instance of %r' % (data, s.__name__),\n                    e.format(data) if e else None)\n        if flavor == VALIDATOR:\n            try:\n                return s.validate(data)\n            except SchemaError as x:\n                raise SchemaError([None] + x.autos, [e] + x.errors)\n            except BaseException as x:\n                raise SchemaError(\n                    '%r.validate(%r) raised %r' % (s, data, x),\n                    self._error.format(data) if self._error else None)\n        if flavor == CALLABLE:\n            f = _callable_str(s)\n            try:\n                if s(data):\n                    return data\n            except SchemaError as x:\n                raise SchemaError([None] + x.autos, [e] + x.errors)\n            except BaseException as x:\n                raise SchemaError(\n                    '%s(%r) raised %r' % (f, data, x),\n                    self._error.format(data) if self._error else None)\n            raise SchemaError('%s(%r) should evaluate to True' % (f, data), e)\n        if s == data:\n            return data\n        else:\n            raise SchemaError('%r does not match %r' % (s, data),\n                              e.format(data) if e else None)\n\n\nclass Optional(Schema):\n    \"\"\"Marker for an optional part of the validation Schema.\"\"\"\n    _MARKER = object()\n\n    def __init__(self, *args, **kwargs):\n        default = kwargs.pop('default', self._MARKER)\n        super(Optional, self).__init__(*args, **kwargs)\n        if default is not self._MARKER:\n            # See if I can come up with a static key to use for myself:\n            if _priority(self._schema) != COMPARABLE:\n                raise TypeError(\n                    'Optional keys with defaults must have simple, '\n                    'predictable values, like literal strings or ints. '\n                    '\"%r\" is too complex.' % (self._schema,))\n            self.default = default\n            self.key = self._schema\n\n    def __hash__(self):\n        return hash(self._schema)\n\n    def __eq__(self, other):\n        return (self.__class__ is other.__class__ and\n                getattr(self, 'default', self._MARKER) ==\n                getattr(other, 'default', self._MARKER) and\n                self._schema == other._schema)\n\n\nclass Forbidden(Schema):\n    def __init__(self, *args, **kwargs):\n        super(Forbidden, self).__init__(*args, **kwargs)\n        self.key = self._schema\n\n\nclass Const(Schema):\n    def validate(self, data):\n        super(Const, self).validate(data)\n        return data\n\n\ndef _callable_str(callable_):\n    if hasattr(callable_, '__name__'):\n        return callable_.__name__\n    return str(callable_)\n"
  }
]