Repository: ungoogled-software/ungoogled-chromium Branch: master Commit: 59a7c3f655ed Files: 197 Total size: 3.4 MB Directory structure: gitextract_kl8f_uin/ ├── .cirrus.yml ├── .cirrus_Dockerfile ├── .cirrus_requirements.txt ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bugreport.yml │ │ ├── create-an--updating-to-chromium-x-x-x-x-.md │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── new_version_check.yml │ ├── release-on-tag.yml │ └── stale.yml ├── .gitignore ├── .style.yapf ├── CODEOWNERS ├── LICENSE ├── README.md ├── SUPPORT.md ├── chromium_version.txt ├── devutils/ │ ├── .coveragerc │ ├── README.md │ ├── __init__.py │ ├── check_all_code.sh │ ├── check_downloads_ini.py │ ├── check_files_exist.py │ ├── check_gn_flags.py │ ├── check_patch_files.py │ ├── print_tag_version.sh │ ├── pytest.ini │ ├── run_devutils_pylint.py │ ├── run_devutils_tests.sh │ ├── run_devutils_yapf.sh │ ├── run_other_pylint.py │ ├── run_other_yapf.sh │ ├── run_utils_pylint.py │ ├── run_utils_tests.sh │ ├── run_utils_yapf.sh │ ├── set_quilt_vars.fish │ ├── set_quilt_vars.sh │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_check_patch_files.py │ │ └── test_validate_patches.py │ ├── third_party/ │ │ ├── README.md │ │ ├── __init__.py │ │ └── unidiff/ │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── constants.py │ │ ├── errors.py │ │ └── patch.py │ ├── update_lists.py │ ├── update_platform_patches.py │ ├── validate_config.py │ └── validate_patches.py ├── docs/ │ ├── building.md │ ├── contributing.md │ ├── default_settings.md │ ├── design.md │ ├── developing.md │ ├── flags.md │ ├── platforms.md │ └── repo_management.md ├── domain_regex.list ├── domain_substitution.list ├── downloads.ini ├── flags.gn ├── patches/ │ ├── core/ │ │ ├── bromite/ │ │ │ └── disable-fetching-field-trials.patch │ │ ├── inox-patchset/ │ │ │ ├── 0001-fix-building-without-safebrowsing.patch │ │ │ ├── 0003-disable-autofill-download-manager.patch │ │ │ ├── 0005-disable-default-extensions.patch │ │ │ ├── 0015-disable-update-pings.patch │ │ │ └── 0021-disable-rlz.patch │ │ ├── iridium-browser/ │ │ │ ├── all-add-trk-prefixes-to-possibly-evil-connections.patch │ │ │ ├── safe_browsing-disable-incident-reporting.patch │ │ │ └── safe_browsing-disable-reporting-of-safebrowsing-over.patch │ │ └── ungoogled-chromium/ │ │ ├── block-requests.patch │ │ ├── block-trk-and-subdomains.patch │ │ ├── build-with-wasm-rollup.patch │ │ ├── disable-crash-reporter.patch │ │ ├── disable-domain-reliability.patch │ │ ├── disable-fonts-googleapis-references.patch │ │ ├── disable-gaia.patch │ │ ├── disable-gcm.patch │ │ ├── disable-google-host-detection.patch │ │ ├── disable-mei-preload.patch │ │ ├── disable-network-time-tracker.patch │ │ ├── disable-privacy-sandbox.patch │ │ ├── disable-profile-avatar-downloading.patch │ │ ├── disable-untraceable-urls.patch │ │ ├── disable-webrtc-log-uploader.patch │ │ ├── disable-webstore-urls.patch │ │ ├── doh-changes.patch │ │ ├── extensions-manifestv2.patch │ │ ├── fix-building-with-prunned-binaries.patch │ │ ├── fix-building-without-safebrowsing.patch │ │ ├── fix-learn-doubleclick-hsts.patch │ │ ├── move-js-optimizer-unfamiliar-sites.patch │ │ ├── remove-f1-shortcut.patch │ │ ├── remove-unused-preferences-fields.patch │ │ ├── replace-google-search-engine-with-nosearch.patch │ │ └── toggle-translation-via-switch.patch │ ├── extra/ │ │ ├── bromite/ │ │ │ ├── fingerprinting-flags-client-rects-and-measuretext.patch │ │ │ ├── flag-fingerprinting-canvas-image-data-noise.patch │ │ │ └── flag-max-connections-per-host.patch │ │ ├── debian/ │ │ │ └── disable/ │ │ │ └── google-api-warning.patch │ │ ├── inox-patchset/ │ │ │ ├── 0006-modify-default-prefs.patch │ │ │ ├── 0008-restore-classic-ntp.patch │ │ │ ├── 0013-disable-missing-key-warning.patch │ │ │ ├── 0016-chromium-sandbox-pie.patch │ │ │ └── 0019-disable-battery-status-service.patch │ │ ├── iridium-browser/ │ │ │ ├── Remove-EV-certificates.patch │ │ │ ├── browser-disable-profile-auto-import-on-first-run.patch │ │ │ ├── mime_util-force-text-x-suse-ymp-to-be-downloaded.patch │ │ │ ├── prefs-always-prompt-for-download-directory-by-defaul.patch │ │ │ └── updater-disable-auto-update.patch │ │ └── ungoogled-chromium/ │ │ ├── add-components-ungoogled.patch │ │ ├── add-credits.patch │ │ ├── add-extra-channel-info.patch │ │ ├── add-flag-for-bookmark-bar-ntp.patch │ │ ├── add-flag-for-close-confirmation.patch │ │ ├── add-flag-for-custom-ntp.patch │ │ ├── add-flag-for-disabling-link-drag.patch │ │ ├── add-flag-for-grab-handle.patch │ │ ├── add-flag-for-incognito-themes.patch │ │ ├── add-flag-for-omnibox-autocomplete-filtering.patch │ │ ├── add-flag-for-qr-generator.patch │ │ ├── add-flag-for-search-engine-collection.patch │ │ ├── add-flag-for-tab-hover-cards.patch │ │ ├── add-flag-for-tabsearch-button.patch │ │ ├── add-flag-to-change-http-accept-header.patch │ │ ├── add-flag-to-clear-data-on-exit.patch │ │ ├── add-flag-to-close-window-with-last-tab.patch │ │ ├── add-flag-to-configure-extension-downloading.patch │ │ ├── add-flag-to-convert-popups-to-tabs.patch │ │ ├── add-flag-to-disable-beforeunload.patch │ │ ├── add-flag-to-disable-local-history-expiration.patch │ │ ├── add-flag-to-disable-sharing-hub.patch │ │ ├── add-flag-to-disable-tls-grease.patch │ │ ├── add-flag-to-force-punycode-hostnames.patch │ │ ├── add-flag-to-hide-crashed-bubble.patch │ │ ├── add-flag-to-hide-extensions-menu.patch │ │ ├── add-flag-to-hide-fullscreen-exit-ui.patch │ │ ├── add-flag-to-hide-tab-close-buttons.patch │ │ ├── add-flag-to-increase-incognito-storage-quota.patch │ │ ├── add-flag-to-reduce-system-info.patch │ │ ├── add-flag-to-remove-client-hints.patch │ │ ├── add-flag-to-scroll-tabs.patch │ │ ├── add-flag-to-show-avatar-button.patch │ │ ├── add-flag-to-spoof-webgl-renderer-info.patch │ │ ├── add-flags-for-existing-switches.patch │ │ ├── add-flags-for-referrer-customization.patch │ │ ├── add-ipv6-probing-option.patch │ │ ├── add-suggestions-url-field.patch │ │ ├── add-ungoogled-flag-headers.patch │ │ ├── default-webrtc-ip-handling-policy.patch │ │ ├── disable-ai-search-shortcuts.patch │ │ ├── disable-chromelabs.patch │ │ ├── disable-dial-repeating-discovery.patch │ │ ├── disable-download-quarantine.patch │ │ ├── disable-fedcm-by-default.patch │ │ ├── disable-formatting-in-omnibox.patch │ │ ├── disable-intranet-redirect-detector.patch │ │ ├── enable-certificate-transparency-and-add-flag.patch │ │ ├── enable-extra-locales.patch │ │ ├── enable-menu-on-reload-button.patch │ │ ├── enable-page-saving-on-more-pages.patch │ │ ├── enable-paste-and-go-new-tab-button.patch │ │ ├── first-run-page.patch │ │ ├── fix-building-without-mdns-and-service-discovery.patch │ │ ├── fix-distilled-icons.patch │ │ ├── keep-expired-flags.patch │ │ ├── prepopulated-search-engines.patch │ │ ├── remove-disable-setuid-sandbox-as-bad-flag.patch │ │ ├── remove-pac-size-limit.patch │ │ └── remove-uneeded-ui.patch │ ├── series │ └── upstream-fixes/ │ └── missing-dependencies.patch ├── pruning.list ├── revision.txt ├── shell.nix └── utils/ ├── .coveragerc ├── __init__.py ├── _common.py ├── _extraction.py ├── clone.py ├── depot_tools.patch ├── domain_substitution.py ├── downloads.py ├── filescfg.py ├── gsutil.patch ├── make_domsub_script.py ├── patches.py ├── prune_binaries.py ├── pytest.ini ├── tests/ │ ├── __init__.py │ ├── test_domain_substitution.py │ └── test_patches.py └── third_party/ ├── README.md ├── __init__.py └── schema.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .cirrus.yml ================================================ env: CIRRUS_CLONE_DEPTH: 1 container: dockerfile: .cirrus_Dockerfile cpu: 8 memory: 32G use_in_memory_disk: true code_check_task: pip_cache: folder: /usr/local/lib/python3.10/site-packages fingerprint_script: cat .cirrus_requirements.txt populate_script: pip install -r .cirrus_requirements.txt utils_script: - python3 -m yapf --style '.style.yapf' -e '*/third_party/*' -rpd utils - ./devutils/run_utils_pylint.py --hide-fixme - ./devutils/run_utils_tests.sh devutils_script: - python3 -m yapf --style '.style.yapf' -e '*/third_party/*' -rpd devutils - ./devutils/run_devutils_pylint.py --hide-fixme - ./devutils/run_devutils_tests.sh validate_config_task: validate_config_script: ./devutils/validate_config.py validate_with_source_task: pip_cache: folder: /usr/local/lib/python3.10/site-packages fingerprint_script: cat .cirrus_requirements.txt populate_script: pip install -r .cirrus_requirements.txt chromium_download_script: | # These directories will not exist when this is called, unless cache retrieval # fails and leaves partially-complete files around. rm -rf chromium_src rm -rf chromium_download_cache mkdir chromium_download_cache # Attempt to download tarball if ! ./utils/downloads.py retrieve -i downloads.ini -c chromium_download_cache ; then # If tarball is not available, attempt a clone ./utils/clone.py -o chromium_src rm -rf chromium_src/uc_staging find chromium_src -type d -name '.git' -exec rm -rf "{}" \; -prune tar cf chromium_download_cache/chromium-$(cat chromium_version.txt)-lite.tar.xz \ --transform s/chromium_src/chromium-$(cat chromium_version.txt)/ chromium_src fi unpack_source_script: | if [ ! -d chromium_src ]; then ./utils/downloads.py unpack -i downloads.ini -c chromium_download_cache chromium_src fi validate_patches_script: - ./devutils/validate_patches.py -l chromium_src -v validate_lists_script: # NOTE: This check is prone to false positives, but not false negatives. - ./devutils/check_files_exist.py chromium_src pruning.list domain_substitution.list # vim: set expandtab shiftwidth=4 softtabstop=4: ================================================ FILE: .cirrus_Dockerfile ================================================ # Dockerfile for Python 3 with xz-utils (for tar.xz unpacking) FROM python:3.10-slim-bookworm RUN apt update && apt install -y xz-utils patch axel curl git ================================================ FILE: .cirrus_requirements.txt ================================================ # Based on Python package versions in Debian bookworm # https://packages.debian.org/bookworm/python/ astroid==2.14.2 # via pylint pylint==2.16.2 pytest-cov==4.0.0 pytest==7.2.1 httplib2==0.20.4 requests==2.28.1 yapf==0.32.0 ================================================ FILE: .github/ISSUE_TEMPLATE/bugreport.yml ================================================ name: Bug Report description: Report a bug building or running ungoogled-chromium labels: ["bug"] body: - type: markdown attributes: value: | 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) 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 - type: dropdown id: os attributes: label: OS/Platform description: OS/Platform you are running ungoogled-chromium on options: - Android - Arch Linux - Debian, Ubuntu, and derivatives - Fedora and CentOS - Gentoo - GNU Guix - macOS - NixOS - Other Linux (please specify) - Portable Linux - Slackware - Windows validations: required: true - type: dropdown id: install attributes: label: Installed description: How was ungoogled-chromium installed on your OS/Platform options: - Compiled from source - OS/Platform's package manager - Flatpak - https://ungoogled-software.github.io/ungoogled-chromium-binaries/ - Other (please use 'Additional context' field below to mention how exactly) validations: required: true - type: input id: version attributes: label: Version description: ungoogled-chromium version. Could be copied from chrome://settings/help validations: required: true - type: checkboxes attributes: label: Have you tested that this is not an upstream issue or an issue with your configuration? options: - label: I have tried reproducing this issue in Chrome and it could not be reproduced there - label: I have tried reproducing this issue in vanilla Chromium and it could not be reproduced there - 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 - type: input id: description attributes: label: Description description: A clear and concise description (in one line) of what the bug is validations: required: true - type: textarea id: repro attributes: label: How to Reproduce? description: Steps to reproduce the behaviour placeholder: | 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error validations: required: true - type: textarea id: actual attributes: label: Actual behaviour description: A clear and concise description of what happens validations: required: true - type: textarea id: expected attributes: label: Expected behaviour description: A clear and concise description of what you expected to happen validations: required: true - type: textarea id: logs attributes: label: Relevant log output description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. render: sh - type: textarea id: additional attributes: label: Additional context description: Add any other context about the problem here. If applicable, add screenshots to help explain your problem. ================================================ FILE: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md ================================================ --- name: Create an "Updating to Chromium x.x.x.x" about: For letting the community track progress to a new stable Chromium title: Updating to Chromium {{ env.VERSION }} on {{ env.PLATFORM }} labels: update assignees: '' --- Chromium stable channel for {{ env.PLATFORM }} has been updated to a newer version: {{ env.VERSION }}. If 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. If 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. Feel 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). {{ env.NOTIFY_MAINTAINERS }} ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.yml ================================================ name: Feature request description: Suggest an idea labels: ["enhancement", "help wanted"] body: - type: markdown attributes: value: | 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) 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 - type: input id: description attributes: label: Description description: A clear and concise description (in one line) of what your suggestion is validations: required: true - type: checkboxes attributes: label: Who's implementing? options: - label: I'm willing to implement this feature myself - type: textarea id: prob attributes: label: The problem description: Please describe the problem you are solving or new feature you're suggesting placeholder: I'm always frustrated when [...] happens validations: required: true - type: textarea id: sol attributes: label: Possible solutions description: Please describe possible solution(-s) to The Problem validations: required: true - type: textarea id: alt attributes: label: Alternatives description: Please describe alternatives you've considered, if any - type: textarea id: additional attributes: label: Additional context description: Add any other context about the feature request here ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.md ================================================ *(Please ensure you have read SUPPORT.md and docs/contributing.md before submitting the Pull Request)* ================================================ FILE: .github/workflows/new_version_check.yml ================================================ name: New version check on: # enabling manual trigger workflow_dispatch: # running every hour schedule: - cron: '48 * * * *' jobs: check: # do not run in forks if: github.repository == 'ungoogled-software/ungoogled-chromium' runs-on: ubuntu-latest steps: - name: Set maintainer groups id: maintainers run: | echo "all=@networkException" >> $GITHUB_OUTPUT echo "linux=@rany2 @clickot @emilylange" >> $GITHUB_OUTPUT echo "windows=" >> $GITHUB_OUTPUT echo "macos=" >> $GITHUB_OUTPUT - name: Get the latest Chromium version id: latest-version run: | set -eo pipefail BASE_URL="https://versionhistory.googleapis.com/v1/chrome/platforms" END_URL="channels/stable/versions/all/releases?filter=endtime%3Dnone%2Cfraction%3E%3D0.5&order_by=version%20desc" JQ_FILTER='if .releases | select(type=="array") | length > 0 then .releases | first | .version else "null" end' for platform in linux win mac; do printf %s "${platform}_version=" >> $GITHUB_OUTPUT curl -sf "${BASE_URL}/${platform}/${END_URL}" | jq -re "${JQ_FILTER}" >> $GITHUB_OUTPUT done - uses: actions/checkout@v3 - name: Create Issue for all platforms if: | contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) && contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version) && !contains(steps.latest-version.outputs.linux_version, 'null') uses: dblock/create-a-github-issue@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ steps.latest-version.outputs.linux_version }} PLATFORM: all platforms NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.linux }} ${{ steps.maintainers.outputs.windows }} ${{ steps.maintainers.outputs.macos }}" with: update_existing: false search_existing: all filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md - name: Create Issue for Linux if: | ( !contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) || !contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version) ) && !contains(steps.latest-version.outputs.linux_version, 'null') uses: dblock/create-a-github-issue@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ steps.latest-version.outputs.linux_version }} PLATFORM: Linux NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.linux }}" with: update_existing: false search_existing: all filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md - name: Create Issue for macOS if: | ( !contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) || !contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version) ) && !contains(steps.latest-version.outputs.mac_version, 'null') uses: dblock/create-a-github-issue@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ steps.latest-version.outputs.mac_version }} PLATFORM: macOS NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.macos }}" with: update_existing: false search_existing: all filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md - name: Create Issue for Windows if: | ( !contains(steps.latest-version.outputs.win_version, steps.latest-version.outputs.mac_version) || !contains(steps.latest-version.outputs.mac_version, steps.latest-version.outputs.linux_version) ) && !contains(steps.latest-version.outputs.win_version, 'null') uses: dblock/create-a-github-issue@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VERSION: ${{ steps.latest-version.outputs.win_version }} PLATFORM: Windows NOTIFY_MAINTAINERS: "${{ steps.maintainers.outputs.all }} ${{ steps.maintainers.outputs.windows }}" with: update_existing: false search_existing: all filename: .github/ISSUE_TEMPLATE/create-an--updating-to-chromium-x-x-x-x-.md ================================================ FILE: .github/workflows/release-on-tag.yml ================================================ name: Create new empty release on: push: tags: - '*' jobs: build: name: Create Release runs-on: ubuntu-latest steps: - name: Create Release id: create_release uses: actions/create-release@latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} draft: false prerelease: false ================================================ FILE: .github/workflows/stale.yml ================================================ name: 'Close stale issues and PRs' on: schedule: - cron: '30 1 * * *' permissions: issues: write pull-requests: write jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v6 with: exempt-all-milestones: true any-of-labels: 'need info' days-before-stale: 30 days-before-close: 7 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." 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." ================================================ FILE: .gitignore ================================================ # Python files __pycache__/ *.py[cod] # Python testing files .coverage # Ignore macOS Finder meta .DS_Store .tm_properties # Ignore optional build / cache directory /build ================================================ FILE: .style.yapf ================================================ [style] based_on_style = pep8 allow_split_before_dict_value = false coalesce_brackets = true column_limit = 100 indent_width = 4 join_multiple_lines = true spaces_before_comment = 1 ================================================ FILE: CODEOWNERS ================================================ * @ungoogled-software/core ================================================ FILE: LICENSE ================================================ BSD 3-Clause License Copyright (c) 2015-2026, The ungoogled-chromium Authors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: README.md ================================================ # ungoogled-chromium *A lightweight approach to removing Google web service dependency* **Help is welcome!** See the [docs/contributing.md](docs/contributing.md) document for more information. ## Objectives In descending order of significance (i.e. most important objective first): 1. **ungoogled-chromium is Google Chromium, sans dependency on Google web services**. 2. **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. 3. **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). In scenarios where the objectives conflict, the objective of higher significance should take precedence. ## Content Overview * [Objectives](#objectives) * [Motivation and Philosophy](#motivation-and-philosophy) * [Feature Overview](#feature-overview) * [**Downloads**](#downloads) * [Source Code](#source-code) * [**FAQ**](#faq) * [Building Instructions](#building-instructions) * [Design Documentation](#design-documentation) * [**Contributing, Reporting, Contacting**](#contributing-reporting-contacting) * [Credits](#credits) * [Related Projects](#related-projects) * [License](#license) ## Motivation and Philosophy Without 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. ungoogled-chromium addresses these issues in the following ways: 1. Remove all remaining background requests to any web services while building and running the browser 2. Remove all code specific to Google web services 3. Remove all uses of pre-made binaries from the source code, and replace them with user-provided alternatives when possible. 4. 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). These features are implemented as configuration flags, patches, and custom scripts. For more details, consult the [Design Documentation](docs/design.md). ## Feature Overview *This section overviews the features of ungoogled-chromium. For more detailed information, it is best to consult the source code.* Contents of this section: * [Key Features](#key-features) * [Enhancing Features](#enhancing-features) * [Borrowed Features](#borrowed-features) * [Supported Platforms and Distributions](#supported-platforms-and-distributions) ### Key Features *These are the core features introduced by ungoogled-chromium.* * Disable functionality specific to Google domains (e.g. Google Host Detector, Google URL Tracker, Google Cloud Messaging, Google Hotwording, etc.) * 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). * 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. * Strip binaries from the source code (known as binary pruning; [see docs/design.md](docs/design.md#source-file-processors) for details) ### Enhancing Features *These are the non-essential features introduced by ungoogled-chromium.* * 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. * Add *Suggestions URL* text field in the search engine editor (`chrome://settings/searchEngines`) for customizing search engine suggestions. * Add more URL schemes allowed to save page schemes. * Add Omnibox search provider "No Search" to allow disabling of searching * 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.) * Force all pop-ups into tabs * Disable automatic formatting of URLs in Omnibox (e.g. stripping `http://`, hiding certain parameters) * Disable intranet redirect detector (extraneous DNS requests) * This breaks captive portal detection, but captive portals still work. * (Iridium Browser feature change) Prevent URLs with the `trk:` scheme from connecting to the Internet * Also prevents any URLs with the top-level domain `qjz9zk` (as used in domain substitution) from attempting a connection. * (Windows-specific) Do not set the Zone Identifier on downloaded files ### Borrowed Features In addition to the features introduced by ungoogled-chromium, ungoogled-chromium selectively borrows many features from the following projects (in approximate order of significance): * [Inox patchset](https://github.com/gcarq/inox-patchset) * [Bromite](https://github.com/bromite/bromite) * [Debian](https://tracker.debian.org/pkg/chromium) * [Iridium Browser](https://iridiumbrowser.de/) ### Supported Platforms and Distributions [See docs/platforms.md for a list of supported platforms](docs/platforms.md). Other 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). ## Downloads ### Automated or maintained builds ungoogled-chromium is available in the following **software repositories**: * Arch: Available in the AUR, [see instructions in ungoogled-chromium-archlinux](https://github.com/ungoogled-software/ungoogled-chromium-archlinux) * Debian: Available in OBS, find your [distribution specific instructions](https://github.com/ungoogled-software/ungoogled-chromium-debian) in the Installing section * Ubuntu: Available in the [XtraDeb PPA](https://xtradeb.net/) as [ungoogled-chromium](https://xtradeb.net/apps/ungoogled-chromium/). * 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). * 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 * [OpenMandriva](https://openmandriva.org/) includes ungoogled-chromium as its main browser. The `chromium` package includes all ungoogling patches. * 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. * FreeBSD: Available in pkg as [`www/ungoogled-chromium`](https://www.freshports.org/www/ungoogled-chromium/). * [openSUSE](https://www.opensuse.org/): Available as [`ungoogled-chromium`](https://software.opensuse.org//download.html?project=network%3Achromium&package=ungoogled-chromium). If your GNU/Linux distribution is not listed, there are distro-independent builds available via the following **package managers**: * Flatpak: Available [in the Flathub repo](https://flathub.org/apps/details/io.github.ungoogled_software.ungoogled_chromium) as `io.github.ungoogled_software.ungoogled_chromium` * GNU Guix: Available as `ungoogled-chromium` * NixOS/nixpkgs: Available as `ungoogled-chromium` ### Third-party binaries If your operating system is not listed above, you can also try to [**Download binaries from here**](https://ungoogled-software.github.io/ungoogled-chromium-binaries/) *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).* These binaries are known as **contributor binaries**. ## Source Code This 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: [**Find the repo for a specific platform here**](docs/platforms.md). If 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 * `chromium_version` is the version of Chromium used in `x.x.x.x` format, and * `revision` is a number indicating the version of ungoogled-chromium for the corresponding Chromium version. Additionally, most platform-specific repos extend their tag scheme upon this one. **Building the source code**: [See docs/building.md](docs/building.md) ### Mirrors List of mirrors: * [Codeberg](https://codeberg.org): [main repo](https://codeberg.org/ungoogled-software/ungoogled-chromium) and [ungoogled-software](https://codeberg.org/ungoogled-software) ## FAQ [See the frequently-asked questions (FAQ) on the Wiki](https://ungoogled-software.github.io/ungoogled-chromium-wiki/faq) ## Building Instructions [See docs/building.md](docs/building.md) ## Design Documentation [See docs/design.md](docs/design.md) ## Contributing, Reporting, Contacting * For reporting and contacting, see [SUPPORT.md](SUPPORT.md) * 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) * For contributing (e.g. how to help, submitting changes, criteria for new features), see [docs/contributing.md](docs/contributing.md) * 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. ## Credits * [The Chromium Project](https://www.chromium.org/) * [Inox patchset](https://github.com/gcarq/inox-patchset) * [Debian](https://tracker.debian.org/pkg/chromium-browser) * [Bromite](https://github.com/bromite/bromite) * [Iridium Browser](https://iridiumbrowser.de/) * 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. ## Related Projects List of known projects that fork or use changes from ungoogled-chromium: * [Bromite](https://github.com/bromite/bromite) (Borrows some patches. Features builds for Android) * [ppc64le fork](https://github.com/leo-lb/ungoogled-chromium) (Fork with changes to build for ppc64le CPUs) ## License BSD-3-clause. See [LICENSE](LICENSE) ================================================ FILE: SUPPORT.md ================================================ # Support **Before you submit feedback, please ensure you have tried the following**: * Read the [FAQ](https://ungoogled-software.github.io/ungoogled-chromium-wiki/faq) * 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. * 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) * 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. * Read the documentation under [docs/](docs/) There are a few channels for support: * 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). * A chat room. There are two options available: * [Gitter](https://gitter.im/ungoogled-software/Lobby). It can use your GitHub account as an identity. * Matrix.org at [#ungoogled-chromium:matrix.org](https://matrix.to/#/#ungoogled-chromium:matrix.org). It has a bidirectional connection with Gitter. ## Platform-specific Support For officially-supported platforms, **please visit their issue trackers before using the issue tracker in this repository**: * Android: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-android/issues) * Arch Linux and derivatives (e.g. Manjaro): [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-archlinux/issues) * Debian & Ubuntu: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-debian/issues) * Fedora & CentOS: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-fedora/issues) * Flatpak: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-flatpak/issues) * Gentoo ([@PF4Public](https://github.com/PF4Public)'s overlay): [Issue tracker](https://github.com/PF4Public/gentoo-overlay/issues?q=is%3Aissue++ungoogled-chromium+) * macOS: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-macos/issues) * Portable Linux: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-portablelinux/issues) * Windows: [Issue tracker](https://github.com/ungoogled-software/ungoogled-chromium-windows/issues) ================================================ FILE: chromium_version.txt ================================================ 146.0.7680.153 ================================================ FILE: devutils/.coveragerc ================================================ [run] branch = True parallel = True omit = tests/* [report] # Regexes for lines to exclude from consideration exclude_lines = # Have to re-enable the standard pragma pragma: no cover # Don't complain about missing debug-only code: def __repr__ if self\.debug # Don't complain if tests don't hit defensive assertion code: raise AssertionError raise NotImplementedError # Don't complain if non-runnable code isn't run: if 0: if __name__ == .__main__.: ================================================ FILE: devutils/README.md ================================================ # Developer utilities for ungoogled-chromium This is a collection of scripts written for developing on ungoogled-chromium. See the descriptions at the top of each script for more information. ================================================ FILE: devutils/__init__.py ================================================ ================================================ FILE: devutils/check_all_code.sh ================================================ #!/bin/bash # Wrapper for devutils and utils formatter, linter, and tester set -eu _root_dir=$(dirname $(dirname $(readlink -f $0))) cd ${_root_dir}/devutils printf '###### utils yapf ######\n' ./run_utils_yapf.sh printf '###### utils pylint ######\n' ./run_utils_pylint.py || ./run_utils_pylint.py --hide-fixme printf '###### utils tests ######\n' ./run_utils_tests.sh printf '### devutils yapf ######\n' ./run_devutils_yapf.sh printf '###### devutils pylint ######\n' ./run_devutils_pylint.py || ./run_devutils_pylint.py --hide-fixme printf '###### devutils tests ######\n' ./run_devutils_tests.sh ================================================ FILE: devutils/check_downloads_ini.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Run sanity checking algorithms over downloads.ini files It checks the following: * downloads.ini has the correct format (i.e. conforms to its schema) Exit codes: * 0 if no problems detected * 1 if warnings or errors occur """ import argparse import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils')) from downloads import DownloadInfo, schema sys.path.pop(0) def check_downloads_ini(downloads_ini_iter): """ Combines and checks if the the downloads.ini files provided are valid. downloads_ini_iter must be an iterable of strings to downloads.ini files. Returns True if errors occured, False otherwise. """ try: DownloadInfo(downloads_ini_iter) except schema.SchemaError: return True return False def main(): """CLI entrypoint""" root_dir = Path(__file__).resolve().parent.parent default_downloads_ini = [str(root_dir / 'downloads.ini')] parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('-d', '--downloads-ini', type=Path, nargs='*', default=default_downloads_ini, help='List of downloads.ini files to check. Default: %(default)s') args = parser.parse_args() if check_downloads_ini(args.downloads_ini): sys.exit(1) sys.exit(0) if __name__ == '__main__': main() ================================================ FILE: devutils/check_files_exist.py ================================================ #!/usr/bin/env python3 # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Checks if files in a list exist. Used for quick validation of lists in CI checks. """ import argparse import sys from pathlib import Path def main(): """CLI entrypoint""" parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('root_dir', type=Path, help='The directory to check from') parser.add_argument('input_files', type=Path, nargs='+', help='The files lists to check') args = parser.parse_args() for input_name in args.input_files: file_iter = filter( len, map(str.strip, Path(input_name).read_text(encoding='UTF-8').splitlines())) for file_name in file_iter: if not Path(args.root_dir, file_name).exists(): print(f'ERROR: Path "{file_name}" from file "{input_name}" does not exist.', file=sys.stderr) sys.exit(1) if __name__ == "__main__": main() ================================================ FILE: devutils/check_gn_flags.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Run sanity checking algorithms over GN flags It checks the following: * GN flags in flags.gn are sorted and not duplicated Exit codes: * 0 if no problems detected * 1 if warnings or errors occur """ import argparse import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils')) from _common import ENCODING, get_logger sys.path.pop(0) def check_gn_flags(gn_flags_path): """ Checks if GN flags are sorted and not duplicated. gn_flags_path is a pathlib.Path to the GN flags file to check Returns True if warnings were logged; False otherwise """ keys_seen = set() warnings = False with gn_flags_path.open(encoding=ENCODING) as file_obj: iterator = iter(file_obj.read().splitlines()) try: previous = next(iterator) except StopIteration: return warnings for current in iterator: gn_key = current.split('=')[0] if gn_key in keys_seen: get_logger().warning('In GN flags %s, "%s" appears at least twice', gn_flags_path, gn_key) warnings = True else: keys_seen.add(gn_key) if current < previous: get_logger().warning('In GN flags %s, "%s" should be sorted before "%s"', gn_flags_path, current, previous) warnings = True previous = current return warnings def main(): """CLI entrypoint""" root_dir = Path(__file__).resolve().parent.parent default_flags_gn = root_dir / 'flags.gn' parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('-f', '--flags-gn', type=Path, default=default_flags_gn, help='Path to the GN flags to use. Default: %(default)s') args = parser.parse_args() if check_gn_flags(args.flags_gn): sys.exit(1) sys.exit(0) if __name__ == '__main__': main() ================================================ FILE: devutils/check_patch_files.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Run sanity checking algorithms over ungoogled-chromium's patch files It checks the following: * All patches exist * All patches are referenced by the patch order Exit codes: * 0 if no problems detected * 1 if warnings or errors occur """ import argparse import sys from pathlib import Path from third_party import unidiff sys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils')) from _common import ENCODING, get_logger, parse_series # pylint: disable=wrong-import-order sys.path.pop(0) # File suffixes to ignore for checking unused patches _PATCHES_IGNORE_SUFFIXES = {'.md'} def _read_series_file(patches_dir, series_file, join_dir=False): """ Returns a generator over the entries in the series file patches_dir is a pathlib.Path to the directory of patches series_file is a pathlib.Path relative to patches_dir join_dir indicates if the patches_dir should be joined with the series entries """ for entry in parse_series(patches_dir / series_file): if join_dir: yield patches_dir / entry else: yield entry def check_patch_readability(patches_dir, series_path=Path('series')): """ Check if the patches from iterable patch_path_iter are readable. Patches that are not are logged to stdout. Returns True if warnings occured, False otherwise. """ warnings = False for patch_path in _read_series_file(patches_dir, series_path, join_dir=True): if patch_path.exists(): with patch_path.open(encoding=ENCODING) as file_obj: try: unidiff.PatchSet(file_obj.read()) except unidiff.errors.UnidiffParseError: get_logger().exception('Could not parse patch: %s', patch_path) warnings = True continue else: get_logger().warning('Patch not found: %s', patch_path) warnings = True return warnings def check_unused_patches(patches_dir, series_path=Path('series')): """ Checks if there are unused patches in patch_dir from series file series_path. Unused patches are logged to stdout. patches_dir is a pathlib.Path to the directory of patches series_path is a pathlib.Path to the series file relative to the patches_dir Returns True if there are unused patches; False otherwise. """ unused_patches = set() for path in patches_dir.rglob('*'): if path.is_dir(): continue if path.suffix in _PATCHES_IGNORE_SUFFIXES: continue unused_patches.add(str(path.relative_to(patches_dir))) unused_patches -= set(_read_series_file(patches_dir, series_path)) unused_patches.remove(str(series_path)) logger = get_logger() for entry in sorted(unused_patches): logger.warning('Unused patch: %s', entry) return bool(unused_patches) def check_series_duplicates(patches_dir, series_path=Path('series')): """ Checks if there are duplicate entries in the series file series_path is a pathlib.Path to the series file relative to the patches_dir returns True if there are duplicate entries; False otherwise. """ entries_seen = set() for entry in _read_series_file(patches_dir, series_path): if entry in entries_seen: get_logger().warning('Patch appears more than once in series: %s', entry) return True entries_seen.add(entry) return False def main(): """CLI entrypoint""" root_dir = Path(__file__).resolve().parent.parent default_patches_dir = root_dir / 'patches' parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('-p', '--patches', type=Path, default=default_patches_dir, help='Path to the patches directory to use. Default: %(default)s') args = parser.parse_args() warnings = False warnings |= check_patch_readability(args.patches) warnings |= check_series_duplicates(args.patches) warnings |= check_unused_patches(args.patches) if warnings: sys.exit(1) sys.exit(0) if __name__ == '__main__': main() ================================================ FILE: devutils/print_tag_version.sh ================================================ _root_dir=$(dirname $(dirname $(readlink -f $0))) printf '%s-%s' $(cat $_root_dir/chromium_version.txt) $(cat $_root_dir/revision.txt) ================================================ FILE: devutils/pytest.ini ================================================ [pytest] testpaths = tests #filterwarnings = # error # ignore::DeprecationWarning #addopts = --cov-report term-missing --hypothesis-show-statistics -p no:warnings # Live logging #log_cli=true #log_level=DEBUG addopts = -capture=all --cov=. --cov-config=.coveragerc --cov-report term-missing -p no:warnings ================================================ FILE: devutils/run_devutils_pylint.py ================================================ #!/usr/bin/env python3 # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Run Pylint over devutils""" import argparse import sys from pathlib import Path from run_other_pylint import ChangeDir, run_pylint def main(): """CLI entrypoint""" parser = argparse.ArgumentParser(description='Run Pylint over devutils') parser.add_argument('--hide-fixme', action='store_true', help='Hide "fixme" Pylint warnings.') parser.add_argument('--show-locally-disabled', action='store_true', help='Show "locally-disabled" Pylint warnings.') args = parser.parse_args() disables = [ 'wrong-import-position', 'duplicate-code', ] if args.hide_fixme: disables.append('fixme') if not args.show_locally_disabled: disables.append('locally-disabled') pylint_options = [ f"--disable={','.join(disables)}", '--jobs=4', '--score=n', '--persistent=n', ] ignore_prefixes = [ ('third_party', ), ] sys.path.insert(1, str(Path(__file__).resolve().parent.parent / 'utils')) sys.path.insert(2, str(Path(__file__).resolve().parent.parent / 'devutils' / 'third_party')) with ChangeDir(Path(__file__).parent): result = run_pylint( Path(), pylint_options, ignore_prefixes=ignore_prefixes, ) sys.path.pop(2) sys.path.pop(1) if not result: sys.exit(1) sys.exit(0) if __name__ == '__main__': main() ================================================ FILE: devutils/run_devutils_tests.sh ================================================ #!/bin/bash set -eu _root_dir=$(dirname $(dirname $(readlink -f $0))) cd ${_root_dir}/devutils python3 -m pytest -c ${_root_dir}/devutils/pytest.ini ================================================ FILE: devutils/run_devutils_yapf.sh ================================================ #!/bin/bash set -eu _current_dir=$(dirname $(readlink -f $0)) _root_dir=$(dirname $_current_dir) python3 -m yapf --style "$_root_dir/.style.yapf" -e '*/third_party/*' -rpi "$_current_dir" ================================================ FILE: devutils/run_other_pylint.py ================================================ #!/usr/bin/env python3 # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Run Pylint over any module""" import argparse import os import shutil import sys from pathlib import Path from pylint import lint class ChangeDir: """ Changes directory to path in with statement """ def __init__(self, path): self._path = path self._orig_path = os.getcwd() def __enter__(self): os.chdir(str(self._path)) def __exit__(self, *_): os.chdir(self._orig_path) def run_pylint(module_path, pylint_options, ignore_prefixes=tuple()): """Runs Pylint. Returns a boolean indicating success""" pylint_stats = Path(f'/run/user/{os.getuid()}/pylint_stats') if not pylint_stats.parent.is_dir(): #pylint: disable=no-member pylint_stats = Path('/run/shm/pylint_stats') os.environ['PYLINTHOME'] = str(pylint_stats) input_paths = [] if not module_path.exists(): print('ERROR: Cannot find', module_path) sys.exit(1) if module_path.is_dir(): for path in module_path.rglob('*.py'): ignore_matched = False for prefix in ignore_prefixes: if path.parts[:len(prefix)] == prefix: ignore_matched = True break if ignore_matched: continue input_paths.append(str(path)) else: input_paths.append(str(module_path)) runner = lint.Run((*input_paths, *pylint_options), do_exit=False) if pylint_stats.is_dir(): shutil.rmtree(str(pylint_stats)) if runner.linter.msg_status != 0: print('WARNING: Non-zero exit status:', runner.linter.msg_status) return False return True def main(): """CLI entrypoint""" parser = argparse.ArgumentParser(description='Run Pylint over arbitrary module') parser.add_argument('--hide-fixme', action='store_true', help='Hide "fixme" Pylint warnings.') parser.add_argument('--show-locally-disabled', action='store_true', help='Show "locally-disabled" Pylint warnings.') parser.add_argument('module_path', type=Path, help='Path to the module to check') args = parser.parse_args() if not args.module_path.exists(): print(f'ERROR: Module path "{args.module_path}" does not exist') sys.exit(1) disables = [ 'wrong-import-position', ] if args.hide_fixme: disables.append('fixme') if not args.show_locally_disabled: disables.append('locally-disabled') pylint_options = [ f"--disable={','.join(disables)}", '--jobs=4', '--score=n', '--persistent=n', ] if not run_pylint(args.module_path, pylint_options): sys.exit(1) sys.exit(0) if __name__ == '__main__': main() ================================================ FILE: devutils/run_other_yapf.sh ================================================ #!/bin/bash set -eu python3 -m yapf --style "$(dirname $(readlink -f $0))/.style.yapf" -rpi $@ ================================================ FILE: devutils/run_utils_pylint.py ================================================ #!/usr/bin/env python3 # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Run Pylint over utils""" import argparse import sys from pathlib import Path from run_other_pylint import ChangeDir, run_pylint def main(): """CLI entrypoint""" parser = argparse.ArgumentParser(description='Run Pylint over utils') parser.add_argument('--hide-fixme', action='store_true', help='Hide "fixme" Pylint warnings.') parser.add_argument('--show-locally-disabled', action='store_true', help='Show "locally-disabled" Pylint warnings.') args = parser.parse_args() pylint_options = [ '--jobs=4', '--max-args=7', '--score=n', '--persistent=n', ] if args.hide_fixme: pylint_options.append('--disable=fixme') if not args.show_locally_disabled: pylint_options.append('--disable=locally-disabled') ignore_prefixes = [ ('third_party', ), ('tests', ), ] sys.path.insert(1, str(Path(__file__).resolve().parent.parent / 'utils' / 'third_party')) sys.path.append(Path(__file__).resolve().parent.parent / 'utils') with ChangeDir(Path(__file__).resolve().parent.parent / 'utils'): result = run_pylint( Path(), pylint_options, ignore_prefixes=ignore_prefixes, ) sys.path.pop(1) if not result: sys.exit(1) sys.exit(0) if __name__ == '__main__': main() ================================================ FILE: devutils/run_utils_tests.sh ================================================ #!/bin/bash set -eu _root_dir=$(dirname $(dirname $(readlink -f $0))) cd ${_root_dir}/utils python3 -m pytest -c ${_root_dir}/utils/pytest.ini ================================================ FILE: devutils/run_utils_yapf.sh ================================================ #!/bin/bash set -eu _root_dir=$(dirname $(dirname $(readlink -f $0))) python3 -m yapf --style "$_root_dir/.style.yapf" -e '*/third_party/*' -rpi "$_root_dir/utils" ================================================ FILE: devutils/set_quilt_vars.fish ================================================ #!/bin/fish # Fish variant of set_quilt_vars.sh alias quilt='quilt --quiltrc -' set REPO_ROOT (dirname (dirname (readlink -f (status current-filename)))) set -gx QUILT_PATCHES "$REPO_ROOT/patches" set -gx QUILT_PUSH_ARGS "--color=auto" set -gx QUILT_DIFF_OPTS "--show-c-function" set -gx QUILT_PATCH_OPTS "--unified --reject-format=unified" set -gx QUILT_DIFF_ARGS "-p ab --no-timestamps --no-index --color=auto --sort" set -gx QUILT_REFRESH_ARGS "-p ab --no-timestamps --no-index --sort --strip-trailing-whitespace" set -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" set -gx QUILT_SERIES_ARGS "--color=auto" set -gx QUILT_PATCHES_ARGS "--color=auto" set -gx LC_ALL C ================================================ FILE: devutils/set_quilt_vars.sh ================================================ # Sets quilt variables for updating the patches # Make sure to run this with the shell command "source" in order to inherit the variables into the interactive environment # There is some problem with the absolute paths in QUILT_PATCHES and QUILT_SERIES breaking quilt # (refresh and diff don't read QUILT_*_ARGS, and series displays absolute paths instead of relative) # Specifying a quiltrc file fixes this, so "--quiltrc -" fixes this too. # One side effect of '--quiltrc -' is that we lose default settings from /etc/quilt.quiltrc, so they are redefined below. alias quilt='quilt --quiltrc -' # Assume this script lives within the repository REPO_ROOT=$(dirname "$(dirname "$(readlink -f "${BASH_SOURCE[0]:-${(%):-%x}}")")") export QUILT_PATCHES="$REPO_ROOT/patches" #export QUILT_SERIES=$(readlink -f "$REPO_ROOT/patches/series") # Options below borrowed from Debian and default quilt options (from /etc/quilt.quiltrc on Debian) export QUILT_PUSH_ARGS="--color=auto" export QUILT_DIFF_OPTS="--show-c-function" export QUILT_PATCH_OPTS="--unified --reject-format=unified" export QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto --sort" export QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index --sort --strip-trailing-whitespace" export QUILT_COLORS="diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33" export QUILT_SERIES_ARGS="--color=auto" export QUILT_PATCHES_ARGS="--color=auto" export LC_ALL=C # When non-default less options are used, add the -R option so that less outputs # ANSI color escape codes "raw". [ -n "$LESS" -a -z "${QUILT_PAGER+x}" ] && export QUILT_PAGER="less -FRX" ================================================ FILE: devutils/tests/__init__.py ================================================ ================================================ FILE: devutils/tests/test_check_patch_files.py ================================================ # -*- coding: UTF-8 -*- # Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Test check_patch_files.py""" import logging import tempfile import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent.parent.parent / 'utils')) from _common import ENCODING, get_logger, set_logging_level sys.path.pop(0) sys.path.insert(0, str(Path(__file__).resolve().parent.parent)) from check_patch_files import check_series_duplicates sys.path.pop(0) def test_check_series_duplicates(): """Test check_series_duplicates""" set_logging_level(logging.DEBUG) with tempfile.TemporaryDirectory() as tmpdirname: patches_dir = Path(tmpdirname) series_path = Path(tmpdirname, 'series') get_logger().info('Check no duplicates') series_path.write_text('\n'.join([ 'a.patch', 'b.patch', 'c.patch', ]), encoding=ENCODING) assert not check_series_duplicates(patches_dir) get_logger().info('Check duplicates') series_path.write_text('\n'.join([ 'a.patch', 'b.patch', 'c.patch', 'a.patch', ]), encoding=ENCODING) assert check_series_duplicates(patches_dir) if __name__ == '__main__': test_check_series_duplicates() ================================================ FILE: devutils/tests/test_validate_patches.py ================================================ # -*- coding: UTF-8 -*- # Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Test validate_patches.py""" import logging import tempfile import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent.parent.parent / 'utils')) from _common import ENCODING, get_logger, set_logging_level sys.path.pop(0) sys.path.insert(0, str(Path(__file__).resolve().parent.parent)) import validate_patches sys.path.pop(0) def test_test_patches(): """Test _dry_check_patched_file""" #pylint: disable=protected-access set_logging_level(logging.DEBUG) orig_file_content = """bye world""" series_iter = ['test.patch'] def _run_test_patches(patch_content): with tempfile.TemporaryDirectory() as tmpdirname: Path(tmpdirname, 'foobar.txt').write_text(orig_file_content, encoding=ENCODING) Path(tmpdirname, 'test.patch').write_text(patch_content, encoding=ENCODING) _, patch_cache = validate_patches._load_all_patches(series_iter, Path(tmpdirname)) required_files = validate_patches._get_required_files(patch_cache) files_under_test = validate_patches._retrieve_local_files(required_files, Path(tmpdirname)) return validate_patches._test_patches(series_iter, patch_cache, files_under_test) get_logger().info('Check valid modification') patch_content = """--- a/foobar.txt +++ b/foobar.txt @@ -1 +1 @@ -bye world +hello world """ assert not _run_test_patches(patch_content) get_logger().info('Check invalid modification') patch_content = """--- a/foobar.txt +++ b/foobar.txt @@ -1 +1 @@ -hello world +olleh world """ assert _run_test_patches(patch_content) get_logger().info('Check correct removal') patch_content = """--- a/foobar.txt +++ /dev/null @@ -1 +0,0 @@ -bye world """ assert not _run_test_patches(patch_content) get_logger().info('Check incorrect removal') patch_content = """--- a/foobar.txt +++ /dev/null @@ -1 +0,0 @@ -this line does not exist in foobar """ assert _run_test_patches(patch_content) if __name__ == '__main__': test_test_patches() ================================================ FILE: devutils/third_party/README.md ================================================ This directory contains third-party libraries used by devutils. Contents: * [python-unidiff](https://github.com/matiasb/python-unidiff) * For parsing and modifying unified diffs. ================================================ FILE: devutils/third_party/__init__.py ================================================ ================================================ FILE: devutils/third_party/unidiff/__init__.py ================================================ # -*- coding: utf-8 -*- # The MIT License (MIT) # Copyright (c) 2014-2017 Matias Bordese # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. """Unidiff parsing library.""" from __future__ import unicode_literals from . import __version__ from .patch import ( DEFAULT_ENCODING, LINE_TYPE_ADDED, LINE_TYPE_CONTEXT, LINE_TYPE_REMOVED, Hunk, PatchedFile, PatchSet, UnidiffParseError, ) VERSION = __version__.__version__ ================================================ FILE: devutils/third_party/unidiff/__version__.py ================================================ # -*- coding: utf-8 -*- # The MIT License (MIT) # Copyright (c) 2014-2017 Matias Bordese # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. __version__ = '0.5.5' ================================================ FILE: devutils/third_party/unidiff/constants.py ================================================ # -*- coding: utf-8 -*- # The MIT License (MIT) # Copyright (c) 2014-2017 Matias Bordese # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. """Useful constants and regexes used by the package.""" from __future__ import unicode_literals import re RE_SOURCE_FILENAME = re.compile( r'^--- (?P[^\t\n]+)(?:\t(?P[^\n]+))?') RE_TARGET_FILENAME = re.compile( r'^\+\+\+ (?P[^\t\n]+)(?:\t(?P[^\n]+))?') # @@ (source offset, length) (target offset, length) @@ (section header) RE_HUNK_HEADER = re.compile( r"^@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))?\ @@[ ]?(.*)") # kept line (context) # \n empty line (treat like context) # + added line # - deleted line # \ No newline case RE_HUNK_BODY_LINE = re.compile( r'^(?P[- \+\\])(?P.*)', re.DOTALL) RE_HUNK_EMPTY_BODY_LINE = re.compile( r'^(?P[- \+\\]?)(?P[\r\n]{1,2})', re.DOTALL) RE_NO_NEWLINE_MARKER = re.compile(r'^\\ No newline at end of file') DEFAULT_ENCODING = 'UTF-8' LINE_TYPE_ADDED = '+' LINE_TYPE_REMOVED = '-' LINE_TYPE_CONTEXT = ' ' LINE_TYPE_EMPTY = '' LINE_TYPE_NO_NEWLINE = '\\' LINE_VALUE_NO_NEWLINE = ' No newline at end of file' ================================================ FILE: devutils/third_party/unidiff/errors.py ================================================ # -*- coding: utf-8 -*- # The MIT License (MIT) # Copyright (c) 2014-2017 Matias Bordese # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. """Errors and exceptions raised by the package.""" from __future__ import unicode_literals class UnidiffParseError(Exception): """Exception when parsing the unified diff data.""" ================================================ FILE: devutils/third_party/unidiff/patch.py ================================================ # -*- coding: utf-8 -*- # The MIT License (MIT) # Copyright (c) 2014-2017 Matias Bordese # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE # OR OTHER DEALINGS IN THE SOFTWARE. """Classes used by the unified diff parser to keep the diff data.""" from __future__ import unicode_literals import codecs import sys from .constants import ( DEFAULT_ENCODING, LINE_TYPE_ADDED, LINE_TYPE_CONTEXT, LINE_TYPE_EMPTY, LINE_TYPE_REMOVED, LINE_TYPE_NO_NEWLINE, LINE_VALUE_NO_NEWLINE, RE_HUNK_BODY_LINE, RE_HUNK_EMPTY_BODY_LINE, RE_HUNK_HEADER, RE_SOURCE_FILENAME, RE_TARGET_FILENAME, RE_NO_NEWLINE_MARKER, ) from .errors import UnidiffParseError PY2 = sys.version_info[0] == 2 if PY2: from StringIO import StringIO open_file = codecs.open make_str = lambda x: x.encode(DEFAULT_ENCODING) def implements_to_string(cls): cls.__unicode__ = cls.__str__ cls.__str__ = lambda x: x.__unicode__().encode(DEFAULT_ENCODING) return cls else: from io import StringIO open_file = open make_str = str implements_to_string = lambda x: x unicode = str basestring = str @implements_to_string class Line(object): """A diff line.""" def __init__(self, value, line_type, source_line_no=None, target_line_no=None, diff_line_no=None): super(Line, self).__init__() self.source_line_no = source_line_no self.target_line_no = target_line_no self.diff_line_no = diff_line_no self.line_type = line_type self.value = value def __repr__(self): return make_str("") % (self.line_type, self.value) def __str__(self): return "%s%s" % (self.line_type, self.value) def __eq__(self, other): return (self.source_line_no == other.source_line_no and self.target_line_no == other.target_line_no and self.diff_line_no == other.diff_line_no and self.line_type == other.line_type and self.value == other.value) @property def is_added(self): return self.line_type == LINE_TYPE_ADDED @property def is_removed(self): return self.line_type == LINE_TYPE_REMOVED @property def is_context(self): return self.line_type == LINE_TYPE_CONTEXT @implements_to_string class PatchInfo(list): """Lines with extended patch info. Format of this info is not documented and it very much depends on patch producer. """ def __repr__(self): value = "" % self[0].strip() return make_str(value) def __str__(self): return ''.join(unicode(line) for line in self) @implements_to_string class Hunk(list): """Each of the modified blocks of a file.""" def __init__(self, src_start=0, src_len=0, tgt_start=0, tgt_len=0, section_header=''): if src_len is None: src_len = 1 if tgt_len is None: tgt_len = 1 self.added = 0 # number of added lines self.removed = 0 # number of removed lines self.source = [] self.source_start = int(src_start) self.source_length = int(src_len) self.target = [] self.target_start = int(tgt_start) self.target_length = int(tgt_len) self.section_header = section_header def __repr__(self): value = "" % (self.source_start, self.source_length, self.target_start, self.target_length, self.section_header) return make_str(value) def __str__(self): # section header is optional and thus we output it only if it's present head = "@@ -%d,%d +%d,%d @@%s\n" % ( self.source_start, self.source_length, self.target_start, self.target_length, ' ' + self.section_header if self.section_header else '') content = ''.join(unicode(line) for line in self) return head + content def append(self, line): """Append the line to hunk, and keep track of source/target lines.""" super(Hunk, self).append(line) s = str(line) if line.is_added: self.added += 1 self.target.append(s) elif line.is_removed: self.removed += 1 self.source.append(s) elif line.is_context: self.target.append(s) self.source.append(s) def is_valid(self): """Check hunk header data matches entered lines info.""" return (len(self.source) == self.source_length and len(self.target) == self.target_length) def source_lines(self): """Hunk lines from source file (generator).""" return (l for l in self if l.is_context or l.is_removed) def target_lines(self): """Hunk lines from target file (generator).""" return (l for l in self if l.is_context or l.is_added) class PatchedFile(list): """Patch updated file, it is a list of Hunks.""" def __init__(self, patch_info=None, source='', target='', source_timestamp=None, target_timestamp=None): super(PatchedFile, self).__init__() self.patch_info = patch_info self.source_file = source self.source_timestamp = source_timestamp self.target_file = target self.target_timestamp = target_timestamp def __repr__(self): return make_str("") % make_str(self.path) def __str__(self): # patch info is optional info = '' if self.patch_info is None else str(self.patch_info) source = "--- %s%s\n" % ( self.source_file, '\t' + self.source_timestamp if self.source_timestamp else '') target = "+++ %s%s\n" % ( self.target_file, '\t' + self.target_timestamp if self.target_timestamp else '') hunks = ''.join(unicode(hunk) for hunk in self) return info + source + target + hunks def _parse_hunk(self, header, diff, encoding): """Parse hunk details.""" header_info = RE_HUNK_HEADER.match(header) hunk_info = header_info.groups() hunk = Hunk(*hunk_info) source_line_no = hunk.source_start target_line_no = hunk.target_start expected_source_end = source_line_no + hunk.source_length expected_target_end = target_line_no + hunk.target_length for diff_line_no, line in diff: if encoding is not None: line = line.decode(encoding) valid_line = RE_HUNK_EMPTY_BODY_LINE.match(line) if not valid_line: valid_line = RE_HUNK_BODY_LINE.match(line) if not valid_line: raise UnidiffParseError('Hunk diff line expected: %s' % line) line_type = valid_line.group('line_type') if line_type == LINE_TYPE_EMPTY: line_type = LINE_TYPE_CONTEXT value = valid_line.group('value') original_line = Line(value, line_type=line_type) if line_type == LINE_TYPE_ADDED: original_line.target_line_no = target_line_no target_line_no += 1 elif line_type == LINE_TYPE_REMOVED: original_line.source_line_no = source_line_no source_line_no += 1 elif line_type == LINE_TYPE_CONTEXT: original_line.target_line_no = target_line_no target_line_no += 1 original_line.source_line_no = source_line_no source_line_no += 1 elif line_type == LINE_TYPE_NO_NEWLINE: pass else: original_line = None # stop parsing if we got past expected number of lines if (source_line_no > expected_source_end or target_line_no > expected_target_end): raise UnidiffParseError('Hunk is longer than expected') if original_line: original_line.diff_line_no = diff_line_no hunk.append(original_line) # if hunk source/target lengths are ok, hunk is complete if (source_line_no == expected_source_end and target_line_no == expected_target_end): break # report an error if we haven't got expected number of lines if (source_line_no < expected_source_end or target_line_no < expected_target_end): raise UnidiffParseError('Hunk is shorter than expected') self.append(hunk) def _add_no_newline_marker_to_last_hunk(self): if not self: raise UnidiffParseError( 'Unexpected marker:' + LINE_VALUE_NO_NEWLINE) last_hunk = self[-1] last_hunk.append( Line(LINE_VALUE_NO_NEWLINE + '\n', line_type=LINE_TYPE_NO_NEWLINE)) def _append_trailing_empty_line(self): if not self: raise UnidiffParseError('Unexpected trailing newline character') last_hunk = self[-1] last_hunk.append(Line('\n', line_type=LINE_TYPE_EMPTY)) @property def path(self): """Return the file path abstracted from VCS.""" if (self.source_file.startswith('a/') and self.target_file.startswith('b/')): filepath = self.source_file[2:] elif (self.source_file.startswith('a/') and self.target_file == '/dev/null'): filepath = self.source_file[2:] elif (self.target_file.startswith('b/') and self.source_file == '/dev/null'): filepath = self.target_file[2:] else: filepath = self.source_file return filepath @property def added(self): """Return the file total added lines.""" return sum([hunk.added for hunk in self]) @property def removed(self): """Return the file total removed lines.""" return sum([hunk.removed for hunk in self]) @property def is_added_file(self): """Return True if this patch adds the file.""" return (len(self) == 1 and self[0].source_start == 0 and self[0].source_length == 0) @property def is_removed_file(self): """Return True if this patch removes the file.""" return (len(self) == 1 and self[0].target_start == 0 and self[0].target_length == 0) @property def is_modified_file(self): """Return True if this patch modifies the file.""" return not (self.is_added_file or self.is_removed_file) @implements_to_string class PatchSet(list): """A list of PatchedFiles.""" def __init__(self, f, encoding=None): super(PatchSet, self).__init__() # convert string inputs to StringIO objects if isinstance(f, basestring): f = self._convert_string(f, encoding) # make sure we pass an iterator object to parse data = iter(f) # if encoding is None, assume we are reading unicode data self._parse(data, encoding=encoding) def __repr__(self): return make_str('') % super(PatchSet, self).__repr__() def __str__(self): return ''.join(unicode(patched_file) for patched_file in self) def _parse(self, diff, encoding): current_file = None patch_info = None diff = enumerate(diff, 1) for unused_diff_line_no, line in diff: if encoding is not None: line = line.decode(encoding) # check for source file header is_source_filename = RE_SOURCE_FILENAME.match(line) if is_source_filename: source_file = is_source_filename.group('filename') source_timestamp = is_source_filename.group('timestamp') # reset current file current_file = None continue # check for target file header is_target_filename = RE_TARGET_FILENAME.match(line) if is_target_filename: if current_file is not None: raise UnidiffParseError('Target without source: %s' % line) target_file = is_target_filename.group('filename') target_timestamp = is_target_filename.group('timestamp') # add current file to PatchSet current_file = PatchedFile( patch_info, source_file, target_file, source_timestamp, target_timestamp) self.append(current_file) patch_info = None continue # check for hunk header is_hunk_header = RE_HUNK_HEADER.match(line) if is_hunk_header: if current_file is None: raise UnidiffParseError('Unexpected hunk found: %s' % line) current_file._parse_hunk(line, diff, encoding) continue # check for no newline marker is_no_newline = RE_NO_NEWLINE_MARKER.match(line) if is_no_newline: if current_file is None: raise UnidiffParseError('Unexpected marker: %s' % line) current_file._add_no_newline_marker_to_last_hunk() continue # sometimes hunks can be followed by empty lines if line == '\n' and current_file is not None: current_file._append_trailing_empty_line() continue # if nothing has matched above then this line is a patch info if patch_info is None: current_file = None patch_info = PatchInfo() patch_info.append(line) @classmethod def from_filename(cls, filename, encoding=DEFAULT_ENCODING, errors=None): """Return a PatchSet instance given a diff filename.""" with open_file(filename, 'r', encoding=encoding, errors=errors) as f: instance = cls(f) return instance @staticmethod def _convert_string(data, encoding=None, errors='strict'): if encoding is not None: # if encoding is given, assume bytes and decode data = unicode(data, encoding=encoding, errors=errors) return StringIO(data) @classmethod def from_string(cls, data, encoding=None, errors='strict'): """Return a PatchSet instance given a diff string.""" return cls(cls._convert_string(data, encoding, errors)) @property def added_files(self): """Return patch added files as a list.""" return [f for f in self if f.is_added_file] @property def removed_files(self): """Return patch removed files as a list.""" return [f for f in self if f.is_removed_file] @property def modified_files(self): """Return patch modified files as a list.""" return [f for f in self if f.is_modified_file] @property def added(self): """Return the patch total added lines.""" return sum([f.added for f in self]) @property def removed(self): """Return the patch total removed lines.""" return sum([f.removed for f in self]) ================================================ FILE: devutils/update_lists.py ================================================ #!/usr/bin/env python3 # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Update binary pruning and domain substitution lists automatically. It will download and unpack into the source tree as necessary. No binary pruning or domain substitution will be applied to the source tree after the process has finished. """ import argparse import os import sys from itertools import repeat from multiprocessing import Pool from pathlib import Path, PurePosixPath sys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils')) from _common import get_logger from domain_substitution import DomainRegexList, TREE_ENCODINGS from prune_binaries import CONTINGENT_PATHS sys.path.pop(0) # Encoding for output files _ENCODING = 'UTF-8' # pylint: disable=line-too-long # NOTE: Include patterns have precedence over exclude patterns # pathlib.Path.match() paths to include in binary pruning PRUNING_INCLUDE_PATTERNS = [ 'components/domain_reliability/baked_in_configs/*', # Removals for patches/core/ungoogled-chromium/remove-unused-preferences-fields.patch 'components/safe_browsing/core/common/safe_browsing_prefs.cc', 'components/safe_browsing/core/common/safe_browsing_prefs.h', 'components/signin/public/base/signin_pref_names.cc', 'components/signin/public/base/signin_pref_names.h', ] # pathlib.Path.match() paths to exclude from binary pruning PRUNING_EXCLUDE_PATTERNS = [ 'chrome/common/win/eventlog_messages.mc', # TODO: False positive textfile # Exclusions for DOM distiller (contains model data only) 'components/dom_distiller/core/data/distillable_page_model_new.bin', 'components/dom_distiller/core/data/long_page_model.bin', # Exclusions for GeoLanguage data # Details: https://docs.google.com/document/d/18WqVHz5F9vaUiE32E8Ge6QHmku2QSJKvlqB9JjnIM-g/edit # Introduced with: https://chromium.googlesource.com/chromium/src/+/6647da61 'components/language/content/browser/ulp_language_code_locator/geolanguage-data_rank0.bin', 'components/language/content/browser/ulp_language_code_locator/geolanguage-data_rank1.bin', 'components/language/content/browser/ulp_language_code_locator/geolanguage-data_rank2.bin', # Exclusion for required prebuilt object for Windows arm64 builds 'third_party/crashpad/crashpad/util/misc/capture_context_win_arm64.obj', 'third_party/icu/common/icudtl.dat', # Exclusion for ICU data # Exclusion for Android 'build/android/chromium-debug.keystore', 'third_party/icu/android/icudtl.dat', 'third_party/icu/common/icudtb.dat', # Exclusion for rollup v4.0+ 'third_party/node/node_modules/@rollup/wasm-node/dist/wasm-node/bindings_wasm_bg.wasm', # Exclusion for performance tracing 'third_party/perfetto/src/trace_processor/importers/proto/atoms.descriptor', # Exclusion for zoneinfo64 'third_party/rust/chromium_crates_io/vendor/zoneinfo64-v0_2/src/data/zoneinfo64.res', # Exclusions for safe file extensions '*.avif', '*.ttf', '*.png', '*.jpg', '*.webp', '*.gif', '*.ico', '*.mp3', '*.wav', '*.flac', '*.car', '*.icns', '*.woff', '*.woff2', '*makefile', '*.profdata', '*.xcf', '*.cur', '*.pdf', '*.ai', '*.h', '*.c', '*.cpp', '*.cc', '*.mk', '*.bmp', '*.py', '*.xml', '*.html', '*.js', '*.json', '*.txt', '*.binarypb', '*.xtb' ] # NOTE: Domain substitution path prefix exclusion has precedence over inclusion patterns # Paths to exclude by prefixes of the POSIX representation for domain substitution DOMAIN_EXCLUDE_PREFIXES = [ 'components/test/', 'net/http/transport_security_state_static.json', 'net/http/transport_security_state_static_pins.json', # Exclusions for Visual Studio Project generation with GN (PR #445) 'tools/gn/', # Exclusions for files covered with other patches/unnecessary 'third_party/search_engines_data/resources/definitions/prepopulated_engines.json', 'third_party/blink/renderer/core/dom/document.cc', # Exclusion to allow download of sysroots 'build/linux/sysroot_scripts/sysroots.json', # Licenses and credits 'tools/licenses/licenses.py', ] # pylint: enable=line-too-long # pathlib.Path.match() patterns to include in domain substitution DOMAIN_INCLUDE_PATTERNS = [ '*.h', '*.hh', '*.hpp', '*.hxx', '*.cc', '*.cpp', '*.cxx', '*.c', '*.h', '*.json', '*.js', '*.html', '*.htm', '*.css', '*.py*', '*.grd*', '*.sql', '*.idl', '*.mk', '*.gyp*', 'makefile', '*.ts', '*.txt', '*.xml', '*.mm', '*.jinja*', '*.gn', '*.gni' ] # Binary-detection constant _TEXTCHARS = bytearray({7, 8, 9, 10, 12, 13, 27} | set(range(0x20, 0x100)) - {0x7f}) class UnusedPatterns: #pylint: disable=too-few-public-methods """Tracks unused prefixes and patterns""" _all_names = ('pruning_include_patterns', 'pruning_exclude_patterns', 'domain_include_patterns', 'domain_exclude_prefixes') def __init__(self): # Initialize all tracked patterns and prefixes in sets # Users will discard elements that are used for name in self._all_names: setattr(self, name, set(globals()[name.upper()])) def log_unused(self, error=True): """ Logs unused patterns and prefixes Returns True if there are unused patterns or prefixes; False otherwise """ have_unused = False log = get_logger().error if error else get_logger().info for name in self._all_names: current_set = getattr(self, name, None) if current_set: log('Unused from %s: %s', name.upper(), current_set) have_unused = True return have_unused def _is_binary(bytes_data): """ Returns True if the data seems to be binary data (i.e. not human readable); False otherwise """ # From: https://stackoverflow.com/a/7392391 return bool(bytes_data.translate(None, _TEXTCHARS)) def _dir_empty(path): """ Returns True if the directory is empty; False otherwise path is a pathlib.Path or string to a directory to test. """ try: next(os.scandir(str(path))) except StopIteration: return True return False def should_prune(path, relative_path, used_pep_set, used_pip_set): """ Returns True if a path should be pruned from the source tree; False otherwise path is the pathlib.Path to the file from the current working directory. relative_path is the pathlib.Path to the file from the source tree used_pep_set is a list of PRUNING_EXCLUDE_PATTERNS that have been matched used_pip_set is a list of PRUNING_INCLUDE_PATTERNS that have been matched """ # Match against include patterns for pattern in filter(relative_path.match, PRUNING_INCLUDE_PATTERNS): used_pip_set.add(pattern) return True # Match against exclude patterns for pattern in filter(Path(str(relative_path).lower()).match, PRUNING_EXCLUDE_PATTERNS): used_pep_set.add(pattern) return False # Do binary data detection with path.open('rb') as file_obj: if _is_binary(file_obj.read()): return True # Passed all filtering; do not prune return False def _check_regex_match(file_path, search_regex): """ Returns True if a regex pattern matches a file; False otherwise file_path is a pathlib.Path to the file to test search_regex is a compiled regex object to search for domain names """ with file_path.open("rb") as file_obj: file_bytes = file_obj.read() content = None for encoding in TREE_ENCODINGS: try: content = file_bytes.decode(encoding) break except UnicodeDecodeError: continue if not search_regex.search(content) is None: return True return False def should_domain_substitute(path, relative_path, search_regex, used_dep_set, used_dip_set): """ Returns True if a path should be domain substituted in the source tree; False otherwise path is the pathlib.Path to the file from the current working directory. relative_path is the pathlib.Path to the file from the source tree. used_dep_set is a list of DOMAIN_EXCLUDE_PREFIXES that have been matched used_dip_set is a list of DOMAIN_INCLUDE_PATTERNS that have been matched """ relative_path_posix = relative_path.as_posix().lower() for include_pattern in DOMAIN_INCLUDE_PATTERNS: if PurePosixPath(relative_path_posix).match(include_pattern): used_dip_set.add(include_pattern) for exclude_prefix in DOMAIN_EXCLUDE_PREFIXES: if relative_path_posix.startswith(exclude_prefix): used_dep_set.add(exclude_prefix) return False # Skip LICENSE.* files so that they remain untouched. for license_path in ['license', 'license.txt', 'license.html']: if relative_path_posix.endswith('/' + license_path): return False return _check_regex_match(path, search_regex) return False def compute_lists_proc(path, source_tree, search_regex): """ Adds the path to appropriate lists to be used by compute_lists. path is the pathlib.Path to the file from the current working directory. source_tree is a pathlib.Path to the source tree search_regex is a compiled regex object to search for domain names """ used_pep_set = set() # PRUNING_EXCLUDE_PATTERNS used_pip_set = set() # PRUNING_INCLUDE_PATTERNS used_dep_set = set() # DOMAIN_EXCLUDE_PREFIXES used_dip_set = set() # DOMAIN_INCLUDE_PATTERNS pruning_set = set() domain_substitution_set = set() symlink_set = set() if path.is_file(): relative_path = path.relative_to(source_tree) if not any(str(relative_path.as_posix()).startswith(cpath) for cpath in CONTINGENT_PATHS): if path.is_symlink(): try: resolved_relative_posix = path.resolve().relative_to(source_tree).as_posix() symlink_set.add((resolved_relative_posix, relative_path.as_posix())) except ValueError: # Symlink leads out of the source tree pass elif not any(skip in ('.git', '__pycache__', 'uc_staging') for skip in path.parts): try: if should_prune(path, relative_path, used_pep_set, used_pip_set): pruning_set.add(relative_path.as_posix()) elif should_domain_substitute(path, relative_path, search_regex, used_dep_set, used_dip_set): domain_substitution_set.add(relative_path.as_posix()) except: #pylint: disable=bare-except get_logger().exception('Unhandled exception while processing %s', relative_path) return (used_pep_set, used_pip_set, used_dep_set, used_dip_set, pruning_set, domain_substitution_set, symlink_set) def compute_lists(source_tree, search_regex, processes): # pylint: disable=too-many-locals """ Compute the binary pruning and domain substitution lists of the source tree. Returns a tuple of three items in the following order: 1. The sorted binary pruning list 2. The sorted domain substitution list 3. An UnusedPatterns object source_tree is a pathlib.Path to the source tree search_regex is a compiled regex object to search for domain names processes is the maximum number of worker processes to create """ pruning_set = set() domain_substitution_set = set() symlink_set = set() # POSIX resolved path -> set of POSIX symlink paths source_tree = source_tree.resolve() unused_patterns = UnusedPatterns() # Launch multiple processes iterating over the source tree with Pool(processes) as procpool: returned_data = procpool.starmap( compute_lists_proc, zip(source_tree.rglob('*'), repeat(source_tree), repeat(search_regex))) # Handle the returned data for (used_pep_set, used_pip_set, used_dep_set, used_dip_set, returned_pruning_set, returned_domain_sub_set, returned_symlink_set) in returned_data: # pragma pylint: disable=no-member unused_patterns.pruning_exclude_patterns.difference_update(used_pep_set) unused_patterns.pruning_include_patterns.difference_update(used_pip_set) unused_patterns.domain_exclude_prefixes.difference_update(used_dep_set) unused_patterns.domain_include_patterns.difference_update(used_dip_set) # pragma pylint: enable=no-member pruning_set.update(returned_pruning_set) domain_substitution_set.update(returned_domain_sub_set) symlink_set.update(returned_symlink_set) # Prune symlinks for pruned files for (resolved, symlink) in symlink_set: if resolved in pruning_set: pruning_set.add(symlink) return sorted(pruning_set), sorted(domain_substitution_set), unused_patterns def main(args_list=None): """CLI entrypoint""" parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('--pruning', metavar='PATH', type=Path, default='pruning.list', help='The path to store pruning.list. Default: %(default)s') parser.add_argument('--domain-substitution', metavar='PATH', type=Path, default='domain_substitution.list', help='The path to store domain_substitution.list. Default: %(default)s') parser.add_argument('--domain-regex', metavar='PATH', type=Path, default='domain_regex.list', help='The path to domain_regex.list. Default: %(default)s') parser.add_argument('-t', '--tree', metavar='PATH', type=Path, required=True, help='The path to the source tree to use.') parser.add_argument( '--processes', metavar='NUM', type=int, default=None, help= 'The maximum number of worker processes to create. Defaults to the number of system CPUs.') parser.add_argument('--domain-exclude-prefix', metavar='PREFIX', type=str, action='append', help='Additional exclusion for domain_substitution.list.') parser.add_argument('--no-error-unused', action='store_false', dest='error_unused', help='Do not treat unused patterns/prefixes as an error.') args = parser.parse_args(args_list) if args.domain_exclude_prefix is not None: DOMAIN_EXCLUDE_PREFIXES.extend(args.domain_exclude_prefix) if args.tree.exists() and not _dir_empty(args.tree): get_logger().info('Using existing source tree at %s', args.tree) else: get_logger().error('No source tree found. Aborting.') sys.exit(1) get_logger().info('Computing lists...') pruning_set, domain_substitution_set, unused_patterns = compute_lists( args.tree, DomainRegexList(args.domain_regex).search_regex, args.processes) with args.pruning.open('w', encoding=_ENCODING) as file_obj: file_obj.writelines(f'{line}\n' for line in pruning_set) with args.domain_substitution.open('w', encoding=_ENCODING) as file_obj: file_obj.writelines(f'{line}\n' for line in domain_substitution_set) if unused_patterns.log_unused(args.error_unused) and args.error_unused: get_logger().error('Please update or remove unused patterns and/or prefixes. ' 'The lists have still been updated with the remaining valid entries.') sys.exit(1) if __name__ == "__main__": main() ================================================ FILE: devutils/update_platform_patches.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Utility to ease the updating of platform patches against ungoogled-chromium's patches """ import argparse import os import shutil import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils')) from _common import ENCODING, get_logger from patches import merge_patches sys.path.pop(0) _SERIES = 'series' _SERIES_ORIG = 'series.orig' _SERIES_PREPEND = 'series.prepend' _SERIES_MERGED = 'series.merged' def merge_platform_patches(platform_patches_dir, prepend_patches_dir): ''' Prepends prepend_patches_dir into platform_patches_dir Returns True if successful, False otherwise ''' if not (platform_patches_dir / _SERIES).exists(): get_logger().error('Unable to find platform series file: %s', platform_patches_dir / _SERIES) return False # Make series.orig file shutil.copyfile(str(platform_patches_dir / _SERIES), str(platform_patches_dir / _SERIES_ORIG)) # Make series.prepend shutil.copyfile(str(prepend_patches_dir / _SERIES), str(platform_patches_dir / _SERIES_PREPEND)) # Merge patches merge_patches([prepend_patches_dir], platform_patches_dir, prepend=True) (platform_patches_dir / _SERIES).replace(platform_patches_dir / _SERIES_MERGED) return True def _dir_empty(path): ''' Returns True if the directory exists and is empty; False otherwise ''' try: next(os.scandir(str(path))) except StopIteration: return True except FileNotFoundError: pass return False def _rename_files_with_dirs(root_dir, source_dir, sorted_file_iter): ''' Moves a list of sorted files back to their original location, removing empty directories along the way ''' past_parent = None for partial_path in sorted_file_iter: complete_path = Path(root_dir, partial_path) complete_source_path = Path(source_dir, partial_path) try: complete_path.rename(complete_source_path) except FileNotFoundError: get_logger().warning('Could not move prepended patch: %s', complete_path) if past_parent != complete_path.parent: while past_parent and _dir_empty(past_parent): past_parent.rmdir() past_parent = past_parent.parent past_parent = complete_path.parent # Handle last path's directory while _dir_empty(complete_path.parent): complete_path.parent.rmdir() complete_path = complete_path.parent def unmerge_platform_patches(platform_patches_dir, prepend_patches_dir): ''' Undo merge_platform_patches(), adding any new patches from series.merged as necessary Returns True if successful, False otherwise ''' if not (platform_patches_dir / _SERIES_PREPEND).exists(): get_logger().error('Unable to find series.prepend at: %s', platform_patches_dir / _SERIES_PREPEND) return False prepend_series = set( filter(len, (platform_patches_dir / _SERIES_PREPEND).read_text(encoding=ENCODING).splitlines())) # Move prepended files back to original location, preserving changes _rename_files_with_dirs(platform_patches_dir, prepend_patches_dir, sorted(prepend_series)) # Determine positions of blank spaces in series.orig if not (platform_patches_dir / _SERIES_ORIG).exists(): get_logger().error('Unable to find series.orig at: %s', platform_patches_dir / _SERIES_ORIG) return False orig_series = (platform_patches_dir / _SERIES_ORIG).read_text(encoding=ENCODING).splitlines() # patch path -> list of lines after patch path and before next patch path path_comments = {} # patch path -> inline comment for patch path_inline_comments = {} previous_path = None for partial_path in orig_series: if not partial_path or partial_path.startswith('#'): if partial_path not in path_comments: path_comments[previous_path] = [] path_comments[previous_path].append(partial_path) else: path_parts = partial_path.split(' #', maxsplit=1) previous_path = path_parts[0] if len(path_parts) == 2: path_inline_comments[path_parts[0]] = path_parts[1] # Apply changes on series.merged into a modified version of series.orig if not (platform_patches_dir / _SERIES_MERGED).exists(): get_logger().error('Unable to find series.merged at: %s', platform_patches_dir / _SERIES_MERGED) return False new_series = filter(len, (platform_patches_dir / _SERIES_MERGED).read_text(encoding=ENCODING).splitlines()) new_series = filter((lambda x: x not in prepend_series), new_series) new_series = list(new_series) series_index = 0 while series_index < len(new_series): current_path = new_series[series_index] if current_path in path_inline_comments: new_series[series_index] = current_path + ' #' + path_inline_comments[current_path] if current_path in path_comments: new_series.insert(series_index + 1, '\n'.join(path_comments[current_path])) series_index += 1 series_index += 1 # Write series file with (platform_patches_dir / _SERIES).open('w', encoding=ENCODING) as series_file: series_file.write('\n'.join(new_series)) series_file.write('\n') # All other operations are successful; remove merging intermediates (platform_patches_dir / _SERIES_MERGED).unlink() (platform_patches_dir / _SERIES_ORIG).unlink() (platform_patches_dir / _SERIES_PREPEND).unlink() return True def main(): """CLI Entrypoint""" parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('command', choices=('merge', 'unmerge'), help='Merge or unmerge ungoogled-chromium patches with platform patches') parser.add_argument('platform_patches', type=Path, help='The path to the platform patches in GNU Quilt format to merge into') args = parser.parse_args() repo_dir = Path(__file__).resolve().parent.parent success = False prepend_patches_dir = repo_dir / 'patches' if args.command == 'merge': success = merge_platform_patches(args.platform_patches, prepend_patches_dir) elif args.command == 'unmerge': success = unmerge_platform_patches(args.platform_patches, prepend_patches_dir) else: raise NotImplementedError(args.command) if success: return 0 return 1 if __name__ == '__main__': sys.exit(main()) ================================================ FILE: devutils/validate_config.py ================================================ #!/usr/bin/env python3 # -*- coding: UTF-8 -*- # Copyright (c) 2019 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Run sanity checking algorithms over ungoogled-chromium's config files NOTE: This script is hardcoded to run over ungoogled-chromium's config files only. To check other files, use the other scripts imported by this script. It checks the following: * All patches exist * All patches are referenced by the patch order * Each patch is used only once * GN flags in flags.gn are sorted and not duplicated * downloads.ini has the correct format (i.e. conforms to its schema) Exit codes: * 0 if no problems detected * 1 if warnings or errors occur """ import sys from pathlib import Path from check_downloads_ini import check_downloads_ini from check_gn_flags import check_gn_flags from check_patch_files import (check_patch_readability, check_series_duplicates, check_unused_patches) def main(): """CLI entrypoint""" warnings = False root_dir = Path(__file__).resolve().parent.parent patches_dir = root_dir / 'patches' # Check patches warnings |= check_patch_readability(patches_dir) warnings |= check_series_duplicates(patches_dir) warnings |= check_unused_patches(patches_dir) # Check GN flags warnings |= check_gn_flags(root_dir / 'flags.gn') # Check downloads.ini warnings |= check_downloads_ini([root_dir / 'downloads.ini']) if warnings: sys.exit(1) sys.exit(0) if __name__ == '__main__': if sys.argv[1:]: print(__doc__) else: main() ================================================ FILE: devutils/validate_patches.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2020 The ungoogled-chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Validates that all patches apply cleanly against the source tree. The required source tree files can be retrieved from Google directly. """ import argparse import ast import base64 import email.utils import json import logging import sys import tempfile from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent / 'third_party')) import unidiff from unidiff.constants import LINE_TYPE_EMPTY, LINE_TYPE_NO_NEWLINE sys.path.pop(0) sys.path.insert(0, str(Path(__file__).resolve().parent.parent / 'utils')) from domain_substitution import TREE_ENCODINGS from _common import ENCODING, get_logger, get_chromium_version, parse_series, add_common_params from patches import dry_run_check sys.path.pop(0) try: import requests import requests.adapters import urllib3.util class _VerboseRetry(urllib3.util.Retry): """A more verbose version of HTTP Adatper about retries""" def sleep_for_retry(self, response=None): """Sleeps for Retry-After, and logs the sleep time""" if response: retry_after = self.get_retry_after(response) if retry_after: get_logger().info( 'Got HTTP status %s with Retry-After header. Retrying after %s seconds...', response.status, retry_after) else: get_logger().info( 'Could not find Retry-After header for HTTP response %s. Status reason: %s', response.status, response.reason) return super().sleep_for_retry(response) def _sleep_backoff(self): """Log info about backoff sleep""" get_logger().info('Running HTTP request sleep backoff') super()._sleep_backoff() def _get_requests_session(): session = requests.Session() http_adapter = requests.adapters.HTTPAdapter( max_retries=_VerboseRetry(total=10, read=10, connect=10, backoff_factor=8, status_forcelist=urllib3.Retry.RETRY_AFTER_STATUS_CODES, raise_on_status=False)) session.mount('http://', http_adapter) session.mount('https://', http_adapter) return session except ImportError: def _get_requests_session(): raise RuntimeError('The Python module "requests" is required for remote' 'file downloading. It can be installed from PyPI.') _ROOT_DIR = Path(__file__).resolve().parent.parent _SRC_PATH = Path('src') class _PatchValidationError(Exception): """Raised when patch validation fails""" class _UnexpectedSyntaxError(RuntimeError): """Raised when unexpected syntax is used in DEPS""" class _NotInRepoError(RuntimeError): """Raised when the remote file is not present in the given repo""" class _DepsNodeVisitor(ast.NodeVisitor): _valid_syntax_types = (ast.mod, ast.expr_context, ast.boolop, ast.Assign, ast.Add, ast.Name, ast.Dict, ast.Constant, ast.List, ast.BinOp) _allowed_callables = ('Var', ) def visit_Call(self, node): #pylint: disable=invalid-name """Override Call syntax handling""" if node.func.id not in self._allowed_callables: raise _UnexpectedSyntaxError(f'Unexpected call of "{node.func.id}" ' f'at line {node.lineno}, column {node.col_offset}') def generic_visit(self, node): for ast_type in self._valid_syntax_types: if isinstance(node, ast_type): super().generic_visit(node) return raise _UnexpectedSyntaxError(f'Unexpected {type(node).__name__} ' f'at line {node.lineno}, column {node.col_offset}') def _validate_deps(deps_text): """Returns True if the DEPS file passes validation; False otherwise""" try: _DepsNodeVisitor().visit(ast.parse(deps_text)) except _UnexpectedSyntaxError as exc: get_logger().error('%s', exc) return False return True def _deps_var(deps_globals): """Return a function that implements DEPS's Var() function""" def _var_impl(var_name): """Implementation of Var() in DEPS""" return deps_globals['vars'][var_name] return _var_impl def _parse_deps(deps_text): """Returns a dict of parsed DEPS data""" deps_globals = {'__builtins__': None} deps_globals['Var'] = _deps_var(deps_globals) exec(deps_text, deps_globals) #pylint: disable=exec-used return deps_globals def _download_googlesource_file(download_session, repo_url, version, relative_path): """ Returns the contents of the text file with path within the given googlesource.com repo as a string. """ if 'googlesource.com' not in repo_url: raise ValueError(f'Repository URL is not a googlesource.com URL: {repo_url}') full_url = repo_url + f'/+/{version}/{str(relative_path)}?format=TEXT' get_logger().debug('Downloading: %s', full_url) response = download_session.get(full_url) if response.status_code == 404: raise _NotInRepoError() response.raise_for_status() # Assume all files that need patching are compatible with UTF-8 return base64.b64decode(response.text, validate=True).decode('UTF-8') def _get_dep_value_url(deps_globals, dep_value): """Helper for _process_deps_entries""" if isinstance(dep_value, str): url = dep_value elif isinstance(dep_value, dict): if 'url' not in dep_value: # Ignore other types like CIPD since # it probably isn't necessary return None url = dep_value['url'] else: raise NotImplementedError() if '{' in url: # Probably a Python format string url = url.format(**deps_globals['vars']) if url.count('@') != 1: raise _PatchValidationError(f'Invalid number of @ symbols in URL: {url}') return url def _process_deps_entries(deps_globals, child_deps_tree, child_path, deps_use_relative_paths): """Helper for _get_child_deps_tree""" for dep_path_str, dep_value in deps_globals.get('deps', {}).items(): url = _get_dep_value_url(deps_globals, dep_value) if url is None: continue dep_path = Path(dep_path_str) if not deps_use_relative_paths: try: dep_path = Path(dep_path_str).relative_to(child_path) except ValueError: # Not applicable to the current DEPS tree path continue grandchild_deps_tree = None # Delaying creation of dict() until it's needed for recursedeps_item in deps_globals.get('recursedeps', tuple()): if isinstance(recursedeps_item, str): if recursedeps_item == str(dep_path): grandchild_deps_tree = 'DEPS' else: # Some sort of iterable recursedeps_item_path, recursedeps_item_depsfile = recursedeps_item if recursedeps_item_path == str(dep_path): grandchild_deps_tree = recursedeps_item_depsfile if grandchild_deps_tree is None: # This dep is not recursive; i.e. it is fully loaded grandchild_deps_tree = {} child_deps_tree[dep_path] = (*url.split('@'), grandchild_deps_tree) def _get_child_deps_tree(download_session, current_deps_tree, child_path, deps_use_relative_paths): """Helper for _download_source_file""" repo_url, version, child_deps_tree = current_deps_tree[child_path] if isinstance(child_deps_tree, str): # Load unloaded DEPS deps_globals = _parse_deps( _download_googlesource_file(download_session, repo_url, version, child_deps_tree)) child_deps_tree = {} current_deps_tree[child_path] = (repo_url, version, child_deps_tree) deps_use_relative_paths = deps_globals.get('use_relative_paths', False) _process_deps_entries(deps_globals, child_deps_tree, child_path, deps_use_relative_paths) return child_deps_tree, deps_use_relative_paths def _get_last_chromium_modification(): """Returns the last modification date of the chromium-browser-official tar file""" with _get_requests_session() as session: response = session.head('https://storage.googleapis.com/chromium-browser-official/' f'chromium-{get_chromium_version()}.tar.xz') response.raise_for_status() return email.utils.parsedate_to_datetime(response.headers['Last-Modified']) def _get_gitiles_git_log_date(log_entry): """Helper for _get_gitiles_git_log_date""" return email.utils.parsedate_to_datetime(log_entry['committer']['time']) def _get_gitiles_commit_before_date(repo_url, target_branch, target_datetime): """Returns the hexadecimal hash of the closest commit before target_datetime""" json_log_url = f'{repo_url}/+log/{target_branch}?format=JSON' with _get_requests_session() as session: response = session.get(json_log_url) response.raise_for_status() git_log = json.loads(response.text[5:]) # Trim closing delimiters for various structures assert len(git_log) == 2 # 'log' and 'next' entries assert 'log' in git_log assert git_log['log'] git_log = git_log['log'] # Check boundary conditions if _get_gitiles_git_log_date(git_log[0]) < target_datetime: # Newest commit is older than target datetime return git_log[0]['commit'] if _get_gitiles_git_log_date(git_log[-1]) > target_datetime: # Oldest commit is newer than the target datetime; assume oldest is close enough. get_logger().warning('Oldest entry in gitiles log for repo "%s" is newer than target; ' 'continuing with oldest entry...') return git_log[-1]['commit'] # Do binary search low_index = 0 high_index = len(git_log) - 1 mid_index = high_index while low_index != high_index: mid_index = low_index + (high_index - low_index) // 2 if _get_gitiles_git_log_date(git_log[mid_index]) > target_datetime: low_index = mid_index + 1 else: high_index = mid_index return git_log[mid_index]['commit'] class _FallbackRepoManager: """Retrieves fallback repos and caches data needed for determining repos""" _GN_REPO_URL = 'https://gn.googlesource.com/gn.git' def __init__(self): self._cache_gn_version = None @property def gn_version(self): """ Returns the version of the GN repo for the Chromium version used by this code """ if not self._cache_gn_version: # Because there seems to be no reference to the logic for generating the # chromium-browser-official tar file, it's possible that it is being generated # by an internal script that manually injects the GN repository files. # Therefore, assume that the GN version used in the chromium-browser-official tar # files correspond to the latest commit in the master branch of the GN repository # at the time of the tar file's generation. We can get an approximation for the # generation time by using the last modification date of the tar file on # Google's file server. self._cache_gn_version = _get_gitiles_commit_before_date( self._GN_REPO_URL, 'master', _get_last_chromium_modification()) return self._cache_gn_version def get_fallback(self, current_relative_path, current_node, root_deps_tree): """ Helper for _download_source_file It returns a new (repo_url, version, new_relative_path) to attempt a file download with """ assert len(current_node) == 3 # GN special processing try: new_relative_path = current_relative_path.relative_to('tools/gn') except ValueError: pass else: if current_node is root_deps_tree[_SRC_PATH]: get_logger().info('Redirecting to GN repo version %s for path: %s', self.gn_version, current_relative_path) return (self._GN_REPO_URL, self.gn_version, new_relative_path) return None, None, None def _get_target_file_deps_node(download_session, root_deps_tree, target_file): """ Helper for _download_source_file Returns the corresponding repo containing target_file based on the DEPS tree """ # The "deps" from the current DEPS file current_deps_tree = root_deps_tree current_node = None # Path relative to the current node (i.e. DEPS file) current_relative_path = Path('src', target_file) previous_relative_path = None deps_use_relative_paths = False child_path = None while current_relative_path != previous_relative_path: previous_relative_path = current_relative_path for child_path in current_deps_tree: try: current_relative_path = previous_relative_path.relative_to(child_path) except ValueError: # previous_relative_path does not start with child_path continue current_node = current_deps_tree[child_path] # current_node will match with current_deps_tree after the following statement current_deps_tree, deps_use_relative_paths = _get_child_deps_tree( download_session, current_deps_tree, child_path, deps_use_relative_paths) break assert not current_node is None return current_node, current_relative_path def _download_source_file(download_session, root_deps_tree, fallback_repo_manager, target_file): """ Downloads the source tree file from googlesource.com download_session is an active requests.Session() object deps_dir is a pathlib.Path to the directory containing a DEPS file. """ current_node, current_relative_path = _get_target_file_deps_node(download_session, root_deps_tree, target_file) # Attempt download with potential fallback logic repo_url, version, _ = current_node try: # Download with DEPS-provided repo return _download_googlesource_file(download_session, repo_url, version, current_relative_path) except _NotInRepoError: pass get_logger().debug( 'Path "%s" (relative: "%s") not found using DEPS tree; finding fallback repo...', target_file, current_relative_path) repo_url, version, current_relative_path = fallback_repo_manager.get_fallback( current_relative_path, current_node, root_deps_tree) if not repo_url: get_logger().error('No fallback repo found for "%s" (relative: "%s")', target_file, current_relative_path) raise _NotInRepoError() try: # Download with fallback repo return _download_googlesource_file(download_session, repo_url, version, current_relative_path) except _NotInRepoError: pass get_logger().error('File "%s" (relative: "%s") not found in fallback repo "%s", version "%s"', target_file, current_relative_path, repo_url, version) raise _NotInRepoError() def _initialize_deps_tree(): """ Initializes and returns a dependency tree for DEPS files The DEPS tree is a dict has the following format: key - pathlib.Path relative to the DEPS file's path value - tuple(repo_url, version, recursive dict here) repo_url is the URL to the dependency's repository root If the recursive dict is a string, then it is a string to the DEPS file to load if needed download_session is an active requests.Session() object """ root_deps_tree = { _SRC_PATH: ('https://chromium.googlesource.com/chromium/src.git', get_chromium_version(), 'DEPS') } return root_deps_tree def _retrieve_remote_files(file_iter): """ Retrieves all file paths in file_iter from Google file_iter is an iterable of strings that are relative UNIX paths to files in the Chromium source. Returns a dict of relative UNIX path strings to a list of lines in the file as strings """ files = {} root_deps_tree = _initialize_deps_tree() try: total_files = len(file_iter) except TypeError: total_files = None logger = get_logger() if total_files is None: logger.info('Downloading remote files...') else: logger.info('Downloading %d remote files...', total_files) last_progress = 0 file_count = 0 fallback_repo_manager = _FallbackRepoManager() with _get_requests_session() as download_session: download_session.stream = False # To ensure connection to Google can be reused for file_path in file_iter: if total_files: file_count += 1 current_progress = file_count * 100 // total_files // 5 * 5 if current_progress != last_progress: last_progress = current_progress logger.info('%d%% downloaded', current_progress) else: current_progress = file_count // 20 * 20 if current_progress != last_progress: last_progress = current_progress logger.info('%d files downloaded', current_progress) try: files[file_path] = _download_source_file(download_session, root_deps_tree, fallback_repo_manager, file_path).split('\n') except _NotInRepoError: get_logger().warning('Could not find "%s" remotely. Skipping...', file_path) return files def _retrieve_local_files(file_iter, source_dir): """ Retrieves all file paths in file_iter from the local source tree file_iter is an iterable of strings that are relative UNIX paths to files in the Chromium source. Returns a dict of relative UNIX path strings to a list of lines in the file as strings """ files = {} for file_path in file_iter: try: raw_content = (source_dir / file_path).read_bytes() except FileNotFoundError: get_logger().warning('Missing file from patches: %s', file_path) continue for encoding in TREE_ENCODINGS: try: content = raw_content.decode(encoding) break except UnicodeDecodeError: continue if not content: raise UnicodeDecodeError(f'Unable to decode with any encoding: {file_path}') files[file_path] = content.split('\n') if not files: get_logger().error('All files used by patches are missing!') return files def _modify_file_lines(patched_file, file_lines): """Helper for _apply_file_unidiff""" # Cursor for keeping track of the current line during hunk application # NOTE: The cursor is based on the line list index, not the line number! line_cursor = None for hunk in patched_file: # Validate hunk will match if not hunk.is_valid(): raise _PatchValidationError(f'Hunk is not valid: {repr(hunk)}') line_cursor = hunk.target_start - 1 for line in hunk: normalized_line = line.value.rstrip('\n') if line.is_added: file_lines[line_cursor:line_cursor] = (normalized_line, ) line_cursor += 1 elif line.is_removed: if normalized_line != file_lines[line_cursor]: raise _PatchValidationError(f"Line '{file_lines[line_cursor]}' does not match " f"removal line '{normalized_line}' from patch") del file_lines[line_cursor] elif line.is_context: if not normalized_line and line_cursor == len(file_lines): # We reached the end of the file break if normalized_line != file_lines[line_cursor]: raise _PatchValidationError(f"Line '{file_lines[line_cursor]}' does not match " f"context line '{normalized_line}' from patch") line_cursor += 1 else: assert line.line_type in (LINE_TYPE_EMPTY, LINE_TYPE_NO_NEWLINE) def _apply_file_unidiff(patched_file, files_under_test): """Applies the unidiff.PatchedFile to the source files under testing""" patched_file_path = Path(patched_file.path) if patched_file.is_added_file: if patched_file_path in files_under_test: assert files_under_test[patched_file_path] is None assert len(patched_file) == 1 # Should be only one hunk assert patched_file[0].removed == 0 assert patched_file[0].target_start == 1 files_under_test[patched_file_path] = [x.value.rstrip('\n') for x in patched_file[0]] elif patched_file.is_removed_file: # Remove lines to see if file to be removed matches patch _modify_file_lines(patched_file, files_under_test[patched_file_path]) files_under_test[patched_file_path] = None else: # Patching an existing file assert patched_file.is_modified_file _modify_file_lines(patched_file, files_under_test[patched_file_path]) def _dry_check_patched_file(patched_file, orig_file_content): """Run "patch --dry-check" on a unidiff.PatchedFile for diagnostics""" with tempfile.TemporaryDirectory() as tmpdirname: tmp_dir = Path(tmpdirname) # Write file to patch patched_file_path = tmp_dir / patched_file.path patched_file_path.parent.mkdir(parents=True, exist_ok=True) patched_file_path.write_text(orig_file_content) # Write patch patch_path = tmp_dir / 'broken_file.patch' patch_path.write_text(str(patched_file)) # Dry run _, dry_stdout, _ = dry_run_check(patch_path, tmp_dir) return dry_stdout def _test_patches(series_iter, patch_cache, files_under_test): """ Tests the patches specified in the iterable series_iter Returns a boolean indicating if any of the patches have failed """ for patch_path_str in series_iter: for patched_file in patch_cache[patch_path_str]: orig_file_content = None if get_logger().isEnabledFor(logging.DEBUG): orig_file_content = files_under_test.get(Path(patched_file.path)) if orig_file_content: orig_file_content = ' '.join(orig_file_content) try: _apply_file_unidiff(patched_file, files_under_test) except _PatchValidationError as exc: get_logger().warning('Patch failed validation: %s', patch_path_str) get_logger().debug('Specifically, file "%s" failed validation: %s', patched_file.path, exc) if get_logger().isEnabledFor(logging.DEBUG): # _PatchValidationError cannot be thrown when a file is added assert patched_file.is_modified_file or patched_file.is_removed_file assert orig_file_content is not None get_logger().debug( 'Output of "patch --dry-run" for this patch on this file:\n%s', _dry_check_patched_file(patched_file, orig_file_content)) return True except: #pylint: disable=bare-except get_logger().warning('Patch failed validation: %s', patch_path_str) get_logger().debug('Specifically, file "%s" caused exception while applying:', patched_file.path, exc_info=True) return True return False def _load_all_patches(series_iter, patches_dir): """ Returns a tuple of the following: - boolean indicating success or failure of reading files - dict of relative UNIX path strings to unidiff.PatchSet """ had_failure = False unidiff_dict = {} for relative_path in series_iter: if relative_path in unidiff_dict: continue unidiff_dict[relative_path] = unidiff.PatchSet.from_filename(str(patches_dir / relative_path), encoding=ENCODING) if not (patches_dir / relative_path).read_text(encoding=ENCODING).endswith('\n'): had_failure = True get_logger().warning('Patch file does not end with newline: %s', str(patches_dir / relative_path)) return had_failure, unidiff_dict def _get_required_files(patch_cache): """Returns an iterable of pathlib.Path files needed from the source tree for patching""" new_files = set() # Files introduced by patches file_set = set() for patch_set in patch_cache.values(): for patched_file in patch_set: if patched_file.is_added_file: new_files.add(patched_file.path) elif patched_file.path not in new_files: file_set.add(Path(patched_file.path)) return file_set def _get_files_under_test(args, required_files, parser): """ Helper for main to get files_under_test Exits the program if --cache-remote debugging option is used """ if args.local: files_under_test = _retrieve_local_files(required_files, args.local) else: # --remote and --cache-remote files_under_test = _retrieve_remote_files(required_files) if args.cache_remote: for file_path, file_content in files_under_test.items(): if not (args.cache_remote / file_path).parent.exists(): (args.cache_remote / file_path).parent.mkdir(parents=True) with (args.cache_remote / file_path).open('w', encoding=ENCODING) as cache_file: cache_file.write('\n'.join(file_content)) parser.exit() return files_under_test def main(): """CLI Entrypoint""" parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('-s', '--series', type=Path, metavar='FILE', default=str(Path('patches', 'series')), help='The series file listing patches to apply. Default: %(default)s') parser.add_argument('-p', '--patches', type=Path, metavar='DIRECTORY', default='patches', help='The patches directory to read from. Default: %(default)s') add_common_params(parser) file_source_group = parser.add_mutually_exclusive_group(required=True) file_source_group.add_argument( '-l', '--local', type=Path, metavar='DIRECTORY', help= 'Use a local source tree. It must be UNMODIFIED, otherwise the results will not be valid.') file_source_group.add_argument( '-r', '--remote', action='store_true', help=('Download the required source tree files from Google. ' 'This feature requires the Python module "requests". If you do not want to ' 'install this, consider using --local instead.')) file_source_group.add_argument( '-c', '--cache-remote', type=Path, metavar='DIRECTORY', help='(For debugging) Store the required remote files in an empty local directory') args = parser.parse_args() if args.cache_remote and not args.cache_remote.exists(): if args.cache_remote.parent.exists(): args.cache_remote.mkdir() else: parser.error(f'Parent of cache path {args.cache_remote} does not exist') if not args.series.is_file(): parser.error(f'--series path is not a file or not found: {args.series}') if not args.patches.is_dir(): parser.error(f'--patches path is not a directory or not found: {args.patches}') series_iterable = tuple(parse_series(args.series)) had_failure, patch_cache = _load_all_patches(series_iterable, args.patches) required_files = _get_required_files(patch_cache) files_under_test = _get_files_under_test(args, required_files, parser) had_failure |= _test_patches(series_iterable, patch_cache, files_under_test) if had_failure: get_logger().error('***FAILED VALIDATION; SEE ABOVE***') if not args.verbose: get_logger().info('(For more error details, re-run with the "-v" flag)') parser.exit(status=1) else: get_logger().info('Passed validation (%d patches total)', len(series_iterable)) if __name__ == '__main__': main() ================================================ FILE: docs/building.md ================================================ # Building ungoogled-chromium The recommended way to build ungoogled-chromium is by consulting [the repository for your supported platform (links here)](platforms.md). * *Linux users*: If your distribution is not listed, you will need to use Portable Linux. If 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. ## Integrating ungoogled-chromium into your Chromium build process Typically, 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**. **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. Before continuing, you may find it helpful to have a look through [the design documentation](design.md). The 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**. 1. Ensure Chromium is downloaded, such as by `depot_tools`. In most of our supported platforms, we instead use a custom tool to do this. ```sh mkdir -p build/download_cache ./utils/downloads.py retrieve -c build/download_cache -i downloads.ini ./utils/downloads.py unpack -c build/download_cache -i downloads.ini -- build/src ``` 2. Prune binaries ```sh ./utils/prune_binaries.py build/src pruning.list ``` 3. Apply patches ```sh ./utils/patches.py apply build/src patches ``` 4. Substitute domains ```sh ./utils/domain_substitution.py apply -r domain_regex.list -f domain_substitution.list -c build/domsubcache.tar.gz build/src ``` 5. Build GN. If you are using `depot_tools` to checkout Chromium or you already have a GN binary, you should skip this step. ```sh mkdir -p build/src/out/Default cd build/src ./tools/gn/bootstrap/bootstrap.py --skip-generate-buildfiles -j4 -o out/Default/ ``` 6. Invoke the build: ``` mkdir -p build/src/out/Default # NOTE: flags.gn contains only a subset of what is needed to run the build. cp flags.gn build/src/out/Default/args.gn cd build/src # If you have additional GN flags to add, make sure to add them now. ./out/Default/gn gen out/Default --fail-on-unused-args ninja -C out/Default chrome chromedriver chrome_sandbox ``` ## Building FAQ ### My build keeps crashing because I run out of RAM! How can I fix it? Here are several ways to address this, in decreasing order of preference: 1. Decrease the number of parallel threads to Ninja (the `-j` flag) 2. Add swap space ================================================ FILE: docs/contributing.md ================================================ # Contributing This document contains our criteria and guidelines for contributing to ungoogled-chromium. If 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. If you are a developer of an **officially-supported platform**, be sure to check out the [Platform Repository Standards and Guidelines](repo_management.md). List of contents: * [How to help](#how-to-help) * [Submitting changes](#submitting-changes) * [Criteria for new features](#criteria-for-new-features) ### How to help Generally, ungoogled-chromium needs contributors to help: * Keep up-to-date with the latest stable Chromium, and any problematic changes in the new version that needs modification. * Help with issues marked with the `help wanted` tag (usually either questions for other users, or request for help from other developers) * Review Pull Requests from other contributors * Implement feature requests ("enhancements" in the Issue Tracker), large or small. * Implement issues marked with the `backlog` tag (that are closed). * If it requires new code, please read through the [Submitting changes](#submitting-changes) section below. In addition, anyone is free to help others in need of support in the Issue Tracker. If there are fixes, tweaks, or additions you want to make, continue onto the following section. ### Submitting changes Please submit all changes via Pull Requests. Guidelines: * You are welcome to submit minor changes, such as bug fixes, documentation fixes, and tweaks. * If your change has an associated issue, please let others know that you are working on it. * If you want to submit a new feature, please read through the [Criteria for new features](#criteria-for-new-features) below. * When in doubt about the acceptance of a change, you are welcome to ask via an issue first. ### Criteria for new features 1. 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). * For larger features, please propose them via an issue first. 2. New features should live behind a setting that is **off by default**. * 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. * 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). **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. ================================================ FILE: docs/default_settings.md ================================================ # Default Settings Vanilla Chromium settings are not often changed by ungoogled-chromium, however there are some exceptions. Below is a list of the documented changes to the default Chromium settings. Setting | New State | Location -- | -- | -- Allow sites to check if you have payment methods saved | Disabled | chrome://settings/payments Ask where to save each file before downloading | Enabled | chrome://settings/downloads Auto sign-in | Disabled | chrome://settings/passwords Block third-party cookies | Enabled | chrome://settings/cookies Continue running background apps when Chromium is closed | Disabled | chrome://settings/system Hyperlink auditing (\) | Disabled | NA Link Doctor | Disabled | NA Offer to save passwords | Disabled | chrome://settings/passwords Payment autofill | Disabled | chrome://settings/payments Preload pages | Disabled | chrome://settings/performance Search suggestions | Disabled | chrome://settings/syncSetup Show bookmark bar | Enabled | chrome://settings/appearance Third-party sign-in | Disabled | `--enable-features=FedCm` WebRTC IP handling policy | Disable Non-Proxied UDP | `--webrtc-ip-handling-policy` ================================================ FILE: docs/design.md ================================================ # Design This document contains a high-level technical description of ungoogled-chromium and its components. ## Overview ungoogled-chromium consists of the following major components: * [Configuration](#configuration) * [Configuration files](#configuration-files) * [Source file processors](#source-file-processors) * [Patches](#patches) * [Packaging](#packaging) The following sections describe each component. ## Configuration Configuration is a broad term that refers to patches, build flags, and metadata about Chromium source code. It consists of the following components: * [Configuration files](#configuration-files) * [Source file processors](#source-file-processors) * [Patches](#patches) The following sections describe each component in more depth. ### Configuration Files Configuration files (or config files) are files that store build configuration and source code changes for a build. **IMPORTANT**: For consistency, all config files must be encoded in UTF-8. List of configuration files: * `chromium_version.txt` - The Chromium version used by ungoogled-chromium * `revision.txt` - The revision of the changes on top of the given Chromium version. * `pruning.list` - [See the Source File Processors section](#source-file-processors) * `domain_regex.list` - [See the Source File Processors section](#source-file-processors) * `domain_substitution.list` - [See the Source File Processors section](#source-file-processors) * `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). * `flags.gn` - GN arguments to set before building. ### Source File Processors Source file processors are utilities that directly manipulate the Chromium source tree before building. Currently, there are two such utilities: binary pruning, and domain substitution. **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. The list of files to remove are determined by the config file `pruning.list`. This config file is generated by `devutils/update_lists.py`. **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*. With 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. Similar to binary pruning, the list of files to modify are listed in `domain_substitution.list`; it is also updated with `devutils/update_lists.py`. The 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: * All replacement expressions must end in the TLD `qjz9zk`. * 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. ### Patches All 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: * All patches must reside inside `patches/` * 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. * Lines starting with the pound symbol (`#`) are ignored * For lines with patch paths: If there is a space followed by a pound symbol, the text after the patch path will be ignored. All patch files in ungoogled-chromium must satisfy these formatting requirements: * Patch filenames must end with the extension `.patch` * The content must be in [unified format](https://en.wikipedia.org/wiki/Diff_utility#Unified_format). * All paths in the hunk headers must begin after the first slash (which corresponds to the argument `-p1` for GNU patch). * All patches must apply cleanly (i.e. no fuzz). * It is recommended that hunk paths have the `a/` and `b/` prefixes, and a context of 3 (like the git default). * All patches must be encoded in UTF-8 (i.e. same encoding as config files). Patches are categorized into two directories directly under `patches/`: 1. **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. 2. **extra**: Changes to features regarding control and transparency. They are not guaranteed to persist across updates to Chromium. Within each category, patches are grouped by the following: * `debian/` - Patches from Debian's Chromium * Patches are not modified unless they conflict with Inox's patches * These patches are not Debian-specific. For those, see the `debian/patches` directory * `inox-patchset/` - Contains a modified subset of patches from Inox patchset. * Some patches such as those that change branding are omitted * Patches are not modified unless they do not apply cleanly onto the version of Chromium being built * Patches are from [inox-patchset's GitHub](https://github.com/gcarq/inox-patchset) * [Inox patchset's license](https://github.com/gcarq/inox-patchset/blob/master/LICENSE) * `bromite/` - Patches from [Bromite](https://github.com/bromite/bromite) * `iridium-browser/` - Contains a modified subset of patches from Iridium Browser. * Some patches such as those that change branding or URLs to point to Iridium's own servers are omitted * Patches are not modified unless they conflict with Debian's or Inox's patches * 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) * `opensuse/` - Patches from openSUSE's Chromium * `ubuntu/` - Patches from Ubuntu's Chromium * `ungoogled-chromium/` - Patches by ungoogled-chromium developers ## Packaging Packaging is the process of downloading, building, and producing a distributable package of ungoogled-chromium. Packaging 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). Packaging generally consists of the major steps: 1. Download and unpack the source tree 2. Prune binaries 3. Apply patches 4. Substitute domains 5. Build GN via `tools/gn/bootstrap/bootstrap.py` 6. Run `gn gen` with the GN flags 7. Build Chromium via `ninja` 8. Create package(s) of build output (usually in `out/Default`) ================================================ FILE: docs/developing.md ================================================ # Development notes and procedures This document contains an assortment of information for those who want to develop ungoogled-chromium. Information targeted towards developers *and* other users live in [the Wiki](https://ungoogled-software.github.io/ungoogled-chromium-wiki/). Contents: * [Branches](#branches) * [Adding command-line flags and chrome://flags options](#adding-command-line-flags-and-chromeflags-options) * [Workflow of updating to a new Chromium version](#workflow-of-updating-to-a-new-chromium-version) ## Branches Development is focused on `master`, and any changes in there should not break anything unless platforms break during a Chromium version rebase. Larger 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. ## Adding command-line flags and `chrome://flags` options See `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. For 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. ## Workflow of updating to a new Chromium version Tested on Debian 12 (bookworm). Exact instructions should work on any other Linux or macOS system with the proper dependencies. To gain a deeper understanding of this updating process, have a read through [docs/design.md](design.md). ### Dependencies * [`quilt`](http://savannah.nongnu.org/projects/quilt) * This is available in most (if not all) Linux distributions, and also Homebrew on macOS. * 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. * Python 3.10 or newer * `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. ### Downloading the source code #### Source tarball download (recommended): ```sh mkdir -p build/download_cache ./utils/downloads.py retrieve -i downloads.ini -c build/download_cache ./utils/downloads.py unpack -i downloads.ini -c build/download_cache build/src ``` #### Source clone: ```sh ./utils/clone.py -o build/src ``` ### Updating lists The 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. ```sh ./devutils/update_lists.py -t build/src ``` The resulting source tree in `build/src` *will not* have binaries pruned or domains substituted. ### Updating patches **IMPORTANT**: Make sure domain substitution has not been applied before updating patches. 1. Run `source devutils/set_quilt_vars.sh` (or `source devutils/set_quilt_vars.fish` if you are using the fish shell) * This will setup quilt to modify patches directly in `patches/` 2. Go into the source tree: `cd build/src` 3. Use `quilt` to refresh all patches: `quilt push -a --refresh` * If an error occurs, go to the next step. Otherwise, skip to Step 5. 4. Use `quilt` to fix the broken patch: 1. Run `quilt push -f` 2. Edit the broken files as necessary by adding (`quilt edit ...` or `quilt add ...`) or removing (`quilt remove ...`) files as necessary * 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. 3. Refresh the patch: `quilt refresh` 4. Go back to Step 3. 5. Run `quilt pop -a` 6. Go back to ungoogled-chromium repo: `cd ../..` 7. Run `devutils/validate_config.py`. If any warnings are printed, address them; otherwise, continue to Step 8. 8. Run `devutils/validate_patches.py -l build/src`. If errors occur, go back to Step 3. This should leave unstaged changes in the git repository to be reviewed, added, and committed. ### Steps for fixing patches after a failed build attempt If domain substitution is not applied, then the steps from the previous section will work for revising patches. If 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: 1. Revert domain substitution: `./utils/domain_substitution.py revert -c CACHE_PATH_HERE build/src` 2. Follow the patch updating section above 3. Reapply domain substitution: `./utils/domain_substitution.py apply -r domain_regex.list -f domain_substitution.list -c CACHE_PATH_HERE build/src` 4. Reattempt build. Repeat steps as necessary. ### Next steps * Submit a Pull Request of these changes to the ungoogled-chromium repo. * Once the PR is merged, update the repositories of each platform repository that you are maintaining under the `ungoogled-software` organization. ================================================ FILE: docs/flags.md ================================================ # List of flags and switches This is an exhaustive list of command-line switches and flags introduced by ungoogled-chromium. Each switch has a corresponding entry on the `chrome://flags` page which can be filtered by searching for `ungoogled-chromium`. If 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`. > **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`. - ### Available on all platforms Switch                                    | Description -- | -- `--disable-beforeunload` | Disables JavaScript dialog boxes triggered by `beforeunload` `--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. `--disable-search-engine-collection` | Disable automatic search engine scraping from webpages. `--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. `--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. `--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. `--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. `--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. `--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. `--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. `--keep-old-history` | Disables deletion of local browser history after 90 days `--max-connections-per-host` | (from Bromite) Configure the maximum allowed connections per host. Valid values are `6` and `15` `--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`. `--popups-to-tabs` | Makes popups open in new tabs. - ### Available only on desktop Switch                       | Description -- | -- `--bookmark-bar-ntp` | Sets the visibility of the bookmark bar on the New Tab Page. Only takes the value `never`. `--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). `--close-window-with-last-tab` | Determines whether a window should close once the last tab is closed. Only takes the value `never`. `--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. `--disable-sharing-hub` | Disables the sharing hub button. `--enable-incognito-themes` | Allows themes to change the appearance of Incognito windows. `--hide-extensions-menu` | Hides the extensions container. This includes the puzzle piece icon as well as any pinned extensions. `--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. `--hide-tab-close-buttons` | Hides the close buttons on tabs. `--remove-grab-handle` | Removes the reserved empty space in the tabstrip for moving the window. `--remove-tabsearch-button` | Removes the tabsearch button from the tabstrip. `--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. `--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`. `--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`. - #### Available only on Windows Switch               | Description -- | -- `--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. `--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. ## Feature flags Feature 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`. These are also available on the `chrome://flags` page. - ### Available on all platforms Feature | Description -- | -- `MinimalReferrers` | Removes all cross-origin referrers and strips same-origin referrers down to the origin. Has lower precedence than `NoCrossOriginReferrers`. `NoCrossOriginReferrers` | Removes all cross-origin referrers. Has lower precedence than `NoReferrers`. `NoReferrers` | Removes all referrers. `ReducedSystemInfo` | Reduces the amount of system information obatainable through headers and javascript, also causes hardwareConcurrency to respond with two cores. `RemoveClientHints` | Removes client hints (information sent to servers about your system, similar to a user agent). `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. `SpoofWebGLInfo` | Return generic values for WebGLDebugRendererInfo to remove a potential data leak while preventing potential website breakage. `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. - ### Available only on desktop Feature | Description -- | -- `ClearDataOnExit` | Clears all browsing data on exit. `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. `DisableQRGenerator` | Disables the QR generator for sharing page links. ## Flags for existing switches Chromium 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. - ### Available on all platforms Switch                       | Description -- | -- `--disable-top-sites` | Disables the top sites and most visited entries on the new tab page. `--disable-webgl` | Disable all versions of WebGL. `--enable-low-end-device-mode` | Force low-end device mode when set. `--force-dark-mode` | Forces dark mode in UI for platforms that support it. `--no-default-browser-check` | Disables the default browser check. `--no-pings` | Don't send hyperlink auditing pings. `--webrtc-ip-handling-policy` | Restrict which IP addresses and interfaces WebRTC uses. - ### Available only on desktop Switch                       | Description -- | -- `--incognito` | Start in Incognito. `--start-maximized` | Starts the browser maximized, regardless of any previous settings. ================================================ FILE: docs/platforms.md ================================================ # Supported Platforms This page lists platforms officially supported by ungoogled-chromium, and their associated repositories. * Android: [ungoogled-chromium-android](https://github.com/ungoogled-software/ungoogled-chromium-android) * Arch Linux: [ungoogled-chromium-archlinux](https://github.com/ungoogled-software/ungoogled-chromium-archlinux) * Debian, Ubuntu, and derivatives: [ungoogled-chromium-debian](https://github.com/ungoogled-software/ungoogled-chromium-debian) * Fedora and CentOS: [ungoogled-chromium-fedora](https://github.com/ungoogled-software/ungoogled-chromium-fedora) * Portable Linux (for any Linux distro): [ungoogled-chromium-portablelinux](https://github.com/ungoogled-software/ungoogled-chromium-portablelinux) * Windows: [ungoogled-chromium-windows](https://github.com/ungoogled-software/ungoogled-chromium-windows) * macOS: [ungoogled-chromium-macos](https://github.com/ungoogled-software/ungoogled-chromium-macos) ================================================ FILE: docs/repo_management.md ================================================ # Platform Repository Standards and Guidelines *This document is new, and its structure and content may change. If you have suggestions, please create an issue!* ungoogled-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. We 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). ## Standards An officially-supported platform repo: * 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!) * Must have a tagging/versioning scheme that includes the ungoogled-chromium version. * Must not require an Internet connection during compilation (before compilation is OK). * Should allow the user to download all build requirements before building. * Must not require external services to build, aside from repos in the ungoogled-software organization and repos provided by or used by Chromium. * Should have a reproducible build for all versions (currently, there is no formal process to enforce/verify reproducibility of binaries) Each 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. ## Teams in the ungoogled-software organization Each 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). If 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. ## How to communicate In 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. You 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. ## Issues Each platform repo should have a team in ungoogled-software with the Triage permission level. All members should feel free to manage issues. TODO: More details? ## Pull Requests TODO ## Repository Settings and Shared Resources Shared resources includes: * CI services like CirrusCI, GitHub Actions, etc. * Build services like OpenSUSE Build Service (OBS) These 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. There are several ways to handle shared resources: * 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. * TODO: More ways to manage settings? ================================================ FILE: domain_regex.list ================================================ fonts(\\*?)\.googleapis(\\*?)\.com#f0ntz\g<1>.9oo91e8p1\g<2>.qjz9zk google([A-Za-z\-]*?\\*?)\.com(?!mon)#9oo91e\g<1>.qjz9zk gstatic([A-Za-z\-]*?\\*?)\.com#95tat1c\g<1>.qjz9zk chrome([A-Za-z\-]*?\\*?)\.com(?!ponent)#ch40me\g<1>.qjz9zk chromium([A-Za-z\-]*?\\*?)\.org#ch40m1um\g<1>.qjz9zk mozilla([A-Za-z\-]*?\\*?)\.org#m0z111a\g<1>.qjz9zk facebook([A-Za-z\-]*?\\*?)\.com#f8c3b00k\g<1>.qjz9zk appspot([A-Za-z\-]*?\\*?)\.com#8pp2p8t\g<1>.qjz9zk youtube([A-Za-z\-]*?\\*?)\.com#y0u1ub3\g<1>.qjz9zk ytimg([A-Za-z\-]*?\\*?)\.com#yt1mg\g<1>.qjz9zk gmail([A-Za-z\-]*?\\*?)\.com#9ma1l\g<1>.qjz9zk doubleclick([A-Za-z\-]*?\\*?)\.net#60u613cl1c4\g<1>.n3t.qjz9zk doubleclick([A-Za-z\-]*?\\*?)\.com#60u613cl1c4\g<1>.c0m.qjz9zk googlezip(\\*?)\.net#9oo91e21p\g<1>.qjz9zk beacons([1-9]?\\*?)\.gvt([1-9]?\\*?)\.com#b3ac0n2\g<1>.9vt\g<2>.qjz9zk ggpht(\\*?)\.com#99pht\g<1>.qjz9zk microsoft(\\*?)\.com#m1cr050ft\g<1>.qjz9zk 1e100(\\*?)\.net#l3lOO\g<1>.qjz9zk (?.qjz9zk goo\.gl(e?)#goo.gl\g<1>.qjz9zk privacysandbox([A-Za-z\-]*?\\*?)\.com#pr1v4cy54ndb0x\g<1>.qjz9zk ================================================ FILE: domain_substitution.list ================================================ .gemini/commands/PRESUBMIT.py BUILD.gn PRESUBMIT.py PRESUBMIT_test.py agents/PRESUBMIT.py agents/extensions/PRESUBMIT.py agents/extensions/perf/gemini-extension.json agents/prompts/PRESUBMIT.py agents/testing/PRESUBMIT.py agents/testing/skia_perf.py agents/testing/skia_perf_unittest.py ash/accelerators/accelerator_notifications.cc ash/accelerators/ash_accelerator_configuration_unittest.cc ash/ambient/ambient_controller.cc ash/ambient/ambient_controller_unittest.cc ash/ambient/backdrop/ambient_backend_controller_impl.cc ash/ambient/managed/screensaver_image_downloader.cc ash/ambient/metrics/ambient_metrics.cc ash/api/tasks/fake_tasks_client.cc ash/api/tasks/tasks_types.h ash/app_list/PRESUBMIT.py ash/app_list/app_list_controller_impl_unittest.cc ash/app_list/app_list_feature_usage_metrics_unittest.cc ash/app_list/views/app_list_nudge_controller_unittest.cc ash/app_list/views/app_list_view_pixeltest.cc ash/ash_strings.grd ash/auth/views/auth_header_view_pixeltest.cc ash/birch/birch_item.cc ash/birch/birch_item_unittest.cc ash/birch/birch_model_unittest.cc ash/capture_mode/capture_mode_camera_unittest.cc ash/capture_mode/capture_mode_controller.cc ash/capture_mode/sunfish_unittest.cc ash/capture_mode/test_capture_mode_delegate.cc ash/child_accounts/parent_access_controller_impl_unittest.cc ash/clipboard/clipboard_history_controller_unittest.cc ash/clipboard/clipboard_history_menu_model_adapter_unittest.cc ash/constants/ash_features.cc ash/constants/ash_switches.cc ash/constants/url_constants.cc ash/constants/url_constants.h ash/constants/web_app_id_constants.h ash/controls/contextual_nudge.cc ash/fast_ink/laser/laser_pointer_view.cc ash/game_dashboard/game_dashboard_main_menu_view.cc ash/glanceables/classroom/fake_glanceables_classroom_client.cc ash/glanceables/classroom/glanceables_classroom_item_view_unittest.cc ash/glanceables/classroom/glanceables_classroom_student_view.cc ash/glanceables/classroom/glanceables_classroom_student_view_unittest.cc ash/glanceables/classroom/glanceables_classroom_types.h ash/glanceables/glanceables_pixeltest.cc ash/glanceables/glanceables_unittest.cc ash/glanceables/tasks/glanceables_task_view.cc ash/glanceables/tasks/glanceables_tasks_view.cc ash/glanceables/tasks/glanceables_tasks_view_unittest.cc ash/glanceables/tasks/test/glanceables_tasks_test_util.cc ash/login/ui/auth_icon_view.cc ash/login/ui/login_remove_account_dialog_unittest.cc ash/metrics/demo_session_metrics_recorder_unittest.cc ash/projector/projector_metadata_model.cc ash/public/cpp/system_notification_builder_unittest.cc ash/quick_insert/model/quick_insert_link_suggester.cc ash/quick_insert/model/quick_insert_link_suggester_unittest.cc ash/quick_insert/quick_insert_asset_fetcher_impl.cc ash/quick_insert/quick_insert_controller.cc ash/quick_insert/quick_insert_controller_unittest.cc ash/quick_insert/quick_insert_insert_media.cc ash/quick_insert/search/quick_insert_search_aggregator_unittest.cc ash/quick_insert/search/quick_insert_search_controller.cc ash/quick_insert/search/quick_insert_search_controller_unittest.cc ash/quick_insert/search/quick_insert_search_request.cc ash/quick_insert/search/quick_insert_search_request_unittest.cc ash/quick_pair/companion_app/companion_app_broker_impl_unittest.cc ash/quick_pair/fast_pair_handshake/fast_pair_data_encryptor.h ash/quick_pair/fast_pair_handshake/fast_pair_data_encryptor_impl_unittest.cc ash/quick_pair/fast_pair_handshake/fast_pair_encryption.h ash/quick_pair/fast_pair_handshake/fast_pair_encryption_unittest.cc ash/quick_pair/fast_pair_handshake/fast_pair_gatt_service_client_impl.cc ash/quick_pair/fast_pair_handshake/fast_pair_handshake.h ash/quick_pair/keyed_service/quick_pair_mediator.cc ash/quick_pair/message_stream/message_stream.h ash/quick_pair/pairing/retroactive_pairing_detector_impl.cc ash/quick_pair/repository/fake_device_metadata_http_fetcher.cc ash/quick_pair/repository/fast_pair/device_metadata_fetcher.cc ash/quick_pair/repository/fast_pair/device_metadata_fetcher_unittest.cc ash/quick_pair/repository/fast_pair/footprints_fetcher_impl.cc ash/quick_pair/scanning/fast_pair/fast_pair_discoverable_scanner.h ash/quick_pair/scanning/fast_pair/fast_pair_not_discoverable_scanner.h ash/quick_pair/scanning/fast_pair/fast_pair_not_discoverable_scanner_impl.h ash/quick_pair/ui/fast_pair/fast_pair_notification_controller_unittest.cc ash/quick_pair/ui/fast_pair/fast_pair_presenter_impl.cc ash/resources/PRESUBMIT.py ash/scanner/scanner_action_handler.cc ash/scanner/scanner_action_handler_unittest.cc ash/scanner/scanner_controller_unittest.cc ash/session/fullscreen_controller_unittest.cc ash/shelf/home_to_overview_nudge_controller_unittest.cc ash/shelf/launcher_nudge_controller_unittest.cc ash/shelf/scrollable_shelf_view_pixeltest.cc ash/shelf/shelf_controller_unittest.cc ash/shelf/shelf_layout_manager_unittest.cc ash/style/color_palette_controller_unittest.cc ash/system/audio/audio_effects_controller_unittest.cc ash/system/camera/camera_effects_controller_unittest.cc ash/system/diagnostics/diagnostics_log_controller_unittest.cc ash/system/eche/eche_tray.cc ash/system/eche/eche_tray_unittest.cc ash/system/focus_mode/focus_mode_controller.cc ash/system/focus_mode/focus_mode_countdown_view_unittest.cc ash/system/focus_mode/focus_mode_feature_pod_controller_unittest.cc ash/system/focus_mode/focus_mode_util.cc ash/system/focus_mode/focus_mode_util_unittest.cc ash/system/focus_mode/sounds/focus_mode_sounds_controller.cc ash/system/focus_mode/sounds/soundscape/soundscapes_downloader.cc ash/system/focus_mode/sounds/youtube_music/youtube_music_client.cc ash/system/focus_mode/sounds/youtube_music/youtube_music_types.h ash/system/human_presence/snooping_protection_controller_unittest.cc ash/system/input_device_settings/device_image_downloader.cc ash/system/input_device_settings/device_image_downloader_unittest.cc ash/system/input_device_settings/input_device_settings_metrics_manager_unittest.cc ash/system/input_device_settings/input_device_settings_notification_controller.cc ash/system/input_device_settings/input_device_settings_notification_controller_unittest.cc ash/system/mahi/mahi_content_source_button_unittest.cc ash/system/mahi/mahi_panel_view_unittest.cc ash/system/notification_center/message_center_test_util.cc ash/system/notification_center/notification_grouping_controller_unittest.cc ash/system/notification_center/views/ash_notification_view_unittest.cc ash/system/pcie_peripheral/pcie_peripheral_notification_controller.cc ash/system/pcie_peripheral/pcie_peripheral_notification_controller_unittest.cc ash/system/phonehub/phone_hub_tray_unittest.cc ash/system/phonehub/phone_hub_ui_controller_unittest.cc ash/system/power/power_event_observer_unittest.cc ash/system/privacy_hub/privacy_hub_notification_controller.cc ash/system/status_area_widget_unittest.cc ash/system/time/calendar_event_fetch_unittest.cc ash/system/time/calendar_event_list_item_view_unittest.cc ash/system/time/calendar_list_model_unittest.cc ash/system/time/calendar_up_next_pixeltest.cc ash/system/time/calendar_up_next_view_unittest.cc ash/system/time/calendar_view_pixeltest.cc ash/system/unified/date_tray_unittest.cc ash/system/unified/notification_icons_controller_unittest.cc ash/system/unified/power_button_unittest.cc ash/system/unified/quick_settings_footer_pixeltest.cc ash/system/unified/quick_settings_header_unittest.cc ash/system/unified/user_chooser_detailed_view_controller_unittest.cc ash/system/usb_peripheral/usb_peripheral_notification_controller.cc ash/system/video_conference/bubble/bubble_view_pixeltest.cc ash/system/video_conference/bubble/return_to_app_panel_unittest.cc ash/system/video_conference/fake_video_conference_tray_controller.cc ash/system/video_conference/video_conference_tray_unittest.cc ash/wallpaper/test_wallpaper_controller_client.cc ash/wallpaper/wallpaper_image_downloader.cc ash/webui/boca_ui/boca_app_page_handler_unittest.cc ash/webui/boca_ui/provider/classroom_page_handler_impl.cc ash/webui/boca_ui/webview_auth_handler_unittest.cc ash/webui/camera_app_ui/camera_app_untrusted_ui.cc ash/webui/camera_app_ui/resources/js/externs/types.d.ts ash/webui/camera_app_ui/resources/js/geometry.ts ash/webui/camera_app_ui/resources/js/i18n_string.ts ash/webui/camera_app_ui/resources/js/metrics.ts ash/webui/camera_app_ui/resources/js/untrusted_ga_helper.ts ash/webui/camera_app_ui/resources/js/views/camera_intent.ts ash/webui/camera_app_ui/resources/js/views/document_fix_mode.ts ash/webui/camera_app_ui/resources/js/views/settings/primary.ts ash/webui/camera_app_ui/resources/strings/camera_strings.grd ash/webui/camera_app_ui/resources/utils/cca/commands/check_color_tokens.py ash/webui/camera_app_ui/resources/utils/cca/commands/upload.py ash/webui/common/resources/PRESUBMIT.py ash/webui/common/resources/cr_picture/png.js ash/webui/common/resources/keyboard_layouts.js ash/webui/common/resources/quick_unlock/pin_keyboard_icons.html ash/webui/common/resources/sea_pen/constants.ts ash/webui/common/resources/sea_pen/constants_generated.ts ash/webui/common/resources/sea_pen/surface_effects/sparkle.ts ash/webui/diagnostics_ui/backend/input/input_data_provider_keyboard_unittest.cc ash/webui/diagnostics_ui/diagnostics_ui.cc ash/webui/diagnostics_ui/resources/PRESUBMIT.py ash/webui/diagnostics_ui/resources/network_card.ts ash/webui/diagnostics_ui/resources/routine_section.ts ash/webui/diagnostics_ui/resources/touchpad_tester.ts ash/webui/eche_app_ui/eche_alert_generator.cc ash/webui/eche_app_ui/eche_tray_stream_status_observer_unittest.cc ash/webui/firmware_update_ui/resources/PRESUBMIT.py ash/webui/graduation/graduation_ui_handler_unittest.cc ash/webui/graduation/resources/js/graduation_takeout_ui.ts ash/webui/graduation/url_constants.cc ash/webui/graduation/webview_auth_handler_unittest.cc ash/webui/help_app_ui/help_app_kids_magazine_untrusted_ui.cc ash/webui/help_app_ui/resources/js/help_app.d.ts ash/webui/media_app_ui/media_app_guest_ui.cc ash/webui/media_app_ui/media_app_page_handler.cc ash/webui/media_app_ui/resources/js/launch.ts ash/webui/media_app_ui/resources/js/media_app.d.ts ash/webui/os_feedback_ui/backend/feedback_service_provider_unittest.cc ash/webui/os_feedback_ui/backend/help_content_provider.cc ash/webui/os_feedback_ui/backend/help_content_provider_unittest.cc ash/webui/os_feedback_ui/resources/confirmation_page.ts ash/webui/os_feedback_ui/resources/fake_data.ts ash/webui/os_feedback_ui/resources/feedback_constants.ts ash/webui/os_feedback_ui/resources/search_page.ts ash/webui/personalization_app/personalization_app_ui.cc ash/webui/personalization_app/personalization_app_url_constants.cc ash/webui/personalization_app/resources/PRESUBMIT.py ash/webui/personalization_app/resources/js/ambient/ambient_preview_large_element.html ash/webui/personalization_app/resources/js/wallpaper/google_photos_zero_state_element.ts ash/webui/print_management/resources/PRESUBMIT.py ash/webui/projector_app/projector_xhr_sender.cc ash/webui/projector_app/projector_xhr_sender.h ash/webui/projector_app/test/mock_app_client.cc ash/webui/projector_app/test/projector_oauth_token_fetcher_unittest.cc ash/webui/projector_app/test/projector_xhr_sender_unittest.cc ash/webui/projector_app/test/untrusted_projector_page_handler_impl_unittest.cc ash/webui/projector_app/untrusted_projector_ui.cc ash/webui/recorder_app_ui/resources/components/unescapable-dialog.ts ash/webui/recorder_app_ui/resources/core/externs.d.ts ash/webui/recorder_app_ui/resources/core/platform_handler.ts ash/webui/recorder_app_ui/resources/core/recording_session.ts ash/webui/recorder_app_ui/resources/core/url_constants.ts ash/webui/recorder_app_ui/resources/pages/record-page.ts ash/webui/recorder_app_ui/resources/platforms/dev/handler.ts ash/webui/recorder_app_ui/resources/static/audio_worklet.js ash/webui/recorder_app_ui/resources/static/style.css ash/webui/scanning/resources/PRESUBMIT.py ash/webui/scanning/resources/scanning_app.html ash/webui/scanning/resources/scanning_app.ts ash/webui/shimless_rma/resources/onboarding_enter_rsu_wp_disable_code_page.ts ash/webui/shortcut_customization_ui/resources/PRESUBMIT.py ash/webui/shortcut_customization_ui/url_constants.cc ash/webui/system_apps/public/system_web_app_type.h ash/wm/coral/coral_controller_unittest.cc ash/wm/desks/templates/admin_template_unittest.cc ash/wm/desks/templates/saved_desk_unittest.cc ash/wm/overview/birch/birch_bar_unittest.cc ash/wm/overview/birch/birch_chip_context_menu_model.cc ash/wm/screen_pinning_controller.h ash/wm/window_restore/informed_restore_controller.cc base/BUILD.gn base/PRESUBMIT.py base/allocator/partition_alloc_support.cc base/allocator/partition_allocator/PRESUBMIT.py base/allocator/partition_allocator/partition_alloc.gni base/allocator/partition_allocator/src/partition_alloc/BUILD.gn base/allocator/partition_allocator/src/partition_alloc/address_space_randomization.h base/allocator/partition_allocator/src/partition_alloc/bucket_lookup.h base/allocator/partition_allocator/src/partition_alloc/build_config.h base/allocator/partition_allocator/src/partition_alloc/in_slot_metadata.h base/allocator/partition_allocator/src/partition_alloc/oom.cc base/allocator/partition_allocator/src/partition_alloc/oom.h base/allocator/partition_allocator/src/partition_alloc/page_allocator.h base/allocator/partition_allocator/src/partition_alloc/page_allocator_constants.h base/allocator/partition_allocator/src/partition_alloc/page_allocator_internals_win.h base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/compiler_specific.h base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/debug/stack_trace.cc base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/logging.h base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/memory/scoped_refptr.h base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/rand_util_posix.cc base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/rand_util_win.cc base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/threading/platform_thread_win_for_testing.cc base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/time/time.h base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/time/time_win.cc base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/win/windows_handle_util.h base/allocator/partition_allocator/src/partition_alloc/partition_alloc_config.h base/allocator/partition_allocator/src/partition_alloc/partition_alloc_unittest.cc base/allocator/partition_allocator/src/partition_alloc/partition_tls.h base/allocator/partition_allocator/src/partition_alloc/pointers/raw_ptr.h base/allocator/partition_allocator/src/partition_alloc/shim/allocator_shim_default_dispatch_to_partition_alloc.cc base/allocator/partition_allocator/src/partition_alloc/stack/asm/x64/push_registers_asm.cc base/allocator/partition_allocator/src/partition_alloc/stack/stack.cc base/allocator/partition_allocator/src/partition_alloc/tagging.h base/allocator/partition_allocator/src/partition_alloc/use_death_tests.h base/android/jni_android.cc base/android/jni_string.cc base/android/linker/ashmem.cc base/android/meminfo_dump_provider.cc base/android/requires_api.h base/android/resource_exclusions.gni base/android/virtual_document_path.h base/apple/foundation_util_unittest.mm base/apple/owned_objc.h base/apple/owned_objc_types.h base/barrier_callback.h base/base_paths_win.cc base/base_switches.cc base/command_line.cc base/command_line.h base/compiler_specific.h base/containers/auto_spanification_helper.h base/containers/checked_iterators_unittest.cc base/debug/debugger_posix.cc base/debug/stack_trace.cc base/debug/stack_trace_fuchsia.cc base/debug/stack_trace_posix.cc base/debug/stack_trace_win.cc base/file_version_info.h base/files/file_enumerator_posix.cc base/files/file_path.cc base/files/file_path_watcher_unittest.cc base/files/file_path_watcher_win.cc base/files/file_unittest.cc base/files/file_util_posix.cc base/files/file_util_unittest.cc base/files/file_util_win.cc base/files/file_win.cc base/functional/bind_internal.h base/functional/callback.h base/hash/hash.cc base/i18n/break_iterator_unittest.cc base/i18n/file_util_icu.cc base/i18n/rtl_unittest.cc base/i18n/timezone_unittest.cc base/ios/device_util.mm base/lazy_instance_helpers.h base/logging.cc base/logging.h base/mac/close_nocancel.cc base/memory/aligned_memory.cc base/memory/discardable_shared_memory.cc base/memory/platform_shared_memory_mapper_android.cc base/memory/raw_ptr_asan_service.cc base/memory/scoped_refptr.h base/memory/weak_ptr.h base/message_loop/message_pump_android.h base/message_loop/message_pump_win.cc base/metrics/field_trial_list_including_low_anonymity.h base/metrics/histogram_functions.h base/metrics/histogram_functions_internal_overloads.h base/metrics/histogram_macros.h base/metrics/statistics_recorder.cc base/metrics/user_metrics.h base/observer_list.h base/power_monitor/battery_level_provider_win.cc base/power_monitor/cpu_frequency_utils.cc base/power_monitor/energy_monitor_android.h base/power_monitor/power_monitor_device_source_android.cc base/power_monitor/speed_limit_observer_win.cc base/process/launch.h base/process/launch_mac.cc base/process/launch_posix.cc base/process/process_handle_win.cc base/process/process_info.h base/process/process_metrics.h base/profiler/chrome_unwind_info_android_32.h base/profiler/libunwindstack_unwinder_android.cc base/profiler/libunwindstack_unwinder_android_unittest.cc base/profiler/metadata_recorder.h base/rand_util_win.cc base/strings/pattern_unittest.cc base/strings/string_number_conversions_unittest.cc base/synchronization/lock_impl_posix.cc base/system/sys_info.h base/task/sequence_manager/sequence_manager_impl.cc base/task/sequenced_task_runner.h base/task/single_thread_task_executor_unittest.cc base/task/single_thread_task_runner.h base/task/task_traits.h base/task/thread_type.h base/test/file_path_reparse_point_win.cc base/test/gtest_links_unittest.cc base/test/gtest_xml_unittest_result_printer_unittest.cc base/test/launcher/test_launcher.cc base/test/launcher/test_results_tracker_unittest.cc base/test/metrics/action_variants_reader.h base/test/metrics/action_variants_reader_unittest.cc base/test/sequenced_task_runner_test_template.h base/test/task_environment_unittest.cc base/test/test_file_util.h base/test/test_file_util_win.cc base/test/test_suite.cc base/third_party/cityhash/city.h base/third_party/nspr/prtime.cc base/third_party/nspr/prtime.h base/third_party/symbolize/symbolize.cc base/threading/platform_thread_android.cc base/threading/platform_thread_unittest.cc base/threading/platform_thread_win.cc base/threading/sequence_local_storage_slot_unittest.cc base/time/time_delta_from_string.cc base/time/time_delta_from_string_unittest.cc base/time/time_win.cc base/trace_event/etw_interceptor_win.cc base/trace_event/malloc_dump_provider.cc base/trace_event/process_memory_dump.h base/trace_event/trace_logging_minimal_win.h base/tracing/stdlib/chrome/page_loads.sql base/tracing/stdlib/chrome/scroll_jank_v4.sql base/tracing/test/test_data.py base/values_unittest.cc base/win/delayload_helpers.h base/win/elevation_util.cc base/win/event_trace_consumer.h base/win/object_watcher.cc base/win/pdh_shim.h base/win/pe_image.h base/win/registry.cc base/win/registry.h base/win/registry_unittest.cc base/win/scoped_com_initializer.cc base/win/scoped_pdh_query.h base/win/scoped_variant.cc base/win/shortcut.cc base/win/win_util.cc base/win/win_util.h base/win/wincrypt_shim.h base/win/windows_handle_util.h base/win/windows_version.h base/win/windows_version_unittest.cc base/win/wmi.cc base/win/wmi.h build/3pp_common/common.py build/3pp_common/maven.py build/BUILD.gn build/android/BUILD.gn build/android/PRESUBMIT.py build/android/apk_operations.py build/android/dump_apk_resource_strings.py build/android/fast_local_dev_server.py build/android/generate_wrap_sh.py build/android/gradle/generate_gradle.py build/android/gyp/assert_static_initializers.py build/android/gyp/bundletool.py build/android/gyp/create_app_bundle.py build/android/gyp/create_java_binary_script.py build/android/gyp/dex.py build/android/gyp/errorprone.py build/android/gyp/lint.py build/android/gyp/merge_manifest.py build/android/gyp/util/build_utils.py build/android/gyp/util/diff_utils.py build/android/gyp/util/protoresources.py build/android/gyp/util/resources_parser.py build/android/gyp/write_build_config.py build/android/incremental_install/generate_android_manifest.py build/android/method_count.py build/android/pylib/constants/__init__.py build/android/pylib/device_settings.py build/android/pylib/dex/dex_parser.py build/android/pylib/instrumentation/instrumentation_parser.py build/android/pylib/instrumentation/instrumentation_test_instance.py build/android/pylib/instrumentation/render_test.html.jinja build/android/pylib/local/device/local_device_environment.py build/android/pylib/local/device/local_device_gtest_run.py build/android/pylib/local/device/local_device_monkey_test_run.py build/android/pylib/local/emulator/avd.py build/android/pylib/results/flakiness_dashboard/json_results_generator.py build/android/pylib/results/presentation/test_results_presentation.py build/android/pylib/utils/maven_downloader.py build/android/pylib/utils/simpleperf.py build/android/resource_sizes.py build/android/test_runner.py build/android/test_wrapper/logdog_wrapper.py build/apple/tweak_info_plist.py build/autoroll/fetch_util.py build/bench/compare_autoninja.py build/build_config.h build/chromeos/PRESUBMIT.py build/chromeos/test_runner.py build/config/BUILDCONFIG.gn build/config/android/BUILD.gn build/config/android/config.gni build/config/android/internal_rules.gni build/config/android/rules.gni build/config/arm.gni build/config/c++/c++.gni build/config/c++/modules.gni build/config/chrome_build.gni build/config/chromeos/args.gni build/config/chromeos/rules.gni build/config/compiler/BUILD.gn build/config/compiler/compiler.gni build/config/cronet/config.gni build/config/freetype/freetype.gni build/config/fuchsia/BUILD.gn build/config/linux/pkg_config.gni build/config/locales.gni build/config/ozone.gni build/config/sanitizers/sanitizers.gni build/config/siso/configure_siso.py build/config/win/BUILD.gn build/config/win/control_flow_guard.gni build/fuchsia/PRESUBMIT.py build/fuchsia/binary_size_differ.py build/fuchsia/binary_sizes.py build/fuchsia/gen_build_defs.py build/fuchsia/get_auth_token.py build/fuchsia/test/PRESUBMIT.py build/gn_ast/gn_ast.py build/gn_ast/json_gn_editor.py build/install-build-deps.py build/ios/presubmit_support.py build/linux/install-chromeos-fonts.py build/linux/unbundle/remove_bundled_libraries.py build/mac_toolchain.py build/mcp_servers/PRESUBMIT.py build/nocompile.gni build/rust/gni_impl/rustc_wrapper.py build/rust/std/rules/BUILD.gn build/sanitizers/lsan_suppressions.cc build/sanitizers/tsan_suppressions.cc build/skia_gold_common/PRESUBMIT.py build/toolchain/check_rewrapper_cfg.py build/toolchain/cros_toolchain.gni build/toolchain/gcc_toolchain.gni build/toolchain/kythe.gni build/toolchain/win/midl.py build/toolchain/win/rc/rc.py build/util/lib/common/google_storage_helper.py build/util/lib/common/google_storage_helper_test.py build/util/lib/proto/PRESUBMIT.py build/util/lib/results/result_sink.py build/vs_toolchain.py build/whitespace_file.txt buildtools/README.txt buildtools/clang_format/README.txt buildtools/reclient_cfgs/configure_reclient_cfgs.py cc/PRESUBMIT.py cc/input/browser_controls_offset_manager.cc cc/input/scroll_state.h cc/input/scrollbar_controller.h cc/metrics/average_lag_tracker.h cc/metrics/scroll_jank_v4_decider.cc cc/metrics/scroll_jank_v4_decider.h cc/metrics/scroll_jank_v4_decision_queue.h cc/metrics/scroll_jank_v4_processor.h cc/metrics/scroll_jank_v4_result.h cc/paint/paint_image.h cc/scheduler/scheduler_state_machine.cc cc/tiles/gpu_image_decode_cache.h cc/trees/layer_tree_host_impl.cc cc/trees/layer_tree_host_unittest_animation.cc cc/trees/proxy_main.cc chrome/BUILD.gn chrome/PRESUBMIT.py chrome/app/PRESUBMIT.py chrome/app/app_management_strings.grdp chrome/app/chrome_command_ids.h chrome/app/chromeos_strings.grdp chrome/app/chromium_strings.grd chrome/app/delay_load_failure_hook_win.cc chrome/app/extensions_strings.grdp chrome/app/generated_resources.grd chrome/app/glic_strings.grdp chrome/app/google_chrome_strings.grd chrome/app/media_router_strings.grdp chrome/app/nearby_share_strings.grdp chrome/app/os_settings_strings.grdp chrome/app/password_manager_ui_strings.grdp chrome/app/profiles_strings.grdp chrome/app/resources/locale_settings.grd chrome/app/settings_chromium_strings.grdp chrome/app/settings_google_chrome_strings.grdp chrome/app/settings_strings.grdp chrome/app/shared_settings_strings.grdp chrome/app/theme/PRESUBMIT.py chrome/browser/PRESUBMIT.py chrome/browser/about_flags.cc chrome/browser/accessibility/live_caption/live_caption_speech_recognition_host_browsertest.cc chrome/browser/actor/safety_list_manager.cc chrome/browser/actor/safety_list_manager_unittest.cc chrome/browser/actor/site_policy_browsertest.cc chrome/browser/ai/ai_data_keyed_service.cc chrome/browser/ai/ai_language_model.cc chrome/browser/ai/ai_on_device_interactive_uitest.cc chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc chrome/browser/android/cookies/cookies_fetcher_restore_util_browsertest.cc chrome/browser/android/customtabs/custom_tabs_browsertest.cc chrome/browser/android/customtabs/detached_resource_request_unittest.cc chrome/browser/android/examples/custom_tabs_client/src/res/values/strings.xml chrome/browser/android/examples/partner_browser_customizations_provider/res/values/strings.xml chrome/browser/android/history/history_deletion_bridge_unittest.cc chrome/browser/android/omnibox/chrome_omnibox_navigation_observer_android_unittest.cc chrome/browser/android/recently_closed_tabs_bridge_unittest.cc chrome/browser/android/search_permissions/search_permissions_service.h chrome/browser/android/search_permissions/search_permissions_service_unittest.cc chrome/browser/android/tab_android.cc chrome/browser/android/vr/PRESUBMIT.py chrome/browser/android/webapk/webapk_helpers_unittest.cc chrome/browser/android/webapk/webapk_installer.cc chrome/browser/apps/almanac_api_client/almanac_api_util.cc chrome/browser/apps/almanac_api_client/almanac_api_util_unittest.cc chrome/browser/apps/almanac_api_client/almanac_icon_cache.cc chrome/browser/apps/almanac_api_client/device_info_manager.cc chrome/browser/apps/app_discovery_service/app_discovery_service_unittest.cc chrome/browser/apps/app_discovery_service/launcher_app_almanac_endpoint.cc chrome/browser/apps/app_discovery_service/recommended_arc_app_fetcher_unittest.cc chrome/browser/apps/app_discovery_service/recommended_arc_apps/recommend_apps_fetcher_impl.cc chrome/browser/apps/app_discovery_service/recommended_arc_apps/recommend_apps_fetcher_impl_unittest.cc chrome/browser/apps/app_preload_service/app_preload_almanac_endpoint.cc chrome/browser/apps/app_preload_service/app_preload_service_browsertest.cc chrome/browser/apps/app_preload_service/preload_app_definition_unittest.cc chrome/browser/apps/app_service/app_icon/app_icon_loader.cc chrome/browser/apps/app_service/app_install/app_install_almanac_endpoint.cc chrome/browser/apps/app_service/app_install/app_install_almanac_endpoint_unittest.cc chrome/browser/apps/app_service/app_install/app_install_service_ash_browsertest.cc chrome/browser/apps/app_service/app_install/app_install_service_ash_unittest.cc chrome/browser/apps/app_service/app_install/app_install_types_unittest.cc chrome/browser/apps/app_service/app_install/web_app_installer.cc chrome/browser/apps/app_service/app_install/web_app_installer_browsertest.cc chrome/browser/apps/app_service/app_service_proxy_unittest.cc chrome/browser/apps/app_service/intent_util_unittest.cc chrome/browser/apps/app_service/metrics/app_service_metrics.h chrome/browser/apps/app_service/promise_apps/promise_app_almanac_connector.cc chrome/browser/apps/app_service/promise_apps/promise_app_service.cc chrome/browser/apps/app_service/publishers/arc_apps.cc chrome/browser/apps/app_service/publishers/arc_apps_unittest.cc chrome/browser/apps/app_service/publishers/publisher_unittest.cc chrome/browser/apps/app_service/web_contents_app_id_utils.h chrome/browser/apps/digital_goods/digital_goods_factory_impl.cc chrome/browser/apps/guest_view/web_view_browsertest.cc chrome/browser/apps/intent_helper/intent_chip_display_prefs_unittest.cc chrome/browser/apps/link_capturing/link_capturing_navigation_throttle_browsertest.cc chrome/browser/apps/link_capturing/link_capturing_navigation_throttle_unittest.cc chrome/browser/apps/platform_apps/app_browsertest.cc chrome/browser/apps/platform_apps/app_window_browsertest.cc chrome/browser/apps/platform_apps/install_chrome_app.cc chrome/browser/ash/accessibility/accessibility_live_site_browsertest.cc chrome/browser/ash/accessibility/accessibility_manager_browsertest.cc chrome/browser/ash/accessibility/dictation_browsertest.cc chrome/browser/ash/accessibility/spoken_feedback_browsertest.cc chrome/browser/ash/account_manager/account_apps_availability_unittest.cc chrome/browser/ash/account_manager/account_manager_edu_coexistence_controller_unittest.cc chrome/browser/ash/ambient/ambient_client_impl.cc chrome/browser/ash/ambient/ambient_client_impl_unittest.cc chrome/browser/ash/android_sms/android_sms_urls.cc chrome/browser/ash/android_sms/android_sms_urls.h chrome/browser/ash/api/tasks/chrome_tasks_delegate.cc chrome/browser/ash/api/tasks/tasks_client_impl.cc chrome/browser/ash/api/tasks/tasks_client_impl_unittest.cc chrome/browser/ash/app_list/app_context_menu_unittest.cc chrome/browser/ash/app_list/app_list_sort_browsertest.cc chrome/browser/ash/app_list/app_list_syncable_service_unittest.cc chrome/browser/ash/app_list/app_list_test_util.cc chrome/browser/ash/app_list/app_service/app_service_app_model_builder_unittest.cc chrome/browser/ash/app_list/chrome_app_list_model_updater_browsertest.cc chrome/browser/ash/app_list/search/arc/arc_recommend_apps_fetcher_impl_unittest.cc chrome/browser/ash/app_list/search/arc/recommend_apps_fetcher_impl.cc chrome/browser/ash/app_list/search/common/string_util.cc chrome/browser/ash/app_list/search/common/string_util.h chrome/browser/ash/app_list/search/common/string_util_unittest.cc chrome/browser/ash/app_list/search/essential_search/essential_search_manager.h chrome/browser/ash/app_list/search/essential_search/essential_search_manager_unittest.cc chrome/browser/ash/app_list/search/essential_search/socs_cookie_fetcher.cc chrome/browser/ash/app_list/search/essential_search/socs_cookie_fetcher_unittest.cc chrome/browser/ash/app_list/search/local_image_search/image_annotation_worker.cc chrome/browser/ash/app_list/search/omnibox/omnibox_provider_unittest.cc chrome/browser/ash/app_list/search/omnibox/omnibox_util.cc chrome/browser/ash/app_mode/auto_sleep/device_weekly_scheduled_suspend_controller.cc chrome/browser/ash/app_mode/fake_cws.cc chrome/browser/ash/app_mode/kiosk_troubleshooting_tools_browsertest.cc chrome/browser/ash/app_mode/test/kiosk_identity_browsertest.cc chrome/browser/ash/app_restore/arc_app_single_restore_handler_unittest.cc chrome/browser/ash/app_restore/arc_ghost_window_view_unittest.cc chrome/browser/ash/app_restore/full_restore_service_unittest.cc chrome/browser/ash/app_restore/informed_restore_browsertest.cc chrome/browser/ash/apps/apk_web_app_installer_browsertest.cc chrome/browser/ash/apps/apk_web_app_installer_unittest.cc chrome/browser/ash/apps/webapk/webapk_install_task.cc chrome/browser/ash/arc/adbd/arc_adbd_monitor_bridge_unittest.cc chrome/browser/ash/arc/arc_util_unittest.cc chrome/browser/ash/arc/auth/arc_auth_service_browsertest.cc chrome/browser/ash/arc/auth/arc_background_auth_code_fetcher.cc chrome/browser/ash/arc/auth/arc_robot_auth_code_fetcher.cc chrome/browser/ash/arc/bluetooth/arc_bluetooth_bridge.cc chrome/browser/ash/arc/bluetooth/arc_bluetooth_bridge.h chrome/browser/ash/arc/enterprise/arc_enterprise_reporting_service_unittest.cc chrome/browser/ash/arc/extensions/arc_support_message_host.cc chrome/browser/ash/arc/file_system_watcher/file_system_scanner.h chrome/browser/ash/arc/input_overlay/ui/editing_list.cc chrome/browser/ash/arc/intent_helper/arc_settings_service.cc chrome/browser/ash/arc/notification/arc_vm_data_migration_notifier_unittest.cc chrome/browser/ash/arc/policy/arc_android_management_checker_unittest.cc chrome/browser/ash/arc/policy/arc_policy_bridge_unittest.cc chrome/browser/ash/arc/policy/arc_policy_util.h chrome/browser/ash/arc/session/arc_play_store_enabled_preference_handler_unittest.cc chrome/browser/ash/arc/session/arc_session_manager_browsertest.cc chrome/browser/ash/arc/session/arc_session_manager_unittest.cc chrome/browser/ash/arc/tracing/arc_app_performance_tracing.cc chrome/browser/ash/arc/tracing/overview_tracing_handler.cc chrome/browser/ash/attestation/attestation_ca_client.cc chrome/browser/ash/attestation/attestation_ca_client_unittest.cc chrome/browser/ash/attestation/platform_verification_flow_unittest.cc chrome/browser/ash/attestation/soft_bind_attestation_flow_impl_unittest.cc chrome/browser/ash/attestation/tpm_challenge_key_subtle_unittest.cc chrome/browser/ash/bluetooth/bluetooth_log_controller_unittest.cc chrome/browser/ash/bluetooth/debug_logs_manager_unittest.cc chrome/browser/ash/boca/on_task/locked_quiz_session_manager_browsertest.cc chrome/browser/ash/boca/on_task/on_task_locked_session_navigation_throttle_interactive_ui_test.cc chrome/browser/ash/boca/on_task/on_task_locked_session_window_tracker_browsertest.cc chrome/browser/ash/boca/spotlight/spotlight_crd_manager_impl_browsertest.cc chrome/browser/ash/boca/spotlight/spotlight_oauth_token_fetcher_impl.cc chrome/browser/ash/bruschetta/bruschetta_download.cc chrome/browser/ash/calendar/calendar_client_impl.cc chrome/browser/ash/calendar/calendar_client_impl_unittest.cc chrome/browser/ash/calendar/calendar_keyed_service.cc chrome/browser/ash/calendar/calendar_keyed_service_unittest.cc chrome/browser/ash/cert_provisioning/cert_provisioning_test_helpers.cc chrome/browser/ash/certs/system_token_cert_db_initializer.h chrome/browser/ash/child_accounts/constants/child_account_constants.h chrome/browser/ash/child_accounts/parent_access_code/parent_access_service_browsertest.cc chrome/browser/ash/child_accounts/time_limits/app_time_limit_utils_unittest.cc chrome/browser/ash/child_accounts/website_approval_notifier_unittest.cc chrome/browser/ash/crosapi/local_printer_ash_unittest.cc chrome/browser/ash/crostini/baguette_download.cc chrome/browser/ash/crostini/crostini_installer.h chrome/browser/ash/crostini/crostini_manager.cc chrome/browser/ash/crostini/crostini_simple_types.h chrome/browser/ash/crostini/crostini_util.h chrome/browser/ash/customization/customization_document.h chrome/browser/ash/dbus/arc_crosh_service_provider_unittest.cc chrome/browser/ash/dbus/proxy_resolution_service_provider.h chrome/browser/ash/dbus/proxy_resolution_service_provider_browsertest.cc chrome/browser/ash/dbus/proxy_resolution_service_provider_unittest.cc chrome/browser/ash/drive/drivefs_test_support.cc chrome/browser/ash/drive/file_system_util_unittest.cc chrome/browser/ash/extensions/file_manager/system_notification_manager_unittest.cc chrome/browser/ash/extensions/users_private/users_private_apitest.cc chrome/browser/ash/file_manager/external_filesystem_apitest.cc chrome/browser/ash/file_manager/file_browser_handlers.h chrome/browser/ash/file_manager/file_manager_browsertest_base.cc chrome/browser/ash/file_manager/file_manager_policy_browsertest.cc chrome/browser/ash/file_manager/file_manager_string_util.cc chrome/browser/ash/file_manager/file_manager_test_util.h chrome/browser/ash/file_manager/file_tasks.h chrome/browser/ash/file_manager/file_tasks_browsertest.cc chrome/browser/ash/file_manager/open_with_browser_browsertest.cc chrome/browser/ash/file_manager/path_util_unittest.cc chrome/browser/ash/file_suggest/item_suggest_cache.h chrome/browser/ash/file_suggest/item_suggest_cache_unittest.cc chrome/browser/ash/file_system_provider/fileapi/provider_async_file_util.h chrome/browser/ash/floating_sso/floating_sso_browsertest.cc chrome/browser/ash/floating_workspace/floating_workspace_service_unittest.cc chrome/browser/ash/growth/campaigns_manager_interactive_uitest.cc chrome/browser/ash/growth/install_web_app_action_unittest.cc chrome/browser/ash/growth/open_url_action_performer_unittest.cc chrome/browser/ash/hats/hats_dialog.cc chrome/browser/ash/input_device_settings/peripherals_app_delegate_impl.cc chrome/browser/ash/input_method/assistive_input_denylist.cc chrome/browser/ash/input_method/assistive_input_denylist_unittest.cc chrome/browser/ash/input_method/assistive_suggester_client_filter.cc chrome/browser/ash/input_method/assistive_suggester_client_filter_unittest.cc chrome/browser/ash/input_method/editor_feedback_unittest.cc chrome/browser/ash/input_method/editor_switch_unittest.cc chrome/browser/ash/input_method/ime_service_connector.cc chrome/browser/ash/integration_tests/featured_integration_test.cc chrome/browser/ash/kerberos/kerberos_credentials_manager_unittest.cc chrome/browser/ash/lobster/lobster_feedback_unittest.cc chrome/browser/ash/lobster/lobster_image_provider_from_snapper.cc chrome/browser/ash/lobster/lobster_system_state_provider_impl_unittest.cc chrome/browser/ash/login/app_mode/kiosk_launch_controller_unittest.cc chrome/browser/ash/login/ash_hud_login_browsertest.cc chrome/browser/ash/login/demo_mode/demo_login_controller.cc chrome/browser/ash/login/demo_mode/demo_login_controller_unittest.cc chrome/browser/ash/login/demo_mode/demo_mode_idle_handler.cc chrome/browser/ash/login/demo_mode/demo_mode_idle_handler_unittest.cc chrome/browser/ash/login/device_family_link_allowed_policy_browsertest.cc chrome/browser/ash/login/encryption_migration_browsertest.cc chrome/browser/ash/login/existing_user_controller_browsertest.cc chrome/browser/ash/login/help_app_launcher.h chrome/browser/ash/login/lock/lock_screen_integration_test.cc chrome/browser/ash/login/login_browsertest.cc chrome/browser/ash/login/login_ui_browsertest.cc chrome/browser/ash/login/login_ui_keyboard_browsertest.cc chrome/browser/ash/login/login_ui_shelf_visibility_browsertest.cc chrome/browser/ash/login/marketing_backend_connector.cc chrome/browser/ash/login/misconfigured_user_browsertest.cc chrome/browser/ash/login/oobe_apps_service/oobe_apps_almanac_endpoint.cc chrome/browser/ash/login/oobe_quick_start/connectivity/account_transfer_client_data.h chrome/browser/ash/login/oobe_quick_start/connectivity/connection_unittest.cc chrome/browser/ash/login/oobe_quick_start/second_device_auth_broker.cc chrome/browser/ash/login/oobe_quick_start/second_device_auth_broker_unittest.cc chrome/browser/ash/login/password_change_browsertest.cc chrome/browser/ash/login/post_login_deferred_task_browsertest.cc chrome/browser/ash/login/profile_auth_data_unittest.cc chrome/browser/ash/login/reset_browsertest.cc chrome/browser/ash/login/saml/password_sync_token_fetcher.cc chrome/browser/ash/login/saml/saml_browsertest.cc chrome/browser/ash/login/saml/saml_lockscreen_browsertest.cc chrome/browser/ash/login/screens/arc_vm_data_migration_screen_unittest.cc chrome/browser/ash/login/screens/categories_selection_screen_browsertest.cc chrome/browser/ash/login/screens/locale_switch_screen.cc chrome/browser/ash/login/screens/locale_switch_screen_browsertest.cc chrome/browser/ash/login/screens/perks_discovery_screen_browsertest.cc chrome/browser/ash/login/screens/personalized_recommend_apps_screen_browsertest.cc chrome/browser/ash/login/screens/quick_start_screen_browsertest.cc chrome/browser/ash/login/screens/recommend_apps_screen_browsertest.cc chrome/browser/ash/login/screens/user_selection_screen_browsertest.cc chrome/browser/ash/login/shill_profile_loading_browsertest.cc chrome/browser/ash/login/signin/device_id_browsertest.cc chrome/browser/ash/login/signin/oauth2_browsertest.cc chrome/browser/ash/login/test/logged_in_user_mixin.cc chrome/browser/ash/login/test/logged_in_user_mixin.h chrome/browser/ash/login/test/login_manager_mixin.cc chrome/browser/ash/login/test/login_manager_mixin.h chrome/browser/ash/login/users/default_user_image/default_user_images.cc chrome/browser/ash/login/users/multi_user_sign_in_policy_controller_unittest.cc chrome/browser/ash/login/webview_login_browsertest.cc chrome/browser/ash/login/wizard_controller_browsertest.cc chrome/browser/ash/magic_boost/magic_boost_controller.cc chrome/browser/ash/magic_boost/magic_boost_controller_unittest.cc chrome/browser/ash/mahi/web_contents/mahi_web_contents_manager_impl.cc chrome/browser/ash/net/network_diagnostics/arc_dns_resolution_routine.cc chrome/browser/ash/net/network_diagnostics/dns_latency_routine.cc chrome/browser/ash/net/network_diagnostics/dns_resolution_routine.cc chrome/browser/ash/net/network_diagnostics/gateway_can_be_pinged_routine.cc chrome/browser/ash/net/network_diagnostics/gateway_can_be_pinged_routine_unittest.cc chrome/browser/ash/net/network_diagnostics/google_services_connectivity_routine.cc chrome/browser/ash/net/network_diagnostics/google_services_connectivity_routine_unittest.cc chrome/browser/ash/net/network_diagnostics/http_request_manager.h chrome/browser/ash/net/network_diagnostics/http_request_manager_unittest.cc chrome/browser/ash/net/network_diagnostics/network_diagnostics_unittest.cc chrome/browser/ash/net/network_diagnostics/network_diagnostics_util.cc chrome/browser/ash/net/network_diagnostics/network_diagnostics_util.h chrome/browser/ash/net/network_diagnostics/video_conferencing_routine.cc chrome/browser/ash/os_feedback/chrome_os_feedback_delegate_browsertest.cc chrome/browser/ash/plugin_vm/plugin_vm_diagnostics.cc chrome/browser/ash/plugin_vm/plugin_vm_installer_unittest.cc chrome/browser/ash/plugin_vm/plugin_vm_license_checker.cc chrome/browser/ash/plugin_vm/plugin_vm_util.cc chrome/browser/ash/plugin_vm/plugin_vm_util_unittest.cc chrome/browser/ash/policy/arc/android_management_client_unittest.cc chrome/browser/ash/policy/core/device_local_account_browsertest.cc chrome/browser/ash/policy/core/device_local_account_policy_service_unittest.cc chrome/browser/ash/policy/core/user_cloud_policy_manager_ash_browsertest.cc chrome/browser/ash/policy/core/user_cloud_policy_manager_ash_unittest.cc chrome/browser/ash/policy/core/user_cloud_policy_store_ash_unittest.cc chrome/browser/ash/policy/core/user_cloud_policy_token_forwarder_unittest.cc chrome/browser/ash/policy/dlp/data_transfer_dlp_controller_ash_browsertest.cc chrome/browser/ash/policy/dlp/dlp_content_manager_ash_browsertest.cc chrome/browser/ash/policy/dlp/dlp_content_manager_ash_unittest.cc chrome/browser/ash/policy/dlp/dlp_files_controller_ash_unittest.cc chrome/browser/ash/policy/enrollment/account_status_check_fetcher_unittest.cc chrome/browser/ash/policy/handlers/multi_screen_capture_policy_handler_unittest.cc chrome/browser/ash/policy/login/login_policy_test_base.cc chrome/browser/ash/policy/networking/network_policy_application_browsertest.cc chrome/browser/ash/policy/remote_commands/crd/crd_oauth_token_fetcher.cc chrome/browser/ash/policy/remote_commands/device_command_fetch_support_packet_job_browsertest.cc chrome/browser/ash/policy/reporting/metrics_reporting/network/https_latency_events_unittest.cc chrome/browser/ash/policy/skyvault/drive_skyvault_uploader_browsertest.cc chrome/browser/ash/policy/skyvault/migration_coordinator_browsertest.cc chrome/browser/ash/policy/status_collector/child_status_collector_unittest.cc chrome/browser/ash/policy/status_collector/device_status_collector_unittest.cc chrome/browser/ash/policy/status_collector/status_collector.h chrome/browser/ash/policy/uploading/heartbeat_scheduler.cc chrome/browser/ash/policy/uploading/status_uploader_unittest.cc chrome/browser/ash/power/auto_screen_brightness/adapter_unittest.cc chrome/browser/ash/power/auto_screen_brightness/modeller_impl_unittest.cc chrome/browser/ash/power/ml/smart_dim/ml_agent_unittest.cc chrome/browser/ash/printing/specifics_translation_unittest.cc chrome/browser/ash/printing/synced_printers_manager_unittest.cc chrome/browser/ash/release_notes/release_notes_notification_unittest.cc chrome/browser/ash/release_notes/release_notes_storage_unittest.cc chrome/browser/ash/scanner/scanner_keyed_service.cc chrome/browser/ash/scanning/chrome_scanning_app_delegate_unittest.cc chrome/browser/ash/settings/cros_settings_unittest.cc chrome/browser/ash/settings/device_settings_provider_unittest.cc chrome/browser/ash/smb_client/smb_service_helper.h chrome/browser/ash/system_web_apps/apps/camera_app/camera_app_integration_browsertest.cc chrome/browser/ash/system_web_apps/apps/files_internals_ui_delegate.cc chrome/browser/ash/system_web_apps/apps/help_app/help_app_notification_controller_unittest.cc chrome/browser/ash/system_web_apps/apps/personalization_app/personalization_app_sea_pen_provider_impl_unittest.cc chrome/browser/ash/system_web_apps/apps/personalization_app/personalization_app_utils_unittest.cc chrome/browser/ash/tpm/tpm_firmware_update.h chrome/browser/ash/wallpaper_handlers/google_photos_wallpaper_handlers.cc chrome/browser/ash/wallpaper_handlers/google_photos_wallpaper_handlers_unittest.cc chrome/browser/ash/wallpaper_handlers/sea_pen_fetcher.cc chrome/browser/ash/wallpaper_handlers/wallpaper_handlers.cc chrome/browser/autocomplete/aim_eligibility_refresh_navigation_throttle_unittest.cc chrome/browser/autocomplete/autocomplete_browsertest.cc chrome/browser/autocomplete/chrome_aim_eligibility_service_browsertest.cc chrome/browser/autocomplete/chrome_autocomplete_provider_client_browsertest.cc chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier_unittest.cc chrome/browser/autocomplete/search_provider_unittest.cc chrome/browser/autocomplete/tab_matcher_desktop_browsertest.cc chrome/browser/autofill/android/save_update_address_profile_prompt_controller_unittest.cc chrome/browser/autofill/autofill_browsertest.cc chrome/browser/autofill/autofill_captured_sites_interactive_uitest.cc chrome/browser/autofill/autofill_interactive_uitest.cc chrome/browser/autofill/autofill_server_browsertest.cc chrome/browser/autofill/automated_tests/cache_replayer.cc chrome/browser/autofill/automated_tests/cache_replayer.h chrome/browser/autofill/automated_tests/cache_replayer_unittest.cc chrome/browser/autofill/captured_sites_test_utils.cc chrome/browser/background/background_contents_service.cc chrome/browser/background_sync/periodic_background_sync_permission_context.cc chrome/browser/bluetooth/web_bluetooth_browsertest.cc chrome/browser/bookmarks/bookmark_merged_surface_service_unittest.cc chrome/browser/bookmarks/bookmark_test_utils.cc chrome/browser/bookmarks/managed_bookmark_service_unittest.cc chrome/browser/breadcrumbs/breadcrumb_manager_tab_helper_unittest.cc chrome/browser/browser_about_handler_unittest.cc chrome/browser/browser_commands_unittest.cc chrome/browser/browser_features.cc chrome/browser/browser_switcher/browser_switcher_browsertest.cc chrome/browser/browser_switcher/browser_switcher_service.cc chrome/browser/browser_switcher/browser_switcher_service_browsertest.cc chrome/browser/browser_switcher/browser_switcher_sitelist_unittest.cc chrome/browser/browser_switcher/ieem_sitelist_parser.cc chrome/browser/browser_switcher/ieem_sitelist_parser_unittest.cc chrome/browser/browsing_data/browsing_data_remover_browsertest.cc chrome/browser/browsing_data/chrome_browsing_data_model_delegate_unittest.cc chrome/browser/browsing_data/chrome_browsing_data_remover_delegate_unittest.cc chrome/browser/browsing_data/counters/bookmark_counter_unittest.cc chrome/browser/browsing_data/counters/browsing_data_counter_utils_unittest.cc chrome/browser/browsing_data/counters/history_counter_browsertest.cc chrome/browser/browsing_data/counters/passwords_counter_browsertest.cc chrome/browser/browsing_data/counters/site_data_counting_helper_unittest.cc chrome/browser/browsing_data/counters/site_settings_counter_unittest.cc chrome/browser/browsing_topics/browsing_topics_service_browsertest.cc chrome/browser/browsing_topics/browsing_topics_service_factory.cc chrome/browser/btm/btm_browser_signin_detector.cc chrome/browser/btm/btm_browser_signin_detector_unittest.cc chrome/browser/chrome_browser_application_mac.mm chrome/browser/chrome_browser_main_win.cc chrome/browser/chrome_browser_main_win_unittest.cc chrome/browser/chrome_content_browser_client.cc chrome/browser/chrome_content_browser_client_browsertest.cc chrome/browser/chrome_content_browser_client_unittest.cc chrome/browser/chrome_for_testing/tools/generate_about_file.py chrome/browser/chrome_main_process_singleton_browsertest.cc chrome/browser/chrome_navigation_browsertest.cc chrome/browser/chrome_security_exploit_browsertest.cc chrome/browser/chrome_web_platform_security_metrics_browsertest.cc chrome/browser/chromeos/arc/arc_external_protocol_dialog_unittest.cc chrome/browser/chromeos/enterprise/cloud_storage/one_drive_pref_observer_browsertest.cc chrome/browser/chromeos/extensions/desk_api/desk_api_extension_manager.cc chrome/browser/chromeos/extensions/desk_api/desk_api_extension_manager.h chrome/browser/chromeos/extensions/odfs_config_private/odfs_config_private_api_unittest.cc chrome/browser/chromeos/extensions/telemetry/api/common/api_guard_delegate_unittest.cc chrome/browser/chromeos/network/network_portal_signin_window_ash_browsertest.cc chrome/browser/chromeos/policy/default_notifications_setting_browsertest.cc chrome/browser/chromeos/policy/dino_easter_egg_browsertest.cc chrome/browser/chromeos/policy/dlp/data_transfer_dlp_controller_browsertest.cc chrome/browser/chromeos/policy/dlp/dlp_content_tab_helper_unittest.cc chrome/browser/chromeos/policy/dlp/dlp_policy_constants.h chrome/browser/chromeos/policy/dlp/dlp_rules_manager_impl.cc chrome/browser/chromeos/policy/dlp/dlp_rules_manager_impl_unittest.cc chrome/browser/chromeos/policy/dlp/dlp_scoped_file_access_delegate_unittest.cc chrome/browser/chromeos/printing/print_preview/print_settings_converter_unittest.cc chrome/browser/chromeos/reporting/metric_reporting_prefs_unittest.cc chrome/browser/chromeos/tablet_mode/chrome_content_browser_client_tablet_mode_part_unittest.cc chrome/browser/complex_tasks/task_tab_helper_unittest.cc chrome/browser/component_updater/translate_kit_component_installer.cc chrome/browser/compose/chrome_compose_client_unittest.cc chrome/browser/compose/compose_enabling_unittest.cc chrome/browser/compose/compose_session.cc chrome/browser/content_settings/content_settings_default_provider_unittest.cc chrome/browser/content_settings/content_settings_origin_value_map_unittest.cc chrome/browser/content_settings/content_settings_policy_provider_unittest.cc chrome/browser/content_settings/content_settings_pref_provider_unittest.cc chrome/browser/content_settings/host_content_settings_map_unittest.cc chrome/browser/content_settings/javascript_optimizer_provider_android_unittest.cc chrome/browser/content_settings/sound_content_setting_observer_unittest.cc chrome/browser/contextual_cueing/caching_zero_state_suggestions_manager_unittest.cc chrome/browser/contextual_cueing/zero_state_suggestions_browsertest.cc chrome/browser/contextual_tasks/contextual_tasks_composebox_handler_unittest.cc chrome/browser/contextual_tasks/contextual_tasks_cookie_synchronizer_unittest.cc chrome/browser/contextual_tasks/contextual_tasks_page_handler.cc chrome/browser/contextual_tasks/contextual_tasks_page_handler_unittest.cc chrome/browser/contextual_tasks/contextual_tasks_ui.cc chrome/browser/contextual_tasks/contextual_tasks_ui_service.cc chrome/browser/contextual_tasks/contextual_tasks_ui_service_interactive_uitest.cc chrome/browser/contextual_tasks/contextual_tasks_ui_service_unittest.cc chrome/browser/contextual_tasks/contextual_tasks_ui_unittest.cc chrome/browser/contextual_tasks/contextual_tasks_url_loader_factory_interceptor.cc chrome/browser/contextual_tasks/contextual_tasks_url_loader_factory_interceptor_browsertest.cc chrome/browser/contextual_tasks/tab_strip_context_decorator_unittest.cc chrome/browser/custom_handlers/protocol_handler_registry_browsertest.cc chrome/browser/data_sharing/desktop/data_sharing_conversion_utils_unittest.cc chrome/browser/data_sharing/desktop/data_sharing_service_browsertest.cc chrome/browser/device_identity/device_oauth2_token_service_unittest.cc chrome/browser/device_notifications/device_connection_tracker_unittest.cc chrome/browser/devtools/aida_client.h chrome/browser/devtools/aida_service_handler.cc chrome/browser/devtools/device/adb/adb_client_socket_browsertest.cc chrome/browser/devtools/device/adb/mock_adb_server.cc chrome/browser/devtools/device/usb/android_rsa.cc chrome/browser/devtools/devtools_browsertest.cc chrome/browser/devtools/devtools_http_service_handler_unittest.cc chrome/browser/devtools/devtools_ui_bindings.cc chrome/browser/devtools/devtools_ui_bindings_unittest.cc chrome/browser/devtools/features.cc chrome/browser/devtools/gdp_service_handler.cc chrome/browser/devtools/process_sharing_infobar_delegate.cc chrome/browser/devtools/protocol/devtools_protocol_browsertest.cc chrome/browser/devtools/protocol/devtools_pwa_browsertest.cc chrome/browser/devtools/url_constants.cc chrome/browser/download/chrome_download_manager_delegate_unittest.cc chrome/browser/download/download_browsertest.cc chrome/browser/download/insecure_download_blocking.cc chrome/browser/download/save_page_browsertest.cc chrome/browser/engagement/important_sites_util_browsertest.cc chrome/browser/engagement/important_sites_util_unittest.cc chrome/browser/engagement/site_engagement_service_unittest.cc chrome/browser/enterprise/client_certificates/client_certificates_browsertest.cc chrome/browser/enterprise/connectors/analysis/clipboard_request_handler_unittest.cc chrome/browser/enterprise/connectors/analysis/content_analysis_delegate_browsertest.cc chrome/browser/enterprise/connectors/analysis/content_analysis_delegate_unittest.cc chrome/browser/enterprise/connectors/analysis/content_analysis_dialog_browsertest.cc chrome/browser/enterprise/connectors/analysis/content_analysis_downloads_delegate_unittest.cc chrome/browser/enterprise/connectors/analysis/content_analysis_info_browsertest.cc chrome/browser/enterprise/connectors/analysis/file_transfer_analysis_delegate_unittest.cc chrome/browser/enterprise/connectors/analysis/page_print_request_handler_unittest.cc chrome/browser/enterprise/connectors/device_trust/attestation/ash/ash_attestation_cleanup_manager_unittest.cc chrome/browser/enterprise/connectors/device_trust/attestation/ash/ash_attestation_service_impl_unittest.cc chrome/browser/enterprise/connectors/device_trust/attestation/browser/google_keys.cc chrome/browser/enterprise/connectors/device_trust/key_management/core/network/win_key_network_delegate_unittest.cc chrome/browser/enterprise/connectors/device_trust/key_management/installer/management_service/rotate_util.cc chrome/browser/enterprise/connectors/device_trust/key_management/installer/management_service/rotate_util_unittest.cc chrome/browser/enterprise/connectors/device_trust/signals/decorators/ash/ash_signals_decorator_browsertest.cc chrome/browser/enterprise/connectors/device_trust/signals/decorators/browser/browser_signals_decorator_unittest.cc chrome/browser/enterprise/connectors/device_trust/test/test_constants.cc chrome/browser/enterprise/connectors/reporting/extension_telemetry_event_router_unittest.cc chrome/browser/enterprise/connectors/reporting/reporting_event_router_unittest.cc chrome/browser/enterprise/connectors/test/active_user_test_mixin.cc chrome/browser/enterprise/connectors/test/deep_scanning_test_utils.cc chrome/browser/enterprise/data_controls/chrome_rules_service_unittest.cc chrome/browser/enterprise/data_controls/reporting_unittest.cc chrome/browser/enterprise/data_protection/clipboard_browsertest.cc chrome/browser/enterprise/data_protection/data_protection_clipboard_utils_browsertest.cc chrome/browser/enterprise/data_protection/data_protection_navigation_observer_unittest.cc chrome/browser/enterprise/data_protection/paste_allowed_request_unittest.cc chrome/browser/enterprise/data_protection/print_utils_unittest.cc chrome/browser/enterprise/platform_auth/cloud_ap_provider_win.cc chrome/browser/enterprise/profile_management/profile_management_navigation_throttle.cc chrome/browser/enterprise/profile_management/profile_management_navigation_throttle_unittest.cc chrome/browser/enterprise/reporting/extension_request/extension_request_notification.cc chrome/browser/enterprise/reporting/extension_request/extension_request_notification_browsertest.cc chrome/browser/enterprise/reporting/extension_request/extension_request_observer_unittest.cc chrome/browser/enterprise/reporting/security_reporting_browsertest.cc chrome/browser/enterprise/signals/profile_signals_collector_browsertest.cc chrome/browser/enterprise/signin/enterprise_signin_service_browsertest.cc chrome/browser/enterprise/signin/token_managed_profile_creation_delegate_unittest.cc chrome/browser/enterprise/util/managed_browser_utils.cc chrome/browser/enterprise/util/managed_browser_utils.h chrome/browser/enterprise/webstore/chrome_web_store_navigation_throttle_unittest.cc chrome/browser/error_reporting/chrome_js_error_report_processor_nonchromeos.cc chrome/browser/error_reporting/chrome_js_error_report_processor_unittest.cc chrome/browser/extensions/activity_log/activity_log_policy_unittest.cc chrome/browser/extensions/activity_log/activity_log_unittest.cc chrome/browser/extensions/activity_log/counting_policy_unittest.cc chrome/browser/extensions/activity_log/fullstream_ui_policy_unittest.cc chrome/browser/extensions/api/activity_log_private/activity_log_private_api_unittest.cc chrome/browser/extensions/api/bookmark_manager_private/bookmark_manager_private_api_unittest.cc chrome/browser/extensions/api/bookmarks/bookmarks_apitest.cc chrome/browser/extensions/api/braille_display_private/braille_display_private_apitest.cc chrome/browser/extensions/api/certificate_provider/certificate_provider_apitest.cc chrome/browser/extensions/api/content_settings/content_settings_apitest.cc chrome/browser/extensions/api/context_menus/extension_context_menu_browsertest.cc chrome/browser/extensions/api/debugger/debugger_apitest.cc chrome/browser/extensions/api/debugger/extension_dev_tools_infobar_delegate.cc chrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h chrome/browser/extensions/api/declarative_content/content_action.h chrome/browser/extensions/api/declarative_content/content_condition.h chrome/browser/extensions/api/declarative_content/content_predicate.h chrome/browser/extensions/api/declarative_content/content_predicate_evaluator.h chrome/browser/extensions/api/declarative_content/declarative_content_page_url_condition_tracker_unittest.cc chrome/browser/extensions/api/declarative_net_request/declarative_net_request_browsertest.cc chrome/browser/extensions/api/declarative_net_request/declarative_net_request_unittest.cc chrome/browser/extensions/api/declarative_net_request/ruleset_manager_unittest.cc chrome/browser/extensions/api/declarative_webrequest/webrequest_action_unittest.cc chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry_unittest.cc chrome/browser/extensions/api/developer_private/developer_private_api_unittest.cc chrome/browser/extensions/api/developer_private/extension_info_generator_unittest.cc chrome/browser/extensions/api/downloads/downloads_api.h chrome/browser/extensions/api/downloads/downloads_api_browsertest.cc chrome/browser/extensions/api/enterprise_platform_keys/enterprise_platform_keys_api_unittest.cc chrome/browser/extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api_unittest.cc chrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_apitest.cc chrome/browser/extensions/api/enterprise_reporting_private/enterprise_reporting_private_unittest.cc chrome/browser/extensions/api/experimental_ai_data/experimental_ai_data_api.cc chrome/browser/extensions/api/extension_action/browser_action_interactive_test.cc chrome/browser/extensions/api/extension_action/extension_action_apitest.cc chrome/browser/extensions/api/feedback_private/feedback_browsertest.cc chrome/browser/extensions/api/identity/identity_apitest.cc chrome/browser/extensions/api/identity/identity_launch_web_auth_flow_function.cc chrome/browser/extensions/api/image_writer_private/removable_storage_provider.cc chrome/browser/extensions/api/image_writer_private/removable_storage_provider_linux.cc chrome/browser/extensions/api/messaging/externally_connectable_messaging_apitest.cc chrome/browser/extensions/api/page_capture/page_capture_api_unittest.cc chrome/browser/extensions/api/passwords_private/password_check_delegate_unittest.cc chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl_unittest.cc chrome/browser/extensions/api/passwords_private/passwords_private_utils_unittest.cc chrome/browser/extensions/api/permissions/permissions_api_helpers.cc chrome/browser/extensions/api/permissions/permissions_api_unittest.cc chrome/browser/extensions/api/preference/preference_api_prefs_unittest.cc chrome/browser/extensions/api/printing/printing_api_utils.h chrome/browser/extensions/api/protocol_handlers/protocol_handlers_manager_browsertest.cc chrome/browser/extensions/api/proxy/proxy_api_helpers_unittest.cc chrome/browser/extensions/api/proxy_override_rules_private_apitest.cc chrome/browser/extensions/api/quick_unlock_private/quick_unlock_private_api_unittest.cc chrome/browser/extensions/api/runtime/runtime_apitest.cc chrome/browser/extensions/api/scripting/scripting_apitest.cc chrome/browser/extensions/api/settings_overrides/settings_overrides_browsertest.cc chrome/browser/extensions/api/tab_capture/tab_capture_performance_test_base.cc chrome/browser/extensions/api/tabs/tabs_api.cc chrome/browser/extensions/api/tabs/tabs_api_unittest.cc chrome/browser/extensions/api/tabs/tabs_test.cc chrome/browser/extensions/api/tabs/windows_util_unittest.cc chrome/browser/extensions/api/web_navigation/frame_navigation_state_unittest.cc chrome/browser/extensions/api/web_request/web_request_api_unittest.cc chrome/browser/extensions/api/web_request/web_request_apitest.cc chrome/browser/extensions/api/web_request/web_request_permissions_unittest.cc chrome/browser/extensions/api/webrtc_audio_private/webrtc_audio_private_browsertest.cc chrome/browser/extensions/api/webstore_private/extension_install_status_unittest.cc chrome/browser/extensions/background_xhr_browsertest.cc chrome/browser/extensions/bookmarks/bookmarks_helpers_unittest.cc chrome/browser/extensions/chrome_extension_function_details.cc chrome/browser/extensions/component_extensions_allowlist/allowlist.h chrome/browser/extensions/content_script_apitest.cc chrome/browser/extensions/crx_installer_browsertest.cc chrome/browser/extensions/cws_info_service.cc chrome/browser/extensions/desktop_android_extensions_browsertest.cc chrome/browser/extensions/extension_action_runner_unittest.cc chrome/browser/extensions/extension_browser_window_helper.cc chrome/browser/extensions/extension_browsertest.cc chrome/browser/extensions/extension_context_menu_model_browsertest.cc chrome/browser/extensions/extension_keybinding_browsertest.cc chrome/browser/extensions/extension_loading_browsertest.cc chrome/browser/extensions/extension_management.cc chrome/browser/extensions/extension_management_unittest.cc chrome/browser/extensions/extension_override_apitest.cc chrome/browser/extensions/extension_prefs_unittest.cc chrome/browser/extensions/extension_service_test_base.cc chrome/browser/extensions/extension_service_unittest.cc chrome/browser/extensions/extension_tab_util_browsertest.cc chrome/browser/extensions/extension_tab_util_unittest.cc chrome/browser/extensions/extension_unload_browsertest.cc chrome/browser/extensions/extension_user_script_loader_unittest.cc chrome/browser/extensions/extension_util_unittest.cc chrome/browser/extensions/external_policy_loader_unittest.cc chrome/browser/extensions/external_pref_loader.cc chrome/browser/extensions/external_provider_impl_chromeos_unittest.cc chrome/browser/extensions/file_handlers/web_file_handlers_permission_handler.cc chrome/browser/extensions/forced_extensions/force_installed_test_base.cc chrome/browser/extensions/installed_loader_unittest.cc chrome/browser/extensions/lazy_background_page_apitest.cc chrome/browser/extensions/menu_manager_unittest.cc chrome/browser/extensions/native_bindings_apitest.cc chrome/browser/extensions/navigation_extension_enabler.cc chrome/browser/extensions/navigation_extension_enabler_browsertest.cc chrome/browser/extensions/open_tab_helper.cc chrome/browser/extensions/orb_and_cors_extension_browsertest.cc chrome/browser/extensions/permission_message_combinations_unittest.cc chrome/browser/extensions/permissions/active_tab_apitest.cc chrome/browser/extensions/permissions/active_tab_unittest.cc chrome/browser/extensions/permissions/permissions_updater_unittest.cc chrome/browser/extensions/permissions/scripting_permissions_modifier_unittest.cc chrome/browser/extensions/permissions_url_constants.cc chrome/browser/extensions/policy_handlers_unittest.cc chrome/browser/extensions/process_management_browsertest.cc chrome/browser/extensions/script_injection_tracker_browsertest.cc chrome/browser/extensions/sync/extension_sync_data_unittest.cc chrome/browser/extensions/sync/extension_sync_service_unittest.cc chrome/browser/extensions/updater/chrome_extension_downloader_factory.cc chrome/browser/extensions/updater/chrome_update_client_config.cc chrome/browser/extensions/updater/extension_updater_unittest.cc chrome/browser/extensions/user_script_extension_browsertest.cc chrome/browser/extensions/user_script_listener_unittest.cc chrome/browser/extensions/webstore_domain_browsertest.cc chrome/browser/extensions/webstore_installer_browsertest.cc chrome/browser/extensions/webstore_reinstaller_browsertest.cc chrome/browser/external_protocol/external_protocol_handler.cc chrome/browser/external_protocol/external_protocol_handler_browsertest.cc chrome/browser/favicon/favicon_utils_unittest.cc chrome/browser/feed/android/feed_reliability_logging_bridge.cc chrome/browser/feedback/android/family_info_feedback_source_unittest.cc chrome/browser/feedback/show_feedback_page.cc chrome/browser/feedback/system_logs/log_sources/chrome_root_store_log_source.cc chrome/browser/feedback/system_logs/log_sources/crash_ids_source.cc chrome/browser/feedback/system_logs/log_sources/family_info_log_source_unittest.cc chrome/browser/file_system_access/cloud_identifier/cloud_identifier_util_ash.cc chrome/browser/file_system_access/cloud_identifier/cloud_identifier_util_ash_browsertest.cc chrome/browser/first_run/bookmark_importer_unittest.cc chrome/browser/first_run/first_run_unittest.cc chrome/browser/flag-metadata.json chrome/browser/flag_descriptions.h chrome/browser/flags/android/chrome_session_state.h chrome/browser/font_prewarmer_tab_helper_browsertest.cc chrome/browser/glic/e2e_test/glic_e2e_test.cc chrome/browser/glic/fre/glic_fre_controller.cc chrome/browser/glic/fre/glic_fre_controller_interactive_uitest.cc chrome/browser/glic/fre/glic_fre_controller_unittest.cc chrome/browser/glic/fre/glic_fre_page_handler.cc chrome/browser/glic/glic_metrics_unittest.cc chrome/browser/glic/glic_navigation_throttle.h chrome/browser/glic/glic_navigation_throttle_browsertest.cc chrome/browser/glic/glic_user_status_browsertest.cc chrome/browser/glic/host/glic_annotation_manager_interactive_uitest.cc chrome/browser/glic/host/glic_api_browsertest.cc chrome/browser/glic/host/glic_cookie_synchronizer.cc chrome/browser/glic/host/glic_cookie_synchronizer_unittest.cc chrome/browser/glic/host/glic_page_handler.cc chrome/browser/glic/host/glic_ui.cc chrome/browser/glic/host/glic_ui_interactive_uitest.cc chrome/browser/glic/host/guest_util_unittest.cc chrome/browser/glic/media/glic_media_integration.cc chrome/browser/glic/media/glic_media_integration_unittest.cc chrome/browser/glic/media/glic_media_link_helper.cc chrome/browser/glic/media/glic_media_link_helper_unittest.cc chrome/browser/google/google_update_win.cc chrome/browser/guest_view/web_view/context_menu_content_type_web_view.cc chrome/browser/hid/chrome_hid_delegate_unittest.cc chrome/browser/hid/hid_browsertest.cc chrome/browser/hid/hid_chooser_context_unittest.cc chrome/browser/history/redirect_browsertest.cc chrome/browser/history_clusters/history_clusters_metrics_browsertest.cc chrome/browser/history_clusters/history_clusters_tab_helper_unittest.cc chrome/browser/importer/edge_importer_browsertest_win.cc chrome/browser/importer/firefox_profile_lock.cc chrome/browser/importer/firefox_profile_lock.h chrome/browser/importer/firefox_profile_lock_posix.cc chrome/browser/importer/firefox_profile_lock_win.cc chrome/browser/importer/ie_importer_browsertest_win.cc chrome/browser/importer/profile_writer_unittest.cc chrome/browser/keyboard_accessory/android/address_accessory_controller_impl_unittest.cc chrome/browser/legion/connection_factory_impl_browsertest.cc chrome/browser/lifetime/switch_utils_unittest.cc chrome/browser/loader/from_gws_navigation_and_keep_alive_request_observer_unittest.cc chrome/browser/loader/keep_alive_request_browsertest_util.h chrome/browser/loader/keep_alive_request_tracker.h chrome/browser/loader/keep_alive_url_browsertest.cc chrome/browser/local_discovery/service_discovery_client_mac.mm chrome/browser/long_screenshots/long_screenshots_tab_service.cc chrome/browser/long_screenshots/long_screenshots_tab_service_unittest.cc chrome/browser/lookalikes/lookalike_url_navigation_throttle.cc chrome/browser/lookalikes/lookalike_url_navigation_throttle_browsertest.cc chrome/browser/lookalikes/safety_tip_message_delegate_android_unittest.cc chrome/browser/mac/code_sign_clone_manager_unittest.mm chrome/browser/media/media_engagement_contents_observer_unittest.cc chrome/browser/media/media_engagement_preloaded_list_unittest.cc chrome/browser/media/media_engagement_score_unittest.cc chrome/browser/media/media_engagement_service_unittest.cc chrome/browser/media/media_engagement_session_unittest.cc chrome/browser/media/router/BUILD.gn chrome/browser/media/router/discovery/access_code/access_code_cast_constants.cc chrome/browser/media/router/discovery/access_code/access_code_cast_discovery_interface_unittest.cc chrome/browser/media/router/discovery/dial/safe_dial_device_description_parser_unittest.cc chrome/browser/media/router/discovery/discovery_network_list_win.cc chrome/browser/media/router/discovery/discovery_network_list_win.h chrome/browser/media/router/mojo/media_router_desktop_unittest.cc chrome/browser/media/router/providers/cast/cast_activity_manager_unittest.cc chrome/browser/media/router/providers/cast/cast_media_route_provider.cc chrome/browser/media/router/providers/cast/cast_media_route_provider_unittest.cc chrome/browser/media/router/providers/dial/dial_activity_manager_unittest.cc chrome/browser/media/router/providers/dial/dial_media_route_provider.cc chrome/browser/media/router/providers/dial/dial_media_route_provider_unittest.cc chrome/browser/media/webrtc/desktop_capture_devices_util_win.cc chrome/browser/media/webrtc/display_media_access_handler_unittest.cc chrome/browser/media/webrtc/webrtc_browsertest_common.cc chrome/browser/media/webrtc/webrtc_event_log_uploader.cc chrome/browser/media/webrtc/webrtc_log_uploader.cc chrome/browser/media_galleries/fileapi/media_path_filter.cc chrome/browser/metrics/chrome_metrics_service_client.cc chrome/browser/metrics/chrome_metrics_service_client_ash_unittest.cc chrome/browser/metrics/family_link_user_metrics_provider_unittest.cc chrome/browser/metrics/family_user_metrics_provider_browsertest.cc chrome/browser/metrics/per_user_state_manager_chromeos_browsertest.cc chrome/browser/metrics/system_pdh_metrics_provider_win.h chrome/browser/metrics/usage_scenario/tab_usage_scenario_tracker.cc chrome/browser/metrics/usage_scenario/tab_usage_scenario_tracker_unittest.cc chrome/browser/metrics/variations/variations_http_headers_browsertest.cc chrome/browser/navigation_predictor/anchor_element_preloader_browsertest.cc chrome/browser/navigation_predictor/navigation_predictor_browsertest.cc chrome/browser/navigation_predictor/navigation_predictor_preconnect_client_browsertest.cc chrome/browser/navigation_predictor/navigation_predictor_unittest.cc chrome/browser/navigation_predictor/search_engine_preconnector_browsertest.cc chrome/browser/nearby_sharing/certificates/nearby_share_certificate_manager_impl_unittest.cc chrome/browser/nearby_sharing/certificates/test_util.cc chrome/browser/nearby_sharing/client/nearby_share_client_impl.cc chrome/browser/nearby_sharing/client/nearby_share_client_impl_unittest.cc chrome/browser/nearby_sharing/common/nearby_share_switches.cc chrome/browser/nearby_sharing/contacts/nearby_share_contact_manager_impl_unittest.cc chrome/browser/nearby_sharing/contacts/nearby_share_contacts_sorter_unittest.cc chrome/browser/nearby_sharing/instantmessaging/constants.h chrome/browser/nearby_sharing/instantmessaging/stream_parser.cc chrome/browser/nearby_sharing/local_device_data/nearby_share_device_data_updater_impl_unittest.cc chrome/browser/nearby_sharing/local_device_data/nearby_share_local_device_data_manager_impl_unittest.cc chrome/browser/nearby_sharing/nearby_notification_manager_unittest.cc chrome/browser/nearby_sharing/network_traversal_ice_config_fetcher.cc chrome/browser/nearby_sharing/network_traversal_ice_config_fetcher_unittest.cc chrome/browser/nearby_sharing/sharesheet/nearby_share_action_unittest.cc chrome/browser/nearby_sharing/tachyon_ice_config_fetcher.cc chrome/browser/nearby_sharing/tachyon_ice_config_fetcher_unittest.cc chrome/browser/nearby_sharing/text_attachment_unittest.cc chrome/browser/net/cert_verify_proc_browsertest.cc chrome/browser/net/dns_probe_runner.cc chrome/browser/net/dns_probe_runner.h chrome/browser/net/http_auth_cache_status_unittest.cc chrome/browser/net/profile_network_context_service.cc chrome/browser/net/proxy_browsertest.cc chrome/browser/net/qwac_web_contents_observer.cc chrome/browser/net/sandboxed_network_change_notifier_win_browsertest.cc chrome/browser/net/service_providers_win.cc chrome/browser/net/stub_resolver_config_reader_browsertest.cc chrome/browser/net/system_network_context_manager_browsertest.cc chrome/browser/new_tab_page/modules/file_suggestion/drive_service.cc chrome/browser/new_tab_page/modules/file_suggestion/drive_service_unittest.cc chrome/browser/new_tab_page/modules/file_suggestion/microsoft_files_page_handler.cc chrome/browser/new_tab_page/modules/file_suggestion/microsoft_files_page_handler_unittest.cc chrome/browser/new_tab_page/modules/new_tab_page_modules_interactive_uitest.cc chrome/browser/new_tab_page/modules/new_tab_page_modules_unittest.cc chrome/browser/new_tab_page/modules/v2/calendar/calendar_fake_data_helper.cc chrome/browser/new_tab_page/modules/v2/calendar/google_calendar_page_handler.cc chrome/browser/new_tab_page/modules/v2/calendar/google_calendar_page_handler_unittest.cc chrome/browser/new_tab_page/modules/v2/calendar/outlook_calendar_page_handler.cc chrome/browser/new_tab_page/modules/v2/calendar/outlook_calendar_page_handler_unittest.cc chrome/browser/new_tab_page/modules/v2/most_relevant_tab_resumption/most_relevant_tab_resumption_page_handler.cc chrome/browser/new_tab_page/modules/v2/most_relevant_tab_resumption/most_relevant_tab_resumption_page_handler_unittest.cc chrome/browser/new_tab_page/modules/v2/tab_groups/tab_groups_page_handler.cc chrome/browser/new_tab_page/modules/v2/tab_groups/tab_groups_page_handler_unittest.cc chrome/browser/new_tab_page/new_tab_page_realbox_interactive_uitest.cc chrome/browser/new_tab_page/new_tab_page_util_browsertest.cc chrome/browser/new_tab_page/ntp_promo/ntp_promo_interactive_uitest.cc chrome/browser/new_tab_page/one_google_bar/one_google_bar_loader_impl.cc chrome/browser/new_tab_page/promos/promo_service_unittest.cc chrome/browser/no_best_effort_tasks_browsertest.cc chrome/browser/notifications/chrome_ash_message_center_client_unittest.cc chrome/browser/notifications/mac/notification_platform_bridge_mac_unittest.cc chrome/browser/notifications/notification_channels_provider_android_unittest.cc chrome/browser/notifications/notification_permission_context.h chrome/browser/notifications/notification_permission_context_unittest.cc chrome/browser/notifications/notification_platform_bridge_linux_unittest.cc chrome/browser/notifications/notification_platform_bridge_win_unittest.cc chrome/browser/notifications/platform_notification_service_unittest.cc chrome/browser/notifications/win/notification_template_builder.cc chrome/browser/ntp_tiles/ntp_tiles_browsertest.cc chrome/browser/obsolete_system/obsolete_system_linux.cc chrome/browser/optimization_guide/chrome_hints_manager_unittest.cc chrome/browser/optimization_guide/hints_fetcher_browsertest.cc chrome/browser/optimization_guide/model_execution/model_execution_browsertest.cc chrome/browser/optimization_guide/model_execution/model_execution_validation_browsertest.cc chrome/browser/optimization_guide/optimization_guide_keyed_service_browsertest.cc chrome/browser/origin_trials/origin_trials_browsertest.cc chrome/browser/os_crypt/app_bound_encryption_win.cc chrome/browser/page_content_annotations/page_content_annotations_service_browsertest.cc chrome/browser/page_image_service/android/image_service_bridge_unittest.cc chrome/browser/page_load_metrics/integration_tests/soft_navigation_metrics_browsertest.cc chrome/browser/page_load_metrics/observers/core/amp_page_load_metrics_observer.h chrome/browser/page_load_metrics/observers/core/amp_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/core/ukm_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/document_write_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/from_gws_abandoned_page_load_metrics_observer_browsertest.cc chrome/browser/page_load_metrics/observers/from_gws_page_load_metrics_observer.cc chrome/browser/page_load_metrics/observers/from_gws_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/gws_abandoned_page_load_metrics_observer_browsertest.cc chrome/browser/page_load_metrics/observers/gws_hp_page_load_metrics_observer_browsertest.cc chrome/browser/page_load_metrics/observers/gws_page_load_metrics_observer_browsertest.cc chrome/browser/page_load_metrics/observers/gws_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/initial_webui_page_load_metrics_observer.h chrome/browser/page_load_metrics/observers/loading_predictor_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/multi_tab_loading_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/omnibox_suggestion_used_page_load_metrics_observer.cc chrome/browser/page_load_metrics/observers/page_anchors_metrics_observer_browsertest.cc chrome/browser/page_load_metrics/observers/page_anchors_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/page_load_metrics_observer_test_harness.cc chrome/browser/page_load_metrics/observers/prefetch_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/protocol_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/scheme_page_load_metrics_observer_unittest.cc chrome/browser/page_load_metrics/observers/security_state_page_load_metrics_observer_browsertest.cc chrome/browser/partnerbookmarks/partner_bookmarks_reader.cc chrome/browser/password_manager/actor_login/internal/actor_login_federated_credentials_fetcher.cc chrome/browser/password_manager/actor_login/internal/siwg_button_finder.cc chrome/browser/password_manager/actor_login/internal/siwg_button_finder_unittest.cc chrome/browser/password_manager/android/all_passwords_bottom_sheet_controller_unittest.cc chrome/browser/password_manager/android/chromesync_status_code.h chrome/browser/password_manager/android/credential_leak_controller_android_unittest.cc chrome/browser/password_manager/android/password_manager_settings_service_android_impl_unittest.cc chrome/browser/password_manager/android/password_settings_updater_android_bridge_helper_impl_unittest.cc chrome/browser/password_manager/android/password_store_android_account_backend_unittest.cc chrome/browser/password_manager/android/password_store_android_backend_bridge_helper_impl_unittest.cc chrome/browser/password_manager/android/unified_password_manager_proto_utils_unittest.cc chrome/browser/password_manager/chrome_password_manager_client_unittest.cc chrome/browser/password_manager/password_change_delegate_impl_unittest.cc chrome/browser/password_manager/password_manager_browsertest.cc chrome/browser/password_manager/password_manager_captured_sites_interactive_uitest.cc chrome/browser/password_manager/password_manager_signin_intercept_test_helper.cc chrome/browser/password_manager/password_manager_util_win.cc chrome/browser/payments/android_payment_app_factory_browsertest.cc chrome/browser/payments/journey_logger_browsertest.cc chrome/browser/payments/manifest_verifier_browsertest.cc chrome/browser/payments/payment_request_app_store_billing_browsertest.cc chrome/browser/payments/service_worker_payment_app_finder_browsertest.cc chrome/browser/performance_manager/mechanisms/termination_target_setter.h chrome/browser/performance_manager/policies/discard_eligibility_policy_unittest.cc chrome/browser/performance_manager/policies/priority_boost_helpers.cc chrome/browser/performance_manager/policies/report_page_processes_policy.cc chrome/browser/permissions/notifications_engagement_service_unittest.cc chrome/browser/permissions/permission_context_base_permissions_policy_unittest.cc chrome/browser/permissions/permission_element_origin_trial_browsertest.cc chrome/browser/permissions/permission_manager_unittest.cc chrome/browser/permissions/permission_request_manager_unittest.cc chrome/browser/permissions/permissions_security_model_interactive_uitest.cc chrome/browser/permissions/prediction_service/prediction_service_browsertest.cc chrome/browser/permissions/quiet_permission_prompt_model_android.cc chrome/browser/policy/cloud/cloud_policy_browsertest.cc chrome/browser/policy/cloud/device_management_service_browsertest.cc chrome/browser/policy/cloud/policy_invalidator.h chrome/browser/policy/cloud/user_policy_signin_service_unittest.cc chrome/browser/policy/developer_tools_policy_checker_unittest.cc chrome/browser/policy/extension_policy_browsertest.cc chrome/browser/policy/messaging_layer/upload/file_upload_impl.cc chrome/browser/policy/policy_prefs_browsertest.cc chrome/browser/policy/safe_search_policy_test.cc chrome/browser/policy/safe_search_policy_test.h chrome/browser/policy/serial_allow_usb_devices_for_urls_policy_handler_unittest.cc chrome/browser/policy/test/autofill_ai_policy_browsertest.cc chrome/browser/policy/test/force_google_safe_search_policy_browsertest.cc chrome/browser/policy/test/policy_statistics_collector_browsertest.cc chrome/browser/policy/test/policy_test_google_browsertest.cc chrome/browser/policy/test/safe_browsing_policy_browsertest.cc chrome/browser/policy/test/sharing_policy_browsertest.cc chrome/browser/policy/test/system_features_policy_browsertest.cc chrome/browser/policy/webhid_device_policy_handler_unittest.cc chrome/browser/policy/webusb_allow_devices_for_urls_policy_handler_unittest.cc chrome/browser/predictors/autocomplete_action_predictor_table_unittest.cc chrome/browser/predictors/lcp_critical_path_predictor/lcp_critical_path_predictor_util.cc chrome/browser/predictors/lcp_critical_path_predictor/lcp_critical_path_predictor_util.h chrome/browser/predictors/lcp_critical_path_predictor/lcp_critical_path_predictor_util_unittest.cc chrome/browser/predictors/lcp_critical_path_predictor/prewarm_http_disk_cache_manager.cc chrome/browser/predictors/loading_data_collector_unittest.cc chrome/browser/predictors/loading_predictor_browsertest.cc chrome/browser/predictors/loading_predictor_config.h chrome/browser/predictors/loading_predictor_unittest.cc chrome/browser/predictors/loading_stats_collector_unittest.cc chrome/browser/predictors/resource_prefetch_predictor_tables_unittest.cc chrome/browser/predictors/resource_prefetch_predictor_unittest.cc chrome/browser/prefetch/prefetch_browsertest.cc chrome/browser/prefs/chrome_command_line_pref_store_proxy_unittest.cc chrome/browser/prefs/pref_functional_browsertest.cc chrome/browser/prefs/pref_metrics_service.cc chrome/browser/prefs/session_startup_pref_unittest.cc chrome/browser/preloading/new_tab_page_preload/new_tab_page_preload_browsertest.cc chrome/browser/preloading/prefetch/no_state_prefetch/no_state_prefetch_unittest.cc chrome/browser/preloading/prefetch/no_state_prefetch/prerender_nostate_prefetch_browsertest.cc chrome/browser/preloading/prefetch/no_state_prefetch/tools/prerender_test_server/index.html chrome/browser/preloading/prefetch/no_state_prefetch/tools/prerender_test_server/prerender_test_server.py chrome/browser/preloading/prefetch/prefetch_service/chrome_prefetch_service_delegate.cc chrome/browser/preloading/prefetch/zero_suggest_prefetch/zero_suggest_prefetch_tab_helper_browsertest.cc chrome/browser/preloading/preview/preview_navigation_throttle.h chrome/browser/preloading/preview/preview_zoom_controller.h chrome/browser/preloading/search_preload/search_preload_browsertest.cc chrome/browser/preloading/search_preload/search_preload_features.h chrome/browser/preloading/search_preload/search_preload_pipeline_manager.cc chrome/browser/printing/print_preview_dialog_controller_unittest.cc chrome/browser/privacy/secure_dns_bridge.cc chrome/browser/privacy_sandbox/PRESUBMIT.py chrome/browser/privacy_sandbox/privacy_sandbox_activity_types_service.h chrome/browser/privacy_sandbox/privacy_sandbox_service_impl_unittest.cc chrome/browser/privacy_sandbox/privacy_sandbox_utils_unittest.cc chrome/browser/process_singleton_posix.cc chrome/browser/process_singleton_posix_unittest.cc chrome/browser/process_singleton_win.cc chrome/browser/profile_resetter/profile_resetter.cc chrome/browser/profile_resetter/profile_resetter_unittest.cc chrome/browser/profile_resetter/reset_report_uploader.cc chrome/browser/profiles/batch_upload/batch_upload_browsertest.cc chrome/browser/profiles/batch_upload/batch_upload_service_unittest.cc chrome/browser/profiles/gaia_info_update_service_unittest.cc chrome/browser/profiles/profile.h chrome/browser/profiles/profile_attributes_entry.h chrome/browser/profiles/profile_attributes_storage_unittest.cc chrome/browser/profiles/profile_avatar_downloader.cc chrome/browser/profiles/profile_downloader_unittest.cc chrome/browser/profiles/profile_impl.cc chrome/browser/profiles/profile_impl.h chrome/browser/profiles/profile_manager.h chrome/browser/profiles/profile_manager_browsertest.cc chrome/browser/profiles/profile_manager_unittest.cc chrome/browser/profiles/profile_shortcut_manager_browsertest_win.cc chrome/browser/profiles/profile_shortcut_manager_win.cc chrome/browser/profiles/profiles_state_unittest.cc chrome/browser/push_messaging/push_messaging_notification_manager.h chrome/browser/push_messaging/push_messaging_notification_manager_unittest.cc chrome/browser/push_messaging/push_messaging_service_impl.cc chrome/browser/push_notification/server_client/push_notification_desktop_api_call_flow_impl_unittest.cc chrome/browser/push_notification/server_client/push_notification_server_client_desktop_impl.cc chrome/browser/push_notification/server_client/push_notification_server_client_desktop_impl_unittest.cc chrome/browser/reading_list/android/reading_list_manager_impl_unittest.cc chrome/browser/renderer_context_menu/link_to_text_menu_observer_interactive_uitest.cc chrome/browser/renderer_context_menu/render_view_context_menu_browsertest.cc chrome/browser/renderer_context_menu/render_view_context_menu_interactive_uitest.cc chrome/browser/renderer_context_menu/render_view_context_menu_unittest.cc chrome/browser/renderer_host/chrome_navigation_ui_data.h chrome/browser/renderer_preferences_util_unittest.cc chrome/browser/resource_coordinator/tab_load_tracker_unittest.cc chrome/browser/resources/PRESUBMIT.py chrome/browser/resources/accessibility/chromevox_helper_manifest.json.jinja2 chrome/browser/resources/accessibility/embedded_a11y_helper/service_worker.ts chrome/browser/resources/accessibility/embedded_a11y_helper_manifest.json.jinja2 chrome/browser/resources/accessibility/reading_mode_gdocs_helper_manifest.json.jinja2 chrome/browser/resources/actor_internals/actor_internals.ts chrome/browser/resources/app_home/app_home_empty_page.html.ts chrome/browser/resources/app_settings/icons.html chrome/browser/resources/ash/print_preview/data/destination_store.ts chrome/browser/resources/ash/print_preview/ui/icons.html chrome/browser/resources/ash/settings/app_management_icons.html chrome/browser/resources/ash/settings/controls/v2/settings_row.ts chrome/browser/resources/ash/settings/crostini_page/crostini_disk_resize_dialog.html chrome/browser/resources/ash/settings/device_page/stylus.ts chrome/browser/resources/ash/settings/internal/storybook/settings_dropdown_row_storybook.html chrome/browser/resources/ash/settings/internal/storybook/settings_row_storybook.html chrome/browser/resources/ash/settings/os_a11y_page/bluetooth_braille_display_manager.ts chrome/browser/resources/ash/settings/os_a11y_page/captions_subpage.ts chrome/browser/resources/ash/settings/os_a11y_page/keyboard_and_text_input_page.ts chrome/browser/resources/ash/settings/os_a11y_page/os_a11y_page.ts chrome/browser/resources/ash/settings/os_about_page/channel_switcher_dialog.html chrome/browser/resources/ash/settings/os_about_page/os_about_page.html chrome/browser/resources/ash/settings/os_apps_page/android_apps_subpage.ts chrome/browser/resources/ash/settings/os_languages_page/input_method_util.ts chrome/browser/resources/ash/settings/os_people_page/account_manager_settings_card.ts chrome/browser/resources/ash/settings/os_people_page/add_user_dialog.ts chrome/browser/resources/ash/settings/os_privacy_page/os_privacy_page.ts chrome/browser/resources/ash/settings/os_settings_icons.html chrome/browser/resources/ash/settings/settings_shared.css chrome/browser/resources/bookmarks/command_manager.ts chrome/browser/resources/browsing_topics/browsing_topics_internals.html chrome/browser/resources/certificate_manager/certificate_manager_icons.html chrome/browser/resources/chromeos/about_os_credits.html chrome/browser/resources/chromeos/accessibility/accessibility_common/dictation/macros/list_commands_macro.ts chrome/browser/resources/chromeos/accessibility/accessibility_common/facegaze/mouse_controller.ts chrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/background_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/braille/braille_input_handler_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/editing/editable_text_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv2/background/input/command_handler.ts chrome/browser/resources/chromeos/accessibility/chromevox/mv2/common/locale_output_helper_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv2/common/spannable_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv2/panel/tutorial_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/background_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/braille/braille_input_handler_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/editing/editable_text_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv3/background/input/command_handler.ts chrome/browser/resources/chromeos/accessibility/chromevox/mv3/common/locale_output_helper_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv3/common/spannable_test.js chrome/browser/resources/chromeos/accessibility/chromevox/mv3/panel/tutorial_test.js chrome/browser/resources/chromeos/accessibility/chromevox_manifest.json.jinja2 chrome/browser/resources/chromeos/accessibility/common/cursors/cursors_test.js chrome/browser/resources/chromeos/accessibility/common/cursors/recovery_strategy_test.js chrome/browser/resources/chromeos/accessibility/common/flags.ts chrome/browser/resources/chromeos/accessibility/common/node_navigation_utils.ts chrome/browser/resources/chromeos/accessibility/common/node_utils.ts chrome/browser/resources/chromeos/accessibility/common/paragraph_utils.ts chrome/browser/resources/chromeos/accessibility/common/paragraph_utils_unittest.js chrome/browser/resources/chromeos/accessibility/common/testing/mock_tts.js chrome/browser/resources/chromeos/accessibility/common/tutorial/chromevox_tutorial.js chrome/browser/resources/chromeos/accessibility/definitions/command_line_private.d.ts chrome/browser/resources/chromeos/accessibility/select_to_speak/select_to_speak.ts chrome/browser/resources/chromeos/accessibility/select_to_speak/select_to_speak_navigation_control_test.js chrome/browser/resources/chromeos/accessibility/select_to_speak/select_to_speak_unittest.js chrome/browser/resources/chromeos/accessibility/select_to_speak_manifest.json.jinja2 chrome/browser/resources/chromeos/accessibility/strings/chromevox_strings.grdp chrome/browser/resources/chromeos/accessibility/switch_access/mv3/item_scan_manager_test.js chrome/browser/resources/chromeos/accessibility/switch_access/mv3/switch_access_predicate_test.js chrome/browser/resources/chromeos/accessibility/switch_access_manifest.json.jinja2 chrome/browser/resources/chromeos/add_supervision/add_supervision_ui.ts chrome/browser/resources/chromeos/app_install/app_install_dialog.html chrome/browser/resources/chromeos/arc_support/background.js chrome/browser/resources/chromeos/arc_support/bubble.js chrome/browser/resources/chromeos/arc_support/playstore.js chrome/browser/resources/chromeos/borealis_installer/borealis_installer_icons.html chrome/browser/resources/chromeos/borealis_installer/error_dialog.ts chrome/browser/resources/chromeos/echo/manifest.json chrome/browser/resources/chromeos/edu_coexistence/edu_coexistence_controller.ts chrome/browser/resources/chromeos/edu_coexistence/edu_coexistence_ui.ts chrome/browser/resources/chromeos/emoji_picker/emoji_button.ts chrome/browser/resources/chromeos/emoji_picker/emoji_picker_api_proxy.ts chrome/browser/resources/chromeos/emoji_picker/icons.html chrome/browser/resources/chromeos/emoji_picker/prefix_search.ts chrome/browser/resources/chromeos/emulator/icons.html chrome/browser/resources/chromeos/input_method/google_xkb_manifest.json chrome/browser/resources/chromeos/login/components/web_view_loader.ts chrome/browser/resources/chromeos/login/debug/debug.ts chrome/browser/resources/chromeos/login/debug/quick_start_debugger.ts chrome/browser/resources/chromeos/login/screens/common/marketing_opt_in.html chrome/browser/resources/chromeos/login/screens/login/encryption_migration.ts chrome/browser/resources/chromeos/login/screens/login/offline_login.html chrome/browser/resources/chromeos/login/screens/login/offline_login.ts chrome/browser/resources/chromeos/login/screens/oobe/fjord_station_setup.ts chrome/browser/resources/chromeos/multidevice_internals/browser_tabs_metadata_form.js chrome/browser/resources/chromeos/nearby_share/shared/nearby_shared_icons.html chrome/browser/resources/chromeos/nearby_share/shared/nearby_shared_share_type_icons.html chrome/browser/resources/chromeos/parent_access/parent_access_ui.ts chrome/browser/resources/contextual_tasks/internals/app.ts chrome/browser/resources/data_sharing/dummy_data_sharing_sdk.ts chrome/browser/resources/default_apps/external_extensions.json chrome/browser/resources/downloads/icons.html chrome/browser/resources/extensions/detail_view.ts chrome/browser/resources/extensions/mv2_deprecation_panel.ts chrome/browser/resources/extensions_zero_state_promo/zero_state_promo_app.html.ts chrome/browser/resources/feedback/js/feedback_util.ts chrome/browser/resources/gaia_auth_host/PRESUBMIT.py chrome/browser/resources/gaia_auth_host/authenticator.js chrome/browser/resources/gaia_auth_host/saml_handler.js chrome/browser/resources/gaia_auth_host/saml_password_attributes.js chrome/browser/resources/glic/fre/fre_app_controller.ts chrome/browser/resources/glic/glic_api_impl/client/image_utils.ts chrome/browser/resources/glic/url_pattern.d.ts chrome/browser/resources/glic/webview.ts chrome/browser/resources/hangout_services/manifest_v2.json chrome/browser/resources/hangout_services/manifest_v3.json chrome/browser/resources/inspect/inspect.html chrome/browser/resources/key_value_pair_viewer_shared/key_value_pair_entry.ts chrome/browser/resources/management/promotion_banner.ts chrome/browser/resources/media/mei_preload/manifest.json chrome/browser/resources/media/webrtc_logs.ts chrome/browser/resources/media_router/cast_feedback/cast_feedback_ui.ts chrome/browser/resources/net_internals/domain_security_policy_view.js chrome/browser/resources/net_internals/index.html chrome/browser/resources/network_speech_synthesis/manifest.json chrome/browser/resources/network_speech_synthesis/mv3/manifest.json chrome/browser/resources/network_speech_synthesis/mv3/tts_extension.js chrome/browser/resources/network_speech_synthesis/tts_extension.js chrome/browser/resources/new_tab_page/app.ts chrome/browser/resources/new_tab_page/doodle_share_dialog.ts chrome/browser/resources/new_tab_page/lens_form.html chrome/browser/resources/new_tab_page/lens_form.ts chrome/browser/resources/new_tab_page/modules/calendar/google_calendar_module.html chrome/browser/resources/new_tab_page/transparency.ts chrome/browser/resources/new_tab_page/voice_search_overlay.ts chrome/browser/resources/omnibox/logging/logs_app.ts chrome/browser/resources/omnibox/omnibox.html chrome/browser/resources/omnibox/omnibox.ts chrome/browser/resources/omnibox/omnibox_output.ts chrome/browser/resources/omnibox/omnibox_util.ts chrome/browser/resources/on_device_internals/event_log.ts chrome/browser/resources/pdf/pdf_viewer_utils.ts chrome/browser/resources/print_preview/data/destination_store.ts chrome/browser/resources/print_preview/ui/icons.html chrome/browser/resources/privacy_sandbox/internals/private_state_tokens/list_container.html.ts chrome/browser/resources/privacy_sandbox/internals/related_website_sets/list_container.html.ts chrome/browser/resources/reading_mode_gdocs_helper/manifest.json chrome/browser/resources/reset_password/reset_password.html chrome/browser/resources/segmentation_internals/segmentation_survey.ts chrome/browser/resources/settings/a11y_page/a11y_page.ts chrome/browser/resources/settings/a11y_page/captions_page.ts chrome/browser/resources/settings/about_page/about_page.html chrome/browser/resources/settings/about_page/about_page.ts chrome/browser/resources/settings/appearance_page/appearance_page.ts chrome/browser/resources/settings/icons.html chrome/browser/resources/settings/languages_page/edit_dictionary_page.ts chrome/browser/resources/settings/settings_shared.css chrome/browser/resources/side_panel/read_anything/app/read_anything_toolbar.ts chrome/browser/resources/side_panel/read_anything/read_aloud/voice_language_conversions.ts chrome/browser/resources/suggest_internals/request.ts chrome/browser/resources/usb_internals/descriptor_panel.ts chrome/browser/resources/webstore_app/manifest.json chrome/browser/resources/webui_gallery/demos/card/card_demo.ts chrome/browser/resources/webui_gallery/demos/cr_input/cr_input_demo.html.ts chrome/browser/resources/webui_gallery/demos/cr_url_list_item/cr_url_list_item_demo.html.ts chrome/browser/resources/webui_gallery/demos/side_panel/sp_components_demo.ts chrome/browser/rlz/chrome_rlz_tracker_web_contents_observer_unittest.cc chrome/browser/safe_browsing/chrome_enterprise_url_lookup_service_unittest.cc chrome/browser/safe_browsing/chrome_password_protection_service.cc chrome/browser/safe_browsing/chrome_password_protection_service_browsertest.cc chrome/browser/safe_browsing/chrome_password_protection_service_unittest.cc chrome/browser/safe_browsing/chrome_password_reuse_detection_manager_client_unittest.cc chrome/browser/safe_browsing/chrome_ping_manager_factory_unittest.cc chrome/browser/safe_browsing/client_side_detection_host_unittest.cc chrome/browser/safe_browsing/cloud_content_scanning/cloud_binary_upload_service.cc chrome/browser/safe_browsing/cloud_content_scanning/cloud_binary_upload_service_unittest.cc chrome/browser/safe_browsing/cloud_content_scanning/multipart_uploader_unittest.cc chrome/browser/safe_browsing/download_protection/check_client_download_request_base.cc chrome/browser/safe_browsing/download_protection/deep_scanning_browsertest.cc chrome/browser/safe_browsing/download_protection/deep_scanning_request_unittest.cc chrome/browser/safe_browsing/download_protection/download_feedback.cc chrome/browser/safe_browsing/download_protection/download_protection_delegate_android.cc chrome/browser/safe_browsing/download_protection/download_protection_delegate_desktop.cc chrome/browser/safe_browsing/download_protection/download_protection_service_unittest.cc chrome/browser/safe_browsing/extension_telemetry/extension_telemetry_service_browsertest.cc chrome/browser/safe_browsing/extension_telemetry/extension_telemetry_service_unittest.cc chrome/browser/safe_browsing/extension_telemetry/extension_telemetry_uploader.cc chrome/browser/safe_browsing/extension_telemetry/potential_password_theft_signal_processor_unittest.cc chrome/browser/safe_browsing/extension_telemetry/remote_host_contacted_signal_processor_unittest.cc chrome/browser/safe_browsing/gemini_antiscam_protection/gemini_antiscam_protection_service_browsertest.cc chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc chrome/browser/safe_browsing/incident_reporting/incident_reporting_service_unittest.cc chrome/browser/safe_browsing/incident_reporting/last_download_finder_unittest.cc chrome/browser/safe_browsing/metrics/bundled_settings_metrics_provider_unittest.cc chrome/browser/safe_browsing/notification_content_detection/notification_content_detection_service_browsertest.cc chrome/browser/safe_browsing/notification_telemetry/notification_telemetry_service.cc chrome/browser/safe_browsing/notification_telemetry/notification_telemetry_service_unittest.cc chrome/browser/safe_browsing/safe_browsing_blocking_page_test.cc chrome/browser/safe_browsing/tailored_security/chrome_tailored_security_service_unittest.cc chrome/browser/safe_browsing/tailored_security/tailored_security_url_observer_unittest.cc chrome/browser/save_to_drive/drive_uploader.cc chrome/browser/save_to_drive/drive_uploader_unittest.cc chrome/browser/save_to_drive/multipart_drive_uploader.cc chrome/browser/save_to_drive/multipart_drive_uploader_unittest.cc chrome/browser/save_to_drive/resumable_drive_uploader.cc chrome/browser/save_to_drive/resumable_drive_uploader_unittest.cc chrome/browser/save_to_drive/save_to_drive_flow_browsertest.cc chrome/browser/search/background/ntp_custom_background_service.cc chrome/browser/search/search.h chrome/browser/search_engine_choice/search_engine_choice_dialog_browsertest.cc chrome/browser/search_engines/template_url_parser_unittest.cc chrome/browser/search_engines/template_url_service_sync_unittest.cc chrome/browser/search_engines/template_url_service_test_util.cc chrome/browser/search_engines/template_url_service_unittest.cc chrome/browser/segmentation_platform/segmentation_platform_service_factory_unittest.cc chrome/browser/segmentation_platform/service_browsertest.cc chrome/browser/send_tab_to_self/desktop_notification_handler_browsertest.cc chrome/browser/serial/chrome_serial_browsertest.cc chrome/browser/serial/serial_chooser_context_unittest.cc chrome/browser/serial/serial_policy_allowed_ports_unittest.cc chrome/browser/sessions/app_session_service_unittest.cc chrome/browser/sessions/session_restore_browsertest.cc chrome/browser/sessions/session_restore_observer_unittest.cc chrome/browser/sessions/session_service.h chrome/browser/sessions/session_service_base.cc chrome/browser/sessions/session_service_unittest.cc chrome/browser/sessions/tab_restore_browsertest.cc chrome/browser/sessions/tab_restore_service_unittest.cc chrome/browser/share/default_ranking_android.cc chrome/browser/sharing/click_to_call/click_to_call_utils_unittest.cc chrome/browser/sharing/shared_clipboard/remote_copy_message_handler.cc chrome/browser/sharing_hub/sharing_hub_model_unittest.cc chrome/browser/shell_integration_linux_unittest.cc chrome/browser/signin/account_id_from_account_info_unittest.cc chrome/browser/signin/accounts_policy_manager_unittest.cc chrome/browser/signin/binding_key_registration_token_helper_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_cookie_controller_impl_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_cookie_observer_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_cookie_refresh_service_impl_browsertest.cc chrome/browser/signin/bound_session_credentials/bound_session_cookie_refresh_service_impl_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_oauth_multilogin_delegate_impl.cc chrome/browser/signin/bound_session_credentials/bound_session_oauth_multilogin_delegate_impl_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_params_storage_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_params_util_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_debug_report_fetcher_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_fetcher.cc chrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_fetcher_impl_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_registration_fetcher_impl.cc chrome/browser/signin/bound_session_credentials/bound_session_registration_fetcher_impl_unittest.cc chrome/browser/signin/bound_session_credentials/bound_session_registration_fetcher_param_unittest.cc chrome/browser/signin/bound_session_credentials/dice_bound_session_cookie_service_unittest.cc chrome/browser/signin/bound_session_credentials/session_binding_helper_unittest.cc chrome/browser/signin/bound_session_credentials/throttled_gaia_auth_fetcher_unittest.cc chrome/browser/signin/bound_session_oauth_multilogin_browsertest.cc chrome/browser/signin/chrome_signin_client_browsertest.cc chrome/browser/signin/chrome_signin_helper_unittest.cc chrome/browser/signin/chrome_signin_proxying_url_loader_factory.h chrome/browser/signin/chrome_signin_proxying_url_loader_factory_unittest.cc chrome/browser/signin/chrome_signin_url_loader_throttle_unittest.cc chrome/browser/signin/chromeos_mirror_account_consistency_browsertest.cc chrome/browser/signin/dice_browsertest.cc chrome/browser/signin/dice_response_handler.cc chrome/browser/signin/dice_response_handler_unittest.cc chrome/browser/signin/dice_signed_in_profile_creator_unittest.cc chrome/browser/signin/dice_tab_helper_unittest.cc chrome/browser/signin/dice_web_signin_interceptor_browsertest.cc chrome/browser/signin/dice_web_signin_interceptor_unittest.cc chrome/browser/signin/e2e_tests/live_test.cc chrome/browser/signin/header_modification_delegate_impl.cc chrome/browser/signin/header_modification_delegate_impl_unittest.cc chrome/browser/signin/mirror_browsertest.cc chrome/browser/signin/mirror_interactive_uitest.cc chrome/browser/signin/process_dice_header_delegate_impl_unittest.cc chrome/browser/signin/signin_promo_unittest.cc chrome/browser/signin/signin_ui_util.cc chrome/browser/signin/signin_ui_util_browsertest.cc chrome/browser/signin/signin_util.cc chrome/browser/signin/signin_util_unittest.cc chrome/browser/signin/signin_util_win_browsertest.cc chrome/browser/skills/skills_update_observer_unittest.cc chrome/browser/smart_card/smart_card_reader_tracker_impl.h chrome/browser/ssl/ask_before_http_dialog_controller.cc chrome/browser/ssl/cert_verifier_platform_browser_test.h chrome/browser/ssl/connection_help_tab_helper.cc chrome/browser/ssl/https_first_mode_settings_tracker_unittest.cc chrome/browser/ssl/https_upgrades_browsertest.cc chrome/browser/ssl/sct_reporting_service.cc chrome/browser/ssl/ssl_browsertest.cc chrome/browser/ssl/stateful_ssl_host_state_delegate_test.cc chrome/browser/ssl/typed_navigation_upgrade_throttle_interactive_uitest.cc chrome/browser/startup_data.h chrome/browser/storage/persistent_storage_permission_context_unittest.cc chrome/browser/storage/shared_storage_browsertest.cc chrome/browser/subresource_filter/subresource_filter_browsertest.cc chrome/browser/subresource_filter/subresource_filter_fenced_frame_browsertest.cc chrome/browser/supervised_user/android/java/res/drawable/ic_family_link.xml chrome/browser/supervised_user/kids_profile_interactive_uitest.cc chrome/browser/supervised_user/linux_mac_windows/parent_access_dialog_result_observer_browsertest.cc chrome/browser/supervised_user/linux_mac_windows/supervised_user_web_content_handler_impl_browsertest.cc chrome/browser/supervised_user/metrics_service_accessor_delegate.h chrome/browser/supervised_user/supervised_user_browser_utils.cc chrome/browser/supervised_user/supervised_user_browser_utils_unittest.cc chrome/browser/supervised_user/supervised_user_google_auth_navigation_throttle.cc chrome/browser/supervised_user/supervised_user_google_auth_navigation_throttle_unittest.cc chrome/browser/supervised_user/supervised_user_navigation_observer_android_browsertest.cc chrome/browser/supervised_user/supervised_user_navigation_throttle_browsertest.cc chrome/browser/supervised_user/supervised_user_pending_state_navigation_browsertest.cc chrome/browser/supervised_user/supervised_user_service_android_browsertest.cc chrome/browser/supervised_user/supervised_user_service_browsertest.cc chrome/browser/supervised_user/supervised_user_test_util.cc chrome/browser/supervised_user/supervised_user_url_filter_extensions_unittest.cc chrome/browser/supervised_user/url_filter_interactive_uitest.cc chrome/browser/support_tool/ash/system_state_data_collector.cc chrome/browser/sync/android/fake_server_helper_android.cc chrome/browser/sync/sessions/sync_sessions_router_tab_helper.h chrome/browser/sync/sync_ui_util.cc chrome/browser/sync/test/integration/cookie_helper.cc chrome/browser/sync/test/integration/fake_sync_signin_delegate_android.cc chrome/browser/sync/test/integration/fake_sync_signin_delegate_desktop.cc chrome/browser/sync/test/integration/password_manager_sync_test.cc chrome/browser/sync/test/integration/password_sharing_invitation_helper.cc chrome/browser/sync/test/integration/passwords_helper.cc chrome/browser/sync/test/integration/single_client_bookmarks_sync_test.cc chrome/browser/sync/test/integration/single_client_custom_passphrase_sync_test.cc chrome/browser/sync/test/integration/single_client_extension_apps_sync_test.cc chrome/browser/sync/test/integration/single_client_nigori_sync_test.cc chrome/browser/sync/test/integration/single_client_passwords_sync_test.cc chrome/browser/sync/test/integration/single_client_preferences_sync_test.cc chrome/browser/sync/test/integration/single_client_send_tab_to_self_sync_test.cc chrome/browser/sync/test/integration/single_client_shared_tab_group_data_sync_test.cc chrome/browser/sync/test/integration/single_client_wallet_credential_sync_test.cc chrome/browser/sync/test/integration/sync_auth_test.cc chrome/browser/sync/test/integration/sync_errors_test.cc chrome/browser/sync/test/integration/sync_service_impl_harness.cc chrome/browser/sync/test/integration/sync_service_impl_harness.h chrome/browser/sync/test/integration/sync_test.cc chrome/browser/sync/test/integration/sync_test.h chrome/browser/sync/test/integration/two_client_bookmarks_sync_test.cc chrome/browser/sync/test/integration/two_client_custom_passphrase_sync_test.cc chrome/browser/sync/test/integration/two_client_history_sync_test.cc chrome/browser/sync/test/integration/two_client_preferences_sync_test.cc chrome/browser/sync/test/integration/two_client_shared_tab_group_data_sync_test.cc chrome/browser/sync/test/integration/two_client_user_events_sync_test.cc chrome/browser/sync/test/integration/web_apps/two_client_web_apps_bmo_sync_test.cc chrome/browser/sync/test/integration/web_apps/two_client_web_apps_sync_test.cc chrome/browser/sync_file_system/local/local_file_sync_context_unittest.cc chrome/browser/sync_file_system/sync_file_system_service.h chrome/browser/tab_contents/navigation_metrics_recorder_browsertest.cc chrome/browser/tab_list/tab_list_interface_observer.h chrome/browser/tab_ui/android/java/strings/android_tab_ui_strings.grd chrome/browser/themes/theme_syncable_service.cc chrome/browser/translate/translate_manager_browsertest.cc chrome/browser/trusted_vault/trusted_vault_encryption_keys_tab_helper_browsertest.cc chrome/browser/ui/accelerator_table.cc chrome/browser/ui/android/extensions/extension_action_popup_contents.cc chrome/browser/ui/android/extensions/windowing/test/test_extension/default_popup.html chrome/browser/ui/android/strings/android_chrome_strings.grd chrome/browser/ui/ash/app_list/app_list_interactive_uitest.cc chrome/browser/ui/ash/arc/arc_open_url_delegate_impl_browsertest.cc chrome/browser/ui/ash/birch/birch_browsertest.cc chrome/browser/ui/ash/birch/birch_calendar_fetcher.cc chrome/browser/ui/ash/birch/birch_calendar_fetcher_unittest.cc chrome/browser/ui/ash/birch/birch_coral_provider_browsertest.cc chrome/browser/ui/ash/birch/birch_keyed_service_unittest.cc chrome/browser/ui/ash/birch/birch_lost_media_provider.cc chrome/browser/ui/ash/birch/refresh_token_waiter_unittest.cc chrome/browser/ui/ash/capture_mode/chrome_capture_mode_delegate.cc chrome/browser/ui/ash/capture_mode/sunfish_browsertest.cc chrome/browser/ui/ash/desks/desks_client_browsertest.cc chrome/browser/ui/ash/focus_mode/certificate_manager.cc chrome/browser/ui/ash/focus_mode/certificate_manager_unittest.cc chrome/browser/ui/ash/focus_mode/signature_builder.h chrome/browser/ui/ash/glanceables/glanceables_browsertest.cc chrome/browser/ui/ash/glanceables/glanceables_classroom_client_impl.cc chrome/browser/ui/ash/glanceables/glanceables_classroom_client_impl_unittest.cc chrome/browser/ui/ash/glanceables/glanceables_keyed_service.cc chrome/browser/ui/ash/google_one/google_one_offer_iph_tab_helper.cc chrome/browser/ui/ash/google_one/google_one_offer_iph_tab_helper_browsertest.cc chrome/browser/ui/ash/google_one/google_one_offer_iph_tab_helper_constants.h chrome/browser/ui/ash/holding_space/holding_space_keyed_service_unittest.cc chrome/browser/ui/ash/in_session_auth/in_session_auth_dialog_client.cc chrome/browser/ui/ash/login/captive_portal_view.cc chrome/browser/ui/ash/network/network_portal_signin_controller_unittest.cc chrome/browser/ui/ash/projector/pending_screencast_manager.cc chrome/browser/ui/ash/projector/pending_screencast_manager_browsertest.cc chrome/browser/ui/ash/projector/projector_navigation_throttle_browsertest.cc chrome/browser/ui/ash/quick_answers/quick_answers_state_ash_unittest.cc chrome/browser/ui/ash/quick_answers/ui/quick_answers_util.cc chrome/browser/ui/ash/quick_answers/ui/quick_answers_view_unittest.cc chrome/browser/ui/ash/quick_insert/quick_insert_interactive_uitest.cc chrome/browser/ui/ash/session/session_controller_client_impl_unittest.cc chrome/browser/ui/ash/shelf/app_shortcut_shelf_item_controller.cc chrome/browser/ui/ash/shelf/browser_shortcut_shelf_item_controller.cc chrome/browser/ui/ash/shelf/chrome_shelf_controller_unittest.cc chrome/browser/ui/ash/shelf/chrome_shelf_prefs_unittest.cc chrome/browser/ui/ash/shell_delegate/chrome_shell_delegate.cc chrome/browser/ui/ash/system/system_tray_client_impl.cc chrome/browser/ui/ash/system/system_tray_client_impl_browsertest.cc chrome/browser/ui/ash/wallpaper/wallpaper_controller_client_impl.cc chrome/browser/ui/ash/web_view/ash_web_view_impl_browsertest.cc chrome/browser/ui/ash/wm/coral_browsertest.cc chrome/browser/ui/autofill/address_editor_controller_unittest.cc chrome/browser/ui/autofill/autofill_keyboard_accessory_controller_impl.cc chrome/browser/ui/autofill/chrome_autofill_client.cc chrome/browser/ui/autofill/delete_address_profile_dialog_controller_impl_browsertest.cc chrome/browser/ui/autofill/payments/offer_notification_bubble_controller_impl_unittest.cc chrome/browser/ui/autofill/payments/save_card_bubble_controller_impl.cc chrome/browser/ui/blocked_content/popup_blocker_browsertest.cc chrome/browser/ui/blocked_content/tab_under_navigation_throttle.h chrome/browser/ui/bookmarks/bookmark_browsertest.cc chrome/browser/ui/bookmarks/bookmark_context_menu_controller_unittest.cc chrome/browser/ui/bookmarks/bookmark_ui_operations_helper_unittest.cc chrome/browser/ui/bookmarks/bookmark_ui_utils_desktop_unittest.cc chrome/browser/ui/bookmarks/bookmark_utils_unittest.cc chrome/browser/ui/browser_browsertest.cc chrome/browser/ui/browser_command_controller.cc chrome/browser/ui/browser_command_controller_unittest.cc chrome/browser/ui/browser_content_setting_bubble_model_delegate.cc chrome/browser/ui/browser_finder.h chrome/browser/ui/browser_finder_unittest.cc chrome/browser/ui/browser_focus_interactive_uitest.cc chrome/browser/ui/browser_instant_controller_browsertest.cc chrome/browser/ui/browser_navigator_browsertest.cc chrome/browser/ui/browser_navigator_browsertest_chromeos.cc chrome/browser/ui/browser_navigator_params.h chrome/browser/ui/browser_tabstrip_browsertest_chromeos.cc chrome/browser/ui/browser_window/test/android/browser_window_android_browsertest_base.cc chrome/browser/ui/chrome_pages.cc chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_browsertest.mm chrome/browser/ui/cocoa/applescript/tab_applescript.mm chrome/browser/ui/cocoa/applescript/window_applescript_browsertest.mm chrome/browser/ui/cocoa/bookmarks/bookmark_menu_bridge_unittest.mm chrome/browser/ui/cocoa/browser_window_mac_browsertest.mm chrome/browser/ui/cocoa/history_menu_bridge_unittest.mm chrome/browser/ui/cocoa/history_menu_cocoa_controller_unittest.mm chrome/browser/ui/cocoa/share_menu_controller.mm chrome/browser/ui/cocoa/share_menu_controller_browsertest.mm chrome/browser/ui/commerce/price_tracking_page_action_controller.cc chrome/browser/ui/content_settings/content_setting_bubble_model_unittest.cc chrome/browser/ui/content_settings/content_setting_image_model_unittest.cc chrome/browser/ui/crypto_module_password_dialog_nss.cc chrome/browser/ui/dialogs/outdated_upgrade_bubble.cc chrome/browser/ui/extensions/controlled_home_dialog_controller_unittest.cc chrome/browser/ui/extensions/extension_action_view_model_browsertest.cc chrome/browser/ui/extensions/extension_uninstall_dialog_impl_browsertest.cc chrome/browser/ui/extensions/hosted_app_browsertest.cc chrome/browser/ui/extensions/installation_error_infobar_delegate.cc chrome/browser/ui/file_system_access/file_system_access_permission_dialog_browsertest.cc chrome/browser/ui/global_media_controls/presentation_request_notification_producer_unittest.cc chrome/browser/ui/hid/hid_chooser_controller_unittest.cc chrome/browser/ui/intent_picker_tab_helper_unittest.cc chrome/browser/ui/lens/lens_media_link_handler.cc chrome/browser/ui/lens/lens_media_link_handler_unittest.cc chrome/browser/ui/lens/lens_overlay_controller_browsertest.cc chrome/browser/ui/lens/lens_overlay_gen204_controller.cc chrome/browser/ui/lens/lens_overlay_languages_controller.cc chrome/browser/ui/lens/lens_overlay_live_test.cc chrome/browser/ui/lens/lens_overlay_query_controller.cc chrome/browser/ui/lens/lens_overlay_query_controller_unittest.cc chrome/browser/ui/lens/lens_overlay_side_panel_coordinator.cc chrome/browser/ui/lens/lens_overlay_side_panel_navigation_throttle_unittest.cc chrome/browser/ui/lens/lens_overlay_untrusted_ui.cc chrome/browser/ui/lens/lens_overlay_url_builder.cc chrome/browser/ui/lens/lens_overlay_url_builder_unittest.cc chrome/browser/ui/lens/lens_query_flow_router_unittest.cc chrome/browser/ui/lens/lens_search_controller_contextual_tasks_browsertest.cc chrome/browser/ui/lens/lens_side_panel_untrusted_ui.cc chrome/browser/ui/login/http_auth_coordinator.h chrome/browser/ui/managed_ui_browsertest.cc chrome/browser/ui/media_router/media_router_ui_helper_unittest.cc chrome/browser/ui/media_router/media_router_ui_unittest.cc chrome/browser/ui/media_router/query_result_manager.h chrome/browser/ui/omnibox/omnibox_edit_model.cc chrome/browser/ui/omnibox/omnibox_edit_model.h chrome/browser/ui/omnibox/omnibox_edit_model_unittest.cc chrome/browser/ui/omnibox/omnibox_metrics_browsertest.cc chrome/browser/ui/omnibox/omnibox_pedal_implementations.cc chrome/browser/ui/omnibox/omnibox_view_browsertest.cc chrome/browser/ui/omnibox/omnibox_view_unittest.cc chrome/browser/ui/page_info/chrome_page_info_ui_delegate.cc chrome/browser/ui/passwords/bubble_controllers/move_to_account_store_bubble_controller_unittest.cc chrome/browser/ui/passwords/bubble_controllers/save_update_bubble_controller_unittest.cc chrome/browser/ui/passwords/display_account_info_unittest.cc chrome/browser/ui/passwords/manage_passwords_state_unittest.cc chrome/browser/ui/passwords/manage_passwords_ui_controller_unittest.cc chrome/browser/ui/passwords/password_cross_domain_confirmation_popup_controller_impl_unittest.cc chrome/browser/ui/passwords/password_manager_navigation_throttle_unittest.cc chrome/browser/ui/passwords/well_known_change_password_navigation_throttle.cc chrome/browser/ui/passwords/well_known_change_password_navigation_throttle_browsertest.cc chrome/browser/ui/passwords/well_known_change_password_navigation_throttle_unittest.cc chrome/browser/ui/plus_addresses/android/all_plus_addresses_bottom_sheet_view_browsertest.cc chrome/browser/ui/plus_addresses/plus_address_menu_model_unittest.cc chrome/browser/ui/profiles/profile_picker_unittest.cc chrome/browser/ui/read_anything/read_anything_entry_point_controller.cc chrome/browser/ui/read_anything/read_anything_entry_point_controller_browsertest.cc chrome/browser/ui/safety_hub/disruptive_notification_permissions_manager_unittest.cc chrome/browser/ui/safety_hub/notification_permission_review_service_unittest.cc chrome/browser/ui/safety_hub/password_status_check_service_unittest.cc chrome/browser/ui/search/ntp_user_data_logger_unittest.cc chrome/browser/ui/search/search_tab_helper.h chrome/browser/ui/search/third_party_ntp_browsertest.cc chrome/browser/ui/search_engines/template_url_table_model_unittest.cc chrome/browser/ui/signin/account_settings_page_pixel_browsertest.cc chrome/browser/ui/signin/dice_migration_service.cc chrome/browser/ui/signin/dice_migration_service_browsertest.cc chrome/browser/ui/signin/dice_migration_service_interactive_uitest.cc chrome/browser/ui/signin/dice_migration_service_pixel_browsertest.cc chrome/browser/ui/signin/promos/signin_promo_tab_helper_browsertest.cc chrome/browser/ui/signin/signin_view_controller.cc chrome/browser/ui/signin/signin_view_controller_browsertest.cc chrome/browser/ui/signin/signin_view_controller_interactive_uitest.cc chrome/browser/ui/singleton_tabs_browsertest.cc chrome/browser/ui/startup/chrome_for_testing_infobar_delegate.cc chrome/browser/ui/startup/credential_provider_signin_dialog_win_test_data.cc chrome/browser/ui/startup/first_run_service_unittest.cc chrome/browser/ui/startup/google_chrome_scheme_util_unittest.cc chrome/browser/ui/startup/launch_mode_recorder_unittest.cc chrome/browser/ui/startup/startup_browser_creator_browsertest.cc chrome/browser/ui/startup/startup_tab_provider_unittest.cc chrome/browser/ui/tab_helpers.cc chrome/browser/ui/tab_helpers.h chrome/browser/ui/tab_sharing/tab_sharing_infobar_delegate_unittest.cc chrome/browser/ui/tabs/pinned_tab_codec_browsertest.cc chrome/browser/ui/tabs/pinned_tab_service_browsertest.cc chrome/browser/ui/tabs/recent_tabs_sub_menu_model_browsertest.cc chrome/browser/ui/tabs/saved_tab_groups/collaboration_messaging_page_action_controller_unittest.cc chrome/browser/ui/tabs/saved_tab_groups/collaboration_messaging_tab_data_unittest.cc chrome/browser/ui/tabs/saved_tab_groups/instant_message_queue_processor_unittest.cc chrome/browser/ui/tabs/saved_tab_groups/tab_group_menu_utils_unittest.cc chrome/browser/ui/tabs/saved_tab_groups/tab_group_sync_delegate_browsertest.cc chrome/browser/ui/tabs/tab_strip_api/tab_strip_service_impl_browsertest.cc chrome/browser/ui/tabs/tab_strip_model_unittest.cc chrome/browser/ui/test/popup_browsertest.cc chrome/browser/ui/toolbar/app_menu_model_interactive_uitest.cc chrome/browser/ui/toolbar/cast/cast_toolbar_button_util.cc chrome/browser/ui/toolbar/location_bar_model_unittest.cc chrome/browser/ui/url_identity_unittest.cc chrome/browser/ui/views/apps/app_dialog/app_uninstall_dialog_view.cc chrome/browser/ui/views/autofill/autofill_ai/autofill_ai_import_data_bubble_view_browsertest.cc chrome/browser/ui/views/autofill/payments/filled_card_information_bubble_views_interactive_uitest.cc chrome/browser/ui/views/autofill/payments/iban_bubble_view_interactive_uitest.cc chrome/browser/ui/views/autofill/payments/offer_notification_bubble_views_test_base.cc chrome/browser/ui/views/autofill/payments/save_card_bubble_views_browsertest.cc chrome/browser/ui/views/autofill/popup/password_favicon_loader_unittest.cc chrome/browser/ui/views/autofill/popup/popup_row_factory_utils_browsertest.cc chrome/browser/ui/views/autofill/popup/popup_separator_view.h chrome/browser/ui/views/autofill/popup/popup_view_views_browsertest.cc chrome/browser/ui/views/autofill/popup/popup_view_views_unittest.cc chrome/browser/ui/views/bookmarks/bookmark_account_storage_move_dialog_interactive_uitest.cc chrome/browser/ui/views/bookmarks/bookmark_bar_view_browsertest.cc chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc chrome/browser/ui/views/bookmarks/bookmark_bubble_view.cc chrome/browser/ui/views/bookmarks/bookmark_bubble_view_browsertest.cc chrome/browser/ui/views/bookmarks/bookmark_bubble_view_unittest.cc chrome/browser/ui/views/bookmarks/bookmark_context_menu_unittest.cc chrome/browser/ui/views/bookmarks/bookmark_editor_view_browsertest.cc chrome/browser/ui/views/bookmarks/bookmark_menu_delegate_browsertest.cc chrome/browser/ui/views/bookmarks/bookmark_test_utils.cc chrome/browser/ui/views/bookmarks/saved_tab_groups/shared_tab_group_interactive_uitest.cc chrome/browser/ui/views/borealis/borealis_disallowed_dialog.cc chrome/browser/ui/views/commerce/price_tracking_bubble_dialog_view_browsertest.cc chrome/browser/ui/views/commerce/price_tracking_bubble_dialog_view_unittest.cc chrome/browser/ui/views/commerce/price_tracking_email_dialog_view.cc chrome/browser/ui/views/commerce/price_tracking_icon_view_integration_test.cc chrome/browser/ui/views/data_sharing/data_sharing_live_browsertest.cc chrome/browser/ui/views/download/bubble/download_bubble_contents_view_unittest.cc chrome/browser/ui/views/download/bubble/download_bubble_security_view_unittest.cc chrome/browser/ui/views/extensions/device_chooser_extension_browsertest.cc chrome/browser/ui/views/extensions/extension_install_dialog_view_browsertest.cc chrome/browser/ui/views/file_system_access/file_system_access_usage_bubble_view_browsertest.cc chrome/browser/ui/views/frame/browser_root_view_browsertest.cc chrome/browser/ui/views/frame/browser_view.h chrome/browser/ui/views/frame/browser_view_browsertest.cc chrome/browser/ui/views/frame/multi_contents_drop_target_view_unittest.cc chrome/browser/ui/views/frame/multi_contents_view_browsertest.cc chrome/browser/ui/views/frame/multi_contents_view_drop_target_controller_unittest.cc chrome/browser/ui/views/frame/webui_tab_strip_interactive_uitest.cc chrome/browser/ui/views/intent_picker_bubble_view_browsertest.cc chrome/browser/ui/views/intent_picker_bubble_view_unittest.cc chrome/browser/ui/views/location_bar/selected_keyword_view.h chrome/browser/ui/views/network_profile_bubble_view.cc chrome/browser/ui/views/new_tab_footer/footer_controller_browsertest.cc chrome/browser/ui/views/new_tab_footer/footer_interactive_uitest.cc chrome/browser/ui/views/omnibox/omnibox_popup_view_views_browsertest.cc chrome/browser/ui/views/omnibox/omnibox_result_view_unittest.cc chrome/browser/ui/views/omnibox/omnibox_view_views.cc chrome/browser/ui/views/omnibox/omnibox_view_views.h chrome/browser/ui/views/omnibox/omnibox_view_views_browsertest.cc chrome/browser/ui/views/omnibox/omnibox_view_views_unittest.cc chrome/browser/ui/views/overlay/video_overlay_window_views_unittest.cc chrome/browser/ui/views/page_info/about_this_site_side_panel_coordinator.cc chrome/browser/ui/views/page_info/about_this_site_side_panel_coordinator_browsertest.cc chrome/browser/ui/views/page_info/merchant_trust_side_panel_coordinator.cc chrome/browser/ui/views/page_info/page_info_bubble_view_browsertest.cc chrome/browser/ui/views/page_info/page_info_bubble_view_sync_browsertest.cc chrome/browser/ui/views/page_info/safety_tip_page_info_bubble_view_browsertest.cc chrome/browser/ui/views/passwords/password_bubble_browsertest.cc chrome/browser/ui/views/passwords/password_bubble_interactive_uitest.cc chrome/browser/ui/views/passwords/password_change/successful_password_change_view_unittest.cc chrome/browser/ui/views/passwords/password_dialog_view_browsertest.cc chrome/browser/ui/views/passwords/password_generation_popup_view_views_browsertest.cc chrome/browser/ui/views/payments/payment_method_view_controller_browsertest.cc chrome/browser/ui/views/plugin_vm/plugin_vm_installer_view.cc chrome/browser/ui/views/profiles/avatar_toolbar_button_browsertest.cc chrome/browser/ui/views/profiles/batch_upload_dialog_view_browsertest.cc chrome/browser/ui/views/profiles/batch_upload_dialog_view_pixel_browsertest.cc chrome/browser/ui/views/profiles/dice_web_signin_interception_bubble_view_browsertest.cc chrome/browser/ui/views/profiles/dice_web_signin_interception_bubble_view_unittest.cc chrome/browser/ui/views/profiles/first_run_interactive_uitest.cc chrome/browser/ui/views/profiles/profile_menu_view_browsertest.cc chrome/browser/ui/views/profiles/profile_picker_sign_in_provider_browsertest.cc chrome/browser/ui/views/profiles/profile_picker_ui_browsertest.cc chrome/browser/ui/views/profiles/profile_picker_view_browsertest.cc chrome/browser/ui/views/profiles/profiles_pixel_test_utils.cc chrome/browser/ui/views/profiles/sync_confirmation_ui_browsertest.cc chrome/browser/ui/views/promos/ios_promo_constants.h chrome/browser/ui/views/qrcode_generator/qrcode_generator_bubble_unittest.cc chrome/browser/ui/views/search_engines/dse_reset_dialog.cc chrome/browser/ui/views/search_engines/dse_reset_dialog_view_browsertest.cc chrome/browser/ui/views/select_file_dialog_extension/select_file_dialog_extension_browsertest.cc chrome/browser/ui/views/session_crashed_bubble_view.cc chrome/browser/ui/views/sharing/click_to_call_browsertest.cc chrome/browser/ui/views/sharing/sharing_dialog_view_unittest.cc chrome/browser/ui/views/sharing_hub/preview_view_unittest.cc chrome/browser/ui/views/sharing_hub/sharing_hub_bubble_view_impl_unittest.cc chrome/browser/ui/views/site_data/page_specific_site_data_dialog_unittest.cc chrome/browser/ui/views/sync/inline_login_ui_browsertest.cc chrome/browser/ui/views/tabs/recent_activity_bubble_dialog_view_browsertest.cc chrome/browser/ui/views/tabs/recent_activity_bubble_dialog_view_interactive_uitest.cc chrome/browser/ui/views/tabs/tab_hover_card_controller_interactive_uitest.cc chrome/browser/ui/views/translate/translate_bubble_view_interactive_uitest.cc chrome/browser/ui/views/user_education/browser_ntp_promos.cc chrome/browser/ui/views/user_education/browser_user_education_service.cc chrome/browser/ui/views/user_education/ios_promo_bubble_view_unittest.cc chrome/browser/ui/views/web_apps/force_installed_preinstalled_deprecated_app_dialog_view.cc chrome/browser/ui/views/web_apps/frame_toolbar/web_app_frame_toolbar_browsertest.cc chrome/browser/ui/views/webauthn/passkey_upgrade_bubble_view.cc chrome/browser/ui/views/webid/fedcm_account_selection_view_desktop_browsertest.cc chrome/browser/ui/wallet/walletable_pass_save_bubble_view_browsertest.cc chrome/browser/ui/web_applications/web_app_browsertest.cc chrome/browser/ui/web_applications/web_app_navigate_browsertest.cc chrome/browser/ui/web_applications/web_app_profile_deletion_browsertest.cc chrome/browser/ui/webauthn/authenticator_dialog_browsertest.cc chrome/browser/ui/webauthn/authenticator_request_window.cc chrome/browser/ui/webui/PRESUBMIT.py chrome/browser/ui/webui/access_code_cast/access_code_cast_handler_unittest.cc chrome/browser/ui/webui/app_home/app_home_page_handler.cc chrome/browser/ui/webui/app_management/app_management_page_handler_base.cc chrome/browser/ui/webui/app_management/app_management_page_handler_chromeos.cc chrome/browser/ui/webui/app_management/app_management_page_handler_unittest.cc chrome/browser/ui/webui/ash/add_supervision/add_supervision_ui.cc chrome/browser/ui/webui/ash/add_supervision/add_supervision_ui_browsertest.cc chrome/browser/ui/webui/ash/cloud_upload/cloud_upload_dialog.cc chrome/browser/ui/webui/ash/cloud_upload/cloud_upload_dialog_browsertest.cc chrome/browser/ui/webui/ash/cloud_upload/drive_upload_handler.cc chrome/browser/ui/webui/ash/cloud_upload/drive_upload_handler_browsertest.cc chrome/browser/ui/webui/ash/edu_coexistence/edu_coexistence_login_handler.cc chrome/browser/ui/webui/ash/login/consolidated_consent_screen_handler.h chrome/browser/ui/webui/ash/login/gaia_screen_handler.h chrome/browser/ui/webui/ash/login/l10n_util_unittest.cc chrome/browser/ui/webui/ash/login/signin_userlist_unittest.cc chrome/browser/ui/webui/ash/notification_tester/notification_tester_handler.cc chrome/browser/ui/webui/ash/parent_access/parent_access_ui_handler_impl.cc chrome/browser/ui/webui/ash/parent_access/parent_access_ui_handler_impl_unittest.cc chrome/browser/ui/webui/ash/settings/pages/a11y/accessibility_handler_browsertest.cc chrome/browser/ui/webui/ash/settings/pages/people/os_sync_handler_unittest.cc chrome/browser/ui/webui/ash/settings/pages/people/parental_controls_handler.cc chrome/browser/ui/webui/ash/settings/pages/power/power_section.cc chrome/browser/ui/webui/ash/settings/services/metrics/per_session_settings_user_action_tracker_unittest.cc chrome/browser/ui/webui/ash/settings/services/metrics/settings_user_action_tracker_unittest.cc chrome/browser/ui/webui/autofill_and_password_manager_internals/internals_ui_handler.cc chrome/browser/ui/webui/certificate_manager/certificate_manager_ui.cc chrome/browser/ui/webui/commerce/shopping_ui_handler_delegate_browsertest.cc chrome/browser/ui/webui/components/components_handler.cc chrome/browser/ui/webui/cr_components/history_embeddings/history_embeddings_handler_unittest.cc chrome/browser/ui/webui/cr_components/most_visited/most_visited_handler_unittest.cc chrome/browser/ui/webui/cr_components/searchbox/searchbox_handler.cc chrome/browser/ui/webui/data_sharing/data_sharing_ui.cc chrome/browser/ui/webui/devtools/devtools_ui_data_source.cc chrome/browser/ui/webui/devtools/devtools_ui_data_source_unittest.cc chrome/browser/ui/webui/discards/graph_dump_impl_unittest.cc chrome/browser/ui/webui/extensions/extensions_internals_unittest.cc chrome/browser/ui/webui/extensions_zero_state_promo/extensions_zero_state_promo_interactive_uitest.cc chrome/browser/ui/webui/favicon_source.cc chrome/browser/ui/webui/favicon_source_unittest.cc chrome/browser/ui/webui/history/browsing_history_handler_unittest.cc chrome/browser/ui/webui/interstitials/interstitial_ui.cc chrome/browser/ui/webui/log_web_ui_url_unittest.cc chrome/browser/ui/webui/management/management_ui_handler_unittest.cc chrome/browser/ui/webui/media_router/cast_feedback_ui.cc chrome/browser/ui/webui/nearby_internals/quick_pair/quick_pair_handler.cc chrome/browser/ui/webui/new_tab_footer/new_tab_footer_handler_browsertest.cc chrome/browser/ui/webui/new_tab_page/action_chips/action_chips_generator_unittest.cc chrome/browser/ui/webui/new_tab_page/action_chips/action_chips_handler_unittest.cc chrome/browser/ui/webui/new_tab_page/foo/foo_handler.cc chrome/browser/ui/webui/new_tab_page/new_tab_page_handler_unittest.cc chrome/browser/ui/webui/new_tab_page/new_tab_page_ui.cc chrome/browser/ui/webui/new_tab_page/untrusted_source.cc chrome/browser/ui/webui/new_tab_page/untrusted_source.h chrome/browser/ui/webui/ntp/new_tab_ui.cc chrome/browser/ui/webui/ntp/ntp_resource_cache.cc chrome/browser/ui/webui/password_manager/promo_cards/access_on_any_device_promo.cc chrome/browser/ui/webui/password_manager/sync_handler_unittest.cc chrome/browser/ui/webui/policy/policy_ui_browsertest.cc chrome/browser/ui/webui/print_preview/pdf_printer_handler_unittest.cc chrome/browser/ui/webui/privacy_sandbox/privacy_sandbox_dialog_untrusted_ui.cc chrome/browser/ui/webui/privacy_sandbox/privacy_sandbox_internals_handler_browsertest.cc chrome/browser/ui/webui/privacy_sandbox/private_state_tokens/private_state_tokens_handler.cc chrome/browser/ui/webui/sanitized_image_source.cc chrome/browser/ui/webui/sanitized_image_source_unittest.cc chrome/browser/ui/webui/searchbox/contextual_searchbox_handler_unittest.cc chrome/browser/ui/webui/searchbox/contextual_searchbox_test_utils.cc chrome/browser/ui/webui/searchbox/webui_omnibox_interactive_uitest.cc chrome/browser/ui/webui/settings/about_handler_unittest.cc chrome/browser/ui/webui/settings/on_startup_handler_unittest.cc chrome/browser/ui/webui/settings/people_handler_unittest.cc chrome/browser/ui/webui/settings/profile_info_handler_unittest.cc chrome/browser/ui/webui/settings/settings_localized_strings_provider.cc chrome/browser/ui/webui/settings/settings_manage_profile_handler_unittest.cc chrome/browser/ui/webui/settings/settings_utils_unittest.cc chrome/browser/ui/webui/settings/settings_utils_win.cc chrome/browser/ui/webui/settings/site_settings_handler_unittest.cc chrome/browser/ui/webui/settings/site_settings_helper_unittest.cc chrome/browser/ui/webui/settings/sync_settings_interactive_uitest.cc chrome/browser/ui/webui/side_panel/bookmarks/bookmarks_page_handler_unittest.cc chrome/browser/ui/webui/side_panel/customize_chrome/customize_chrome_page_handler.cc chrome/browser/ui/webui/side_panel/customize_chrome/customize_chrome_page_handler_unittest.cc chrome/browser/ui/webui/side_panel/customize_chrome/wallpaper_search/wallpaper_search_handler.cc chrome/browser/ui/webui/side_panel/customize_chrome/wallpaper_search/wallpaper_search_handler_unittest.cc chrome/browser/ui/webui/side_panel/customize_chrome/wallpaper_search/wallpaper_search_interactive_uitest.cc chrome/browser/ui/webui/side_panel/read_anything/read_anything_untrusted_ui.cc chrome/browser/ui/webui/side_panel/reading_list/reading_list_page_handler_unittest.cc chrome/browser/ui/webui/signin/ash/edu_account_login_handler_unittest.cc chrome/browser/ui/webui/signin/ash/inline_login_handler_impl_browsertest.cc chrome/browser/ui/webui/signin/ash/signin_helper_browsertest.cc chrome/browser/ui/webui/signin/ash/user_cloud_signin_restriction_policy_fetcher.cc chrome/browser/ui/webui/signin/ash/user_cloud_signin_restriction_policy_fetcher.h chrome/browser/ui/webui/signin/ash/user_cloud_signin_restriction_policy_fetcher_unittest.cc chrome/browser/ui/webui/signin/batch_upload_ui.cc chrome/browser/ui/webui/signin/history_sync_optin/history_sync_optin_handler_unittest.cc chrome/browser/ui/webui/signin/history_sync_optin_service_unittest.cc chrome/browser/ui/webui/signin/signin_error_handler_browsertest.cc chrome/browser/ui/webui/signin/signin_utils_desktop_unittest.cc chrome/browser/ui/webui/signin/sync_confirmation_handler_unittest.cc chrome/browser/ui/webui/signin/sync_confirmation_ui.cc chrome/browser/ui/webui/signin/turn_sync_on_helper_browsertest.cc chrome/browser/ui/webui/signin/turn_sync_on_helper_unittest.cc chrome/browser/ui/webui/skills/skills_dialog_handler_unittest.cc chrome/browser/ui/webui/theme_source_unittest.cc chrome/browser/ui/webui/webui_allowlist_provider_unittest.cc chrome/browser/ui/webui/whats_new/whats_new_fetcher.cc chrome/browser/ui/webui/whats_new/whats_new_fetcher_browsertest.cc chrome/browser/ui/webui/whats_new/whats_new_handler_unittest.cc chrome/browser/ui/webui/whats_new/whats_new_registrar.cc chrome/browser/ui/webui/whats_new/whats_new_registrar_unittest.cc chrome/browser/ui/webui/whats_new/whats_new_ui.cc chrome/browser/ui/window_sizer/window_sizer_chromeos.cc chrome/browser/unified_consent/unified_consent_sync_to_signin_browsertest.cc chrome/browser/updates/announcement_notification/announcement_notification_service_unittest.cc chrome/browser/upgrade_detector/version_history_client.cc chrome/browser/upgrade_detector/version_history_client_unittest.cc chrome/browser/usb/chrome_usb_browsertest.cc chrome/browser/usb/chrome_usb_delegate_unittest.cc chrome/browser/usb/usb_chooser_context_unittest.cc chrome/browser/usb/usb_chooser_controller_unittest.cc chrome/browser/usb/usb_policy_allowed_devices_unittest.cc chrome/browser/usb/web_usb_detector_browsertest.cc chrome/browser/visited_url_ranking/desktop_tab_model_url_visit_data_fetcher_browsertest.cc chrome/browser/vr/PRESUBMIT.py chrome/browser/vr/test/gl_test_environment_unittest.cc chrome/browser/wallet/android/boarding_pass_detector_unittest.cc chrome/browser/web_applications/commands/fetch_manifest_and_install_command.cc chrome/browser/web_applications/commands/install_app_from_verified_manifest_command.cc chrome/browser/web_applications/commands/install_app_from_verified_manifest_command_browsertest.cc chrome/browser/web_applications/isolated_web_apps/browser_navigator_iwa_browsertest.cc chrome/browser/web_applications/isolated_web_apps/isolated_web_app_throttle_browsertest.cc chrome/browser/web_applications/isolated_web_apps/iwa_permissions_policy_cache.cc chrome/browser/web_applications/os_integration/web_app_handler_registration_utils_win.cc chrome/browser/web_applications/os_integration/web_app_handler_registration_utils_win.h chrome/browser/web_applications/os_integration/web_app_handler_registration_utils_win_unittest.cc chrome/browser/web_applications/preinstalled_web_app_manager_unittest.cc chrome/browser/web_applications/preinstalled_web_apps/gemini.cc chrome/browser/web_applications/preinstalled_web_apps/gmail.cc chrome/browser/web_applications/preinstalled_web_apps/google_calendar.cc chrome/browser/web_applications/preinstalled_web_apps/google_chat.cc chrome/browser/web_applications/preinstalled_web_apps/google_docs.cc chrome/browser/web_applications/preinstalled_web_apps/google_drive.cc chrome/browser/web_applications/preinstalled_web_apps/google_meet.cc chrome/browser/web_applications/preinstalled_web_apps/google_sheets.cc chrome/browser/web_applications/preinstalled_web_apps/google_slides.cc chrome/browser/web_applications/preinstalled_web_apps/messages_dogfood.cc chrome/browser/web_applications/preinstalled_web_apps/notebook_lm.cc chrome/browser/web_applications/preinstalled_web_apps/preinstalled_web_apps.cc chrome/browser/web_applications/preinstalled_web_apps/vids.cc chrome/browser/web_applications/preinstalled_web_apps/youtube.cc chrome/browser/web_applications/preinstalled_web_apps_browsertest.cc chrome/browser/web_applications/sub_apps_admin_policy_browsertest.cc chrome/browser/web_applications/web_app_command_scheduler.cc chrome/browser/web_applications/web_app_helpers_unittest.cc chrome/browser/web_applications/web_app_install_utils_unittest.cc chrome/browser/web_applications/web_contents/web_app_icon_downloader_unittest.cc chrome/browser/web_applications/web_install_browsertest.cc chrome/browser/webapps/installable/installable_manager_browsertest.cc chrome/browser/webauthn/authenticator_request_dialog_controller.cc chrome/browser/webauthn/cablev2_devices.h chrome/browser/webauthn/challenge_url_fetcher.cc chrome/browser/webauthn/chrome_authenticator_request_delegate.cc chrome/browser/webauthn/chrome_authenticator_request_delegate_unittest.cc chrome/browser/webauthn/chrome_web_authentication_delegate.cc chrome/browser/webauthn/chrome_web_authentication_delegate_base.cc chrome/browser/webauthn/chrome_web_authentication_delegate_base_unittest.cc chrome/browser/webauthn/chrome_web_authentication_delegate_unittest.cc chrome/browser/webauthn/chrome_webauthn_autofill_interactive_uitest.cc chrome/browser/webauthn/enclave_authenticator_browsertest.cc chrome/browser/webauthn/enclave_manager.cc chrome/browser/webauthn/enclave_manager.h chrome/browser/webauthn/enclave_manager_unittest.cc chrome/browser/webauthn/fake_magic_arch.h chrome/browser/webauthn/fake_recovery_key_store.h chrome/browser/webauthn/fake_security_domain_service.cc chrome/browser/webauthn/gpm_enclave_controller.h chrome/browser/webauthn/passkey_unlock_manager_browsertest.cc chrome/browser/webauthn/passkey_unlock_manager_unittest.cc chrome/browser/webauthn/test_util.h chrome/browser/webid/identity_provider_service.h chrome/browser/webshare/win/fake_random_access_stream.cc chrome/browser/webshare/win/share_operation.cc chrome/browser/win/chrome_process_finder.cc chrome/browser/win/conflicts/enumerate_shell_extensions.cc chrome/browser/win/installer_downloader/installer_downloader_controller.cc chrome/browser/win/installer_downloader/installer_downloader_feature.h chrome/browser/win/jumplist.cc chrome/browser/win/jumplist_update_util_unittest.cc chrome/browser/win/parental_controls.cc chrome/browser/window_management/window_management_browsertest.cc chrome/chrome_elf/chrome_elf_main.cc chrome/chrome_elf/nt_registry/nt_registry.cc chrome/chrome_elf/nt_registry/nt_registry.h chrome/chrome_elf/nt_registry/nt_registry_unittest.cc chrome/chrome_elf/pe_image_safe/pe_image_safe.h chrome/chrome_elf/third_party_dlls/hardcoded_blocklist.cc chrome/chrome_elf/third_party_dlls/main.h chrome/common/apps/platform_apps/api/PRESUBMIT.py chrome/common/chrome_features.cc chrome/common/chrome_switches.cc chrome/common/conflicts/module_watcher_win.cc chrome/common/extensions/PRESUBMIT.py chrome/common/extensions/api/PRESUBMIT.py chrome/common/extensions/api/_api_features.json chrome/common/extensions/api/common_extension_api_unittest.cc chrome/common/extensions/api/content_settings.json chrome/common/extensions/api/cookies.json chrome/common/extensions/api/debugger.json chrome/common/extensions/api/declarative_content.json chrome/common/extensions/api/dom.json chrome/common/extensions/api/enterprise_device_attributes.idl chrome/common/extensions/api/file_system_provider.idl chrome/common/extensions/api/gcm.json chrome/common/extensions/api/generated_externs_list.txt chrome/common/extensions/api/identity.idl chrome/common/extensions/api/instance_id.json chrome/common/extensions/api/printing.idl chrome/common/extensions/api/privacy.json chrome/common/extensions/api/scripting.idl chrome/common/extensions/api/tabs.json chrome/common/extensions/api/tts.json chrome/common/extensions/api/url_handlers/url_handlers_parser.h chrome/common/extensions/api/webrtc_audio_private.idl chrome/common/extensions/api/webview_tag.json chrome/common/extensions/api/windows.json chrome/common/extensions/chrome_extensions_client.cc chrome/common/extensions/manifest_handlers/automation_unittest.cc chrome/common/extensions/manifest_tests/extension_manifests_default_extent_path_unittest.cc chrome/common/extensions/manifest_tests/extension_manifests_launch_unittest.cc chrome/common/extensions/manifest_tests/extension_manifests_platformapp_unittest.cc chrome/common/extensions/manifest_tests/extension_manifests_validapp_unittest.cc chrome/common/extensions/manifest_tests/extension_manifests_web_accessible_resources_unittest.cc chrome/common/extensions/manifest_tests/extension_manifests_web_unittest.cc chrome/common/extensions/manifest_tests/permissions_parser_unittest.cc chrome/common/extensions/permissions/permission_set_unittest.cc chrome/common/extensions/permissions/permissions_data_unittest.cc chrome/common/extensions/permissions/settings_override_permission_unittest.cc chrome/common/extensions/sync_type_unittest.cc chrome/common/google_url_loader_throttle.cc chrome/common/google_url_loader_throttle_unittest.cc chrome/common/importer/firefox_importer_utils.cc chrome/common/net/x509_certificate_model_unittest.cc chrome/common/pref_names.h chrome/common/request_header_integrity/request_header_integrity_url_loader_throttle_browsertest.cc chrome/common/request_header_integrity/request_header_integrity_url_loader_throttle_unittest.cc chrome/common/url_constants.h chrome/common/webui_url_constants.h chrome/common/win/delay_load_failure_hook.cc chrome/common/win/delay_load_notify_hook.cc chrome/common/win/delay_load_notify_hook.h chrome/credential_provider/extension/os_service_manager.h chrome/credential_provider/extension/service.h chrome/credential_provider/extension/task_manager_unittest.cc chrome/credential_provider/gaiacp/associated_user_validator.cc chrome/credential_provider/gaiacp/associated_user_validator_unittest.cc chrome/credential_provider/gaiacp/auth_utils.cc chrome/credential_provider/gaiacp/dllmain.cc chrome/credential_provider/gaiacp/gaia_credential_base.cc chrome/credential_provider/gaiacp/gaia_credential_base_unittest.cc chrome/credential_provider/gaiacp/gaia_credential_provider_unittest.cc chrome/credential_provider/gaiacp/gaia_credential_unittest.cc chrome/credential_provider/gaiacp/gcp_utils.cc chrome/credential_provider/gaiacp/gcp_utils.h chrome/credential_provider/gaiacp/gcp_utils_unittest.cc chrome/credential_provider/gaiacp/gcpw_strings.cc chrome/credential_provider/gaiacp/internet_availability_checker.cc chrome/credential_provider/gaiacp/mdm_utils.cc chrome/credential_provider/gaiacp/reauth_credential_unittest.cc chrome/credential_provider/gaiacp/reg_utils.cc chrome/credential_provider/gaiacp/win_http_url_fetcher_unittest.cc chrome/credential_provider/test/gcp_fakes.cc chrome/credential_provider/test/gcp_gls_output_unittest.cc chrome/credential_provider/test/gls_runner_test_base.cc chrome/docs/devtools-pillar.html chrome/docs/index.html chrome/docs/platform-pillar.html chrome/elevation_service/caller_validation.cc chrome/enterprise_companion/branding.gni chrome/enterprise_companion/crash_client.cc chrome/enterprise_companion/event_logger.cc chrome/enterprise_companion/proxy_config_service.cc chrome/install_static/install_constants.h chrome/install_static/install_details.h chrome/install_static/install_modes_unittest.cc chrome/install_static/install_util.cc chrome/install_static/install_util.h chrome/install_static/install_util_unittest.cc chrome/install_static/user_data_dir.cc chrome/installer/gcapi/gcapi.cc chrome/installer/gcapi/gcapi_dll.cc chrome/installer/linux/common/installer.py chrome/installer/mini_installer/mini_installer.cc chrome/installer/mini_installer/path_string.h chrome/installer/setup/eula/oem_ar.html chrome/installer/setup/eula/oem_bg.html chrome/installer/setup/eula/oem_ca.html chrome/installer/setup/eula/oem_cs.html chrome/installer/setup/eula/oem_da.html chrome/installer/setup/eula/oem_de.html chrome/installer/setup/eula/oem_el.html chrome/installer/setup/eula/oem_en-GB.html chrome/installer/setup/eula/oem_en.html chrome/installer/setup/eula/oem_es-419.html chrome/installer/setup/eula/oem_es.html chrome/installer/setup/eula/oem_et.html chrome/installer/setup/eula/oem_fi.html chrome/installer/setup/eula/oem_fil.html chrome/installer/setup/eula/oem_fr.html chrome/installer/setup/eula/oem_hi.html chrome/installer/setup/eula/oem_hr.html chrome/installer/setup/eula/oem_hu.html chrome/installer/setup/eula/oem_id.html chrome/installer/setup/eula/oem_it.html chrome/installer/setup/eula/oem_iw.html chrome/installer/setup/eula/oem_ja.html chrome/installer/setup/eula/oem_ko.html chrome/installer/setup/eula/oem_lt.html chrome/installer/setup/eula/oem_lv.html chrome/installer/setup/eula/oem_nl.html chrome/installer/setup/eula/oem_no.html chrome/installer/setup/eula/oem_pl.html chrome/installer/setup/eula/oem_pt-BR.html chrome/installer/setup/eula/oem_pt-PT.html chrome/installer/setup/eula/oem_ro.html chrome/installer/setup/eula/oem_ru.html chrome/installer/setup/eula/oem_sk.html chrome/installer/setup/eula/oem_sl.html chrome/installer/setup/eula/oem_sr.html chrome/installer/setup/eula/oem_sv.html chrome/installer/setup/eula/oem_th.html chrome/installer/setup/eula/oem_tr.html chrome/installer/setup/eula/oem_uk.html chrome/installer/setup/eula/oem_vi.html chrome/installer/setup/eula/oem_zh-CN.html chrome/installer/setup/eula/oem_zh-TW.html chrome/installer/setup/google_chrome_behaviors.cc chrome/installer/setup/uninstall.cc chrome/installer/util/delete_after_reboot_helper.cc chrome/installer/util/delete_after_reboot_helper.h chrome/installer/util/initial_preferences.h chrome/installer/util/initial_preferences_unittest.cc chrome/installer/util/l10n_string_util.cc chrome/installer/util/shell_util.cc chrome/installer/util/shell_util.h chrome/installer/util/unbuffered_file_writer.h chrome/installer/util/work_item.h chrome/notification_helper/notification_activator.h chrome/notification_helper/notification_helper.cc chrome/renderer/accessibility/read_anything/read_aloud_traversal_utils.cc chrome/renderer/accessibility/read_anything/read_anything_app_controller_browsertest.cc chrome/renderer/accessibility/read_anything/read_anything_app_model.cc chrome/renderer/accessibility/read_anything/read_anything_app_model_browsertest.cc chrome/renderer/accessibility/read_anything/read_anything_node_utils.cc chrome/renderer/app_categorizer_unittest.cc chrome/renderer/ash_merge_session_loader_throttle_unittest.cc chrome/renderer/autofill/autofill_renderer_browsertest.cc chrome/renderer/autofill/form_autofill_browsertest.cc chrome/renderer/autofill/page_passwords_analyser_browsertest.cc chrome/renderer/autofill/password_autofill_agent_browsertest.cc chrome/renderer/bound_session_credentials/bound_session_request_throttled_in_renderer_manager_unittest.cc chrome/renderer/chrome_content_renderer_client_browsertest.cc chrome/renderer/extensions/api/extension_hooks_delegate_unittest.cc chrome/renderer/google_accounts_private_api_extension.h chrome/renderer/media/flash_embed_rewrite.cc chrome/renderer/media/flash_embed_rewrite_unittest.cc chrome/renderer/resources/extensions/identity_custom_bindings.js chrome/renderer/searchbox/searchbox.h chrome/renderer/searchbox/searchbox_extension.cc chrome/renderer/searchbox/searchbox_extension.h chrome/renderer/searchbox/searchbox_unittest.cc chrome/renderer/translate/translate_agent_browsertest.cc chrome/services/mac_notifications/mac_notification_service_ns.mm chrome/services/mac_notifications/mac_notification_service_ns_unittest.mm chrome/services/mac_notifications/mac_notification_service_un_unittest.mm chrome/services/sharing/nearby/nearby_presence_unittest.cc chrome/services/sharing/nearby/platform/wifi_direct_socket.cc chrome/services/sharing/nearby/quick_start_decoder/quick_start_decoder_unittest.cc chrome/services/util_win/av_products.cc chrome/test/android/browsertests_apk/AndroidManifest.xml.jinja2 chrome/test/base/android/android_browser_test.h chrome/test/base/ash/interactive/interactive_ash_test.cc chrome/test/base/ash/js2gtest.js chrome/test/base/chromeos/crosier/chromeos_integration_login_mixin.cc chrome/test/base/chromeos/crosier/chromeos_integration_login_mixin.h chrome/test/base/chromeos/crosier/demo_integration_test.cc chrome/test/base/chromeos/crosier/helper/reset_dut.py chrome/test/base/fake_gaia_mixin.cc chrome/test/base/fake_gaia_mixin.h chrome/test/base/in_process_browser_test_browsertest.cc chrome/test/base/platform_browser_test.h chrome/test/chromedriver/capabilities_unittest.cc chrome/test/chromedriver/chrome/chrome_finder.cc chrome/test/chromedriver/chrome/chrome_impl.cc chrome/test/chromedriver/chrome/devtools_client_impl.cc chrome/test/chromedriver/chrome/mobile_device.cc chrome/test/chromedriver/chrome/web_view_impl.cc chrome/test/chromedriver/client/chromedriver.py chrome/test/chromedriver/command_listener_proxy.h chrome/test/chromedriver/key_converter.cc chrome/test/chromedriver/logging.cc chrome/test/chromedriver/logging.h chrome/test/chromedriver/net/pipe_builder.cc chrome/test/chromedriver/net/websocket.cc chrome/test/chromedriver/server/chromedriver_server.cc chrome/test/chromedriver/session_commands.cc chrome/test/chromedriver/test/run_py_tests.py chrome/test/chromedriver/window_commands.cc chrome/test/chromedriver/window_commands_unittest.cc chrome/test/enterprise/e2e/PRESUBMIT.py chrome/test/enterprise/e2e/connector/chrome_reporting_connector_test_case.py chrome/test/enterprise/e2e/connector/client_certs/client_certs_test.py chrome/test/enterprise/e2e/connector/common/realtime_reporting_ui_test.py chrome/test/enterprise/e2e/connector/identity_connector/managed_profile_test.py chrome/test/enterprise/e2e/connector/local_content_analysis_connector/local_content_analysis_connector_test.py chrome/test/enterprise/e2e/connector/realtime_reporting_bce/reporting_server.py chrome/test/enterprise/e2e/connector/reporting_connector_chronicle/chronicle_api_service.py chrome/test/enterprise/e2e/connector/reporting_connector_pan/pan_api_service.py chrome/test/enterprise/e2e/infra/test_binary_downloader.py chrome/test/enterprise/e2e/omaha/rollback_to_target_version/google_update_policy_cbcm.py chrome/test/enterprise/e2e/policy/allow_deleting_browser_history/allow_deleting_browser_history.py chrome/test/enterprise/e2e/policy/allow_deleting_browser_history/allow_deleting_browser_history_webdriver_test.py chrome/test/enterprise/e2e/policy/apps_shortcut/apps_shortcut.py chrome/test/enterprise/e2e/policy/bookmarkbar_enabled/bookmarkbar_enabled.py chrome/test/enterprise/e2e/policy/chrome_data_region_setting/chrome_data_region_setting.py chrome/test/enterprise/e2e/policy/cloud_management_enrollment_token/cloud_management_enrollment_token.py chrome/test/enterprise/e2e/policy/cloud_reporting_enabled/cloud_reporting_enabled.py chrome/test/enterprise/e2e/policy/default_search_provider/default_search_provider.py chrome/test/enterprise/e2e/policy/encrypted_reporting/report_cbcm_events.py chrome/test/enterprise/e2e/policy/extension_allowlist/extension_allowlist.py chrome/test/enterprise/e2e/policy/extension_blocklist/extension_blocklist.py chrome/test/enterprise/e2e/policy/extension_forcelist/extension_forcelist.py chrome/test/enterprise/e2e/policy/force_google_safe_search/force_google_safe_search_webdriver_test.py chrome/test/enterprise/e2e/policy/fullscreen_allowed/fullscreen_allowed.py chrome/test/enterprise/e2e/policy/gemini_settings/gemini_settings.py chrome/test/enterprise/e2e/policy/homepage/homepage.py chrome/test/enterprise/e2e/policy/install_extension.py chrome/test/enterprise/e2e/policy/mergelist/mergelist.py chrome/test/enterprise/e2e/policy/password_manager_enabled/password_manager_enabled.py chrome/test/enterprise/e2e/policy/popups_allowed/popups_allowed.py chrome/test/enterprise/e2e/policy/restore_on_startup/restore_on_startup.py chrome/test/enterprise/e2e/policy/safe_browsing/safe_browsing.py chrome/test/enterprise/e2e/policy/safe_browsing/safe_browsing_ui_test.py chrome/test/enterprise/e2e/policy/translate_enabled/translate_enabled.py chrome/test/enterprise/e2e/policy/url_allowlist/url_allowlist.py chrome/test/enterprise/e2e/policy/url_blocklist/url_blocklist.py chrome/test/enterprise/e2e/policy/user_data_dir/user_data_dir.py chrome/test/enterprise/e2e/policy/webprotect_file_download/webprotect_file_download_webdriver.py chrome/test/enterprise/e2e/policy/youtube_restrict/youtube_restrict.py chrome/test/enterprise/e2e/webstore/enterprise_cws/enterprise_cws_webdriver.py chrome/test/fuzzing/atspi_in_process_fuzzer.cc chrome/test/fuzzing/in_process_fuzzer.cc chrome/test/interaction/interactive_browser_test_interactive_uitest.cc chrome/test/media_router/media_router_gmc_ui_for_test.cc chrome/test/mini_installer/PRESUBMIT.py chrome/test/mini_installer/create_zip.py chrome/test/mini_installer/installer_test.py chrome/test/mini_installer/update_lastrun.py chrome/test/payments/payment_request_platform_browsertest_base.h chrome/test/supervised_user/api_mock_setup_mixin.cc chrome/test/supervised_user/supervision_mixin.cc chrome/test/supervised_user/supervision_mixin.h chrome/test/variations/fixtures/cipd.py chrome/test/variations/fixtures/driver.py chrome/test/variations/fixtures/skia_gold.py chrome/test/variations/test_utils/downloader.py chrome/tools/build/PRESUBMIT.py chrome/tools/build/win/makecab.py chrome/tools/check_ownership.py chrome/tools/webforms_aggregator_tests.py chrome/tools/weburl_links.txt chrome/updater/branding.gni chrome/updater/certificate_tag.cc chrome/updater/certificate_tag_internal.h chrome/updater/certificate_tag_unittest.cc chrome/updater/crash_reporter.cc chrome/updater/enterprise/win/google/build_group_policy_template_unittest.py chrome/updater/enterprise/win/google/public_apps.py chrome/updater/event_logger_unittest.cc chrome/updater/fix_licenses.py chrome/updater/mac/launcher_main.c chrome/updater/mac/setup/ks_tickets.mm chrome/updater/mac/setup/ks_tickets_unittest.mm chrome/updater/policy/dm_policy_manager_unittest.cc chrome/updater/test/service/win/ui.py chrome/updater/test/test_installer/test_installer.wxs.xml chrome/updater/tools/PRESUBMIT.py chrome/updater/tools/file_inspector/parser.js chrome/updater/tools/keystone_ticketstore_tool.mm chrome/updater/util/util_unittest.cc chrome/updater/util/util_win_unittest.cc chrome/updater/util/win_util.cc chrome/updater/util/win_util.h chrome/updater/win/installer/installer_main.cc chrome/updater/win/protocol_parser_xml_unittest.cc chrome/updater/win/signing/PRESUBMIT.py chrome/updater/win/signing/enterprise_standalone_installer.wxs.xml chrome/updater/win/signing/msi_from_standalone.py chrome/updater/win/task_scheduler.cc chrome/utility/importer/bookmarks_file_importer_unittest.cc chrome/utility/importer/firefox_importer.h chrome/utility/importer/firefox_importer_unittest.cc chrome/utility/importer/ie_importer_win.cc chrome/utility/importer/nss_decryptor.cc chrome/utility/importer/nss_decryptor_system_nss.cc chrome/utility/importer/nss_decryptor_win.h chrome/version.gni chrome/windows_services/service_program/crash_reporting.cc chrome/windows_services/service_program/service.cc chromeos/BUILD.gn chromeos/ash/components/attestation/attestation_flow_adaptive_unittest.cc chromeos/ash/components/attestation/attestation_flow_integrated_unittest.cc chromeos/ash/components/boca/babelorca/babel_orca_consumer.cc chromeos/ash/components/boca/babelorca/tachyon_constants.h chromeos/ash/components/boca/babelorca/tachyon_registrar.cc chromeos/ash/components/boca/babelorca/transcript_receiver.cc chromeos/ash/components/boca/babelorca/transcript_sender_impl.cc chromeos/ash/components/boca/boca_metrics_manager_unittest.cc chromeos/ash/components/boca/boca_request_unittest.cc chromeos/ash/components/boca/boca_role_util_unittest.cc chromeos/ash/components/boca/boca_session_manager_unittest.cc chromeos/ash/components/boca/receiver/get_kiosk_receiver_request.h chromeos/ash/components/boca/receiver/get_receiver_connection_info_request.h chromeos/ash/components/boca/receiver/register_receiver_request.h chromeos/ash/components/boca/receiver/start_kiosk_receiver_request.h chromeos/ash/components/boca/receiver/start_kiosk_receiver_request_unittest.cc chromeos/ash/components/boca/receiver/update_kiosk_receiver_state_request.h chromeos/ash/components/boca/retriable_request_sender_unittest.cc chromeos/ash/components/boca/session_api/add_students_request_unittest.cc chromeos/ash/components/boca/session_api/constants.h chromeos/ash/components/boca/session_api/create_session_request_unittest.cc chromeos/ash/components/boca/session_api/get_session_request_unittest.cc chromeos/ash/components/boca/session_api/join_session_request_unittest.cc chromeos/ash/components/boca/session_api/session_parser_unittest.cc chromeos/ash/components/boca/session_api/update_session_config_request_unittest.cc chromeos/ash/components/boca/session_api/update_session_request_unittest.cc chromeos/ash/components/boca/session_api/update_student_activities_request_unittest.cc chromeos/ash/components/boca/spotlight/remoting_client_io_proxy_unittest.cc chromeos/ash/components/boca/spotlight/spotlight_service_unittest.cc chromeos/ash/components/boca/spotlight/spotlight_session_manager_unittest.cc chromeos/ash/components/boca/util.cc chromeos/ash/components/carrier_lock/fcm_topic_subscriber_unittest.cc chromeos/ash/components/carrier_lock/provisioning_config_fetcher_impl.cc chromeos/ash/components/carrier_lock/provisioning_config_fetcher_unittest.cc chromeos/ash/components/carrier_lock/psm_claim_verifier_impl.cc chromeos/ash/components/carrier_lock/psm_claim_verifier_unittest.cc chromeos/ash/components/carrier_lock/topic_subscription_request.cc chromeos/ash/components/carrier_lock/topic_subscription_request_unittest.cc chromeos/ash/components/chaps_util/chaps_util_impl.cc chromeos/ash/components/cryptohome/userdataauth_util.cc chromeos/ash/components/data_migration/data_migration.cc chromeos/ash/components/dbus/arc/arc_obb_mounter_client.h chromeos/ash/components/dbus/biod/fake_biod_client_unittest.cc chromeos/ash/components/dbus/debug_daemon/debug_daemon_client.h chromeos/ash/components/dbus/debug_daemon/fake_debug_daemon_client.cc chromeos/ash/components/dbus/dlcservice/dlcservice_client.h chromeos/ash/components/dbus/fwupd/fwupd_client.cc chromeos/ash/components/dbus/fwupd/fwupd_client_unittest.cc chromeos/ash/components/dbus/rmad/fake_rmad_client.cc chromeos/ash/components/drivefs/drivefs_http_client_unittest.cc chromeos/ash/components/emoji/gif_tenor_api_fetcher.cc chromeos/ash/components/enhanced_network_tts/enhanced_network_tts_constants.h chromeos/ash/components/enhanced_network_tts/enhanced_network_tts_impl.cc chromeos/ash/components/enhanced_network_tts/enhanced_network_tts_test_utils.h chromeos/ash/components/enhanced_network_tts/enhanced_network_tts_utils.cc chromeos/ash/components/fwupd/firmware_update_manager.cc chromeos/ash/components/fwupd/firmware_update_manager_unittest.cc chromeos/ash/components/geolocation/location_fetcher.h chromeos/ash/components/growth/campaigns_manager_unittest.cc chromeos/ash/components/growth/campaigns_model.h chromeos/ash/components/growth/campaigns_utils.cc chromeos/ash/components/http_auth_dialog/http_auth_dialog.h chromeos/ash/components/local_search_service/content_extraction_utils_unittest.cc chromeos/ash/components/login/auth/recovery/service_constants.cc chromeos/ash/components/multidevice/remote_device_test_util.cc chromeos/ash/components/multidevice/stub_multidevice_util.cc chromeos/ash/components/nearby/common/client/nearby_api_call_flow_impl_unittest.cc chromeos/ash/components/nearby/presence/credentials/local_device_data_provider_impl_unittest.cc chromeos/ash/components/nearby/presence/credentials/nearby_presence_server_client_impl.cc chromeos/ash/components/nearby/presence/credentials/nearby_presence_server_client_impl_unittest.cc chromeos/ash/components/network/geolocation_handler_impl.cc chromeos/ash/components/network/network_cert_loader.cc chromeos/ash/components/network/network_util.h chromeos/ash/components/network/onc/network_onc_utils.cc chromeos/ash/components/network/profile_policies.h chromeos/ash/components/network/proxy/proxy_config_service_impl_unittest.cc chromeos/ash/components/network/system_token_cert_db_storage.h chromeos/ash/components/phonehub/notification.h chromeos/ash/components/phonehub/url_constants.cc chromeos/ash/components/policy/policy_blocklist_service/ash_policy_blocklist_service_factory.h chromeos/ash/components/proximity_auth/proximity_auth_system_unittest.cc chromeos/ash/components/proximity_auth/proximity_monitor_impl_unittest.cc chromeos/ash/components/quick_start/quick_start_requests.cc chromeos/ash/components/quick_start/quick_start_requests_unittest.cc chromeos/ash/components/report/device_metrics/use_case/use_case.cc chromeos/ash/components/report/utils/network_utils.cc chromeos/ash/components/report/utils/network_utils_unittest.cc chromeos/ash/components/scheduler_config/scheduler_configuration_manager.h chromeos/ash/components/specialized_features/feature_access_checker_unittest.cc chromeos/ash/components/string_matching/tokenized_string_unittest.cc chromeos/ash/components/timezone/timezone_request.cc chromeos/ash/components/tpm/tpm_token_info_getter_unittest.cc chromeos/ash/components/trial_group/trial_group_checker.cc chromeos/ash/experiences/arc/arc_util.h chromeos/ash/experiences/arc/intent_helper/arc_intent_helper_bridge_unittest.cc chromeos/ash/experiences/arc/intent_helper/link_handler_model_unittest.cc chromeos/ash/experiences/arc/net/arc_net_host_impl_unittest.cc chromeos/ash/experiences/arc/net/passpoint_dialog_view.cc chromeos/ash/experiences/arc/session/arc_upgrade_params.h chromeos/ash/experiences/arc/session/serial_number_util_unittest.cc chromeos/ash/experiences/arc/volume_mounter/arc_volume_mounter_bridge_unittest.cc chromeos/ash/experiences/guest_os/borealis/motd/borealis_motd_ui.cc chromeos/ash/services/device_sync/cryptauth_api_call_flow_unittest.cc chromeos/ash/services/device_sync/cryptauth_client_impl.cc chromeos/ash/services/device_sync/cryptauth_client_impl_unittest.cc chromeos/ash/services/device_sync/device_sync_service_unittest.cc chromeos/ash/services/device_sync/public/cpp/device_sync_client_impl_unittest.cc chromeos/ash/services/device_sync/remote_device_loader_unittest.cc chromeos/ash/services/device_sync/remote_device_provider_impl_unittest.cc chromeos/ash/services/device_sync/remote_device_v2_loader_impl_unittest.cc chromeos/ash/services/device_sync/switches.cc chromeos/ash/services/ime/input_method_user_data_service_impl_unittest.cc chromeos/ash/services/quick_pair/fast_pair_data_parser.cc chromeos/ash/services/quick_pair/fast_pair_decryption.cc chromeos/ash/services/quick_pair/public/cpp/account_key_filter.cc chromeos/ash/services/quick_pair/public/cpp/account_key_filter.h chromeos/ash/services/quick_pair/public/cpp/battery_notification.h chromeos/ash/services/quick_pair/public/cpp/not_discoverable_advertisement.h chromeos/chromeos_strings.grd chromeos/components/quick_answers/translation_result_loader.cc chromeos/components/quick_answers/translation_result_loader_unittest.cc chromeos/components/quick_answers/utils/spell_check_language.cc chromeos/components/quick_answers/utils/translation_v2_utils.cc chromeos/components/test/data/onc/proxy_config.json chromeos/components/test/data/onc/shill_wifi_proxy.json chromeos/constants/chromeos_features.cc chromeos/dbus/permission_broker/permission_broker_client.h chromeos/printing/printer_config_cache.cc chromeos/printing/printer_config_cache_unittest.cc chromeos/printing/printer_configuration_unittest.cc chromeos/printing/remote_ppd_fetcher.cc chromeos/printing/uri_fuzzer_seed_corpus/uri1.txt chromeos/printing/uri_fuzzer_seed_corpus/uri10.txt chromeos/printing/uri_fuzzer_seed_corpus/uri11.txt chromeos/printing/uri_fuzzer_seed_corpus/uri12.txt chromeos/printing/uri_fuzzer_seed_corpus/uri13.txt chromeos/printing/uri_fuzzer_seed_corpus/uri14.txt chromeos/printing/uri_fuzzer_seed_corpus/uri15.txt chromeos/printing/uri_fuzzer_seed_corpus/uri18.txt chromeos/printing/uri_fuzzer_seed_corpus/uri19.txt chromeos/printing/uri_fuzzer_seed_corpus/uri2.txt chromeos/printing/uri_fuzzer_seed_corpus/uri24.txt chromeos/printing/uri_fuzzer_seed_corpus/uri3.txt chromeos/printing/uri_fuzzer_seed_corpus/uri4.txt chromeos/printing/uri_fuzzer_seed_corpus/uri49.txt chromeos/printing/uri_fuzzer_seed_corpus/uri5.txt components/BUILD.gn components/account_manager_core/account_manager_facade_impl_unittest.cc components/activity_reporter/constants.h components/affiliations/core/browser/affiliation_utils.h components/affiliations/core/browser/affiliation_utils_unittest.cc components/affiliations/core/browser/hash_affiliation_fetcher.cc components/affiliations/core/browser/hash_affiliation_fetcher_unittest.cc components/aggregation_service/aggregation_coordinator_utils.h components/android_autofill/PRESUBMIT.py components/android_system_error_page/error_page_populator.cc components/app_restore/app_restore_info_unittest.cc components/assist_ranker/predictor_config_definitions.cc components/autofill/PRESUBMIT.py components/autofill/content/renderer/PRESUBMIT.py components/autofill/content/renderer/html_based_username_detector_browsertest.cc components/autofill/content/renderer/page_passwords_analyser.cc components/autofill/content/renderer/password_form_conversion_utils.cc components/autofill/content/renderer/password_form_conversion_utils_browsertest.cc components/autofill/core/browser/autofill_and_password_manager_internals/autofill_and_password_manager_internals.ts components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager_unittest.cc components/autofill/core/browser/crowdsourcing/determine_possible_field_types_unittest.cc components/autofill/core/browser/data_manager/addresses/account_name_email_store_unittest.cc components/autofill/core/browser/data_manager/addresses/address_data_cleaner_unittest.cc components/autofill/core/browser/data_manager/addresses/address_data_manager_unittest.cc components/autofill/core/browser/data_manager/payments/payments_data_manager_unittest.cc components/autofill/core/browser/data_model/valuables/loyalty_card_unittest.cc components/autofill/core/browser/form_import/form_data_importer_unittest.cc components/autofill/core/browser/form_qualifiers_unittest.cc components/autofill/core/browser/form_structure_unittest.cc components/autofill/core/browser/foundations/browser_autofill_manager_unittest.cc components/autofill/core/browser/foundations/test_autofill_client.h components/autofill/core/browser/integrators/address_on_typing/address_on_typing_manager_unittest.cc components/autofill/core/browser/metrics/autofill_metrics_test_base.cc components/autofill/core/browser/metrics/autofill_metrics_unittest.cc components/autofill/core/browser/metrics/form_interactions_ukm_logger.cc components/autofill/core/browser/metrics/form_interactions_ukm_logger_unittest.cc components/autofill/core/browser/metrics/prediction_quality_metrics_unittest.cc components/autofill/core/browser/metrics/quality_metrics_unittest.cc components/autofill/core/browser/ml_model/field_classification_model_handler.cc components/autofill/core/browser/payments/amount_extraction_manager_unittest.cc components/autofill/core/browser/payments/autofill_offer_manager_unittest.cc components/autofill/core/browser/payments/constants.h components/autofill/core/browser/payments/credit_card_access_manager_test_base.cc components/autofill/core/browser/payments/credit_card_access_manager_test_base.h components/autofill/core/browser/payments/credit_card_fido_authenticator.cc components/autofill/core/browser/payments/credit_card_fido_authenticator_unittest.cc components/autofill/core/browser/payments/credit_card_otp_authenticator_unittest.cc components/autofill/core/browser/payments/credit_card_risk_based_authenticator_unittest.cc components/autofill/core/browser/payments/credit_card_save_manager_unittest.cc components/autofill/core/browser/payments/full_card_request_unittest.cc components/autofill/core/browser/payments/multiple_request_payments_network_interface_base.cc components/autofill/core/browser/payments/payments_access_token_fetcher_unittest.cc components/autofill/core/browser/payments/payments_network_interface_base.cc components/autofill/core/browser/payments/payments_network_interface_test_base.cc components/autofill/core/browser/payments/payments_network_interface_unittest.cc components/autofill/core/browser/payments/payments_requests/unmask_card_request_unittest.cc components/autofill/core/browser/payments/payments_service_url.cc components/autofill/core/browser/payments/payments_service_url_unittest.cc components/autofill/core/browser/permissions/autofill_ai/autofill_ai_permission_utils_unittest.cc components/autofill/core/browser/strike_databases/autofill_ai/autofill_ai_save_strike_database_by_host_unittest.cc components/autofill/core/browser/suggestions/addresses/address_suggestion_generator_unittest.cc components/autofill/core/browser/test_utils/autofill_test_utils.cc components/autofill/core/browser/test_utils/test_profiles.cc components/autofill/core/browser/ui/autofill_external_delegate_unittest.cc components/autofill/core/browser/ui/autofill_image_fetcher.cc components/autofill/core/browser/ui/payments/bnpl_tos_controller_impl.cc components/autofill/core/browser/ui/payments/bnpl_tos_controller_impl_unittest.cc components/autofill/core/browser/webdata/addresses/autofill_profile_sync_bridge.h components/autofill/core/browser/webdata/autofill_ai/entity_sync_util.cc components/autofill/core/browser/webdata/autofill_ai/entity_sync_util_unittest.cc components/autofill/core/browser/webdata/payments/autofill_wallet_sync_bridge.h components/autofill/core/browser/webdata/payments/autofill_wallet_sync_bridge_unittest.cc components/autofill/core/browser/webdata/payments/autofill_wallet_usage_data_sync_bridge_unittest.cc components/autofill/core/browser/webdata/payments/payments_autofill_table.h components/autofill/core/browser/webdata/payments/payments_sync_bridge_util_unittest.cc components/autofill/core/browser/webdata/valuables/valuables_table_unittest.cc components/autofill/core/common/autofill_features.cc components/autofill/core/common/form_data_fuzzed_producer.h components/autofill_payments_strings.grdp components/autofill_strings.grdp components/background_task_scheduler/task_ids.h components/blocked_content/safe_browsing_triggered_popup_blocker.h components/bookmark_bar_strings.grdp components/bookmarks/browser/bookmark_codec_unittest.cc components/bookmarks/browser/bookmark_model.h components/bookmarks/browser/bookmark_model_unittest.cc components/bookmarks/browser/bookmark_node_data_unittest.cc components/bookmarks/browser/bookmark_utils_unittest.cc components/bookmarks/browser/bookmark_uuids.cc components/bookmarks/browser/titled_url_index.cc components/bookmarks/browser/titled_url_index_unittest.cc components/bookmarks/managed/managed_bookmarks_policy_handler_unittest.cc components/bookmarks/managed/managed_bookmarks_tracker_unittest.cc components/breadcrumbs/core/breadcrumb_manager_tab_helper.cc components/breadcrumbs/core/breadcrumb_manager_tab_helper.h components/breadcrumbs/core/generate_not_user_triggered_actions_test_data.xml components/browser_sync/PRESUBMIT.py components/browser_sync/sync_internals_message_handler_unittest.cc components/browser_ui/strings/android/browser_ui_strings.grd components/browser_ui/strings/android/site_settings.grdp components/browsing_data/content/browsing_data_helper_unittest.cc components/browsing_data/content/cookie_helper_unittest.cc components/browsing_data/content/local_storage_helper_browsertest.cc components/browsing_data/core/browsing_data_utils_unittest.cc components/browsing_data/core/counters/history_counter.cc components/browsing_data/core/history_notice_utils.cc components/browsing_data_strings.grdp components/browsing_topics/annotator_fuzzer.cc components/browsing_topics/annotator_impl_unittest.cc components/captive_portal/content/captive_portal_service.h components/captive_portal/content/captive_portal_tab_helper.h components/captive_portal/core/captive_portal_detector.cc components/captive_portal/core/features.h components/cdm/common/playready_cdm_common.h components/certificate_transparency/chrome_require_ct_delegate.h components/certificate_transparency/chrome_require_ct_delegate_unittest.cc components/certificate_transparency/data/log_list.json components/certificate_transparency/tools/testdata/input.json components/cloud_devices/common/cloud_device_description.h components/cloud_devices/common/printer_description.h components/collaboration/internal/android/messaging/messaging_backend_service_bridge_unittest.cc components/collaboration/internal/collaboration_service_impl_unittest.cc components/collaboration/internal/messaging/messaging_backend_service_impl_unittest.cc components/collaboration_strings.grdp components/commerce/core/account_checker.cc components/commerce/core/account_checker_unittest.cc components/commerce/core/commerce_constants.h components/commerce/core/commerce_feature_list.h components/commerce/core/compare/cluster_server_proxy.cc components/commerce/core/compare/cluster_server_proxy_unittest.cc components/commerce/core/compare/product_specifications_server_proxy.cc components/commerce/core/heuristics/resources/cart_domain_cart_url_regex.json components/commerce/core/subscriptions/subscriptions_manager_unittest.cc components/commerce/core/subscriptions/subscriptions_server_proxy.cc components/commerce/core/subscriptions/subscriptions_server_proxy_unittest.cc components/commerce_strings.grdp components/component_updater/component_updater_url_constants.cc components/components_google_chrome_strings.grd components/content_relationship_verification/digital_asset_links_handler.cc components/content_relationship_verification/digital_asset_links_handler.h components/content_settings/browser/page_specific_content_settings_unittest.cc components/content_settings/core/browser/content_settings_provider_unittest.cc components/content_settings/core/browser/content_settings_uma_util.cc components/content_settings/core/common/content_settings_pattern.cc components/content_settings/core/common/content_settings_pattern.h components/content_settings/core/common/content_settings_pattern_parser_unittest.cc components/content_settings/core/common/content_settings_pattern_unittest.cc components/content_settings/renderer/content_settings_agent_impl.cc components/contextual_search/input_state_model_unittest.cc components/contextual_search/internal/composebox_query_controller.cc components/contextual_search/internal/composebox_query_controller_unittest.cc components/contextual_tasks/internal/contextual_tasks_service_impl_unittest.cc components/contextual_tasks/internal/fallback_title_context_decorator_unittest.cc components/contextual_tasks/internal/favicon_context_decorator_unittest.cc components/contextual_tasks/internal/history_context_decorator_unittest.cc components/contextual_tasks/public/account_utils_unittest.cc components/contextual_tasks/public/contextual_task_context_unittest.cc components/contextual_tasks/public/contextual_task_unittest.cc components/contextual_tasks/public/features.cc components/contextual_tasks/public/features_unittest.cc components/continuous_search/browser/search_result_extractor_client_unittest.cc components/country_codes/country_codes.cc components/crash/core/app/crash_export_thunks.h components/crash/core/app/crash_reporter_client.cc components/crash/core/browser/resources/crashes.ts components/crash/core/common/crash_key.h components/cronet/PRESUBMIT.py components/cronet/android/BUILD.gn components/cronet/android/cronet_bidirectional_stream_adapter.h components/cronet/android/test/javaperftests/AndroidManifest.xml components/cronet/android/test/javatests/AndroidManifest.xml components/cronet/gn2bp/gen_android_bp.py components/cronet/gn2bp/gn_utils.py components/cronet/gn2bp/run_gn2bp.py components/cronet/license/license_utils.py components/cronet/tools/cr_cronet.py components/cronet/tools/utils.py components/custom_handlers/protocol_handler_registry_unittest.cc components/data_sharing/internal/android/data_sharing_service_android.cc components/data_sharing/internal/data_sharing_service_impl_unittest.cc components/data_sharing/internal/group_data_proto_utils_unittest.cc components/data_sharing/internal/preview_server_proxy.cc components/data_sharing/internal/preview_server_proxy_unittest.cc components/data_sharing/public/data_sharing_network_utils.h components/data_sharing/public/features.cc components/data_sharing/public/group_data.h components/desks_storage/core/admin_template_service_unittest.cc components/desks_storage/core/desk_model_wrapper_unittest.cc components/desks_storage/core/desk_sync_bridge_unittest.cc components/desks_storage/core/desk_template_conversion.cc components/desks_storage/core/desk_template_conversion_unittest.cc components/desks_storage/core/desk_template_semantics_unittest.cc components/desks_storage/core/desk_test_util.h components/desks_storage/core/desk_test_util_unittest.cc components/desks_storage/core/local_desk_data_manager_unittest.cc components/device_signals/core/browser/android/android_os_signals_collector_unittest.cc components/device_signals/core/browser/browser_utils.cc components/device_signals/core/browser/desktop/desktop_os_signals_collector_unittest.cc components/device_signals/core/common/win/platform_utils_win.cc components/device_signals/core/common/win/win_types.h components/device_signals/core/system_signals/win/wsc_client.h components/dom_distiller/content/browser/distiller_page_web_contents_browsertest.cc components/dom_distiller/content/browser/distiller_referrer_throttle_unittest.cc components/dom_distiller/content/browser/dom_distiller_viewer_source.cc components/dom_distiller/core/html/dom_distiller_viewer.html components/dom_distiller/core/html/preview.html components/dom_distiller/core/javascript/content_processing.js components/dom_distiller/core/url_utils_unittest.cc components/dom_distiller/core/viewer.cc components/domain_reliability/bake_in_configs.py components/domain_reliability/google_configs.cc components/domain_reliability/google_configs_unittest.cc components/domain_reliability/monitor_unittest.cc components/drive/drive_api_util.h components/drive/service/drive_api_service.cc components/drive/service/drive_service_interface.h components/drive/service/fake_drive_service.cc components/embedder_support/android/BUILD.gn components/endpoint_fetcher/endpoint_fetcher_unittest.cc components/enterprise/browser/reporting/saas_usage/saas_usage_aggregation_utils_unittest.cc components/enterprise/browser/reporting/saas_usage/saas_usage_report_factory_unittest.cc components/enterprise/browser/reporting/saas_usage/saas_usage_reporting_controller_unittest.cc components/enterprise/connectors/core/cloud_content_scanning/resumable_uploader_base_unittest.cc components/enterprise/connectors/core/content_area_user_provider.cc components/enterprise/connectors/core/content_area_user_provider.h components/enterprise/connectors/core/reporting_utils_unittest.cc components/enterprise/connectors/core/service_provider_config.cc components/enterprise/connectors/core/service_provider_config_unittest.cc components/enterprise/data_controls/core/browser/conditions/attributes_condition_unittest.cc components/enterprise/data_controls/core/browser/data_controls_policy_handler_unittest.cc components/enterprise/data_controls/core/browser/rule_unittest.cc components/enterprise/data_controls/core/browser/rules_service_base_unittest.cc components/enterprise/obfuscation/core/utils.h components/enterprise_strings.grdp components/error_page/common/localized_error.cc components/error_page_strings.grdp components/exo/keyboard_unittest.cc components/exo/ui_lock_controller.h components/eye_dropper/eye_dropper_view.cc components/facilitated_payments/content/browser/security_checker.h components/facilitated_payments/core/validation/payment_link_validator_unittest.cc components/favicon/content/content_favicon_driver_unittest.cc components/favicon/core/fallback_url_util_unittest.cc components/favicon/core/favicon_backend.cc components/favicon/core/favicon_backend_unittest.cc components/favicon/core/favicon_database.cc components/favicon/core/favicon_database.h components/favicon/core/favicon_database_unittest.cc components/favicon/core/favicon_driver_observer.h components/favicon/core/favicon_handler_unittest.cc components/favicon/core/favicon_service.h components/favicon/core/favicon_service_impl_unittest.cc components/favicon/core/large_icon_service_impl.cc components/favicon/core/large_icon_service_impl_unittest.cc components/favicon_base/favicon_url_parser.h components/favicon_base/favicon_url_parser_unittest.cc components/feed/core/v2/api_test/feed_api_stream_unittest.cc components/feed/core/v2/feed_network_impl.cc components/feed/core/v2/feed_network_impl_unittest.cc components/feed/core/v2/feed_stream.cc components/feed/core/v2/public/public_types_unittest.cc components/feedback/feedback_common.cc components/feedback/feedback_common_unittest.cc components/feedback/feedback_report.h components/feedback/feedback_uploader.cc components/feedback/feedback_uploader_dispatch_unittest.cc components/feedback/redaction_tool/redaction_tool_unittest.cc components/feedback/redaction_tool/url_parse.h components/fullscreen_control_strings.grdp components/gcm_driver/gcm_account_mapper.cc components/gcm_driver/gcm_account_mapper_unittest.cc components/gcm_driver/gcm_client_impl.cc components/gcm_driver/gcm_client_impl_unittest.cc components/gcm_driver/gcm_driver.cc components/global_media_controls/public/media_session_notification_item_unittest.cc components/global_media_controls/public/views/chapter_item_view_unittest.cc components/global_media_controls/public/views/media_item_ui_detailed_view_unittest.cc components/google/core/common/google_util.cc components/google/core/common/google_util_unittest.cc components/guest_view/browser/guest_view_base.h components/gwp_asan/client/extreme_lightweight_detector_malloc_shims.cc components/gwp_asan/client/extreme_lightweight_detector_quarantine.h components/history/core/browser/BUILD.gn components/history/core/browser/browsing_history_service.cc components/history/core/browser/expire_history_backend_unittest.cc components/history/core/browser/features.cc components/history/core/browser/history_backend.cc components/history/core/browser/history_backend.h components/history/core/browser/history_backend_notifier.h components/history/core/browser/history_backend_unittest.cc components/history/core/browser/history_querying_unittest.cc components/history/core/browser/history_service.cc components/history/core/browser/history_service.h components/history/core/browser/history_service_unittest.cc components/history/core/browser/history_types_unittest.cc components/history/core/browser/sync/delete_directive_handler_unittest.cc components/history/core/browser/sync/history_data_type_controller.cc components/history/core/browser/top_sites_database.cc components/history/core/browser/top_sites_database_unittest.cc components/history/core/browser/top_sites_impl.cc components/history/core/browser/top_sites_impl_unittest.cc components/history/core/browser/url_database_unittest.cc components/history/core/browser/url_utils_unittest.cc components/history/core/browser/visit_database.cc components/history/core/browser/visit_database_unittest.cc components/history/core/browser/visit_tracker_unittest.cc components/history/core/browser/visited_link_database_unittest.cc components/history/core/browser/web_history_service.cc components/history/core/browser/web_history_service_unittest.cc components/history/core/test/fake_web_history_service.cc components/history/metrics/domain_diversity_reporter_unittest.cc components/history_clusters/core/cluster_interaction_state_processor_unittest.cc components/history_clusters/core/cluster_similarity_heuristics_processor_unittest.cc components/history_clusters/core/clusterer_unittest.cc components/history_clusters/core/content_visibility_cluster_finalizer_unittest.cc components/history_clusters/core/file_clustering_backend_unittest.cc components/history_clusters/core/history_clusters_service_test_api.cc components/history_clusters/core/history_clusters_service_unittest.cc components/history_clusters/core/history_clusters_util_unittest.cc components/history_clusters/core/on_device_clustering_backend_unittest.cc components/history_clusters/core/ranking_cluster_finalizer_unittest.cc components/history_clusters/core/similar_visit_deduper_cluster_finalizer_unittest.cc components/history_clusters/core/single_visit_cluster_finalizer_unittest.cc components/history_clusters_strings.grdp components/history_strings.grdp components/infobars/content/content_infobar_manager.cc components/input/android/scoped_input_receiver.h components/input/features.h components/input/render_input_router.h components/input/render_widget_host_input_event_router.cc components/input/render_widget_host_input_event_router.h components/input/render_widget_host_view_input.h components/input/touch_action_filter.h components/invalidation/impl/per_user_topic_subscription_manager.cc components/invalidation/impl/per_user_topic_subscription_manager_unittest.cc components/javascript_dialogs/tab_modal_dialog_manager.cc components/javascript_dialogs_strings.grdp components/keyed_service/core/keyed_service_base_factory.cc components/keyed_service/core/simple_keyed_service_factory.h components/legion/attestation/handler_impl_unittest.cc components/legion/attestation/server_verification_key_unittest.cc components/legion/phosphor/config_http.cc components/legion/websocket_client.cc components/lens/lens_features.cc components/lens/lens_url_utils_unittest.cc components/leveldb_proto/internal/leveldb_proto_feature_list.cc components/live_caption/greedy_text_stabilizer.h components/live_caption/translation_dispatcher.cc components/live_caption/translation_dispatcher_unittest.cc components/login_dialog_strings.grdp components/lookalikes/core/lookalike_url_util.cc components/lookalikes/core/lookalike_url_util.h components/lookalikes/core/lookalike_url_util_unittest.cc components/management_strings.grdp components/manta/anchovy/anchovy_proto_helper.cc components/manta/base_provider.cc components/manta/base_provider_test_helper.cc components/manta/mahi_provider.cc components/manta/manta_service_callbacks.cc components/manta/orca_provider.cc components/manta/orca_provider_unittest.cc components/manta/scanner_provider.cc components/manta/scanner_provider.h components/manta/scanner_provider_unittest.cc components/manta/walrus_provider.cc components/media_router/browser/android/flinging_controller_bridge.cc components/media_router/browser/media_router_dialog_controller_unittest.cc components/media_router/browser/media_router_metrics_unittest.cc components/media_router/browser/media_sinks_observer.h components/media_router/browser/presentation/local_presentation_manager.h components/media_router/browser/presentation/presentation_media_sinks_observer_unittest.cc components/media_router/common/media_source.h components/media_router/common/media_source_unittest.cc components/media_router/common/providers/cast/cast_media_source_unittest.cc components/media_router/common/providers/cast/certificate/net_trust_store.cc components/media_router/common/providers/cast/channel/BUILD.gn components/media_router/common/providers/cast/channel/enum_table.h components/metrics/debug/app.ts components/metrics/dwa/dwa_entry_builder_unittest.cc components/metrics/metrics_state_manager.h components/metrics/metrics_state_manager_unittest.cc components/metrics/net/net_metrics_log_uploader.cc components/metrics/private_metrics/data_upload_config_downloader.cc components/metrics/private_metrics/data_upload_config_downloader_unittest.cc components/metrics/reporting_service.cc components/metrics/server_urls.cc components/metrics/server_urls.grd components/mirroring/service/mirror_settings.h components/mirroring/service/remoting_sender.h components/mirroring/service/rtp_stream.h components/net_log/resources/net_export.html components/network_time/network_time_test_utils.cc components/network_time/network_time_tracker.cc components/no_state_prefetch/browser/no_state_prefetch_manager.cc components/no_state_prefetch/browser/no_state_prefetch_utils_unittest.cc components/ntp_tiles/most_visited_sites_unittest.cc components/ntp_tiles/popular_sites_impl.cc components/ntp_tiles/popular_sites_impl_unittest.cc components/ntp_tiles/resources/default_popular_sites.json components/ntp_tiles/resources/default_popular_sites_with_popular_apps.json components/ntp_tiles/resources/default_popular_sites_without_popular_apps.json components/offline_pages/core/background/cleanup_task_unittest.cc components/offline_pages/core/background/pick_request_task_unittest.cc components/offline_pages/core/background/reconcile_task_unittest.cc components/offline_pages/core/model/get_pages_task_unittest.cc components/omnibox/PRESUBMIT.py components/omnibox/browser/aim_eligibility_service.cc components/omnibox/browser/aim_eligibility_service_unittest.cc components/omnibox/browser/autocomplete_controller.cc components/omnibox/browser/autocomplete_controller.h components/omnibox/browser/autocomplete_controller_metrics_unittest.cc components/omnibox/browser/autocomplete_controller_unittest.cc components/omnibox/browser/autocomplete_input.cc components/omnibox/browser/autocomplete_match.cc components/omnibox/browser/autocomplete_match.h components/omnibox/browser/autocomplete_match_test_util.cc components/omnibox/browser/autocomplete_match_type_unittest.cc components/omnibox/browser/autocomplete_match_unittest.cc components/omnibox/browser/autocomplete_result.cc components/omnibox/browser/autocomplete_result_unittest.cc components/omnibox/browser/autocomplete_scoring_model_handler_unittest.cc components/omnibox/browser/autocomplete_scoring_model_service.cc components/omnibox/browser/base_search_provider_unittest.cc components/omnibox/browser/builtin_provider_unittest.cc components/omnibox/browser/document_provider.cc components/omnibox/browser/document_provider_unittest.cc components/omnibox/browser/document_suggestions_service.cc components/omnibox/browser/document_suggestions_service_unittest.cc components/omnibox/browser/enterprise_search_aggregator_provider.cc components/omnibox/browser/enterprise_search_aggregator_provider_unittest.cc components/omnibox/browser/enterprise_search_aggregator_suggestions_service.cc components/omnibox/browser/enterprise_search_aggregator_suggestions_service_unittest.cc components/omnibox/browser/fake_autocomplete_provider_client.cc components/omnibox/browser/featured_search_provider_unittest.cc components/omnibox/browser/history_match.h components/omnibox/browser/history_provider.h components/omnibox/browser/history_quick_provider.cc components/omnibox/browser/history_quick_provider_unittest.cc components/omnibox/browser/history_scoring_signals_annotator_unittest.cc components/omnibox/browser/history_url_provider.cc components/omnibox/browser/history_url_provider_unittest.cc components/omnibox/browser/in_memory_url_index_types.h components/omnibox/browser/in_memory_url_index_types_unittest.cc components/omnibox/browser/in_memory_url_index_unittest.cc components/omnibox/browser/keyword_provider_unittest.cc components/omnibox/browser/location_bar_model_impl_unittest.cc components/omnibox/browser/most_visited_sites_provider.cc components/omnibox/browser/most_visited_sites_provider_unittest.cc components/omnibox/browser/omnibox_field_trial.cc components/omnibox/browser/omnibox_text_util_unittest.cc components/omnibox/browser/on_device_head_provider_unittest.cc components/omnibox/browser/on_device_tail_model_service_unittest.cc components/omnibox/browser/open_tab_provider_unittest.cc components/omnibox/browser/recently_closed_tabs_provider.cc components/omnibox/browser/remote_suggestions_service.h components/omnibox/browser/remote_suggestions_service_unittest.cc components/omnibox/browser/scored_history_match.cc components/omnibox/browser/scored_history_match_unittest.cc components/omnibox/browser/search_provider.cc components/omnibox/browser/search_suggestion_parser.cc components/omnibox/browser/search_suggestion_parser_unittest.cc components/omnibox/browser/shortcuts_backend.cc components/omnibox/browser/shortcuts_backend_unittest.cc components/omnibox/browser/shortcuts_database_unittest.cc components/omnibox/browser/shortcuts_provider_unittest.cc components/omnibox/browser/suggestion_group_unittest.cc components/omnibox/browser/tab_group_provider_unittest.cc components/omnibox/browser/titled_url_match_utils.cc components/omnibox/browser/titled_url_match_utils_unittest.cc components/omnibox/browser/zero_suggest_cache_service_unittest.cc components/omnibox/browser/zero_suggest_provider_unittest.cc components/omnibox/browser/zero_suggest_verbatim_match_provider_unittest.cc components/omnibox/common/omnibox_feature_configs.h components/omnibox/resources/omnibox_pedal_synonyms.grd components/omnibox_pedal_ui_strings.grdp components/omnibox_strings.grdp components/optimization_guide/content/browser/page_context_eligibility_unittest.cc components/optimization_guide/core/delivery/model_provider_registry.cc components/optimization_guide/core/delivery/prediction_manager_unittest.cc components/optimization_guide/core/filters/hints_component_util_unittest.cc components/optimization_guide/core/filters/optimization_filter_unittest.cc components/optimization_guide/core/hints/hints_manager_unittest.cc components/optimization_guide/core/hints/optimization_metadata_unittest.cc components/optimization_guide/core/inference/model_handler_unittest.cc components/optimization_guide/core/inference/tflite_model_executor_unittest.cc components/optimization_guide/core/model_execution/json_response_parser_unittest.cc components/optimization_guide/core/model_execution/model_execution_fetcher.cc components/optimization_guide/core/model_execution/model_execution_fetcher_impl.cc components/optimization_guide/core/model_execution/model_execution_fetcher_impl_unittest.cc components/optimization_guide/core/model_execution/model_execution_manager_unittest.cc components/optimization_guide/core/model_execution/on_device_model_adaptation_loader.cc components/optimization_guide/core/model_quality/model_quality_logs_uploader_service.cc components/optimization_guide/core/optimization_guide_constants.cc components/optimization_guide/core/optimization_guide_proto_util.cc components/optimization_guide/core/optimization_guide_util.h components/optimization_guide/core/optimization_guide_util_unittest.cc components/optimization_guide/optimization_guide_internals/resources/optimization_guide_internals.ts components/optimization_guide/tools/gen_on_device_proto_descriptors.py components/origin_trials/browser/leveldb_persistence_provider_unittest.cc components/os_crypt/sync/libsecret_util_linux.cc components/page_content_annotations/core/page_content_annotations_service_unittest.cc components/page_image_service/image_service_impl_unittest.cc components/page_info/core/about_this_site_service.cc components/page_info/core/about_this_site_service_unittest.cc components/page_info/core/merchant_trust_service.cc components/page_info/core/merchant_trust_service_unittest.cc components/page_info/page_info.cc components/page_info_strings.grdp components/page_load_metrics/browser/metrics_web_contents_observer.cc components/page_load_metrics/browser/metrics_web_contents_observer_unittest.cc components/page_load_metrics/browser/observers/ad_metrics/ads_page_load_metrics_observer.cc components/page_load_metrics/browser/observers/ad_metrics/ads_page_load_metrics_observer_unittest.cc components/page_load_metrics/browser/observers/back_forward_cache_page_load_metrics_observer_unittest.cc components/page_load_metrics/browser/observers/core/uma_page_load_metrics_observer_unittest.cc components/page_load_metrics/browser/observers/page_load_metrics_observer_content_test_harness.cc components/page_load_metrics/browser/observers/service_worker_page_load_metrics_observer.cc components/page_load_metrics/browser/observers/use_counter_page_load_metrics_observer.cc components/page_load_metrics/browser/observers/use_counter_page_load_metrics_observer_unittest.cc components/page_load_metrics/browser/observers/zstd_page_load_metrics_observer_unittest.cc components/page_load_metrics/browser/page_load_metrics_observer_interface.h components/page_load_metrics/browser/page_load_metrics_util.cc components/page_load_metrics/browser/page_load_metrics_util.h components/page_load_metrics/browser/page_load_tracker.h components/page_load_metrics/google/browser/google_url_util.cc components/page_load_metrics/google/browser/google_url_util.h components/page_load_metrics/google/browser/google_url_util_unittest.cc components/page_load_metrics/renderer/fake_page_timing_sender.h components/paint_preview/browser/file_manager_unittest.cc components/paint_preview/browser/paint_preview_base_service_unittest.cc components/paint_preview/browser/paint_preview_client_unittest.cc components/paint_preview/common/paint_preview_tracker_unittest.cc components/paint_preview/common/proto_validator_unittest.cc components/paint_preview/common/subset_font.cc components/paint_preview/player/player_compositor_delegate_unittest.cc components/paint_preview/renderer/paint_preview_recorder_browsertest.cc components/paint_preview/renderer/paint_preview_recorder_utils_unittest.cc components/password_manager/content/browser/content_password_manager_driver_unittest.cc components/password_manager/core/browser/credential_manager_impl_unittest.cc components/password_manager/core/browser/credential_manager_logger_unittest.cc components/password_manager/core/browser/credential_manager_pending_request_task_unittest.cc components/password_manager/core/browser/credentials_cleaner_unittest.cc components/password_manager/core/browser/export/password_manager_exporter_unittest.cc components/password_manager/core/browser/form_fetcher_impl_unittest.cc components/password_manager/core/browser/form_parsing/form_data_parser.cc components/password_manager/core/browser/form_parsing/form_data_parser_unittest.cc components/password_manager/core/browser/form_parsing/fuzzer/form_predictions_producer.h components/password_manager/core/browser/generation/password_requirements_spec_fetcher_impl.cc components/password_manager/core/browser/generation/password_requirements_spec_fetcher_unittest.cc components/password_manager/core/browser/hash_password_manager.cc components/password_manager/core/browser/hash_password_manager_unittest.cc components/password_manager/core/browser/import/csv_password.h components/password_manager/core/browser/import/csv_password_iterator.h components/password_manager/core/browser/import/csv_password_sequence.h components/password_manager/core/browser/import/csv_password_sequence_unittest.cc components/password_manager/core/browser/import/password_importer_unittest.cc components/password_manager/core/browser/leak_detection/bulk_leak_check_impl_unittest.cc components/password_manager/core/browser/leak_detection/leak_detection_check_factory_impl_unittest.cc components/password_manager/core/browser/leak_detection/leak_detection_check_impl_unittest.cc components/password_manager/core/browser/leak_detection/leak_detection_request.h components/password_manager/core/browser/leak_detection_delegate_helper_unittest.cc components/password_manager/core/browser/leak_detection_dialog_utils.cc components/password_manager/core/browser/old_google_credentials_cleaner.cc components/password_manager/core/browser/old_google_credentials_cleaner.h components/password_manager/core/browser/old_google_credentials_cleaner_unittest.cc components/password_manager/core/browser/os_crypt_async_migrator.h components/password_manager/core/browser/password_autofill_manager_unittest.cc components/password_manager/core/browser/password_feature_manager_impl_unittest.cc components/password_manager/core/browser/password_form_filling_unittest.cc components/password_manager/core/browser/password_form_manager_unittest.cc components/password_manager/core/browser/password_generation_frame_helper.cc components/password_manager/core/browser/password_generation_frame_helper_unittest.cc components/password_manager/core/browser/password_generation_manager_unittest.cc components/password_manager/core/browser/password_hash_data.cc components/password_manager/core/browser/password_hash_data.h components/password_manager/core/browser/password_manager.cc components/password_manager/core/browser/password_manager.h components/password_manager/core/browser/password_manager_client_helper_unittest.cc components/password_manager/core/browser/password_manager_constants.cc components/password_manager/core/browser/password_manager_metrics_recorder.h components/password_manager/core/browser/password_manager_metrics_util_unittest.cc components/password_manager/core/browser/password_manager_test_utils.cc components/password_manager/core/browser/password_manager_unittest.cc components/password_manager/core/browser/password_manager_util.h components/password_manager/core/browser/password_manager_util_unittest.cc components/password_manager/core/browser/password_manual_fallback_flow_unittest.cc components/password_manager/core/browser/password_reuse_detector_impl.cc components/password_manager/core/browser/password_reuse_detector_impl_unittest.cc components/password_manager/core/browser/password_reuse_manager_impl_unittest.cc components/password_manager/core/browser/password_save_manager_impl_unittest.cc components/password_manager/core/browser/password_store/get_logins_with_affiliations_request_handler_unittest.cc components/password_manager/core/browser/password_store/login_database_unittest.cc components/password_manager/core/browser/password_store/login_database_win.cc components/password_manager/core/browser/password_store/password_notes_table_unittest.cc components/password_manager/core/browser/password_store/password_store_unittest.cc components/password_manager/core/browser/password_store/psl_matching_helper.cc components/password_manager/core/browser/password_store/psl_matching_helper_unittest.cc components/password_manager/core/browser/password_store/statistics_table_unittest.cc components/password_manager/core/browser/password_suggestion_generator_unittest.cc components/password_manager/core/browser/password_sync_util.cc components/password_manager/core/browser/password_ui_utils.cc components/password_manager/core/browser/password_ui_utils_unittest.cc components/password_manager/core/browser/sharing/fake_recipients_fetcher.cc components/password_manager/core/browser/sharing/incoming_password_sharing_invitation_sync_bridge_unittest.cc components/password_manager/core/browser/sharing/password_sharing_recipients_downloader.cc components/password_manager/core/browser/store_metrics_reporter_unittest.cc components/password_manager/core/browser/sync/password_sync_bridge.h components/password_manager/core/browser/sync_credentials_filter_unittest.cc components/password_manager/core/browser/sync_username_test_base.cc components/password_manager/core/browser/ui/credential_ui_entry.cc components/password_manager/core/browser/ui/credential_ui_entry_unittest.cc components/password_manager/core/browser/ui/password_undo_helper_unittest.cc components/password_manager/core/browser/ui/passwords_grouper.cc components/password_manager/core/browser/ui/passwords_grouper.h components/password_manager/core/browser/ui/passwords_grouper_unittest.cc components/password_manager/core/browser/ui/saved_passwords_presenter_unittest.cc components/password_manager/core/browser/undo_password_change_controller_unittest.cc components/password_manager/core/browser/well_known_change_password/well_known_change_password_state.cc components/password_manager/core/browser/well_known_change_password/well_known_change_password_util_unittest.cc components/password_manager/core/common/password_manager_pref_names.h components/password_manager/ios/password_form_helper_unittest.mm components/password_manager/ios/password_suggestion_helper_unittest.mm components/password_manager/ios/shared_password_controller_unittest.mm components/password_manager/ios/test_helpers.cc components/password_manager/services/csv_password/public/mojom/csv_password_parser_traits_unittest.cc components/password_manager_strings.grdp components/payments/content/android/payment_feature_map.h components/payments/content/android_app_communication_unittest.cc components/payments/content/android_payment_app_factory_unittest.cc components/payments/content/payment_app.h components/payments/content/payment_request_spec.h components/payments/content/payment_request_state_unittest.cc components/payments/content/utility/payment_manifest_parser.h components/payments/content/utility/payment_method_manifest_parser_fuzzer.cc components/payments/core/error_strings.cc components/payments/core/error_strings.h components/payments/core/journey_logger_unittest.cc components/payments/core/method_strings.cc components/payments/core/method_strings.h components/payments/core/payment_manifest_downloader_unittest.cc components/payments/core/url_util.h components/payments/core/url_util_unittest.cc components/payments_strings.grdp components/pdf/renderer/pdf_accessibility_tree_browsertest.cc components/performance_manager/decorators/frame_input_state_decorator.cc components/performance_manager/graph/frame_node_impl.cc components/performance_manager/public/graph/frame_node.h components/performance_manager/public/graph/process_node.h components/performance_manager/public/graph/worker_node.h components/permissions/android/permissions_android_strings.grd components/permissions/constants.cc components/permissions/content_setting_permission_context_base_unittest.cc components/permissions/object_permission_context_base_unittest.cc components/permissions/pepc_initiated_permission_request_unittest.cc components/permissions/permission_actions_history_unittest.cc components/permissions/permission_context_base.cc components/permissions/permission_decision_auto_blocker_unittest.cc components/permissions/permission_indicators_tab_data_unittest.cc components/permissions/permission_manager_unittest.cc components/permissions/permission_request_manager.cc components/permissions/permission_request_manager_unittest.cc components/permissions/permission_uma_util.h components/permissions/permission_uma_util_unittest.cc components/permissions/prediction_service/permissions_aiv3_handler_unittest.cc components/permissions/prediction_service/permissions_aiv4_handler_unittest.cc components/permissions/prediction_service/prediction_common.h components/permissions/prediction_service/prediction_model_handler.cc components/permissions/prediction_service/prediction_service_base.h components/permissions/test/mock_permission_request.h components/permissions_strings.grdp components/plus_addresses/core/browser/metrics/plus_address_submission_logger_unittest.cc components/plus_addresses/core/browser/plus_address_http_client_impl.cc components/plus_addresses/core/browser/plus_address_http_client_impl_unittest.cc components/plus_addresses/core/browser/resources/strings/plus_addresses_strings.grd components/policy/PRESUBMIT.py components/policy/core/browser/browser_policy_connector.cc components/policy/core/browser/configuration_policy_pref_store_unittest.cc components/policy/core/browser/signin/user_cloud_signin_restriction_policy_fetcher.cc components/policy/core/browser/signin/user_cloud_signin_restriction_policy_fetcher_unittest.cc components/policy/core/browser/url_list/url_allowlist_policy_handler.cc components/policy/core/browser/url_list/url_allowlist_policy_handler.h components/policy/core/browser/url_list/url_blocklist_manager.h components/policy/core/browser/url_list/url_blocklist_manager_unittest.cc components/policy/core/browser/url_list/url_blocklist_policy_handler.cc components/policy/core/browser/url_list/url_blocklist_policy_handler.h components/policy/core/browser/url_list/url_scheme_list_policy_handler.cc components/policy/core/browser/url_list/url_scheme_list_policy_handler.h components/policy/core/common/cloud/cloud_policy_client_unittest.cc components/policy/core/common/cloud/profile_cloud_policy_store_unittest.cc components/policy/core/common/cloud/test/policy_builder.cc components/policy/core/common/cloud/user_cloud_policy_store_unittest.cc components/policy/core/common/cloud/user_info_fetcher.cc components/policy/core/common/cloud/user_info_fetcher_unittest.cc components/policy/core/common/default_chrome_apps_migrator.cc components/policy/core/common/default_chrome_apps_migrator_unittest.cc components/policy/core/common/policy_loader_common.cc components/policy/core/common/policy_loader_common_unittest.cc components/policy/core/common/policy_logger.cc components/policy/core/common/policy_map_unittest.cc components/policy/core/common/policy_service_impl_unittest.cc components/policy/core/common/registry_dict_unittest.cc components/policy/core/common/scoped_critical_policy_section.cc components/policy/core/common/values_util.h components/policy/resources/policy_templates.py components/policy/resources/webui/policy_base.ts components/policy/test/data/pref_mapping/AllHttpAuthSchemesAllowedForOrigins.json components/policy/test/data/pref_mapping/AllowedDomainsForApps.json components/policy/test/data/pref_mapping/AllowedDomainsForAppsList.json components/policy/test/data/pref_mapping/AlwaysOnVpnPreConnectUrlAllowlist.json components/policy/test/data/pref_mapping/AppLaunchAutomation.json components/policy/test/data/pref_mapping/AudioCaptureAllowedUrls.json components/policy/test/data/pref_mapping/AutoOpenAllowedForURLs.json components/policy/test/data/pref_mapping/AutomaticFullscreenAllowedForUrls.json components/policy/test/data/pref_mapping/AutomaticFullscreenBlockedForUrls.json components/policy/test/data/pref_mapping/BrowserSwitcherUrlGreylist.json components/policy/test/data/pref_mapping/BrowserSwitcherUrlList.json components/policy/test/data/pref_mapping/ClipboardAllowedForUrls.json components/policy/test/data/pref_mapping/ClipboardBlockedForUrls.json components/policy/test/data/pref_mapping/CookiesAllowedForUrls.json components/policy/test/data/pref_mapping/CookiesBlockedForUrls.json components/policy/test/data/pref_mapping/CookiesSessionOnlyForUrls.json components/policy/test/data/pref_mapping/DataControlsRules.json components/policy/test/data/pref_mapping/DataLeakPreventionRulesList.json components/policy/test/data/pref_mapping/DefaultHandlersForFileExtensions.json components/policy/test/data/pref_mapping/DeskAPIThirdPartyAllowlist.json components/policy/test/data/pref_mapping/DeviceAttributesAllowedForOrigins.json components/policy/test/data/pref_mapping/DeviceAttributesBlockedForOrigins.json components/policy/test/data/pref_mapping/DeviceAuthenticationURLAllowlist.json components/policy/test/data/pref_mapping/DeviceAuthenticationURLBlocklist.json components/policy/test/data/pref_mapping/DeviceLoginScreenExtensions.json components/policy/test/data/pref_mapping/DeviceLoginScreenWebHidAllowDevicesForUrls.json components/policy/test/data/pref_mapping/DeviceLoginScreenWebUsbAllowDevicesForUrls.json components/policy/test/data/pref_mapping/DisabledSchemes.json components/policy/test/data/pref_mapping/DnsOverHttpsExcludedDomains.json components/policy/test/data/pref_mapping/DnsOverHttpsIncludedDomains.json components/policy/test/data/pref_mapping/ExtensionInstallForcelist.json components/policy/test/data/pref_mapping/ExtensionOAuthRedirectUrls.json components/policy/test/data/pref_mapping/ExtensionSettings.json components/policy/test/data/pref_mapping/FloatingSsoDomainBlocklist.json components/policy/test/data/pref_mapping/FloatingSsoDomainBlocklistExceptions.json components/policy/test/data/pref_mapping/GeolocationBlockedForUrls.json components/policy/test/data/pref_mapping/HomepageLocation.json components/policy/test/data/pref_mapping/IdleDetectionAllowedForUrls.json components/policy/test/data/pref_mapping/IdleDetectionBlockedForUrls.json components/policy/test/data/pref_mapping/ImagesAllowedForUrls.json components/policy/test/data/pref_mapping/ImagesBlockedForUrls.json components/policy/test/data/pref_mapping/InsecureContentAllowedForUrls.json components/policy/test/data/pref_mapping/InsecureContentBlockedForUrls.json components/policy/test/data/pref_mapping/JavaScriptAllowedForUrls.json components/policy/test/data/pref_mapping/JavaScriptBlockedForUrls.json components/policy/test/data/pref_mapping/JavaScriptJitAllowedForSites.json components/policy/test/data/pref_mapping/JavaScriptJitBlockedForSites.json components/policy/test/data/pref_mapping/JavaScriptOptimizerAllowedForSites.json components/policy/test/data/pref_mapping/JavaScriptOptimizerBlockedForSites.json components/policy/test/data/pref_mapping/LegacyCookieScopeEnabledForDomainList.json components/policy/test/data/pref_mapping/LocalFontsAllowedForUrls.json components/policy/test/data/pref_mapping/LocalFontsBlockedForUrls.json components/policy/test/data/pref_mapping/LocalNetworkAccessAllowedForUrls.json components/policy/test/data/pref_mapping/LocalNetworkAccessBlockedForUrls.json components/policy/test/data/pref_mapping/LocalNetworkAllowedForUrls.json components/policy/test/data/pref_mapping/LocalNetworkBlockedForUrls.json components/policy/test/data/pref_mapping/LoopbackNetworkAllowedForUrls.json components/policy/test/data/pref_mapping/LoopbackNetworkBlockedForUrls.json components/policy/test/data/pref_mapping/ManagedBookmarks.json components/policy/test/data/pref_mapping/MultiScreenCaptureAllowedForUrls.json components/policy/test/data/pref_mapping/NotificationsAllowedForUrls.json components/policy/test/data/pref_mapping/NotificationsBlockedForUrls.json components/policy/test/data/pref_mapping/PdfLocalFileAccessAllowedForDomains.json components/policy/test/data/pref_mapping/PerAppTimeLimitsAllowlist.json components/policy/test/data/pref_mapping/PinnedLauncherApps.json components/policy/test/data/pref_mapping/PopupsAllowedForUrls.json components/policy/test/data/pref_mapping/PopupsBlockedForUrls.json components/policy/test/data/pref_mapping/PreciseGeolocationAllowedForUrls.json components/policy/test/data/pref_mapping/ReportWebsiteActivityAllowlist.json components/policy/test/data/pref_mapping/ReportWebsiteTelemetryAllowlist.json components/policy/test/data/pref_mapping/RestoreOnStartupURLs.json components/policy/test/data/pref_mapping/RestrictSigninToPattern.json components/policy/test/data/pref_mapping/SaasUsageReportingDomainUrlsForBrowsers.json components/policy/test/data/pref_mapping/SaasUsageReportingDomainUrlsForProfiles.json components/policy/test/data/pref_mapping/SafeBrowsingAllowlistDomains.json components/policy/test/data/pref_mapping/SameOriginTabCaptureAllowedByOrigins.json components/policy/test/data/pref_mapping/ScreenCaptureAllowedByOrigins.json components/policy/test/data/pref_mapping/SensorsAllowedForUrls.json components/policy/test/data/pref_mapping/SensorsBlockedForUrls.json components/policy/test/data/pref_mapping/SerialAllowAllPortsForUrls.json components/policy/test/data/pref_mapping/SerialAllowUsbDevicesForUrls.json components/policy/test/data/pref_mapping/SerialBlockedForUrls.json components/policy/test/data/pref_mapping/TabCaptureAllowedByOrigins.json components/policy/test/data/pref_mapping/URLAllowlist.json components/policy/test/data/pref_mapping/URLBlocklist.json components/policy/test/data/pref_mapping/VideoCaptureAllowedUrls.json components/policy/test/data/pref_mapping/WebAuthenticationRemoteDesktopAllowedOrigins.json components/policy/test/data/pref_mapping/WebHidAllowAllDevicesForUrls.json components/policy/test/data/pref_mapping/WebHidAllowDevicesForUrls.json components/policy/test/data/pref_mapping/WebHidAllowDevicesWithHidUsagesForUrls.json components/policy/test/data/pref_mapping/WebHidBlockedForUrls.json components/policy/test/data/pref_mapping/WebPrintingAllowedForUrls.json components/policy/test/data/pref_mapping/WebPrintingBlockedForUrls.json components/policy/test/data/pref_mapping/WebUsbAllowDevicesForUrls.json components/policy/test/data/pref_mapping/WebUsbBlockedForUrls.json components/policy/test/data/pref_mapping/WindowCaptureAllowedByOrigins.json components/policy/test/data/pref_mapping/WindowManagementAllowedForUrls.json components/policy/test/data/pref_mapping/WindowManagementBlockedForUrls.json components/policy/test/data/pref_mapping/WindowPlacementAllowedForUrls.json components/policy/test/data/pref_mapping/WindowPlacementBlockedForUrls.json components/policy/test_support/fake_dmserver.h components/policy/test_support/fake_dmserver_unittest.cc components/policy/test_support/request_handler_for_policy.cc components/policy/test_support/signature_provider.h components/policy/tools/syntax_check_policy_template_json.py components/policy/tools/syntax_check_policy_template_json_unittest.py components/policy/tools/template_writers/PRESUBMIT.py components/policy/tools/template_writers/writers/adm_writer.py components/policy/tools/template_writers/writers/adm_writer_unittest.py components/policy/tools/template_writers/writers/adml_writer_unittest.py components/policy/tools/template_writers/writers/doc_atomic_groups_writer.py components/policy/tools/template_writers/writers/doc_writer.py components/policy/tools/template_writers/writers/ios_app_config_writer.py components/policy/tools/template_writers/writers/ios_app_config_writer_unittest.py components/policy/tools/template_writers/writers/json_writer_unittest.py components/policy/tools/template_writers/writers/template_writer.py components/policy/tools/template_writers/writers/template_writer_unittest.py components/policy_strings.grdp components/power_bookmarks/core/power_bookmark_utils_unittest.cc components/power_metrics/energy_metrics_provider_win.cc components/prefs/pref_change_registrar.cc components/prefs/pref_change_registrar_unittest.cc components/prefs/pref_service_unittest.cc components/printing/renderer/print_render_frame_helper.cc components/printing/test/print_render_frame_helper_browsertest.cc components/privacy_sandbox/privacy_sandbox_settings_impl.cc components/privacy_sandbox/privacy_sandbox_settings_impl_unittest.cc components/privacy_sandbox_chrome_strings.grdp components/protocol_handler_strings.grdp components/proxy_config/pref_proxy_config_tracker_impl_unittest.cc components/proxy_config/proxy_policy_handler_unittest.cc components/proxy_config/proxy_prefs_utils_unittest.cc components/push_messaging/push_messaging_constants.cc components/quirks/quirks_client.cc components/reading_list/core/offline_url_utils_unittest.cc components/reporting/PRESUBMIT.py components/reporting/encryption/primitives.cc components/reporting/encryption/testing_primitives.cc components/reporting/storage/storage_queue_unittest.cc components/resources/PRESUBMIT.py components/resources/terms/terms_am.html components/resources/terms/terms_am.txt components/resources/terms/terms_ar.html components/resources/terms/terms_ar.txt components/resources/terms/terms_bg.html components/resources/terms/terms_bg.txt components/resources/terms/terms_bn.html components/resources/terms/terms_bn.txt components/resources/terms/terms_ca.html components/resources/terms/terms_ca.txt components/resources/terms/terms_cs.html components/resources/terms/terms_cs.txt components/resources/terms/terms_da.html components/resources/terms/terms_da.txt components/resources/terms/terms_de.html components/resources/terms/terms_de.txt components/resources/terms/terms_el.html components/resources/terms/terms_el.txt components/resources/terms/terms_en-GB.html components/resources/terms/terms_en-GB.txt components/resources/terms/terms_en.html components/resources/terms/terms_en.txt components/resources/terms/terms_es-419.html components/resources/terms/terms_es-419.txt components/resources/terms/terms_es.html components/resources/terms/terms_es.txt components/resources/terms/terms_et.html components/resources/terms/terms_et.txt components/resources/terms/terms_fa.html components/resources/terms/terms_fa.txt components/resources/terms/terms_fi.html components/resources/terms/terms_fi.txt components/resources/terms/terms_fil.html components/resources/terms/terms_fil.txt components/resources/terms/terms_fr.html components/resources/terms/terms_fr.txt components/resources/terms/terms_gu.html components/resources/terms/terms_gu.txt components/resources/terms/terms_he.html components/resources/terms/terms_he.txt components/resources/terms/terms_hi.html components/resources/terms/terms_hi.txt components/resources/terms/terms_hr.html components/resources/terms/terms_hr.txt components/resources/terms/terms_hu.html components/resources/terms/terms_hu.txt components/resources/terms/terms_id.html components/resources/terms/terms_id.txt components/resources/terms/terms_it.html components/resources/terms/terms_it.txt components/resources/terms/terms_ja.html components/resources/terms/terms_ja.txt components/resources/terms/terms_kn.html components/resources/terms/terms_kn.txt components/resources/terms/terms_ko.html components/resources/terms/terms_ko.txt components/resources/terms/terms_lt.html components/resources/terms/terms_lt.txt components/resources/terms/terms_lv.html components/resources/terms/terms_lv.txt components/resources/terms/terms_ml.html components/resources/terms/terms_ml.txt components/resources/terms/terms_mr.html components/resources/terms/terms_mr.txt components/resources/terms/terms_nb.html components/resources/terms/terms_nb.txt components/resources/terms/terms_nl.html components/resources/terms/terms_nl.txt components/resources/terms/terms_pl.html components/resources/terms/terms_pl.txt components/resources/terms/terms_pt-BR.html components/resources/terms/terms_pt-BR.txt components/resources/terms/terms_pt-PT.html components/resources/terms/terms_pt-PT.txt components/resources/terms/terms_ro.html components/resources/terms/terms_ro.txt components/resources/terms/terms_ru.html components/resources/terms/terms_ru.txt components/resources/terms/terms_sk.html components/resources/terms/terms_sk.txt components/resources/terms/terms_sl.html components/resources/terms/terms_sl.txt components/resources/terms/terms_sr.html components/resources/terms/terms_sr.txt components/resources/terms/terms_sv.html components/resources/terms/terms_sv.txt components/resources/terms/terms_sw.html components/resources/terms/terms_sw.txt components/resources/terms/terms_ta.html components/resources/terms/terms_ta.txt components/resources/terms/terms_te.html components/resources/terms/terms_te.txt components/resources/terms/terms_th.html components/resources/terms/terms_th.txt components/resources/terms/terms_tr.html components/resources/terms/terms_tr.txt components/resources/terms/terms_uk.html components/resources/terms/terms_uk.txt components/resources/terms/terms_vi.html components/resources/terms/terms_vi.txt components/resources/terms/terms_zh-CN.html components/resources/terms/terms_zh-CN.txt components/resources/terms/terms_zh-TW.html components/resources/terms/terms_zh-TW.txt components/rlz/rlz_tracker.h components/safe_browsing/android/real_time_url_checks_allowlist_resource_file_unittest.cc components/safe_browsing/android/real_time_url_checks_allowlist_unittest.cc components/safe_browsing/android/safe_browsing_api_handler_util.h components/safe_browsing/content/browser/client_side_detection_service.cc components/safe_browsing/content/browser/notification_content_detection/notifications_global_cache_list_unittest.cc components/safe_browsing/content/browser/password_protection/password_protection_service_unittest.cc components/safe_browsing/content/browser/triggers/ad_sampler_trigger_unittest.cc components/safe_browsing/content/browser/triggers/suspicious_site_trigger.cc components/safe_browsing/content/browser/triggers/trigger_util.cc components/safe_browsing/content/browser/ui_manager_unittest.cc components/safe_browsing/content/renderer/phishing_classifier/features.h components/safe_browsing/content/resources/PRESUBMIT.py components/safe_browsing/content/resources/real_time_url_checks_allowlist/store_real_time_url_allowlist_prefixes.py components/safe_browsing/content/resources/real_time_url_checks_allowlist/validation_utils.py components/safe_browsing/core/browser/db/v4_get_hash_protocol_manager.cc components/safe_browsing/core/browser/db/v4_protocol_manager_util.cc components/safe_browsing/core/browser/db/v4_protocol_manager_util.h components/safe_browsing/core/browser/db/v4_protocol_manager_util_unittest.cc components/safe_browsing/core/browser/db/v4_store.cc components/safe_browsing/core/browser/db/v4_store_unittest.cc components/safe_browsing/core/browser/hashprefix_realtime/hash_realtime_service.cc components/safe_browsing/core/browser/hashprefix_realtime/hash_realtime_service_unittest.cc components/safe_browsing/core/browser/hashprefix_realtime/ohttp_key_service.cc components/safe_browsing/core/browser/hashprefix_realtime/ohttp_key_service_unittest.cc components/safe_browsing/core/browser/password_protection/password_protection_service_base.cc components/safe_browsing/core/browser/ping_manager_unittest.cc components/safe_browsing/core/browser/realtime/chrome_enterprise_url_lookup_service.cc components/safe_browsing/core/browser/realtime/fake_url_lookup_service.cc components/safe_browsing/core/browser/realtime/url_lookup_service.cc components/safe_browsing/core/browser/realtime/url_lookup_service_unittest.cc components/safe_browsing/core/browser/sync/sync_utils_unittest.cc components/safe_browsing/core/browser/tailored_security_service/tailored_security_service.cc components/safe_browsing/core/browser/tailored_security_service/tailored_security_service_unittest.cc components/safe_browsing/core/browser/verdict_cache_manager.cc components/safe_browsing/core/browser/verdict_cache_manager_unittest.cc components/safe_browsing/core/common/features.cc components/safe_browsing/core/common/features.h components/safe_browsing/core/common/scheme_logger_unittest.cc components/safe_search_api/safe_search/safe_search_url_checker_client.cc components/safe_search_api/safe_search/safe_search_url_checker_client_unittest.cc components/safe_search_api/safe_search_util_unittest.cc components/safe_search_api/stub_url_checker.cc components/safety_check/update_check_helper.h components/safety_check/url_constants.cc components/saved_tab_groups/internal/android/tab_group_sync_service_android_unittest.cc components/saved_tab_groups/internal/migration/tab_group_entity_converter_unittest.cc components/saved_tab_groups/internal/saved_tab_group_sync_bridge_unittest.cc components/saved_tab_groups/internal/shared_tab_group_account_data_sync_bridge_unittest.cc components/saved_tab_groups/internal/shared_tab_group_data_sync_bridge_unittest.cc components/saved_tab_groups/internal/tab_group_sync_bridge_mediator_unittest.cc components/saved_tab_groups/internal/tab_group_sync_personal_collaboration_data_handler_unittest.cc components/saved_tab_groups/internal/tab_group_sync_service_impl_unittest.cc components/saved_tab_groups/public/saved_tab_group_unittest.cc components/saved_tab_groups/public/utils_unittest.cc components/saved_tab_groups/test_support/saved_tab_group_test_utils.cc components/search_engines/PRESUBMIT.py components/search_engines/android/template_url_service_android_unittest.cc components/search_engines/choice_made_location.h components/search_engines/enterprise/default_search_policy_handler_unittest.cc components/search_engines/keyword_table_unittest.cc components/search_engines/reconciling_template_url_data_holder_unittest.cc components/search_engines/template_url.cc components/search_engines/template_url_data_unittest.cc components/search_engines/template_url_prepopulate_data_unittest.cc components/search_engines/template_url_service.cc components/search_engines/template_url_service_unittest.cc components/search_engines/template_url_starter_pack_data.cc components/search_engines/template_url_unittest.cc components/search_engines/util.cc components/search_provider_logos/google_logo_api.cc components/search_provider_logos/google_logo_api.h components/search_provider_logos/google_logo_api_unittest.cc components/search_provider_logos/logo_cache_unittest.cc components/search_provider_logos/logo_service_impl_unittest.cc components/search_provider_logos/switches.cc components/security_interstitials/content/captive_portal_helper_win.cc components/security_interstitials/content/https_only_mode_blocking_page.cc components/security_interstitials/core/browser/resources/interstitial_large.js components/security_interstitials/core/controller_client.cc components/security_interstitials/core/safe_browsing_loud_error_ui.cc components/security_interstitials/core/urls.cc components/security_interstitials_strings.grdp components/security_state/core/security_state.h components/segmentation_platform/embedder/home_modules/tips_manager/signal_constants.h components/segmentation_platform/internal/execution/optimization_guide/optimization_guide_segmentation_model_provider.cc components/segmentation_platform/internal/execution/optimization_guide/optimization_guide_segmentation_model_provider_unittest.cc components/segmentation_platform/internal/execution/optimization_guide/segmentation_model_executor_unittest.cc components/segmentation_platform/internal/proto/PRESUBMIT.py components/send_tab_to_self/send_tab_to_self_bridge_unittest.cc components/send_tab_to_self/target_device_info_unittest.cc components/send_tab_to_self_strings.grdp components/services/app_service/public/cpp/app_capability_access_cache_unittest.cc components/services/app_service/public/cpp/app_capability_access_cache_wrapper_unittest.cc components/services/app_service/public/cpp/app_launch_util.h components/services/app_service/public/cpp/app_registry_cache_unittest.cc components/services/app_service/public/cpp/app_registry_cache_wrapper_unittest.cc components/services/app_service/public/cpp/app_types.h components/services/app_service/public/cpp/app_update_unittest.cc components/services/app_service/public/cpp/capability_access_update_unittest.cc components/services/app_service/public/cpp/intent.h components/services/app_service/public/cpp/intent_filter.h components/services/app_service/public/cpp/intent_filter_util.h components/services/app_service/public/cpp/intent_filter_util_unittest.cc components/services/app_service/public/cpp/intent_util.h components/services/app_service/public/cpp/intent_util_unittest.cc components/services/app_service/public/cpp/preferred_apps_converter.h components/services/app_service/public/cpp/preferred_apps_converter_unittest.cc components/services/app_service/public/cpp/preferred_apps_list_unittest.cc components/services/font/pdf_fontconfig_matching.cc components/services/heap_profiling/connection_manager.cc components/services/heap_profiling/json_exporter.cc components/services/paint_preview_compositor/paint_preview_compositor_impl_unittest.cc components/services/quarantine/quarantine_mac.mm components/services/quarantine/quarantine_win.cc components/services/storage/public/mojom/buckets/bucket_info_mojom_traits_unittest.cc components/services/storage/public/mojom/buckets/bucket_locator_mojom_traits_unittest.cc components/services/storage/shared_storage/async_shared_storage_database_impl_unittest.cc components/services/storage/shared_storage/shared_storage_database_migrations_unittest.cc components/services/storage/shared_storage/shared_storage_database_unittest.cc components/services/storage/shared_storage/shared_storage_manager_unittest.cc components/shared_highlighting/core/common/disabled_sites.cc components/shared_highlighting/core/common/disabled_sites_unittest.cc components/shared_highlighting/core/common/fragment_directives_utils_unittest.cc components/shared_highlighting/core/common/shared_highlighting_metrics_unittest.cc components/shared_highlighting/ios/shared_highlighting_constants.mm components/signin/core/browser/account_management_type_metrics_recorder_unittest.cc components/signin/core/browser/account_reconcilor_unittest.cc components/signin/core/browser/chrome_connected_header_helper.cc components/signin/core/browser/chrome_connected_header_helper.h components/signin/core/browser/dice_account_reconcilor_delegate_unittest.cc components/signin/core/browser/signin_header_helper_unittest.cc components/signin/core/browser/signin_metrics_service_unittest.cc components/signin/internal/identity_manager/account_capabilities_fetcher_unittest.cc components/signin/internal/identity_manager/account_tracker_service_unittest.cc components/signin/internal/identity_manager/gaia_cookie_manager_service.cc components/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate.cc components/signin/internal/identity_manager/mutable_profile_oauth2_token_service_delegate_unittest.cc components/signin/internal/identity_manager/oauth_multilogin_helper.cc components/signin/internal/identity_manager/oauth_multilogin_helper_unittest.cc components/signin/internal/identity_manager/primary_account_manager_unittest.cc components/signin/internal/identity_manager/profile_oauth2_token_service_delegate_android.cc components/signin/internal/identity_manager/profile_oauth2_token_service_delegate_chromeos_unittest.cc components/signin/ios/browser/account_consistency_service.mm components/signin/ios/browser/account_consistency_service_unittest.mm components/signin/ios/browser/features.h components/signin/public/base/consent_level.h components/signin/public/base/hybrid_encryption_key.cc components/signin/public/base/session_binding_utils.cc components/signin/public/base/session_binding_utils_unittest.cc components/signin/public/browser/web_signin_tracker_unittest.cc components/signin/public/identity_manager/access_token_fetcher.cc components/signin/public/identity_manager/access_token_fetcher_unittest.cc components/signin/public/identity_manager/account_info.h components/signin/public/identity_manager/account_managed_status_finder.cc components/signin/public/identity_manager/account_managed_status_finder.h components/signin/public/identity_manager/account_managed_status_finder_outcome.h components/signin/public/identity_manager/account_managed_status_finder_unittest.cc components/signin/public/identity_manager/accounts_cookie_mutator_unittest.cc components/signin/public/identity_manager/diagnostics_provider_unittest.cc components/signin/public/identity_manager/identity_manager.h components/signin/public/identity_manager/identity_manager_unittest.cc components/signin/public/identity_manager/identity_test_environment.h components/signin/public/identity_manager/identity_test_environment_unittest.cc components/signin/public/identity_manager/identity_test_utils.cc components/signin/public/identity_manager/identity_utils_unittest.cc components/signin/public/identity_manager/primary_account_access_token_fetcher_unittest.cc components/signin/public/identity_manager/primary_account_change_event_unittest.cc components/site_engagement/content/site_engagement_helper.cc components/site_engagement/content/site_engagement_helper_unittest.cc components/site_engagement/content/site_engagement_score_unittest.cc components/site_isolation/site_isolation_policy_unittest.cc components/skills/internal/skills_downloader.cc components/skills/internal/skills_downloader_unittest.cc components/skills/internal/skills_service_impl_unittest.cc components/speech/endpointer/energy_endpointer.cc components/spellcheck/browser/spelling_service_client.cc components/spellcheck/browser/windows_spell_checker.cc components/sqlite_vfs/sandboxed_file.cc components/ssl_errors/error_classification.h components/ssl_errors/error_classification_unittest.cc components/startup_metric_utils/browser/startup_metric_utils.cc components/storage_monitor/volume_mount_watcher_win.cc components/subresource_filter/content/browser/content_subresource_filter_throttle_manager.h components/subresource_filter/content/browser/content_subresource_filter_web_contents_helper.cc components/subresource_filter/content/browser/content_subresource_filter_web_contents_helper.h components/subresource_filter/core/browser/subresource_filter_constants.h components/subresource_filter/core/common/PRESUBMIT.py components/supervised_user/core/browser/family_link_settings_service_unittest.cc components/supervised_user/core/browser/family_link_url_filter.cc components/supervised_user/core/browser/family_link_url_filter.h components/supervised_user/core/browser/family_link_url_filter_manual_behavior_unittest.cc components/supervised_user/core/browser/family_link_url_filter_unittest.cc components/supervised_user/core/browser/family_link_user_capabilities_unittest.cc components/supervised_user/core/browser/fetcher_config.cc components/supervised_user/core/browser/fetcher_config.h components/supervised_user/core/browser/kids_chrome_management_url_checker_client_unittest.cc components/supervised_user/core/browser/list_family_members_service_unittest.cc components/supervised_user/core/browser/parallel_fetch_manager_unittest.cc components/supervised_user/core/browser/proto_fetcher_status.h components/supervised_user/core/browser/proto_fetcher_unittest.cc components/supervised_user/core/browser/supervised_user_log_record_unittest.cc components/supervised_user/core/browser/supervised_user_service_unittest.cc components/supervised_user/core/browser/supervised_user_synthetic_field_trial_service_delegate.h components/supervised_user/core/browser/supervised_user_url_filtering_service_android_unittest.cc components/supervised_user/core/browser/supervised_user_utils.cc components/supervised_user/core/common/supervised_user_constants.cc components/supervised_user/core/common/supervised_user_shared_constants.cc components/supervised_user/test_support/account_repository.h components/supervised_user/test_support/account_repository_unittest.cc components/supervised_user/test_support/family_link_settings_state_management.cc components/supervised_user/test_support/kids_chrome_management_test_utils.cc components/supervised_user/test_support/kids_management_api_server_mock.cc components/surface_embed/common/features.cc components/surface_embed/common/features.h components/sync/PRESUBMIT.py components/sync/base/data_type.cc components/sync/base/sync_util.h components/sync/engine/bookmark_update_preprocessing.cc components/sync/engine/net/http_bridge_unittest.cc components/sync/model/data_type_sync_bridge.h components/sync/model/syncable_service.h components/sync/protocol/proto_value_conversions_unittest.cc components/sync/service/device_statistics_request_impl.cc components/sync/service/device_statistics_request_impl_unittest.cc components/sync/service/local_data_description.h components/sync/service/sync_auth_manager_unittest.cc components/sync/service/sync_prefs.cc components/sync/service/sync_service.h components/sync/service/sync_service_impl_startup_unittest.cc components/sync/service/sync_service_impl_unittest.cc components/sync/service/sync_session_durations_metrics_recorder_unittest.cc components/sync/service/sync_stopped_reporter_unittest.cc components/sync/test/mock_connection_manager.cc components/sync_bookmarks/PRESUBMIT.py components/sync_preferences/pref_service_syncable_unittest.cc components/sync_sessions/PRESUBMIT.py components/sync_sessions/session_store_unittest.cc components/sync_sessions/session_sync_bridge.h components/sync_sessions/synced_session_unittest.cc components/system_cpu/cpu_probe_win.cc components/themes/ntp_background_service.cc components/touch_to_search/core/browser/contextual_search_context.h components/touch_to_search/core/browser/contextual_search_delegate_impl.cc components/touch_to_search/core/browser/contextual_search_delegate_impl_unittest.cc components/tpcd/metadata/browser/parser_unittest.cc components/tracing/common/etw_consumer_win.cc components/tracing/common/etw_consumer_win.h components/tracing/common/etw_system_data_source_win.cc components/tracing/common/graphics_memory_dump_provider_android.h components/tracing/common/system_log_event_utils_win.cc components/translate/core/browser/translate_language_list_unittest.cc components/translate/core/browser/translate_ranker_impl.cc components/translate/core/browser/translate_script.cc components/translate/core/common/translate_util.cc components/translate_strings.grdp components/trusted_vault/command_line_switches.cc components/trusted_vault/recovery_key_store_certificate.cc components/trusted_vault/recovery_key_store_certificate.h components/trusted_vault/recovery_key_store_connection_impl.cc components/trusted_vault/recovery_key_store_connection_unittest.cc components/trusted_vault/standalone_trusted_vault_server_constants.h components/trusted_vault/test/recovery_key_store_certificate_test_util.h components/trusted_vault/trusted_vault_access_token_fetcher_frontend_unittest.cc components/trusted_vault/trusted_vault_histograms.h components/ui_devtools/agent_util.cc components/ukm/observers/ukm_consent_state_observer_unittest.cc components/ukm/ukm_service_unittest.cc components/undo/bookmark_undo_service_test.cc components/unified_consent/unified_consent_service_unittest.cc components/url_deduplication/docs_url_strip_handler.cc components/url_deduplication/docs_url_strip_handler_unittest.cc components/url_deduplication/url_deduplication_helper_unittest.cc components/url_formatter/elide_url.cc components/url_formatter/elide_url.h components/url_formatter/elide_url_unittest.cc components/url_formatter/spoof_checks/idn_spoof_checker.cc components/url_formatter/spoof_checks/idn_spoof_checker.h components/url_formatter/spoof_checks/idn_spoof_checker_unittest.cc components/url_formatter/spoof_checks/top_domains/fetch_crux_domains.py components/url_formatter/spoof_checks/top_domains/make_top_domain_list_variables.cc components/url_formatter/spoof_checks/top_domains/top_domain_util.cc components/url_formatter/spoof_checks/top_domains/top_domain_util.h components/url_formatter/spoof_checks/top_domains/top_domain_util_unittest.cc components/url_formatter/url_fixer.cc components/url_formatter/url_fixer_unittest.cc components/url_formatter/url_formatter.cc components/url_formatter/url_formatter.h components/url_formatter/url_formatter_unittest.cc components/url_matcher/url_matcher.h components/url_matcher/url_matcher_unittest.cc components/url_matcher/url_util.cc components/url_matcher/url_util.h components/url_matcher/url_util_unittest.cc components/url_pattern_index/PRESUBMIT.py components/url_pattern_index/url_pattern_index_unittest.cc components/url_pattern_index/url_pattern_unittest.cc components/user_data_importer/content/content_bookmark_parser_utils_unittest.cc components/user_data_importer/content/stable_portability_data_importer_unittest.cc components/user_data_importer/ios/resources/bookmark_parser.ts components/user_data_importer/utility/bookmark_parser.h components/user_data_importer/utility/safari_data_importer_unittest.cc components/user_education/webui/whats_new_registry.h components/user_manager/account_id_util_unittest.cc components/user_manager/known_user_unittest.cc components/user_manager/user.h components/user_manager/user_type.h components/variations/entropy_provider.h components/variations/net/omnibox_autofocus_http_headers_unittest.cc components/variations/net/omnibox_autofocus_url_loader_throttle_unittest.cc components/variations/net/variations_http_headers.cc components/variations/net/variations_http_headers_unittest.cc components/variations/pref_names.h components/variations/proto/PRESUBMIT.py components/variations/proto/devtools/client_variations_uncompiled.js components/variations/service/safe_seed_manager.cc components/variations/service/safe_seed_manager.h components/variations/variations_murmur_hash.h components/variations/variations_seed_processor.cc components/variations/variations_url_constants.cc components/visited_url_ranking/internal/history_url_visit_data_fetcher_unittest.cc components/visited_url_ranking/internal/session_url_visit_data_fetcher_unittest.cc components/visited_url_ranking/internal/transformer/default_app_url_visit_aggregates_transformer_unittest.cc components/visited_url_ranking/internal/visited_url_ranking_service_impl_unittest.cc components/visited_url_ranking/public/features.h components/visited_url_ranking/public/test_support.h components/visited_url_ranking/public/url_visit_util.h components/visitedlink/test/visitedlink_perftest.cc components/visitedlink/test/visitedlink_unittest.cc components/viz/client/frame_eviction_manager.cc components/viz/common/features.h components/viz/common/quads/render_pass_io_unittest.cc components/viz/common/resources/shared_image_format.h components/viz/common/switches.cc components/viz/host/persistent_cache_sandboxed_file_factory.cc components/viz/service/display/output_surface.h components/viz/service/display/overlay_candidate.h components/viz/service/display/overlay_processor_using_strategy.cc components/viz/service/display/renderer_pixeltest.cc components/viz/service/display_embedder/skia_output_surface_impl_on_gpu.cc components/viz/service/display_embedder/skia_render_copy_results.cc components/viz/service/input/input_manager.cc components/wallet/core/browser/ingestion/walletable_pass_ingestion_controller_unittest.cc components/wallet/core/browser/network/wallet_http_client_impl.cc components/wallet/core/browser/walletable_permission_utils_unittest.cc components/wallet_strings.grdp components/webapps/browser/android/add_to_homescreen_data_fetcher_unittest.cc components/webapps/browser/android/java/res/values/dimens.xml components/webapps/browser/android/shortcut_info.cc components/webapps/browser/android/webapk/webapk_icons_hasher_unittest.cc components/webapps/browser/android/webapk/webapk_single_icon_hasher_unittest.cc components/webapps/browser/banners/app_banner_settings_helper_unittest.cc components/webapps/browser/installable/installable_evaluator_unittest.cc components/webapps/common/manifest_id_constants.h components/webapps/isolated_web_apps/types/source_unittest.cc components/webauthn/content/browser/internal_authenticator_impl_unittest.cc components/webauthn/core/browser/client_data_json.cc components/webauthn/core/browser/passkey_change_quota_tracker_unittest.cc components/webauthn/core/browser/remote_validation.cc components/webauthn/json/value_conversions.h components/webui/flags/flags_test_helpers.cc components/webui/flags/resources/app.html.ts components/webxr/android/arcore_install_helper.cc components/webxr/android/arcore_install_helper.h components/wifi/wifi_service_win.cc components/zucchini/disassembler_dex.cc components/zucchini/disassembler_dex.h components/zucchini/exception_filter_helper_win.cc components/zucchini/type_dex.h content/app/content_main_runner_impl.cc content/app_shim_remote_cocoa/render_widget_host_view_cocoa.mm content/app_shim_remote_cocoa/web_menu_runner_mac.mm content/browser/accessibility/accessibility_action_browsertest.cc content/browser/accessibility/accessibility_auralinux_browsertest.cc content/browser/accessibility/browser_accessibility_android.cc content/browser/accessibility/browser_accessibility_manager_android.cc content/browser/accessibility/hit_testing_browsertest.cc content/browser/android/battery_metrics.h content/browser/android/nfc_host_unittest.cc content/browser/attribution_reporting/attribution_os_level_manager_android.cc content/browser/back_forward_cache_basics_browsertest.cc content/browser/back_forward_cache_features_browsertest.cc content/browser/back_forward_cache_internal_browsertest.cc content/browser/back_forward_cache_network_request_browsertest.cc content/browser/back_forward_cache_no_store_browsertest.cc content/browser/background_fetch/background_fetch_cross_origin_filter_unittest.cc content/browser/background_fetch/background_fetch_service_impl.cc content/browser/background_fetch/background_fetch_service_unittest.cc content/browser/blob_storage/blob_url_browsertest.cc content/browser/blob_storage/file_backed_blob_factory_frame_impl_unittest.cc content/browser/browser_url_handler_impl.cc content/browser/browsing_data/browsing_data_filter_builder_impl.cc content/browser/browsing_data/browsing_data_filter_builder_impl_unittest.cc content/browser/browsing_topics/browsing_topics_url_loader_unittest.cc content/browser/btm/btm_bounce_detector_browsertest.cc content/browser/btm/btm_database_unittest.cc content/browser/btm/btm_storage_unittest.cc content/browser/btm/cookie_access_filter_unittest.cc content/browser/buckets/bucket_manager_host_unittest.cc content/browser/cache_storage/cache_storage_context_unittest.cc content/browser/child_process_sandbox_support_win_unittest.cc content/browser/child_process_security_policy_unittest.cc content/browser/client_hints/client_hints.cc content/browser/content_security_policy_browsertest.cc content/browser/cookie_store/cookie_store_manager_unittest.cc content/browser/devtools/devtools_agent_host_impl.cc content/browser/devtools/devtools_agent_host_impl_unittest.cc content/browser/devtools/devtools_http_handler.cc content/browser/devtools/devtools_protocol_encoding_cbor_fuzzer.cc content/browser/devtools/protocol/bluetooth_emulation_handler.h content/browser/devtools/protocol/devtools_protocol_browsertest.cc content/browser/devtools/shared_storage_worklet_devtools_agent_host_unittest.cc content/browser/download/mhtml_generation_browsertest.cc content/browser/download/save_package.h content/browser/download/save_package_unittest.cc content/browser/fenced_frame/fenced_frame_browsertest.cc content/browser/fenced_frame/fenced_frame_reporter.cc content/browser/fenced_frame/fenced_frame_unittest.cc content/browser/file_system/browser_file_system_helper_unittest.cc content/browser/file_system_access/file_path_watcher/file_path_watcher_unittest.cc content/browser/file_system_access/file_path_watcher/file_path_watcher_win.cc content/browser/file_system_access/file_system_access_observer_observation.h content/browser/font_access/font_enumeration_cache.cc content/browser/font_access/font_enumeration_data_source_win.cc content/browser/framebusting_browsertest.cc content/browser/geolocation/geolocation_service_impl_unittest.cc content/browser/gpu/gpu_data_manager_impl_private.cc content/browser/hid/hid_service_unittest.cc content/browser/idle/idle_manager_unittest.cc content/browser/indexed_db/indexed_db_context_unittest.cc content/browser/indexed_db/indexed_db_reporting.cc content/browser/indexed_db/instance/leveldb/backing_store.cc content/browser/indexed_db/instance/leveldb/leveldb_backing_store_unittest.cc content/browser/installedapp/fetch_related_win_apps_task.cc content/browser/installedapp/native_win_app_fetcher_impl.cc content/browser/interest_group/ad_auction_headers_util_unittest.cc content/browser/interest_group/ad_auction_url_loader_interceptor_unittest.cc content/browser/interest_group/auction_runner_unittest.cc content/browser/interest_group/bidding_and_auction_server_key_fetcher.cc content/browser/interest_group/bidding_and_auction_server_key_fetcher.h content/browser/interest_group/interest_group_update_manager.cc content/browser/loader/file_url_loader_factory_unittest.cc content/browser/loader/keep_alive_url_loader.cc content/browser/loader/keep_alive_url_loader.h content/browser/loader/keep_alive_url_loader_service.cc content/browser/loader/keep_alive_url_loader_service.h content/browser/loader/navigation_url_loader_impl.h content/browser/loader/prefetch_browsertest.cc content/browser/media/audio_stream_monitor_unittest.cc content/browser/media/capture/frame_test_util.cc content/browser/media/media_devices_permission_checker_unittest.cc content/browser/media/session/media_session_impl_service_routing_unittest.cc content/browser/mojo_binder_policy_applier.h content/browser/navigation_transitions/back_forward_transition_animation_manager_android_browsertest.cc content/browser/navigation_transitions/back_forward_transition_animator.cc content/browser/network/accept_header_browsertest.cc content/browser/network/trust_token_browsertest.cc content/browser/notifications/notification_database_unittest.cc content/browser/payments/payment_manager_unittest.cc content/browser/permissions/embedded_permission_control_checker_unittest.cc content/browser/permissions/permission_controller_impl_unittest.cc content/browser/permissions/permission_overrides_unittest.cc content/browser/permissions/permission_service_context_unittest.cc content/browser/preloading/preconnect/preconnect_manager_impl_unittest.cc content/browser/preloading/prefetch/contamination_delay_browsertest.cc content/browser/preloading/prefetch/prefetch_container.cc content/browser/preloading/prefetch/prefetch_container.h content/browser/preloading/prefetch/prefetch_container_unittest.cc content/browser/preloading/prefetch/prefetch_features.h content/browser/preloading/prefetch/prefetch_handle_impl.cc content/browser/preloading/prefetch/prefetch_match_resolver.cc content/browser/preloading/prefetch/prefetch_params.cc content/browser/preloading/prefetch/prefetch_scheduler.cc content/browser/preloading/prefetch/prefetch_scheduler.h content/browser/preloading/prefetch/prefetch_servable_state.h content/browser/preloading/prefetch/prefetch_service.cc content/browser/preloading/prefetch/prefetch_status.h content/browser/preloading/prefetch/prefetch_streaming_url_loader_common_types.h content/browser/preloading/preload_serving_metrics.h content/browser/preloading/preload_serving_metrics_holder.cc content/browser/preloading/preload_serving_metrics_holder.h content/browser/preloading/preloading_decider.cc content/browser/preloading/preloading_decider_unittest.cc content/browser/preloading/prerender/prerender_browsertest.cc content/browser/preloading/prerender/prerender_features.h content/browser/preloading/prerender/prerender_final_status.h content/browser/preloading/prerender/prerender_host_registry.cc content/browser/preloading/prerenderer_impl_browsertest.cc content/browser/private_aggregation/PRESUBMIT.py content/browser/process_lock.h content/browser/push_messaging/push_messaging_manager.cc content/browser/renderer_host/back_forward_cache_metrics.cc content/browser/renderer_host/back_forward_cache_subframe_navigation_throttle_unittest.cc content/browser/renderer_host/clipboard_host_impl_unittest.cc content/browser/renderer_host/code_cache_host_impl.cc content/browser/renderer_host/direct_manipulation_test_helper_win.cc content/browser/renderer_host/dwrite_font_proxy_impl_win.cc content/browser/renderer_host/frame_tree_unittest.cc content/browser/renderer_host/input/input_transfer_handler_android.h content/browser/renderer_host/input/stylus_handwriting_controller_win.cc content/browser/renderer_host/input/stylus_handwriting_controller_win.h content/browser/renderer_host/legacy_render_widget_host_win.cc content/browser/renderer_host/media/media_devices_dispatcher_host_unittest.cc content/browser/renderer_host/mixed_content_checker_unittest.cc content/browser/renderer_host/navigation_controller_impl.cc content/browser/renderer_host/navigation_controller_impl_unittest.cc content/browser/renderer_host/navigation_entry_impl_unittest.cc content/browser/renderer_host/navigation_request.cc content/browser/renderer_host/navigation_request_unittest.cc content/browser/renderer_host/navigator.cc content/browser/renderer_host/navigator_unittest.cc content/browser/renderer_host/policy_container_host_browsertest.cc content/browser/renderer_host/randomized_confidence_utils.cc content/browser/renderer_host/recently_destroyed_hosts_unittest.cc content/browser/renderer_host/render_frame_host_impl.cc content/browser/renderer_host/render_frame_host_impl_browsertest.cc content/browser/renderer_host/render_frame_host_manager_browsertest.cc content/browser/renderer_host/render_frame_host_manager_unittest.cc content/browser/renderer_host/render_frame_host_permissions_policy_unittest.cc content/browser/renderer_host/render_process_host_impl.cc content/browser/renderer_host/render_process_host_unittest.cc content/browser/renderer_host/render_view_host_impl.h content/browser/renderer_host/render_view_host_unittest.cc content/browser/renderer_host/render_widget_host_impl.h content/browser/renderer_host/render_widget_host_view_aura.h content/browser/renderer_host/should_swap_browsing_instance.h content/browser/renderer_host/virtual_keyboard_controller_win.h content/browser/resources/PRESUBMIT.py content/browser/resources/gpu/info_view.ts content/browser/resources/media/client_renderer.js content/browser/resources/traces_internals/icons.html content/browser/sandbox_ipc_linux.h content/browser/sandbox_support_win_impl.cc content/browser/screen_orientation/screen_orientation_provider_unittest.cc content/browser/serial/serial_unittest.cc content/browser/service_host/utility_sandbox_delegate_win.cc content/browser/service_worker/service_worker_hid_delegate_observer_unittest.cc content/browser/service_worker/service_worker_main_resource_loader.h content/browser/service_worker/service_worker_security_utils.cc content/browser/service_worker/service_worker_usb_delegate_observer_unittest.cc content/browser/service_worker/service_worker_version_browsertest.cc content/browser/session_history_browsertest.cc content/browser/shared_storage/shared_storage_worklet_host.cc content/browser/site_instance_impl.h content/browser/site_instance_impl_unittest.cc content/browser/site_per_process_hit_test_browsertest.cc content/browser/site_per_process_scroll_browsertest.cc content/browser/site_per_process_unload_browsertest.cc content/browser/sms/sms_parser_unittest.cc content/browser/sms/sms_provider_gms_unittest.cc content/browser/sms/webotp_service_unittest.cc content/browser/speech/network_speech_recognition_engine_impl.cc content/browser/speech/tts_mac.mm content/browser/speech/tts_win.cc content/browser/storage_partition_impl_unittest.cc content/browser/system_dns_resolution/system_dns_resolver_browsertest.cc content/browser/text_fragment_browsertest.cc content/browser/tpcd_heuristics/opener_heuristic_utils.cc content/browser/tpcd_heuristics/opener_heuristic_utils_unittest.cc content/browser/tracing/tracing_end_to_end_browsertest.cc content/browser/url_info.h content/browser/url_loader_factory_params_helper.cc content/browser/usb/web_usb_service_impl_unittest.cc content/browser/web_contents/aura/gesture_nav_simple_unittest.cc content/browser/web_contents/web_contents_android.cc content/browser/web_contents/web_contents_impl.cc content/browser/web_contents/web_contents_impl_browsertest.cc content/browser/web_contents/web_contents_impl_unittest.cc content/browser/web_contents/web_contents_view_android.cc content/browser/web_contents/web_contents_view_aura_unittest.cc content/browser/web_contents/web_contents_view_mac_unittest.mm content/browser/web_contents/web_drag_dest_mac_unittest.mm content/browser/webauth/authenticator_common_impl.cc content/browser/webauth/authenticator_impl_unittest.cc content/browser/webauth/authenticator_mojom_traits_unittest.cc content/browser/webauth/authenticator_test_base.h content/browser/webauth/webauth_request_security_checker.cc content/browser/webauth/webauth_request_security_checker.h content/browser/webid/delegation/jwt_signer_unittest.cc content/browser/webid/idp_network_request_manager_unittest.cc content/browser/webrtc/webrtc_ip_permissions_browsertest.cc content/browser/zygote_host/zygote_host_impl_linux.cc content/child/runtime_features.cc content/common/features.cc content/common/service_worker/race_network_request_url_loader_client.cc content/common/zygote/zygote_communication_linux.h content/public/android/java/res/values/strings.xml content/public/browser/bluetooth_delegate.h content/public/browser/browser_main_parts.h content/public/browser/browser_task_traits.h content/public/browser/browsing_data_filter_builder.h content/public/browser/browsing_data_remover.h content/public/browser/content_browser_client.h content/public/browser/devtools_manager_delegate.h content/public/browser/navigation_controller.h content/public/browser/navigation_handle.h content/public/browser/navigation_handle_timing.h content/public/browser/payment_app_provider.h content/public/browser/render_view_host.h content/public/browser/service_process_host.h content/public/browser/site_instance.h content/public/browser/web_contents.h content/public/browser/web_exposed_isolation_level.h content/public/browser/zygote_host/zygote_host_linux.h content/public/common/content_descriptors.h content/public/common/content_features.cc content/public/common/content_switches.cc content/public/common/pseudonymization_util.h content/public/common/resource_request_body_android.cc content/public/test/blink_test_environment.cc content/public/test/browser_fuzztest_support.h content/public/test/browser_test_utils.h content/public/test/test_file_error_injector.h content/renderer/PRESUBMIT.py content/renderer/accessibility/annotations/ax_image_annotator.cc content/renderer/accessibility/annotations/ax_image_stopwords.h content/renderer/content_security_policy_util_fuzzer.cc content/renderer/media/media_factory.cc content/renderer/render_frame_impl.h content/renderer/render_frame_impl_browsertest.cc content/renderer/render_thread_impl.cc content/renderer/render_thread_impl_unittest.cc content/renderer/renderer_blink_platform_impl.h content/renderer/renderer_main_platform_delegate_linux.cc content/renderer/service_worker/web_service_worker_provider_impl.cc content/renderer/v8_value_converter_impl_unittest.cc content/renderer/visual_state_browsertest.cc content/services/auction_worklet/bidder_worklet_unittest.cc content/services/auction_worklet/public/cpp/auction_downloader.cc content/services/auction_worklet/seller_worklet_unittest.cc content/services/auction_worklet/webidl_compat.cc content/shell/browser/shell_browser_main_parts.cc content/shell/browser/shell_platform_delegate_ios.mm content/test/PRESUBMIT.py content/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_1.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_2.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_3.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_gcp_1.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_gcp_2.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/latest/report_gcp_3.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_1.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_2.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_3.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_gcp_1.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_gcp_2.json content/test/data/attribution_reporting/aggregatable_debug_report_goldens/version_0.1/report_gcp_3.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_1.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_10.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_2.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_3.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_4.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_5.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_6.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_7.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_8.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_9.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_1.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_2.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_3.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_4.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_5.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_6.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_7.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_8.json content/test/data/attribution_reporting/aggregatable_report_goldens/latest/report_gcp_9.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_1.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_2.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_3.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_4.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_5.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_6.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_7.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_8.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_9.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_1.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_2.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_3.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_4.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_5.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_6.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_7.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_8.json content/test/data/attribution_reporting/aggregatable_report_goldens/version_0.1/report_gcp_9.json content/test/data/dom_serializer/html_doc_has_base_tag.htm content/test/data/dom_serializer/youtube_1.htm content/test/data/dom_serializer/youtube_2.htm content/test/data/fedcm/accounts_endpoint.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_1.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_10.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_11.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_12.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_13.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_14.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_15.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_16.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_17.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_18.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_19.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_2.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_3.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_4.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_5.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_6.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_7.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_8.json content/test/data/private_aggregation/aggregatable_report_goldens/latest/report_9.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_1.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_10.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_2.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_3.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_4.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_5.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_6.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_7.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_8.json content/test/data/private_aggregation/aggregatable_report_goldens/version_0.1/report_9.json content/test/data/site_isolation/json-prefixed-3.js content/test/data/site_isolation/json-prefixed-4.js content/test/data/web_ui_mojo_ts_test.ts content/test/gpu/PRESUBMIT.py content/test/gpu/find_unknown_typ_tags.py content/test/gpu/flake_suppressor/gpu_results_unittest.py content/test/gpu/gather_power_measurement_results.py content/test/gpu/gather_swarming_json_results.py content/test/gpu/gpu_tests/power_measurement_integration_test.py content/test/gpu/gpu_tests/webgpu_cts_integration_test_base.py content/test/gpu/measure_power_intel.py content/test/gpu/power_measurement_results/analyze_power_measurement_results.py content/test/gpu/suppress_flakes.py content/test/gpu/trim_culprit_cls.py content/test/gpu/unexpected_pass_finder.py content/test/gpu/unexpected_passes/gpu_queries_unittest.py content/test/test_page_unittest.cc content/test/test_render_view_host.cc content/web_test/browser/fake_bluetooth_chooser.h content/web_test/browser/fake_bluetooth_chooser_factory.h content/zygote/zygote_linux.cc content/zygote/zygote_linux.h content/zygote/zygote_main_linux.cc crypto/chaps_support.cc crypto/ecdsa_utils.h crypto/hkdf.h crypto/kdf.h crypto/nss_util.cc crypto/secure_hash.h crypto/secure_util.h crypto/unexportable_key.h crypto/unexportable_key_unittest.cc crypto/unexportable_key_win.cc device/bluetooth/bluetooth_adapter_android.cc device/bluetooth/bluetooth_adapter_mac.mm device/bluetooth/bluetooth_adapter_winrt.cc device/bluetooth/bluetooth_classic_device_mac.mm device/bluetooth/bluetooth_device_win.cc device/bluetooth/bluetooth_device_winrt.cc device/bluetooth/bluetooth_remote_gatt_characteristic_android.h device/bluetooth/bluetooth_task_manager_win.cc device/bluetooth/dbus/bluetooth_device_client.h device/bluetooth/floss/bluetooth_adapter_floss.cc device/bluetooth/floss/bluetooth_device_floss.h device/bluetooth/floss/floss_lescan_client.h device/fido/attestation_statement_formats.cc device/fido/discoverable_credential_metadata.h device/fido/enclave/constants.cc device/fido/enclave/enclave_websocket_client.cc device/fido/fido_strings.grd device/fido/fido_test_data.h device/fido/public/fido_constants.h device/gamepad/public/cpp/BUILD.gn device/gamepad/raw_input_data_fetcher_win.cc device/gamepad/xbox_controller_mac.mm device/gamepad/xinput_data_fetcher_win.cc device/vr/android/arcore/arcore_impl.cc device/vr/android/cardboard/cardboard_device.cc docs/enterprise/extension_query.py docs/enterprise/extension_query_py2.py docs/imported/refresh_docs.py docs/website/.eleventy.js docs/website/PRESUBMIT.py docs/website/infra/config/PRESUBMIT.py docs/website/scripts/fetch_lobs.py docs/website/scripts/fetch_node_modules.py docs/website/site/Home/google-ssl.xml docs/website/site/administrators/err_ssl_weak_server_ephemeral_dh_key/redirect-dh.xml docs/website/site/chromium-os/developer-library/guides/testing/web-testing/browser-connection/test-chrome-connection.js docs/website/site/chromium-os/developer-library/guides/testing/web-testing/iwa/test-iwa-interaction.js docs/website/site/chromium-os/developer-library/guides/testing/web-testing/kiosk/test-iwa-kiosk.js docs/website/site/chromium-os/developer-library/guides/testing/web-testing/pwa/test-pwa-lifecycle.js docs/website/site/chromium-os/developer-library/guides/testing/web-testing/pwa/test-pwa-lifecycle.py docs/website/site/chromium-os/developer-library/guides/testing/web-testing/pwa/test-pwa-lifecycle.ts docs/website/site/chromium-os/developer-library/guides/testing/web-testing/swa/test-file-download.js docs/website/site/chromium-os/developer-library/reference/linux-constants/syscalls/syscalls.py docs/website/site/chromium-os/developer-library/reference/upstart-cookbook/index.html docs/website/site/developers/design-documents/accessibility/tracker/CSUN_Accessibility_in_the_Cloud.txt docs/website/site/developers/design-documents/accessibility/tracker/CSUN_Improving_Access_To_Web_Platforms_Content_and_Applications.txt docs/website/site/sts/redirect.xml extensions/browser/PRESUBMIT.py extensions/browser/api/content_settings/content_settings_store_unittest.cc extensions/browser/api/content_settings/content_settings_unittest.cc extensions/browser/api/declarative/declarative_rule.h extensions/browser/api/declarative_net_request/composite_matcher_unittest.cc extensions/browser/api/declarative_net_request/constants.cc extensions/browser/api/declarative_net_request/file_sequence_helper_unittest.cc extensions/browser/api/declarative_net_request/flat_ruleset_indexer_unittest.cc extensions/browser/api/declarative_net_request/indexed_rule_unittest.cc extensions/browser/api/declarative_net_request/ruleset_matcher_unittest.cc extensions/browser/api/feedback_private/feedback_private_api.cc extensions/browser/api/feedback_private/feedback_service.cc extensions/browser/api/feedback_private/feedback_service.h extensions/browser/api/feedback_private/feedback_service_unittest.cc extensions/browser/api/file_handlers/mime_util.h extensions/browser/api/management/management_api_constants.h extensions/browser/api/web_request/extension_web_request_event_router_unittest.cc extensions/browser/api/web_request/web_request_permissions.cc extensions/browser/api/web_request/web_request_permissions_unittest.cc extensions/browser/api/web_request/web_request_proxying_url_loader_factory.cc extensions/browser/browser_frame_context_data_unittest.cc extensions/browser/convert_user_script_unittest.cc extensions/browser/event_listener_map.h extensions/browser/event_listener_map_unittest.cc extensions/browser/event_router_unittest.cc extensions/browser/extension_prefs_observer.h extensions/browser/install_signer.cc extensions/browser/permissions/permissions_updater.cc extensions/browser/permissions/scripting_permissions_modifier.h extensions/browser/permissions_manager.h extensions/browser/script_injection_tracker.cc extensions/browser/suggest_permission_util.cc extensions/browser/updater/extension_downloader.cc extensions/browser/updater/extension_downloader_test_helper.cc extensions/browser/updater/extension_downloader_unittest.cc extensions/browser/updater/safe_manifest_parser.cc extensions/browser/updater/safe_manifest_parser.h extensions/browser/updater/safe_manifest_parser_unittest.cc extensions/browser/url_loader_factory_manager.h extensions/common/api/PRESUBMIT.py extensions/common/api/_api_features.json extensions/common/api/app_window.idl extensions/common/api/extensions_manifest_types.json extensions/common/api/i18n.json extensions/common/api/printer_provider.idl extensions/common/api/socket.idl extensions/common/api/sockets_tcp.idl extensions/common/api/sockets_tcp_server.idl extensions/common/api/sockets_udp.idl extensions/common/content_script_injection_url_getter.cc extensions/common/csp_validator.cc extensions/common/csp_validator.h extensions/common/csp_validator_unittest.cc extensions/common/event_filter_unittest.cc extensions/common/event_matcher.h extensions/common/extension.cc extensions/common/extension_builder_unittest.cc extensions/common/extension_features.h extensions/common/extension_l10n_util_unittest.cc extensions/common/extension_set_unittest.cc extensions/common/extension_urls.cc extensions/common/extension_urls.h extensions/common/extension_urls_unittest.cc extensions/common/file_util_unittest.cc extensions/common/manifest_constants.h extensions/common/manifest_handlers/content_capabilities_manifest_unittest.cc extensions/common/manifest_handlers/csp_info_unittest.cc extensions/common/manifest_handlers/externally_connectable_unittest.cc extensions/common/manifest_handlers/oauth2_manifest_unittest.cc extensions/common/manifest_handlers/protocol_handler_manifest_unittest.cc extensions/common/manifest_handlers/replacement_apps_unittest.cc extensions/common/message_bundle.h extensions/common/mojom/permission_set_mojom_traits_unittest.cc extensions/common/mojom/url_pattern_set_mojom_traits_unittest.cc extensions/common/permissions/PRESUBMIT.py extensions/common/permissions/api_permission.h extensions/common/permissions/api_permission_set.h extensions/common/permissions/permissions_data.h extensions/common/permissions/socket_permission_unittest.cc extensions/common/url_pattern.cc extensions/common/url_pattern.h extensions/common/url_pattern_set.h extensions/common/url_pattern_set_unittest.cc extensions/common/url_pattern_unittest.cc extensions/common/user_script_unittest.cc extensions/common/utils/content_script_utils.cc extensions/renderer/api/runtime_hooks_delegate_unittest.cc extensions/renderer/bindings/listener_tracker_unittest.cc extensions/renderer/extension_throttle_unittest.cc extensions/renderer/resources/automation/PRESUBMIT.py extensions/renderer/resources/permissions_custom_bindings.js extensions/renderer/resources/platform_app.js extensions/renderer/resources/web_request_event.js extensions/renderer/script_context.cc extensions/shell/browser/shell_prefs.cc extensions/strings/extensions_strings.grd extensions/test/extension_background_page_waiter.h fuchsia_web/av_testing/cast_starter.html fuchsia_web/webengine/browser/frame_impl_browsertest.cc fuchsia_web/webengine/browser/web_engine_content_browser_client_unittest.cc fuchsia_web/webengine/test/data/play_video.html fuchsia_web/webengine/web_engine_integration_test.cc gin/thread_isolation.cc gin/v8_initializer.cc google_apis/calendar/calendar_api_requests.cc google_apis/calendar/calendar_api_requests.h google_apis/calendar/calendar_api_requests_unittest.cc google_apis/calendar/calendar_api_response_types_unittest.cc google_apis/calendar/calendar_api_url_generator_unittest.cc google_apis/classroom/classroom_api_course_work_materials_response_types.h google_apis/classroom/classroom_api_course_work_materials_response_types_unittest.cc google_apis/classroom/classroom_api_course_work_response_types.h google_apis/classroom/classroom_api_course_work_response_types_unittest.cc google_apis/classroom/classroom_api_courses_response_types.h google_apis/classroom/classroom_api_list_course_work_materials_request.h google_apis/classroom/classroom_api_list_course_work_request.h google_apis/classroom/classroom_api_list_course_work_request_unittest.cc google_apis/classroom/classroom_api_list_courses_request.h google_apis/classroom/classroom_api_list_student_submissions_request.h google_apis/classroom/classroom_api_list_students_request.h google_apis/classroom/classroom_api_material_response_types.h google_apis/classroom/classroom_api_student_submissions_response_types.h google_apis/classroom/classroom_api_students_response_types.h google_apis/common/api_key_request_util.h google_apis/common/base_requests.cc google_apis/drive/drive_api_parser.cc google_apis/drive/drive_api_parser.h google_apis/drive/drive_api_parser_unittest.cc google_apis/drive/drive_api_requests.h google_apis/drive/drive_api_url_generator.cc google_apis/drive/drive_base_requests.cc google_apis/gaia/fake_gaia.cc google_apis/gaia/fake_gaia.h google_apis/gaia/gaia_access_token_fetcher.h google_apis/gaia/gaia_auth_fetcher.cc google_apis/gaia/gaia_auth_fetcher_unittest.cc google_apis/gaia/gaia_auth_util.cc google_apis/gaia/gaia_auth_util.h google_apis/gaia/gaia_auth_util_unittest.cc google_apis/gaia/gaia_constants.cc google_apis/gaia/gaia_constants.h google_apis/gaia/gaia_oauth_client.cc google_apis/gaia/gaia_oauth_client.h google_apis/gaia/gaia_oauth_client_unittest.cc google_apis/gaia/gaia_switches.h google_apis/gaia/gaia_urls.cc google_apis/gaia/gaia_urls.h google_apis/gaia/gaia_urls_unittest.cc google_apis/gaia/google_service_auth_error.h google_apis/gaia/oauth2_access_token_fetcher_impl_unittest.cc google_apis/gaia/oauth2_access_token_manager.cc google_apis/gaia/oauth2_api_call_flow_unittest.cc google_apis/gaia/oauth2_mint_token_flow_unittest.cc google_apis/gaia/oauth_multilogin_result_unittest.cc google_apis/gaia/register_bound_session_payload_unittest.cc google_apis/gcm/base/mcs_util.cc google_apis/gcm/engine/account_mapping_unittest.cc google_apis/gcm/engine/gcm_store_impl_unittest.cc google_apis/gcm/engine/gservices_settings.cc google_apis/gcm/engine/gservices_settings_unittest.cc google_apis/gcm/engine/mcs_client.cc google_apis/gcm/engine/registration_request_unittest.cc google_apis/gcm/tools/mcs_probe.cc google_apis/google_api_keys.cc google_apis/google_api_keys.h google_apis/people/people_api_request_types.h google_apis/people/people_api_requests.h google_apis/people/people_api_response_types.h google_apis/tasks/tasks_api_requests.h google_apis/tasks/tasks_api_response_types.h google_apis/tasks/tasks_api_response_types_unittest.cc google_apis/tasks/tasks_api_task_status.h google_apis/tasks/tasks_api_url_generator_utils.h google_apis/tasks/tasks_api_url_generator_utils_unittest.cc google_apis/test/data/calendar/calendar_list.json google_apis/test/data/calendar/event_self_response_statuses.json google_apis/test/data/calendar/event_statuses.json google_apis/test/data/calendar/event_with_attachments.json google_apis/test/data/calendar/event_with_invalid_attachments.json google_apis/test/data/calendar/event_with_invalid_conference_data_uri.json google_apis/test/data/calendar/event_with_missing_entry_point_type.json google_apis/test/data/calendar/events.json google_apis/test/data/calendar/group_calendar_events.json google_apis/test/data/calendar/invalid_events.json google_apis/test/data/drive/about.json google_apis/test/data/drive/changelist.json google_apis/test/data/drive/changelist_with_new_start_page_token.json google_apis/test/data/drive/directory_entry.json google_apis/test/data/drive/file_entry.json google_apis/test/data/drive/filelist.json google_apis/youtube_music/youtube_music_api_request_types.cc google_apis/youtube_music/youtube_music_api_request_types_unittest.cc google_apis/youtube_music/youtube_music_api_requests.cc google_apis/youtube_music/youtube_music_api_requests.h google_apis/youtube_music/youtube_music_api_requests_unittest.cc google_apis/youtube_music/youtube_music_api_response_types.h gpu/GLES2/extensions/ANGLE/EGL_ANGLE_sync_control_rate.txt gpu/GLES2/extensions/CHROMIUM/EGL_CHROMIUM_sync_control.txt gpu/PRESUBMIT.py gpu/command_buffer/PRESUBMIT.py gpu/command_buffer/client/client_shared_image.cc gpu/command_buffer/client/fenced_allocator.h gpu/command_buffer/client/internal/mappable_buffer_test_template.h gpu/command_buffer/client/shared_memory_limits.h gpu/command_buffer/service/common_decoder_unittest.cc gpu/command_buffer/service/gles2_cmd_decoder_passthrough.cc gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc gpu/command_buffer/service/shader_translator_unittest.cc gpu/command_buffer/service/shared_image/ahardwarebuffer_image_backing_factory.cc gpu/command_buffer/service/shared_image/d3d_image_backing_factory.cc gpu/command_buffer/service/shared_image/dcomp_image_backing_factory.cc gpu/command_buffer/service/shared_image/dcomp_surface_image_backing.cc gpu/command_buffer/service/shared_image/dxgi_swap_chain_image_representation.cc gpu/command_buffer/service/shared_image/ozone_image_backing_factory.cc gpu/command_buffer/service/shared_image/shared_image_factory.cc gpu/command_buffer/service/shared_image/video_image_reader_image_backing.cc gpu/command_buffer/service/shared_image_interface_in_process_base.cc gpu/config/PRESUBMIT.py gpu/config/gpu_control_list_format.txt gpu/config/gpu_info_collector_win.cc gpu/config/gpu_switches.cc gpu/ipc/client/shared_image_interface_proxy.cc gpu/ipc/common/PRESUBMIT.py gpu/vulkan/PRESUBMIT.py headless/lib/browser/protocol/headless_handler.cc headless/test/data/dom_tree_test.html headless/test/data/structured_doc.html headless/test/data/structured_doc/doc.html headless/test/dom_tree_extraction_expected_nodes.txt headless/test/headless_compositor_browsertest.cc infra/config/PRESUBMIT.py infra/config/generated/health-specs/health-specs.json infra/config/migration/lib/PRESUBMIT.py infra/config/scripts/PRESUBMIT.py infra/config/scripts/sync-pyl-files.py ipc/ipc_channel.h media/PRESUBMIT.py media/audio/android/audio_track_output_stream.cc media/audio/android/opensles_util.cc media/audio/cras/cras_util.cc media/audio/ios/audio_session_manager_ios.mm media/audio/win/audio_low_latency_input_win.cc media/audio/win/audio_low_latency_output_win.h media/audio/win/core_audio_util_win.cc media/audio/win/core_audio_util_win.h media/base/android/media_codec_bridge_impl.cc media/base/android/media_drm_bridge.cc media/base/container_names.cc media/base/format_utils.cc media/base/key_systems_impl.cc media/base/media_drm_key_type.h media/base/media_log_unittest.cc media/base/media_switches.cc media/base/status.h media/base/test_random.h media/base/video_codec_string_parsers.h media/base/video_encoder.cc media/base/video_frame.cc media/base/win/dxgi_device_manager.cc media/base/win/hresults.h media/base/win/media_foundation_cdm_proxy.h media/base/win/mf_helpers.cc media/base/win/mf_helpers.h media/base/win/mf_initializer.cc media/capture/content/smooth_event_sampler_unittest.cc media/capture/video/android/video_capture_device_android.h media/capture/video/apple/video_capture_device_avfoundation.mm media/capture/video/chromeos/camera_3a_controller.cc media/capture/video/chromeos/camera_3a_controller.h media/capture/video/chromeos/camera_device_delegate.cc media/capture/video/linux/v4l2_capture_delegate.cc media/capture/video/video_capture_device_client.cc media/capture/video/win/sink_filter_win.h media/capture/video/win/video_capture_device_factory_win.cc media/capture/video/win/video_capture_device_mf_win.cc media/capture/video/win/video_capture_device_utils_win.cc media/capture/video/win/video_capture_device_utils_win.h media/capture/video/win/video_capture_device_win.cc media/cast/encoding/external_video_encoder.cc media/cast/encoding/media_video_encoder_wrapper_unittest.cc media/cast/encoding/size_adaptable_video_encoder_base_unittest.cc media/cast/encoding/vpx_encoder.cc media/cast/encoding/vpx_quantizer_parser_unittest.cc media/cast/sender/openscreen_frame_sender.h media/cast/sender/video_bitrate_suggester.h media/cast/sender/video_sender_unittest.cc media/cdm/library_cdm/clear_key_cdm/clear_key_cdm.cc media/cdm/win/media_foundation_cdm.cc media/cdm/win/test/media_foundation_clear_key_decryptor.cc media/cdm/win/test/mock_media_protection_pmp_server.h media/ffmpeg/ffmpeg_regression_tests.cc media/ffmpeg/scripts/build_ffmpeg.py media/ffmpeg/scripts/credits_updater.py media/ffmpeg/scripts/generate_gn.py media/ffmpeg/scripts/robo_branch.py media/ffmpeg/scripts/robo_setup.py media/filters/decrypting_audio_decoder.h media/filters/decrypting_video_decoder.h media/filters/source_buffer_stream_unittest.cc media/filters/video_cadence_estimator.h media/filters/win/media_foundation_audio_decoder.cc media/formats/hls/media_playlist_unittest.cc media/formats/hls/multivariant_playlist_unittest.cc media/formats/hls/tags_unittest.cc media/fuchsia/common/vmo_buffer_writer_queue.cc media/gpu/android/ndk_video_encode_accelerator.cc media/gpu/android/video_accelerator_util.h media/gpu/av1_decoder_unittest.cc media/gpu/buffer_validation_unittest.cc media/gpu/chromeos/shaders/PRESUBMIT.py media/gpu/gpu_video_encode_accelerator_helpers.cc media/gpu/macros.h media/gpu/svc_layers.cc media/gpu/test/video_encoder/video_encoder_client.cc media/gpu/test/video_encoder/video_encoder_test_environment.cc media/gpu/v4l2/mt21/mt21_decompressor_unittest.cc media/gpu/v4l2/mt21/mt21_util.h media/gpu/v4l2/test/av1_decoder.cc media/gpu/v4l2/test/video_decoder.cc media/gpu/v4l2/v4l2_stateful_video_decoder.cc media/gpu/v4l2/v4l2_video_decoder_delegate_av1.cc media/gpu/vaapi/test/av1_decoder.cc media/gpu/vaapi/test/vp8_decoder.cc media/gpu/vaapi/test/vp9_decoder.cc media/gpu/vaapi/vaapi_image_decoder_test_common.h media/gpu/vaapi/vaapi_unittest.cc media/gpu/windows/d3d11_video_decoder_wrapper.cc media/gpu/windows/d3d12_copy_command_list_wrapper.cc media/gpu/windows/d3d12_video_encode_h264_delegate.cc media/gpu/windows/d3d12_video_helpers.cc media/gpu/windows/d3d12_video_helpers.h media/gpu/windows/media_foundation_video_encode_accelerator_win.cc media/gpu/windows/mf_audio_encoder.cc media/gpu/windows/mf_audio_encoder.h media/mojo/clients/mojo_gpu_video_accelerator_factories.cc media/mojo/mojom/stable/native_pixmap_handle_mojom_traits.cc media/mojo/services/media_foundation_service.cc media/mojo/services/media_metrics_provider_unittest.cc media/mojo/services/mojo_video_encoder_metrics_provider_service_unittest.cc media/mojo/services/watch_time_recorder_unittest.cc media/parsers/webp_parser.cc media/parsers/webp_parser.h media/renderers/audio_renderer_impl.cc media/renderers/audio_renderer_impl.h media/renderers/video_renderer_impl.h media/renderers/win/media_engine_extension.h media/renderers/win/media_engine_notify_impl.cc media/renderers/win/media_engine_notify_impl.h media/renderers/win/media_foundation_protection_manager.cc media/renderers/win/media_foundation_protection_manager.h media/renderers/win/media_foundation_renderer.cc media/renderers/win/media_foundation_source_wrapper.cc media/renderers/win/media_foundation_source_wrapper.h media/renderers/win/media_foundation_stream_wrapper.cc media/renderers/win/media_foundation_stream_wrapper.h media/renderers/win/media_foundation_video_stream.cc media/test/PRESUBMIT.py media/video/mappable_shared_image_video_frame_pool.cc media/video/video_encode_accelerator.h media/video/vpx_video_encoder.cc mojo/PRESUBMIT.py mojo/core/channel.h mojo/core/node_channel.h mojo/core/platform_handle_in_transit.cc mojo/public/cpp/platform/named_platform_channel_win.cc mojo/public/interfaces/bindings/tests/PRESUBMIT.py net/BUILD.gn net/PRESUBMIT.py net/android/http_auth_negotiate_android.h net/android/network_library.cc net/android/network_library.h net/android/unittest_support/AndroidManifest.xml net/base/address_tracker_linux.cc net/base/apple/url_conversions_unittest.mm net/base/file_stream_context.h net/base/filename_util.cc net/base/filename_util_internal.cc net/base/filename_util_unittest.cc net/base/host_port_pair_unittest.cc net/base/interval_test.cc net/base/load_timing_info.h net/base/mime_sniffer_unittest.cc net/base/mime_util.cc net/base/network_change_notifier_apple.mm net/base/network_change_notifier_win.cc net/base/network_interfaces_getifaddrs_android.cc net/base/network_interfaces_linux.cc net/base/network_interfaces_win.cc net/base/registry_controlled_domains/registry_controlled_domain.cc net/base/registry_controlled_domains/registry_controlled_domain.h net/base/registry_controlled_domains/registry_controlled_domain_unittest.cc net/base/scheme_host_port_matcher_rule.cc net/base/scheme_host_port_matcher_rule.h net/base/scheme_host_port_matcher_rule_unittest.cc net/base/scheme_host_port_matcher_unittest.cc net/base/url_util.cc net/base/url_util_unittest.cc net/cert/cert_verify_proc_unittest.cc net/cert/internal/trust_store_win.cc net/cert/nss_cert_database.cc net/cert/nss_cert_database_unittest.cc net/cert/x509_certificate.cc net/cert/x509_certificate_unittest.cc net/cert/x509_util_nss_unittest.cc net/cookies/canonical_cookie.cc net/cookies/canonical_cookie_unittest.cc net/cookies/cookie_monster.cc net/cookies/cookie_monster.h net/cookies/cookie_monster_perftest.cc net/cookies/cookie_store_test_helpers.h net/cookies/cookie_store_unittest.h net/cookies/cookie_util.h net/cookies/parsed_cookie.cc net/cookies/parsed_cookie.h net/data/filter_unittests/google.txt net/data/fuzzer_data/http_security_headers/http_security_header_047.txt net/data/parse_certificate_unittest/v3_certificate_template.txt net/device_bound_sessions/registration_fetcher_param.cc net/device_bound_sessions/session_service_impl.cc net/device_bound_sessions/session_service_impl_unittest.cc net/device_bound_sessions/session_unittest.cc net/device_bound_sessions/unexportable_key_service_factory.cc net/device_bound_sessions/url_fetcher.cc net/disk_cache/blockfile/file_ios.cc net/disk_cache/disk_cache.h net/disk_cache/simple/simple_backend_impl.h net/disk_cache/simple/simple_file_enumerator.h net/disk_cache/simple/simple_index.cc net/dns/address_sorter_posix.cc net/dns/context_host_resolver_unittest.cc net/dns/dns_config_service_linux_unittest.cc net/dns/dns_config_service_posix_unittest.cc net/dns/dns_config_service_win.cc net/dns/dns_config_service_win.h net/dns/dns_config_service_win_unittest.cc net/dns/dns_names_util_unittest.cc net/dns/dns_response_result_extractor.cc net/dns/dns_response_result_extractor_unittest.cc net/dns/dns_response_unittest.cc net/dns/dns_test_util.h net/dns/dns_transaction.cc net/dns/dns_transaction.h net/dns/dns_transaction_unittest.cc net/dns/dns_udp_tracker.h net/dns/host_cache_unittest.cc net/dns/host_resolver_manager_unittest.cc net/dns/host_resolver_mdns_task.cc net/dns/https_record_rdata_unittest.cc net/dns/loopback_only.h net/dns/mapped_host_resolver_unittest.cc net/dns/mdns_cache_unittest.cc net/dns/mdns_client.h net/dns/notify_watcher_mac.cc net/dns/platform_dns_query_executor_android.h net/dns/platform_dns_query_executor_android_unittest.cc net/dns/public/doh_provider_entry.cc net/dns/record_parsed_unittest.cc net/dns/record_rdata_unittest.cc net/extras/sqlite/sqlite_persistent_cookie_store.cc net/extras/sqlite/sqlite_persistent_cookie_store_unittest.cc net/http/BUILD.gn net/http/alternative_service.h net/http/http_auth_cache_unittest.cc net/http/http_auth_challenge_tokenizer.cc net/http/http_auth_filter_unittest.cc net/http/http_auth_gssapi_posix_unittest.cc net/http/http_auth_handler_digest_unittest.cc net/http/http_auth_handler_factory_unittest.cc net/http/http_auth_handler_negotiate.cc net/http/http_auth_handler_ntlm.cc net/http/http_auth_handler_ntlm_win.cc net/http/http_auth_preferences_unittest.cc net/http/http_auth_sspi_win.cc net/http/http_auth_sspi_win_unittest.cc net/http/http_cache_transaction.cc net/http/http_cache_unittest.cc net/http/http_chunked_decoder.cc net/http/http_chunked_decoder.h net/http/http_network_layer_unittest.cc net/http/http_network_transaction.cc net/http/http_network_transaction_unittest.cc net/http/http_proxy_connect_job_unittest.cc net/http/http_response_headers.cc net/http/http_server_properties.cc net/http/http_server_properties.h net/http/http_server_properties_manager.cc net/http/http_server_properties_manager_unittest.cc net/http/http_server_properties_unittest.cc net/http/http_stream_factory_job_controller_unittest.cc net/http/http_stream_factory_unittest.cc net/http/http_stream_parser.cc net/http/http_stream_pool_attempt_manager.cc net/http/http_transaction_test_util.cc net/http/http_util.cc net/http/http_util_unittest.cc net/http/mock_sspi_library_win.cc net/http/no_vary_search_cache.h net/http/transport_security_state.cc net/http/transport_security_state.h net/http/transport_security_state_unittest.cc net/http/url_security_manager_win.cc net/log/file_net_log_observer.cc net/log/net_log.h net/log/net_log_event_type_list.h net/nqe/network_quality_estimator_params.cc net/nqe/network_quality_estimator_util_unittest.cc net/nqe/socket_watcher.cc net/ntlm/ntlm.h net/ntlm/ntlm_buffer_reader.h net/ntlm/ntlm_buffer_writer.h net/ntlm/ntlm_client.cc net/ntlm/ntlm_client.h net/ntlm/ntlm_test_data.h net/ntlm/ntlm_unittest.cc net/proxy_resolution/configured_proxy_resolution_service.h net/proxy_resolution/configured_proxy_resolution_service_unittest.cc net/proxy_resolution/pac_file_decider.cc net/proxy_resolution/pac_file_decider_unittest.cc net/proxy_resolution/proxy_config.h net/proxy_resolution/proxy_config_service_android.cc net/proxy_resolution/proxy_config_service_linux.cc net/proxy_resolution/proxy_config_service_linux.h net/proxy_resolution/proxy_config_service_linux_unittest.cc net/proxy_resolution/proxy_config_unittest.cc net/proxy_resolution/proxy_host_matching_rules_unittest.cc net/proxy_resolution/proxy_resolver_apple.h net/proxy_resolution/win/dhcp_pac_file_adapter_fetcher_win.cc net/proxy_resolution/win/proxy_config_service_win_unittest.cc net/proxy_resolution/win/proxy_resolver_winhttp.cc net/quic/bidirectional_stream_quic_impl_unittest.cc net/quic/crypto/proof_verifier_chromium.cc net/quic/properties_based_quic_server_info_test.cc net/quic/quic_chromium_client_session.cc net/quic/quic_chromium_client_session_test.cc net/quic/quic_chromium_client_stream_test.cc net/quic/quic_network_transaction_unittest.cc net/quic/quic_proxy_client_socket_test_base.h net/quic/quic_session_pool.cc net/quic/quic_session_pool_test.cc net/quic/quic_session_pool_test_base.cc net/quic/quic_test_packet_maker.h net/socket/socket_options.h net/socket/socket_test_util.cc net/socket/socks5_client_socket_unittest.cc net/socket/socks_connect_job_unittest.cc net/socket/ssl_client_socket_impl.cc net/socket/ssl_client_socket_unittest.cc net/socket/tcp_socket_io_completion_port_win.cc net/socket/tcp_socket_win.cc net/socket/transport_client_socket_pool_unittest.cc net/socket/udp_socket_posix.h net/socket/udp_socket_unittest.cc net/socket/udp_socket_win.cc net/socket/udp_socket_win.h net/socket/websocket_transport_client_socket_pool_unittest.cc net/spdy/spdy_http_stream.cc net/spdy/spdy_http_utils_unittest.cc net/spdy/spdy_proxy_client_socket_unittest.cc net/spdy/spdy_session.cc net/spdy/spdy_session_unittest.cc net/ssl/client_cert_store_win.cc net/ssl/openssl_ssl_util.cc net/ssl/openssl_ssl_util.h net/ssl/ssl_key_logger.h net/ssl/ssl_platform_key_android.cc net/ssl/ssl_platform_key_win_unittest.cc net/test/ct_test_util.cc net/test/test_certificate_data.h net/third_party/mozilla_security_manager/nsNSSCertificateDB.cpp net/third_party/mozilla_security_manager/nsNSSCertificateDB.h net/third_party/mozilla_security_manager/nsPKCS12Blob.cpp net/third_party/mozilla_security_manager/nsPKCS12Blob.h net/third_party/mozilla_win/cert/win_util.cc net/third_party/mozilla_win/cert/win_util.h net/third_party/quiche/BUILD.gn net/third_party/quiche/src/quiche/balsa/balsa_frame_test.cc net/third_party/quiche/src/quiche/binary_http/binary_http_message_test.cc net/third_party/quiche/src/quiche/blind_sign_auth/blind_sign_auth.cc net/third_party/quiche/src/quiche/common/platform/api/quiche_hostname_utils_test.cc net/third_party/quiche/src/quiche/http2/core/spdy_protocol.h net/third_party/quiche/src/quiche/quic/core/crypto/client_proof_source_test.cc net/third_party/quiche/src/quiche/quic/core/crypto/quic_crypto_client_config.h net/third_party/quiche/src/quiche/quic/core/crypto/quic_crypto_client_config_test.cc net/third_party/quiche/src/quiche/quic/core/crypto/tls_server_connection.h net/third_party/quiche/src/quiche/quic/core/http/quic_spdy_server_stream_base_test.cc net/third_party/quiche/src/quiche/quic/core/http/quic_spdy_stream_test.cc net/third_party/quiche/src/quiche/quic/core/http/spdy_utils_test.cc net/third_party/quiche/src/quiche/quic/core/quic_connection_test.cc net/third_party/quiche/src/quiche/quic/core/quic_crypto_stream.h net/third_party/quiche/src/quiche/quic/core/quic_dispatcher_test.cc net/third_party/quiche/src/quiche/quic/core/quic_packet_creator_test.cc net/third_party/quiche/src/quiche/quic/core/quic_server_id_test.cc net/third_party/quiche/src/quiche/quic/core/quic_session_test.cc net/third_party/quiche/src/quiche/quic/core/tls_client_handshaker.h net/third_party/quiche/src/quiche/quic/tools/quic_client_bin.cc net/third_party/quiche/src/quiche/quic/tools/quic_memory_cache_backend.cc net/third_party/quiche/src/quiche/quic/tools/quic_memory_cache_backend_test.cc net/third_party/quiche/src/quiche/quic/tools/quic_simple_server_stream_test.cc net/third_party/quiche/src/quiche/quic/tools/quic_toy_client.cc net/tools/print_certificates.py net/tools/quic/quic_simple_client_bin.cc net/tools/transport_security_state_generator/transport_security_state_generator.cc net/url_request/url_request_context_builder_unittest.cc net/url_request/url_request_http_job_unittest.cc net/url_request/url_request_job_unittest.cc net/url_request/url_request_unittest.cc net/websockets/websocket_stream_test.cc pdf/loader/document_loader_impl.cc pdf/paint_aggregator.h pdf/pdfium/accessibility_unittest.cc pdf/pdfium/pdfium_engine.cc pdf/pdfium/pdfium_engine_unittest.cc pdf/pdfium/pdfium_form_filler_unittest.cc pdf/pdfium/pdfium_mem_buffer_file_write.cc pdf/pdfium/pdfium_page_unittest.cc pdf/pdfium/pdfium_test_base.cc pdf/test/PRESUBMIT.py printing/backend/PRESUBMIT.py printing/backend/print_backend_win.cc printing/backend/win_helper.cc printing/backend/win_helper_unittest.cc printing/backend/xps_utils_win.cc printing/metafile_skia.cc printing/print_settings_initializer_win.cc printing/printing_context.h printing/test/PRESUBMIT.py remoting/base/compute_engine_service_client.cc remoting/base/compute_engine_service_client.h remoting/base/corp_auth_util.cc remoting/base/crash/crashpad_linux.cc remoting/base/crash/crashpad_win.cc remoting/base/instance_identity_token_getter_impl_unittest.cc remoting/base/is_google_email.cc remoting/base/service_urls.cc remoting/base/session_policies.h remoting/codec/video_encoder_vpx.cc remoting/codec/webrtc_video_encoder_vpx.cc remoting/host/audio_capturer_win.cc remoting/host/crash/crash_file_uploader.cc remoting/host/evaluate_capability.cc remoting/host/ftl_echo_message_listener_unittest.cc remoting/host/ftl_host_change_notification_listener_unittest.cc remoting/host/host_config_unittest.cc remoting/host/it2me/com.google.chrome.remote_assistance-firefox.json.jinja2 remoting/host/it2me/it2me_confirmation_dialog_chromeos_unittest.cc remoting/host/it2me/it2me_confirmation_dialog_proxy_unittest.cc remoting/host/it2me/it2me_host_unittest.cc remoting/host/it2me/it2me_native_messaging_host_unittest.cc remoting/host/linux/input_injector_x11.cc remoting/host/linux/linux_me2me_host.py remoting/host/linux/remoting_user_session.cc remoting/host/mouse_shape_pump.cc remoting/host/policy_watcher_unittest.cc remoting/host/remote_open_url/remote_open_url_client_unittest.cc remoting/host/remote_open_url/remote_open_url_message_handler_unittest.cc remoting/host/remoting_register_support_host_request.cc remoting/host/sas_injector_win.cc remoting/host/setup/com.google.chrome.remote_desktop-firefox.json.jinja2 remoting/host/setup/start_host_main.cc remoting/host/touch_injector_win.cc remoting/host/webauthn/remote_webauthn_extension_notifier.cc remoting/host/win/desktop_event_handler.h remoting/host/win/etw_trace_controller.cc remoting/host/win/mouse_cursor_monitor_win.cc remoting/host/win/rdp_client_window.cc remoting/host/win/trust_util.cc remoting/protocol/authenticator_test_base.h remoting/protocol/fake_session.cc remoting/protocol/jingle_messages.h remoting/protocol/jingle_messages_unittest.cc remoting/protocol/jingle_session_unittest.cc remoting/protocol/negotiating_authenticator_unittest.cc remoting/protocol/socket_util.cc remoting/resources/remoting_strings.grd remoting/signaling/corp_message_channel_strategy_unittest.cc remoting/signaling/corp_messaging_constants.cc remoting/signaling/ftl_messaging_client.cc remoting/signaling/ftl_messaging_client_unittest.cc remoting/signaling/ftl_signal_strategy_unittest.cc remoting/signaling/signaling_address.cc remoting/signaling/signaling_address_unittest.cc remoting/signaling/signaling_id_util.cc remoting/signaling/signaling_id_util.h remoting/signaling/signaling_id_util_unittest.cc remoting/test/it2me_cli_host.cc remoting/test/session_authz_playground.cc remoting/test/test_oauth_token_getter.cc remoting/tools/build/remoting_localize.py remoting/tools/zip2msi.py rlz/lib/financial_ping.cc rlz/lib/lib_values.cc rlz/lib/rlz_lib_test.cc sandbox/features.gni sandbox/linux/integration_tests/bpf_dsl_seccomp_unittest.cc sandbox/linux/seccomp-bpf-helpers/baseline_policy.cc sandbox/linux/seccomp-bpf-helpers/baseline_policy_android.cc sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.cc sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc sandbox/linux/services/libc_interceptor.cc sandbox/linux/services/libc_interceptor.h sandbox/linux/suid/client/setuid_sandbox_client.cc sandbox/linux/suid/client/setuid_sandbox_host.cc sandbox/linux/suid/sandbox.c sandbox/linux/system_headers/linux_prctl.h sandbox/policy/features.cc sandbox/policy/linux/sandbox_linux.h sandbox/policy/sandbox.cc sandbox/policy/win/sandbox_win.cc sandbox/win/src/interception.cc sandbox/win/src/interception.h sandbox/win/src/interception_agent.cc sandbox/win/src/interception_agent.h sandbox/win/src/interception_internal.h sandbox/win/src/nt_internals.h sandbox/win/src/process_mitigations.cc sandbox/win/src/process_mitigations_unittest.cc sandbox/win/src/resolver.h sandbox/win/src/sandbox_nt_util.cc sandbox/win/src/sandbox_nt_util.h sandbox/win/src/sandbox_policy.h sandbox/win/src/security_level.h sandbox/win/src/startup_information_helper.cc sandbox/win/src/win_utils.cc services/BUILD.gn services/device/generic_sensor/platform_sensor_and_provider_unittest_win.cc services/device/generic_sensor/platform_sensor_provider_chromeos.cc services/device/generic_sensor/platform_sensor_reader_win.cc services/device/generic_sensor/platform_sensor_reader_winrt.cc services/device/geolocation/network_location_provider_unittest.cc services/device/geolocation/network_location_request.cc services/device/geolocation/public_ip_address_geolocator_unittest.cc services/device/geolocation/public_ip_address_location_notifier_unittest.cc services/device/hid/hid_preparsed_data.cc services/device/hid/hid_service_win.h services/device/public/cpp/bluetooth/bluetooth_utils.cc services/device/serial/serial_io_handler_win.cc services/device/usb/mojo/device_impl.cc services/device/usb/usb_device_handle_win.cc services/device/usb/usb_service_win.cc services/image_annotation/annotator_unittest.cc services/image_annotation/image_annotation_service.cc services/media_session/media_controller_unittest.cc services/network/cookie_manager_unittest.cc services/network/cors/preflight_controller_unittest.cc services/network/cors/preflight_result_unittest.cc services/network/enterprise/encryption/chunked_encryptor.h services/network/host_resolver_unittest.cc services/network/http_cache_data_counter_unittest.cc services/network/http_cache_data_remover_unittest.cc services/network/mojo_host_resolver_impl_unittest.cc services/network/network_context.h services/network/network_context_unittest.cc services/network/orb/orb_impl.cc services/network/orb/orb_impl_unittest.cc services/network/orb/orb_sniffers.cc services/network/pervasive_resources/shared_resource_checker.cc services/network/pervasive_resources/shared_resource_checker.h services/network/pervasive_resources/shared_resource_checker_patterns.h services/network/proxy_resolver_factory_mojo_unittest.cc services/network/public/cpp/content_security_policy/content_security_policy_unittest.cc services/network/public/cpp/cors/cors_error_status.h services/network/public/cpp/cors/cors_unittest.cc services/network/public/cpp/cors/origin_access_entry_unittest.cc services/network/public/cpp/cors/origin_access_list_unittest.cc services/network/public/cpp/features.cc services/network/public/cpp/features.h services/network/public/cpp/is_potentially_trustworthy.cc services/network/public/cpp/network_switches.cc services/network/public/cpp/permissions_policy/origin_with_possible_wildcards_unittest.cc services/network/public/cpp/proxy_config_mojom_traits_unittest.cc services/network/public/cpp/transferable_socket.cc services/network/public/mojom/permissions_policy/PRESUBMIT.py services/network/sct_auditing/sct_auditing_reporter.cc services/network/trust_tokens/trust_token_client_data_canonicalization.h services/network/trust_tokens/trust_token_key_commitment_parser.h services/network/trust_tokens/trust_token_key_commitments.h services/network/udp_socket_unittest.cc services/network/url_loader_util.cc services/network/websocket_throttler.h services/preferences/tracked/device_id_unittest.cc services/proxy_resolver/host_resolver_mojo.cc services/proxy_resolver/pac_js_library.h services/proxy_resolver/proxy_resolver_v8_tracing.cc services/proxy_resolver/proxy_resolver_v8_tracing.h services/proxy_resolver/proxy_resolver_v8_unittest.cc services/proxy_resolver/test/PRESUBMIT.py services/proxy_resolver/test/data/proxy_resolver_v8_unittest/pac_library_unittest.js services/proxy_resolver_win/windows_system_proxy_resolver_impl.cc services/proxy_resolver_win/winhttp_api_wrapper.h services/resource_coordinator/memory_instrumentation/queued_request_dispatcher.cc services/resource_coordinator/public/cpp/memory_instrumentation/client_process_impl.h services/service_manager/public/cpp/manifest.h services/service_manager/service_process_launcher.cc services/shape_detection/barcode_detection_impl_chrome_unittest.cc services/shape_detection/barcode_detection_impl_mac_unittest.mm services/shape_detection/text_detection_impl_mac_unittest.mm services/shape_detection/text_detection_impl_win_unittest.cc services/test/data/decoder/google.txt services/tracing/perfetto/privacy_filtered_fields-inl.h services/tracing/public/cpp/perfetto/java_heap_profiler/hprof_parser_android.h services/tracing/public/cpp/stack_sampling/tracing_sampler_profiler.h services/tracing/public/cpp/stack_sampling/tracing_sampler_profiler_unittest.cc services/video_capture/test/fake_video_capture_device_unittest.cc services/viz/public/cpp/gpu/gpu.cc services/webnn/dml/adapter.cc services/webnn/dml/adapter.h services/webnn/dml/command_recorder.cc services/webnn/dml/context_impl_dml.cc services/webnn/dml/graph_builder_dml.h services/webnn/dml/graph_impl_dml.cc services/webnn/dml/tensor_desc.cc services/webnn/dml/utils.cc services/webnn/ort/environment.cc services/webnn/public/cpp/platform_functions_win.cc services/webnn/tflite/graph_builder_tflite.cc services/webnn/webnn_graph_impl_backend_test.cc skia/config/SkUserConfig.h skia/ext/SkMemory_new_handler.cpp skia/ext/skia_utils_ios_unittest.mm sql/database.cc sql/vfs_wrapper.cc storage/browser/blob/blob_reader.h storage/browser/file_system/external_mount_points_unittest.cc storage/browser/file_system/file_system_backend.h storage/browser/file_system/file_system_context_unittest.cc storage/browser/file_system/file_system_url.h storage/browser/file_system/file_system_url_unittest.cc storage/browser/file_system/isolated_context_unittest.cc storage/browser/file_system/sandbox_file_system_backend_unittest.cc storage/browser/quota/quota_database_unittest.cc storage/common/database/database_identifier_unittest.cc storage/common/file_system/file_system_util_unittest.cc storage/test/PRESUBMIT.py testing/PRESUBMIT.py testing/android/instrumentation/java/AndroidManifest_permissions.xml testing/android/junit/shadows-allowlist.txt testing/android/native_test/java/AndroidManifest.xml.jinja2 testing/buildbot/PRESUBMIT.py testing/buildbot/buildbot_json_magic_substitutions.py testing/buildbot/check.py testing/buildbot/chromium.perf.json testing/buildbot/chromium.perf.pinpoint.json testing/buildbot/filters/PRESUBMIT.py testing/buildbot/generate_buildbot_json.py testing/buildbot/scripts/upload_test_result_artifacts.py testing/chromoting/browser_test_commands_linux.txt testing/chromoting/chromoting_test_driver_commands_linux.txt testing/flake_suppressor_common/expectations.py testing/flake_suppressor_common/expectations_unittest.py testing/flake_suppressor_common/queries.py testing/flake_suppressor_common/results.py testing/flake_suppressor_common/results_unittest.py testing/generate_location_tags.py testing/gtest/BUILD.gn testing/libfuzzer/BUILD.gn testing/libfuzzer/proto/skia_image_filter_proto_converter.cc testing/libfuzzer/unittest_main.cc testing/merge_scripts/PRESUBMIT.py testing/merge_scripts/code_coverage/PRESUBMIT.py testing/merge_scripts/code_coverage/merge_results.py testing/merge_scripts/results_merger.py testing/perf/luci_test_result.h testing/perf/perf_result_reporter.cc testing/scripts/PRESUBMIT.py testing/scripts/common.py testing/scripts/run_performance_tests.py testing/scripts/rust/test_filtering_unittests.py testing/scripts/variations_smoke_test_data/http_server/index.html testing/test_env.py testing/trigger_scripts/PRESUBMIT.py testing/trigger_scripts/base_test_triggerer.py testing/trigger_scripts/perf_device_trigger_unittest.py testing/unexpected_passes_common/data_types.py testing/unexpected_passes_common/data_types_unittest.py testing/unexpected_passes_common/queries.py testing/unexpected_passes_common/result_output_unittest.py testing/variations/PRESUBMIT.py testing/variations/fieldtrial_testing_config.json third_party/abseil-cpp/absl/abseil.podspec.gen.py third_party/abseil-cpp/absl/base/attributes.h third_party/abseil-cpp/absl/base/config.h third_party/abseil-cpp/absl/base/internal/direct_mmap.h third_party/abseil-cpp/absl/base/internal/sysinfo.cc third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc third_party/abseil-cpp/absl/crc/internal/crc.cc third_party/abseil-cpp/absl/crc/internal/non_temporal_arm_intrinsics.h third_party/abseil-cpp/absl/hash/internal/city.h third_party/abseil-cpp/absl/log/internal/globals.cc third_party/abseil-cpp/absl/random/internal/platform.h third_party/abseil-cpp/absl/status/status.h third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h third_party/abseil-cpp/absl/time/time.h third_party/abseil-cpp/conanfile.py third_party/abseil-cpp/generate_def_files.py third_party/abseil-cpp/roll_abseil.py third_party/afl/src/Makefile third_party/afl/src/afl-analyze.c third_party/afl/src/afl-as.c third_party/afl/src/afl-as.h third_party/afl/src/afl-fuzz.c third_party/afl/src/afl-gcc.c third_party/afl/src/afl-gotcpu.c third_party/afl/src/afl-showmap.c third_party/afl/src/afl-tmin.c third_party/afl/src/alloc-inl.h third_party/afl/src/config.h third_party/afl/src/debug.h third_party/afl/src/docs/QuickStartGuide.txt third_party/afl/src/docs/historical_notes.txt third_party/afl/src/docs/notes_for_asan.txt third_party/afl/src/docs/sister_projects.txt third_party/afl/src/experimental/canvas_harness/canvas_harness.html third_party/afl/src/experimental/persistent_demo/persistent_demo.c third_party/afl/src/experimental/post_library/post_library.so.c third_party/afl/src/experimental/post_library/post_library_png.so.c third_party/afl/src/hash.h third_party/afl/src/libdislocator/Makefile third_party/afl/src/libdislocator/libdislocator.so.c third_party/afl/src/libtokencap/Makefile third_party/afl/src/libtokencap/libtokencap.so.c third_party/afl/src/llvm_mode/Makefile third_party/afl/src/llvm_mode/afl-clang-fast.c third_party/afl/src/llvm_mode/afl-llvm-rt.o.c third_party/afl/src/qemu_mode/patches/afl-qemu-cpu-inl.h third_party/afl/src/test-instr.c third_party/afl/src/types.h third_party/android_build_tools/aapt2/3pp/3pp.py third_party/android_deps/libs/com_android_tools_common/3pp/fetch.py third_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api/3pp/fetch.py third_party/android_deps/libs/com_android_tools_sdk_common/3pp/fetch.py third_party/android_deps/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework/3pp/fetch.py third_party/android_deps/licenses/Android_SDK_License-December_9_2016.txt third_party/android_toolchain/3pp/fetch.py third_party/androidx/local_modifications/espresso/java/androidx/test/espresso/base/README.txt third_party/angle/BUILD.gn third_party/angle/PRESUBMIT.py third_party/angle/extensions/ANGLE_base_vertex_base_instance.txt third_party/angle/extensions/ANGLE_base_vertex_base_instance_shader_builtin.txt third_party/angle/extensions/ANGLE_blob_cache.txt third_party/angle/extensions/ANGLE_client_arrays.txt third_party/angle/extensions/ANGLE_external_objects_flags.txt third_party/angle/extensions/ANGLE_external_objects_fuchsia.txt third_party/angle/extensions/ANGLE_get_image.txt third_party/angle/extensions/ANGLE_get_serialized_context_string.txt third_party/angle/extensions/ANGLE_get_tex_level_parameter.txt third_party/angle/extensions/ANGLE_logic_op.txt third_party/angle/extensions/ANGLE_lossy_etc_decode.txt third_party/angle/extensions/ANGLE_memory_size.txt third_party/angle/extensions/ANGLE_multi_draw.txt third_party/angle/extensions/ANGLE_program_binary_readiness_query.txt third_party/angle/extensions/ANGLE_program_cache_control.txt third_party/angle/extensions/ANGLE_relaxed_vertex_attribute_type.txt third_party/angle/extensions/ANGLE_request_extension.txt third_party/angle/extensions/ANGLE_robust_client_memory.txt third_party/angle/extensions/ANGLE_robust_fragment_shader_output.txt third_party/angle/extensions/ANGLE_robust_resource_initialization.txt third_party/angle/extensions/ANGLE_webgl_compatibility.txt third_party/angle/extensions/CHROMIUM_bind_generates_resource.txt third_party/angle/extensions/EGL_ANGLE_create_context_backwards_compatible.txt third_party/angle/extensions/EGL_ANGLE_create_context_client_arrays.txt third_party/angle/extensions/EGL_ANGLE_create_context_extensions_enabled.txt third_party/angle/extensions/EGL_ANGLE_create_context_webgl_compatibility.txt third_party/angle/extensions/EGL_ANGLE_create_surface_swap_interval.txt third_party/angle/extensions/EGL_ANGLE_d3d_share_handle_client_buffer.txt third_party/angle/extensions/EGL_ANGLE_d3d_texture_client_buffer.txt third_party/angle/extensions/EGL_ANGLE_device_cgl.txt third_party/angle/extensions/EGL_ANGLE_device_creation.txt third_party/angle/extensions/EGL_ANGLE_device_creation_d3d11.txt third_party/angle/extensions/EGL_ANGLE_device_d3d.txt third_party/angle/extensions/EGL_ANGLE_device_d3d11.txt third_party/angle/extensions/EGL_ANGLE_device_d3d9.txt third_party/angle/extensions/EGL_ANGLE_device_eagl.txt third_party/angle/extensions/EGL_ANGLE_device_metal.txt third_party/angle/extensions/EGL_ANGLE_device_vulkan.txt third_party/angle/extensions/EGL_ANGLE_direct3d_display.txt third_party/angle/extensions/EGL_ANGLE_direct_composition.txt third_party/angle/extensions/EGL_ANGLE_display_power_preference.txt third_party/angle/extensions/EGL_ANGLE_display_semaphore_share_group.txt third_party/angle/extensions/EGL_ANGLE_display_texture_share_group.txt third_party/angle/extensions/EGL_ANGLE_external_context_and_surface.txt third_party/angle/extensions/EGL_ANGLE_feature_control.txt third_party/angle/extensions/EGL_ANGLE_global_fence_sync.txt third_party/angle/extensions/EGL_ANGLE_iosurface_client_buffer.txt third_party/angle/extensions/EGL_ANGLE_keyed_mutex.txt third_party/angle/extensions/EGL_ANGLE_memory_usage_report.txt third_party/angle/extensions/EGL_ANGLE_metal_commands_scheduled_sync.txt third_party/angle/extensions/EGL_ANGLE_metal_texture_client_buffer.txt third_party/angle/extensions/EGL_ANGLE_no_error.txt third_party/angle/extensions/EGL_ANGLE_platform_angle_d3d_luid.txt third_party/angle/extensions/EGL_ANGLE_platform_angle_device_id.txt third_party/angle/extensions/EGL_ANGLE_power_preference.txt third_party/angle/extensions/EGL_ANGLE_prepare_swap_buffers.txt third_party/angle/extensions/EGL_ANGLE_program_cache_control.txt third_party/angle/extensions/EGL_ANGLE_robust_resource_initialization.txt third_party/angle/extensions/EGL_ANGLE_software_display.txt third_party/angle/extensions/EGL_ANGLE_stream_producer_d3d_texture.txt third_party/angle/extensions/EGL_ANGLE_sync_control_rate.txt third_party/angle/extensions/EGL_ANGLE_vulkan_image.txt third_party/angle/extensions/EGL_ANGLE_wait_until_work_scheduled.txt third_party/angle/extensions/EGL_ANGLE_webgpu_texture_client_buffer.txt third_party/angle/extensions/EGL_ANGLE_window_fixed_size.txt third_party/angle/extensions/EGL_CHROMIUM_create_context_bind_generates_resource.txt third_party/angle/extensions/EGL_CHROMIUM_sync_control.txt third_party/angle/extensions/EGL_EXT_device_query.txt third_party/angle/gni/angle.gni third_party/angle/include/CL/cl_platform.h third_party/angle/include/GLSLANG/ShaderLang.h third_party/angle/include/GLSLANG/ShaderVars.h third_party/angle/include/platform/frontend_features.json third_party/angle/include/platform/vk_features.json third_party/angle/infra/specs/PRESUBMIT.py third_party/angle/infra/specs/gn_isolate_map.pyl third_party/angle/samples/torus_lighting/TorusBufferStorage.cpp third_party/angle/samples/torus_lighting/TorusLightingES1.cpp third_party/angle/samples/torus_lighting/TorusLightingES2.cpp third_party/angle/samples/torus_lighting/torus.h third_party/angle/scripts/bootstrap.py third_party/angle/scripts/export_targets.py third_party/angle/scripts/generate_android_bp.py third_party/angle/scripts/process_angle_perf_results.py third_party/angle/scripts/roll_chromium_deps.py third_party/angle/scripts/trigger.py third_party/angle/scripts/update_extension_data.py third_party/angle/src/common/aligned_memory.cpp third_party/angle/src/common/android_util.cpp third_party/angle/src/common/android_util.h third_party/angle/src/common/apple_platform_utils.mm third_party/angle/src/common/frame_capture_binary_data.cpp third_party/angle/src/common/linux/dma_buf_utils.h third_party/angle/src/common/mathutil.h third_party/angle/src/common/system_utils_posix.cpp third_party/angle/src/common/tls.h third_party/angle/src/common/unsafe_buffers.h third_party/angle/src/compiler/preprocessor/preprocessor_lex_autogen.cpp third_party/angle/src/compiler/translator/ExtensionBehavior.cpp third_party/angle/src/compiler/translator/hlsl/OutputHLSL.cpp third_party/angle/src/compiler/translator/hlsl/TextureFunctionHLSL.cpp third_party/angle/src/compiler/translator/hlsl/blocklayoutHLSL.h third_party/angle/src/compiler/translator/spirv/OutputSPIRV.cpp third_party/angle/src/compiler/translator/wgsl/RewritePipelineVariables.cpp third_party/angle/src/libANGLE/Context.cpp third_party/angle/src/libANGLE/Display.cpp third_party/angle/src/libANGLE/GLES1Renderer.cpp third_party/angle/src/libANGLE/Observer.cpp third_party/angle/src/libANGLE/Observer.h third_party/angle/src/libANGLE/capture/FrameCapture.cpp third_party/angle/src/libANGLE/gen_extensions.py third_party/angle/src/libANGLE/renderer/d3d/IndexDataManager.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d11/Buffer11.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d11/Fence11.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d11/Renderer11.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d11/Renderer11.h third_party/angle/src/libANGLE/renderer/d3d/d3d11/SwapChain11.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d11/formatutils11.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d11/renderer11_utils.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d9/Renderer9.cpp third_party/angle/src/libANGLE/renderer/d3d/d3d9/renderer9_utils.cpp third_party/angle/src/libANGLE/renderer/gen_dxgi_support_tables.py third_party/angle/src/libANGLE/renderer/gl/renderergl_utils.cpp third_party/angle/src/libANGLE/renderer/renderer_utils.cpp third_party/angle/src/libANGLE/renderer/vulkan/FramebufferVk.cpp third_party/angle/src/libANGLE/renderer/vulkan/ImageVk.cpp third_party/angle/src/libANGLE/renderer/vulkan/PersistentCommandPool.cpp third_party/angle/src/libANGLE/renderer/vulkan/ProgramExecutableVk.cpp third_party/angle/src/libANGLE/renderer/vulkan/ShaderVk.cpp third_party/angle/src/libANGLE/renderer/vulkan/VkImageImageSiblingVk.cpp third_party/angle/src/libANGLE/renderer/vulkan/android/HardwareBufferImageSiblingVkAndroid.cpp third_party/angle/src/libANGLE/renderer/vulkan/linux/DmaBufImageSiblingVkLinux.cpp third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/ffx_a.h third_party/angle/src/libANGLE/renderer/vulkan/vk_cache_utils.h third_party/angle/src/libANGLE/renderer/vulkan/vk_format_utils.h third_party/angle/src/libANGLE/renderer/vulkan/vk_helpers.cpp third_party/angle/src/libANGLE/renderer/vulkan/vk_renderer.cpp third_party/angle/src/libANGLE/renderer/wgpu/gen_wgpu_format_table.py third_party/angle/src/libANGLE/validationEGL.cpp third_party/angle/src/libANGLE/validationES.cpp third_party/angle/src/libGLESv2/egl_stubs.cpp third_party/angle/src/libGLESv2/global_state.cpp third_party/angle/src/program_serialize_data_version.py third_party/angle/src/tests/BUILD.gn third_party/angle/src/tests/egl_tests/EGLContextSharingTest.cpp third_party/angle/src/tests/egl_tests/EGLIOSurfaceClientBufferTest.cpp third_party/angle/src/tests/egl_tests/EGLSurfaceTest.cpp third_party/angle/src/tests/gl_tests/BufferDataTest.cpp third_party/angle/src/tests/gl_tests/FramebufferTest.cpp third_party/angle/src/tests/gl_tests/GLSLTest.cpp third_party/angle/src/tests/gl_tests/ImageTest.cpp third_party/angle/src/tests/gl_tests/MipmapTest.cpp third_party/angle/src/tests/gl_tests/OcclusionQueriesTest.cpp third_party/angle/src/tests/gl_tests/ProgramPipelineTest.cpp third_party/angle/src/tests/gl_tests/RobustResourceInitTest.cpp third_party/angle/src/tests/gl_tests/SRGBTextureTest.cpp third_party/angle/src/tests/gl_tests/TextureTest.cpp third_party/angle/src/tests/gl_tests/UniformBufferTest.cpp third_party/angle/src/tests/gl_tests/VulkanPerformanceCounterTest.cpp third_party/angle/src/tests/gl_tests/gles1/BootAnimationTest.cpp third_party/angle/src/tests/perf_tests/ANGLEPerfTest.h third_party/angle/src/tests/perf_tests/DrawCallPerf.cpp third_party/angle/src/tests/perf_tests/TracePerfTest.cpp third_party/angle/src/tests/restricted_traces/gen_restricted_traces.py third_party/angle/src/tests/restricted_traces/sync_restricted_traces_to_cipd.py third_party/angle/src/tests/run_perf_tests.py third_party/angle/src/tests/test_utils/runner/TestSuite.cpp third_party/angle/src/tests/test_utils/runner/android/java/AndroidManifest.xml.jinja2 third_party/angle/src/tests/test_utils/runner/android/java/StandaloneBenchmarkAndroidManifest.xml.jinja2 third_party/angle/src/third_party/volk/volk.h third_party/angle/third_party/BUILD.gn third_party/angle/third_party/glmark2/src/src/native-state-dispmanx.cpp third_party/angle/third_party/glmark2/src/src/native-state-dispmanx.h third_party/angle/third_party/glmark2/src/src/native-state-wayland.cpp third_party/angle/third_party/glmark2/src/src/native-state-wayland.h third_party/angle/third_party/libjpeg.gni third_party/angle/third_party/rapidjson/src/bin/data/readme.txt third_party/angle/third_party/rapidjson/src/include/rapidjson/document.h third_party/angle/third_party/rapidjson/src/test/unittest/valuetest.cpp third_party/angle/unsafe_buffers_paths.txt third_party/angle/util/android/AndroidWindow.cpp third_party/angle/util/capture/frame_capture_test_utils.cpp third_party/angle/util/windows/third_party/StackWalker/src/StackWalker.cpp third_party/anonymous_tokens/src/anonymous_tokens/cpp/crypto/crypto_utils.cc third_party/anonymous_tokens/src/anonymous_tokens/cpp/privacy_pass/token_encodings_test.cc third_party/anonymous_tokens/src/anonymous_tokens/cpp/shared/proto_utils.h third_party/axe-core/axe.js third_party/axe-core/axe.min.js third_party/blink/PRESUBMIT.py third_party/blink/common/PRESUBMIT.py third_party/blink/common/features.cc third_party/blink/common/loader/record_load_histograms.cc third_party/blink/common/origin_trials/trial_token.cc third_party/blink/common/origin_trials/trial_token_validator_unittest.cc third_party/blink/common/page_state/page_state_serialization.cc third_party/blink/common/page_state/page_state_serialization_unittest.cc third_party/blink/common/shared_storage/module_script_downloader.cc third_party/blink/common/webid/federated_auth_request_mojom_traits_unittest.cc third_party/blink/public/common/custom_handlers/protocol_handler_utils.h third_party/blink/public/common/frame/delegated_capability_request_token.h third_party/blink/public/common/frame/user_activation_state.h third_party/blink/public/common/input/web_keyboard_event.h third_party/blink/public/common/loader/throttling_url_loader.h third_party/blink/public/common/origin_trials/trial_token.h third_party/blink/public/common/storage_key/storage_key.h third_party/blink/public/common/widget/visual_properties.h third_party/blink/public/mojom/permissions_policy/PRESUBMIT.py third_party/blink/public/mojom/scheduler/PRESUBMIT.py third_party/blink/public/mojom/use_counter/metrics/PRESUBMIT.py third_party/blink/public/platform/child_url_loader_factory_bundle.h third_party/blink/public/platform/linux/web_sandbox_support.h third_party/blink/public/platform/platform.h third_party/blink/public/platform/web_audio_source_provider_impl.h third_party/blink/public/platform/web_url_response.h third_party/blink/public/strings/blink_strings.grd third_party/blink/public/web/web_crypto_histograms.h third_party/blink/public/web/web_node.h third_party/blink/renderer/PRESUBMIT.py third_party/blink/renderer/bindings/PRESUBMIT.py third_party/blink/renderer/bindings/core/v8/generated_code_helper.cc third_party/blink/renderer/bindings/core/v8/window_proxy.cc third_party/blink/renderer/bindings/core/v8/window_proxy.h third_party/blink/renderer/build/scripts/core/style/make_computed_style_base.py third_party/blink/renderer/controller/memory_usage_monitor_posix.cc third_party/blink/renderer/core/BUILD.gn third_party/blink/renderer/core/animation/sampled_effect.cc third_party/blink/renderer/core/clipboard/data_transfer.h third_party/blink/renderer/core/css/css_computed_style_declaration.cc third_party/blink/renderer/core/css/css_font_face_rule.idl third_party/blink/renderer/core/css/css_global_rule_set.h third_party/blink/renderer/core/css/css_identifier_value_mappings.h third_party/blink/renderer/core/css/css_import_rule.idl third_party/blink/renderer/core/css/css_math_expression_node_test.cc third_party/blink/renderer/core/css/css_media_rule.idl third_party/blink/renderer/core/css/css_page_rule.idl third_party/blink/renderer/core/css/css_property_value_set.cc third_party/blink/renderer/core/css/css_rule.idl third_party/blink/renderer/core/css/css_selector.cc third_party/blink/renderer/core/css/css_style_declaration.idl third_party/blink/renderer/core/css/css_style_rule.idl third_party/blink/renderer/core/css/css_style_sheet.idl third_party/blink/renderer/core/css/css_value_test_helper.h third_party/blink/renderer/core/css/cssom/paint_worklet_style_property_map_test.cc third_party/blink/renderer/core/css/element_rule_collector_test.cc third_party/blink/renderer/core/css/invalidation/pending_invalidations.h third_party/blink/renderer/core/css/invalidation/rule_invalidation_data_visitor.cc third_party/blink/renderer/core/css/invalidation/style_invalidator.h third_party/blink/renderer/core/css/parser/css_selector_parser.cc third_party/blink/renderer/core/css/parser/find_length_of_declaration_list-inl.h third_party/blink/renderer/core/css/properties/computed_style_utils.cc third_party/blink/renderer/core/css/properties/css_parsing_utils.cc third_party/blink/renderer/core/css/properties/longhands/longhands_custom.cc third_party/blink/renderer/core/css/remote_font_face_source.cc third_party/blink/renderer/core/css/resolver/style_adjuster.cc third_party/blink/renderer/core/css/rule_set_test.cc third_party/blink/renderer/core/css/style_engine.cc third_party/blink/renderer/core/css/style_engine_test.cc third_party/blink/renderer/core/css/style_rule_import.cc third_party/blink/renderer/core/css/style_sheet.idl third_party/blink/renderer/core/css/style_sheet_list.idl third_party/blink/renderer/core/dom/abort_controller.h third_party/blink/renderer/core/dom/attr.idl third_party/blink/renderer/core/dom/cdata_section.idl third_party/blink/renderer/core/dom/child_node.idl third_party/blink/renderer/core/dom/child_node_part.cc third_party/blink/renderer/core/dom/class_collection.cc third_party/blink/renderer/core/dom/class_collection.h third_party/blink/renderer/core/dom/comment.idl third_party/blink/renderer/core/dom/container_node.cc third_party/blink/renderer/core/dom/document.h third_party/blink/renderer/core/dom/dom_implementation.idl third_party/blink/renderer/core/dom/element.cc third_party/blink/renderer/core/dom/element.idl third_party/blink/renderer/core/dom/events/event.cc third_party/blink/renderer/core/dom/events/event.h third_party/blink/renderer/core/dom/events/event.idl third_party/blink/renderer/core/dom/events/event_listener.idl third_party/blink/renderer/core/dom/events/event_target.cc third_party/blink/renderer/core/dom/events/event_target.idl third_party/blink/renderer/core/dom/events/registered_event_listener.cc third_party/blink/renderer/core/dom/events/registered_event_listener.h third_party/blink/renderer/core/dom/first_letter_pseudo_element.cc third_party/blink/renderer/core/dom/first_letter_pseudo_element.h third_party/blink/renderer/core/dom/named_node_map.idl third_party/blink/renderer/core/dom/node.cc third_party/blink/renderer/core/dom/node.idl third_party/blink/renderer/core/dom/node_filter.idl third_party/blink/renderer/core/dom/node_iterator.cc third_party/blink/renderer/core/dom/node_iterator.h third_party/blink/renderer/core/dom/node_iterator.idl third_party/blink/renderer/core/dom/node_iterator_base.cc third_party/blink/renderer/core/dom/node_iterator_base.h third_party/blink/renderer/core/dom/node_list.idl third_party/blink/renderer/core/dom/node_lists_node_data.h third_party/blink/renderer/core/dom/observable.cc third_party/blink/renderer/core/dom/observable.h third_party/blink/renderer/core/dom/processing_instruction.idl third_party/blink/renderer/core/dom/range.cc third_party/blink/renderer/core/dom/range.idl third_party/blink/renderer/core/dom/space_split_string.cc third_party/blink/renderer/core/dom/transform_source.h third_party/blink/renderer/core/dom/tree_walker.cc third_party/blink/renderer/core/dom/tree_walker.h third_party/blink/renderer/core/dom/tree_walker.idl third_party/blink/renderer/core/editing/commands/delete_selection_command.cc third_party/blink/renderer/core/editing/commands/editor_command.cc third_party/blink/renderer/core/editing/commands/insert_text_command.cc third_party/blink/renderer/core/editing/commands/smart_replace_icu.cc third_party/blink/renderer/core/editing/commands/style_commands.cc third_party/blink/renderer/core/editing/dom_selection.cc third_party/blink/renderer/core/editing/editing_behavior.cc third_party/blink/renderer/core/editing/editing_utilities.cc third_party/blink/renderer/core/editing/editing_utilities_test.cc third_party/blink/renderer/core/editing/finder/find_buffer.h third_party/blink/renderer/core/editing/finder/find_buffer_test.cc third_party/blink/renderer/core/editing/serializers/serialization.cc third_party/blink/renderer/core/editing/spellcheck/cold_mode_spell_check_requester.h third_party/blink/renderer/core/editing/spellcheck/hot_mode_spell_check_requester.h third_party/blink/renderer/core/editing/spellcheck/idle_spell_check_controller.h third_party/blink/renderer/core/editing/visible_units.cc third_party/blink/renderer/core/editing/visible_units_line_test.cc third_party/blink/renderer/core/events/before_unload_event.cc third_party/blink/renderer/core/events/before_unload_event.h third_party/blink/renderer/core/events/clipboard_event.cc third_party/blink/renderer/core/events/clipboard_event.h third_party/blink/renderer/core/events/input_event.cc third_party/blink/renderer/core/events/keyboard_event.cc third_party/blink/renderer/core/events/keyboard_event.h third_party/blink/renderer/core/events/keyboard_event.idl third_party/blink/renderer/core/events/mouse_event.cc third_party/blink/renderer/core/events/mouse_event.h third_party/blink/renderer/core/events/touch_event.cc third_party/blink/renderer/core/events/touch_event_test.cc third_party/blink/renderer/core/events/ui_event.cc third_party/blink/renderer/core/events/ui_event.h third_party/blink/renderer/core/events/ui_event_with_key_state.h third_party/blink/renderer/core/events/web_input_event_conversion.cc third_party/blink/renderer/core/events/wheel_event.cc third_party/blink/renderer/core/events/wheel_event.h third_party/blink/renderer/core/events/wheel_event.idl third_party/blink/renderer/core/execution_context/execution_context.h third_party/blink/renderer/core/execution_context/security_context.cc third_party/blink/renderer/core/exported/web_plugin_container_impl.cc third_party/blink/renderer/core/exported/web_searchable_form_data.cc third_party/blink/renderer/core/fetch/fetch_manager.cc third_party/blink/renderer/core/fetch/request.cc third_party/blink/renderer/core/fetch/response.h third_party/blink/renderer/core/fileapi/file_reader_client.h third_party/blink/renderer/core/fragment_directive/text_fragment_anchor_metrics_test.cc third_party/blink/renderer/core/fragment_directive/text_fragment_selector.h third_party/blink/renderer/core/frame/csp/content_security_policy.cc third_party/blink/renderer/core/frame/deprecation/PRESUBMIT.py third_party/blink/renderer/core/frame/frame.h third_party/blink/renderer/core/frame/frame_serializer.cc third_party/blink/renderer/core/frame/local_dom_window.h third_party/blink/renderer/core/frame/local_dom_window_test.cc third_party/blink/renderer/core/frame/local_frame.cc third_party/blink/renderer/core/frame/local_frame.h third_party/blink/renderer/core/frame/local_frame_back_forward_cache_test.cc third_party/blink/renderer/core/frame/local_frame_view.cc third_party/blink/renderer/core/frame/local_frame_view.h third_party/blink/renderer/core/frame/navigator.cc third_party/blink/renderer/core/frame/settings.h third_party/blink/renderer/core/frame/visual_viewport.h third_party/blink/renderer/core/frame/web_frame_serializer_impl.cc third_party/blink/renderer/core/frame/web_frame_test.cc third_party/blink/renderer/core/frame/web_frame_widget_impl.cc third_party/blink/renderer/core/frame/web_local_frame_impl.cc third_party/blink/renderer/core/frame/web_remote_frame_impl.cc third_party/blink/renderer/core/geolocation/geolocation.h third_party/blink/renderer/core/html/anchor_element_metrics_test.cc third_party/blink/renderer/core/html/custom/element_internals.idl third_party/blink/renderer/core/html/custom/validity_state_flags.idl third_party/blink/renderer/core/html/forms/base_text_input_type.cc third_party/blink/renderer/core/html/forms/email_input_type.cc third_party/blink/renderer/core/html/forms/html_button_element.idl third_party/blink/renderer/core/html/forms/html_form_controls_collection.cc third_party/blink/renderer/core/html/forms/html_form_controls_collection.idl third_party/blink/renderer/core/html/forms/html_form_element.idl third_party/blink/renderer/core/html/forms/html_form_mcp_tool_test.cc third_party/blink/renderer/core/html/forms/html_input_element.idl third_party/blink/renderer/core/html/forms/html_input_element_test.cc third_party/blink/renderer/core/html/forms/html_label_element.idl third_party/blink/renderer/core/html/forms/html_legend_element.idl third_party/blink/renderer/core/html/forms/html_option_element.cc third_party/blink/renderer/core/html/forms/html_option_element.idl third_party/blink/renderer/core/html/forms/html_options_collection.idl third_party/blink/renderer/core/html/forms/html_select_element.cc third_party/blink/renderer/core/html/forms/html_select_element.idl third_party/blink/renderer/core/html/forms/html_text_area_element.idl third_party/blink/renderer/core/html/forms/select_type.cc third_party/blink/renderer/core/html/forms/validity_state.cc third_party/blink/renderer/core/html/forms/validity_state.h third_party/blink/renderer/core/html/forms/validity_state.idl third_party/blink/renderer/core/html/html_anchor_element.cc third_party/blink/renderer/core/html/html_anchor_element.idl third_party/blink/renderer/core/html/html_anchor_element_test.cc third_party/blink/renderer/core/html/html_area_element.idl third_party/blink/renderer/core/html/html_body_element.idl third_party/blink/renderer/core/html/html_collection.cc third_party/blink/renderer/core/html/html_collection.idl third_party/blink/renderer/core/html/html_document.cc third_party/blink/renderer/core/html/html_document.idl third_party/blink/renderer/core/html/html_element.cc third_party/blink/renderer/core/html/html_element.idl third_party/blink/renderer/core/html/html_embed_element.idl third_party/blink/renderer/core/html/html_frame_element.idl third_party/blink/renderer/core/html/html_frame_set_element.idl third_party/blink/renderer/core/html/html_iframe_element.cc third_party/blink/renderer/core/html/html_iframe_element.idl third_party/blink/renderer/core/html/html_image_element.idl third_party/blink/renderer/core/html/html_link_element.cc third_party/blink/renderer/core/html/html_link_element.idl third_party/blink/renderer/core/html/html_map_element.idl third_party/blink/renderer/core/html/html_object_element.idl third_party/blink/renderer/core/html/html_pre_element.idl third_party/blink/renderer/core/html/html_style_element.idl third_party/blink/renderer/core/html/html_table_caption_element.idl third_party/blink/renderer/core/html/html_table_cell_element.idl third_party/blink/renderer/core/html/html_table_col_element.idl third_party/blink/renderer/core/html/html_table_element.idl third_party/blink/renderer/core/html/html_table_row_element.idl third_party/blink/renderer/core/html/html_table_section_element.idl third_party/blink/renderer/core/html/media/autoplay_policy.cc third_party/blink/renderer/core/html/media/html_media_element.cc third_party/blink/renderer/core/html/parser/html_document_parser.cc third_party/blink/renderer/core/input/event_handler.cc third_party/blink/renderer/core/input/event_handling_util.cc third_party/blink/renderer/core/input/pointer_event_manager.cc third_party/blink/renderer/core/inspector/console_message.h third_party/blink/renderer/core/inspector/devtools_session.h third_party/blink/renderer/core/intersection_observer/intersection_observer_controller.h third_party/blink/renderer/core/layout/adjust_for_absolute_zoom.h third_party/blink/renderer/core/layout/geometry/logical_offset.h third_party/blink/renderer/core/layout/geometry/logical_rect.h third_party/blink/renderer/core/layout/geometry/logical_size.h third_party/blink/renderer/core/layout/geometry/physical_rect.h third_party/blink/renderer/core/layout/hit_test_cache.h third_party/blink/renderer/core/layout/hit_test_location.h third_party/blink/renderer/core/layout/inline/inline_items_builder.cc third_party/blink/renderer/core/layout/inline/inline_items_builder.h third_party/blink/renderer/core/layout/inline/offset_mapping.h third_party/blink/renderer/core/layout/inline/offset_mapping_builder.h third_party/blink/renderer/core/layout/inline/score_line_breaker.cc third_party/blink/renderer/core/layout/inline/score_line_breaker.h third_party/blink/renderer/core/layout/layout_block.cc third_party/blink/renderer/core/layout/layout_block.h third_party/blink/renderer/core/layout/layout_block_flow.h third_party/blink/renderer/core/layout/layout_box.cc third_party/blink/renderer/core/layout/layout_box_hot.cc third_party/blink/renderer/core/layout/layout_box_model_object.cc third_party/blink/renderer/core/layout/layout_box_model_object.h third_party/blink/renderer/core/layout/layout_image.cc third_party/blink/renderer/core/layout/layout_image.h third_party/blink/renderer/core/layout/layout_image_resource.cc third_party/blink/renderer/core/layout/layout_image_resource.h third_party/blink/renderer/core/layout/layout_image_resource_style_image.cc third_party/blink/renderer/core/layout/layout_image_resource_style_image.h third_party/blink/renderer/core/layout/layout_object.h third_party/blink/renderer/core/layout/layout_text.cc third_party/blink/renderer/core/layout/layout_theme_android.cc third_party/blink/renderer/core/layout/layout_theme_default.h third_party/blink/renderer/core/layout/layout_view.cc third_party/blink/renderer/core/layout/layout_view.h third_party/blink/renderer/core/layout/layout_view_test.cc third_party/blink/renderer/core/layout/length_utils.cc third_party/blink/renderer/core/layout/map_coordinates_test.cc third_party/blink/renderer/core/layout/physical_box_fragment.cc third_party/blink/renderer/core/layout/scroll_anchor_test.cc third_party/blink/renderer/core/layout/svg/layout_svg_path.cc third_party/blink/renderer/core/layout/svg/layout_svg_shape.cc third_party/blink/renderer/core/layout/table/layout_table_section_test.cc third_party/blink/renderer/core/loader/frame_loader.cc third_party/blink/renderer/core/loader/http_equiv.cc third_party/blink/renderer/core/loader/image_loader.h third_party/blink/renderer/core/loader/interactive_detector.h third_party/blink/renderer/core/loader/mixed_content_checker.cc third_party/blink/renderer/core/loader/mixed_content_checker_test.cc third_party/blink/renderer/core/loader/resource/css_style_sheet_resource.cc third_party/blink/renderer/core/loader/resource/css_style_sheet_resource.h third_party/blink/renderer/core/loader/resource/image_resource.cc third_party/blink/renderer/core/loader/resource/image_resource.h third_party/blink/renderer/core/loader/resource/image_resource_content.h third_party/blink/renderer/core/loader/resource/image_resource_observer.h third_party/blink/renderer/core/loader/resource/multipart_image_resource_parser.h third_party/blink/renderer/core/loader/resource/script_resource.cc third_party/blink/renderer/core/loader/resource/script_resource.h third_party/blink/renderer/core/loader/resource/xsl_style_sheet_resource.cc third_party/blink/renderer/core/loader/resource/xsl_style_sheet_resource.h third_party/blink/renderer/core/loader/subresource_filter.cc third_party/blink/renderer/core/loader/web_bundle/script_web_bundle.cc third_party/blink/renderer/core/page/drag_controller_test.cc third_party/blink/renderer/core/page/print_context_test.cc third_party/blink/renderer/core/page/scrolling/element_fragment_anchor_test.cc third_party/blink/renderer/core/page/validation_message_client_impl.cc third_party/blink/renderer/core/paint/box_fragment_painter_test.cc third_party/blink/renderer/core/paint/box_painter_base.h third_party/blink/renderer/core/paint/compositing/compositing_reason_finder.cc third_party/blink/renderer/core/paint/highlight_overlay.h third_party/blink/renderer/core/paint/paint_layer.cc third_party/blink/renderer/core/paint/paint_layer.h third_party/blink/renderer/core/paint/paint_layer_clipper.cc third_party/blink/renderer/core/paint/paint_layer_clipper.h third_party/blink/renderer/core/paint/paint_layer_scrollable_area.cc third_party/blink/renderer/core/paint/paint_layer_scrollable_area.h third_party/blink/renderer/core/paint/paint_layer_stacking_node.cc third_party/blink/renderer/core/paint/paint_layer_stacking_node.h third_party/blink/renderer/core/paint/paint_property_tree_builder.cc third_party/blink/renderer/core/paint/text_decoration_info.cc third_party/blink/renderer/core/paint/theme_painter_default.cc third_party/blink/renderer/core/paint/theme_painter_default.h third_party/blink/renderer/core/paint/timing/first_meaningful_paint_detector.cc third_party/blink/renderer/core/paint/timing/first_meaningful_paint_detector.h third_party/blink/renderer/core/paint/timing/image_paint_timing_detector.h third_party/blink/renderer/core/paint/timing/image_paint_timing_detector_test.cc third_party/blink/renderer/core/permissions_policy/permissions_policy_parser.cc third_party/blink/renderer/core/scheduler/scheduler.idl third_party/blink/renderer/core/script/detect_javascript_frameworks.cc third_party/blink/renderer/core/script/document_write_intervention.cc third_party/blink/renderer/core/script/document_write_intervention.h third_party/blink/renderer/core/scroll/scroll_alignment.cc third_party/blink/renderer/core/scroll/scroll_alignment.h third_party/blink/renderer/core/scroll/scrollbar_theme_fluent.h third_party/blink/renderer/core/streams/readable_stream_transferring_optimizer.h third_party/blink/renderer/core/streams/transferable_streams.cc third_party/blink/renderer/core/streams/writable_stream_transferring_optimizer.h third_party/blink/renderer/core/style/computed_style.h third_party/blink/renderer/core/style/computed_style_constants.h third_party/blink/renderer/core/style/content_data.h third_party/blink/renderer/core/style/counter_directives.h third_party/blink/renderer/core/style/cursor_data.h third_party/blink/renderer/core/style/fill_layer.h third_party/blink/renderer/core/style/shadow_data.h third_party/blink/renderer/core/style/style_reflection.h third_party/blink/renderer/core/svg/graphics/filters/svg_filter_builder.h third_party/blink/renderer/core/svg/svg_angle.idl third_party/blink/renderer/core/svg/svg_animated_number.idl third_party/blink/renderer/core/svg/svg_circle_element.idl third_party/blink/renderer/core/svg/svg_clip_path_element.idl third_party/blink/renderer/core/svg/svg_document_resource_tracker.cc third_party/blink/renderer/core/svg/svg_document_resource_tracker.h third_party/blink/renderer/core/svg/svg_element.idl third_party/blink/renderer/core/svg/svg_filter_element.cc third_party/blink/renderer/core/svg/svg_filter_element.h third_party/blink/renderer/core/svg/svg_filter_element.idl third_party/blink/renderer/core/svg/svg_filter_primitive_standard_attributes.idl third_party/blink/renderer/core/svg/svg_fit_to_view_box.idl third_party/blink/renderer/core/svg/svg_length.idl third_party/blink/renderer/core/svg/svg_length_list.idl third_party/blink/renderer/core/svg/svg_matrix.idl third_party/blink/renderer/core/svg/svg_number.idl third_party/blink/renderer/core/svg/svg_number_list.idl third_party/blink/renderer/core/svg/svg_path_element.idl third_party/blink/renderer/core/svg/svg_point.idl third_party/blink/renderer/core/svg/svg_rect.idl third_party/blink/renderer/core/svg/svg_rect_element.idl third_party/blink/renderer/core/svg/svg_resource_document_content.cc third_party/blink/renderer/core/svg/svg_resource_document_content.h third_party/blink/renderer/core/svg/svg_style_element.idl third_party/blink/renderer/core/svg/svg_svg_element.idl third_party/blink/renderer/core/svg/svg_tests.idl third_party/blink/renderer/core/svg/svg_text_path_element.cc third_party/blink/renderer/core/svg/svg_transform_list.idl third_party/blink/renderer/core/svg/svg_uri_reference.idl third_party/blink/renderer/core/svg/svg_zoom_and_pan.idl third_party/blink/renderer/core/svg/unsafe_svg_attribute_sanitization_test.cc third_party/blink/renderer/core/testing/data/hit_test.html third_party/blink/renderer/core/timing/memory_info.idl third_party/blink/renderer/core/timing/performance.idl third_party/blink/renderer/core/timing/performance_entry.h third_party/blink/renderer/core/timing/performance_resource_timing.h third_party/blink/renderer/core/timing/responsiveness_metrics.cc third_party/blink/renderer/core/timing/third_party_script_detector.cc third_party/blink/renderer/core/timing/window_performance.cc third_party/blink/renderer/core/timing/window_performance.h third_party/blink/renderer/core/timing/window_performance_test.cc third_party/blink/renderer/core/trustedtypes/generate_eventhandler_names.py third_party/blink/renderer/core/view_transition/view_transition_content_element.h third_party/blink/renderer/core/web_test/web_test_web_frame_widget_impl.h third_party/blink/renderer/core/workers/shared_worker_content_settings_proxy.cc third_party/blink/renderer/core/xml/DocumentXMLTreeViewer.js third_party/blink/renderer/core/xml/xpath_expression.idl third_party/blink/renderer/core/xml/xpath_ns_resolver.idl third_party/blink/renderer/core/xml/xslt_processor.cc third_party/blink/renderer/core/xml/xslt_processor.idl third_party/blink/renderer/core/xmlhttprequest/xml_http_request.cc third_party/blink/renderer/modules/accessibility/ax_node_object.cc third_party/blink/renderer/modules/accessibility/ax_object_cache_impl.cc third_party/blink/renderer/modules/accessibility/ax_object_cache_impl.h third_party/blink/renderer/modules/accessibility/testing/internals_accessibility.h third_party/blink/renderer/modules/ai/feedback_helpers.cc third_party/blink/renderer/modules/bluetooth/bluetooth_error.cc third_party/blink/renderer/modules/clipboard/clipboard.idl third_party/blink/renderer/modules/content_extraction/ai_page_content_agent_unittest.cc third_party/blink/renderer/modules/credentialmanagement/authentication_credentials_container.cc third_party/blink/renderer/modules/file_system_access/file_system_cloud_identifier.idl third_party/blink/renderer/modules/filesystem/dom_file_system_base_test.cc third_party/blink/renderer/modules/font_access/font_metadata.h third_party/blink/renderer/modules/hid/hid.cc third_party/blink/renderer/modules/indexeddb/idb_value_wrapping.cc third_party/blink/renderer/modules/manifest/fuzzer_seed_corpus/play_app_url_manifest.json third_party/blink/renderer/modules/media_capabilities/media_capabilities.cc third_party/blink/renderer/modules/mediarecorder/media_recorder.cc third_party/blink/renderer/modules/mediarecorder/video_track_recorder.cc third_party/blink/renderer/modules/mediastream/media_devices_test.cc third_party/blink/renderer/modules/mediastream/media_stream_utils.cc third_party/blink/renderer/modules/mediastream/media_stream_video_renderer_sink.h third_party/blink/renderer/modules/payments/android_pay_method_data.idl third_party/blink/renderer/modules/payments/on_payment_response_test.cc third_party/blink/renderer/modules/payments/payment_request.cc third_party/blink/renderer/modules/payments/payment_request_optional_total_test.cc third_party/blink/renderer/modules/payments/payment_request_test.cc third_party/blink/renderer/modules/payments/payment_response_test.cc third_party/blink/renderer/modules/peerconnection/peer_connection_dependency_factory.cc third_party/blink/renderer/modules/presentation/presentation_connection_available_event.h third_party/blink/renderer/modules/service_worker/service_worker_content_settings_proxy.cc third_party/blink/renderer/modules/service_worker/service_worker_event_queue.cc third_party/blink/renderer/modules/service_worker/service_worker_global_scope.cc third_party/blink/renderer/modules/smart_card/smart_card_error.cc third_party/blink/renderer/modules/storage/cached_storage_area.h third_party/blink/renderer/modules/storage/storage_area.cc third_party/blink/renderer/modules/vibration/navigator_vibration.idl third_party/blink/renderer/modules/vibration/vibration_controller.cc third_party/blink/renderer/modules/webaudio/audio_context.cc third_party/blink/renderer/modules/webaudio/audio_context.h third_party/blink/renderer/modules/webaudio/audio_handler.h third_party/blink/renderer/modules/webaudio/audio_node.h third_party/blink/renderer/modules/webaudio/media_stream_audio_destination_handler.h third_party/blink/renderer/modules/webaudio/media_stream_audio_destination_node.h third_party/blink/renderer/modules/webaudio/media_stream_audio_source_handler.h third_party/blink/renderer/modules/webaudio/media_stream_audio_source_node.h third_party/blink/renderer/modules/webaudio/realtime_audio_destination_handler.h third_party/blink/renderer/modules/webgl/webgl_unowned_texture.h third_party/blink/renderer/modules/webgpu/external_texture_helper.cc third_party/blink/renderer/modules/webgpu/gpu_render_pipeline.cc third_party/blink/renderer/modules/websockets/websocket_channel_impl.cc third_party/blink/renderer/modules/websockets/websocket_stream.h third_party/blink/renderer/modules/webtransport/web_transport_test.cc third_party/blink/renderer/modules/webusb/usb.cc third_party/blink/renderer/modules/xr/xr_session.h third_party/blink/renderer/modules/xr/xr_system.cc third_party/blink/renderer/platform/PRESUBMIT.py third_party/blink/renderer/platform/animation/timing_function.h third_party/blink/renderer/platform/audio/audio_destination.h third_party/blink/renderer/platform/bindings/bigint.cc third_party/blink/renderer/platform/bindings/script_regexp.cc third_party/blink/renderer/platform/exported/web_crypto_algorithm.cc third_party/blink/renderer/platform/fonts/bitmap_glyphs_block_list.cc third_party/blink/renderer/platform/fonts/font_custom_platform_data.cc third_party/blink/renderer/platform/fonts/font_description.cc third_party/blink/renderer/platform/fonts/mac/font_cache_mac.mm third_party/blink/renderer/platform/fonts/opentype/open_type_baseline_metrics.h third_party/blink/renderer/platform/fonts/opentype/open_type_caps_support_mpl.cc third_party/blink/renderer/platform/fonts/opentype/open_type_math_stretch_data.h third_party/blink/renderer/platform/fonts/opentype/open_type_math_support.cc third_party/blink/renderer/platform/fonts/opentype/open_type_math_support.h third_party/blink/renderer/platform/fonts/opentype/open_type_types.h third_party/blink/renderer/platform/fonts/opentype/open_type_vertical_data.cc third_party/blink/renderer/platform/fonts/opentype/open_type_vertical_data.h third_party/blink/renderer/platform/fonts/opentype/open_type_vertical_data_test.cc third_party/blink/renderer/platform/fonts/script_run_iterator.cc third_party/blink/renderer/platform/fonts/shaping/han_kerning.cc third_party/blink/renderer/platform/fonts/shaping/han_kerning.h third_party/blink/renderer/platform/fonts/shaping/harfbuzz_shaper.cc third_party/blink/renderer/platform/fonts/shaping/shape_result.cc third_party/blink/renderer/platform/fonts/shaping/shape_result_view.cc third_party/blink/renderer/platform/fonts/simple_font_data.cc third_party/blink/renderer/platform/fonts/simple_font_data.h third_party/blink/renderer/platform/fonts/skia/skia_text_metrics.cc third_party/blink/renderer/platform/fonts/skia/skia_text_metrics.h third_party/blink/renderer/platform/fonts/vdmx_parser.cc third_party/blink/renderer/platform/fonts/web_font_decoder.cc third_party/blink/renderer/platform/fonts/win/font_cache_skia_win.cc third_party/blink/renderer/platform/fonts/win/font_fallback_win.cc third_party/blink/renderer/platform/geometry/physical_offset.h third_party/blink/renderer/platform/geometry/physical_size.h third_party/blink/renderer/platform/graphics/bitmap_image.cc third_party/blink/renderer/platform/graphics/bitmap_image.h third_party/blink/renderer/platform/graphics/filters/distant_light_source.h third_party/blink/renderer/platform/graphics/filters/fe_tile.cc third_party/blink/renderer/platform/graphics/filters/filter_effect.cc third_party/blink/renderer/platform/graphics/filters/filter_effect.h third_party/blink/renderer/platform/graphics/filters/light_source.h third_party/blink/renderer/platform/graphics/filters/point_light_source.h third_party/blink/renderer/platform/graphics/filters/source_graphic.h third_party/blink/renderer/platform/graphics/filters/spot_light_source.cc third_party/blink/renderer/platform/graphics/filters/spot_light_source.h third_party/blink/renderer/platform/graphics/gpu/webgl_image_conversion.cc third_party/blink/renderer/platform/graphics/image.cc third_party/blink/renderer/platform/graphics/image.h third_party/blink/renderer/platform/graphics/paint/geometry_mapper.cc third_party/blink/renderer/platform/graphics/paint/geometry_mapper_transform_cache.h third_party/blink/renderer/platform/graphics/paint/region_capture_data.h third_party/blink/renderer/platform/heap/collection_support/heap_linked_stack.h third_party/blink/renderer/platform/image-decoders/bmp/bmp_image_decoder.cc third_party/blink/renderer/platform/image-decoders/bmp/bmp_image_decoder_test.cc third_party/blink/renderer/platform/image-decoders/jpeg/jpeg_image_decoder.cc third_party/blink/renderer/platform/image-decoders/webp/webp_image_decoder.cc third_party/blink/renderer/platform/instrumentation/use_counter.h third_party/blink/renderer/platform/loader/fetch/client_hints_preferences_test.cc third_party/blink/renderer/platform/loader/fetch/console_logger.h third_party/blink/renderer/platform/loader/fetch/fetch_utils.h third_party/blink/renderer/platform/loader/fetch/raw_resource.h third_party/blink/renderer/platform/loader/fetch/resource.cc third_party/blink/renderer/platform/loader/fetch/resource.h third_party/blink/renderer/platform/loader/fetch/resource_error.cc third_party/blink/renderer/platform/loader/fetch/resource_load_scheduler.cc third_party/blink/renderer/platform/loader/fetch/resource_loader.cc third_party/blink/renderer/platform/loader/fetch/resource_request.h third_party/blink/renderer/platform/loader/fetch/resource_response.h third_party/blink/renderer/platform/loader/fetch/url_loader/background_url_loader.h third_party/blink/renderer/platform/loader/fetch/url_loader/navigation_body_loader_unittest.cc third_party/blink/renderer/platform/loader/fetch/url_loader/resource_request_sender_unittest.cc third_party/blink/renderer/platform/mojo/kurl_security_origin_test.cc third_party/blink/renderer/platform/network/form_data_encoder.cc third_party/blink/renderer/platform/network/http_parsers.cc third_party/blink/renderer/platform/network/http_parsers_test.cc third_party/blink/renderer/platform/network/network_state_notifier.cc third_party/blink/renderer/platform/network/network_utils_test.cc third_party/blink/renderer/platform/network/parsed_content_header_field_parameters.h third_party/blink/renderer/platform/peerconnection/rtc_video_encoder.cc third_party/blink/renderer/platform/scheduler/main_thread/main_thread_task_queue.h third_party/blink/renderer/platform/scheduler/main_thread/memory_purge_manager.cc third_party/blink/renderer/platform/scheduler/main_thread/memory_purge_manager.h third_party/blink/renderer/platform/scheduler/public/rail_mode_observer.h third_party/blink/renderer/platform/testing/image_decode_to_nia.cc third_party/blink/renderer/platform/text/hyphenation/hyphenation_minikin.cc third_party/blink/renderer/platform/text/icu_error.cc third_party/blink/renderer/platform/text/layout_locale_test.cc third_party/blink/renderer/platform/text/locale_win.cc third_party/blink/renderer/platform/text/locale_win_test.cc third_party/blink/renderer/platform/text/unicode_range.cc third_party/blink/renderer/platform/text/unicode_range.h third_party/blink/renderer/platform/transforms/matrix_transform_operation.h third_party/blink/renderer/platform/transforms/rotate_transform_operation.h third_party/blink/renderer/platform/transforms/scale_transform_operation.h third_party/blink/renderer/platform/transforms/skew_transform_operation.h third_party/blink/renderer/platform/transforms/transform_operation.h third_party/blink/renderer/platform/transforms/transform_operations.h third_party/blink/renderer/platform/transforms/translate_transform_operation.h third_party/blink/renderer/platform/weborigin/kurl.cc third_party/blink/renderer/platform/weborigin/kurl_test.cc third_party/blink/renderer/platform/weborigin/security_origin.cc third_party/blink/renderer/platform/weborigin/security_origin.h third_party/blink/renderer/platform/weborigin/security_origin_fuzzer.cc third_party/blink/renderer/platform/weborigin/security_origin_test.cc third_party/blink/renderer/platform/weborigin/security_policy_test.cc third_party/blink/renderer/platform/widget/compositing/layer_tree_view.cc third_party/blink/renderer/platform/widget/input/input_handler_proxy.cc third_party/blink/renderer/platform/widget/widget_base.cc third_party/blink/renderer/platform/wtf/assertions.h third_party/blink/renderer/platform/wtf/date_math.cc third_party/blink/renderer/platform/wtf/date_math.h third_party/blink/renderer/platform/wtf/deque.h third_party/blink/renderer/platform/wtf/dynamic_annotations.h third_party/blink/renderer/platform/wtf/hash_table.h third_party/blink/renderer/platform/wtf/linked_hash_set.h third_party/blink/renderer/platform/wtf/stack_util.cc third_party/blink/renderer/platform/wtf/text/string_impl.h third_party/blink/renderer/platform/wtf/text/wtf_string_test.cc third_party/blink/renderer/platform/wtf/thread_specific.h third_party/blink/renderer/platform/wtf/vector.h third_party/blink/renderer/platform/wtf/vector_test.cc third_party/boringssl/src/.bcr/metadata.template.json third_party/boringssl/src/CMakeLists.txt third_party/boringssl/src/crypto/cpu_aarch64_openbsd.cc third_party/boringssl/src/crypto/fipsmodule/aes/internal.h third_party/boringssl/src/crypto/internal.h third_party/boringssl/src/crypto/pkcs7/pkcs7_test.cc third_party/boringssl/src/crypto/pkcs8/pkcs8_x509.cc third_party/boringssl/src/crypto/rand/windows.cc third_party/boringssl/src/crypto/test/abi_test.h third_party/boringssl/src/crypto/test/file_util.cc third_party/boringssl/src/crypto/thread_win.cc third_party/boringssl/src/include/openssl/ssl.h third_party/boringssl/src/include/openssl/target.h third_party/boringssl/src/include/openssl/x509.h third_party/boringssl/src/pki/parse_certificate.h third_party/boringssl/src/pki/signature_algorithm.cc third_party/boringssl/src/pki/string_util_unittest.cc third_party/boringssl/src/pki/testdata/parse_certificate_unittest/v3_certificate_template.txt third_party/boringssl/src/pki/trust_store.h third_party/boringssl/src/pki/verify_certificate_chain.cc third_party/boringssl/src/ssl/ssl_test.cc third_party/boringssl/src/third_party/benchmark/src/cycleclock.h third_party/boringssl/src/third_party/googletest/docs/_layouts/default.html third_party/boringssl/src/third_party/googletest/googlemock/src/gmock_main.cc third_party/boringssl/src/third_party/googletest/googletest/include/gtest/gtest_pred_impl.h third_party/boringssl/src/third_party/googletest/googletest/include/gtest/internal/gtest-port.h third_party/boringssl/src/third_party/googletest/googletest/src/gtest-death-test.cc third_party/boringssl/src/third_party/googletest/googletest/src/gtest.cc third_party/boringssl/src/third_party/googletest/googletest/test/googletest-death-test-test.cc third_party/boringssl/src/third_party/googletest/googletest/test/gtest_list_output_unittest_.cc third_party/boringssl/src/third_party/googletest/googletest/test/gtest_skip_test.cc third_party/boringssl/src/tool/fd.cc third_party/breakpad/BUILD.gn third_party/breakpad/breakpad/src/client/linux/minidump_writer/minidump_writer.cc third_party/breakpad/breakpad/src/client/linux/minidump_writer/minidump_writer_unittest.cc third_party/breakpad/breakpad/src/client/linux/sender/google_crash_report_sender.cc third_party/breakpad/breakpad/src/client/mac/handler/exception_handler.cc third_party/breakpad/breakpad/src/client/minidump_file_writer_unittest.cc third_party/breakpad/breakpad/src/common/dwarf/dwarf2reader_lineinfo_unittest.cc third_party/breakpad/breakpad/src/common/dwarf/dwarf2reader_splitfunctions_unittest.cc third_party/breakpad/breakpad/src/common/dwarf/elf_reader.cc third_party/breakpad/breakpad/src/common/dwarf/elf_reader.h third_party/breakpad/breakpad/src/common/dwarf_range_list_handler.cc third_party/breakpad/breakpad/src/common/dwarf_range_list_handler.h third_party/breakpad/breakpad/src/common/linux/dump_symbols_unittest.cc third_party/breakpad/breakpad/src/common/linux/elf_gnu_compat.h third_party/breakpad/breakpad/src/common/linux/elf_symbols_to_module.cc third_party/breakpad/breakpad/src/common/linux/elf_symbols_to_module.h third_party/breakpad/breakpad/src/common/linux/elf_symbols_to_module_unittest.cc third_party/breakpad/breakpad/src/common/linux/synth_elf.h third_party/breakpad/breakpad/src/common/linux/synth_elf_unittest.cc third_party/breakpad/breakpad/src/common/linux/tests/crash_generator.cc third_party/breakpad/breakpad/src/common/mac/super_fat_arch.h third_party/breakpad/breakpad/src/common/md5.h third_party/breakpad/breakpad/src/common/module.h third_party/breakpad/breakpad/src/common/windows/pdb_source_line_writer.cc third_party/breakpad/breakpad/src/common/windows/pe_util.cc third_party/breakpad/breakpad/src/google_breakpad/common/minidump_exception_win32.h third_party/breakpad/breakpad/src/google_breakpad/common/minidump_format.h third_party/breakpad/breakpad/src/google_breakpad/processor/fast_source_line_resolver.h third_party/breakpad/breakpad/src/google_breakpad/processor/source_line_resolver_base.h third_party/breakpad/breakpad/src/processor/basic_source_line_resolver_types.h third_party/breakpad/breakpad/src/processor/cfi_frame_info.h third_party/breakpad/breakpad/src/processor/fast_source_line_resolver.cc third_party/breakpad/breakpad/src/processor/fast_source_line_resolver_types.h third_party/breakpad/breakpad/src/processor/fast_source_line_resolver_unittest.cc third_party/breakpad/breakpad/src/processor/map_serializers-inl.h third_party/breakpad/breakpad/src/processor/map_serializers.h third_party/breakpad/breakpad/src/processor/map_serializers_unittest.cc third_party/breakpad/breakpad/src/processor/minidump.cc third_party/breakpad/breakpad/src/processor/module_comparer.cc third_party/breakpad/breakpad/src/processor/module_comparer.h third_party/breakpad/breakpad/src/processor/module_factory.h third_party/breakpad/breakpad/src/processor/module_serializer.cc third_party/breakpad/breakpad/src/processor/module_serializer.h third_party/breakpad/breakpad/src/processor/proc_maps_linux.cc third_party/breakpad/breakpad/src/processor/simple_serializer-inl.h third_party/breakpad/breakpad/src/processor/simple_serializer.h third_party/breakpad/breakpad/src/processor/source_line_resolver_base.cc third_party/breakpad/breakpad/src/processor/source_line_resolver_base_types.h third_party/breakpad/breakpad/src/processor/stackwalker_address_list.cc third_party/breakpad/breakpad/src/processor/stackwalker_address_list.h third_party/breakpad/breakpad/src/processor/stackwalker_address_list_unittest.cc third_party/breakpad/breakpad/src/processor/stackwalker_arm.cc third_party/breakpad/breakpad/src/processor/stackwalker_arm_unittest.cc third_party/breakpad/breakpad/src/processor/stackwalker_x86.cc third_party/breakpad/breakpad/src/processor/static_address_map-inl.h third_party/breakpad/breakpad/src/processor/static_address_map.h third_party/breakpad/breakpad/src/processor/static_address_map_unittest.cc third_party/breakpad/breakpad/src/processor/static_contained_range_map-inl.h third_party/breakpad/breakpad/src/processor/static_contained_range_map.h third_party/breakpad/breakpad/src/processor/static_contained_range_map_unittest.cc third_party/breakpad/breakpad/src/processor/static_map-inl.h third_party/breakpad/breakpad/src/processor/static_map.h third_party/breakpad/breakpad/src/processor/static_map_iterator-inl.h third_party/breakpad/breakpad/src/processor/static_map_iterator.h third_party/breakpad/breakpad/src/processor/static_map_unittest.cc third_party/breakpad/breakpad/src/processor/static_range_map-inl.h third_party/breakpad/breakpad/src/processor/static_range_map.h third_party/breakpad/breakpad/src/processor/static_range_map_unittest.cc third_party/breakpad/breakpad/src/processor/windows_frame_info.h third_party/breakpad/breakpad/src/tools/linux/core_handler/core_handler.cc third_party/breakpad/breakpad/src/tools/linux/md2core/minidump-2-core.cc third_party/breakpad/breakpad/src/tools/python/filter_syms.py third_party/breakpad/breakpad/src/tools/windows/converter/ms_symbol_server_converter.cc third_party/breakpad/breakpad/src/tools/windows/converter/ms_symbol_server_converter.h third_party/breakpad/breakpad/src/tools/windows/converter_exe/converter.cc third_party/catapult/PRESUBMIT.py third_party/catapult/catapult_build/appengine_deploy.py third_party/catapult/catapult_build/js_checks.py third_party/catapult/catapult_build/perfbot_stats/chrome_perf_stats.py third_party/catapult/catapult_build/perfbot_stats/chrome_perf_step_timings.py third_party/catapult/catapult_build/run_dev_server_tests.py third_party/catapult/common/bin/update_chrome_reference_binaries.py third_party/catapult/common/lab/commits.py third_party/catapult/common/lab/hardware.py third_party/catapult/common/node_runner/node_runner/package-lock.json third_party/catapult/common/py_trace_event/py_trace_event/trace_event_impl/perfetto_proto_classes.py third_party/catapult/common/py_utils/py_utils/cloud_storage.py third_party/catapult/common/py_utils/py_utils/cloud_storage_unittest.py third_party/catapult/common/py_utils/py_utils/expectations_parser_unittest.py third_party/catapult/common/py_vulcanize/py_vulcanize/generate.py third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_01.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_02.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_03.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_04.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_05.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_06.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_07.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_08.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_09.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_10.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/main/atgroup_11.css third_party/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/opacity-filter.css third_party/catapult/common/py_vulcanize/third_party/rjsmin/bench/apiviewer.js third_party/catapult/common/py_vulcanize/third_party/rjsmin/bench/jquery-1.7.1.js third_party/catapult/dashboard/dashboard/__init__.py third_party/catapult/dashboard/dashboard/add_histograms_queue.py third_party/catapult/dashboard/dashboard/add_histograms_queue_test.py third_party/catapult/dashboard/dashboard/add_histograms_test.py third_party/catapult/dashboard/dashboard/add_point_queue.py third_party/catapult/dashboard/dashboard/add_point_test.py third_party/catapult/dashboard/dashboard/alert_groups_test.py third_party/catapult/dashboard/dashboard/alerts_test.py third_party/catapult/dashboard/dashboard/api/alerts_test.py third_party/catapult/dashboard/dashboard/api/api_auth.py third_party/catapult/dashboard/dashboard/api/api_request_handler.py third_party/catapult/dashboard/dashboard/api/api_request_handler_test.py third_party/catapult/dashboard/dashboard/api/examples/apps_script_service_account.js third_party/catapult/dashboard/dashboard/api/examples/cors.html third_party/catapult/dashboard/dashboard/api/examples/service_account.py third_party/catapult/dashboard/dashboard/api/examples/user_account.py third_party/catapult/dashboard/dashboard/associate_alerts_test.py third_party/catapult/dashboard/dashboard/auto_bisect_test.py third_party/catapult/dashboard/dashboard/buildbucket_job_status_test.py third_party/catapult/dashboard/dashboard/common/cloud_metric.py third_party/catapult/dashboard/dashboard/common/datastore_hooks.py third_party/catapult/dashboard/dashboard/common/datastore_hooks_test.py third_party/catapult/dashboard/dashboard/common/defaults.py third_party/catapult/dashboard/dashboard/common/feature_flags.py third_party/catapult/dashboard/dashboard/common/file_bug.py third_party/catapult/dashboard/dashboard/common/layered_cache_test.py third_party/catapult/dashboard/dashboard/common/namespaced_stored_object_test.py third_party/catapult/dashboard/dashboard/common/testing_common.py third_party/catapult/dashboard/dashboard/common/utils.py third_party/catapult/dashboard/dashboard/common/utils_test.py third_party/catapult/dashboard/dashboard/dispatcher.py third_party/catapult/dashboard/dashboard/dump_graph_json_test.py third_party/catapult/dashboard/dashboard/edit_anomalies_test.py third_party/catapult/dashboard/dashboard/edit_site_config.py third_party/catapult/dashboard/dashboard/edit_site_config_test.py third_party/catapult/dashboard/dashboard/elements/alerts-page.html third_party/catapult/dashboard/dashboard/elements/bug-details-test.html third_party/catapult/dashboard/dashboard/elements/bug-details.html third_party/catapult/dashboard/dashboard/elements/bug-info.html third_party/catapult/dashboard/dashboard/elements/chart-container-test.html third_party/catapult/dashboard/dashboard/elements/chart-container.html third_party/catapult/dashboard/dashboard/elements/chart-sparkline.html third_party/catapult/dashboard/dashboard/elements/group-report-page-test.html third_party/catapult/dashboard/dashboard/elements/group-report-page.html third_party/catapult/dashboard/dashboard/elements/login-warning.html third_party/catapult/dashboard/dashboard/elements/nav-bar.html third_party/catapult/dashboard/dashboard/elements/pinpoint-perf-job-dialog.html third_party/catapult/dashboard/dashboard/elements/report-page.html third_party/catapult/dashboard/dashboard/elements/speed-releasing-alerts-test.html third_party/catapult/dashboard/dashboard/elements/speed-releasing-alerts.html third_party/catapult/dashboard/dashboard/elements/speed-releasing-page.html third_party/catapult/dashboard/dashboard/elements/speed-releasing-table.html third_party/catapult/dashboard/dashboard/email_sheriff.py third_party/catapult/dashboard/dashboard/email_sheriff_test.py third_party/catapult/dashboard/dashboard/email_template.py third_party/catapult/dashboard/dashboard/email_template_test.py third_party/catapult/dashboard/dashboard/file_bug.py third_party/catapult/dashboard/dashboard/file_bug_test.py third_party/catapult/dashboard/dashboard/find_anomalies_test.py third_party/catapult/dashboard/dashboard/find_step.py third_party/catapult/dashboard/dashboard/graph_json_test.py third_party/catapult/dashboard/dashboard/group_report_test.py third_party/catapult/dashboard/dashboard/layered_cache_delete_expired_test.py third_party/catapult/dashboard/dashboard/list_tests_test.py third_party/catapult/dashboard/dashboard/load_from_prod.py third_party/catapult/dashboard/dashboard/main_test.py third_party/catapult/dashboard/dashboard/mark_recovered_alerts.py third_party/catapult/dashboard/dashboard/migrate_test_names.py third_party/catapult/dashboard/dashboard/migrate_test_names_tasks.py third_party/catapult/dashboard/dashboard/migrate_test_names_test.py third_party/catapult/dashboard/dashboard/models/alert_group_workflow.py third_party/catapult/dashboard/dashboard/models/alert_group_workflow_test.py third_party/catapult/dashboard/dashboard/models/anomaly_test.py third_party/catapult/dashboard/dashboard/models/graph_data.py third_party/catapult/dashboard/dashboard/models/graph_data_test.py third_party/catapult/dashboard/dashboard/models/histogram_test.py third_party/catapult/dashboard/dashboard/models/internal_only_model_test.py third_party/catapult/dashboard/dashboard/models/skia_helper_test.py third_party/catapult/dashboard/dashboard/pinpoint/dispatcher.py third_party/catapult/dashboard/dashboard/pinpoint/elements/index-page.html third_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/change-details.html third_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/exception-details.html third_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/execution-details.html third_party/catapult/dashboard/dashboard/pinpoint/elements/job-page/job-details.html third_party/catapult/dashboard/dashboard/pinpoint/elements/jobs-page/jobs-table.html third_party/catapult/dashboard/dashboard/pinpoint/elements/jobs-page/new-job-fab.html third_party/catapult/dashboard/dashboard/pinpoint/elements/navigation-bar-test.html third_party/catapult/dashboard/dashboard/pinpoint/elements/navigation-bar.html third_party/catapult/dashboard/dashboard/pinpoint/elements/results2-frame.html third_party/catapult/dashboard/dashboard/pinpoint/handlers/job.py third_party/catapult/dashboard/dashboard/pinpoint/handlers/job_test.py third_party/catapult/dashboard/dashboard/pinpoint/handlers/new_test.py third_party/catapult/dashboard/dashboard/pinpoint/index/index.html third_party/catapult/dashboard/dashboard/pinpoint/models/change/change_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/change/commit_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/change/patch.py third_party/catapult/dashboard/dashboard/pinpoint/models/change/patch_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/change/repository.py third_party/catapult/dashboard/dashboard/pinpoint/models/change/repository_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/errors.py third_party/catapult/dashboard/dashboard/pinpoint/models/job.py third_party/catapult/dashboard/dashboard/pinpoint/models/job_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/quest/find_isolate.py third_party/catapult/dashboard/dashboard/pinpoint/models/quest/find_isolate_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/quest/run_telemetry_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/quest/run_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/quest/run_test_test.py third_party/catapult/dashboard/dashboard/pinpoint/models/results2.py third_party/catapult/dashboard/dashboard/pinpoint/models/results2_test.py third_party/catapult/dashboard/dashboard/pinpoint/test.py third_party/catapult/dashboard/dashboard/pinpoint_request_test.py third_party/catapult/dashboard/dashboard/revision_info_client_test.py third_party/catapult/dashboard/dashboard/services/buildbucket_service.py third_party/catapult/dashboard/dashboard/services/crrev_service.py third_party/catapult/dashboard/dashboard/services/crrev_service_test.py third_party/catapult/dashboard/dashboard/services/gerrit_service.py third_party/catapult/dashboard/dashboard/services/gerrit_service_test.py third_party/catapult/dashboard/dashboard/services/gitiles_service_test.py third_party/catapult/dashboard/dashboard/services/google_sheets_service.py third_party/catapult/dashboard/dashboard/services/isolate.py third_party/catapult/dashboard/dashboard/services/isolate_test.py third_party/catapult/dashboard/dashboard/services/issue_tracker_service.py third_party/catapult/dashboard/dashboard/services/issue_tracker_service_test.py third_party/catapult/dashboard/dashboard/services/perf_issue_service_client.py third_party/catapult/dashboard/dashboard/services/pinpoint_service.py third_party/catapult/dashboard/dashboard/services/skia_bridge_service.py third_party/catapult/dashboard/dashboard/services/swarming.py third_party/catapult/dashboard/dashboard/services/workflow_service.py third_party/catapult/dashboard/dashboard/sheriff_config/luci_auth_service.py third_party/catapult/dashboard/dashboard/sheriff_config/service/__init__.py third_party/catapult/dashboard/dashboard/sheriff_config/test_match_policy.py third_party/catapult/dashboard/dashboard/sheriff_config/tests/config-discovery.json third_party/catapult/dashboard/dashboard/sheriff_config/tests/test_luci_config_cases.py third_party/catapult/dashboard/dashboard/sheriff_config/tests/test_service_cases.py third_party/catapult/dashboard/dashboard/sheriff_config_client.py third_party/catapult/dashboard/dashboard/static/alerts.html third_party/catapult/dashboard/dashboard/static/deprecation_banner.html third_party/catapult/dashboard/dashboard/static/group_report.html third_party/catapult/dashboard/dashboard/static/report.html third_party/catapult/dashboard/dashboard/static/simple_xhr.html third_party/catapult/dashboard/dashboard/static/speed_releasing.html third_party/catapult/dashboard/dashboard/templates/delete_test_data.html third_party/catapult/dashboard/dashboard/templates/migrate_test_names.html third_party/catapult/dashboard/dashboard/templates/migrate_test_names_unauthorized.html third_party/catapult/dashboard/dashboard/update_bug_with_results_test.py third_party/catapult/dashboard/dashboard/update_test_suite_descriptors_test.py third_party/catapult/dashboard/dashboard/update_test_suites.py third_party/catapult/dashboard/dashboard/update_test_suites_test.py third_party/catapult/dashboard/dashboard/uploads_info_test.py third_party/catapult/dashboard/dashboard_build/preprocess.py third_party/catapult/dashboard/sandwich_verification/Makefile third_party/catapult/dashboard/sandwich_verification/common/dashboard_service.py third_party/catapult/dashboard/sandwich_verification/common/pinpoint_service.py third_party/catapult/dashboard/sandwich_verification/common/request.py third_party/catapult/dashboard/skia_export/skia_export/skia_converter.py third_party/catapult/devil/PRESUBMIT.py third_party/catapult/devil/devil/android/device_utils.py third_party/catapult/devil/devil/android/device_utils_test.py third_party/catapult/devil/devil/android/ndk/abis.py third_party/catapult/devil/devil/android/sdk/adb_wrapper.py third_party/catapult/devil/devil/android/sdk/intent.py third_party/catapult/devil/devil/android/sdk/keyevent.py third_party/catapult/devil/devil/android/sdk/shared_prefs.py third_party/catapult/devil/devil/android/sdk/version_codes.py third_party/catapult/devil/devil/android/settings.py third_party/catapult/devil/devil/android/tools/system_app.py third_party/catapult/devil/devil/utils/markdown.py third_party/catapult/devil/devil/utils/markdown_test.py third_party/catapult/experimental/alert_configs/memory.py third_party/catapult/experimental/benchmark_health_report/dashboard_api.py third_party/catapult/experimental/benchmark_health_report/drive_api.py third_party/catapult/experimental/benchmark_health_report/sheet_writer.py third_party/catapult/experimental/bisect_lib/depot_map.py third_party/catapult/experimental/bisect_lib/fetch_intervening_revisions.py third_party/catapult/experimental/bisect_lib/fetch_revision_info.py third_party/catapult/experimental/bisect_lib/fetch_revision_info_test.py third_party/catapult/experimental/buildbot/buildbot.py third_party/catapult/experimental/heatmap/power.js third_party/catapult/experimental/perf_sheriffing_emailer/api_access.js third_party/catapult/experimental/perf_sheriffing_emailer/benchmark_owner_emailer.js third_party/catapult/experimental/perf_sheriffing_emailer/perf_bug_emailer.js third_party/catapult/experimental/trace_on_tap/background.js third_party/catapult/experimental/trace_on_tap/manifest.json third_party/catapult/experimental/trace_on_tap/trace_uploader.js third_party/catapult/experimental/tracing/bin/diff_heap_profiler.py third_party/catapult/netlog_viewer/netlog_viewer/dns_view.html third_party/catapult/netlog_viewer/netlog_viewer/events_view_test.html third_party/catapult/netlog_viewer/netlog_viewer/log_view_painter_test.html third_party/catapult/netlog_viewer/netlog_viewer/top_bar_view.html third_party/catapult/perf_issue_service/application/buganizer_utils.py third_party/catapult/perf_issue_service/application/clients/buganizer_client.py third_party/catapult/perf_issue_service/application/clients/chromeperf_client.py third_party/catapult/perf_issue_service/application/clients/monorail_client.py third_party/catapult/perf_issue_service/application/clients/sheriff_config_client.py third_party/catapult/perf_issue_service/application/utils.py third_party/catapult/skia_bridge/application/perf_api/alert_group.py third_party/catapult/skia_bridge/application/perf_api/anomalies.py third_party/catapult/skia_bridge/application/perf_api/auth_helper.py third_party/catapult/skia_bridge/application/perf_api/skia_perf_upload.py third_party/catapult/skia_bridge/common/cloud_metric.py third_party/catapult/skia_bridge/common/utils.py third_party/catapult/skia_bridge/tests/perf_api/alert_group_test.py third_party/catapult/skia_bridge/tests/perf_api/query_anomalies_test.py third_party/catapult/skia_bridge/tests/perf_api/query_anomalies_time_test.py third_party/catapult/skia_bridge/tests/perf_api/sample_row_data.json third_party/catapult/systrace/profile_chrome/chrome_startup_tracing_agent.py third_party/catapult/systrace/profile_chrome/chrome_startup_tracing_agent_unittest.py third_party/catapult/systrace/profile_chrome/main.py third_party/catapult/telemetry/examples/benchmarks/android_go_benchmark.py third_party/catapult/telemetry/telemetry/android/shared_android_state.py third_party/catapult/telemetry/telemetry/benchmark_unittest.py third_party/catapult/telemetry/telemetry/core/cros_interface_unittest.py third_party/catapult/telemetry/telemetry/decorators_unittest.py third_party/catapult/telemetry/telemetry/internal/actions/action_runner.py third_party/catapult/telemetry/telemetry/internal/actions/key_event.py third_party/catapult/telemetry/telemetry/internal/backends/android_browser_backend_settings.py third_party/catapult/telemetry/telemetry/internal/backends/chrome/cros_unittest.py third_party/catapult/telemetry/telemetry/internal/backends/chrome/crx_id.py third_party/catapult/telemetry/telemetry/internal/backends/chrome/desktop_browser_finder.py third_party/catapult/telemetry/telemetry/internal/backends/chrome/lacros_browser_backend.py third_party/catapult/telemetry/telemetry/internal/backends/chrome/oobe.py third_party/catapult/telemetry/telemetry/internal/backends/chrome/possible_desktop_browser_unittest.py third_party/catapult/telemetry/telemetry/internal/backends/chrome_inspector/inspector_websocket.py third_party/catapult/telemetry/telemetry/internal/backends/chrome_inspector/ui_devtools_client_backend.py third_party/catapult/telemetry/telemetry/internal/browser/browser_interval_profiling_controller.py third_party/catapult/telemetry/telemetry/internal/browser/browser_options.py third_party/catapult/telemetry/telemetry/internal/browser/tab.py third_party/catapult/telemetry/telemetry/internal/browser/tab_unittest.py third_party/catapult/telemetry/telemetry/internal/browser/ui_devtools.py third_party/catapult/telemetry/telemetry/internal/browser/user_agent.py third_party/catapult/telemetry/telemetry/internal/platform/posix_platform_backend.py third_party/catapult/telemetry/telemetry/internal/platform/win_platform_backend.py third_party/catapult/telemetry/telemetry/internal/story_runner_unittest.py third_party/catapult/telemetry/telemetry/internal/testing/archive_files/test_missing_wpr_file.json third_party/catapult/telemetry/telemetry/internal/testing/archive_files/test_page_set.py third_party/catapult/telemetry/telemetry/internal/testing/cast.html third_party/catapult/telemetry/telemetry/internal/testing/perf_report_output.txt third_party/catapult/telemetry/telemetry/page/cache_temperature.py third_party/catapult/telemetry/telemetry/page/legacy_page_test.py third_party/catapult/telemetry/telemetry/page/shared_page_state_unittest.py third_party/catapult/telemetry/telemetry/page/traffic_setting.py third_party/catapult/telemetry/telemetry/timeline/model.py third_party/catapult/telemetry/telemetry/timeline/trace_event_importer.py third_party/catapult/telemetry/telemetry/timeline/tracing_config.py third_party/catapult/telemetry/third_party/mox3/mox3/mox.py third_party/catapult/telemetry/third_party/mox3/mox3/stubout.py third_party/catapult/telemetry/third_party/mox3/mox3/tests/mox_helper.py third_party/catapult/telemetry/third_party/mox3/mox3/tests/stubout_helper.py third_party/catapult/telemetry/third_party/mox3/mox3/tests/test_mox.py third_party/catapult/telemetry/third_party/mox3/mox3/tests/test_stubout.py third_party/catapult/telemetry/third_party/png/png.py third_party/catapult/telemetry/third_party/websocket-client/setup.py third_party/catapult/third_party/apiclient/googleapiclient/discovery.py third_party/catapult/third_party/apiclient/googleapiclient/errors.py third_party/catapult/third_party/apiclient/googleapiclient/http.py third_party/catapult/third_party/apiclient/googleapiclient/model.py third_party/catapult/third_party/apiclient/googleapiclient/sample_tools.py third_party/catapult/third_party/apiclient/googleapiclient/schema.py third_party/catapult/third_party/beautifulsoup4/README.txt third_party/catapult/third_party/chardet/chardet/chardistribution.py third_party/catapult/third_party/chardet/chardet/codingstatemachine.py third_party/catapult/third_party/chardet/chardet/cp949prober.py third_party/catapult/third_party/chardet/chardet/enums.py third_party/catapult/third_party/chardet/chardet/escprober.py third_party/catapult/third_party/chardet/chardet/escsm.py third_party/catapult/third_party/chardet/chardet/eucjpprober.py third_party/catapult/third_party/chardet/chardet/euckrprober.py third_party/catapult/third_party/chardet/chardet/euctwprober.py third_party/catapult/third_party/chardet/chardet/gb2312prober.py third_party/catapult/third_party/chardet/chardet/mbcssm.py third_party/catapult/third_party/chardet/chardet/sjisprober.py third_party/catapult/third_party/chardet/chardet/utf8prober.py third_party/catapult/third_party/chardet/chardet/version.py third_party/catapult/third_party/cloudstorage/cloudstorage/cloudstorage_api.py third_party/catapult/third_party/cloudstorage/cloudstorage/errors.py third_party/catapult/third_party/cloudstorage/cloudstorage/storage_api.py third_party/catapult/third_party/coverage/coverage/htmlfiles/pyfile.html third_party/catapult/third_party/coverage/howto.txt third_party/catapult/third_party/flot/excanvas.js third_party/catapult/third_party/flot/jquery.flot.navigate.js third_party/catapult/third_party/flot/jquery.js third_party/catapult/third_party/google-auth/google/auth/_cloud_sdk.py third_party/catapult/third_party/google-auth/google/auth/_default.py third_party/catapult/third_party/google-auth/google/auth/app_engine.py third_party/catapult/third_party/google-auth/google/auth/compute_engine/_metadata.py third_party/catapult/third_party/google-auth/google/auth/compute_engine/credentials.py third_party/catapult/third_party/google-auth/google/auth/iam.py third_party/catapult/third_party/google-auth/google/auth/impersonated_credentials.py third_party/catapult/third_party/google-auth/google/auth/jwt.py third_party/catapult/third_party/google-auth/google/auth/transport/grpc.py third_party/catapult/third_party/google-auth/google/auth/transport/requests.py third_party/catapult/third_party/google-auth/google/auth/transport/urllib3.py third_party/catapult/third_party/google-auth/google/oauth2/credentials.py third_party/catapult/third_party/google-auth/google/oauth2/id_token.py third_party/catapult/third_party/graphy/graphy/backends/google_chart_api/base_encoder_test.py third_party/catapult/third_party/graphy/graphy/backends/google_chart_api/encoders.py third_party/catapult/third_party/gsutil/gslib/__main__.py third_party/catapult/third_party/gsutil/gslib/addlhelp/acls.py third_party/catapult/third_party/gsutil/gslib/addlhelp/command_opts.py third_party/catapult/third_party/gsutil/gslib/addlhelp/crc32c.py third_party/catapult/third_party/gsutil/gslib/addlhelp/creds.py third_party/catapult/third_party/gsutil/gslib/addlhelp/dev.py third_party/catapult/third_party/gsutil/gslib/addlhelp/metadata.py third_party/catapult/third_party/gsutil/gslib/addlhelp/prod.py third_party/catapult/third_party/gsutil/gslib/addlhelp/security.py third_party/catapult/third_party/gsutil/gslib/addlhelp/shim.py third_party/catapult/third_party/gsutil/gslib/addlhelp/support.py third_party/catapult/third_party/gsutil/gslib/addlhelp/versions.py third_party/catapult/third_party/gsutil/gslib/boto_resumable_upload.py third_party/catapult/third_party/gsutil/gslib/command.py third_party/catapult/third_party/gsutil/gslib/command_runner.py third_party/catapult/third_party/gsutil/gslib/commands/acl.py third_party/catapult/third_party/gsutil/gslib/commands/autoclass.py third_party/catapult/third_party/gsutil/gslib/commands/bucketpolicyonly.py third_party/catapult/third_party/gsutil/gslib/commands/compose.py third_party/catapult/third_party/gsutil/gslib/commands/config.py third_party/catapult/third_party/gsutil/gslib/commands/cors.py third_party/catapult/third_party/gsutil/gslib/commands/cp.py third_party/catapult/third_party/gsutil/gslib/commands/defacl.py third_party/catapult/third_party/gsutil/gslib/commands/defstorageclass.py third_party/catapult/third_party/gsutil/gslib/commands/du.py third_party/catapult/third_party/gsutil/gslib/commands/hmac.py third_party/catapult/third_party/gsutil/gslib/commands/iam.py third_party/catapult/third_party/gsutil/gslib/commands/kms.py third_party/catapult/third_party/gsutil/gslib/commands/label.py third_party/catapult/third_party/gsutil/gslib/commands/lifecycle.py third_party/catapult/third_party/gsutil/gslib/commands/logging.py third_party/catapult/third_party/gsutil/gslib/commands/ls.py third_party/catapult/third_party/gsutil/gslib/commands/mb.py third_party/catapult/third_party/gsutil/gslib/commands/mv.py third_party/catapult/third_party/gsutil/gslib/commands/notification.py third_party/catapult/third_party/gsutil/gslib/commands/pap.py third_party/catapult/third_party/gsutil/gslib/commands/perfdiag.py third_party/catapult/third_party/gsutil/gslib/commands/requesterpays.py third_party/catapult/third_party/gsutil/gslib/commands/retention.py third_party/catapult/third_party/gsutil/gslib/commands/rm.py third_party/catapult/third_party/gsutil/gslib/commands/rpo.py third_party/catapult/third_party/gsutil/gslib/commands/rsync.py third_party/catapult/third_party/gsutil/gslib/commands/setmeta.py third_party/catapult/third_party/gsutil/gslib/commands/signurl.py third_party/catapult/third_party/gsutil/gslib/commands/stat.py third_party/catapult/third_party/gsutil/gslib/commands/test.py third_party/catapult/third_party/gsutil/gslib/commands/ubla.py third_party/catapult/third_party/gsutil/gslib/commands/versioning.py third_party/catapult/third_party/gsutil/gslib/commands/web.py third_party/catapult/third_party/gsutil/gslib/gcs_json_api.py third_party/catapult/third_party/gsutil/gslib/gcs_json_credentials.py third_party/catapult/third_party/gsutil/gslib/iamcredentials_api.py third_party/catapult/third_party/gsutil/gslib/kms_api.py third_party/catapult/third_party/gsutil/gslib/metrics.py third_party/catapult/third_party/gsutil/gslib/pubsub_api.py third_party/catapult/third_party/gsutil/gslib/tests/signurl_signatures.py third_party/catapult/third_party/gsutil/gslib/tests/test_creds_config.py third_party/catapult/third_party/gsutil/gslib/tests/test_data/test.json third_party/catapult/third_party/gsutil/gslib/tests/test_data/test_external_account_authorized_user_credentials.json third_party/catapult/third_party/gsutil/gslib/tests/test_data/test_external_account_credentials.json third_party/catapult/third_party/gsutil/gslib/tests/test_hmac.py third_party/catapult/third_party/gsutil/gslib/tests/test_iam.py third_party/catapult/third_party/gsutil/gslib/tests/test_kms.py third_party/catapult/third_party/gsutil/gslib/tests/test_ls.py third_party/catapult/third_party/gsutil/gslib/tests/test_mtls.py third_party/catapult/third_party/gsutil/gslib/tests/test_perfdiag.py third_party/catapult/third_party/gsutil/gslib/tests/test_signurl.py third_party/catapult/third_party/gsutil/gslib/tests/test_wrapped_credentials.py third_party/catapult/third_party/gsutil/gslib/tests/testcase/integration_testcase.py third_party/catapult/third_party/gsutil/gslib/third_party/iamcredentials_apitools/iamcredentials_v1_client.py third_party/catapult/third_party/gsutil/gslib/third_party/iamcredentials_apitools/iamcredentials_v1_messages.py third_party/catapult/third_party/gsutil/gslib/third_party/kms_apitools/cloudkms_v1_client.py third_party/catapult/third_party/gsutil/gslib/third_party/kms_apitools/cloudkms_v1_messages.py third_party/catapult/third_party/gsutil/gslib/third_party/kms_apitools/resources.py third_party/catapult/third_party/gsutil/gslib/third_party/pubsub_apitools/pubsub_v1_client.py third_party/catapult/third_party/gsutil/gslib/third_party/pubsub_apitools/pubsub_v1_messages.py third_party/catapult/third_party/gsutil/gslib/third_party/storage_apitools/storage_v1_client.py third_party/catapult/third_party/gsutil/gslib/third_party/storage_apitools/storage_v1_messages.py third_party/catapult/third_party/gsutil/gslib/utils/boto_util.py third_party/catapult/third_party/gsutil/gslib/utils/constants.py third_party/catapult/third_party/gsutil/gslib/utils/copy_helper.py third_party/catapult/third_party/gsutil/gslib/utils/hashing_helper.py third_party/catapult/third_party/gsutil/gslib/utils/iam_helper.py third_party/catapult/third_party/gsutil/gslib/utils/system_util.py third_party/catapult/third_party/gsutil/gslib/utils/text_util.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/cloudfront/__init__.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/cognito/identity/layer1.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/connection.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/ec2/connection.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/emr/emrobject.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/glacier/layer1.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/glacier/writer.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/bucket.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/connection.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/key.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/gs/resumable_upload_handler.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/https_connection.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/iam/connection.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/rds/dbinstance.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/rds/dbsubnetgroup.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/s3/bucket.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/s3/key.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/sts/connection.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/gs/test_resumable_uploads.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/rds/test_db_subnet_group.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/route53/test_health_check.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/s3/other_cacerts.txt third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/integration/s3/test_https_cert_validation.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/unit/auth/test_sigv4.py third_party/catapult/third_party/gsutil/gslib/vendored/boto/tests/unit/emr/test_emr_responses.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/__init__.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/client.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/clientsecrets.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/_metadata.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/appengine.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/django_util/__init__.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/flask_util.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/contrib/gce.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/oauth2client/tools.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/samples/call_compute_service.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/samples/oauth2_for_devices.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/scripts/run_system_tests.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/setup.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/appengine/test_appengine.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/django_util/settings.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/django_util/test_views.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/contrib/test_multiprocess_file_storage.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/client_secrets.json third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials.json third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials_malformed_1.json third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials_malformed_2.json third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/gcloud/application_default_credentials_malformed_3.json third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/data/unfilled_client_secrets.json third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test__helpers.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_client.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_file.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_jwt.py third_party/catapult/third_party/gsutil/gslib/vendored/oauth2client/tests/test_service_account.py third_party/catapult/third_party/gsutil/setup.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/protorpclite/messages.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/base_api_test.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/batch.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/credentials_lib.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/exceptions_test.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/transfer.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/util.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/data/apitools_client_secrets.json third_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/gen_client.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/gen_client_lib.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/message_registry.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/service_registry.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/testdata/dns/dns_v1.json third_party/catapult/third_party/gsutil/third_party/apitools/apitools/gen/util.py third_party/catapult/third_party/gsutil/third_party/apitools/apitools/scripts/testdata/fake_client_secrets.json third_party/catapult/third_party/gsutil/third_party/apitools/samples/bigquery_sample/bigquery_v2.json third_party/catapult/third_party/gsutil/third_party/apitools/samples/bigquery_sample/bigquery_v2/bigquery_v2_client.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/bigquery_sample/bigquery_v2/bigquery_v2_messages.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/dns_sample/dns_v1.json third_party/catapult/third_party/gsutil/third_party/apitools/samples/dns_sample/dns_v1/dns_v1_client.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/dns_sample/gen_dns_client_test.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/fusiontables_sample/fusiontables_v1.json third_party/catapult/third_party/gsutil/third_party/apitools/samples/fusiontables_sample/fusiontables_v1/fusiontables_v1_client.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/fusiontables_sample/fusiontables_v1/fusiontables_v1_messages.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_client_test.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_v1.json third_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_v1/iam_v1_client.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/iam_sample/iam_v1/iam_v1_messages.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/servicemanagement_sample/servicemanagement_v1.json third_party/catapult/third_party/gsutil/third_party/apitools/samples/servicemanagement_sample/servicemanagement_v1/servicemanagement_v1_client.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/servicemanagement_sample/servicemanagement_v1/servicemanagement_v1_messages.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage_v1.json third_party/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage_v1/storage_v1_client.py third_party/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage_v1/storage_v1_messages.py third_party/catapult/third_party/gsutil/third_party/apitools/setup.py third_party/catapult/third_party/gsutil/third_party/argcomplete/setup.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/chardistribution.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/codingstatemachine.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/cp949prober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/enums.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/escprober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/escsm.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/eucjpprober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/euckrprober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/euctwprober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/gb2312prober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/mbcssm.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/sjisprober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/utf8prober.py third_party/catapult/third_party/gsutil/third_party/chardet/chardet/version.py third_party/catapult/third_party/gsutil/third_party/chardet/setup.py third_party/catapult/third_party/gsutil/third_party/chardet/tests/Big5/coolloud.org.tw.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/Big5/ke207.blogspot.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/Big5/upsaid.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/CP932/hardsoft.at.webry.info.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/arclamp.jp.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/blog.kabu-navi.com.atom.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/club.h14m.org.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-JP/misuzilla.org.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/ittrend.egloos.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/jowchung.oolim.net.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/siwoo.org.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/tori02.egloos.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/EUC-KR/yunho.egloos.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/cnblog.org.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/coverer.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/jjgod.3322.org.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/GB2312/xy15400.blogcn.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/IBM855/janulalife.blogspot.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/IBM866/janulalife.blogspot.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/KOI8-R/janulalife.blogspot.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/SHIFT_JIS/10e.org.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/SHIFT_JIS/andore.com.inami.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/SHIFT_JIS/bloglelife.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/iso-8859-5-cyrillic/janulalife.blogspot.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1250-hungarian/torokorszag.blogspot.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1251-bulgarian/bpm.cult.bg.4.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1251-bulgarian/bpm.cult.bg.medusa.4.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1251-cyrillic/janulalife.blogspot.com.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1255-hebrew/hydepark.hevre.co.il.7957.xml third_party/catapult/third_party/gsutil/third_party/chardet/tests/windows-1255-hebrew/notes.co.il.7.xml third_party/catapult/third_party/gsutil/third_party/crcmod/setup.py third_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/oauth2_client.py third_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/oauth2_helper.py third_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/gcs_oauth2_boto_plugin/test_oauth2_client.py third_party/catapult/third_party/gsutil/third_party/gcs-oauth2-boto-plugin/setup.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python-httplib2/google_auth_httplib2.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python-httplib2/setup.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/docs/_static/custom.css third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_cloud_sdk.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_default.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_default_async.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/_jwt_async.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/api_key.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/app_engine.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/aws.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/compute_engine/_metadata.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/compute_engine/credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/downscoped.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/external_account.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/external_account_authorized_user.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/iam.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/impersonated_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/jwt.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/_aiohttp_requests.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/grpc.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/requests.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/auth/transport/urllib3.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_client.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_client_async.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_id_token_async.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/_reauth_async.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/challenges.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/gdch_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/id_token.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/reauth.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/google/oauth2/service_account.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/authenticate_explicit_with_adc.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/authenticate_implicit_with_adc.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/idtoken_from_impersonated_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/idtoken_from_service_account.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/snippets_test.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/samples/cloud-client/snippets/verify_google_idtoken.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/setup.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/noxfile.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_async/conftest.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_async/test_id_token.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_async/test_service_account.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/app_engine_test_app/main.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/conftest.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_compute_engine.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_downscoping.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_external_accounts.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_grpc.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_id_token.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_impersonated_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_mtls_http.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_oauth2_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_requests.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_service_account.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/system_tests/system_tests_sync/test_urllib3.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/compute_engine/test_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/authorized_user_cloud_sdk.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/authorized_user_cloud_sdk_with_quota_project_id.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/client_secrets.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/es256_service_account.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/external_account_authorized_user.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/impersonated_service_account_authorized_user_source.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/impersonated_service_account_service_account_source.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/impersonated_service_account_with_quota_project.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/data/service_account.json third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test__client.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test_id_token.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/oauth2/test_service_account.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test__default.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test__helpers.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_app_engine.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_aws.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_downscoped.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_external_account.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_external_account_authorized_user.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_identity_pool.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_impersonated_credentials.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/test_pluggable.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/transport/test_grpc.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/transport/test_requests.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests/transport/test_urllib3.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests_async/oauth2/test_id_token.py third_party/catapult/third_party/gsutil/third_party/google-auth-library-python/tests_async/test__default_async.py third_party/catapult/third_party/gsutil/third_party/google-reauth-python/google_reauth/_reauth_client.py third_party/catapult/third_party/gsutil/third_party/google-reauth-python/google_reauth/challenges.py third_party/catapult/third_party/gsutil/third_party/google-reauth-python/google_reauth/reauth.py third_party/catapult/third_party/gsutil/third_party/google-reauth-python/setup.py third_party/catapult/third_party/gsutil/third_party/google-reauth-python/tests/test_reauth.py third_party/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/__init__.py third_party/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/__init__.py third_party/catapult/third_party/gsutil/third_party/httplib2/tests/_TODO_legacy/python2/httplib2test_appengine.py third_party/catapult/third_party/gsutil/third_party/httplib2/tests/test_proxy.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/pem.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1155.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1157.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1901.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1902.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc1905.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2251.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2314.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2315.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2437.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2459.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2511.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc2560.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3280.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3281.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3412.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3414.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3447.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc3852.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc4210.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc4211.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc5208.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc5280.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc5652.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/rfc6402.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/setup.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2314.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2315.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2437.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2459.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2511.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc2560.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc4210.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc5208.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc5280.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tests/test_rfc5652.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/cmpdump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/crldump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/crmfdump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/ocspclient.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/ocspreqdump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/ocsprspdump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs10dump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs1dump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs7dump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/pkcs8dump.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/snmpget.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/x509dump-rfc5280.py third_party/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/x509dump.py third_party/catapult/third_party/gsutil/third_party/pyasn1/docs/source/conf.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/eoo.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/der/decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/der/encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/native/decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/native/encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/binary.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/calling.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/dateandtime.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/integer.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/octets.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/compat/string.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/debug.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/error.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/base.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/char.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/constraint.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/error.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/namedtype.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/namedval.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/opentype.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/tag.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/tagmap.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/univ.py third_party/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/useful.py third_party/catapult/third_party/gsutil/third_party/pyasn1/setup.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/base.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/ber/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/ber/test_decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/ber/test_encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/cer/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/cer/test_decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/cer/test_encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/der/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/der/test_decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/der/test_encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/native/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/native/test_decoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/codec/native/test_encoder.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/test_binary.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/test_integer.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/compat/test_octets.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/test_debug.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/__main__.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_char.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_constraint.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_namedtype.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_namedval.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_opentype.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_tag.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_univ.py third_party/catapult/third_party/gsutil/third_party/pyasn1/tests/type/test_useful.py third_party/catapult/third_party/gsutil/third_party/pyparsing/simple_unit_tests.py third_party/catapult/third_party/gsutil/third_party/pyu2f/setup.py third_party/catapult/third_party/gsutil/third_party/requests/tests/test_requests.py third_party/catapult/third_party/gsutil/third_party/requests/tests/test_utils.py third_party/catapult/third_party/gsutil/third_party/retry-decorator/setup.py third_party/catapult/third_party/gsutil/third_party/rsa/rsa/randnum.py third_party/catapult/third_party/gsutil/third_party/urllib3/dummyserver/proxy.py third_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/connectionpool.py third_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/contrib/_appengine_environ.py third_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/contrib/appengine.py third_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/contrib/ntlmpool.py third_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/poolmanager.py third_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/util/ssl_.py third_party/catapult/third_party/gsutil/third_party/urllib3/src/urllib3/util/url.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/appengine/test_urlfetch.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/benchmark.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/port_helpers.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/test_compatibility.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/test_connectionpool.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/test_poolmanager.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/test_ssl.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/test_util.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/with_dummyserver/test_proxy_poolmanager.py third_party/catapult/third_party/gsutil/third_party/urllib3/test/with_dummyserver/test_socketlevel.py third_party/catapult/third_party/html5lib-1.1/html5lib/tests/test_parser2.py third_party/catapult/third_party/jquery/jquery-2.1.4.js third_party/catapult/third_party/mapreduce/mapreduce/handlers.py third_party/catapult/third_party/mapreduce/mapreduce/mapreduce_pipeline.py third_party/catapult/third_party/mapreduce/mapreduce/records.py third_party/catapult/third_party/mapreduce/mapreduce/static/detail.html third_party/catapult/third_party/mapreduce/mapreduce/status.py third_party/catapult/third_party/mapreduce/mapreduce/test_support.py third_party/catapult/third_party/mapreduce/mapreduce/util.py third_party/catapult/third_party/mocha/mocha.js third_party/catapult/third_party/mox3/mox3/mox.py third_party/catapult/third_party/mox3/mox3/stubout.py third_party/catapult/third_party/mox3/mox3/tests/mox_helper.py third_party/catapult/third_party/mox3/mox3/tests/stubout_helper.py third_party/catapult/third_party/mox3/mox3/tests/test_mox.py third_party/catapult/third_party/mox3/mox3/tests/test_stubout.py third_party/catapult/third_party/oauth2client/oauth2client/__init__.py third_party/catapult/third_party/oauth2client/oauth2client/appengine.py third_party/catapult/third_party/oauth2client/oauth2client/client.py third_party/catapult/third_party/oauth2client/oauth2client/clientsecrets.py third_party/catapult/third_party/oauth2client/oauth2client/django_orm.py third_party/catapult/third_party/oauth2client/oauth2client/file.py third_party/catapult/third_party/oauth2client/oauth2client/gce.py third_party/catapult/third_party/oauth2client/oauth2client/keyring_storage.py third_party/catapult/third_party/oauth2client/oauth2client/locked_file.py third_party/catapult/third_party/oauth2client/oauth2client/multistore_file.py third_party/catapult/third_party/oauth2client/oauth2client/tools.py third_party/catapult/third_party/oauth2client/oauth2client/util.py third_party/catapult/third_party/oauth2client/oauth2client/xsrfutil.py third_party/catapult/third_party/pipeline/pipeline/pipeline.py third_party/catapult/third_party/pipeline/pipeline/ui/common.js third_party/catapult/third_party/pipeline/pipeline/ui/root_list.js third_party/catapult/third_party/pipeline/pipeline/ui/status.js third_party/catapult/third_party/polymer/components/app-route/demo/youtube-demo/youtube-search.html third_party/catapult/third_party/polymer/components/font-roboto/roboto.html third_party/catapult/third_party/polymer/components/google-apis/.bower.json third_party/catapult/third_party/polymer/components/google-apis/bower.json third_party/catapult/third_party/polymer/components/google-apis/demo/index.html third_party/catapult/third_party/polymer/components/google-apis/google-client-loader.html third_party/catapult/third_party/polymer/components/google-apis/google-js-api.html third_party/catapult/third_party/polymer/components/google-apis/google-legacy-loader.html third_party/catapult/third_party/polymer/components/google-apis/google-maps-api.html third_party/catapult/third_party/polymer/components/google-apis/google-plusone-api.html third_party/catapult/third_party/polymer/components/google-apis/google-realtime-api.html third_party/catapult/third_party/polymer/components/google-apis/google-youtube-api.html third_party/catapult/third_party/polymer/components/google-signin/demo/index.html third_party/catapult/third_party/polymer/components/google-signin/google-signin-aware.html third_party/catapult/third_party/polymer/components/google-signin/google-signin.html third_party/catapult/third_party/polymer/components/iron-a11y-keys-behavior/iron-a11y-keys-behavior.html third_party/catapult/third_party/polymer/components/iron-ajax/demo/index.html third_party/catapult/third_party/polymer/components/iron-ajax/iron-ajax.html third_party/catapult/third_party/polymer/components/iron-flex-layout/iron-flex-layout.html third_party/catapult/third_party/polymer/components/iron-icon/iron-icon.html third_party/catapult/third_party/polymer/components/iron-icons/iron-icons.html third_party/catapult/third_party/polymer/components/iron-jsonp-library/demo/index.html third_party/catapult/third_party/polymer/components/iron-jsonp-library/iron-jsonp-library.html third_party/catapult/third_party/polymer/components/iron-overlay-behavior/iron-focusables-helper.html third_party/catapult/third_party/polymer/components/iron-overlay-behavior/iron-overlay-manager.html third_party/catapult/third_party/polymer/components/neon-animation/neon-animated-pages.html third_party/catapult/third_party/polymer/components/paper-button/package.json third_party/catapult/third_party/polymer/components/paper-button/paper-button.html third_party/catapult/third_party/polymer/components/paper-card/paper-card.html third_party/catapult/third_party/polymer/components/paper-checkbox/paper-checkbox.html third_party/catapult/third_party/polymer/components/paper-dialog/paper-dialog.html third_party/catapult/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu-light.html third_party/catapult/third_party/polymer/components/paper-dropdown-menu/paper-dropdown-menu.html third_party/catapult/third_party/polymer/components/paper-fab/paper-fab.html third_party/catapult/third_party/polymer/components/paper-icon-button/paper-icon-button.html third_party/catapult/third_party/polymer/components/paper-input/paper-input.html third_party/catapult/third_party/polymer/components/paper-item/paper-item.html third_party/catapult/third_party/polymer/components/paper-listbox/paper-listbox.html third_party/catapult/third_party/polymer/components/paper-material/paper-material.html third_party/catapult/third_party/polymer/components/paper-menu-button/paper-menu-button.html third_party/catapult/third_party/polymer/components/paper-menu/paper-menu.html third_party/catapult/third_party/polymer/components/paper-progress/paper-progress.html third_party/catapult/third_party/polymer/components/paper-radio-button/paper-radio-button.html third_party/catapult/third_party/polymer/components/paper-radio-group/paper-radio-group.html third_party/catapult/third_party/polymer/components/paper-ripple/paper-ripple.html third_party/catapult/third_party/polymer/components/paper-spinner/paper-spinner-lite.html third_party/catapult/third_party/polymer/components/paper-spinner/paper-spinner.html third_party/catapult/third_party/polymer/components/paper-styles/classes/typography.html third_party/catapult/third_party/polymer/components/paper-styles/default-theme.html third_party/catapult/third_party/polymer/components/paper-styles/element-styles/paper-item-styles.html third_party/catapult/third_party/polymer/components/paper-styles/element-styles/paper-material-styles.html third_party/catapult/third_party/polymer/components/paper-styles/paper-styles.html third_party/catapult/third_party/polymer/components/paper-tabs/paper-tabs.html third_party/catapult/third_party/polymer/components/paper-toast/paper-toast.html third_party/catapult/third_party/polymer/components/paper-tooltip/paper-tooltip.html third_party/catapult/third_party/polymer/components/shadycss/src/style-settings.js third_party/catapult/third_party/polymer/components/web-animations-js/src/apply-preserving-inline-style.js third_party/catapult/third_party/polymer/components/webcomponentsjs/ShadowDOM.js third_party/catapult/third_party/polymer/components/webcomponentsjs/ShadowDOM.min.js third_party/catapult/third_party/polymer/components/webcomponentsjs/webcomponents.js third_party/catapult/third_party/polymer/components/webcomponentsjs/webcomponents.min.js third_party/catapult/third_party/pyasn1/pyasn1/codec/ber/decoder.py third_party/catapult/third_party/pyasn1/pyasn1/codec/ber/encoder.py third_party/catapult/third_party/pyasn1/pyasn1/codec/ber/eoo.py third_party/catapult/third_party/pyasn1/pyasn1/codec/cer/decoder.py third_party/catapult/third_party/pyasn1/pyasn1/codec/cer/encoder.py third_party/catapult/third_party/pyasn1/pyasn1/codec/der/decoder.py third_party/catapult/third_party/pyasn1/pyasn1/codec/der/encoder.py third_party/catapult/third_party/pyasn1/pyasn1/codec/native/decoder.py third_party/catapult/third_party/pyasn1/pyasn1/codec/native/encoder.py third_party/catapult/third_party/pyasn1/pyasn1/compat/binary.py third_party/catapult/third_party/pyasn1/pyasn1/compat/calling.py third_party/catapult/third_party/pyasn1/pyasn1/compat/dateandtime.py third_party/catapult/third_party/pyasn1/pyasn1/compat/integer.py third_party/catapult/third_party/pyasn1/pyasn1/compat/octets.py third_party/catapult/third_party/pyasn1/pyasn1/compat/string.py third_party/catapult/third_party/pyasn1/pyasn1/debug.py third_party/catapult/third_party/pyasn1/pyasn1/error.py third_party/catapult/third_party/pyasn1/pyasn1/type/base.py third_party/catapult/third_party/pyasn1/pyasn1/type/char.py third_party/catapult/third_party/pyasn1/pyasn1/type/constraint.py third_party/catapult/third_party/pyasn1/pyasn1/type/error.py third_party/catapult/third_party/pyasn1/pyasn1/type/namedtype.py third_party/catapult/third_party/pyasn1/pyasn1/type/namedval.py third_party/catapult/third_party/pyasn1/pyasn1/type/opentype.py third_party/catapult/third_party/pyasn1/pyasn1/type/tag.py third_party/catapult/third_party/pyasn1/pyasn1/type/tagmap.py third_party/catapult/third_party/pyasn1/pyasn1/type/univ.py third_party/catapult/third_party/pyasn1/pyasn1/type/useful.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/pem.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1155.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1157.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1901.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1902.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc1905.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2251.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2314.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2315.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2437.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2459.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2511.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2560.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc2986.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3280.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3281.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3412.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3414.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3447.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc3852.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc4210.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc4211.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc5208.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc5280.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc5652.py third_party/catapult/third_party/pyasn1_modules/pyasn1_modules/rfc6402.py third_party/catapult/third_party/python_gflags/Makefile third_party/catapult/third_party/python_gflags/gflags.py third_party/catapult/third_party/python_gflags/gflags_validators.py third_party/catapult/third_party/python_gflags/setup.py third_party/catapult/third_party/snap-it/tests/tests.js third_party/catapult/third_party/typ/setup.py third_party/catapult/third_party/typ/typ/artifacts.py third_party/catapult/third_party/typ/typ/fakes/test_result_server_fake.py third_party/catapult/third_party/typ/typ/json_results.py third_party/catapult/third_party/typ/typ/result_sink.py third_party/catapult/third_party/typ/typ/tests/expectations_parser_test.py third_party/catapult/third_party/typ/typ/tests/result_sink_test.py third_party/catapult/third_party/vinn/third_party/parse5/benchmark/package.json third_party/catapult/third_party/vinn/third_party/parse5/benchmark/spec.html third_party/catapult/third_party/vinn/third_party/parse5/lib/tokenization/tokenizer.js third_party/catapult/third_party/vinn/third_party/parse5/package.json third_party/catapult/third_party/vinn/third_party/parse5/parse5.js third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/cern/expected.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/cern/src.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/dx/expected.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/dx/src.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/github_parse5/expected.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/github_parse5/src.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/wiki_42/expected.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/serialization/wiki_42/src.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/lhc/expected.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/lhc/src.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/nodejsorg/expected.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/nodejsorg/src.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/npmorg/expected.html third_party/catapult/third_party/vinn/third_party/parse5/test/data/simple_api_parsing/npmorg/src.html third_party/catapult/third_party/vinn/third_party/parse5/test/fixtures/tokenizer_test.js third_party/catapult/third_party/webapp2/docs/_themes/webapp2/layout.html third_party/catapult/third_party/webapp2/setup.py third_party/catapult/third_party/webapp2/tests/extras_appengine_users_test.py third_party/catapult/third_party/webapp2/tests/extras_routes_test.py third_party/catapult/third_party/webapp2/tests/misc_test.py third_party/catapult/third_party/webapp2/tests/routing_test.py third_party/catapult/third_party/webapp2/webapp2.py third_party/catapult/third_party/webapp2/webapp2_extras/appengine/auth/models.py third_party/catapult/third_party/webapp2/webapp2_extras/json.py third_party/catapult/third_party/webapp2/webapp2_extras/routes.py third_party/catapult/third_party/webapp2/webapp2_extras/security.py third_party/catapult/third_party/webtest/webtest/response.py third_party/catapult/third_party/werkzeug/testapp.py third_party/catapult/trace_processor/experimental/mappers/scheduling/map_gesture_timing.html third_party/catapult/trace_processor/experimental/mappers/scheduling/map_input_blockers.html third_party/catapult/trace_processor/experimental/mappers/scheduling/map_rendering_cost.html third_party/catapult/trace_processor/experimental/mappers/scheduling/map_wake_ups.html third_party/catapult/trace_processor/experimental/mappers/v8_map_function.html third_party/catapult/trace_processor/trace_uploader/appengine_config.py third_party/catapult/trace_processor/trace_uploader/cloud_config.py third_party/catapult/tracing/bower.json third_party/catapult/tracing/third_party/gl-matrix/bower.json third_party/catapult/tracing/third_party/gl-matrix/jsdoc-template/static/default.css third_party/catapult/tracing/third_party/gl-matrix/package.json third_party/catapult/tracing/third_party/mocha/mocha.js third_party/catapult/tracing/third_party/oboe/test/libs/es5-sham.js third_party/catapult/tracing/third_party/oboe/test/libs/es5-shim.js third_party/catapult/tracing/third_party/oboe/test/require/require.js third_party/catapult/tracing/third_party/oboe/test/specs/oboe.integration.spec.js third_party/catapult/tracing/tracing/base/math/running_statistics.html third_party/catapult/tracing/tracing/base/multi_dimensional_view_test.html third_party/catapult/tracing/tracing/base/utils_test.html third_party/catapult/tracing/tracing/core/filter.html third_party/catapult/tracing/tracing/extras/ads/domain_category.html third_party/catapult/tracing/tracing/extras/ads/domain_category_test.html third_party/catapult/tracing/tracing/extras/android/android_auditor.html third_party/catapult/tracing/tracing/extras/chrome/cc/input_latency_async_slice.html third_party/catapult/tracing/tracing/extras/chrome/cc/picture.html third_party/catapult/tracing/tracing/extras/chrome/chrome_auditor_test.html third_party/catapult/tracing/tracing/extras/chrome/estimated_input_latency.html third_party/catapult/tracing/tracing/extras/chrome/time_to_interactive.html third_party/catapult/tracing/tracing/extras/importer/android/event_log_importer.html third_party/catapult/tracing/tracing/extras/importer/etw/etw_importer.html third_party/catapult/tracing/tracing/extras/importer/etw/process_parser.html third_party/catapult/tracing/tracing/extras/importer/etw/thread_parser.html third_party/catapult/tracing/tracing/extras/importer/fuchsia_importer.html third_party/catapult/tracing/tracing/extras/importer/legacy_heap_dump_trace_event_importer.html third_party/catapult/tracing/tracing/extras/importer/profiling_dictionary_reader.html third_party/catapult/tracing/tracing/extras/importer/v8/v8_log_importer_test.html third_party/catapult/tracing/tracing/extras/net/net_async_slice_test.html third_party/catapult/tracing/tracing/extras/symbolizer/symbolize_trace.py third_party/catapult/tracing/tracing/importer/find_load_expectations.html third_party/catapult/tracing/tracing/metrics/media_metric.html third_party/catapult/tracing/tracing/metrics/spa_navigation_helper.html third_party/catapult/tracing/tracing/metrics/system_health/expected_queueing_time_metric.html third_party/catapult/tracing/tracing/model/global_memory_dump.html third_party/catapult/tracing/tracing/model/global_memory_dump_test.html third_party/catapult/tracing/tracing/model/memory_allocator_dump.html third_party/catapult/tracing/tracing/model/source_info/source_info_test.html third_party/catapult/tracing/tracing/model/stack_frame_test.html third_party/catapult/tracing/tracing/model/vm_region.html third_party/catapult/tracing/tracing/mre/cloud_storage.py third_party/catapult/tracing/tracing/ui/analysis/alert_sub_view_test.html third_party/catapult/tracing/tracing/ui/analysis/generic_object_view_test.html third_party/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html third_party/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane.html third_party/catapult/tracing/tracing/ui/base/dom_helpers_test.html third_party/catapult/tracing/tracing/ui/base/table_test.html third_party/catapult/tracing/tracing/ui/extras/about_tracing/inspector_connection.html third_party/catapult/tracing/tracing/ui/extras/about_tracing/profiling_view.html third_party/catapult/tracing/tracing/ui/extras/chrome/codesearch.html third_party/catapult/tracing/tracing/ui/extras/drive/comments_side_panel_test.html third_party/catapult/tracing/tracing/ui/extras/drive/index.html third_party/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table.html third_party/catapult/tracing/tracing/ui/timeline_view.html third_party/catapult/tracing/tracing/value/chart_json_converter_test.html third_party/catapult/tracing/tracing/value/histogram.py third_party/catapult/tracing/tracing/value/histogram_importer.html third_party/catapult/tracing/tracing/value/ui/generic_set_span_test.html third_party/catapult/tracing/tracing/value/ui/scalar_context_controller.html third_party/catapult/tracing/tracing/value/ui/scalar_span.html third_party/catapult/tracing/tracing_build/histograms_viewer.html third_party/catapult/tracing/tracing_build/merge_traces.py third_party/catapult/tracing/tracing_examples/string_convert.js third_party/catapult/web_page_replay_go/PRESUBMIT.py third_party/ced/src/compact_enc_det/compact_enc_det_unittest.cc third_party/cld_3/src/setup.py third_party/cld_3/src/src/script_span/getonescriptspan.cc third_party/cld_3/src/src/script_span/getonescriptspan.h third_party/cld_3/src/src/script_span/offsetmap.cc third_party/cld_3/src/src/script_span/offsetmap.h third_party/cld_3/src/src/script_span/utf8statetable.h third_party/colorama/src/demos/demo09.py third_party/compiler-rt/src/lib/asan/asan_ignorelist.txt third_party/compiler-rt/src/lib/asan/asan_malloc_win.cpp third_party/compiler-rt/src/lib/asan/asan_win.cpp third_party/compiler-rt/src/lib/fuzzer/FuzzerSHA1.cpp third_party/compiler-rt/src/lib/fuzzer/FuzzerUtilWindows.cpp third_party/compiler-rt/src/lib/hwasan/hwasan_dynamic_shadow.cpp third_party/compiler-rt/src/lib/hwasan/hwasan_report.cpp third_party/compiler-rt/src/lib/interception/interception_win.cpp third_party/compiler-rt/src/lib/profile/WindowsMMap.c third_party/compiler-rt/src/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp third_party/compiler-rt/src/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp third_party/compiler-rt/src/lib/sanitizer_common/sanitizer_symbolizer_markup_constants.h third_party/compiler-rt/src/lib/sanitizer_common/sanitizer_symbolizer_win.cpp third_party/compiler-rt/src/lib/sanitizer_common/sanitizer_tls_get_addr.h third_party/compiler-rt/src/lib/sanitizer_common/sanitizer_win.cpp third_party/compiler-rt/src/lib/scudo/standalone/platform.h third_party/compiler-rt/src/lib/tsan/rtl/tsan_rtl_access.cpp third_party/compiler-rt/src/test/asan/TestCases/Darwin/address-range-limit.mm third_party/compiler-rt/src/test/asan/TestCases/Darwin/cstring_literals_regtest.mm third_party/compiler-rt/src/test/asan/TestCases/Darwin/linked-only.cpp third_party/compiler-rt/src/test/asan/TestCases/Darwin/malloc_set_zone_name-mprotect.cpp third_party/compiler-rt/src/test/asan/TestCases/Darwin/mixing-global-constructors.cpp third_party/compiler-rt/src/test/asan/TestCases/Darwin/objc-odr.mm third_party/compiler-rt/src/test/asan/TestCases/Darwin/reexec-insert-libraries-env.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/clone_test.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/globals-gc-sections-lld.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/init-order-dlopen.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/interception_readdir_r_test.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/kernel-area.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/malloc-in-qsort.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/nohugepage_test.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/odr-violation.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/overflow-in-qsort.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/ptrace.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/shmctl.cpp third_party/compiler-rt/src/test/asan/TestCases/Linux/stack-trace-dlclose.cpp third_party/compiler-rt/src/test/asan/TestCases/Posix/asan-symbolize-sanity-test.cpp third_party/compiler-rt/src/test/asan/TestCases/Posix/coverage-module-unloaded.cpp third_party/compiler-rt/src/test/asan/TestCases/Posix/coverage.cpp third_party/compiler-rt/src/test/asan/TestCases/Posix/dlclose-test.cpp third_party/compiler-rt/src/test/asan/TestCases/Posix/glob.cpp third_party/compiler-rt/src/test/asan/TestCases/Posix/no_asan_gen_globals.c third_party/compiler-rt/src/test/asan/TestCases/Posix/tsd_dtor_leak.cpp third_party/compiler-rt/src/test/asan/TestCases/Posix/wait4.cpp third_party/compiler-rt/src/test/asan/TestCases/Windows/crt_initializers.cpp third_party/compiler-rt/src/test/asan/TestCases/Windows/dll_operator_array_new_with_dtor_left_oob.cpp third_party/compiler-rt/src/test/asan/TestCases/Windows/longjmp.cpp third_party/compiler-rt/src/test/asan/TestCases/Windows/msvc/dll_seh.cpp third_party/compiler-rt/src/test/asan/TestCases/Windows/msvc/seh.cpp third_party/compiler-rt/src/test/asan/TestCases/Windows/operator_array_new_with_dtor_left_oob.cpp third_party/compiler-rt/src/test/asan/TestCases/atexit_stats.cpp third_party/compiler-rt/src/test/asan/TestCases/default_ignorelist.cpp third_party/compiler-rt/src/test/asan/TestCases/heap-overflow-large.cpp third_party/compiler-rt/src/test/asan/TestCases/initialization-bug-no-global.cpp third_party/compiler-rt/src/test/asan/TestCases/initialization-bug.cpp third_party/compiler-rt/src/test/asan/TestCases/log-path_test.cpp third_party/compiler-rt/src/test/asan/TestCases/printf-3.c third_party/compiler-rt/src/test/asan/TestCases/throw_call_test.cpp third_party/compiler-rt/src/test/asan/TestCases/time_interceptor.cpp third_party/compiler-rt/src/test/cfi/cross-dso/target_out_of_bounds.cpp third_party/compiler-rt/src/test/fuzzer/lit.cfg.py third_party/compiler-rt/src/test/lsan/TestCases/new_array_with_dtor_0.cpp third_party/compiler-rt/src/test/lsan/TestCases/thread_context_crash.cpp third_party/compiler-rt/src/test/msan/select_float_origin.cpp third_party/compiler-rt/src/test/sanitizer_common/TestCases/Linux/allow_user_segv.cpp third_party/compiler-rt/src/test/sanitizer_common/TestCases/Linux/dn_expand.cpp third_party/compiler-rt/src/test/tsan/ignore_lib6.cpp third_party/compiler-rt/src/test/tsan/mmap_stress.cpp third_party/compiler-rt/src/test/tsan/pthread_atfork_deadlock2.c third_party/compiler-rt/src/test/tsan/pthread_atfork_deadlock3.c third_party/compiler-rt/src/test/tsan/pthread_key.cpp third_party/compiler-rt/src/test/ubsan/TestCases/Misc/log-path_test.cpp third_party/content_analysis_sdk/src/agent/src/scoped_print_handle_win.cc third_party/content_analysis_sdk/src/common/utils_win.cc third_party/cpu_features/src/src/impl_arm_linux_or_android.c third_party/cpu_features/src/src/impl_x86_windows.c third_party/cpu_features/src/test/cpuinfo_arm_test.cc third_party/cpuinfo/src/test/mock/moto-e-gen1.h third_party/cpuinfo/src/test/mock/moto-g-gen1.h third_party/cpuinfo/src/test/mock/moto-g-gen2.h third_party/cpuinfo/src/test/mock/moto-g-gen3.h third_party/cpuinfo/src/test/mock/moto-g-gen4.h third_party/cpuinfo/src/test/mock/moto-g-gen5.h third_party/cpuinfo/src/test/mock/nexus-s.h third_party/cpuinfo/src/test/mock/nexus10.h third_party/cpuinfo/src/test/mock/nexus4.h third_party/cpuinfo/src/test/mock/nexus5x.h third_party/cpuinfo/src/test/mock/nexus6.h third_party/cpuinfo/src/test/mock/nexus6p.h third_party/cpuinfo/src/test/mock/nexus9.h third_party/cpuinfo/src/test/mock/padcod-10.1.h third_party/cpuinfo/src/test/mock/pixel-2-xl.h third_party/cpuinfo/src/test/mock/pixel-c.h third_party/cpuinfo/src/test/mock/pixel-xl.h third_party/cpuinfo/src/test/mock/pixel.h third_party/crashpad/crashpad/build/install_linux_sysroot.py third_party/crashpad/crashpad/client/crashpad_client_fuchsia.cc third_party/crashpad/crashpad/client/crashpad_client_win.cc third_party/crashpad/crashpad/client/ios_handler/in_process_handler.cc third_party/crashpad/crashpad/client/length_delimited_ring_buffer.h third_party/crashpad/crashpad/client/prune_crash_reports.cc third_party/crashpad/crashpad/compat/android/dlfcn_internal.h third_party/crashpad/crashpad/compat/android/sys/mman.h third_party/crashpad/crashpad/compat/linux/sys/ptrace.h third_party/crashpad/crashpad/compat/win/winnt.h third_party/crashpad/crashpad/doc/support/crashpad.doxy.h third_party/crashpad/crashpad/doc/support/crashpad_doxygen.css third_party/crashpad/crashpad/handler/handler_main.cc third_party/crashpad/crashpad/handler/linux/exception_handler_server.cc third_party/crashpad/crashpad/handler/mac/file_limit_annotation.h third_party/crashpad/crashpad/handler/win/crash_other_program.cc third_party/crashpad/crashpad/handler/win/wer/crashpad_wer.cc third_party/crashpad/crashpad/handler/win/wer/crashpad_wer_main.cc third_party/crashpad/crashpad/minidump/minidump_extensions.h third_party/crashpad/crashpad/minidump/minidump_memory_writer.cc third_party/crashpad/crashpad/minidump/minidump_memory_writer.h third_party/crashpad/crashpad/package.h third_party/crashpad/crashpad/snapshot/BUILD.gn third_party/crashpad/crashpad/snapshot/elf/elf_image_reader.cc third_party/crashpad/crashpad/snapshot/elf/module_snapshot_elf.cc third_party/crashpad/crashpad/snapshot/elf/module_snapshot_elf.h third_party/crashpad/crashpad/snapshot/fuchsia/process_reader_fuchsia.cc third_party/crashpad/crashpad/snapshot/fuchsia/process_snapshot_fuchsia.cc third_party/crashpad/crashpad/snapshot/fuchsia/system_snapshot_fuchsia.cc third_party/crashpad/crashpad/snapshot/handle_snapshot.h third_party/crashpad/crashpad/snapshot/linux/system_snapshot_linux.cc third_party/crashpad/crashpad/snapshot/mac/mach_o_image_segment_reader.cc third_party/crashpad/crashpad/snapshot/mac/mach_o_image_symbol_table_reader.cc third_party/crashpad/crashpad/snapshot/mac/process_reader_mac_test.cc third_party/crashpad/crashpad/snapshot/mac/system_snapshot_mac.cc third_party/crashpad/crashpad/snapshot/minidump/module_snapshot_minidump.cc third_party/crashpad/crashpad/snapshot/minidump/process_snapshot_minidump.cc third_party/crashpad/crashpad/snapshot/minidump/system_snapshot_minidump.cc third_party/crashpad/crashpad/snapshot/win/end_to_end_test.py third_party/crashpad/crashpad/snapshot/win/exception_snapshot_win.cc third_party/crashpad/crashpad/snapshot/win/module_snapshot_win.cc third_party/crashpad/crashpad/snapshot/win/module_snapshot_win.h third_party/crashpad/crashpad/snapshot/win/pe_image_reader.cc third_party/crashpad/crashpad/snapshot/win/pe_image_resource_reader.cc third_party/crashpad/crashpad/snapshot/win/process_reader_win.cc third_party/crashpad/crashpad/snapshot/win/process_snapshot_win.cc third_party/crashpad/crashpad/third_party/cpp-httplib/cpp-httplib/httplib.h third_party/crashpad/crashpad/third_party/googletest/BUILD.gn third_party/crashpad/crashpad/tools/generate_dump.cc third_party/crashpad/crashpad/util/file/file_io.h third_party/crashpad/crashpad/util/file/file_io_test.cc third_party/crashpad/crashpad/util/linux/memory_map.cc third_party/crashpad/crashpad/util/misc/paths_fuchsia.cc third_party/crashpad/crashpad/util/net/http_transport_socket.cc third_party/crashpad/crashpad/util/posix/close_multiple.cc third_party/crashpad/crashpad/util/posix/process_info.h third_party/crashpad/crashpad/util/posix/process_info_mac.cc third_party/crashpad/crashpad/util/thread/worker_thread_test.cc third_party/crashpad/crashpad/util/win/command_line.cc third_party/crashpad/crashpad/util/win/command_line_test.cc third_party/crashpad/crashpad/util/win/handle.h third_party/crashpad/crashpad/util/win/nt_internals.h third_party/crashpad/crashpad/util/win/process_info.h third_party/crashpad/crashpad/util/win/process_structs.h third_party/crashpad/crashpad/util/win/registration_protocol_win.cc third_party/crashpad/crashpad/util/win/safe_terminate_process.h third_party/crashpad/crashpad/util/win/safe_terminate_process_test.cc third_party/crashpad/crashpad/util/win/xp_compat.h third_party/crashpad/update.py third_party/cros-components/src/card/card.ts third_party/cros-components/src/orca_feedback/orca-feedback.ts third_party/cros-components/src/snackbar/show_snackbar.ts third_party/cros-components/src/snackbar/snackbar.ts third_party/cros-components/src/textfield/textfield.ts third_party/cros-components/src/tooltip/tooltip.ts third_party/cros_system_api/dbus/bluetooth/dbus-constants.h third_party/cros_system_api/dbus/shill/dbus-constants.h third_party/crossbench-web-tests/cuj/crossbench/sql_packages/cujs/simultaneous_load/tab_load_durations.sql third_party/crossbench/chrome-extension-replay/devtools-recorder/crossbench.html third_party/crossbench/config/benchmark/loadline2/google_docs_instrumentation.js third_party/crossbench/config/benchmark/loadline2/google_search_instrumentation.js third_party/crossbench/config/benchmark/loadline2/webpagereplay_script_injections_phone.json third_party/crossbench/config/benchmark/loadline2/webpagereplay_script_injections_tablet.json third_party/crossbench/config/benchmark/loadline2/youtube_instrumentation.js third_party/crossbench/crossbench/action_runner/action/enums.py third_party/crossbench/crossbench/action_runner/action/position.py third_party/crossbench/crossbench/action_runner/action/text_input.py third_party/crossbench/crossbench/action_runner/default_bond_action_runner.py third_party/crossbench/crossbench/benchmarks/loading/config/login/google.py third_party/crossbench/crossbench/benchmarks/loading/loading_benchmark.py third_party/crossbench/crossbench/benchmarks/loading/page/live.py third_party/crossbench/crossbench/benchmarks/loadline/loadline.py third_party/crossbench/crossbench/benchmarks/powerline/powerline_benchmark.py third_party/crossbench/crossbench/bond/bond.py third_party/crossbench/crossbench/browsers/chrome/downloader.py third_party/crossbench/crossbench/browsers/chromium/applescript.py third_party/crossbench/crossbench/browsers/chromium/driver_finder.py third_party/crossbench/crossbench/browsers/chromium/webdriver.py third_party/crossbench/crossbench/browsers/chromium_based/chromium_based.py third_party/crossbench/crossbench/browsers/edge/webdriver.py third_party/crossbench/crossbench/browsers/firefox/downloader.py third_party/crossbench/crossbench/browsers/firefox/webdriver.py third_party/crossbench/crossbench/cli/cli.py third_party/crossbench/crossbench/cli/config/extension.py third_party/crossbench/crossbench/cli/config/network.py third_party/crossbench/crossbench/cli/exception_formatter.py third_party/crossbench/crossbench/cli/subcommand/pinpoint.py third_party/crossbench/crossbench/pinpoint/api.py third_party/crossbench/crossbench/pinpoint/auth.py third_party/crossbench/crossbench/pinpoint/job_results.py third_party/crossbench/crossbench/pinpoint/list_jobs.py third_party/crossbench/crossbench/pinpoint/patch_resolver.py third_party/crossbench/crossbench/plt/android_adb.py third_party/crossbench/crossbench/probes/chrome_histograms.py third_party/crossbench/crossbench/probes/perfetto/downloader.py third_party/crossbench/crossbench/probes/performance_entries.py third_party/crossbench/crossbench/probes/profiling/browser_profiling.py third_party/crossbench/crossbench/probes/profiling/context/base.py third_party/crossbench/crossbench/probes/profiling/enum.py third_party/crossbench/crossbench/probes/trace_processor/queries/loadline/breakdown.sql third_party/crossbench/crossbench/probes/web_page_replay/recorder.py third_party/crossbench/protoc/compile.py third_party/crossbench/tests/crossbench/benchmarks/loading/action_runner/test_default_bond_action_runner.py third_party/crossbench/tests/crossbench/benchmarks/loading/config/test_example_configs.py third_party/crossbench/tests/crossbench/benchmarks/loading/config/test_login.py third_party/crossbench/tests/crossbench/benchmarks/loading/config/test_pages.py third_party/crossbench/tests/crossbench/benchmarks/loading/test_loading.py third_party/crossbench/tests/crossbench/network/test_web_page_replay.py third_party/crossbench/tests/crossbench/pinpoint/test_config.py third_party/crossbench/tests/crossbench/pinpoint/test_job_config.py third_party/crossbench/tests/crossbench/pinpoint/test_job_results.py third_party/crossbench/tests/crossbench/pinpoint/test_patch_resolver.py third_party/crossbench/tests/crossbench/pinpoint/test_start_job.py third_party/crossbench/tests/crossbench/plt/test_chromeos_ssh.py third_party/crossbench/tests/crossbench/probes/test_js.py third_party/crossbench/tests/crossbench/probes/test_meminfo.py third_party/crossbench/tests/crossbench/probes/test_perfetto.py third_party/crossbench/tests/crossbench/probes/test_v8_rcs.py third_party/crossbench/tests/crossbench/test_config.py third_party/crossbench/tests/crossbench/test_env.py third_party/crossbench/tests/crossbench/test_parse.py third_party/crossbench/tests/end2end/android/test_wpr_record_and_replay.py third_party/crossbench/tests/end2end/desktop/test_cli.py third_party/dav1d/BUILD.gn third_party/dav1d/generate_source.py third_party/dav1d/libdav1d/tests/checkasm/itx.c third_party/dav1d/libdav1d/tools/input/annexb.c third_party/dav1d/libdav1d/tools/input/parse.h third_party/dav1d/libdav1d/tools/input/section5.c third_party/dawn/.vscode/tasks.json third_party/dawn/CMakeLists.txt third_party/dawn/generator/dawn_json_generator.py third_party/dawn/infra/specs/PRESUBMIT.py third_party/dawn/scripts/roll_chromium_deps.py third_party/dawn/scripts/roll_chromium_deps.py.vpython3 third_party/dawn/src/dawn/common/Constants.h third_party/dawn/src/dawn/common/SystemUtils.cpp third_party/dawn/src/dawn/dawn.json third_party/dawn/src/dawn/native/BindGroupLayoutInternal.h third_party/dawn/src/dawn/native/CommandAllocator.cpp third_party/dawn/src/dawn/native/Commands.h third_party/dawn/src/dawn/native/CopyTextureForBrowserHelper.cpp third_party/dawn/src/dawn/native/Device.h third_party/dawn/src/dawn/native/Features.cpp third_party/dawn/src/dawn/native/Limits.cpp third_party/dawn/src/dawn/native/ResourceTable.cpp third_party/dawn/src/dawn/native/ResourceTable.h third_party/dawn/src/dawn/native/Sampler.h third_party/dawn/src/dawn/native/ShaderModule.cpp third_party/dawn/src/dawn/native/SubresourceStorage.h third_party/dawn/src/dawn/native/Texture.cpp third_party/dawn/src/dawn/native/Texture.h third_party/dawn/src/dawn/native/Toggles.cpp third_party/dawn/src/dawn/native/d3d/D3DError.cpp third_party/dawn/src/dawn/native/d3d11/BindGroupTrackerD3D11.cpp third_party/dawn/src/dawn/native/d3d11/BufferD3D11.cpp third_party/dawn/src/dawn/native/d3d11/DeviceD3D11.cpp third_party/dawn/src/dawn/native/d3d11/DeviceInfoD3D11.cpp third_party/dawn/src/dawn/native/d3d11/PhysicalDeviceD3D11.cpp third_party/dawn/src/dawn/native/d3d11/PipelineLayoutD3D11.cpp third_party/dawn/src/dawn/native/d3d11/QueueD3D11.cpp third_party/dawn/src/dawn/native/d3d11/SamplerD3D11.cpp third_party/dawn/src/dawn/native/d3d11/SwapChainD3D11.cpp third_party/dawn/src/dawn/native/d3d11/TextureD3D11.cpp third_party/dawn/src/dawn/native/d3d12/BufferD3D12.cpp third_party/dawn/src/dawn/native/d3d12/CommandBufferD3D12.cpp third_party/dawn/src/dawn/native/d3d12/D3D12Info.cpp third_party/dawn/src/dawn/native/d3d12/PhysicalDeviceD3D12.cpp third_party/dawn/src/dawn/native/d3d12/ResourceAllocatorManagerD3D12.cpp third_party/dawn/src/dawn/native/d3d12/ResourceAllocatorManagerD3D12.h third_party/dawn/src/dawn/native/d3d12/SamplerD3D12.cpp third_party/dawn/src/dawn/native/d3d12/SharedBufferMemoryD3D12.cpp third_party/dawn/src/dawn/native/d3d12/SharedTextureMemoryD3D12.cpp third_party/dawn/src/dawn/native/d3d12/TextureD3D12.cpp third_party/dawn/src/dawn/native/d3d12/UtilsD3D12.cpp third_party/dawn/src/dawn/native/metal/CommandBufferMTL.mm third_party/dawn/src/dawn/native/metal/DeviceMTL.mm third_party/dawn/src/dawn/native/metal/MultiDrawEncoder.mm third_party/dawn/src/dawn/native/metal/QueueMTL.h third_party/dawn/src/dawn/native/opengl/CommandBufferGL.cpp third_party/dawn/src/dawn/native/opengl/ContextEGL.cpp third_party/dawn/src/dawn/native/opengl/TextureGL.cpp third_party/dawn/src/dawn/native/vulkan/BackendVk.cpp third_party/dawn/src/dawn/native/vulkan/PhysicalDeviceVk.cpp third_party/dawn/src/dawn/native/vulkan/RenderPassCache.h third_party/dawn/src/dawn/native/vulkan/ResourceTableVk.cpp third_party/dawn/src/dawn/native/vulkan/TextureVk.cpp third_party/dawn/src/dawn/native/vulkan/VulkanInfo.cpp third_party/dawn/src/dawn/native/vulkan/VulkanInfo.h third_party/dawn/src/dawn/native/webgpu/DeviceWGPU.cpp third_party/dawn/src/dawn/partition_alloc/partition_alloc/pointers/raw_ptr.h third_party/dawn/src/dawn/partition_alloc/partition_alloc/pointers/raw_ptr_exclusion.h third_party/dawn/src/dawn/partition_alloc/partition_alloc/pointers/raw_ref.h third_party/dawn/src/dawn/platform/metrics/HistogramMacros.h third_party/dawn/src/dawn/tests/DawnTest.cpp third_party/dawn/src/dawn/tests/PartitionAllocSupport.cpp third_party/dawn/src/dawn/tests/end2end/ArchTierLimitsExhaustive.cpp third_party/dawn/src/dawn/tests/end2end/BindingArrayTests.cpp third_party/dawn/src/dawn/tests/end2end/BufferHostMappedPointerTests_win.cpp third_party/dawn/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp third_party/dawn/src/dawn/tests/end2end/CopyTests.cpp third_party/dawn/src/dawn/tests/end2end/DepthBiasTests.cpp third_party/dawn/src/dawn/tests/end2end/ResourceTableTests.cpp third_party/dawn/src/dawn/tests/end2end/TextureViewTests.cpp third_party/dawn/src/dawn/tests/end2end/VertexStateTests.cpp third_party/dawn/src/dawn/tests/end2end/VideoViewsTests.h third_party/dawn/src/dawn/tests/end2end/VideoViewsTests_gbm.cpp third_party/dawn/src/dawn/tests/end2end/VideoViewsTests_win.cpp third_party/dawn/src/dawn/tests/perf_tests/DawnPerfTestPlatform.h third_party/dawn/src/dawn/tests/unittests/validation/ComputeValidationTests.cpp third_party/dawn/src/dawn/tests/unittests/validation/CopyCommandsValidationTests.cpp third_party/dawn/src/dawn/tests/unittests/validation/RenderPassDescriptorValidationTests.cpp third_party/dawn/src/dawn/tests/unittests/validation/ResourceTableValidationTests.cpp third_party/dawn/src/dawn/tests/white_box/SharedBufferMemoryTests_win.cpp third_party/dawn/src/dawn/tests/white_box/SharedTextureMemoryTests_dmabuf.cpp third_party/dawn/src/dawn/tests/white_box/VulkanImageWrappingTests_DmaBuf.cpp third_party/dawn/src/dawn/utils/WindowsDebugLogger.cpp third_party/dawn/src/tint/lang/glsl/writer/writer.cc third_party/dawn/src/tint/lang/hlsl/type/rasterizer_ordered_texture_2d.h third_party/dawn/src/tint/lang/hlsl/writer/printer/printer.cc third_party/dawn/src/tint/lang/wgsl/reader/parser/lexer_test.cc third_party/dawn/src/tint/lang/wgsl/resolver/eval_builtin_test.cc third_party/dawn/third_party/dxc/include/dxc/Support/Unicode.h third_party/dawn/third_party/dxc/include/llvm/DebugInfo/PDB/PDBSymbol.h third_party/dawn/third_party/dxc/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h third_party/dawn/third_party/dxc/include/llvm/DebugInfo/PDB/PDBTypes.h third_party/dawn/third_party/dxc/include/llvm/IR/PassManager.h third_party/dawn/third_party/dxc/include/llvm/Support/COFF.h third_party/dawn/third_party/dxc/include/llvm/Support/CommandLine.h third_party/dawn/third_party/dxc/include/llvm/Support/SpecialCaseList.h third_party/dawn/third_party/dxc/include/llvm/Support/TimeProfiler.h third_party/dawn/third_party/dxc/include/llvm/Support/Valgrind.h third_party/dawn/third_party/dxc/include/llvm/Support/Win64EH.h third_party/dawn/third_party/dxc/include/miniz/miniz.h third_party/dawn/third_party/dxc/lib/Analysis/DxilConstantFolding.cpp third_party/dawn/third_party/dxc/lib/DxcSupport/FileIOHelper.cpp third_party/dawn/third_party/dxc/lib/DxcSupport/WinAdapter.cpp third_party/dawn/third_party/dxc/lib/DxilCompression/miniz.h third_party/dawn/third_party/dxc/lib/Fuzzer/FuzzerSHA1.cpp third_party/dawn/third_party/dxc/lib/HLSL/DxilExpandTrigIntrinsics.cpp third_party/dawn/third_party/dxc/lib/Support/Windows/MSFileSystem.inc.cpp third_party/dawn/third_party/dxc/lib/Transforms/Instrumentation/AddressSanitizer.cpp third_party/dawn/third_party/dxc/lib/Transforms/Instrumentation/ThreadSanitizer.cpp third_party/dawn/third_party/dxc/lib/Transforms/Instrumentation/memorysanitizer.cpp third_party/dawn/third_party/dxc/tools/clang/include/clang/Basic/TargetInfo.h third_party/dawn/third_party/dxc/tools/clang/include/clang/Format/Format.h third_party/dawn/third_party/dxc/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h third_party/dawn/third_party/dxc/tools/clang/lib/AST/ASTContext.cpp third_party/dawn/third_party/dxc/tools/clang/lib/CodeGen/CodeGenModule.cpp third_party/dawn/third_party/dxc/tools/clang/lib/Driver/SanitizerArgs.cpp third_party/dawn/third_party/dxc/tools/clang/lib/Format/TokenAnnotator.cpp third_party/dawn/third_party/dxc/tools/clang/lib/Frontend/DependencyFile.cpp third_party/dawn/third_party/dxc/tools/clang/lib/Headers/cuda_builtin_vars.h third_party/dawn/third_party/dxc/tools/clang/lib/Headers/float.h third_party/dawn/third_party/dxc/tools/clang/lib/Lex/PPDirectives.cpp third_party/dawn/third_party/dxc/tools/clang/lib/Lex/Pragma.cpp third_party/dawn/third_party/dxc/tools/clang/lib/Sema/SemaDecl.cpp third_party/dawn/third_party/dxc/tools/clang/test/Lexer/pragma-message.c third_party/dawn/third_party/dxc/tools/clang/test/Lexer/pragma-region.c third_party/dawn/third_party/dxc/tools/clang/test/Preprocessor/pragma-pushpop-macro.c third_party/dawn/third_party/dxc/tools/clang/tools/dotnetc/dndxc.csproj.txt third_party/dawn/third_party/dxc/tools/clang/unittests/HLSL/ClangHLSLTests.vcxproj.user.txt third_party/dawn/third_party/dxc/tools/clang/unittests/HLSLExec/ExecHLSLTests.vcxproj.user.txt third_party/dawn/third_party/dxc/tools/clang/unittests/HLSLExec/ExecutionTest.cpp third_party/dawn/third_party/dxc/tools/clang/unittests/HLSLExec/ShaderOpArith.xml third_party/dawn/third_party/dxc/tools/dxexp/dxexp.cpp third_party/dawn/third_party/dxc/tools/llvm-objdump/COFFDump.cpp third_party/dawn/third_party/dxc/unittests/Support/ManagedStatic.cpp third_party/dawn/third_party/dxc/utils/hct/hctjs.js third_party/dawn/third_party/dxc/utils/hct/hcttracei.py third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-actions.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-cardinalities.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-actions.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-function-mockers.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-generated-nice-strict.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-matchers.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-more-actions.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-more-matchers.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock-spec-builders.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/gmock.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/include/gmock/internal/gmock-port.h third_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-all.cc third_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-cardinalities.cc third_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-internal-utils.cc third_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-matchers.cc third_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock-spec-builders.cc third_party/dawn/third_party/dxc/utils/unittest/googlemock/src/gmock.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-death-test.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-message.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-param-test.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-printers.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-spi.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-test-part.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest-typed-test.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest_pred_impl.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/gtest_prod.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-death-test-internal.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-filepath.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-internal.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-linked_ptr.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-param-util.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-port.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-string.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-tuple.h third_party/dawn/third_party/dxc/utils/unittest/googletest/include/gtest/internal/gtest-type-util.h third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-all.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-death-test.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-filepath.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-internal-inl.h third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-port.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-printers.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-test-part.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest-typed-test.cc third_party/dawn/third_party/dxc/utils/unittest/googletest/src/gtest.cc third_party/dawn/third_party/glfw/deps/nuklear.h third_party/dawn/third_party/glfw/include/GLFW/glfw3native.h third_party/dawn/third_party/glfw/src/linux_joystick.h third_party/dawn/third_party/glfw/src/wl_init.c third_party/dawn/third_party/glfw/src/wl_monitor.c third_party/dawn/third_party/glfw/src/wl_platform.h third_party/dawn/third_party/glfw/src/wl_window.c third_party/dawn/third_party/glfw/src/xkb_unicode.h third_party/dawn/third_party/glfw/tests/triangle-vulkan.c third_party/dawn/third_party/gn/dxc/build/message_compiler.gni third_party/dawn/third_party/gn/dxc/build/message_compiler.py third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_GLES_layers.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_blob_cache.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_create_native_client_buffer.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_framebuffer_target.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_front_buffer_auto_refresh.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_get_frame_timestamps.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_get_native_client_buffer.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_image_native_buffer.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_native_fence_sync.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_presentation_time.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANDROID/EGL_ANDROID_recordable.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_d3d_share_handle_client_buffer.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_device_d3d.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_sync_control_rate.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/ANGLE/EGL_ANGLE_window_fixed_size.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_device_query.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_gl_colorspace_display_p3.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_gl_colorspace_display_p3_passthrough.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_gl_colorspace_scrgb.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_image_gl_colorspace.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_platform_xcb.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/EXT/EGL_EXT_surface_CTA861_3_metadata.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/KHR/EGL_KHR_platform_android.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/MESA/EGL_MESA_platform_surfaceless.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/MESA/EGL_MESA_query_driver.txt third_party/dawn/third_party/khronos/EGL-Registry/extensions/WL/EGL_WL_bind_wayland_display.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ANDROID/ANDROID_extension_pack_es31a.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ANGLE/ANGLE_depth_texture.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_clip_control.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_framebuffer_object.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_map_buffer_range.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_robustness_application_isolation.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/ARB_texture_storage.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/GLX_ARB_robustness_application_isolation.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/ARB/WGL_ARB_robustness_application_isolation.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_EGL_image_storage.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_clip_control.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_primitive_bounding_box.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_tessellation_shader.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/EXT/EXT_texture_storage.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/KHR/KHR_parallel_shader_compile.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/MESA/MESA_framebuffer_flip_x.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/MESA/MESA_framebuffer_flip_y.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/MESA/MESA_framebuffer_swap_xy.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/OES/OES_primitive_bounding_box.txt third_party/dawn/third_party/khronos/OpenGL-Registry/extensions/OES/OES_tessellation_shader.txt third_party/dawn/third_party/khronos/OpenGL-Registry/xml/vendors.txt third_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/command_buffer/queries/occlusionQuery.spec.ts third_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/render_pipeline/sample_mask.spec.ts third_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/rendering/depth_bias.spec.ts third_party/dawn/third_party/webgpu-cts/src/webgpu/api/operation/sampling/filter_mode.spec.ts third_party/dawn/third_party/webgpu-cts/src/webgpu/multisample_info.ts third_party/dawn/third_party/webgpu-cts/src/webgpu/shader/execution/shader_io/fragment_builtins.spec.ts third_party/dawn/third_party/webgpu-cts/standalone/index.html third_party/dawn/third_party/webgpu-headers/src/webgpu.h third_party/dawn/third_party/webgpu-headers/src/webgpu.json third_party/dawn/tools/src/cmd/cts/config.json third_party/dawn/tools/src/cmd/cts/treemap/treemap.html third_party/depot_tools/PRESUBMIT.py third_party/depot_tools/agents/skills/luci-test-results/scripts/luci_triage.py third_party/depot_tools/auth.py third_party/depot_tools/autoninja.py third_party/depot_tools/bootstrap/bootstrap.py third_party/depot_tools/breakpad.py third_party/depot_tools/build_telemetry.py third_party/depot_tools/cipd_manifest.txt third_party/depot_tools/cipd_manifest_cros_python2.txt third_party/depot_tools/fetch.py third_party/depot_tools/fetch_configs/angle.py third_party/depot_tools/fetch_configs/breakpad.py third_party/depot_tools/fetch_configs/chromium.py third_party/depot_tools/fetch_configs/crashpad.py third_party/depot_tools/fetch_configs/crossbench.py third_party/depot_tools/fetch_configs/dart.py third_party/depot_tools/fetch_configs/dawn.py third_party/depot_tools/fetch_configs/depot_tools.py third_party/depot_tools/fetch_configs/devtools-frontend.py third_party/depot_tools/fetch_configs/gn.py third_party/depot_tools/fetch_configs/gyp.py third_party/depot_tools/fetch_configs/infra_superproject.py third_party/depot_tools/fetch_configs/inspector_protocol.py third_party/depot_tools/fetch_configs/ipcz.py third_party/depot_tools/fetch_configs/libyuv.py third_party/depot_tools/fetch_configs/nacl.py third_party/depot_tools/fetch_configs/naclports.py third_party/depot_tools/fetch_configs/node-ci.py third_party/depot_tools/fetch_configs/node.py third_party/depot_tools/fetch_configs/openscreen.py third_party/depot_tools/fetch_configs/pdfium.py third_party/depot_tools/fetch_configs/skia.py third_party/depot_tools/fetch_configs/skia_buildbot.py third_party/depot_tools/fetch_configs/syzygy.py third_party/depot_tools/fetch_configs/v8.py third_party/depot_tools/fetch_configs/v8_perf.py third_party/depot_tools/fetch_configs/web-tests.py third_party/depot_tools/fetch_configs/web-workload.py third_party/depot_tools/fetch_configs/webpagereplay.py third_party/depot_tools/fetch_configs/webrtc.py third_party/depot_tools/fetch_configs/website.py third_party/depot_tools/gclient.py third_party/depot_tools/gclient_scm.py third_party/depot_tools/gclient_utils.py third_party/depot_tools/gerrit_client.py third_party/depot_tools/gerrit_util.py third_party/depot_tools/git_auth.py third_party/depot_tools/git_cache.py third_party/depot_tools/git_cl.py third_party/depot_tools/git_common.py third_party/depot_tools/git_number.py third_party/depot_tools/git_retry.py third_party/depot_tools/gn_helper.py third_party/depot_tools/gsutil.py third_party/depot_tools/gsutil.py.vpython3 third_party/depot_tools/infra_lib/telemetry/__init__.py third_party/depot_tools/infra_lib/telemetry/clearcut_span_exporter.py third_party/depot_tools/infra_lib/telemetry/proto/clientanalytics_pb2.py third_party/depot_tools/infra_lib/telemetry/proto/trace_span_pb2.py third_party/depot_tools/lockfile.py third_party/depot_tools/luci_auth_fido2_plugin.py third_party/depot_tools/man/README.txt third_party/depot_tools/man/html/depot_tools.html third_party/depot_tools/man/html/depot_tools_gerrit_auth.html third_party/depot_tools/man/html/depot_tools_tutorial.html third_party/depot_tools/man/html/git-cl.html third_party/depot_tools/man/html/git-footers.html third_party/depot_tools/man/html/git-freeze.html third_party/depot_tools/man/html/git-hyper-blame.html third_party/depot_tools/man/html/git-map-branches.html third_party/depot_tools/man/html/git-map.html third_party/depot_tools/man/html/git-mark-merge-base.html third_party/depot_tools/man/html/git-nav-downstream.html third_party/depot_tools/man/html/git-nav-upstream.html third_party/depot_tools/man/html/git-new-branch.html third_party/depot_tools/man/html/git-rebase-update.html third_party/depot_tools/man/html/git-rename-branch.html third_party/depot_tools/man/html/git-reparent-branch.html third_party/depot_tools/man/html/git-retry.html third_party/depot_tools/man/html/git-squash-branch.html third_party/depot_tools/man/html/git-thaw.html third_party/depot_tools/man/html/git-upstream-diff.html third_party/depot_tools/man/src/depot_tools_gerrit_auth.txt third_party/depot_tools/man/src/depot_tools_tutorial.txt third_party/depot_tools/mcp/PRESUBMIT.py third_party/depot_tools/mcp/buildbucket.py third_party/depot_tools/mcp/buildbucket_test.py third_party/depot_tools/mcp/common.py third_party/depot_tools/mcp/git_cl.py third_party/depot_tools/mcp/resultdb.py third_party/depot_tools/metadata/dependency_metadata.py third_party/depot_tools/metadata/fields/custom/license.py third_party/depot_tools/metadata/fields/custom/license_allowlist.py third_party/depot_tools/metadata/tests/parse_test.py third_party/depot_tools/metrics_utils.py third_party/depot_tools/my_activity.py third_party/depot_tools/newauth.py third_party/depot_tools/ninja.py third_party/depot_tools/ninjalog_uploader.py third_party/depot_tools/owners_client.py third_party/depot_tools/owners_finder.py third_party/depot_tools/presubmit_canned_checks.py third_party/depot_tools/presubmit_diff.py third_party/depot_tools/presubmit_support.py third_party/depot_tools/rdb_wrapper.py third_party/depot_tools/recipes/recipe_modules/bot_update/api.py third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/add_blamelists.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/add_blamelists_bot_update_failure.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/basic_with_branch_heads.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/bot_update_failure.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/clobber.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/deprecated_got_revision_mapping.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_rebase_patch_ref.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/gerrit_no_reset.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/input_commit_with_id_without_repo.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/multiple_patch_refs.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_HEAD.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_a_branch_head.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_a_specific_commit.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/no_cp_checkout_main.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/origin_main.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/refs.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/reset_root_solution_revision.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/resolve_chromium_fixed_version.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/revision_fallback_chain_set_output_commit.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/revision_specifying_ref.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/stale-process-duration-override.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_fail_patch_download.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_angle.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_branch_heads.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_feature_branch.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_v8_feature_branch.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_gerrit_webrtc.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/tryjob_v8_head_by_default.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/upload_traces.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/upload_traces_fail.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/with_experiments.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.expected/with_tags.json third_party/depot_tools/recipes/recipe_modules/bot_update/examples/full.py third_party/depot_tools/recipes/recipe_modules/bot_update/resources/bot_update.py third_party/depot_tools/recipes/recipe_modules/bot_update/tests/do_not_retry_patch_failures_in_cq.py third_party/depot_tools/recipes/recipe_modules/bot_update/tests/ensure_checkout_turboci_checks.py third_party/depot_tools/recipes/recipe_modules/gclient/config.py third_party/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/basic.json third_party/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/revision.json third_party/depot_tools/recipes/recipe_modules/gclient/examples/full.expected/tryserver.json third_party/depot_tools/recipes/recipe_modules/gclient/examples/full.py third_party/depot_tools/recipes/recipe_modules/gclient/tests/diff_deps.py third_party/depot_tools/recipes/recipe_modules/gclient/tests/patch_project.py third_party/depot_tools/recipes/recipe_modules/gerrit/api.py third_party/depot_tools/recipes/recipe_modules/gerrit/examples/full.expected/basic.json third_party/depot_tools/recipes/recipe_modules/gerrit/examples/full.py third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_branch.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_file_name.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_hash.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_ref.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_submodule_update_force.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/basic_tags.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/can_fail_build.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/cannot_fail_build.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/cat-file_test.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_delta.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_failed.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_with_bad_output.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/count-objects_with_bad_output_fails_build.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/curl_trace_file.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-cache-checkout.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-checkout-with-depth.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-fetch-with-maintenance.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/git-fetch-without-auto-gc.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/new_branch_failed.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/platform_win.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/rebase_failed.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/remote_not_origin.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.expected/set_got_revision.json third_party/depot_tools/recipes/recipe_modules/git/examples/full.py third_party/depot_tools/recipes/recipe_modules/git/tests/ls_remote.py third_party/depot_tools/recipes/recipe_modules/gitiles/api.py third_party/depot_tools/recipes/recipe_modules/gitiles/examples/full.expected/basic.json third_party/depot_tools/recipes/recipe_modules/gitiles/examples/full.py third_party/depot_tools/recipes/recipe_modules/gitiles/resources/gerrit_client.py third_party/depot_tools/recipes/recipe_modules/gitiles/test_api.py third_party/depot_tools/recipes/recipe_modules/gsutil/api.py third_party/depot_tools/recipes/recipe_modules/gsutil/examples/full.expected/basic.json third_party/depot_tools/recipes/recipe_modules/gsutil/examples/full.py third_party/depot_tools/recipes/recipe_modules/osx_sdk/__init__.py third_party/depot_tools/recipes/recipe_modules/osx_sdk/api.py third_party/depot_tools/recipes/recipe_modules/presubmit/api.py third_party/depot_tools/recipes/recipe_modules/presubmit/tests/execute.py third_party/depot_tools/recipes/recipe_modules/tryserver/api.py third_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_gerrit_patch.json third_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_gerrit_patch_and_target_ref.json third_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_wrong_patch.json third_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.expected/with_wrong_patch_new.json third_party/depot_tools/recipes/recipe_modules/tryserver/examples/full.py third_party/depot_tools/recipes/recipe_modules/tryserver/tests/gerrit_change_fetch_ref_timeout.py third_party/depot_tools/recipes/recipe_modules/tryserver/tests/gerrit_change_target_ref.py third_party/depot_tools/recipes/recipe_modules/tryserver/tests/require_is_tryserver.py third_party/depot_tools/recipes/recipe_proto/turboci/update.py third_party/depot_tools/recipes/recipes.py third_party/depot_tools/reclient_helper.py third_party/depot_tools/roll_dep.py third_party/depot_tools/siso.py third_party/depot_tools/split_cl.py third_party/depot_tools/subprocess2.py third_party/depot_tools/testing_support/fake_repos.py third_party/depot_tools/tests/bot_update_coverage_test.py third_party/depot_tools/tests/build_telemetry_test.py third_party/depot_tools/tests/fetch_test.py third_party/depot_tools/tests/gclient_cipd_smoketest.py third_party/depot_tools/tests/gclient_git_smoketest.py third_party/depot_tools/tests/gclient_scm_test.py third_party/depot_tools/tests/gclient_utils_test.py third_party/depot_tools/tests/gerrit_util_test.py third_party/depot_tools/tests/git_auth_test.py third_party/depot_tools/tests/git_cache_test.py third_party/depot_tools/tests/git_cl_creds_check_report.txt third_party/depot_tools/tests/git_cl_test.py third_party/depot_tools/tests/luci_auth_fido2_plugin_test.py third_party/depot_tools/tests/metrics_test.py third_party/depot_tools/tests/presubmit_canned_checks_test.py third_party/depot_tools/tests/presubmit_support_test.py third_party/depot_tools/tests/presubmit_unittest.py third_party/depot_tools/tests/reclient_helper_test.py third_party/depot_tools/tests/roll_dep_test.py third_party/depot_tools/tests/siso_test.py third_party/depot_tools/tests/split_cl_test.py third_party/depot_tools/tests/watchlists_unittest.py third_party/depot_tools/watchlists.py third_party/depot_tools/win32imports.py third_party/depot_tools/win_toolchain/get_toolchain_if_necessary.py third_party/devtools-frontend/src/PRESUBMIT.py third_party/devtools-frontend/src/build_overrides/BUILDCONFIG.gn third_party/devtools-frontend/src/extensions/cxx_debugging/third_party/lit-html/lib/template.js third_party/devtools-frontend/src/extensions/cxx_debugging/third_party/lit-html/src/lib/template.ts third_party/devtools-frontend/src/front_end/core/common/ColorConverter.ts third_party/devtools-frontend/src/front_end/core/host/AidaClient.test.ts third_party/devtools-frontend/src/front_end/core/host/GdpClient.ts third_party/devtools-frontend/src/front_end/core/host/InspectorFrontendHostStub.ts third_party/devtools-frontend/src/front_end/core/i18n/i18nImpl.test.ts third_party/devtools-frontend/src/front_end/core/i18n/locales/af.json third_party/devtools-frontend/src/front_end/core/i18n/locales/am.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ar.json third_party/devtools-frontend/src/front_end/core/i18n/locales/as.json third_party/devtools-frontend/src/front_end/core/i18n/locales/az.json third_party/devtools-frontend/src/front_end/core/i18n/locales/be.json third_party/devtools-frontend/src/front_end/core/i18n/locales/bg.json third_party/devtools-frontend/src/front_end/core/i18n/locales/bn.json third_party/devtools-frontend/src/front_end/core/i18n/locales/bs.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ca.json third_party/devtools-frontend/src/front_end/core/i18n/locales/cs.json third_party/devtools-frontend/src/front_end/core/i18n/locales/cy.json third_party/devtools-frontend/src/front_end/core/i18n/locales/da.json third_party/devtools-frontend/src/front_end/core/i18n/locales/de.json third_party/devtools-frontend/src/front_end/core/i18n/locales/el.json third_party/devtools-frontend/src/front_end/core/i18n/locales/en-GB.json third_party/devtools-frontend/src/front_end/core/i18n/locales/es-419.json third_party/devtools-frontend/src/front_end/core/i18n/locales/es.json third_party/devtools-frontend/src/front_end/core/i18n/locales/et.json third_party/devtools-frontend/src/front_end/core/i18n/locales/eu.json third_party/devtools-frontend/src/front_end/core/i18n/locales/fa.json third_party/devtools-frontend/src/front_end/core/i18n/locales/fi.json third_party/devtools-frontend/src/front_end/core/i18n/locales/fil.json third_party/devtools-frontend/src/front_end/core/i18n/locales/fr-CA.json third_party/devtools-frontend/src/front_end/core/i18n/locales/fr.json third_party/devtools-frontend/src/front_end/core/i18n/locales/gl.json third_party/devtools-frontend/src/front_end/core/i18n/locales/gu.json third_party/devtools-frontend/src/front_end/core/i18n/locales/he.json third_party/devtools-frontend/src/front_end/core/i18n/locales/hi.json third_party/devtools-frontend/src/front_end/core/i18n/locales/hr.json third_party/devtools-frontend/src/front_end/core/i18n/locales/hu.json third_party/devtools-frontend/src/front_end/core/i18n/locales/hy.json third_party/devtools-frontend/src/front_end/core/i18n/locales/id.json third_party/devtools-frontend/src/front_end/core/i18n/locales/is.json third_party/devtools-frontend/src/front_end/core/i18n/locales/it.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ja.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ka.json third_party/devtools-frontend/src/front_end/core/i18n/locales/kk.json third_party/devtools-frontend/src/front_end/core/i18n/locales/km.json third_party/devtools-frontend/src/front_end/core/i18n/locales/kn.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ko.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ky.json third_party/devtools-frontend/src/front_end/core/i18n/locales/lo.json third_party/devtools-frontend/src/front_end/core/i18n/locales/lt.json third_party/devtools-frontend/src/front_end/core/i18n/locales/lv.json third_party/devtools-frontend/src/front_end/core/i18n/locales/mk.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ml.json third_party/devtools-frontend/src/front_end/core/i18n/locales/mn.json third_party/devtools-frontend/src/front_end/core/i18n/locales/mr.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ms.json third_party/devtools-frontend/src/front_end/core/i18n/locales/my.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ne.json third_party/devtools-frontend/src/front_end/core/i18n/locales/nl.json third_party/devtools-frontend/src/front_end/core/i18n/locales/no.json third_party/devtools-frontend/src/front_end/core/i18n/locales/or.json third_party/devtools-frontend/src/front_end/core/i18n/locales/pa.json third_party/devtools-frontend/src/front_end/core/i18n/locales/pl.json third_party/devtools-frontend/src/front_end/core/i18n/locales/pt-PT.json third_party/devtools-frontend/src/front_end/core/i18n/locales/pt.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ro.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ru.json third_party/devtools-frontend/src/front_end/core/i18n/locales/si.json third_party/devtools-frontend/src/front_end/core/i18n/locales/sk.json third_party/devtools-frontend/src/front_end/core/i18n/locales/sl.json third_party/devtools-frontend/src/front_end/core/i18n/locales/sq.json third_party/devtools-frontend/src/front_end/core/i18n/locales/sr-Latn.json third_party/devtools-frontend/src/front_end/core/i18n/locales/sr.json third_party/devtools-frontend/src/front_end/core/i18n/locales/sv.json third_party/devtools-frontend/src/front_end/core/i18n/locales/sw.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ta.json third_party/devtools-frontend/src/front_end/core/i18n/locales/te.json third_party/devtools-frontend/src/front_end/core/i18n/locales/th.json third_party/devtools-frontend/src/front_end/core/i18n/locales/tr.json third_party/devtools-frontend/src/front_end/core/i18n/locales/uk.json third_party/devtools-frontend/src/front_end/core/i18n/locales/ur.json third_party/devtools-frontend/src/front_end/core/i18n/locales/uz.json third_party/devtools-frontend/src/front_end/core/i18n/locales/vi.json third_party/devtools-frontend/src/front_end/core/i18n/locales/zh-HK.json third_party/devtools-frontend/src/front_end/core/i18n/locales/zh-TW.json third_party/devtools-frontend/src/front_end/core/i18n/locales/zh.json third_party/devtools-frontend/src/front_end/core/i18n/locales/zu.json third_party/devtools-frontend/src/front_end/core/platform/StringUtilities.test.ts third_party/devtools-frontend/src/front_end/core/platform/StringUtilities.ts third_party/devtools-frontend/src/front_end/core/platform/UIString.ts third_party/devtools-frontend/src/front_end/core/protocol_client/CDPConnection.ts third_party/devtools-frontend/src/front_end/core/root/Runtime.test.ts third_party/devtools-frontend/src/front_end/core/root/Runtime.ts third_party/devtools-frontend/src/front_end/core/sdk/CSSMetadata.ts third_party/devtools-frontend/src/front_end/core/sdk/Cookie.ts third_party/devtools-frontend/src/front_end/core/sdk/EnhancedTracesParser.ts third_party/devtools-frontend/src/front_end/core/sdk/NetworkManager.ts third_party/devtools-frontend/src/front_end/core/sdk/NetworkRequest.ts third_party/devtools-frontend/src/front_end/core/sdk/RehydratingConnection.snapshot.txt third_party/devtools-frontend/src/front_end/core/sdk/RehydratingObject.ts third_party/devtools-frontend/src/front_end/core/sdk/ResourceTreeModel.ts third_party/devtools-frontend/src/front_end/core/sdk/SourceMap.ts third_party/devtools-frontend/src/front_end/design_system_tokens.css third_party/devtools-frontend/src/front_end/entrypoint_template.html third_party/devtools-frontend/src/front_end/entrypoints/inspector_main/RenderingOptions.ts third_party/devtools-frontend/src/front_end/entrypoints/inspector_main/inspector_main-meta.ts third_party/devtools-frontend/src/front_end/entrypoints/main/MainImpl.ts third_party/devtools-frontend/src/front_end/entrypoints/main/main-meta.ts third_party/devtools-frontend/src/front_end/generated/Deprecation.ts third_party/devtools-frontend/src/front_end/generated/InspectorBackendCommands.ts third_party/devtools-frontend/src/front_end/generated/protocol-mapping.d.ts third_party/devtools-frontend/src/front_end/generated/protocol-proxy-api.d.ts third_party/devtools-frontend/src/front_end/generated/protocol.ts third_party/devtools-frontend/src/front_end/integration_test_runner.html third_party/devtools-frontend/src/front_end/models/ai_assistance/ExtensionScope.ts third_party/devtools-frontend/src/front_end/models/ai_assistance/agents/FileAgent.ts third_party/devtools-frontend/src/front_end/models/ai_assistance/agents/PerformanceAgent.test.ts third_party/devtools-frontend/src/front_end/models/ai_assistance/agents/PerformanceAgent.ts third_party/devtools-frontend/src/front_end/models/ai_assistance/agents/PerformanceAnnotationsAgent.ts third_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.snapshot.txt third_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceInsightFormatter.ts third_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.snapshot.txt third_party/devtools-frontend/src/front_end/models/ai_assistance/data_formatters/PerformanceTraceFormatter.test.ts third_party/devtools-frontend/src/front_end/models/ai_assistance/performance/AICallTree.snapshot.txt third_party/devtools-frontend/src/front_end/models/badges/AiExplorerBadge.ts third_party/devtools-frontend/src/front_end/models/badges/CodeWhispererBadge.ts third_party/devtools-frontend/src/front_end/models/badges/DOMDetectiveBadge.ts third_party/devtools-frontend/src/front_end/models/badges/SpeedsterBadge.ts third_party/devtools-frontend/src/front_end/models/badges/StarterBadge.ts third_party/devtools-frontend/src/front_end/models/bindings/ResourceUtils.ts third_party/devtools-frontend/src/front_end/models/crux-manager/CrUXManager.test.ts third_party/devtools-frontend/src/front_end/models/crux-manager/CrUXManager.ts third_party/devtools-frontend/src/front_end/models/extensions/HostUrlPattern.test.ts third_party/devtools-frontend/src/front_end/models/issues_manager/ContentSecurityPolicyIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/CookieDeprecationMetadataIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/CookieIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/CorsIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/DeprecationIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/GenericIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/HeavyAdIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/PartitioningBlobURLIssue.ts third_party/devtools-frontend/src/front_end/models/issues_manager/SharedArrayBufferIssue.ts third_party/devtools-frontend/src/front_end/models/live-metrics/LiveMetrics.ts third_party/devtools-frontend/src/front_end/models/persistence/NetworkPersistenceManager.test.ts third_party/devtools-frontend/src/front_end/models/persistence/NetworkPersistenceManager.ts third_party/devtools-frontend/src/front_end/models/persistence/PersistenceImpl.test.ts third_party/devtools-frontend/src/front_end/models/persistence/PlatformFileSystem.ts third_party/devtools-frontend/src/front_end/models/project_settings/ProjectSettingsModel.ts third_party/devtools-frontend/src/front_end/models/trace/EntityMapper.test.ts third_party/devtools-frontend/src/front_end/models/trace/ModelImpl.test.ts third_party/devtools-frontend/src/front_end/models/trace/Styles.ts third_party/devtools-frontend/src/front_end/models/trace/extras/Initiators.test.ts third_party/devtools-frontend/src/front_end/models/trace/extras/ThirdParties.test.ts third_party/devtools-frontend/src/front_end/models/trace/extras/TraceTree.ts third_party/devtools-frontend/src/front_end/models/trace/handlers/MetaHandler.test.ts third_party/devtools-frontend/src/front_end/models/trace/handlers/MetaHandler.ts third_party/devtools-frontend/src/front_end/models/trace/handlers/NetworkRequestsHandler.test.ts third_party/devtools-frontend/src/front_end/models/trace/handlers/UserInteractionsHandler.ts third_party/devtools-frontend/src/front_end/models/trace/handlers/UserTimingsHandler.ts third_party/devtools-frontend/src/front_end/models/trace/handlers/helpers.test.ts third_party/devtools-frontend/src/front_end/models/trace/handlers/helpers.ts third_party/devtools-frontend/src/front_end/models/trace/helpers/Network.ts third_party/devtools-frontend/src/front_end/models/trace/helpers/Trace.test.ts third_party/devtools-frontend/src/front_end/models/trace/insights/CLSCulprits.ts third_party/devtools-frontend/src/front_end/models/trace/insights/Cache.ts third_party/devtools-frontend/src/front_end/models/trace/insights/Common.ts third_party/devtools-frontend/src/front_end/models/trace/insights/DOMSize.ts third_party/devtools-frontend/src/front_end/models/trace/insights/DocumentLatency.ts third_party/devtools-frontend/src/front_end/models/trace/insights/DuplicatedJavaScript.ts third_party/devtools-frontend/src/front_end/models/trace/insights/FontDisplay.test.ts third_party/devtools-frontend/src/front_end/models/trace/insights/FontDisplay.ts third_party/devtools-frontend/src/front_end/models/trace/insights/ForcedReflow.ts third_party/devtools-frontend/src/front_end/models/trace/insights/INPBreakdown.ts third_party/devtools-frontend/src/front_end/models/trace/insights/ImageDelivery.ts third_party/devtools-frontend/src/front_end/models/trace/insights/LCPBreakdown.ts third_party/devtools-frontend/src/front_end/models/trace/insights/LCPDiscovery.ts third_party/devtools-frontend/src/front_end/models/trace/insights/LegacyJavaScript.ts third_party/devtools-frontend/src/front_end/models/trace/insights/ModernHTTP.test.ts third_party/devtools-frontend/src/front_end/models/trace/insights/ModernHTTP.ts third_party/devtools-frontend/src/front_end/models/trace/insights/NetworkDependencyTree.test.ts third_party/devtools-frontend/src/front_end/models/trace/insights/NetworkDependencyTree.ts third_party/devtools-frontend/src/front_end/models/trace/insights/RenderBlocking.test.ts third_party/devtools-frontend/src/front_end/models/trace/insights/RenderBlocking.ts third_party/devtools-frontend/src/front_end/models/trace/insights/SlowCSSSelector.ts third_party/devtools-frontend/src/front_end/models/trace/insights/ThirdParties.ts third_party/devtools-frontend/src/front_end/models/trace/insights/Viewport.ts third_party/devtools-frontend/src/front_end/models/trace/lantern/core/NetworkAnalyzer.test.ts third_party/devtools-frontend/src/front_end/models/trace/lantern/graph/NetworkNode.ts third_party/devtools-frontend/src/front_end/models/trace/lantern/graph/PageDependencyGraph.ts third_party/devtools-frontend/src/front_end/models/trace/lantern/metrics/SpeedIndex.ts third_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/ConnectionPool.ts third_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/Constants.ts third_party/devtools-frontend/src/front_end/models/trace/lantern/simulation/Simulator.ts third_party/devtools-frontend/src/front_end/models/trace/types/TraceEvents.ts third_party/devtools-frontend/src/front_end/panels/accessibility/AccessibilityNodeView.ts third_party/devtools-frontend/src/front_end/panels/accessibility/AccessibilityStrings.ts third_party/devtools-frontend/src/front_end/panels/ai_assistance/AiAssistancePanel.ts third_party/devtools-frontend/src/front_end/panels/ai_assistance/PatchWidget.ts third_party/devtools-frontend/src/front_end/panels/ai_assistance/SelectWorkspaceDialog.ts third_party/devtools-frontend/src/front_end/panels/ai_assistance/components/chatInput.css third_party/devtools-frontend/src/front_end/panels/animation/AnimationTimeline.ts third_party/devtools-frontend/src/front_end/panels/application/AppManifestView.ts third_party/devtools-frontend/src/front_end/panels/application/ApplicationPanelSidebar.ts third_party/devtools-frontend/src/front_end/panels/application/BackgroundServiceView.ts third_party/devtools-frontend/src/front_end/panels/application/FrameDetailsView.test.ts third_party/devtools-frontend/src/front_end/panels/application/FrameDetailsView.ts third_party/devtools-frontend/src/front_end/panels/application/InterestGroupTreeElement.ts third_party/devtools-frontend/src/front_end/panels/application/ReportingApiView.test.ts third_party/devtools-frontend/src/front_end/panels/application/ReportingApiView.ts third_party/devtools-frontend/src/front_end/panels/application/ServiceWorkerCacheTreeElement.ts third_party/devtools-frontend/src/front_end/panels/application/StorageBucketsTreeElement.ts third_party/devtools-frontend/src/front_end/panels/application/StorageView.ts third_party/devtools-frontend/src/front_end/panels/application/components/EndpointsGrid.ts third_party/devtools-frontend/src/front_end/panels/application/components/ReportsGrid.ts third_party/devtools-frontend/src/front_end/panels/application/components/SharedStorageAccessGrid.ts third_party/devtools-frontend/src/front_end/panels/application/components/TrustTokensView.ts third_party/devtools-frontend/src/front_end/panels/application/preloading/PreloadingView.ts third_party/devtools-frontend/src/front_end/panels/application/preloading/components/PreloadingDetailsReportView.ts third_party/devtools-frontend/src/front_end/panels/application/preloading/components/PreloadingDisabledInfobar.ts third_party/devtools-frontend/src/front_end/panels/application/preloading/components/PreloadingString.ts third_party/devtools-frontend/src/front_end/panels/application/preloading/components/RuleSetDetailsView.ts third_party/devtools-frontend/src/front_end/panels/application/preloading/components/UsedPreloadingView.test.ts third_party/devtools-frontend/src/front_end/panels/application/preloading/components/UsedPreloadingView.ts third_party/devtools-frontend/src/front_end/panels/autofill/AutofillView.ts third_party/devtools-frontend/src/front_end/panels/browser_debugger/DOMBreakpointsSidebarPane.ts third_party/devtools-frontend/src/front_end/panels/changes/ChangesView.ts third_party/devtools-frontend/src/front_end/panels/common/AiCodeCompletionTeaser.ts third_party/devtools-frontend/src/front_end/panels/common/BadgeNotification.ts third_party/devtools-frontend/src/front_end/panels/common/ExtensionServer.test.ts third_party/devtools-frontend/src/front_end/panels/common/ExtensionServer.ts third_party/devtools-frontend/src/front_end/panels/common/GdpSignUpDialog.test.ts third_party/devtools-frontend/src/front_end/panels/common/GdpSignUpDialog.ts third_party/devtools-frontend/src/front_end/panels/console/ConsoleInsightTeaser.ts third_party/devtools-frontend/src/front_end/panels/console/ConsoleViewMessage.ts third_party/devtools-frontend/src/front_end/panels/console/ErrorStackParser.test.ts third_party/devtools-frontend/src/front_end/panels/coverage/CoverageView.ts third_party/devtools-frontend/src/front_end/panels/css_overview/CSSOverviewStartView.ts third_party/devtools-frontend/src/front_end/panels/elements/ElementStatePaneWidget.test.ts third_party/devtools-frontend/src/front_end/panels/elements/ElementStatePaneWidget.ts third_party/devtools-frontend/src/front_end/panels/elements/components/CSSPropertyDocsView.test.ts third_party/devtools-frontend/src/front_end/panels/emulation/DeviceModeToolbar.ts third_party/devtools-frontend/src/front_end/panels/emulation/emulation-meta.ts third_party/devtools-frontend/src/front_end/panels/explain/components/ConsoleInsight.ts third_party/devtools-frontend/src/front_end/panels/issues/AffectedCookiesView.ts third_party/devtools-frontend/src/front_end/panels/issues/AffectedDirectivesView.ts third_party/devtools-frontend/src/front_end/panels/issues/AffectedMetadataAllowedSitesView.ts third_party/devtools-frontend/src/front_end/panels/issues/AffectedTrackingSitesView.ts third_party/devtools-frontend/src/front_end/panels/issues/IssuesPane.ts third_party/devtools-frontend/src/front_end/panels/lighthouse/LighthouseController.ts third_party/devtools-frontend/src/front_end/panels/linear_memory_inspector/LinearMemoryInspectorPane.ts third_party/devtools-frontend/src/front_end/panels/media/MainView.ts third_party/devtools-frontend/src/front_end/panels/mobile_throttling/CalibrationController.ts third_party/devtools-frontend/src/front_end/panels/network/NetworkConfigView.ts third_party/devtools-frontend/src/front_end/panels/network/NetworkDataGridNode.ts third_party/devtools-frontend/src/front_end/panels/network/NetworkLogView.ts third_party/devtools-frontend/src/front_end/panels/network/RequestConditionsDrawer.ts third_party/devtools-frontend/src/front_end/panels/network/RequestCookiesView.ts third_party/devtools-frontend/src/front_end/panels/network/RequestTimingView.ts third_party/devtools-frontend/src/front_end/panels/network/ResourceWebSocketFrameView.ts third_party/devtools-frontend/src/front_end/panels/network/components/RequestHeaderSection.ts third_party/devtools-frontend/src/front_end/panels/network/components/RequestHeadersView.test.ts third_party/devtools-frontend/src/front_end/panels/network/components/RequestHeadersView.ts third_party/devtools-frontend/src/front_end/panels/network/network-meta.ts third_party/devtools-frontend/src/front_end/panels/profiler/HeapSnapshotGridNodes.ts third_party/devtools-frontend/src/front_end/panels/recorder/RecorderController.ts third_party/devtools-frontend/src/front_end/panels/recorder/components/CreateRecordingView.ts third_party/devtools-frontend/src/front_end/panels/settings/AISettingsTab.ts third_party/devtools-frontend/src/front_end/panels/settings/FrameworkIgnoreListSettingsTab.ts third_party/devtools-frontend/src/front_end/panels/settings/KeybindsSettingsTab.ts third_party/devtools-frontend/src/front_end/panels/settings/SettingsScreen.ts third_party/devtools-frontend/src/front_end/panels/settings/components/SyncSection.test.ts third_party/devtools-frontend/src/front_end/panels/sources/BreakpointEditDialog.ts third_party/devtools-frontend/src/front_end/panels/sources/BreakpointsView.test.ts third_party/devtools-frontend/src/front_end/panels/sources/BreakpointsViewUtils.test.ts third_party/devtools-frontend/src/front_end/panels/sources/BreakpointsViewUtils.ts third_party/devtools-frontend/src/front_end/panels/sources/DebuggerPausedMessage.ts third_party/devtools-frontend/src/front_end/panels/sources/SourcesNavigator.ts third_party/devtools-frontend/src/front_end/panels/sources/TabbedEditorContainer.ts third_party/devtools-frontend/src/front_end/panels/sources/components/HeadersView.test.ts third_party/devtools-frontend/src/front_end/panels/sources/components/HeadersView.ts third_party/devtools-frontend/src/front_end/panels/timeline/Initiators.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/ThreadAppender.ts third_party/devtools-frontend/src/front_end/panels/timeline/TimelineFlameChartView.ts third_party/devtools-frontend/src/front_end/panels/timeline/TimelinePanel.ts third_party/devtools-frontend/src/front_end/panels/timeline/TimelineTreeView.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/TimelineTreeView.ts third_party/devtools-frontend/src/front_end/panels/timeline/TimelineUIUtils.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/TimelineUIUtils.ts third_party/devtools-frontend/src/front_end/panels/timeline/TimingsTrackAppender.ts third_party/devtools-frontend/src/front_end/panels/timeline/components/DetailsView.ts third_party/devtools-frontend/src/front_end/panels/timeline/components/ExportTraceOptions.ts third_party/devtools-frontend/src/front_end/panels/timeline/components/FieldSettingsDialog.ts third_party/devtools-frontend/src/front_end/panels/timeline/components/LiveMetricsView.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/components/LiveMetricsView.ts third_party/devtools-frontend/src/front_end/panels/timeline/components/SidebarInsightsTab.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/components/SidebarSingleInsightSet.ts third_party/devtools-frontend/src/front_end/panels/timeline/overlays/components/EntriesLinkOverlay.ts third_party/devtools-frontend/src/front_end/panels/timeline/overlays/components/EntryLabelOverlay.ts third_party/devtools-frontend/src/front_end/panels/timeline/track_appenders/ThreadAppender.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/utils/Helpers.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/utils/Helpers.ts third_party/devtools-frontend/src/front_end/panels/timeline/utils/IgnoreList.test.ts third_party/devtools-frontend/src/front_end/panels/timeline/utils/Treemap.test.ts third_party/devtools-frontend/src/front_end/panels/web_audio/WebAudioView.ts third_party/devtools-frontend/src/front_end/panels/webauthn/WebauthnPane.ts third_party/devtools-frontend/src/front_end/panels/whats_new/ReleaseNote.test.ts third_party/devtools-frontend/src/front_end/panels/whats_new/ReleaseNoteText.ts third_party/devtools-frontend/src/front_end/panels/whats_new/ReleaseNoteView.test.ts third_party/devtools-frontend/src/front_end/panels/whats_new/WhatsNewImpl.ts third_party/devtools-frontend/src/front_end/services/tracing/PerformanceTracing.ts third_party/devtools-frontend/src/front_end/testing/test_setup.ts third_party/devtools-frontend/src/front_end/third_party/acorn/package/dist/acorn.js third_party/devtools-frontend/src/front_end/third_party/acorn/package/package.json third_party/devtools-frontend/src/front_end/third_party/axe-core/axe.js third_party/devtools-frontend/src/front_end/third_party/axe-core/axe.min.js third_party/devtools-frontend/src/front_end/third_party/codemirror.next/codemirror.next.d.ts third_party/devtools-frontend/src/front_end/third_party/codemirror/package/lib/codemirror.js third_party/devtools-frontend/src/front_end/third_party/codemirror/package/mode/dtd/dtd.js third_party/devtools-frontend/src/front_end/third_party/codemirror/package/mode/stylus/stylus.js third_party/devtools-frontend/src/front_end/third_party/codemirror/package/mode/vbscript/vbscript.js third_party/devtools-frontend/src/front_end/third_party/codemirror/package/package.json third_party/devtools-frontend/src/front_end/third_party/codemirror/package/src/measurement/position_measurement.js third_party/devtools-frontend/src/front_end/third_party/codemirror/package/theme/mdn-like.css third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/angular.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/flash.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/json/angular.json third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/json/flash.json third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/json/jsonp.json third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/allowlist_bypasses/jsonp.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/parser_checks.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/parser_checks_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/security_checks.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/security_checks_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/strictcsp_checks.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/checks/strictcsp_checks_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/csp.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/csp_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/allowlist_bypasses/angular.js third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/allowlist_bypasses/flash.js third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/allowlist_bypasses/jsonp.js third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/checks/security_checks_test.js third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/lighthouse/lighthouse_checks_test.js third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/dist/utils_test.js third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/evaluator.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/evaluator_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/finding.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/finding_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/lighthouse/lighthouse_checks_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/package.json third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/parser.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/parser_test.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/utils.ts third_party/devtools-frontend/src/front_end/third_party/csp_evaluator/package/utils_test.ts third_party/devtools-frontend/src/front_end/third_party/intl-messageformat/package/package.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/lighthouse-dt-bundle.js third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ar-XB.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ar.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/bg.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ca.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/cs.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/da.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/de.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/el.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-GB.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-US.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-XA.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/en-XL.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/es-419.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/es.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/fi.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/fil.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/fr.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/he.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/hi.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/hr.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/hu.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/id.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/it.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ja.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ko.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/lt.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/lv.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/nl.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/no.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/pl.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/pt-PT.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/pt.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ro.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ru.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sk.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sl.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sr-Latn.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sr.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/sv.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/ta.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/te.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/th.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/tr.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/uk.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/vi.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/zh-HK.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/zh-TW.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/locales/zh.json third_party/devtools-frontend/src/front_end/third_party/lighthouse/report/bundle.js third_party/devtools-frontend/src/front_end/third_party/lit/lib/decorators.d.ts third_party/devtools-frontend/src/front_end/third_party/lit/lib/lit.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer-replay/package/lib/main.js third_party/devtools-frontend/src/front_end/third_party/puppeteer-replay/package/package.json third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Browser.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/BrowserContext.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/ElementHandle.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Frame.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/HTTPRequest.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Input.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Page.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/Target.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/api/WebWorker.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/bidi/Frame.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Input.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Tracing.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/cdp/Tracing.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Configuration.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/CustomQueryHandler.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Device.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Device.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/FileChooser.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/QueryHandler.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/Viewport.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/common/util.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/BrowserLauncher.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/FirefoxLauncher.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/LaunchOptions.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/node/PuppeteerNode.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/cjs/puppeteer/util/encoding.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/es5-iife/puppeteer-core-browser.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Browser.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/BrowserContext.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/ElementHandle.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Frame.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/HTTPRequest.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Input.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Page.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/Target.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/api/WebWorker.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/bidi/Frame.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Input.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Tracing.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/cdp/Tracing.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Configuration.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/CustomQueryHandler.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Device.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Device.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/FileChooser.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/QueryHandler.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/Viewport.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/common/util.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/BrowserLauncher.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/FirefoxLauncher.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/LaunchOptions.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/node/PuppeteerNode.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/esm/puppeteer/util/encoding.js third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/lib/types.d.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Browser.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/BrowserContext.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/ElementHandle.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Frame.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/HTTPRequest.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Input.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Page.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/Target.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/api/WebWorker.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/bidi/Frame.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/cdp/Input.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/cdp/PredefinedNetworkConditions.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/cdp/Tracing.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/Configuration.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/CustomQueryHandler.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/Device.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/FileChooser.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/QueryHandler.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/Viewport.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/common/util.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/BrowserLauncher.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/FirefoxLauncher.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/LaunchOptions.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/node/PuppeteerNode.ts third_party/devtools-frontend/src/front_end/third_party/puppeteer/package/src/util/encoding.ts third_party/devtools-frontend/src/front_end/third_party/third-party-web/lib/nostats-subset.js third_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json third_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities-httparchive.json third_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities-nostats.json third_party/devtools-frontend/src/front_end/third_party/third-party-web/package/dist/entities.json third_party/devtools-frontend/src/front_end/third_party/third-party-web/package/lib/index.test.js third_party/devtools-frontend/src/front_end/third_party/third-party-web/package/package.json third_party/devtools-frontend/src/front_end/third_party/vscode.web-custom-data/package/data/browsers.css-data.json third_party/devtools-frontend/src/front_end/third_party/vscode.web-custom-data/package/data/browsers.html-data.json third_party/devtools-frontend/src/front_end/third_party/wasmparser/package/package.json third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.d.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onCLS.js third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.d.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/attribution/onINP.js third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/lib/getVisibilityWatcher.js third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onCLS.d.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onCLS.js third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onINP.d.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/dist/modules/onINP.js third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/attribution/onCLS.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/attribution/onINP.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/lib/getVisibilityWatcher.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/onCLS.ts third_party/devtools-frontend/src/front_end/third_party/web-vitals/package/src/onINP.ts third_party/devtools-frontend/src/front_end/ui/components/code_highlighter/CodeHighlighter.ts third_party/devtools-frontend/src/front_end/ui/components/markdown_view/CodeBlock.ts third_party/devtools-frontend/src/front_end/ui/components/markdown_view/MarkdownLinksMap.ts third_party/devtools-frontend/src/front_end/ui/components/tooltips/Tooltip.ts third_party/devtools-frontend/src/front_end/ui/helpers/OpenInNewTab.test.ts third_party/devtools-frontend/src/front_end/ui/helpers/OpenInNewTab.ts third_party/devtools-frontend/src/front_end/ui/legacy/DockController.ts third_party/devtools-frontend/src/front_end/ui/legacy/RemoteDebuggingTerminatedScreen.ts third_party/devtools-frontend/src/front_end/ui/legacy/SearchableView.ts third_party/devtools-frontend/src/front_end/ui/legacy/UIUtils.ts third_party/devtools-frontend/src/front_end/ui/legacy/Widget.ts third_party/devtools-frontend/src/front_end/ui/legacy/components/cookie_table/CookiesTable.ts third_party/devtools-frontend/src/front_end/ui/legacy/components/object_ui/CustomPreviewComponent.ts third_party/devtools-frontend/src/front_end/ui/legacy/components/perf_ui/FlameChart.ts third_party/devtools-frontend/src/front_end/ui/legacy/components/utils/JSPresentationUtils.test.ts third_party/devtools-frontend/src/front_end/ui/legacy/components/utils/Linkifier.test.ts third_party/devtools-frontend/src/front_end/ui/legacy/theme_support/ThemeSupport.ts third_party/devtools-frontend/src/node_modules/@ampproject/remapping/package.json third_party/devtools-frontend/src/node_modules/@babel/traverse/node_modules/globals/package.json third_party/devtools-frontend/src/node_modules/@colors/colors/lib/colors.js third_party/devtools-frontend/src/node_modules/@colors/colors/lib/styles.js third_party/devtools-frontend/src/node_modules/@colors/colors/lib/system/has-flag.js third_party/devtools-frontend/src/node_modules/@colors/colors/lib/system/supports-colors.js third_party/devtools-frontend/src/node_modules/@csstools/css-parser-algorithms/package.json third_party/devtools-frontend/src/node_modules/@csstools/css-tokenizer/package.json third_party/devtools-frontend/src/node_modules/@csstools/media-query-list-parser/package.json third_party/devtools-frontend/src/node_modules/@dual-bundle/import-meta-resolve/package.json third_party/devtools-frontend/src/node_modules/@es-joy/resolve.exports/package.json third_party/devtools-frontend/src/node_modules/@eslint/eslintrc/node_modules/globals/package.json third_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/ansi-styles/package.json third_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/string-width/package.json third_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/@isaacs/cliui/node_modules/wrap-ansi/package.json third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.d.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/browser-data.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome-headless-shell.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chrome.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromedriver.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/chromium.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/browser-data/firefox.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/cjs/install.d.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/browser-data.d.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/browser-data.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chrome-headless-shell.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chrome.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chromedriver.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/chromium.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/browser-data/firefox.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/lib/esm/install.d.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/browser-data.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chrome-headless-shell.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chrome.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chromedriver.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/chromium.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/browser-data/firefox.ts third_party/devtools-frontend/src/node_modules/@puppeteer/browsers/src/install.ts third_party/devtools-frontend/src/node_modules/@rollup/plugin-node-resolve/package.json third_party/devtools-frontend/src/node_modules/@rollup/plugin-terser/package.json third_party/devtools-frontend/src/node_modules/@rollup/pluginutils/package.json third_party/devtools-frontend/src/node_modules/@sindresorhus/base62/package.json third_party/devtools-frontend/src/node_modules/@sinonjs/commons/lib/prototypes/throws-on-proto.js third_party/devtools-frontend/src/node_modules/@sinonjs/commons/types/prototypes/throws-on-proto.d.ts third_party/devtools-frontend/src/node_modules/@sinonjs/samsam/lib/create-set.js third_party/devtools-frontend/src/node_modules/@sinonjs/samsam/lib/deep-equal.js third_party/devtools-frontend/src/node_modules/@sinonjs/samsam/types/create-set.d.ts third_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/context.d.ts third_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/context.js third_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/index.d.ts third_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/index.js third_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/variants.d.ts third_party/devtools-frontend/src/node_modules/@tootallnate/quickjs-emscripten/dist/variants.js third_party/devtools-frontend/src/node_modules/@types/node/assert.d.ts third_party/devtools-frontend/src/node_modules/@types/node/buffer.buffer.d.ts third_party/devtools-frontend/src/node_modules/@types/node/buffer.d.ts third_party/devtools-frontend/src/node_modules/@types/node/console.d.ts third_party/devtools-frontend/src/node_modules/@types/node/crypto.d.ts third_party/devtools-frontend/src/node_modules/@types/node/events.d.ts third_party/devtools-frontend/src/node_modules/@types/node/fs.d.ts third_party/devtools-frontend/src/node_modules/@types/node/fs/promises.d.ts third_party/devtools-frontend/src/node_modules/@types/node/http.d.ts third_party/devtools-frontend/src/node_modules/@types/node/https.d.ts third_party/devtools-frontend/src/node_modules/@types/node/perf_hooks.d.ts third_party/devtools-frontend/src/node_modules/@types/node/querystring.d.ts third_party/devtools-frontend/src/node_modules/@types/node/sea.d.ts third_party/devtools-frontend/src/node_modules/@types/node/stream/web.d.ts third_party/devtools-frontend/src/node_modules/@types/node/tls.d.ts third_party/devtools-frontend/src/node_modules/@types/node/trace_events.d.ts third_party/devtools-frontend/src/node_modules/@types/node/ts5.6/buffer.buffer.d.ts third_party/devtools-frontend/src/node_modules/@types/node/url.d.ts third_party/devtools-frontend/src/node_modules/@types/node/util.d.ts third_party/devtools-frontend/src/node_modules/@types/node/v8.d.ts third_party/devtools-frontend/src/node_modules/@types/node/vm.d.ts third_party/devtools-frontend/src/node_modules/@types/node/wasi.d.ts third_party/devtools-frontend/src/node_modules/@types/node/worker_threads.d.ts third_party/devtools-frontend/src/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js third_party/devtools-frontend/src/node_modules/@vscode/web-custom-data/data/browsers.css-data.json third_party/devtools-frontend/src/node_modules/@vscode/web-custom-data/data/browsers.html-data.json third_party/devtools-frontend/src/node_modules/@web/rollup-plugin-import-meta-assets/node_modules/globby/package.json third_party/devtools-frontend/src/node_modules/@web/rollup-plugin-import-meta-assets/node_modules/slash/package.json third_party/devtools-frontend/src/node_modules/acorn/dist/acorn.js third_party/devtools-frontend/src/node_modules/acorn/package.json third_party/devtools-frontend/src/node_modules/ajv/dist/ajv.bundle.js third_party/devtools-frontend/src/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/ansi-styles/package.json third_party/devtools-frontend/src/node_modules/array-buffer-byte-length/package.json third_party/devtools-frontend/src/node_modules/array-find-index/package.json third_party/devtools-frontend/src/node_modules/array-includes/package.json third_party/devtools-frontend/src/node_modules/array-includes/polyfill.js third_party/devtools-frontend/src/node_modules/array-union/package.json third_party/devtools-frontend/src/node_modules/array.prototype.findlastindex/package.json third_party/devtools-frontend/src/node_modules/array.prototype.flat/package.json third_party/devtools-frontend/src/node_modules/array.prototype.flatmap/package.json third_party/devtools-frontend/src/node_modules/arraybuffer.prototype.slice/package.json third_party/devtools-frontend/src/node_modules/asap/browser-raw.js third_party/devtools-frontend/src/node_modules/astral-regex/package.json third_party/devtools-frontend/src/node_modules/async-function/package.json third_party/devtools-frontend/src/node_modules/available-typed-arrays/package.json third_party/devtools-frontend/src/node_modules/basic-ftp/package.json third_party/devtools-frontend/src/node_modules/binary-extensions/package.json third_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/body-parser/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/buffer-crc32/package.json third_party/devtools-frontend/src/node_modules/bytes/package.json third_party/devtools-frontend/src/node_modules/call-bind-apply-helpers/package.json third_party/devtools-frontend/src/node_modules/call-bind/package.json third_party/devtools-frontend/src/node_modules/call-bound/package.json third_party/devtools-frontend/src/node_modules/callsites/package.json third_party/devtools-frontend/src/node_modules/camelcase/package.json third_party/devtools-frontend/src/node_modules/caniuse-lite/package.json third_party/devtools-frontend/src/node_modules/chai/chai.js third_party/devtools-frontend/src/node_modules/chai/lib/chai/core/assertions.js third_party/devtools-frontend/src/node_modules/chai/lib/chai/interface/assert.js third_party/devtools-frontend/src/node_modules/chai/lib/chai/interface/should.js third_party/devtools-frontend/src/node_modules/chai/lib/chai/utils/isNaN.js third_party/devtools-frontend/src/node_modules/chai/package.json third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.d.ts third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/browser/BrowserProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/context/BrowsingContextProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/ActionDispatcher.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/InputSource.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/CollectorsStorage.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkRequest.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/network/NetworkStorage.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/storage/StorageProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/cjs/utils/uuid.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/browser/BrowserProcessor.d.ts third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/browser/BrowserProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/context/BrowsingContextProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/input/ActionDispatcher.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/input/InputSource.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/CollectorsStorage.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/NetworkProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/NetworkRequest.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/network/NetworkStorage.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/storage/StorageProcessor.js third_party/devtools-frontend/src/node_modules/chromium-bidi/lib/esm/utils/uuid.js third_party/devtools-frontend/src/node_modules/cli-cursor/package.json third_party/devtools-frontend/src/node_modules/cli-spinners/package.json third_party/devtools-frontend/src/node_modules/cliui/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/cliui/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/color-convert/package.json third_party/devtools-frontend/src/node_modules/color-name/package.json third_party/devtools-frontend/src/node_modules/colord/constants.d.ts third_party/devtools-frontend/src/node_modules/colord/plugins/a11y.d.ts third_party/devtools-frontend/src/node_modules/colord/plugins/cmyk.d.ts third_party/devtools-frontend/src/node_modules/colord/plugins/lch.d.ts third_party/devtools-frontend/src/node_modules/colors/lib/colors.js third_party/devtools-frontend/src/node_modules/colors/lib/styles.js third_party/devtools-frontend/src/node_modules/colors/lib/system/has-flag.js third_party/devtools-frontend/src/node_modules/colors/lib/system/supports-colors.js third_party/devtools-frontend/src/node_modules/connect/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/connect/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/cookie/package.json third_party/devtools-frontend/src/node_modules/cors/package.json third_party/devtools-frontend/src/node_modules/cosmiconfig/package.json third_party/devtools-frontend/src/node_modules/css-functions-list/package.json third_party/devtools-frontend/src/node_modules/css-tree/data/patch.json third_party/devtools-frontend/src/node_modules/css-tree/lib/lexer/generic.js third_party/devtools-frontend/src/node_modules/css-tree/package.json third_party/devtools-frontend/src/node_modules/cssnano-preset-default/package.json third_party/devtools-frontend/src/node_modules/cssnano/package.json third_party/devtools-frontend/src/node_modules/csso/lib/restructure/6-restructBlock.js third_party/devtools-frontend/src/node_modules/csso/lib/restructure/prepare/specificity.js third_party/devtools-frontend/src/node_modules/csso/node_modules/css-tree/data/patch.json third_party/devtools-frontend/src/node_modules/csso/node_modules/css-tree/lib/lexer/generic.js third_party/devtools-frontend/src/node_modules/csso/node_modules/css-tree/package.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/at-rules.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/at-rules.schema.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/properties.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/properties.schema.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/selectors.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/selectors.schema.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/types.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/css/types.schema.json third_party/devtools-frontend/src/node_modules/csso/node_modules/mdn-data/package.json third_party/devtools-frontend/src/node_modules/csso/package.json third_party/devtools-frontend/src/node_modules/custom-event/index.js third_party/devtools-frontend/src/node_modules/data-view-buffer/package.json third_party/devtools-frontend/src/node_modules/data-view-byte-length/package.json third_party/devtools-frontend/src/node_modules/data-view-byte-offset/package.json third_party/devtools-frontend/src/node_modules/date-format/package.json third_party/devtools-frontend/src/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/define-data-property/package.json third_party/devtools-frontend/src/node_modules/define-properties/package.json third_party/devtools-frontend/src/node_modules/devtools-protocol/json/browser_protocol.json third_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol-mapping.d.ts third_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol-proxy-api.d.ts third_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol-tests-proxy-api.d.ts third_party/devtools-frontend/src/node_modules/devtools-protocol/types/protocol.d.ts third_party/devtools-frontend/src/node_modules/di/package.json third_party/devtools-frontend/src/node_modules/diff/dist/diff.js third_party/devtools-frontend/src/node_modules/diff/dist/diff.min.js third_party/devtools-frontend/src/node_modules/diff/lib/convert/dmp.js third_party/devtools-frontend/src/node_modules/diff/lib/index.es6.js third_party/devtools-frontend/src/node_modules/diff/package.json third_party/devtools-frontend/src/node_modules/dir-glob/package.json third_party/devtools-frontend/src/node_modules/domutils/lib/esm/stringify.d.ts third_party/devtools-frontend/src/node_modules/domutils/lib/esm/stringify.js third_party/devtools-frontend/src/node_modules/domutils/lib/stringify.d.ts third_party/devtools-frontend/src/node_modules/domutils/lib/stringify.js third_party/devtools-frontend/src/node_modules/dunder-proto/package.json third_party/devtools-frontend/src/node_modules/end-of-stream/package.json third_party/devtools-frontend/src/node_modules/engine.io-parser/build/cjs/index.js third_party/devtools-frontend/src/node_modules/engine.io-parser/build/esm/index.js third_party/devtools-frontend/src/node_modules/engine.io/build/transports/webtransport.d.ts third_party/devtools-frontend/src/node_modules/engine.io/build/transports/webtransport.js third_party/devtools-frontend/src/node_modules/engine.io/package.json third_party/devtools-frontend/src/node_modules/env-paths/package.json third_party/devtools-frontend/src/node_modules/error-ex/package.json third_party/devtools-frontend/src/node_modules/es-abstract/helpers/defaultEndianness.js third_party/devtools-frontend/src/node_modules/es-abstract/package.json third_party/devtools-frontend/src/node_modules/es-define-property/package.json third_party/devtools-frontend/src/node_modules/es-errors/package.json third_party/devtools-frontend/src/node_modules/es-object-atoms/package.json third_party/devtools-frontend/src/node_modules/es-set-tostringtag/package.json third_party/devtools-frontend/src/node_modules/es-shim-unscopables/package.json third_party/devtools-frontend/src/node_modules/es-to-primitive/package.json third_party/devtools-frontend/src/node_modules/escalade/package.json third_party/devtools-frontend/src/node_modules/escape-string-regexp/package.json third_party/devtools-frontend/src/node_modules/escodegen/bin/escodegen.js third_party/devtools-frontend/src/node_modules/escodegen/bin/esgenerate.js third_party/devtools-frontend/src/node_modules/escodegen/escodegen.js third_party/devtools-frontend/src/node_modules/escodegen/package.json third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/eslint-import-resolver-node/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/eslint-module-utils/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/eslint-module-utils/pkgUp.js third_party/devtools-frontend/src/node_modules/eslint-module-utils/readPkgUp.js third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/lib/doctrine.js third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/lib/typed.js third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/lib/utility.js third_party/devtools-frontend/src/node_modules/eslint-plugin-import/node_modules/doctrine/package.json third_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp/package.json third_party/devtools-frontend/src/node_modules/eslint-plugin-jsdoc/src/tagNames.js third_party/devtools-frontend/src/node_modules/eslint-plugin-lit/lib/rules/no-native-attributes.js third_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/node_modules/globals/package.json third_party/devtools-frontend/src/node_modules/eslint-plugin-mocha/package.json third_party/devtools-frontend/src/node_modules/eslint-scope/lib/definition.js third_party/devtools-frontend/src/node_modules/eslint-scope/lib/index.js third_party/devtools-frontend/src/node_modules/eslint-scope/lib/pattern-visitor.js third_party/devtools-frontend/src/node_modules/eslint-scope/lib/reference.js third_party/devtools-frontend/src/node_modules/eslint-scope/lib/referencer.js third_party/devtools-frontend/src/node_modules/eslint-scope/lib/scope-manager.js third_party/devtools-frontend/src/node_modules/eslint-scope/lib/scope.js third_party/devtools-frontend/src/node_modules/eslint-scope/lib/variable.js third_party/devtools-frontend/src/node_modules/eslint/lib/rules/max-lines-per-function.js third_party/devtools-frontend/src/node_modules/eslint/node_modules/ansi-styles/package.json third_party/devtools-frontend/src/node_modules/eslint/node_modules/color-convert/package.json third_party/devtools-frontend/src/node_modules/eslint/node_modules/color-name/package.json third_party/devtools-frontend/src/node_modules/eslint/node_modules/escape-string-regexp/package.json third_party/devtools-frontend/src/node_modules/eslint/node_modules/glob-parent/package.json third_party/devtools-frontend/src/node_modules/eslint/node_modules/has-flag/package.json third_party/devtools-frontend/src/node_modules/eslint/node_modules/supports-color/package.json third_party/devtools-frontend/src/node_modules/espree/espree.js third_party/devtools-frontend/src/node_modules/esprima/package.json third_party/devtools-frontend/src/node_modules/esquery/dist/esquery.esm.js third_party/devtools-frontend/src/node_modules/esquery/dist/esquery.js third_party/devtools-frontend/src/node_modules/esquery/package.json third_party/devtools-frontend/src/node_modules/esrecurse/esrecurse.js third_party/devtools-frontend/src/node_modules/esrecurse/gulpfile.babel.js third_party/devtools-frontend/src/node_modules/esrecurse/package.json third_party/devtools-frontend/src/node_modules/estraverse/estraverse.js third_party/devtools-frontend/src/node_modules/estraverse/gulpfile.js third_party/devtools-frontend/src/node_modules/estraverse/package.json third_party/devtools-frontend/src/node_modules/esutils/lib/ast.js third_party/devtools-frontend/src/node_modules/esutils/lib/code.js third_party/devtools-frontend/src/node_modules/esutils/lib/keyword.js third_party/devtools-frontend/src/node_modules/esutils/lib/utils.js third_party/devtools-frontend/src/node_modules/esutils/package.json third_party/devtools-frontend/src/node_modules/fast-glob/out/utils/path.js third_party/devtools-frontend/src/node_modules/fast-uri/package.json third_party/devtools-frontend/src/node_modules/fast-uri/test/uri-js.test.js third_party/devtools-frontend/src/node_modules/fd-slicer/package.json third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/finalhandler/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/find-up/package.json third_party/devtools-frontend/src/node_modules/flat/package.json third_party/devtools-frontend/src/node_modules/follow-redirects/package.json third_party/devtools-frontend/src/node_modules/for-each/package.json third_party/devtools-frontend/src/node_modules/fs-extra/lib/mkdirs/utils.js third_party/devtools-frontend/src/node_modules/fs-extra/package.json third_party/devtools-frontend/src/node_modules/function-bind/package.json third_party/devtools-frontend/src/node_modules/function.prototype.name/package.json third_party/devtools-frontend/src/node_modules/functions-have-names/package.json third_party/devtools-frontend/src/node_modules/gensync/package.json third_party/devtools-frontend/src/node_modules/get-east-asian-width/package.json third_party/devtools-frontend/src/node_modules/get-intrinsic/package.json third_party/devtools-frontend/src/node_modules/get-proto/package.json third_party/devtools-frontend/src/node_modules/get-stream/package.json third_party/devtools-frontend/src/node_modules/get-symbol-description/package.json third_party/devtools-frontend/src/node_modules/glob-parent/package.json third_party/devtools-frontend/src/node_modules/globals/package.json third_party/devtools-frontend/src/node_modules/globalthis/package.json third_party/devtools-frontend/src/node_modules/globby/node_modules/slash/package.json third_party/devtools-frontend/src/node_modules/globby/package.json third_party/devtools-frontend/src/node_modules/gopd/package.json third_party/devtools-frontend/src/node_modules/has-bigints/package.json third_party/devtools-frontend/src/node_modules/has-flag/package.json third_party/devtools-frontend/src/node_modules/has-property-descriptors/package.json third_party/devtools-frontend/src/node_modules/has-proto/package.json third_party/devtools-frontend/src/node_modules/has-symbols/package.json third_party/devtools-frontend/src/node_modules/has-tostringtag/package.json third_party/devtools-frontend/src/node_modules/hasown/package.json third_party/devtools-frontend/src/node_modules/html-tags/package.json third_party/devtools-frontend/src/node_modules/http-proxy/package.json third_party/devtools-frontend/src/node_modules/iconv-lite/encodings/dbcs-data.js third_party/devtools-frontend/src/node_modules/iconv-lite/package.json third_party/devtools-frontend/src/node_modules/import-fresh/package.json third_party/devtools-frontend/src/node_modules/imurmurhash/imurmurhash.js third_party/devtools-frontend/src/node_modules/imurmurhash/imurmurhash.min.js third_party/devtools-frontend/src/node_modules/imurmurhash/package.json third_party/devtools-frontend/src/node_modules/internal-slot/package.json third_party/devtools-frontend/src/node_modules/is-array-buffer/package.json third_party/devtools-frontend/src/node_modules/is-async-function/package.json third_party/devtools-frontend/src/node_modules/is-bigint/package.json third_party/devtools-frontend/src/node_modules/is-binary-path/package.json third_party/devtools-frontend/src/node_modules/is-boolean-object/package.json third_party/devtools-frontend/src/node_modules/is-callable/package.json third_party/devtools-frontend/src/node_modules/is-core-module/package.json third_party/devtools-frontend/src/node_modules/is-data-view/package.json third_party/devtools-frontend/src/node_modules/is-finalizationregistry/package.json third_party/devtools-frontend/src/node_modules/is-fullwidth-code-point/package.json third_party/devtools-frontend/src/node_modules/is-generator-function/package.json third_party/devtools-frontend/src/node_modules/is-interactive/package.json third_party/devtools-frontend/src/node_modules/is-map/package.json third_party/devtools-frontend/src/node_modules/is-negative-zero/package.json third_party/devtools-frontend/src/node_modules/is-number-object/package.json third_party/devtools-frontend/src/node_modules/is-path-inside/package.json third_party/devtools-frontend/src/node_modules/is-plain-obj/package.json third_party/devtools-frontend/src/node_modules/is-regex/package.json third_party/devtools-frontend/src/node_modules/is-set/package.json third_party/devtools-frontend/src/node_modules/is-shared-array-buffer/package.json third_party/devtools-frontend/src/node_modules/is-string/package.json third_party/devtools-frontend/src/node_modules/is-symbol/package.json third_party/devtools-frontend/src/node_modules/is-typed-array/package.json third_party/devtools-frontend/src/node_modules/is-unicode-supported/package.json third_party/devtools-frontend/src/node_modules/is-weakmap/package.json third_party/devtools-frontend/src/node_modules/is-weakref/package.json third_party/devtools-frontend/src/node_modules/is-weakset/package.json third_party/devtools-frontend/src/node_modules/isbinaryfile/package.json third_party/devtools-frontend/src/node_modules/istanbul-lib-report/node_modules/has-flag/package.json third_party/devtools-frontend/src/node_modules/istanbul-lib-report/node_modules/supports-color/package.json third_party/devtools-frontend/src/node_modules/js-yaml/package.json third_party/devtools-frontend/src/node_modules/json-buffer/package.json third_party/devtools-frontend/src/node_modules/json5/package.json third_party/devtools-frontend/src/node_modules/jsonfile/package.json third_party/devtools-frontend/src/node_modules/karma-chrome-launcher/package.json third_party/devtools-frontend/src/node_modules/karma-chrome-launcher/tools/update-contributors.js third_party/devtools-frontend/src/node_modules/karma-coverage/examples/coffee-requirejs/package.json third_party/devtools-frontend/src/node_modules/karma-coverage/examples/coffee/package.json third_party/devtools-frontend/src/node_modules/karma-coverage/package.json third_party/devtools-frontend/src/node_modules/karma-mocha-reporter/jsconfig.json third_party/devtools-frontend/src/node_modules/karma-mocha-reporter/node_modules/log-symbols/package.json third_party/devtools-frontend/src/node_modules/karma-mocha-reporter/package.json third_party/devtools-frontend/src/node_modules/karma-mocha/package.json third_party/devtools-frontend/src/node_modules/karma-sinon/package.json third_party/devtools-frontend/src/node_modules/karma-sourcemap-loader/package.json third_party/devtools-frontend/src/node_modules/karma/package.json third_party/devtools-frontend/src/node_modules/karma/static/context.js third_party/devtools-frontend/src/node_modules/karma/static/karma.js third_party/devtools-frontend/src/node_modules/leven/package.json third_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/license-checker/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/license-checker/package.json third_party/devtools-frontend/src/node_modules/lit-analyzer/node_modules/parse5/lib/tokenizer/index.js third_party/devtools-frontend/src/node_modules/lit-analyzer/node_modules/parse5/package.json third_party/devtools-frontend/src/node_modules/locate-path/package.json third_party/devtools-frontend/src/node_modules/lodash.deburr/package.json third_party/devtools-frontend/src/node_modules/lodash.get/package.json third_party/devtools-frontend/src/node_modules/lodash.memoize/package.json third_party/devtools-frontend/src/node_modules/lodash.merge/package.json third_party/devtools-frontend/src/node_modules/lodash.truncate/package.json third_party/devtools-frontend/src/node_modules/lodash.uniq/package.json third_party/devtools-frontend/src/node_modules/lodash/_compareMultiple.js third_party/devtools-frontend/src/node_modules/lodash/_setData.js third_party/devtools-frontend/src/node_modules/lodash/lodash.js third_party/devtools-frontend/src/node_modules/lodash/package.json third_party/devtools-frontend/src/node_modules/lodash/template.js third_party/devtools-frontend/src/node_modules/log-symbols/node_modules/ansi-styles/package.json third_party/devtools-frontend/src/node_modules/log-symbols/node_modules/color-convert/package.json third_party/devtools-frontend/src/node_modules/log-symbols/node_modules/color-name/package.json third_party/devtools-frontend/src/node_modules/log-symbols/node_modules/has-flag/package.json third_party/devtools-frontend/src/node_modules/log-symbols/node_modules/supports-color/package.json third_party/devtools-frontend/src/node_modules/log-symbols/package.json third_party/devtools-frontend/src/node_modules/log4js/package.json third_party/devtools-frontend/src/node_modules/magic-string/dist/magic-string.cjs.js third_party/devtools-frontend/src/node_modules/magic-string/dist/magic-string.umd.js third_party/devtools-frontend/src/node_modules/make-dir/package.json third_party/devtools-frontend/src/node_modules/math-intrinsics/package.json third_party/devtools-frontend/src/node_modules/mathml-tag-names/package.json third_party/devtools-frontend/src/node_modules/mdn-data/css/at-rules.json third_party/devtools-frontend/src/node_modules/mdn-data/css/at-rules.schema.json third_party/devtools-frontend/src/node_modules/mdn-data/css/properties.json third_party/devtools-frontend/src/node_modules/mdn-data/css/properties.schema.json third_party/devtools-frontend/src/node_modules/mdn-data/css/selectors.json third_party/devtools-frontend/src/node_modules/mdn-data/css/selectors.schema.json third_party/devtools-frontend/src/node_modules/mdn-data/css/types.json third_party/devtools-frontend/src/node_modules/mdn-data/css/types.schema.json third_party/devtools-frontend/src/node_modules/mdn-data/package.json third_party/devtools-frontend/src/node_modules/meow/build/index.d.ts third_party/devtools-frontend/src/node_modules/meow/package.json third_party/devtools-frontend/src/node_modules/mimic-function/index.d.ts third_party/devtools-frontend/src/node_modules/mimic-function/package.json third_party/devtools-frontend/src/node_modules/mocha/lib/runnable.js third_party/devtools-frontend/src/node_modules/mocha/lib/utils.js third_party/devtools-frontend/src/node_modules/mocha/mocha.js third_party/devtools-frontend/src/node_modules/mocha/node_modules/escape-string-regexp/package.json third_party/devtools-frontend/src/node_modules/mocha/node_modules/has-flag/package.json third_party/devtools-frontend/src/node_modules/mocha/node_modules/supports-color/package.json third_party/devtools-frontend/src/node_modules/node-releases/package.json third_party/devtools-frontend/src/node_modules/normalize-package-data/package.json third_party/devtools-frontend/src/node_modules/normalize-path/index.js third_party/devtools-frontend/src/node_modules/object-assign/index.js third_party/devtools-frontend/src/node_modules/object-assign/package.json third_party/devtools-frontend/src/node_modules/object-keys/package.json third_party/devtools-frontend/src/node_modules/object.fromentries/package.json third_party/devtools-frontend/src/node_modules/object.groupby/package.json third_party/devtools-frontend/src/node_modules/object.values/package.json third_party/devtools-frontend/src/node_modules/onetime/package.json third_party/devtools-frontend/src/node_modules/ora/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/ora/node_modules/is-unicode-supported/package.json third_party/devtools-frontend/src/node_modules/ora/node_modules/log-symbols/package.json third_party/devtools-frontend/src/node_modules/ora/node_modules/string-width/package.json third_party/devtools-frontend/src/node_modules/ora/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/ora/package.json third_party/devtools-frontend/src/node_modules/os-homedir/package.json third_party/devtools-frontend/src/node_modules/os-tmpdir/package.json third_party/devtools-frontend/src/node_modules/own-keys/package.json third_party/devtools-frontend/src/node_modules/p-limit/package.json third_party/devtools-frontend/src/node_modules/p-locate/package.json third_party/devtools-frontend/src/node_modules/pac-proxy-agent/dist/index.js third_party/devtools-frontend/src/node_modules/pac-resolver/dist/myIpAddress.js third_party/devtools-frontend/src/node_modules/parent-module/package.json third_party/devtools-frontend/src/node_modules/parse-json/package.json third_party/devtools-frontend/src/node_modules/parse5-htmlparser2-tree-adapter/package.json third_party/devtools-frontend/src/node_modules/parse5/lib/tokenizer/index.js third_party/devtools-frontend/src/node_modules/parse5/package.json third_party/devtools-frontend/src/node_modules/path-exists/package.json third_party/devtools-frontend/src/node_modules/path-is-absolute/package.json third_party/devtools-frontend/src/node_modules/path-key/package.json third_party/devtools-frontend/src/node_modules/path-type/package.json third_party/devtools-frontend/src/node_modules/pend/package.json third_party/devtools-frontend/src/node_modules/possible-typed-array-names/package.json third_party/devtools-frontend/src/node_modules/postcss-colormin/package.json third_party/devtools-frontend/src/node_modules/postcss-colormin/src/index.js third_party/devtools-frontend/src/node_modules/postcss-convert-values/package.json third_party/devtools-frontend/src/node_modules/postcss-discard-comments/package.json third_party/devtools-frontend/src/node_modules/postcss-discard-duplicates/package.json third_party/devtools-frontend/src/node_modules/postcss-discard-empty/package.json third_party/devtools-frontend/src/node_modules/postcss-discard-overridden/package.json third_party/devtools-frontend/src/node_modules/postcss-merge-longhand/package.json third_party/devtools-frontend/src/node_modules/postcss-merge-rules/package.json third_party/devtools-frontend/src/node_modules/postcss-minify-gradients/package.json third_party/devtools-frontend/src/node_modules/postcss-minify-selectors/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-display-values/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-positions/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-repeat-style/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-string/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-timing-functions/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-unicode/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-url/package.json third_party/devtools-frontend/src/node_modules/postcss-normalize-url/src/normalize.js third_party/devtools-frontend/src/node_modules/postcss-normalize-whitespace/package.json third_party/devtools-frontend/src/node_modules/postcss-ordered-values/package.json third_party/devtools-frontend/src/node_modules/postcss-reduce-initial/package.json third_party/devtools-frontend/src/node_modules/postcss-reduce-transforms/package.json third_party/devtools-frontend/src/node_modules/postcss-resolve-nested-selector/package.json third_party/devtools-frontend/src/node_modules/postcss-selector-parser/package.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/css-tree/data/patch.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/css-tree/lib/lexer/generic.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/css-tree/package.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/at-rules.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/at-rules.schema.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/functions.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/functions.schema.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/properties.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/properties.schema.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/selectors.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/selectors.schema.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/types.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/css/types.schema.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/mdn-data/package.json third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/dist/svgo.browser.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/_collections.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/convertOneStopGradients.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/inlineStyles.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/mergeStyles.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/minifyStyles.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/prefixIds.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeAttributesBySelector.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeDesc.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeTitle.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/removeXlink.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/plugins/reusePaths.js third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/_collections.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/convertOneStopGradients.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/inlineStyles.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/mergeStyles.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/minifyStyles.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/prefixIds.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeAttributesBySelector.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeDesc.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeTitle.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/node_modules/svgo/types/plugins/removeXlink.d.ts third_party/devtools-frontend/src/node_modules/postcss-svgo/package.json third_party/devtools-frontend/src/node_modules/postcss-unique-selectors/package.json third_party/devtools-frontend/src/node_modules/postcss/lib/comment.d.ts third_party/devtools-frontend/src/node_modules/postcss/lib/declaration.d.ts third_party/devtools-frontend/src/node_modules/progress/package.json third_party/devtools-frontend/src/node_modules/pump/package.json third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Browser.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/BrowserContext.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandle.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandle.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Frame.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Frame.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/HTTPRequest.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Input.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Input.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Page.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Target.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/api/WebWorker.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/Frame.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Input.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/PredefinedNetworkConditions.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Tracing.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/Tracing.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Configuration.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/CustomQueryHandler.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Device.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Device.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/FileChooser.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/FileChooser.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/QueryHandler.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/QueryHandler.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Viewport.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/common/util.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/BrowserLauncher.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/FirefoxLauncher.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/LaunchOptions.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PuppeteerNode.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/node/PuppeteerNode.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/cjs/puppeteer/util/encoding.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/es5-iife/puppeteer-core-browser.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/es5-iife/puppeteer-core-browser.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Browser.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/BrowserContext.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/ElementHandle.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/ElementHandle.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Frame.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Frame.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/HTTPRequest.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Input.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Input.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/Target.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/api/WebWorker.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/Frame.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Input.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/PredefinedNetworkConditions.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Tracing.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/Tracing.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Configuration.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/CustomQueryHandler.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Device.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Device.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/FileChooser.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/FileChooser.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/QueryHandler.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/QueryHandler.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/Viewport.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/common/util.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/BrowserLauncher.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/FirefoxLauncher.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/LaunchOptions.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/PuppeteerNode.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/node/PuppeteerNode.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/esm/puppeteer/util/encoding.js third_party/devtools-frontend/src/node_modules/puppeteer-core/lib/types.d.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/puppeteer-core/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/puppeteer-core/node_modules/ws/package.json third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Browser.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/BrowserContext.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/ElementHandle.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Frame.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/HTTPRequest.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Input.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Page.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/Target.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/api/WebWorker.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/bidi/Frame.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/cdp/Input.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/cdp/PredefinedNetworkConditions.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/cdp/Tracing.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/Configuration.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/CustomQueryHandler.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/Device.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/FileChooser.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/QueryHandler.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/Viewport.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/common/util.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/BrowserLauncher.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/FirefoxLauncher.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/LaunchOptions.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/node/PuppeteerNode.ts third_party/devtools-frontend/src/node_modules/puppeteer-core/src/util/encoding.ts third_party/devtools-frontend/src/node_modules/qs/package.json third_party/devtools-frontend/src/node_modules/randombytes/browser.js third_party/devtools-frontend/src/node_modules/raw-body/package.json third_party/devtools-frontend/src/node_modules/reflect.getprototypeof/package.json third_party/devtools-frontend/src/node_modules/regexp.prototype.flags/package.json third_party/devtools-frontend/src/node_modules/require-directory/package.json third_party/devtools-frontend/src/node_modules/require-from-string/package.json third_party/devtools-frontend/src/node_modules/requires-port/test.js third_party/devtools-frontend/src/node_modules/reserved-identifiers/index.d.ts third_party/devtools-frontend/src/node_modules/reserved-identifiers/package.json third_party/devtools-frontend/src/node_modules/resolve-from/package.json third_party/devtools-frontend/src/node_modules/resolve/lib/caller.js third_party/devtools-frontend/src/node_modules/restore-cursor/package.json third_party/devtools-frontend/src/node_modules/rollup/dist/es/shared/node-entry.js third_party/devtools-frontend/src/node_modules/rollup/dist/es/shared/watch.js third_party/devtools-frontend/src/node_modules/rollup/dist/shared/index.js third_party/devtools-frontend/src/node_modules/rollup/dist/shared/rollup.js third_party/devtools-frontend/src/node_modules/safe-array-concat/package.json third_party/devtools-frontend/src/node_modules/safe-push-apply/package.json third_party/devtools-frontend/src/node_modules/safe-regex-test/package.json third_party/devtools-frontend/src/node_modules/safer-buffer/package.json third_party/devtools-frontend/src/node_modules/set-function-length/package.json third_party/devtools-frontend/src/node_modules/set-function-name/package.json third_party/devtools-frontend/src/node_modules/set-proto/package.json third_party/devtools-frontend/src/node_modules/shebang-command/package.json third_party/devtools-frontend/src/node_modules/shebang-regex/package.json third_party/devtools-frontend/src/node_modules/side-channel-list/package.json third_party/devtools-frontend/src/node_modules/side-channel-map/package.json third_party/devtools-frontend/src/node_modules/side-channel-weakmap/package.json third_party/devtools-frontend/src/node_modules/side-channel/package.json third_party/devtools-frontend/src/node_modules/sinon/lib/sinon/proxy-invoke.js third_party/devtools-frontend/src/node_modules/sinon/lib/sinon/util/core/extend.js third_party/devtools-frontend/src/node_modules/sinon/lib/sinon/util/core/get-property-descriptor.js third_party/devtools-frontend/src/node_modules/sinon/node_modules/has-flag/package.json third_party/devtools-frontend/src/node_modules/sinon/node_modules/supports-color/package.json third_party/devtools-frontend/src/node_modules/sinon/pkg/sinon-esm.js third_party/devtools-frontend/src/node_modules/sinon/pkg/sinon.js third_party/devtools-frontend/src/node_modules/slash/package.json third_party/devtools-frontend/src/node_modules/slice-ansi/node_modules/ansi-styles/package.json third_party/devtools-frontend/src/node_modules/slice-ansi/node_modules/color-convert/package.json third_party/devtools-frontend/src/node_modules/slice-ansi/node_modules/color-name/package.json third_party/devtools-frontend/src/node_modules/slide/package.json third_party/devtools-frontend/src/node_modules/socket.io/client-dist/socket.io.js third_party/devtools-frontend/src/node_modules/socket.io/dist/index.d.ts third_party/devtools-frontend/src/node_modules/socket.io/dist/index.js third_party/devtools-frontend/src/node_modules/socket.io/dist/namespace.d.ts third_party/devtools-frontend/src/node_modules/socket.io/dist/namespace.js third_party/devtools-frontend/src/node_modules/socket.io/dist/socket.d.ts third_party/devtools-frontend/src/node_modules/socket.io/dist/socket.js third_party/devtools-frontend/src/node_modules/socket.io/package.json third_party/devtools-frontend/src/node_modules/socks-proxy-agent/package.json third_party/devtools-frontend/src/node_modules/source-map-js/lib/base64-vlq.js third_party/devtools-frontend/src/node_modules/source-map-js/lib/source-map-consumer.js third_party/devtools-frontend/src/node_modules/source-map-js/package.json third_party/devtools-frontend/src/node_modules/source-map-support/source-map-support.js third_party/devtools-frontend/src/node_modules/source-map/dist/source-map.debug.js third_party/devtools-frontend/src/node_modules/source-map/dist/source-map.js third_party/devtools-frontend/src/node_modules/source-map/lib/base64-vlq.js third_party/devtools-frontend/src/node_modules/source-map/lib/source-map-consumer.js third_party/devtools-frontend/src/node_modules/source-map/package.json third_party/devtools-frontend/src/node_modules/spdx-correct/package.json third_party/devtools-frontend/src/node_modules/stdin-discarder/package.json third_party/devtools-frontend/src/node_modules/stop-iteration-iterator/package.json third_party/devtools-frontend/src/node_modules/streamroller/package.json third_party/devtools-frontend/src/node_modules/string-width-cjs/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/string-width-cjs/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/string-width-cjs/package.json third_party/devtools-frontend/src/node_modules/string-width/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/string-width/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/string-width/package.json third_party/devtools-frontend/src/node_modules/string.prototype.trim/package.json third_party/devtools-frontend/src/node_modules/string.prototype.trimend/package.json third_party/devtools-frontend/src/node_modules/string.prototype.trimstart/package.json third_party/devtools-frontend/src/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/strip-ansi-cjs/package.json third_party/devtools-frontend/src/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/strip-bom/package.json third_party/devtools-frontend/src/node_modules/strip-json-comments/package.json third_party/devtools-frontend/src/node_modules/stylehacks/package.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/@csstools/selector-specificity/package.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/css-tree/data/patch.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/css-tree/lib/lexer/generic.js third_party/devtools-frontend/src/node_modules/stylelint/node_modules/css-tree/package.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/debug/package.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/debug/src/browser.js third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/at-rules.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/at-rules.schema.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/functions.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/functions.schema.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/properties.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/properties.schema.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/selectors.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/selectors.schema.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/types.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/css/types.schema.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/mdn-data/package.json third_party/devtools-frontend/src/node_modules/stylelint/node_modules/resolve-from/package.json third_party/devtools-frontend/src/node_modules/supports-color/package.json third_party/devtools-frontend/src/node_modules/supports-hyperlinks/node_modules/has-flag/package.json third_party/devtools-frontend/src/node_modules/supports-hyperlinks/node_modules/supports-color/package.json third_party/devtools-frontend/src/node_modules/supports-preserve-symlinks-flag/package.json third_party/devtools-frontend/src/node_modules/svg-tags/package.json third_party/devtools-frontend/src/node_modules/svgo/dist/svgo.browser.js third_party/devtools-frontend/src/node_modules/svgo/plugins/_collections.js third_party/devtools-frontend/src/node_modules/svgo/plugins/convertOneStopGradients.js third_party/devtools-frontend/src/node_modules/svgo/plugins/inlineStyles.js third_party/devtools-frontend/src/node_modules/svgo/plugins/mergeStyles.js third_party/devtools-frontend/src/node_modules/svgo/plugins/minifyStyles.js third_party/devtools-frontend/src/node_modules/svgo/plugins/prefixIds.js third_party/devtools-frontend/src/node_modules/svgo/plugins/removeAttributesBySelector.js third_party/devtools-frontend/src/node_modules/svgo/plugins/removeDesc.js third_party/devtools-frontend/src/node_modules/svgo/plugins/removeTitle.js third_party/devtools-frontend/src/node_modules/svgo/plugins/removeXlink.js third_party/devtools-frontend/src/node_modules/svgo/plugins/reusePaths.js third_party/devtools-frontend/src/node_modules/table/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/table/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/tar-stream/package.json third_party/devtools-frontend/src/node_modules/terser/dist/bundle.min.js third_party/devtools-frontend/src/node_modules/terser/lib/ast.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/common.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/compressor-flags.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/drop-side-effect-free.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/drop-unused.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/evaluate.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/index.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/inference.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/inline.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/native-objects.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/reduce-vars.js third_party/devtools-frontend/src/node_modules/terser/lib/compress/tighten-body.js third_party/devtools-frontend/src/node_modules/terser/lib/minify.js third_party/devtools-frontend/src/node_modules/terser/lib/mozilla-ast.js third_party/devtools-frontend/src/node_modules/terser/lib/output.js third_party/devtools-frontend/src/node_modules/terser/lib/parse.js third_party/devtools-frontend/src/node_modules/terser/lib/propmangle.js third_party/devtools-frontend/src/node_modules/terser/lib/scope.js third_party/devtools-frontend/src/node_modules/terser/lib/sourcemap.js third_party/devtools-frontend/src/node_modules/terser/lib/transform.js third_party/devtools-frontend/src/node_modules/terser/lib/utils/index.js third_party/devtools-frontend/src/node_modules/terser/package.json third_party/devtools-frontend/src/node_modules/tmp/package.json third_party/devtools-frontend/src/node_modules/to-valid-identifier/index.d.ts third_party/devtools-frontend/src/node_modules/to-valid-identifier/package.json third_party/devtools-frontend/src/node_modules/toidentifier/package.json third_party/devtools-frontend/src/node_modules/treeify/package.json third_party/devtools-frontend/src/node_modules/treeify/treeify.js third_party/devtools-frontend/src/node_modules/tsconfig-paths/node_modules/json5/package.json third_party/devtools-frontend/src/node_modules/type-fest/package.json third_party/devtools-frontend/src/node_modules/type-fest/source/basic.d.ts third_party/devtools-frontend/src/node_modules/type-fest/source/entries.d.ts third_party/devtools-frontend/src/node_modules/type-fest/source/entry.d.ts third_party/devtools-frontend/src/node_modules/typed-array-buffer/package.json third_party/devtools-frontend/src/node_modules/typed-array-byte-length/package.json third_party/devtools-frontend/src/node_modules/typed-array-byte-offset/package.json third_party/devtools-frontend/src/node_modules/typed-array-length/package.json third_party/devtools-frontend/src/node_modules/typescript/lib/_tsc.js third_party/devtools-frontend/src/node_modules/typescript/lib/cs/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/de/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/es/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/fr/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/it/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/ja/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/ko/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/lib.dom.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.dom.iterable.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2016.intl.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2020.bigint.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2020.intl.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2021.intl.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2022.intl.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.webworker.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/lib.webworker.iterable.d.ts third_party/devtools-frontend/src/node_modules/typescript/lib/pl/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/ru/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/tr/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/typescript.js third_party/devtools-frontend/src/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/ua-parser-js/package.json third_party/devtools-frontend/src/node_modules/unbox-primitive/package.json third_party/devtools-frontend/src/node_modules/undici-types/formdata.d.ts third_party/devtools-frontend/src/node_modules/uri-js/dist/es5/uri.all.js third_party/devtools-frontend/src/node_modules/uri-js/dist/esnext/uri.js third_party/devtools-frontend/src/node_modules/uri-js/package.json third_party/devtools-frontend/src/node_modules/utils-merge/package.json third_party/devtools-frontend/src/node_modules/validate-npm-package-license/package.json third_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/esm/data/webCustomData.js third_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/esm/services/selectorPrinting.js third_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/umd/data/webCustomData.js third_party/devtools-frontend/src/node_modules/vscode-css-languageservice/lib/umd/services/selectorPrinting.js third_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/esm/beautify/beautify-css.js third_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/esm/beautify/beautify-html.js third_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/esm/languageFacts/data/webCustomData.js third_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-css.js third_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/umd/beautify/beautify-html.js third_party/devtools-frontend/src/node_modules/vscode-html-languageservice/lib/umd/languageFacts/data/webCustomData.js third_party/devtools-frontend/src/node_modules/vscode-languageserver-textdocument/thirdpartynotices.txt third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/cs/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/de/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/es/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/fr/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/it/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/ja/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/ko/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.dom.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.dom.iterable.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2020.bigint.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2020.intl.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2021.intl.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.es2022.intl.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.webworker.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/lib.webworker.iterable.d.ts third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/pl/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/ru/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tr/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tsc.js third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tsserver.js third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/tsserverlibrary.js third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/typescript.js third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/typingsInstaller.js third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/web-component-analyzer/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json third_party/devtools-frontend/src/node_modules/webidl2/package.json third_party/devtools-frontend/src/node_modules/which-boxed-primitive/package.json third_party/devtools-frontend/src/node_modules/which-builtin-type/package.json third_party/devtools-frontend/src/node_modules/which-collection/package.json third_party/devtools-frontend/src/node_modules/which-typed-array/package.json third_party/devtools-frontend/src/node_modules/word-wrap/package.json third_party/devtools-frontend/src/node_modules/workerpool/dist/worker.js third_party/devtools-frontend/src/node_modules/workerpool/dist/workerpool.js third_party/devtools-frontend/src/node_modules/workerpool/dist/workerpool.min.js.LICENSE.txt third_party/devtools-frontend/src/node_modules/workerpool/package.json third_party/devtools-frontend/src/node_modules/workerpool/src/header.js third_party/devtools-frontend/src/node_modules/workerpool/src/validateOptions.js third_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/color-convert/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/color-name/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi-cjs/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/ansi-styles/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/color-convert/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/color-name/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/wrap-ansi/package.json third_party/devtools-frontend/src/node_modules/ws/package.json third_party/devtools-frontend/src/node_modules/y18n/package.json third_party/devtools-frontend/src/node_modules/yargs-unparser/node_modules/decamelize/package.json third_party/devtools-frontend/src/node_modules/yargs/node_modules/ansi-regex/package.json third_party/devtools-frontend/src/node_modules/yargs/node_modules/strip-ansi/package.json third_party/devtools-frontend/src/node_modules/yauzl/package.json third_party/devtools-frontend/src/node_modules/yocto-queue/index.d.ts third_party/devtools-frontend/src/node_modules/yocto-queue/package.json third_party/devtools-frontend/src/node_modules/yoctocolors/package.json third_party/devtools-frontend/src/node_modules/zod/src/v3/tests/refine.test.ts third_party/devtools-frontend/src/node_modules/zod/src/v3/tests/string.test.ts third_party/devtools-frontend/src/node_modules/zod/src/v4/classic/tests/refine.test.ts third_party/devtools-frontend/src/node_modules/zod/src/v4/classic/tests/string.test.ts third_party/devtools-frontend/src/node_modules/zod/src/v4/core/regexes.ts third_party/devtools-frontend/src/node_modules/zod/v4/core/regexes.d.ts third_party/devtools-frontend/src/node_modules/zod/v4/core/regexes.js third_party/devtools-frontend/src/package.json third_party/devtools-frontend/src/scripts/ai_assistance/suite/helpers/gemini.ts third_party/devtools-frontend/src/scripts/ai_assistance/suite/helpers/report_generator.ts third_party/devtools-frontend/src/scripts/build/compress_files.js third_party/devtools-frontend/src/scripts/check_external_links.js third_party/devtools-frontend/src/scripts/component_docs/component_docs.css third_party/devtools-frontend/src/scripts/deps/download_emscripten.py third_party/devtools-frontend/src/scripts/deps/roll_to_chromium.py third_party/devtools-frontend/src/scripts/eslint_rules/lib/no-customized-builtin-elements.ts third_party/devtools-frontend/src/scripts/eslint_rules/lib/utils/ruleCreator.ts third_party/devtools-frontend/src/scripts/eslint_rules/tests/no-imperative-dom-api.test.ts third_party/devtools-frontend/src/scripts/hosted_mode/server.js third_party/devtools-frontend/src/scripts/tools/update_goldens.py third_party/devtools-frontend/src/test/conductor/resultsdb.ts third_party/devtools-frontend/src/test/e2e/application/reporting-api.test.ts third_party/devtools-frontend/src/test/e2e/console/console-message-format.test.ts third_party/devtools-frontend/src/test/e2e/console/console-truncate-long-messages.test.ts third_party/devtools-frontend/src/test/e2e/lighthouse/devtools-settings.test.ts third_party/devtools-frontend/src/test/e2e/lighthouse/navigation.test.ts third_party/devtools-frontend/src/test/e2e/lighthouse/snapshot.test.ts third_party/devtools-frontend/src/test/e2e/lighthouse/timespan.test.ts third_party/devtools-frontend/src/test/e2e/performance/trace-app.test.ts third_party/devtools-frontend/src/test/e2e/resources/console/primitives.html third_party/devtools-frontend/src/test/e2e/resources/elements/inactive-css-page.html third_party/devtools-frontend/src/test/e2e/shared/frontend-helper.ts third_party/devtools-frontend/src/test/perf/report/report.ts third_party/devtools-frontend/src/third_party/blink/public/devtools_protocol/browser_protocol.json third_party/devtools-frontend/src/third_party/pyjson5/src/benchmarks/chromium.linux.json third_party/devtools-frontend/src/third_party/pyjson5/src/setup.py third_party/dom_distiller_js/dist/js/domdistiller.js third_party/dom_distiller_js/dist/js/domdistiller_wrapped.js third_party/dom_distiller_js/protoc_plugins/util/plugin_protos.py third_party/domato/src/canvas/generator.py third_party/domato/src/generator.py third_party/domato/src/grammar.py third_party/domato/src/html_tags.py third_party/domato/src/jscript/generator.py third_party/domato/src/mathml_tags.py third_party/domato/src/php/generator.py third_party/domato/src/rules/common.txt third_party/domato/src/rules/jshelpers.txt third_party/domato/src/svg_tags.py third_party/domato/src/vbscript/generator.py third_party/domato/src/webgl/generator.py third_party/dragonbox/src/include/dragonbox/dragonbox.h third_party/dragonbox/src/other_files/unknown_win64_vc2019.html third_party/dragonbox/src/subproject/3rdparty/schubfach/schubfach_32.cc third_party/dragonbox/src/subproject/3rdparty/schubfach/schubfach_64.cc third_party/eigen3/src/Eigen/src/Cholesky/LDLT.h third_party/eigen3/src/Eigen/src/Cholesky/LLT.h third_party/eigen3/src/Eigen/src/CholmodSupport/CholmodSupport.h third_party/eigen3/src/Eigen/src/Core/ArithmeticSequence.h third_party/eigen3/src/Eigen/src/Core/Array.h third_party/eigen3/src/Eigen/src/Core/ArrayBase.h third_party/eigen3/src/Eigen/src/Core/ArrayWrapper.h third_party/eigen3/src/Eigen/src/Core/Assign.h third_party/eigen3/src/Eigen/src/Core/AssignEvaluator.h third_party/eigen3/src/Eigen/src/Core/Assign_AOCL.h third_party/eigen3/src/Eigen/src/Core/BandMatrix.h third_party/eigen3/src/Eigen/src/Core/Block.h third_party/eigen3/src/Eigen/src/Core/CommaInitializer.h third_party/eigen3/src/Eigen/src/Core/ConditionEstimator.h third_party/eigen3/src/Eigen/src/Core/CoreEvaluators.h third_party/eigen3/src/Eigen/src/Core/CoreIterators.h third_party/eigen3/src/Eigen/src/Core/CwiseBinaryOp.h third_party/eigen3/src/Eigen/src/Core/CwiseNullaryOp.h third_party/eigen3/src/Eigen/src/Core/CwiseTernaryOp.h third_party/eigen3/src/Eigen/src/Core/CwiseUnaryOp.h third_party/eigen3/src/Eigen/src/Core/CwiseUnaryView.h third_party/eigen3/src/Eigen/src/Core/DenseBase.h third_party/eigen3/src/Eigen/src/Core/DenseCoeffsBase.h third_party/eigen3/src/Eigen/src/Core/DenseStorage.h third_party/eigen3/src/Eigen/src/Core/DeviceWrapper.h third_party/eigen3/src/Eigen/src/Core/Diagonal.h third_party/eigen3/src/Eigen/src/Core/DiagonalMatrix.h third_party/eigen3/src/Eigen/src/Core/DiagonalProduct.h third_party/eigen3/src/Eigen/src/Core/Dot.h third_party/eigen3/src/Eigen/src/Core/EigenBase.h third_party/eigen3/src/Eigen/src/Core/Fill.h third_party/eigen3/src/Eigen/src/Core/FindCoeff.h third_party/eigen3/src/Eigen/src/Core/ForceAlignedAccess.h third_party/eigen3/src/Eigen/src/Core/Fuzzy.h third_party/eigen3/src/Eigen/src/Core/GeneralProduct.h third_party/eigen3/src/Eigen/src/Core/GenericPacketMath.h third_party/eigen3/src/Eigen/src/Core/GlobalFunctions.h third_party/eigen3/src/Eigen/src/Core/IO.h third_party/eigen3/src/Eigen/src/Core/IndexedView.h third_party/eigen3/src/Eigen/src/Core/InnerProduct.h third_party/eigen3/src/Eigen/src/Core/Inverse.h third_party/eigen3/src/Eigen/src/Core/Map.h third_party/eigen3/src/Eigen/src/Core/MapBase.h third_party/eigen3/src/Eigen/src/Core/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/MathFunctionsImpl.h third_party/eigen3/src/Eigen/src/Core/Matrix.h third_party/eigen3/src/Eigen/src/Core/MatrixBase.h third_party/eigen3/src/Eigen/src/Core/NestByValue.h third_party/eigen3/src/Eigen/src/Core/NoAlias.h third_party/eigen3/src/Eigen/src/Core/NumTraits.h third_party/eigen3/src/Eigen/src/Core/PartialReduxEvaluator.h third_party/eigen3/src/Eigen/src/Core/PermutationMatrix.h third_party/eigen3/src/Eigen/src/Core/PlainObjectBase.h third_party/eigen3/src/Eigen/src/Core/Product.h third_party/eigen3/src/Eigen/src/Core/ProductEvaluators.h third_party/eigen3/src/Eigen/src/Core/Random.h third_party/eigen3/src/Eigen/src/Core/RandomImpl.h third_party/eigen3/src/Eigen/src/Core/RealView.h third_party/eigen3/src/Eigen/src/Core/Redux.h third_party/eigen3/src/Eigen/src/Core/Ref.h third_party/eigen3/src/Eigen/src/Core/Replicate.h third_party/eigen3/src/Eigen/src/Core/Reshaped.h third_party/eigen3/src/Eigen/src/Core/ReturnByValue.h third_party/eigen3/src/Eigen/src/Core/Reverse.h third_party/eigen3/src/Eigen/src/Core/Select.h third_party/eigen3/src/Eigen/src/Core/SelfAdjointView.h third_party/eigen3/src/Eigen/src/Core/SelfCwiseBinaryOp.h third_party/eigen3/src/Eigen/src/Core/SkewSymmetricMatrix3.h third_party/eigen3/src/Eigen/src/Core/Solve.h third_party/eigen3/src/Eigen/src/Core/SolveTriangular.h third_party/eigen3/src/Eigen/src/Core/SolverBase.h third_party/eigen3/src/Eigen/src/Core/StableNorm.h third_party/eigen3/src/Eigen/src/Core/StlIterators.h third_party/eigen3/src/Eigen/src/Core/Stride.h third_party/eigen3/src/Eigen/src/Core/Swap.h third_party/eigen3/src/Eigen/src/Core/Transpose.h third_party/eigen3/src/Eigen/src/Core/Transpositions.h third_party/eigen3/src/Eigen/src/Core/TriangularMatrix.h third_party/eigen3/src/Eigen/src/Core/VectorBlock.h third_party/eigen3/src/Eigen/src/Core/VectorwiseOp.h third_party/eigen3/src/Eigen/src/Core/Visitor.h third_party/eigen3/src/Eigen/src/Core/arch/AVX/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/AVX/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/AVX/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/AVX/Reductions.h third_party/eigen3/src/Eigen/src/Core/arch/AVX/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/GemmKernel.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/MathFunctionsFP16.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/PacketMathFP16.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/Reductions.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/TrsmKernel.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/AVX512/TypeCastingFP16.h third_party/eigen3/src/Eigen/src/Core/arch/AltiVec/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/AltiVec/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/AltiVec/MatrixProduct.h third_party/eigen3/src/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h third_party/eigen3/src/Eigen/src/Core/arch/AltiVec/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/AltiVec/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/Default/ConjHelper.h third_party/eigen3/src/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h third_party/eigen3/src/Eigen/src/Core/arch/Default/Half.h third_party/eigen3/src/Eigen/src/Core/arch/Default/Settings.h third_party/eigen3/src/Eigen/src/Core/arch/GPU/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/GPU/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/GPU/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/GPU/Tuple.h third_party/eigen3/src/Eigen/src/Core/arch/GPU/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/LSX/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/LSX/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/LSX/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/LSX/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/MSA/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/MSA/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/MSA/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/NEON/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/NEON/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/NEON/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/NEON/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/NEON/UnaryFunctors.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/GeneralBlockPanelKernel.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMath2.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMath4.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMathBF16.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/PacketMathFP16.h third_party/eigen3/src/Eigen/src/Core/arch/RVV10/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/SSE/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/SSE/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/SSE/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/SSE/Reductions.h third_party/eigen3/src/Eigen/src/Core/arch/SSE/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/SVE/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/SVE/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/SVE/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/SYCL/InteropHeaders.h third_party/eigen3/src/Eigen/src/Core/arch/SYCL/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/SYCL/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/SYCL/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/arch/ZVector/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/ZVector/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/ZVector/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/clang/Complex.h third_party/eigen3/src/Eigen/src/Core/arch/clang/MathFunctions.h third_party/eigen3/src/Eigen/src/Core/arch/clang/PacketMath.h third_party/eigen3/src/Eigen/src/Core/arch/clang/Reductions.h third_party/eigen3/src/Eigen/src/Core/arch/clang/TypeCasting.h third_party/eigen3/src/Eigen/src/Core/functors/AssignmentFunctors.h third_party/eigen3/src/Eigen/src/Core/functors/BinaryFunctors.h third_party/eigen3/src/Eigen/src/Core/functors/NullaryFunctors.h third_party/eigen3/src/Eigen/src/Core/functors/StlFunctors.h third_party/eigen3/src/Eigen/src/Core/functors/TernaryFunctors.h third_party/eigen3/src/Eigen/src/Core/functors/UnaryFunctors.h third_party/eigen3/src/Eigen/src/Core/products/GeneralBlockPanelKernel.h third_party/eigen3/src/Eigen/src/Core/products/GeneralMatrixMatrix.h third_party/eigen3/src/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h third_party/eigen3/src/Eigen/src/Core/products/GeneralMatrixVector.h third_party/eigen3/src/Eigen/src/Core/products/Parallelizer.h third_party/eigen3/src/Eigen/src/Core/products/SelfadjointMatrixMatrix.h third_party/eigen3/src/Eigen/src/Core/products/SelfadjointMatrixVector.h third_party/eigen3/src/Eigen/src/Core/products/SelfadjointProduct.h third_party/eigen3/src/Eigen/src/Core/products/SelfadjointRank2Update.h third_party/eigen3/src/Eigen/src/Core/products/TriangularMatrixMatrix.h third_party/eigen3/src/Eigen/src/Core/products/TriangularMatrixVector.h third_party/eigen3/src/Eigen/src/Core/products/TriangularSolverMatrix.h third_party/eigen3/src/Eigen/src/Core/products/TriangularSolverVector.h third_party/eigen3/src/Eigen/src/Core/util/AOCL_Support.h third_party/eigen3/src/Eigen/src/Core/util/Assert.h third_party/eigen3/src/Eigen/src/Core/util/BlasUtil.h third_party/eigen3/src/Eigen/src/Core/util/ConfigureVectorization.h third_party/eigen3/src/Eigen/src/Core/util/Constants.h third_party/eigen3/src/Eigen/src/Core/util/EmulateArray.h third_party/eigen3/src/Eigen/src/Core/util/ForwardDeclarations.h third_party/eigen3/src/Eigen/src/Core/util/IndexedViewHelper.h third_party/eigen3/src/Eigen/src/Core/util/IntegralConstant.h third_party/eigen3/src/Eigen/src/Core/util/Macros.h third_party/eigen3/src/Eigen/src/Core/util/MaxSizeVector.h third_party/eigen3/src/Eigen/src/Core/util/Memory.h third_party/eigen3/src/Eigen/src/Core/util/Meta.h third_party/eigen3/src/Eigen/src/Core/util/MoreMeta.h third_party/eigen3/src/Eigen/src/Core/util/ReshapedHelper.h third_party/eigen3/src/Eigen/src/Core/util/Serializer.h third_party/eigen3/src/Eigen/src/Core/util/StaticAssert.h third_party/eigen3/src/Eigen/src/Core/util/SymbolicIndex.h third_party/eigen3/src/Eigen/src/Core/util/XprHelper.h third_party/eigen3/src/Eigen/src/Eigenvalues/ComplexEigenSolver.h third_party/eigen3/src/Eigen/src/Eigenvalues/ComplexQZ.h third_party/eigen3/src/Eigen/src/Eigenvalues/ComplexSchur.h third_party/eigen3/src/Eigen/src/Eigenvalues/EigenSolver.h third_party/eigen3/src/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h third_party/eigen3/src/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h third_party/eigen3/src/Eigen/src/Eigenvalues/HessenbergDecomposition.h third_party/eigen3/src/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h third_party/eigen3/src/Eigen/src/Eigenvalues/RealQZ.h third_party/eigen3/src/Eigen/src/Eigenvalues/RealSchur.h third_party/eigen3/src/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h third_party/eigen3/src/Eigen/src/Eigenvalues/Tridiagonalization.h third_party/eigen3/src/Eigen/src/Geometry/AlignedBox.h third_party/eigen3/src/Eigen/src/Geometry/AngleAxis.h third_party/eigen3/src/Eigen/src/Geometry/EulerAngles.h third_party/eigen3/src/Eigen/src/Geometry/Homogeneous.h third_party/eigen3/src/Eigen/src/Geometry/Hyperplane.h third_party/eigen3/src/Eigen/src/Geometry/OrthoMethods.h third_party/eigen3/src/Eigen/src/Geometry/ParametrizedLine.h third_party/eigen3/src/Eigen/src/Geometry/Quaternion.h third_party/eigen3/src/Eigen/src/Geometry/Rotation2D.h third_party/eigen3/src/Eigen/src/Geometry/RotationBase.h third_party/eigen3/src/Eigen/src/Geometry/Scaling.h third_party/eigen3/src/Eigen/src/Geometry/Transform.h third_party/eigen3/src/Eigen/src/Geometry/Translation.h third_party/eigen3/src/Eigen/src/Geometry/Umeyama.h third_party/eigen3/src/Eigen/src/Geometry/arch/Geometry_SIMD.h third_party/eigen3/src/Eigen/src/Householder/BlockHouseholder.h third_party/eigen3/src/Eigen/src/Householder/Householder.h third_party/eigen3/src/Eigen/src/Householder/HouseholderSequence.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h third_party/eigen3/src/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h third_party/eigen3/src/Eigen/src/Jacobi/Jacobi.h third_party/eigen3/src/Eigen/src/KLUSupport/KLUSupport.h third_party/eigen3/src/Eigen/src/LU/Determinant.h third_party/eigen3/src/Eigen/src/LU/FullPivLU.h third_party/eigen3/src/Eigen/src/LU/InverseImpl.h third_party/eigen3/src/Eigen/src/LU/PartialPivLU.h third_party/eigen3/src/Eigen/src/LU/arch/InverseSize4.h third_party/eigen3/src/Eigen/src/MetisSupport/MetisSupport.h third_party/eigen3/src/Eigen/src/OrderingMethods/Amd.h third_party/eigen3/src/Eigen/src/OrderingMethods/Eigen_Colamd.h third_party/eigen3/src/Eigen/src/OrderingMethods/Ordering.h third_party/eigen3/src/Eigen/src/PaStiXSupport/PaStiXSupport.h third_party/eigen3/src/Eigen/src/QR/ColPivHouseholderQR.h third_party/eigen3/src/Eigen/src/QR/CompleteOrthogonalDecomposition.h third_party/eigen3/src/Eigen/src/QR/FullPivHouseholderQR.h third_party/eigen3/src/Eigen/src/QR/HouseholderQR.h third_party/eigen3/src/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h third_party/eigen3/src/Eigen/src/SVD/BDCSVD.h third_party/eigen3/src/Eigen/src/SVD/JacobiSVD.h third_party/eigen3/src/Eigen/src/SVD/SVDBase.h third_party/eigen3/src/Eigen/src/SVD/UpperBidiagonalization.h third_party/eigen3/src/Eigen/src/SparseCholesky/SimplicialCholesky.h third_party/eigen3/src/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h third_party/eigen3/src/Eigen/src/SparseCore/AmbiVector.h third_party/eigen3/src/Eigen/src/SparseCore/CompressedStorage.h third_party/eigen3/src/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h third_party/eigen3/src/Eigen/src/SparseCore/SparseAssign.h third_party/eigen3/src/Eigen/src/SparseCore/SparseBlock.h third_party/eigen3/src/Eigen/src/SparseCore/SparseColEtree.h third_party/eigen3/src/Eigen/src/SparseCore/SparseCompressedBase.h third_party/eigen3/src/Eigen/src/SparseCore/SparseCwiseBinaryOp.h third_party/eigen3/src/Eigen/src/SparseCore/SparseCwiseUnaryOp.h third_party/eigen3/src/Eigen/src/SparseCore/SparseDenseProduct.h third_party/eigen3/src/Eigen/src/SparseCore/SparseDiagonalProduct.h third_party/eigen3/src/Eigen/src/SparseCore/SparseDot.h third_party/eigen3/src/Eigen/src/SparseCore/SparseFuzzy.h third_party/eigen3/src/Eigen/src/SparseCore/SparseMap.h third_party/eigen3/src/Eigen/src/SparseCore/SparseMatrix.h third_party/eigen3/src/Eigen/src/SparseCore/SparseMatrixBase.h third_party/eigen3/src/Eigen/src/SparseCore/SparsePermutation.h third_party/eigen3/src/Eigen/src/SparseCore/SparseProduct.h third_party/eigen3/src/Eigen/src/SparseCore/SparseRedux.h third_party/eigen3/src/Eigen/src/SparseCore/SparseRef.h third_party/eigen3/src/Eigen/src/SparseCore/SparseSelfAdjointView.h third_party/eigen3/src/Eigen/src/SparseCore/SparseSolverBase.h third_party/eigen3/src/Eigen/src/SparseCore/SparseSparseProductWithPruning.h third_party/eigen3/src/Eigen/src/SparseCore/SparseTranspose.h third_party/eigen3/src/Eigen/src/SparseCore/SparseTriangularView.h third_party/eigen3/src/Eigen/src/SparseCore/SparseUtil.h third_party/eigen3/src/Eigen/src/SparseCore/SparseVector.h third_party/eigen3/src/Eigen/src/SparseCore/SparseView.h third_party/eigen3/src/Eigen/src/SparseCore/TriangularSolver.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLUImpl.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_Memory.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_Structs.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_Utils.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_column_bmod.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_column_dfs.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_kernel_bmod.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_panel_bmod.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_panel_dfs.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_pivotL.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_pruneL.h third_party/eigen3/src/Eigen/src/SparseLU/SparseLU_relax_snode.h third_party/eigen3/src/Eigen/src/SparseQR/SparseQR.h third_party/eigen3/src/Eigen/src/StlSupport/StdDeque.h third_party/eigen3/src/Eigen/src/StlSupport/StdList.h third_party/eigen3/src/Eigen/src/StlSupport/StdVector.h third_party/eigen3/src/Eigen/src/StlSupport/details.h third_party/eigen3/src/Eigen/src/SuperLUSupport/SuperLUSupport.h third_party/eigen3/src/Eigen/src/ThreadPool/Barrier.h third_party/eigen3/src/Eigen/src/ThreadPool/CoreThreadPoolDevice.h third_party/eigen3/src/Eigen/src/ThreadPool/EventCount.h third_party/eigen3/src/Eigen/src/ThreadPool/ForkJoin.h third_party/eigen3/src/Eigen/src/ThreadPool/NonBlockingThreadPool.h third_party/eigen3/src/Eigen/src/ThreadPool/RunQueue.h third_party/eigen3/src/Eigen/src/ThreadPool/ThreadCancel.h third_party/eigen3/src/Eigen/src/ThreadPool/ThreadEnvironment.h third_party/eigen3/src/Eigen/src/ThreadPool/ThreadLocal.h third_party/eigen3/src/Eigen/src/ThreadPool/ThreadPoolInterface.h third_party/eigen3/src/Eigen/src/ThreadPool/ThreadYield.h third_party/eigen3/src/Eigen/src/UmfPackSupport/UmfPackSupport.h third_party/eigen3/src/Eigen/src/misc/Image.h third_party/eigen3/src/Eigen/src/misc/Kernel.h third_party/eigen3/src/Eigen/src/misc/lapacke_helpers.h third_party/eigen3/src/bench/BenchTimer.h third_party/eigen3/src/bench/analyze-blocking-sizes.cpp third_party/eigen3/src/bench/benchFFT.cpp third_party/eigen3/src/bench/bench_move_semantics.cpp third_party/eigen3/src/bench/benchmark-blocking-sizes.cpp third_party/eigen3/src/bench/benchmark_aocl.cpp third_party/eigen3/src/bench/btl/libs/tensors/main_linear.cpp third_party/eigen3/src/bench/btl/libs/tensors/main_matmat.cpp third_party/eigen3/src/bench/btl/libs/tensors/main_vecmat.cpp third_party/eigen3/src/bench/btl/libs/tensors/tensor_interface.hh third_party/eigen3/src/bench/eig33.cpp third_party/eigen3/src/bench/spbench/spbenchsolver.h third_party/eigen3/src/bench/spbench/spbenchstyle.h third_party/eigen3/src/bench/tensors/tensor_contract_sycl_bench.cc third_party/eigen3/src/blas/BandTriangularSolver.h third_party/eigen3/src/blas/GeneralRank1Update.h third_party/eigen3/src/blas/PackedSelfadjointProduct.h third_party/eigen3/src/blas/PackedTriangularMatrixVector.h third_party/eigen3/src/blas/PackedTriangularSolverVector.h third_party/eigen3/src/blas/Rank2Update.h third_party/eigen3/src/blas/common.h third_party/eigen3/src/blas/complex_double.cpp third_party/eigen3/src/blas/complex_single.cpp third_party/eigen3/src/blas/double.cpp third_party/eigen3/src/blas/level1_cplx_impl.h third_party/eigen3/src/blas/level1_impl.h third_party/eigen3/src/blas/level1_real_impl.h third_party/eigen3/src/blas/level2_cplx_impl.h third_party/eigen3/src/blas/level2_impl.h third_party/eigen3/src/blas/level2_real_impl.h third_party/eigen3/src/blas/level3_impl.h third_party/eigen3/src/blas/single.cpp third_party/eigen3/src/debug/gdb/printers.py third_party/eigen3/src/debug/lldb/eigenlldb.py third_party/eigen3/src/demos/mandelbrot/mandelbrot.cpp third_party/eigen3/src/demos/mandelbrot/mandelbrot.h third_party/eigen3/src/demos/mix_eigen_and_c/binary_library.cpp third_party/eigen3/src/demos/mix_eigen_and_c/binary_library.h third_party/eigen3/src/demos/mix_eigen_and_c/example.c third_party/eigen3/src/demos/opengl/camera.cpp third_party/eigen3/src/demos/opengl/camera.h third_party/eigen3/src/demos/opengl/gpuhelper.cpp third_party/eigen3/src/demos/opengl/gpuhelper.h third_party/eigen3/src/demos/opengl/icosphere.cpp third_party/eigen3/src/demos/opengl/icosphere.h third_party/eigen3/src/demos/opengl/quaternion_demo.cpp third_party/eigen3/src/demos/opengl/quaternion_demo.h third_party/eigen3/src/demos/opengl/trackball.cpp third_party/eigen3/src/demos/opengl/trackball.h third_party/eigen3/src/lapack/complex_double.cpp third_party/eigen3/src/lapack/complex_single.cpp third_party/eigen3/src/lapack/double.cpp third_party/eigen3/src/lapack/dsecnd_INT_CPU_TIME.cpp third_party/eigen3/src/lapack/lapack_common.h third_party/eigen3/src/lapack/second_INT_CPU_TIME.cpp third_party/eigen3/src/lapack/single.cpp third_party/eigen3/src/test/AnnoyingScalar.h third_party/eigen3/src/test/CustomComplex.h third_party/eigen3/src/test/MovableScalar.h third_party/eigen3/src/test/adjoint.cpp third_party/eigen3/src/test/array_cwise.cpp third_party/eigen3/src/test/array_for_matrix.cpp third_party/eigen3/src/test/array_of_string.cpp third_party/eigen3/src/test/array_replicate.cpp third_party/eigen3/src/test/array_reverse.cpp third_party/eigen3/src/test/assignment_threaded.cpp third_party/eigen3/src/test/bandmatrix.cpp third_party/eigen3/src/test/basicstuff.cpp third_party/eigen3/src/test/bdcsvd.cpp third_party/eigen3/src/test/bfloat16_float.cpp third_party/eigen3/src/test/bicgstab.cpp third_party/eigen3/src/test/blasutil.cpp third_party/eigen3/src/test/block.cpp third_party/eigen3/src/test/boostmultiprec.cpp third_party/eigen3/src/test/cholesky.cpp third_party/eigen3/src/test/cholmod_support.cpp third_party/eigen3/src/test/clz.cpp third_party/eigen3/src/test/commainitializer.cpp third_party/eigen3/src/test/complex_qz.cpp third_party/eigen3/src/test/conjugate_gradient.cpp third_party/eigen3/src/test/conservative_resize.cpp third_party/eigen3/src/test/constexpr.cpp third_party/eigen3/src/test/constructor.cpp third_party/eigen3/src/test/corners.cpp third_party/eigen3/src/test/denseLM.cpp third_party/eigen3/src/test/dense_storage.cpp third_party/eigen3/src/test/determinant.cpp third_party/eigen3/src/test/diagonal.cpp third_party/eigen3/src/test/diagonal_matrix_variadic_ctor.cpp third_party/eigen3/src/test/diagonalmatrices.cpp third_party/eigen3/src/test/dontalign.cpp third_party/eigen3/src/test/dynalloc.cpp third_party/eigen3/src/test/eigen2support.cpp third_party/eigen3/src/test/eigensolver_complex.cpp third_party/eigen3/src/test/eigensolver_generalized_real.cpp third_party/eigen3/src/test/eigensolver_generic.cpp third_party/eigen3/src/test/eigensolver_selfadjoint.cpp third_party/eigen3/src/test/exceptions.cpp third_party/eigen3/src/test/fastmath.cpp third_party/eigen3/src/test/first_aligned.cpp third_party/eigen3/src/test/float_conversion.cpp third_party/eigen3/src/test/geo_alignedbox.cpp third_party/eigen3/src/test/geo_eulerangles.cpp third_party/eigen3/src/test/geo_homogeneous.cpp third_party/eigen3/src/test/geo_hyperplane.cpp third_party/eigen3/src/test/geo_orthomethods.cpp third_party/eigen3/src/test/geo_parametrizedline.cpp third_party/eigen3/src/test/geo_quaternion.cpp third_party/eigen3/src/test/geo_transformations.cpp third_party/eigen3/src/test/half_float.cpp third_party/eigen3/src/test/hessenberg.cpp third_party/eigen3/src/test/householder.cpp third_party/eigen3/src/test/incomplete_LUT.cpp third_party/eigen3/src/test/incomplete_cholesky.cpp third_party/eigen3/src/test/indexed_view.cpp third_party/eigen3/src/test/initializer_list_construction.cpp third_party/eigen3/src/test/inplace_decomposition.cpp third_party/eigen3/src/test/integer_types.cpp third_party/eigen3/src/test/inverse.cpp third_party/eigen3/src/test/io.cpp third_party/eigen3/src/test/is_same_dense.cpp third_party/eigen3/src/test/jacobi.cpp third_party/eigen3/src/test/jacobisvd.cpp third_party/eigen3/src/test/klu_support.cpp third_party/eigen3/src/test/linearstructure.cpp third_party/eigen3/src/test/lscg.cpp third_party/eigen3/src/test/lu.cpp third_party/eigen3/src/test/main.h third_party/eigen3/src/test/mapped_matrix.cpp third_party/eigen3/src/test/mapstaticmethods.cpp third_party/eigen3/src/test/mapstride.cpp third_party/eigen3/src/test/matrix_cwise.cpp third_party/eigen3/src/test/meta.cpp third_party/eigen3/src/test/metis_support.cpp third_party/eigen3/src/test/miscmatrices.cpp third_party/eigen3/src/test/mixingtypes.cpp third_party/eigen3/src/test/nestbyvalue.cpp third_party/eigen3/src/test/nesting_ops.cpp third_party/eigen3/src/test/nomalloc.cpp third_party/eigen3/src/test/nullary.cpp third_party/eigen3/src/test/num_dimensions.cpp third_party/eigen3/src/test/numext.cpp third_party/eigen3/src/test/packet_segment.cpp third_party/eigen3/src/test/packetmath.cpp third_party/eigen3/src/test/packetmath_test_shared.h third_party/eigen3/src/test/pastix_support.cpp third_party/eigen3/src/test/permutationmatrices.cpp third_party/eigen3/src/test/prec_inverse_4x4.cpp third_party/eigen3/src/test/product.h third_party/eigen3/src/test/product_extra.cpp third_party/eigen3/src/test/product_large.cpp third_party/eigen3/src/test/product_mmtr.cpp third_party/eigen3/src/test/product_notemporary.cpp third_party/eigen3/src/test/product_selfadjoint.cpp third_party/eigen3/src/test/product_small.cpp third_party/eigen3/src/test/product_symm.cpp third_party/eigen3/src/test/product_syrk.cpp third_party/eigen3/src/test/product_threaded.cpp third_party/eigen3/src/test/product_trmm.cpp third_party/eigen3/src/test/product_trmv.cpp third_party/eigen3/src/test/product_trsolve.cpp third_party/eigen3/src/test/qr.cpp third_party/eigen3/src/test/qr_colpivoting.cpp third_party/eigen3/src/test/qr_fullpivoting.cpp third_party/eigen3/src/test/qtvector.cpp third_party/eigen3/src/test/rand.cpp third_party/eigen3/src/test/random_matrix.cpp third_party/eigen3/src/test/random_matrix_helper.h third_party/eigen3/src/test/random_without_cast_overflow.h third_party/eigen3/src/test/real_qz.cpp third_party/eigen3/src/test/realview.cpp third_party/eigen3/src/test/redux.cpp third_party/eigen3/src/test/ref.cpp third_party/eigen3/src/test/reshape.cpp third_party/eigen3/src/test/resize.cpp third_party/eigen3/src/test/rvalue_types.cpp third_party/eigen3/src/test/schur_complex.cpp third_party/eigen3/src/test/schur_real.cpp third_party/eigen3/src/test/selfadjoint.cpp third_party/eigen3/src/test/serializer.cpp third_party/eigen3/src/test/simplicial_cholesky.cpp third_party/eigen3/src/test/sizeof.cpp third_party/eigen3/src/test/sizeoverflow.cpp third_party/eigen3/src/test/skew_symmetric_matrix3.cpp third_party/eigen3/src/test/smallvectors.cpp third_party/eigen3/src/test/sparse.h third_party/eigen3/src/test/sparseLM.cpp third_party/eigen3/src/test/sparse_basic.cpp third_party/eigen3/src/test/sparse_block.cpp third_party/eigen3/src/test/sparse_permutations.cpp third_party/eigen3/src/test/sparse_product.cpp third_party/eigen3/src/test/sparse_ref.cpp third_party/eigen3/src/test/sparse_solver.h third_party/eigen3/src/test/sparse_solvers.cpp third_party/eigen3/src/test/sparse_vector.cpp third_party/eigen3/src/test/sparselu.cpp third_party/eigen3/src/test/special_numbers.cpp third_party/eigen3/src/test/stable_norm.cpp third_party/eigen3/src/test/stddeque.cpp third_party/eigen3/src/test/stddeque_overload.cpp third_party/eigen3/src/test/stdlist.cpp third_party/eigen3/src/test/stdlist_overload.cpp third_party/eigen3/src/test/stdvector.cpp third_party/eigen3/src/test/stdvector_overload.cpp third_party/eigen3/src/test/stl_iterators.cpp third_party/eigen3/src/test/superlu_support.cpp third_party/eigen3/src/test/svd_common.h third_party/eigen3/src/test/svd_fill.h third_party/eigen3/src/test/swap.cpp third_party/eigen3/src/test/sycl_basic.cpp third_party/eigen3/src/test/symbolic_index.cpp third_party/eigen3/src/test/threads_eventcount.cpp third_party/eigen3/src/test/threads_fork_join.cpp third_party/eigen3/src/test/threads_non_blocking_thread_pool.cpp third_party/eigen3/src/test/threads_runqueue.cpp third_party/eigen3/src/test/triangular.cpp third_party/eigen3/src/test/tuple_test.cpp third_party/eigen3/src/test/type_alias.cpp third_party/eigen3/src/test/umeyama.cpp third_party/eigen3/src/test/umfpack_support.cpp third_party/eigen3/src/test/unalignedcount.cpp third_party/eigen3/src/test/unaryview.cpp third_party/eigen3/src/test/upperbidiagonalization.cpp third_party/eigen3/src/test/vectorization_logic.cpp third_party/eigen3/src/test/vectorwiseop.cpp third_party/eigen3/src/test/visitor.cpp third_party/eigen3/src/test/zerosized.cpp third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/Tensor.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorRoll.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/util/CXX11Meta.h third_party/eigen3/src/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h third_party/eigen3/src/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h third_party/eigen3/src/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h third_party/eigen3/src/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h third_party/eigen3/src/unsupported/Eigen/src/AutoDiff/CoherentPadOp.h third_party/eigen3/src/unsupported/Eigen/src/BVH/BVAlgorithms.h third_party/eigen3/src/unsupported/Eigen/src/BVH/KdBVH.h third_party/eigen3/src/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h third_party/eigen3/src/unsupported/Eigen/src/EulerAngles/EulerAngles.h third_party/eigen3/src/unsupported/Eigen/src/EulerAngles/EulerSystem.h third_party/eigen3/src/unsupported/Eigen/src/FFT/duccfft_impl.h third_party/eigen3/src/unsupported/Eigen/src/FFT/fftw_impl.h third_party/eigen3/src/unsupported/Eigen/src/FFT/imklfft_impl.h third_party/eigen3/src/unsupported/Eigen/src/FFT/kissfft_impl.h third_party/eigen3/src/unsupported/Eigen/src/FFT/pocketfft_impl.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/BiCGSTABL.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/DGMRES.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/GMRES.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/IDRS.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/IDRSTABL.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/MINRES.h third_party/eigen3/src/unsupported/Eigen/src/IterativeSolvers/Scaling.h third_party/eigen3/src/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h third_party/eigen3/src/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h third_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h third_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h third_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h third_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h third_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h third_party/eigen3/src/unsupported/Eigen/src/MatrixFunctions/StemFunction.h third_party/eigen3/src/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h third_party/eigen3/src/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h third_party/eigen3/src/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h third_party/eigen3/src/unsupported/Eigen/src/Polynomials/Companion.h third_party/eigen3/src/unsupported/Eigen/src/Polynomials/PolynomialSolver.h third_party/eigen3/src/unsupported/Eigen/src/Polynomials/PolynomialUtils.h third_party/eigen3/src/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h third_party/eigen3/src/unsupported/Eigen/src/SparseExtra/MarketIO.h third_party/eigen3/src/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h third_party/eigen3/src/unsupported/Eigen/src/SparseExtra/RandomSetter.h third_party/eigen3/src/unsupported/Eigen/src/SparseExtra/SparseInverse.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h third_party/eigen3/src/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h third_party/eigen3/src/unsupported/Eigen/src/Splines/Spline.h third_party/eigen3/src/unsupported/Eigen/src/Splines/SplineFitting.h third_party/eigen3/src/unsupported/Eigen/src/Splines/SplineFwd.h third_party/eigen3/src/unsupported/bench/bench_svd.cpp third_party/eigen3/src/unsupported/test/BVH.cpp third_party/eigen3/src/unsupported/test/EulerAngles.cpp third_party/eigen3/src/unsupported/test/NNLS.cpp third_party/eigen3/src/unsupported/test/alignedvector3.cpp third_party/eigen3/src/unsupported/test/autodiff.cpp third_party/eigen3/src/unsupported/test/autodiff_scalar.cpp third_party/eigen3/src/unsupported/test/bessel_functions.cpp third_party/eigen3/src/unsupported/test/bicgstabl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_argmax.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_argmax_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_assign.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_block_access.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_block_eval.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_block_io.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_broadcast_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_broadcasting.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_builtins_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_casts.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_chipping.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_chipping_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_comparisons.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_concatenation.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_concatenation_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_const.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_contract_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_contraction.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_convolution.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_convolution_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_custom_index.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_custom_op.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_custom_op_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_device_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_dimension.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_empty.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_executor.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_expr.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_fft.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_fixed_size.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_forced_eval.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_forced_eval_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_generator.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_generator_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_ifft.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_image_op_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_image_patch.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_image_patch_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_index_list.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_inflation.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_inflation_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_intdiv.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_io.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_layout_swap.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_layout_swap_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_lvalue.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_map.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_math.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_math_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_mixed_indices.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_morphing.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_morphing_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_move.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_notification.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_of_complex.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_of_const_values.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_of_float16_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_of_strings.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_padding.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_padding_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_patch.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_patch_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_random.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_random_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_reduction.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_reduction_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_ref.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_reverse.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_reverse_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_roll.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_roundings.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_scan.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_scan_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_shuffling.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_shuffling_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_simple.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_striding.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_striding_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_sycl.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_symmetry.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_thread_local.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_thread_pool.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_trace.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_uint128.cpp third_party/eigen3/src/unsupported/test/cxx11_tensor_volume_patch_sycl.cpp third_party/eigen3/src/unsupported/test/dgmres.cpp third_party/eigen3/src/unsupported/test/fft_test_shared.h third_party/eigen3/src/unsupported/test/forward_adolc.cpp third_party/eigen3/src/unsupported/test/gmres.cpp third_party/eigen3/src/unsupported/test/idrs.cpp third_party/eigen3/src/unsupported/test/idrstabl.cpp third_party/eigen3/src/unsupported/test/kronecker_product.cpp third_party/eigen3/src/unsupported/test/levenberg_marquardt.cpp third_party/eigen3/src/unsupported/test/matrix_exponential.cpp third_party/eigen3/src/unsupported/test/matrix_function.cpp third_party/eigen3/src/unsupported/test/matrix_functions.h third_party/eigen3/src/unsupported/test/matrix_power.cpp third_party/eigen3/src/unsupported/test/matrix_square_root.cpp third_party/eigen3/src/unsupported/test/minres.cpp third_party/eigen3/src/unsupported/test/openglsupport.cpp third_party/eigen3/src/unsupported/test/polynomialsolver.cpp third_party/eigen3/src/unsupported/test/polynomialutils.cpp third_party/eigen3/src/unsupported/test/sparse_extra.cpp third_party/eigen3/src/unsupported/test/special_functions.cpp third_party/eigen3/src/unsupported/test/special_packetmath.cpp third_party/eigen3/src/unsupported/test/splines.cpp third_party/enterprise_companion/fetch_lib.py third_party/expat/src/expat/CMakeLists.txt third_party/expat/src/expat/fuzz/xml_lpm_fuzzer.cpp third_party/expat/src/expat/lib/expat_external.h third_party/expat/src/expat/lib/internal.h third_party/expat/src/expat/lib/xmlparse.c third_party/expat/src/expat/lib/xmltok.c third_party/expat/src/expat/lib/xmltok_impl.c third_party/expat/src/expat/tests/acc_tests.c third_party/expat/src/expat/xmlwf/readfilemap.c third_party/expat/src/expat/xmlwf/win32filemap.c third_party/expat/src/expat/xmlwf/xmlfile.c third_party/expat/src/expat/xmlwf/xmlwf.c third_party/farmhash/src/dev/builder.cc third_party/farmhash/src/dev/farmhash.h third_party/farmhash/src/src/farmhash.h third_party/federated_compute/src/fcp/artifact_building/tensor_utils.py third_party/federated_compute/src/fcp/base/monitoring.h third_party/federated_compute/src/fcp/client/attestation/log_attestation_records.cc third_party/federated_compute/src/fcp/client/attestation/test_values.cc third_party/federated_compute/src/fcp/client/fl_runner_test.cc third_party/federated_compute/src/fcp/client/http/http_client.h third_party/federated_compute/src/fcp/client/http/protocol_request_helper.cc third_party/federated_compute/src/fcp/confidentialcompute/composing_tee_executor_test.cc third_party/federated_compute/src/fcp/confidentialcompute/tee_executor_value_test.cc third_party/federated_compute/src/fcp/demo/http_actions.py third_party/federated_compute/src/fcp/tensorflow/example_selector_fuser_test.py third_party/federated_compute/src/fcp/tracing/tools/tracing_traits_generator.cc third_party/ffmpeg/chromium/config/Chrome/android/arm-neon/config.h third_party/ffmpeg/chromium/config/Chrome/android/arm64/config.h third_party/ffmpeg/chromium/config/Chrome/android/ia32/config.h third_party/ffmpeg/chromium/config/Chrome/android/x64/config.h third_party/ffmpeg/chromium/config/Chrome/ios/arm64/config.h third_party/ffmpeg/chromium/config/Chrome/ios/x64/config.h third_party/ffmpeg/chromium/config/Chrome/linux-noasm/x64/config.h third_party/ffmpeg/chromium/config/Chrome/linux/arm-neon/config.h third_party/ffmpeg/chromium/config/Chrome/linux/arm/config.h third_party/ffmpeg/chromium/config/Chrome/linux/arm64/config.h third_party/ffmpeg/chromium/config/Chrome/linux/ia32/config.h third_party/ffmpeg/chromium/config/Chrome/linux/riscv64/config.h third_party/ffmpeg/chromium/config/Chrome/linux/x64/config.h third_party/ffmpeg/chromium/config/Chrome/mac/arm64/config.h third_party/ffmpeg/chromium/config/Chrome/mac/x64/config.h third_party/ffmpeg/chromium/config/Chrome/win/arm64/config.h third_party/ffmpeg/chromium/config/Chrome/win/ia32/config.h third_party/ffmpeg/chromium/config/Chrome/win/x64/config.h third_party/ffmpeg/chromium/config/Chromium/android/arm-neon/config.h third_party/ffmpeg/chromium/config/Chromium/android/arm64/config.h third_party/ffmpeg/chromium/config/Chromium/android/ia32/config.h third_party/ffmpeg/chromium/config/Chromium/android/x64/config.h third_party/ffmpeg/chromium/config/Chromium/ios/arm64/config.h third_party/ffmpeg/chromium/config/Chromium/ios/x64/config.h third_party/ffmpeg/chromium/config/Chromium/linux-noasm/x64/config.h third_party/ffmpeg/chromium/config/Chromium/linux/arm-neon/config.h third_party/ffmpeg/chromium/config/Chromium/linux/arm/config.h third_party/ffmpeg/chromium/config/Chromium/linux/arm64/config.h third_party/ffmpeg/chromium/config/Chromium/linux/ia32/config.h third_party/ffmpeg/chromium/config/Chromium/linux/riscv64/config.h third_party/ffmpeg/chromium/config/Chromium/linux/x64/config.h third_party/ffmpeg/chromium/config/Chromium/mac/arm64/config.h third_party/ffmpeg/chromium/config/Chromium/mac/x64/config.h third_party/ffmpeg/chromium/config/Chromium/win/arm64/config.h third_party/ffmpeg/chromium/config/Chromium/win/ia32/config.h third_party/ffmpeg/chromium/config/Chromium/win/x64/config.h third_party/ffmpeg/compat/android/binder.c third_party/ffmpeg/compat/msvcrt/snprintf.c third_party/ffmpeg/compat/msvcrt/snprintf.h third_party/ffmpeg/compat/msvcrt/strtod.h third_party/ffmpeg/compat/strtod.c third_party/ffmpeg/compat/w32pthreads.h third_party/ffmpeg/doc/examples/transcode_aac.c third_party/ffmpeg/doc/infra.txt third_party/ffmpeg/doc/style.min.css third_party/ffmpeg/ffmpeg_options.gni third_party/ffmpeg/libavcodec/aac/aacdec.c third_party/ffmpeg/libavcodec/aac/aacdec_dsp_template.c third_party/ffmpeg/libavcodec/aac/aacdec_fixed.c third_party/ffmpeg/libavcodec/aac/aacdec_fixed_coupling.h third_party/ffmpeg/libavcodec/aac/aacdec_fixed_dequant.h third_party/ffmpeg/libavcodec/aac/aacdec_fixed_prediction.h third_party/ffmpeg/libavcodec/aac/aacdec_float.c third_party/ffmpeg/libavcodec/aac/aacdec_float_coupling.h third_party/ffmpeg/libavcodec/aac/aacdec_float_prediction.h third_party/ffmpeg/libavcodec/aac/aacdec_latm.h third_party/ffmpeg/libavcodec/aac/aacdec_proc_template.c third_party/ffmpeg/libavcodec/aacps.c third_party/ffmpeg/libavcodec/aacps.h third_party/ffmpeg/libavcodec/aacps_common.c third_party/ffmpeg/libavcodec/aacps_fixed.c third_party/ffmpeg/libavcodec/aacps_fixed_tablegen.c third_party/ffmpeg/libavcodec/aacps_fixed_tablegen.h third_party/ffmpeg/libavcodec/aacps_float.c third_party/ffmpeg/libavcodec/aacps_tablegen.c third_party/ffmpeg/libavcodec/aacps_tablegen.h third_party/ffmpeg/libavcodec/aacps_tablegen_template.c third_party/ffmpeg/libavcodec/aacpsdata.c third_party/ffmpeg/libavcodec/aacpsdsp_fixed.c third_party/ffmpeg/libavcodec/aacpsdsp_float.c third_party/ffmpeg/libavcodec/aacpsdsp_template.c third_party/ffmpeg/libavcodec/aacsbr.c third_party/ffmpeg/libavcodec/aacsbr.h third_party/ffmpeg/libavcodec/aacsbr_fixed.c third_party/ffmpeg/libavcodec/aacsbr_template.c third_party/ffmpeg/libavcodec/aarch64/idctdsp_init_aarch64.c third_party/ffmpeg/libavcodec/ac3dec.c third_party/ffmpeg/libavcodec/ac3dec.h third_party/ffmpeg/libavcodec/ac3dec_data.c third_party/ffmpeg/libavcodec/ac3dec_data.h third_party/ffmpeg/libavcodec/ac3dec_float.c third_party/ffmpeg/libavcodec/ac3enc.c third_party/ffmpeg/libavcodec/ac3enc.h third_party/ffmpeg/libavcodec/ac3enc_fixed.c third_party/ffmpeg/libavcodec/ac3enc_float.c third_party/ffmpeg/libavcodec/ac3enc_template.c third_party/ffmpeg/libavcodec/adpcm.c third_party/ffmpeg/libavcodec/aliaspixdec.c third_party/ffmpeg/libavcodec/aliaspixenc.c third_party/ffmpeg/libavcodec/atrac9dec.c third_party/ffmpeg/libavcodec/atrac9tab.h third_party/ffmpeg/libavcodec/av1_parser.c third_party/ffmpeg/libavcodec/avs2_parser.c third_party/ffmpeg/libavcodec/avs3.h third_party/ffmpeg/libavcodec/avs3_parser.c third_party/ffmpeg/libavcodec/bsf/aac_adtstoasc.c third_party/ffmpeg/libavcodec/bsf/av1_frame_merge.c third_party/ffmpeg/libavcodec/bsf/av1_frame_split.c third_party/ffmpeg/libavcodec/bsf/chomp.c third_party/ffmpeg/libavcodec/bsf/evc_frame_merge.c third_party/ffmpeg/libavcodec/bsf/mpeg4_unpack_bframes.c third_party/ffmpeg/libavcodec/bsf/pgs_frame_merge.c third_party/ffmpeg/libavcodec/bsf/vp9_superframe.c third_party/ffmpeg/libavcodec/bytestream.h third_party/ffmpeg/libavcodec/c93.c third_party/ffmpeg/libavcodec/canopus.c third_party/ffmpeg/libavcodec/canopus.h third_party/ffmpeg/libavcodec/cook_parser.c third_party/ffmpeg/libavcodec/cpia.c third_party/ffmpeg/libavcodec/d3d12va_decode.h third_party/ffmpeg/libavcodec/d3d12va_encode.h third_party/ffmpeg/libavcodec/dct.h third_party/ffmpeg/libavcodec/dds.c third_party/ffmpeg/libavcodec/dirac.c third_party/ffmpeg/libavcodec/dirac_dwt_template.c third_party/ffmpeg/libavcodec/dirac_parser.c third_party/ffmpeg/libavcodec/diracdec.c third_party/ffmpeg/libavcodec/diractab.c third_party/ffmpeg/libavcodec/diractab.h third_party/ffmpeg/libavcodec/dxv.c third_party/ffmpeg/libavcodec/eac3_data.c third_party/ffmpeg/libavcodec/eac3_data.h third_party/ffmpeg/libavcodec/eac3dec.c third_party/ffmpeg/libavcodec/eac3enc.c third_party/ffmpeg/libavcodec/eac3enc.h third_party/ffmpeg/libavcodec/elbg.c third_party/ffmpeg/libavcodec/elbg.h third_party/ffmpeg/libavcodec/escape124.c third_party/ffmpeg/libavcodec/escape130.c third_party/ffmpeg/libavcodec/exif.c third_party/ffmpeg/libavcodec/exif.h third_party/ffmpeg/libavcodec/exif_internal.h third_party/ffmpeg/libavcodec/flacenc.c third_party/ffmpeg/libavcodec/g723_1enc.c third_party/ffmpeg/libavcodec/hap.c third_party/ffmpeg/libavcodec/hap.h third_party/ffmpeg/libavcodec/hapdec.c third_party/ffmpeg/libavcodec/hapenc.c third_party/ffmpeg/libavcodec/iff.c third_party/ffmpeg/libavcodec/j2kenc.c third_party/ffmpeg/libavcodec/jpeg2000.c third_party/ffmpeg/libavcodec/jpeg2000.h third_party/ffmpeg/libavcodec/jpeg2000dec.c third_party/ffmpeg/libavcodec/jpeg2000dec.h third_party/ffmpeg/libavcodec/jpeg2000dsp.c third_party/ffmpeg/libavcodec/jpeg2000dsp.h third_party/ffmpeg/libavcodec/jpeg2000dwt.c third_party/ffmpeg/libavcodec/jpeg2000htdec.c third_party/ffmpeg/libavcodec/jpeg2000htdec.h third_party/ffmpeg/libavcodec/jpegxl.h third_party/ffmpeg/libavcodec/jpegxl_parse.c third_party/ffmpeg/libavcodec/jpegxl_parse.h third_party/ffmpeg/libavcodec/jpegxl_parser.c third_party/ffmpeg/libavcodec/lagarith.c third_party/ffmpeg/libavcodec/lagarithrac.c third_party/ffmpeg/libavcodec/lagarithrac.h third_party/ffmpeg/libavcodec/libdavs2.c third_party/ffmpeg/libavcodec/libjxl.c third_party/ffmpeg/libavcodec/libjxl.h third_party/ffmpeg/libavcodec/libjxldec.c third_party/ffmpeg/libavcodec/libjxlenc.c third_party/ffmpeg/libavcodec/liblc3dec.c third_party/ffmpeg/libavcodec/liblc3enc.c third_party/ffmpeg/libavcodec/librsvgdec.c third_party/ffmpeg/libavcodec/libtheoraenc.c third_party/ffmpeg/libavcodec/libuavs3d.c third_party/ffmpeg/libavcodec/libwebpenc.c third_party/ffmpeg/libavcodec/libwebpenc_common.c third_party/ffmpeg/libavcodec/libwebpenc_common.h third_party/ffmpeg/libavcodec/libxavs.c third_party/ffmpeg/libavcodec/libxavs2.c third_party/ffmpeg/libavcodec/lpc.c third_party/ffmpeg/libavcodec/lpc.h third_party/ffmpeg/libavcodec/lpc_functions.h third_party/ffmpeg/libavcodec/mediacodec.h third_party/ffmpeg/libavcodec/mediacodec_sw_buffer.c third_party/ffmpeg/libavcodec/mediacodec_wrapper.h third_party/ffmpeg/libavcodec/mediacodecdec_common.c third_party/ffmpeg/libavcodec/mfenc.c third_party/ffmpeg/libavcodec/mimic.c third_party/ffmpeg/libavcodec/mlz.c third_party/ffmpeg/libavcodec/mlz.h third_party/ffmpeg/libavcodec/mpeg4audio.c third_party/ffmpeg/libavcodec/mpeg4audio_sample_rates.c third_party/ffmpeg/libavcodec/mpeg4audio_sample_rates.h third_party/ffmpeg/libavcodec/mpegaudiodec_common_tablegen.c third_party/ffmpeg/libavcodec/mpegaudiodec_common_tablegen.h third_party/ffmpeg/libavcodec/nellymoser.c third_party/ffmpeg/libavcodec/nellymoser.h third_party/ffmpeg/libavcodec/nellymoserdec.c third_party/ffmpeg/libavcodec/opus/celt.h third_party/ffmpeg/libavcodec/opus/dec_celt.c third_party/ffmpeg/libavcodec/opus/enc.c third_party/ffmpeg/libavcodec/opus/enc.h third_party/ffmpeg/libavcodec/opus/enc_psy.c third_party/ffmpeg/libavcodec/opus/enc_psy.h third_party/ffmpeg/libavcodec/opus/enc_utils.h third_party/ffmpeg/libavcodec/opus/pvq.c third_party/ffmpeg/libavcodec/opus/pvq.h third_party/ffmpeg/libavcodec/opus/rc.c third_party/ffmpeg/libavcodec/opus/rc.h third_party/ffmpeg/libavcodec/opus/tab.c third_party/ffmpeg/libavcodec/opus/tab.h third_party/ffmpeg/libavcodec/roqvideoenc.c third_party/ffmpeg/libavcodec/rscc.c third_party/ffmpeg/libavcodec/s302m.c third_party/ffmpeg/libavcodec/s302menc.c third_party/ffmpeg/libavcodec/samidec.c third_party/ffmpeg/libavcodec/sbr.h third_party/ffmpeg/libavcodec/sbrdsp.c third_party/ffmpeg/libavcodec/sbrdsp_fixed.c third_party/ffmpeg/libavcodec/sbrdsp_template.c third_party/ffmpeg/libavcodec/screenpresso.c third_party/ffmpeg/libavcodec/sunrastenc.c third_party/ffmpeg/libavcodec/tdsc.c third_party/ffmpeg/libavcodec/tests/jpeg2000dwt.c third_party/ffmpeg/libavcodec/texturedsp.c third_party/ffmpeg/libavcodec/texturedsp.h third_party/ffmpeg/libavcodec/texturedsp_template.c third_party/ffmpeg/libavcodec/texturedspenc.c third_party/ffmpeg/libavcodec/vc2enc.c third_party/ffmpeg/libavcodec/vc2enc_dwt.c third_party/ffmpeg/libavcodec/vc2enc_dwt.h third_party/ffmpeg/libavcodec/videotoolboxenc.c third_party/ffmpeg/libavcodec/vp9_mc_template.c third_party/ffmpeg/libavcodec/vp9recon.c third_party/ffmpeg/libavcodec/vvc_parser.c third_party/ffmpeg/libavcodec/webp.c third_party/ffmpeg/libavcodec/wmavoice.c third_party/ffmpeg/libavcodec/wmavoice_data.h third_party/ffmpeg/libavcodec/x86/aacencdsp_init.c third_party/ffmpeg/libavcodec/x86/celt_pvq_init.c third_party/ffmpeg/libavcodec/x86/rv34dsp_init.c third_party/ffmpeg/libavcodec/x86/sbrdsp_init.c third_party/ffmpeg/libavcodec/x86/synth_filter_init.c third_party/ffmpeg/libavcodec/x86/vp3dsp_init.c third_party/ffmpeg/libavcodec/x86/vp6dsp_init.c third_party/ffmpeg/libavcodec/x86/vp8dsp_init.c third_party/ffmpeg/libavcodec/x86/w64xmmtest.c third_party/ffmpeg/libavcodec/yop.c third_party/ffmpeg/libavdevice/dshow.c third_party/ffmpeg/libavdevice/fbdev_common.c third_party/ffmpeg/libavdevice/fbdev_common.h third_party/ffmpeg/libavdevice/fbdev_dec.c third_party/ffmpeg/libavdevice/gdigrab.c third_party/ffmpeg/libavdevice/pulse_audio_enc.c third_party/ffmpeg/libavfilter/af_adecorrelate.c third_party/ffmpeg/libavfilter/af_amix.c third_party/ffmpeg/libavfilter/af_firequalizer.c third_party/ffmpeg/libavfilter/af_sofalizer.c third_party/ffmpeg/libavfilter/af_volume.c third_party/ffmpeg/libavfilter/audio.c third_party/ffmpeg/libavfilter/audio.h third_party/ffmpeg/libavfilter/avf_showcqt.c third_party/ffmpeg/libavfilter/avf_showcqt.h third_party/ffmpeg/libavfilter/bwdifdsp.c third_party/ffmpeg/libavfilter/colorspace.c third_party/ffmpeg/libavfilter/colorspace.h third_party/ffmpeg/libavfilter/colorspacedsp.c third_party/ffmpeg/libavfilter/colorspacedsp.h third_party/ffmpeg/libavfilter/colorspacedsp_template.c third_party/ffmpeg/libavfilter/colorspacedsp_yuv2yuv_template.c third_party/ffmpeg/libavfilter/f_ebur128.c third_party/ffmpeg/libavfilter/gradfun.h third_party/ffmpeg/libavfilter/motion_estimation.c third_party/ffmpeg/libavfilter/motion_estimation.h third_party/ffmpeg/libavfilter/psnr.c third_party/ffmpeg/libavfilter/psnr.h third_party/ffmpeg/libavfilter/ssim.h third_party/ffmpeg/libavfilter/vf_bwdif.c third_party/ffmpeg/libavfilter/vf_colorspace.c third_party/ffmpeg/libavfilter/vf_delogo.c third_party/ffmpeg/libavfilter/vf_detelecine.c third_party/ffmpeg/libavfilter/vf_eq.c third_party/ffmpeg/libavfilter/vf_eq.h third_party/ffmpeg/libavfilter/vf_fftfilt.c third_party/ffmpeg/libavfilter/vf_fspp.c third_party/ffmpeg/libavfilter/vf_fsppdsp.c third_party/ffmpeg/libavfilter/vf_fsppdsp.h third_party/ffmpeg/libavfilter/vf_gradfun.c third_party/ffmpeg/libavfilter/vf_lcevc.c third_party/ffmpeg/libavfilter/vf_libvmaf.c third_party/ffmpeg/libavfilter/vf_mestimate.c third_party/ffmpeg/libavfilter/vf_minterpolate.c third_party/ffmpeg/libavfilter/vf_overlay_cuda.c third_party/ffmpeg/libavfilter/vf_pp7.c third_party/ffmpeg/libavfilter/vf_pp7.h third_party/ffmpeg/libavfilter/vf_super2xsai.c third_party/ffmpeg/libavfilter/vf_tinterlace.c third_party/ffmpeg/libavfilter/vf_tonemap.c third_party/ffmpeg/libavfilter/vf_uspp.c third_party/ffmpeg/libavfilter/vf_vif.c third_party/ffmpeg/libavfilter/vf_vmafmotion.c third_party/ffmpeg/libavfilter/vf_xbr.c third_party/ffmpeg/libavfilter/vf_yadif.c third_party/ffmpeg/libavfilter/vmaf_motion.h third_party/ffmpeg/libavfilter/x86/avf_showcqt_init.c third_party/ffmpeg/libavfilter/x86/colorspacedsp_init.c third_party/ffmpeg/libavfilter/x86/vf_lut3d_init.c third_party/ffmpeg/libavfilter/x86/vf_psnr_init.c third_party/ffmpeg/libavfilter/x86/vf_ssim_init.c third_party/ffmpeg/libavfilter/yadif_common.c third_party/ffmpeg/libavformat/ac3dec.c third_party/ffmpeg/libavformat/apc.c third_party/ffmpeg/libavformat/apngdec.c third_party/ffmpeg/libavformat/asf.c third_party/ffmpeg/libavformat/async.c third_party/ffmpeg/libavformat/av1.c third_party/ffmpeg/libavformat/av1dec.c third_party/ffmpeg/libavformat/avs3dec.c third_party/ffmpeg/libavformat/c93.c third_party/ffmpeg/libavformat/dnxhddec.c third_party/ffmpeg/libavformat/ffjni.c third_party/ffmpeg/libavformat/ftp.c third_party/ffmpeg/libavformat/hevc.c third_party/ffmpeg/libavformat/hevc.h third_party/ffmpeg/libavformat/hevcdec.c third_party/ffmpeg/libavformat/iamf.c third_party/ffmpeg/libavformat/iamf.h third_party/ffmpeg/libavformat/iamf_parse.c third_party/ffmpeg/libavformat/iamf_parse.h third_party/ffmpeg/libavformat/iamf_reader.c third_party/ffmpeg/libavformat/iamf_reader.h third_party/ffmpeg/libavformat/iamf_writer.c third_party/ffmpeg/libavformat/iamf_writer.h third_party/ffmpeg/libavformat/iamfdec.c third_party/ffmpeg/libavformat/iff.c third_party/ffmpeg/libavformat/ivfdec.c third_party/ffmpeg/libavformat/jpegxl_parse.c third_party/ffmpeg/libavformat/lc3.c third_party/ffmpeg/libavformat/libsmbclient.c third_party/ffmpeg/libavformat/libssh.c third_party/ffmpeg/libavformat/matroskaenc.c third_party/ffmpeg/libavformat/mmsh.c third_party/ffmpeg/libavformat/mmst.c third_party/ffmpeg/libavformat/mpeg4audio_sample_rates.c third_party/ffmpeg/libavformat/prompeg.c third_party/ffmpeg/libavformat/riffdec.c third_party/ffmpeg/libavformat/rtpdec_vp8.c third_party/ffmpeg/libavformat/rtpdec_xiph.c third_party/ffmpeg/libavformat/samidec.c third_party/ffmpeg/libavformat/vpcc.c third_party/ffmpeg/libavformat/vpcc.h third_party/ffmpeg/libavformat/vvcdec.c third_party/ffmpeg/libavformat/webmdashenc.c third_party/ffmpeg/libavformat/wvenc.c third_party/ffmpeg/libavformat/xa.c third_party/ffmpeg/libavformat/xmv.c third_party/ffmpeg/libavformat/yop.c third_party/ffmpeg/libavutil/aarch64/neontest.h third_party/ffmpeg/libavutil/ambient_viewing_environment.c third_party/ffmpeg/libavutil/ambient_viewing_environment.h third_party/ffmpeg/libavutil/arm/neontest.h third_party/ffmpeg/libavutil/audio_fifo.c third_party/ffmpeg/libavutil/audio_fifo.h third_party/ffmpeg/libavutil/csp.c third_party/ffmpeg/libavutil/csp.h third_party/ffmpeg/libavutil/display.c third_party/ffmpeg/libavutil/display.h third_party/ffmpeg/libavutil/downmix_info.c third_party/ffmpeg/libavutil/downmix_info.h third_party/ffmpeg/libavutil/ffmath.h third_party/ffmpeg/libavutil/hdr_dynamic_metadata.c third_party/ffmpeg/libavutil/hdr_dynamic_metadata.h third_party/ffmpeg/libavutil/hdr_dynamic_vivid_metadata.c third_party/ffmpeg/libavutil/hdr_dynamic_vivid_metadata.h third_party/ffmpeg/libavutil/hwcontext_d3d12va.h third_party/ffmpeg/libavutil/mastering_display_metadata.c third_party/ffmpeg/libavutil/mastering_display_metadata.h third_party/ffmpeg/libavutil/random_seed.c third_party/ffmpeg/libavutil/random_seed.h third_party/ffmpeg/libavutil/ripemd.h third_party/ffmpeg/libavutil/sha512.h third_party/ffmpeg/libavutil/softfloat_ieee754.h third_party/ffmpeg/libavutil/spherical.c third_party/ffmpeg/libavutil/spherical.h third_party/ffmpeg/libavutil/stereo3d.c third_party/ffmpeg/libavutil/stereo3d.h third_party/ffmpeg/libavutil/tests/color_utils.c third_party/ffmpeg/libavutil/tests/display.c third_party/ffmpeg/libavutil/tests/random_seed.c third_party/ffmpeg/libavutil/tests/side_data_array.c third_party/ffmpeg/libavutil/timecode.c third_party/ffmpeg/libavutil/timecode.h third_party/ffmpeg/libavutil/timecode_internal.c third_party/ffmpeg/libavutil/timecode_internal.h third_party/ffmpeg/libavutil/tx.c third_party/ffmpeg/libavutil/x86/aes_init.c third_party/ffmpeg/libavutil/x86/crc.h third_party/ffmpeg/libavutil/x86/w64xmmtest.h third_party/ffmpeg/libswscale/arm/swscale_unscaled.c third_party/ffmpeg/libswscale/gamma.c third_party/ffmpeg/libswscale/hscale.c third_party/ffmpeg/libswscale/slice.c third_party/ffmpeg/libswscale/vscale.c third_party/ffmpeg/libswscale/x86/w64xmmtest.c third_party/ffmpeg/tests/checkasm/aes.c third_party/ffmpeg/tests/checkasm/hevc_sao.c third_party/ffmpeg/tests/checkasm/vf_colorspace.c third_party/ffmpeg/tests/checkasm/videodsp.c third_party/ffmpeg/tests/checkasm/vp9dsp.c third_party/ffmpeg/tests/checkasm/vvc_alf.c third_party/ffmpeg/tests/checkasm/vvc_sao.c third_party/ffmpeg/tools/target_dec_fuzzer.c third_party/flac/include/share/compat.h third_party/flatbuffers/src/android/app/src/main/cpp/CMakeLists.txt third_party/flatbuffers/src/android/app/src/main/cpp/flatbuffers/CMakeLists.txt third_party/flatbuffers/src/benchmarks/cpp/flatbuffers/fb_bench.cpp third_party/flatbuffers/src/benchmarks/cpp/raw/raw_bench.cpp third_party/flatbuffers/src/java/pom.xml third_party/flatbuffers/src/python/setup.py third_party/flatbuffers/src/src/idl_gen_csharp.cpp third_party/fontconfig/src/build-aux/fetch-testfonts.py third_party/fontconfig/src/src/fcfreetype.c third_party/fp16/src/third-party/eigen-half.h third_party/freetype/include/freetype-custom/freetype/config/ftoption.h third_party/freetype/src/builds/windows/vc2010/index.html third_party/freetype/src/devel/ftoption.h third_party/freetype/src/docs/formats.txt third_party/freetype/src/include/freetype/config/ftoption.h third_party/freetype/src/include/freetype/freetype.h third_party/freetype/src/include/freetype/ftcolor.h third_party/freetype/src/include/freetype/ftdriver.h third_party/freetype/src/include/freetype/ftimage.h third_party/freetype/src/include/freetype/ftmm.h third_party/freetype/src/include/freetype/ftwinfnt.h third_party/freetype/src/include/freetype/ttnameid.h third_party/freetype/src/src/autofit/afadjust.c third_party/freetype/src/src/autofit/afadjust.h third_party/freetype/src/src/autofit/afindic.c third_party/freetype/src/src/autofit/afindic.h third_party/freetype/src/src/autofit/hb-script-list.h third_party/freetype/src/src/sfnt/sfobjs.c third_party/freetype/src/src/sfnt/ttcmap.c third_party/freetype/src/src/sfnt/ttcolr.c third_party/freetype/src/src/sfnt/ttcpal.c third_party/freetype/src/src/sfnt/ttsvg.c third_party/freetype/src/src/truetype/ttinterp.h third_party/fuchsia-gn-sdk/src/gen_fidl_response_file.py third_party/fuchsia-gn-sdk/src/gn_configs.gni third_party/fuchsia-gn-sdk/src/prepare_package_inputs.py third_party/fuzztest/src/centipede/runner_fork_server.cc third_party/fuzztest/src/centipede/testing/test_fuzz_target.cc third_party/fuzztest/src/fuzztest/internal/centipede_adaptor.cc third_party/gemmlowp/src/contrib/CMakeLists.txt third_party/gemmlowp/src/standalone/neon-gemm-kernel-benchmark.cc third_party/glslang/src/glslang/HLSL/hlslParseHelper.cpp third_party/google-closure-library/closure-deps/lib/jsfile_parser.js third_party/google-closure-library/closure-deps/package.json third_party/google-closure-library/closure/bin/build/depswriter.py third_party/google-closure-library/closure/bin/build/source.py third_party/google-closure-library/closure/bin/build/treescan.py third_party/google-closure-library/closure/bin/labs/code/generate_jsdoc_test.py third_party/google-closure-library/closure/goog/async/nexttick.js third_party/google-closure-library/closure/goog/base.js third_party/google-closure-library/closure/goog/base_debug_loader_test.js third_party/google-closure-library/closure/goog/collections/iters.js third_party/google-closure-library/closure/goog/crypt/arc4.js third_party/google-closure-library/closure/goog/crypt/base64.js third_party/google-closure-library/closure/goog/crypt/blobhasher.js third_party/google-closure-library/closure/goog/crypt/crypt.js third_party/google-closure-library/closure/goog/crypt/crypt_test.js third_party/google-closure-library/closure/goog/css/bubble.css third_party/google-closure-library/closure/goog/css/checkbox.css third_party/google-closure-library/closure/goog/css/colorpalette.css third_party/google-closure-library/closure/goog/css/colorpicker-simplegrid.css third_party/google-closure-library/closure/goog/css/combobox.css third_party/google-closure-library/closure/goog/css/css3menubutton.css third_party/google-closure-library/closure/goog/css/custombutton.css third_party/google-closure-library/closure/goog/css/dialog.css third_party/google-closure-library/closure/goog/css/dragdropdetector.css third_party/google-closure-library/closure/goog/css/editor/bubble.css third_party/google-closure-library/closure/goog/css/editor/equationeditor.css third_party/google-closure-library/closure/goog/css/editortoolbar.css third_party/google-closure-library/closure/goog/css/flatmenubutton.css third_party/google-closure-library/closure/goog/css/hsvapalette.css third_party/google-closure-library/closure/goog/css/hsvpalette.css third_party/google-closure-library/closure/goog/css/imagelessmenubutton.css third_party/google-closure-library/closure/goog/css/menubutton.css third_party/google-closure-library/closure/goog/css/menuitem.css third_party/google-closure-library/closure/goog/css/toolbar.css third_party/google-closure-library/closure/goog/css/tree.css third_party/google-closure-library/closure/goog/css/tristatemenuitem.css third_party/google-closure-library/closure/goog/cssom/cssom.js third_party/google-closure-library/closure/goog/date/date.js third_party/google-closure-library/closure/goog/debug/asyncstacktag.js third_party/google-closure-library/closure/goog/debug/errorhandler.js third_party/google-closure-library/closure/goog/demos/autocompleterichremotedata.json third_party/google-closure-library/closure/goog/demos/css/demo.css third_party/google-closure-library/closure/goog/demos/css/emojipicker.css third_party/google-closure-library/closure/goog/demos/dialog.html third_party/google-closure-library/closure/goog/demos/graphics/advancedcoordinates.html third_party/google-closure-library/closure/goog/demos/graphics/advancedcoordinates2.html third_party/google-closure-library/closure/goog/demos/graphics/basicelements.html third_party/google-closure-library/closure/goog/demos/history1.html third_party/google-closure-library/closure/goog/demos/history2.html third_party/google-closure-library/closure/goog/demos/history3.html third_party/google-closure-library/closure/goog/demos/hovercard.html third_party/google-closure-library/closure/goog/demos/splitpane.html third_party/google-closure-library/closure/goog/dom/animationframe/animationframe.js third_party/google-closure-library/closure/goog/dom/browserfeature.js third_party/google-closure-library/closure/goog/dom/browserrange/geckorange.js third_party/google-closure-library/closure/goog/dom/browserrange/w3crange.js third_party/google-closure-library/closure/goog/dom/controlrange_test_dom.html third_party/google-closure-library/closure/goog/dom/dom.js third_party/google-closure-library/closure/goog/dom/dom_test.js third_party/google-closure-library/closure/goog/dom/forms.js third_party/google-closure-library/closure/goog/dom/range_test.js third_party/google-closure-library/closure/goog/dom/range_test_dom.html third_party/google-closure-library/closure/goog/dom/textrange_test_dom.html third_party/google-closure-library/closure/goog/dom/uri_test.js third_party/google-closure-library/closure/goog/dom/xml.js third_party/google-closure-library/closure/goog/editor/clicktoeditwrapper_test_dom.html third_party/google-closure-library/closure/goog/editor/contenteditablefield.js third_party/google-closure-library/closure/goog/editor/field.js third_party/google-closure-library/closure/goog/editor/link.js third_party/google-closure-library/closure/goog/editor/link_test.js third_party/google-closure-library/closure/goog/editor/node_test.js third_party/google-closure-library/closure/goog/editor/plugins/abstractbubbleplugin_test.js third_party/google-closure-library/closure/goog/editor/plugins/basictextformatter.js third_party/google-closure-library/closure/goog/editor/plugins/basictextformatter_test.js third_party/google-closure-library/closure/goog/editor/plugins/basictextformatter_test_dom.html third_party/google-closure-library/closure/goog/editor/plugins/linkbubble_test.js third_party/google-closure-library/closure/goog/editor/plugins/linkbubble_test_dom.html third_party/google-closure-library/closure/goog/editor/plugins/linkdialogplugin_test.js third_party/google-closure-library/closure/goog/editor/plugins/linkshortcutplugin_test.js third_party/google-closure-library/closure/goog/editor/plugins/linkshortcutplugin_test_dom.html third_party/google-closure-library/closure/goog/editor/plugins/removeformatting_test.js third_party/google-closure-library/closure/goog/editor/range.js third_party/google-closure-library/closure/goog/editor/range_test.js third_party/google-closure-library/closure/goog/editor/style.js third_party/google-closure-library/closure/goog/events/browserevent.js third_party/google-closure-library/closure/goog/events/browserevent_test.js third_party/google-closure-library/closure/goog/events/browserfeature.js third_party/google-closure-library/closure/goog/events/event.js third_party/google-closure-library/closure/goog/events/eventtype.js third_party/google-closure-library/closure/goog/events/filedrophandler.js third_party/google-closure-library/closure/goog/events/keycodes.js third_party/google-closure-library/closure/goog/events/keyhandler.js third_party/google-closure-library/closure/goog/events/keys.js third_party/google-closure-library/closure/goog/events/mousewheelhandler.js third_party/google-closure-library/closure/goog/events/onlinehandler.js third_party/google-closure-library/closure/goog/format/emailaddress.js third_party/google-closure-library/closure/goog/format/emailaddress_test.js third_party/google-closure-library/closure/goog/format/internationalizedemailaddress_test.js third_party/google-closure-library/closure/goog/fs/blob.js third_party/google-closure-library/closure/goog/fx/anim/anim.js third_party/google-closure-library/closure/goog/graphics/svggraphics_test.js third_party/google-closure-library/closure/goog/html/legacyconversions_test.js third_party/google-closure-library/closure/goog/html/safehtml.js third_party/google-closure-library/closure/goog/html/safehtml_test.js third_party/google-closure-library/closure/goog/html/safestyle.js third_party/google-closure-library/closure/goog/html/safeurl.js third_party/google-closure-library/closure/goog/html/safeurl_test.js third_party/google-closure-library/closure/goog/html/safeurl_test_vectors.js third_party/google-closure-library/closure/goog/html/sanitizer/csssanitizer_test.js third_party/google-closure-library/closure/goog/html/sanitizer/html_test_vectors.js third_party/google-closure-library/closure/goog/html/sanitizer/htmlsanitizer_test.js third_party/google-closure-library/closure/goog/html/sanitizer/tagblacklist.js third_party/google-closure-library/closure/goog/html/trustedresourceurl.js third_party/google-closure-library/closure/goog/html/trustedresourceurl_test.js third_party/google-closure-library/closure/goog/i18n/bidi_test.js third_party/google-closure-library/closure/goog/i18n/collation.js third_party/google-closure-library/closure/goog/i18n/collation_test.js third_party/google-closure-library/closure/goog/i18n/dateintervalformat.js third_party/google-closure-library/closure/goog/i18n/datetimeformat.js third_party/google-closure-library/closure/goog/i18n/externs_test.js third_party/google-closure-library/closure/goog/i18n/listformat.js third_party/google-closure-library/closure/goog/i18n/localefeature.js third_party/google-closure-library/closure/goog/iter/iter.js third_party/google-closure-library/closure/goog/labs/net/image.js third_party/google-closure-library/closure/goog/labs/net/webchannel.js third_party/google-closure-library/closure/goog/labs/net/webchannel/channel.js third_party/google-closure-library/closure/goog/labs/net/webchannel/channelrequest.js third_party/google-closure-library/closure/goog/labs/net/webchannel/environment.js third_party/google-closure-library/closure/goog/labs/net/webchannel/netutils.js third_party/google-closure-library/closure/goog/labs/net/webchannel/webchannelbase.js third_party/google-closure-library/closure/goog/labs/net/webchannel/webchannelbase_test.js third_party/google-closure-library/closure/goog/labs/net/xhr.js third_party/google-closure-library/closure/goog/labs/net/xhr_test.js third_party/google-closure-library/closure/goog/labs/useragent/browser.js third_party/google-closure-library/closure/goog/labs/useragent/engine.js third_party/google-closure-library/closure/goog/labs/useragent/platform.js third_party/google-closure-library/closure/goog/labs/useragent/test_agents.js third_party/google-closure-library/closure/goog/messaging/portchannel_test.js third_party/google-closure-library/closure/goog/module/moduleloader.js third_party/google-closure-library/closure/goog/module/moduleloader_test.js third_party/google-closure-library/closure/goog/net/browserchannel.js third_party/google-closure-library/closure/goog/net/browserchannel_test.js third_party/google-closure-library/closure/goog/net/browsertestchannel.js third_party/google-closure-library/closure/goog/net/channelrequest.js third_party/google-closure-library/closure/goog/net/cookies_test.js third_party/google-closure-library/closure/goog/net/crossdomainrpc_test.js third_party/google-closure-library/closure/goog/net/fetchxmlhttpfactory.js third_party/google-closure-library/closure/goog/net/fetchxmlhttpfactory_test.js third_party/google-closure-library/closure/goog/net/iframeio_test_dom.html third_party/google-closure-library/closure/goog/net/imageloader.js third_party/google-closure-library/closure/goog/net/ipaddress.js third_party/google-closure-library/closure/goog/net/jsonp.js third_party/google-closure-library/closure/goog/net/networktester.js third_party/google-closure-library/closure/goog/net/networktester_test.js third_party/google-closure-library/closure/goog/net/streams/pbstreamparser.js third_party/google-closure-library/closure/goog/net/tmpnetwork.js third_party/google-closure-library/closure/goog/net/xhrio.js third_party/google-closure-library/closure/goog/net/xhrlike.js third_party/google-closure-library/closure/goog/net/xmlhttp.js third_party/google-closure-library/closure/goog/positioning/positioning_test.js third_party/google-closure-library/closure/goog/proto2/textformatserializer.js third_party/google-closure-library/closure/goog/reflect/reflect.js third_party/google-closure-library/closure/goog/soy/data_test.js third_party/google-closure-library/closure/goog/soy/soy_testhelper.js third_party/google-closure-library/closure/goog/storage/mechanism/ieuserdata.js third_party/google-closure-library/closure/goog/storage/mechanism/mechanismtests.js third_party/google-closure-library/closure/goog/string/linkify.js third_party/google-closure-library/closure/goog/string/linkify_test.js third_party/google-closure-library/closure/goog/string/newlines.js third_party/google-closure-library/closure/goog/string/newlines_test.js third_party/google-closure-library/closure/goog/string/string.js third_party/google-closure-library/closure/goog/style/bidi_test.js third_party/google-closure-library/closure/goog/style/style_test.js third_party/google-closure-library/closure/goog/testing/asserts_test.js third_party/google-closure-library/closure/goog/testing/fs/fs.js third_party/google-closure-library/closure/goog/testing/mockclock.js third_party/google-closure-library/closure/goog/testing/net/xhrio_test.js third_party/google-closure-library/closure/goog/testing/performancetable.css third_party/google-closure-library/closure/goog/testing/propertyreplacer.js third_party/google-closure-library/closure/goog/testing/stacktrace.js third_party/google-closure-library/closure/goog/testing/stacktrace_test.js third_party/google-closure-library/closure/goog/testing/testcase.js third_party/google-closure-library/closure/goog/timer/timer.js third_party/google-closure-library/closure/goog/tweak/tweak.js third_party/google-closure-library/closure/goog/ui/ac/autocomplete_test.js third_party/google-closure-library/closure/goog/ui/ac/inputhandler.js third_party/google-closure-library/closure/goog/ui/ac/remotearraymatcher_test.js third_party/google-closure-library/closure/goog/ui/ac/richremotearraymatcher_test.js third_party/google-closure-library/closure/goog/ui/component.js third_party/google-closure-library/closure/goog/ui/control.js third_party/google-closure-library/closure/goog/ui/dialog_test.js third_party/google-closure-library/closure/goog/ui/editor/bubble_test.js third_party/google-closure-library/closure/goog/ui/editor/linkdialog.js third_party/google-closure-library/closure/goog/ui/editor/linkdialog_test.js third_party/google-closure-library/closure/goog/ui/editor/messages.js third_party/google-closure-library/closure/goog/ui/hovercard_test_dom.html third_party/google-closure-library/closure/goog/ui/keyboardshortcuthandler_test_dom.html third_party/google-closure-library/closure/goog/ui/media/youtube.js third_party/google-closure-library/closure/goog/ui/media/youtube_test.js third_party/google-closure-library/closure/goog/ui/menu.js third_party/google-closure-library/closure/goog/ui/menubutton_test_frame.html third_party/google-closure-library/closure/goog/ui/modalpopup.js third_party/google-closure-library/closure/goog/ui/popupbase.js third_party/google-closure-library/closure/goog/ui/serverchart.js third_party/google-closure-library/closure/goog/ui/tooltip.js third_party/google-closure-library/closure/goog/uri/uri.js third_party/google-closure-library/closure/goog/uri/uri_test.js third_party/google-closure-library/closure/goog/uri/utils.js third_party/google-closure-library/closure/goog/uri/utils_test.js third_party/google-closure-library/closure/goog/url/url.js third_party/google-closure-library/closure/goog/url/url_test.js third_party/google-closure-library/closure/goog/useragent/product_test.js third_party/google-closure-library/closure/goog/window/window.js third_party/google-closure-library/closure/goog/window/window_test.js third_party/google-closure-library/closure/goog/window/window_test_dom.html third_party/google-closure-library/doc/_layouts/article.html third_party/google-closure-library/doc/js/article.js third_party/google-closure-library/package.json third_party/google-closure-library/scripts/generate_deps_js.js third_party/google-closure-library/third_party/closure/goog/mochikit/async/deferred.js third_party/google_benchmark/src/src/cycleclock.h third_party/google_input_tools/src/chrome/os/inputview/adapter.js third_party/google_input_tools/src/chrome/os/inputview/canvas.js third_party/google_input_tools/src/chrome/os/inputview/dom.js third_party/google_input_tools/src/chrome/os/inputview/hwt_css.js third_party/google_input_tools/src/chrome/os/inputview/hwt_eventtype.js third_party/google_input_tools/src/chrome/os/inputview/hwt_util.js third_party/google_input_tools/src/chrome/os/inputview/inputtool.js third_party/google_input_tools/src/chrome/os/inputview/strokehandler.js third_party/google_input_tools/third_party/closure_library/closure/bin/build/closurebuilder.py third_party/google_input_tools/third_party/closure_library/closure/bin/build/depstree.py third_party/google_input_tools/third_party/closure_library/closure/bin/build/depstree_test.py third_party/google_input_tools/third_party/closure_library/closure/bin/build/depswriter.py third_party/google_input_tools/third_party/closure_library/closure/bin/build/jscompiler.py third_party/google_input_tools/third_party/closure_library/closure/bin/build/source.py third_party/google_input_tools/third_party/closure_library/closure/bin/build/source_test.py third_party/google_input_tools/third_party/closure_library/closure/bin/build/treescan.py third_party/google_input_tools/third_party/closure_library/closure/bin/scopify.py third_party/google_input_tools/third_party/closure_library/closure/goog/array/array.js third_party/google_input_tools/third_party/closure_library/closure/goog/asserts/asserts.js third_party/google_input_tools/third_party/closure_library/closure/goog/async/animationdelay.js third_party/google_input_tools/third_party/closure_library/closure/goog/async/delay.js third_party/google_input_tools/third_party/closure_library/closure/goog/async/nexttick.js third_party/google_input_tools/third_party/closure_library/closure/goog/base.js third_party/google_input_tools/third_party/closure_library/closure/goog/debug/entrypointregistry.js third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logbuffer.js third_party/google_input_tools/third_party/closure_library/closure/goog/debug/logger.js third_party/google_input_tools/third_party/closure_library/closure/goog/disposable/disposable.js third_party/google_input_tools/third_party/closure_library/closure/goog/disposable/idisposable.js third_party/google_input_tools/third_party/closure_library/closure/goog/dom/browserfeature.js third_party/google_input_tools/third_party/closure_library/closure/goog/dom/dom.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/browserevent.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/event.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/events.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/eventtarget.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/eventtype.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/eventwrapper.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/keycodes.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/keyhandler.js third_party/google_input_tools/third_party/closure_library/closure/goog/events/listenable.js third_party/google_input_tools/third_party/closure_library/closure/goog/functions/functions.js third_party/google_input_tools/third_party/closure_library/closure/goog/fx/anim/anim.js third_party/google_input_tools/third_party/closure_library/closure/goog/fx/animation.js third_party/google_input_tools/third_party/closure_library/closure/goog/fx/easing.js third_party/google_input_tools/third_party/closure_library/closure/goog/fx/transition.js third_party/google_input_tools/third_party/closure_library/closure/goog/iter/iter.js third_party/google_input_tools/third_party/closure_library/closure/goog/labs/useragent/browser.js third_party/google_input_tools/third_party/closure_library/closure/goog/labs/useragent/engine.js third_party/google_input_tools/third_party/closure_library/closure/goog/labs/useragent/util.js third_party/google_input_tools/third_party/closure_library/closure/goog/log/log.js third_party/google_input_tools/third_party/closure_library/closure/goog/math/size.js third_party/google_input_tools/third_party/closure_library/closure/goog/object/object.js third_party/google_input_tools/third_party/closure_library/closure/goog/positioning/abstractposition.js third_party/google_input_tools/third_party/closure_library/closure/goog/positioning/anchoredposition.js third_party/google_input_tools/third_party/closure_library/closure/goog/positioning/anchoredviewportposition.js third_party/google_input_tools/third_party/closure_library/closure/goog/positioning/positioning.js third_party/google_input_tools/third_party/closure_library/closure/goog/reflect/reflect.js third_party/google_input_tools/third_party/closure_library/closure/goog/string/string.js third_party/google_input_tools/third_party/closure_library/closure/goog/structs/collection.js third_party/google_input_tools/third_party/closure_library/closure/goog/structs/map.js third_party/google_input_tools/third_party/closure_library/closure/goog/structs/set.js third_party/google_input_tools/third_party/closure_library/closure/goog/structs/structs.js third_party/google_input_tools/third_party/closure_library/closure/goog/style/style.js third_party/google_input_tools/third_party/closure_library/closure/goog/testing/watchers.js third_party/google_input_tools/third_party/closure_library/closure/goog/timer/timer.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/component.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/container.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/containerrenderer.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/control.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/controlcontent.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/controlrenderer.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/decorate.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/menuseparatorrenderer.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/registry.js third_party/google_input_tools/third_party/closure_library/closure/goog/ui/separator.js third_party/google_input_tools/third_party/closure_library/closure/goog/useragent/useragent.js third_party/google_input_tools/third_party/closure_library/third_party/closure/goog/mochikit/async/deferred.js third_party/googletest/src/docs/_layouts/default.html third_party/googletest/src/googlemock/src/gmock_main.cc third_party/googletest/src/googletest/include/gtest/gtest_pred_impl.h third_party/googletest/src/googletest/include/gtest/internal/gtest-port.h third_party/googletest/src/googletest/src/gtest-death-test.cc third_party/googletest/src/googletest/src/gtest.cc third_party/googletest/src/googletest/test/googletest-death-test-test.cc third_party/googletest/src/googletest/test/gtest_list_output_unittest_.cc third_party/googletest/src/googletest/test/gtest_skip_test.cc third_party/grpc/source/include/grpc/grpc.h third_party/grpc/source/include/grpc/grpc_security_constants.h third_party/grpc/source/include/grpc/support/port_platform.h third_party/grpc/source/include/grpcpp/support/proto_buffer_reader.h third_party/grpc/source/include/grpcpp/support/proto_buffer_writer.h third_party/grpc/source/src/compiler/csharp_generator.cc third_party/grpc/source/src/core/lib/event_engine/windows/iocp.cc third_party/grpc/source/src/core/lib/iomgr/socket_windows.cc third_party/grpc/source/src/core/lib/security/authorization/cel_authorization_engine.h third_party/grpc/source/src/core/lib/security/credentials/credentials.h third_party/grpc/source/src/core/lib/security/credentials/external/external_account_credentials.cc third_party/grpc/source/src/core/lib/security/credentials/google_default/google_default_credentials.cc third_party/grpc/source/src/core/lib/security/credentials/jwt/json_token.h third_party/grpc/source/src/core/lib/security/credentials/jwt/jwt_verifier.h third_party/grpc/source/src/core/resolver/google_c2p/google_c2p_resolver.cc third_party/grpc/source/src/core/service_config/service_config.h third_party/grpc/source/src/core/service_config/service_config_impl.h third_party/grpc/source/src/core/util/json/json_object_loader.cc third_party/grpc/source/src/core/util/json/json_util.h third_party/grpc/source/src/core/util/status_helper.cc third_party/grpc/source/src/core/util/string.h third_party/grpc/source/src/core/util/time.h third_party/grpc/source/src/core/util/windows/directory_reader.cc third_party/grpc/source/src/core/xds/grpc/xds_cluster_parser.cc third_party/grpc/source/src/core/xds/xds_client/xds_client.cc third_party/grpc/source/src/cpp/ext/csm/csm_observability.cc third_party/grpc/source/src/cpp/ext/gcp/observability.cc third_party/grpc/source/src/cpp/ext/gcp/observability_logging_sink.cc third_party/grpc/source/src/python/grpcio_observability/grpc_observability/python_observability_context.cc third_party/grpc/source/third_party/upb/upb/base/descriptor_constants.h third_party/grpc/source/third_party/upb/upb/base/internal/endian.h third_party/grpc/source/third_party/upb/upb/base/internal/log2.h third_party/grpc/source/third_party/upb/upb/base/status.c third_party/grpc/source/third_party/upb/upb/base/status.h third_party/grpc/source/third_party/upb/upb/base/status.hpp third_party/grpc/source/third_party/upb/upb/base/string_view.h third_party/grpc/source/third_party/upb/upb/base/upcast.h third_party/grpc/source/third_party/upb/upb/conformance/conformance_upb.c third_party/grpc/source/third_party/upb/upb/generated_code_support.h third_party/grpc/source/third_party/upb/upb/hash/common.c third_party/grpc/source/third_party/upb/upb/hash/common.h third_party/grpc/source/third_party/upb/upb/hash/int_table.h third_party/grpc/source/third_party/upb/upb/hash/str_table.h third_party/grpc/source/third_party/upb/upb/hash/test.cc third_party/grpc/source/third_party/upb/upb/io/chunked_input_stream.c third_party/grpc/source/third_party/upb/upb/io/chunked_input_stream.h third_party/grpc/source/third_party/upb/upb/io/chunked_output_stream.c third_party/grpc/source/third_party/upb/upb/io/chunked_output_stream.h third_party/grpc/source/third_party/upb/upb/io/string.h third_party/grpc/source/third_party/upb/upb/io/string_test.cc third_party/grpc/source/third_party/upb/upb/io/tokenizer.c third_party/grpc/source/third_party/upb/upb/io/tokenizer.h third_party/grpc/source/third_party/upb/upb/io/tokenizer_test.cc third_party/grpc/source/third_party/upb/upb/io/zero_copy_input_stream.h third_party/grpc/source/third_party/upb/upb/io/zero_copy_output_stream.h third_party/grpc/source/third_party/upb/upb/io/zero_copy_stream_test.cc third_party/grpc/source/third_party/upb/upb/json/decode.c third_party/grpc/source/third_party/upb/upb/json/decode.h third_party/grpc/source/third_party/upb/upb/json/decode_test.cc third_party/grpc/source/third_party/upb/upb/json/encode.c third_party/grpc/source/third_party/upb/upb/json/encode.h third_party/grpc/source/third_party/upb/upb/json/encode_test.cc third_party/grpc/source/third_party/upb/upb/json/fuzz_test.cc third_party/grpc/source/third_party/upb/upb/lex/atoi.c third_party/grpc/source/third_party/upb/upb/lex/atoi.h third_party/grpc/source/third_party/upb/upb/lex/atoi_test.cc third_party/grpc/source/third_party/upb/upb/lex/round_trip.c third_party/grpc/source/third_party/upb/upb/lex/round_trip.h third_party/grpc/source/third_party/upb/upb/lex/strtod.c third_party/grpc/source/third_party/upb/upb/lex/strtod.h third_party/grpc/source/third_party/upb/upb/lex/unicode.c third_party/grpc/source/third_party/upb/upb/lex/unicode.h third_party/grpc/source/third_party/upb/upb/mem/alloc.c third_party/grpc/source/third_party/upb/upb/mem/alloc.h third_party/grpc/source/third_party/upb/upb/mem/arena.c third_party/grpc/source/third_party/upb/upb/mem/arena.h third_party/grpc/source/third_party/upb/upb/mem/arena.hpp third_party/grpc/source/third_party/upb/upb/mem/arena_test.cc third_party/grpc/source/third_party/upb/upb/mem/internal/arena.h third_party/grpc/source/third_party/upb/upb/message/accessors.c third_party/grpc/source/third_party/upb/upb/message/accessors.h third_party/grpc/source/third_party/upb/upb/message/accessors_split64.h third_party/grpc/source/third_party/upb/upb/message/accessors_test.cc third_party/grpc/source/third_party/upb/upb/message/array.c third_party/grpc/source/third_party/upb/upb/message/array.h third_party/grpc/source/third_party/upb/upb/message/array_test.cc third_party/grpc/source/third_party/upb/upb/message/compare.c third_party/grpc/source/third_party/upb/upb/message/compare.h third_party/grpc/source/third_party/upb/upb/message/compat.c third_party/grpc/source/third_party/upb/upb/message/compat.h third_party/grpc/source/third_party/upb/upb/message/copy.c third_party/grpc/source/third_party/upb/upb/message/copy.h third_party/grpc/source/third_party/upb/upb/message/copy_test.cc third_party/grpc/source/third_party/upb/upb/message/internal/accessors.h third_party/grpc/source/third_party/upb/upb/message/internal/array.h third_party/grpc/source/third_party/upb/upb/message/internal/compare_unknown.c third_party/grpc/source/third_party/upb/upb/message/internal/compare_unknown.h third_party/grpc/source/third_party/upb/upb/message/internal/compare_unknown_test.cc third_party/grpc/source/third_party/upb/upb/message/internal/extension.c third_party/grpc/source/third_party/upb/upb/message/internal/extension.h third_party/grpc/source/third_party/upb/upb/message/internal/iterator.c third_party/grpc/source/third_party/upb/upb/message/internal/iterator.h third_party/grpc/source/third_party/upb/upb/message/internal/map.h third_party/grpc/source/third_party/upb/upb/message/internal/map_entry.h third_party/grpc/source/third_party/upb/upb/message/internal/map_sorter.h third_party/grpc/source/third_party/upb/upb/message/internal/message.c third_party/grpc/source/third_party/upb/upb/message/internal/message.h third_party/grpc/source/third_party/upb/upb/message/internal/tagged_ptr.h third_party/grpc/source/third_party/upb/upb/message/internal/types.h third_party/grpc/source/third_party/upb/upb/message/map.c third_party/grpc/source/third_party/upb/upb/message/map.h third_party/grpc/source/third_party/upb/upb/message/map_gencode_util.h third_party/grpc/source/third_party/upb/upb/message/map_sorter.c third_party/grpc/source/third_party/upb/upb/message/map_test.cc third_party/grpc/source/third_party/upb/upb/message/message.c third_party/grpc/source/third_party/upb/upb/message/message.h third_party/grpc/source/third_party/upb/upb/message/promote.c third_party/grpc/source/third_party/upb/upb/message/promote.h third_party/grpc/source/third_party/upb/upb/message/promote_test.cc third_party/grpc/source/third_party/upb/upb/message/tagged_ptr.h third_party/grpc/source/third_party/upb/upb/message/test.cc third_party/grpc/source/third_party/upb/upb/message/utf8_test.cc third_party/grpc/source/third_party/upb/upb/message/value.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/build_enum.c third_party/grpc/source/third_party/upb/upb/mini_descriptor/build_enum.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/decode.c third_party/grpc/source/third_party/upb/upb/mini_descriptor/decode.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/base92.c third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/base92.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/decoder.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode.c third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode.hpp third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/encode_test.cc third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/modifiers.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/internal/wire_constants.h third_party/grpc/source/third_party/upb/upb/mini_descriptor/link.c third_party/grpc/source/third_party/upb/upb/mini_descriptor/link.h third_party/grpc/source/third_party/upb/upb/mini_table/compat.c third_party/grpc/source/third_party/upb/upb/mini_table/compat.h third_party/grpc/source/third_party/upb/upb/mini_table/compat_test.cc third_party/grpc/source/third_party/upb/upb/mini_table/enum.h third_party/grpc/source/third_party/upb/upb/mini_table/extension.h third_party/grpc/source/third_party/upb/upb/mini_table/extension_registry.c third_party/grpc/source/third_party/upb/upb/mini_table/extension_registry.h third_party/grpc/source/third_party/upb/upb/mini_table/field.h third_party/grpc/source/third_party/upb/upb/mini_table/file.h third_party/grpc/source/third_party/upb/upb/mini_table/internal/enum.h third_party/grpc/source/third_party/upb/upb/mini_table/internal/extension.h third_party/grpc/source/third_party/upb/upb/mini_table/internal/field.h third_party/grpc/source/third_party/upb/upb/mini_table/internal/file.h third_party/grpc/source/third_party/upb/upb/mini_table/internal/message.c third_party/grpc/source/third_party/upb/upb/mini_table/internal/message.h third_party/grpc/source/third_party/upb/upb/mini_table/internal/size_log2.h third_party/grpc/source/third_party/upb/upb/mini_table/internal/sub.h third_party/grpc/source/third_party/upb/upb/mini_table/message.c third_party/grpc/source/third_party/upb/upb/mini_table/message.h third_party/grpc/source/third_party/upb/upb/mini_table/sub.h third_party/grpc/source/third_party/upb/upb/port/atomic.h third_party/grpc/source/third_party/upb/upb/port/vsnprintf_compat.h third_party/grpc/source/third_party/upb/upb/reflection/common.h third_party/grpc/source/third_party/upb/upb/reflection/def.h third_party/grpc/source/third_party/upb/upb/reflection/def.hpp third_party/grpc/source/third_party/upb/upb/reflection/def_pool.c third_party/grpc/source/third_party/upb/upb/reflection/def_pool.h third_party/grpc/source/third_party/upb/upb/reflection/def_type.c third_party/grpc/source/third_party/upb/upb/reflection/def_type.h third_party/grpc/source/third_party/upb/upb/reflection/desc_state.c third_party/grpc/source/third_party/upb/upb/reflection/enum_def.c third_party/grpc/source/third_party/upb/upb/reflection/enum_def.h third_party/grpc/source/third_party/upb/upb/reflection/enum_reserved_range.c third_party/grpc/source/third_party/upb/upb/reflection/enum_reserved_range.h third_party/grpc/source/third_party/upb/upb/reflection/enum_value_def.c third_party/grpc/source/third_party/upb/upb/reflection/enum_value_def.h third_party/grpc/source/third_party/upb/upb/reflection/extension_range.c third_party/grpc/source/third_party/upb/upb/reflection/extension_range.h third_party/grpc/source/third_party/upb/upb/reflection/field_def.c third_party/grpc/source/third_party/upb/upb/reflection/field_def.h third_party/grpc/source/third_party/upb/upb/reflection/file_def.c third_party/grpc/source/third_party/upb/upb/reflection/file_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/def_builder.c third_party/grpc/source/third_party/upb/upb/reflection/internal/def_builder.h third_party/grpc/source/third_party/upb/upb/reflection/internal/def_builder_test.cc third_party/grpc/source/third_party/upb/upb/reflection/internal/def_pool.h third_party/grpc/source/third_party/upb/upb/reflection/internal/desc_state.h third_party/grpc/source/third_party/upb/upb/reflection/internal/enum_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/enum_reserved_range.h third_party/grpc/source/third_party/upb/upb/reflection/internal/enum_value_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/extension_range.h third_party/grpc/source/third_party/upb/upb/reflection/internal/field_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/file_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/message_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/message_reserved_range.h third_party/grpc/source/third_party/upb/upb/reflection/internal/method_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/oneof_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/service_def.h third_party/grpc/source/third_party/upb/upb/reflection/internal/strdup2.c third_party/grpc/source/third_party/upb/upb/reflection/internal/strdup2.h third_party/grpc/source/third_party/upb/upb/reflection/internal/upb_edition_defaults.h third_party/grpc/source/third_party/upb/upb/reflection/message.c third_party/grpc/source/third_party/upb/upb/reflection/message.h third_party/grpc/source/third_party/upb/upb/reflection/message.hpp third_party/grpc/source/third_party/upb/upb/reflection/message_def.c third_party/grpc/source/third_party/upb/upb/reflection/message_def.h third_party/grpc/source/third_party/upb/upb/reflection/message_reserved_range.c third_party/grpc/source/third_party/upb/upb/reflection/message_reserved_range.h third_party/grpc/source/third_party/upb/upb/reflection/method_def.c third_party/grpc/source/third_party/upb/upb/reflection/method_def.h third_party/grpc/source/third_party/upb/upb/reflection/oneof_def.c third_party/grpc/source/third_party/upb/upb/reflection/oneof_def.h third_party/grpc/source/third_party/upb/upb/reflection/service_def.c third_party/grpc/source/third_party/upb/upb/reflection/service_def.h third_party/grpc/source/third_party/upb/upb/test/editions_test.cc third_party/grpc/source/third_party/upb/upb/test/fuzz_util.cc third_party/grpc/source/third_party/upb/upb/test/fuzz_util.h third_party/grpc/source/third_party/upb/upb/test/parse_text_proto.h third_party/grpc/source/third_party/upb/upb/test/proto3_test.cc third_party/grpc/source/third_party/upb/upb/test/test_cpp.cc third_party/grpc/source/third_party/upb/upb/test/test_generated_code.cc third_party/grpc/source/third_party/upb/upb/test/test_import_empty_srcs.cc third_party/grpc/source/third_party/upb/upb/test/test_mini_table_oneof.cc third_party/grpc/source/third_party/upb/upb/text/debug_string.c third_party/grpc/source/third_party/upb/upb/text/debug_string.h third_party/grpc/source/third_party/upb/upb/text/encode.c third_party/grpc/source/third_party/upb/upb/text/encode.h third_party/grpc/source/third_party/upb/upb/text/encode_debug_test.cc third_party/grpc/source/third_party/upb/upb/text/internal/encode.c third_party/grpc/source/third_party/upb/upb/text/internal/encode.h third_party/grpc/source/third_party/upb/upb/text/options.h third_party/grpc/source/third_party/upb/upb/util/def_to_proto.c third_party/grpc/source/third_party/upb/upb/util/def_to_proto.h third_party/grpc/source/third_party/upb/upb/util/def_to_proto_fuzz_test.cc third_party/grpc/source/third_party/upb/upb/util/def_to_proto_test.cc third_party/grpc/source/third_party/upb/upb/util/def_to_proto_test.h third_party/grpc/source/third_party/upb/upb/util/required_fields.c third_party/grpc/source/third_party/upb/upb/util/required_fields.h third_party/grpc/source/third_party/upb/upb/util/required_fields_test.cc third_party/grpc/source/third_party/upb/upb/wire/byte_size.c third_party/grpc/source/third_party/upb/upb/wire/byte_size.h third_party/grpc/source/third_party/upb/upb/wire/byte_size_test.cc third_party/grpc/source/third_party/upb/upb/wire/decode.c third_party/grpc/source/third_party/upb/upb/wire/decode.h third_party/grpc/source/third_party/upb/upb/wire/encode.c third_party/grpc/source/third_party/upb/upb/wire/encode.h third_party/grpc/source/third_party/upb/upb/wire/eps_copy_input_stream.c third_party/grpc/source/third_party/upb/upb/wire/eps_copy_input_stream.h third_party/grpc/source/third_party/upb/upb/wire/eps_copy_input_stream_test.cc third_party/grpc/source/third_party/upb/upb/wire/internal/constants.h third_party/grpc/source/third_party/upb/upb/wire/internal/decode_fast.c third_party/grpc/source/third_party/upb/upb/wire/internal/decode_fast.h third_party/grpc/source/third_party/upb/upb/wire/internal/decoder.h third_party/grpc/source/third_party/upb/upb/wire/internal/reader.h third_party/grpc/source/third_party/upb/upb/wire/reader.c third_party/grpc/source/third_party/upb/upb/wire/reader.h third_party/grpc/source/third_party/upb/upb/wire/types.h third_party/grpc/source/third_party/xxhash/xxhash.h third_party/harfbuzz-ng/src/docs/usermanual-install-harfbuzz.xml third_party/harfbuzz-ng/src/docs/usermanual-integration.xml third_party/harfbuzz-ng/src/docs/usermanual-opentype-features.xml third_party/harfbuzz-ng/src/docs/usermanual-what-is-harfbuzz.xml third_party/harfbuzz-ng/src/perf/texts/react-dom.txt third_party/harfbuzz-ng/src/src/OT/Color/CBDT/CBDT.hh third_party/harfbuzz-ng/src/src/OT/Color/COLR/COLR.hh third_party/harfbuzz-ng/src/src/OT/Color/COLR/colrv1-closure.hh third_party/harfbuzz-ng/src/src/OT/Color/CPAL/CPAL.hh third_party/harfbuzz-ng/src/src/OT/Color/sbix/sbix.hh third_party/harfbuzz-ng/src/src/OT/Color/svg/svg.hh third_party/harfbuzz-ng/src/src/OT/Layout/GDEF/GDEF.hh third_party/harfbuzz-ng/src/src/OT/Layout/GPOS/GPOS.hh third_party/harfbuzz-ng/src/src/OT/Layout/GSUB/GSUB.hh third_party/harfbuzz-ng/src/src/OT/glyf/glyf.hh third_party/harfbuzz-ng/src/src/OT/glyf/loca.hh third_party/harfbuzz-ng/src/src/OT/name/name.hh third_party/harfbuzz-ng/src/src/gen-indic-table.py third_party/harfbuzz-ng/src/src/gen-os2-unicode-ranges.py third_party/harfbuzz-ng/src/src/gen-tag-table.py third_party/harfbuzz-ng/src/src/hb-algs.hh third_party/harfbuzz-ng/src/src/hb-buffer.cc third_party/harfbuzz-ng/src/src/hb-common.cc third_party/harfbuzz-ng/src/src/hb-common.h third_party/harfbuzz-ng/src/src/hb-coretext-shape.cc third_party/harfbuzz-ng/src/src/hb-font.cc third_party/harfbuzz-ng/src/src/hb-ft.cc third_party/harfbuzz-ng/src/src/hb-ot-cff2-table.hh third_party/harfbuzz-ng/src/src/hb-ot-cmap-table.hh third_party/harfbuzz-ng/src/src/hb-ot-color.cc third_party/harfbuzz-ng/src/src/hb-ot-gasp-table.hh third_party/harfbuzz-ng/src/src/hb-ot-hdmx-table.hh third_party/harfbuzz-ng/src/src/hb-ot-head-table.hh third_party/harfbuzz-ng/src/src/hb-ot-hhea-table.hh third_party/harfbuzz-ng/src/src/hb-ot-hmtx-table.hh third_party/harfbuzz-ng/src/src/hb-ot-kern-table.hh third_party/harfbuzz-ng/src/src/hb-ot-layout-base-table.hh third_party/harfbuzz-ng/src/src/hb-ot-layout-common.hh third_party/harfbuzz-ng/src/src/hb-ot-layout-gsubgpos.hh third_party/harfbuzz-ng/src/src/hb-ot-layout-jstf-table.hh third_party/harfbuzz-ng/src/src/hb-ot-layout.cc third_party/harfbuzz-ng/src/src/hb-ot-layout.h third_party/harfbuzz-ng/src/src/hb-ot-math-table.hh third_party/harfbuzz-ng/src/src/hb-ot-math.h third_party/harfbuzz-ng/src/src/hb-ot-maxp-table.hh third_party/harfbuzz-ng/src/src/hb-ot-meta-table.hh third_party/harfbuzz-ng/src/src/hb-ot-meta.h third_party/harfbuzz-ng/src/src/hb-ot-metrics.h third_party/harfbuzz-ng/src/src/hb-ot-name-language-static.hh third_party/harfbuzz-ng/src/src/hb-ot-name.h third_party/harfbuzz-ng/src/src/hb-ot-os2-table.hh third_party/harfbuzz-ng/src/src/hb-ot-post-table-v2subset.hh third_party/harfbuzz-ng/src/src/hb-ot-post-table.hh third_party/harfbuzz-ng/src/src/hb-ot-shaper-arabic.cc third_party/harfbuzz-ng/src/src/hb-ot-shaper-hebrew.cc third_party/harfbuzz-ng/src/src/hb-ot-shaper-khmer.cc third_party/harfbuzz-ng/src/src/hb-ot-shaper-myanmar.cc third_party/harfbuzz-ng/src/src/hb-ot-shaper-use.cc third_party/harfbuzz-ng/src/src/hb-ot-stat-table.hh third_party/harfbuzz-ng/src/src/hb-ot-tag.cc third_party/harfbuzz-ng/src/src/hb-ot-var-avar-table.hh third_party/harfbuzz-ng/src/src/hb-ot-var-common.hh third_party/harfbuzz-ng/src/src/hb-ot-var-cvar-table.hh third_party/harfbuzz-ng/src/src/hb-ot-var-fvar-table.hh third_party/harfbuzz-ng/src/src/hb-ot-var-gvar-table.hh third_party/harfbuzz-ng/src/src/hb-ot-var-hvar-table.hh third_party/harfbuzz-ng/src/src/hb-ot-var-mvar-table.hh third_party/harfbuzz-ng/src/src/hb-ot-var.cc third_party/harfbuzz-ng/src/src/hb-ot-vorg-table.hh third_party/harfbuzz-ng/src/src/hb-paint-bounded.cc third_party/harfbuzz-ng/src/src/hb-paint-bounded.hh third_party/harfbuzz-ng/src/src/hb-paint-extents.cc third_party/harfbuzz-ng/src/src/hb-paint-extents.hh third_party/harfbuzz-ng/src/src/hb-paint.h third_party/harfbuzz-ng/src/src/hb-script-list.h third_party/harfbuzz-ng/src/src/hb-style.h third_party/harfbuzz-ng/src/src/hb-subset-cff-common.hh third_party/harfbuzz-ng/src/src/hb-unicode.hh third_party/harfbuzz-ng/src/src/hb.hh third_party/highway/src/.bcr/metadata.template.json third_party/highway/src/hwy/base.h third_party/hunspell/src/hunspell/affentry.cxx third_party/hunspell/src/hunspell/affentry.hxx third_party/hunspell/src/hunspell/affixmgr.cxx third_party/hunspell/src/hunspell/affixmgr.hxx third_party/hunspell/src/hunspell/atypes.hxx third_party/hunspell/src/hunspell/baseaffix.hxx third_party/hunspell/src/hunspell/csutil.cxx third_party/hunspell/src/hunspell/csutil.hxx third_party/hunspell/src/hunspell/filemgr.cxx third_party/hunspell/src/hunspell/filemgr.hxx third_party/hunspell/src/hunspell/hashmgr.cxx third_party/hunspell/src/hunspell/hashmgr.hxx third_party/hunspell/src/hunspell/htypes.hxx third_party/hunspell/src/hunspell/hunspell.cxx third_party/hunspell/src/hunspell/hunspell.h third_party/hunspell/src/hunspell/hunspell.hxx third_party/hunspell/src/hunspell/hunzip.cxx third_party/hunspell/src/hunspell/hunzip.hxx third_party/hunspell/src/hunspell/langnum.hxx third_party/hunspell/src/hunspell/replist.cxx third_party/hunspell/src/hunspell/replist.hxx third_party/hunspell/src/hunspell/suggestmgr.cxx third_party/hunspell/src/hunspell/suggestmgr.hxx third_party/hunspell/src/hunspell/utf_info.cxx third_party/hunspell/src/hunspell/w_char.hxx third_party/hunspell/src/parsers/firstparser.cxx third_party/hunspell/src/parsers/firstparser.hxx third_party/hunspell/src/parsers/htmlparser.cxx third_party/hunspell/src/parsers/htmlparser.hxx third_party/hunspell/src/parsers/latexparser.cxx third_party/hunspell/src/parsers/latexparser.hxx third_party/hunspell/src/parsers/manparser.cxx third_party/hunspell/src/parsers/manparser.hxx third_party/hunspell/src/parsers/odfparser.cxx third_party/hunspell/src/parsers/odfparser.hxx third_party/hunspell/src/parsers/testparser.cxx third_party/hunspell/src/parsers/textparser.cxx third_party/hunspell/src/parsers/textparser.hxx third_party/hunspell/src/parsers/xmlparser.cxx third_party/hunspell/src/parsers/xmlparser.hxx third_party/hyphenation-patterns/src/be/hyph-be.lic.txt third_party/hyphenation-patterns/src/el/hyph-el.lic.txt third_party/hyphenation-patterns/src/hu/hyph-hu.lic.txt third_party/hyphenation-patterns/src/hy/hyph-hy.lic.txt third_party/hyphenation-patterns/src/it/hyph-it.lic.txt third_party/hyphenation-patterns/src/sq/hyph-sq.lic.txt third_party/hyphenation-patterns/src/sv/hyph-sv.lic.txt third_party/iaccessible2/ia2_api_all.idl third_party/icu/filters/android.json third_party/icu/filters/cast.json third_party/icu/filters/chromecast_video.json third_party/icu/filters/chromeos.json third_party/icu/filters/common.json third_party/icu/filters/flutter.json third_party/icu/filters/flutter_desktop.json third_party/icu/filters/ios.json third_party/icu/icu.gyp third_party/icu/source/common/bytestream.cpp third_party/icu/source/common/locmap.cpp third_party/icu/source/common/stringpiece.cpp third_party/icu/source/common/ucnvsel.cpp third_party/icu/source/common/unicode/bytestream.h third_party/icu/source/common/unicode/platform.h third_party/icu/source/common/unicode/ucnvsel.h third_party/icu/source/common/unicode/umachine.h third_party/icu/source/common/unifiedcache.h third_party/icu/source/common/wintz.cpp third_party/icu/source/data/brkitr/dictionaries/burmesedict.txt third_party/icu/source/data/brkitr/dictionaries/laodict.txt third_party/icu/source/data/translit/ru_ru_Latn_BGN.txt third_party/icu/source/data/translit/ug_ug_FONIPA.txt third_party/icu/source/data/translit/xh_xh_FONIPA.txt third_party/icu/source/data/translit/zu_zu_FONIPA.txt third_party/icu/source/data/unidata/changes.txt third_party/icu/source/i18n/unicode/numberformatter.h third_party/icu/source/io/ufile.cpp third_party/icu/source/test/intltest/numberformattesttuple.h third_party/icu/source/test/intltest/strcase.cpp third_party/icu/source/test/intltest/uobjtest.cpp third_party/icu/source/test/perf/collationperf/collperf.cpp third_party/icu/source/test/perf/collationperf/readme.html third_party/icu/source/test/testdata/numberformattestspecification.txt third_party/icu/source/tools/toolutil/json-json.hpp third_party/icu/source/tools/toolutil/pkg_genc.cpp third_party/inspector_protocol/crdtp/cbor.cc third_party/inspector_protocol/crdtp/json.cc third_party/inspector_protocol/roll.py third_party/ipcz/src/PRESUBMIT.py third_party/ipcz/src/reference_drivers/random.cc third_party/isimpledom/ISimpleDOMDocument.idl third_party/isimpledom/ISimpleDOMNode.idl third_party/isimpledom/ISimpleDOMText.idl third_party/jni_zero/PRESUBMIT.py third_party/kotlinc/licenses/gradle_license.txt third_party/kotlinc/licenses/rhino_LICENSE.txt third_party/leveldatabase/src/doc/benchmark.html third_party/leveldatabase/src/table/format.h third_party/libFuzzer/src/FuzzerSHA1.cpp third_party/libFuzzer/src/FuzzerUtilWindows.cpp third_party/libaddressinput/BUILD.gn third_party/libaddressinput/chromium/chrome_address_validator.h third_party/libaddressinput/chromium/fallback_data_store.cc third_party/libaddressinput/chromium/tools/require_fields.py third_party/libaddressinput/src/cpp/libaddressinput.gyp third_party/libaddressinput/src/cpp/src/grit.h third_party/libaddressinput/src/cpp/src/util/md5.cc third_party/libaddressinput/src/cpp/src/util/md5.h third_party/libaddressinput/src/cpp/src/util/size.h third_party/libaddressinput/src/cpp/src/util/string_split.cc third_party/libaddressinput/src/cpp/src/util/string_split.h third_party/libaddressinput/src/cpp/src/util/string_util.cc third_party/libaddressinput/src/cpp/src/util/string_util.h third_party/libaddressinput/src/cpp/test/testdata_source.cc third_party/libaddressinput/src/cpp/test/util/md5_unittest.cc third_party/libaddressinput/src/cpp/test/util/string_split_unittest.cc third_party/libaom/source/libaom/CMakeLists.txt third_party/libaom/source/libaom/aom/src/aom_encoder.c third_party/libaom/source/libaom/aom_dsp/x86/variance_impl_avx2.c third_party/libaom/source/libaom/aom_ports/aarch64_cpudetect.c third_party/libaom/source/libaom/aom_ports/bitops.h third_party/libaom/source/libaom/aom_util/aom_thread.c third_party/libaom/source/libaom/aom_util/aom_thread.h third_party/libaom/source/libaom/av1/common/av1_common_int.h third_party/libaom/source/libaom/av1/common/cdef_block_simd.h third_party/libaom/source/libaom/av1/common/x86/av1_inv_txfm_ssse3.c third_party/libaom/source/libaom/av1/encoder/block.h third_party/libaom/source/libaom/av1/encoder/encodemb.c third_party/libaom/source/libaom/av1/encoder/encoder.h third_party/libaom/source/libaom/av1/encoder/intra_mode_search.c third_party/libaom/source/libaom/av1/encoder/mcomp.c third_party/libaom/source/libaom/av1/encoder/mv_prec.c third_party/libaom/source/libaom/av1/encoder/palette.c third_party/libaom/source/libaom/av1/encoder/partition_model_weights.h third_party/libaom/source/libaom/av1/encoder/partition_strategy.c third_party/libaom/source/libaom/av1/encoder/partition_strategy.h third_party/libaom/source/libaom/av1/encoder/rdopt.c third_party/libaom/source/libaom/av1/encoder/rdopt_utils.h third_party/libaom/source/libaom/av1/encoder/speed_features.c third_party/libaom/source/libaom/av1/encoder/speed_features.h third_party/libaom/source/libaom/av1/encoder/tx_search.c third_party/libaom/source/libaom/av1/encoder/var_based_part.c third_party/libaom/source/libaom/common/tools_common.h third_party/libaom/source/libaom/test/gviz_api.py third_party/libaom/source/libaom/test/metrics_template.html third_party/libaom/source/libaom/test/visual_metrics.py third_party/libaom/source/libaom/third_party/SVT-AV1/convolve_2d_avx2.h third_party/libaom/source/libaom/third_party/SVT-AV1/convolve_avx2.h third_party/libaom/source/libaom/third_party/googletest/src/googletest/include/gtest/gtest_pred_impl.h third_party/libaom/source/libaom/third_party/googletest/src/googletest/include/gtest/internal/gtest-port.h third_party/libaom/source/libaom/third_party/googletest/src/googletest/src/gtest-death-test.cc third_party/libaom/source/libaom/third_party/googletest/src/googletest/src/gtest.cc third_party/libaom/source/libaom/third_party/highway/hwy/stats.h third_party/libaom/source/libaom/third_party/libwebm/AUTHORS.TXT third_party/libaom/source/libaom/third_party/libwebm/mkvmuxer/mkvwriter.cc third_party/libaom/source/libaom/third_party/libwebm/mkvparser/mkvreader.cc third_party/libaom/source/libaom/third_party/libyuv/include/libyuv/row.h third_party/libaom/source/libaom/third_party/libyuv/include/libyuv/video_common.h third_party/libaom/source/libaom/third_party/libyuv/source/cpu_id.cc third_party/libaom/source/libaom/tools/aggregate_entropy_stats.py third_party/libaom/source/libaom/tools/cpplint.py third_party/libaom/source/libaom/tools/diff.py third_party/libaom/source/libaom/tools/inspect-cli.js third_party/libaom/source/libaom/tools/intersect-diffs.py third_party/libaom/source/libaom/tools/wrap-commit-msg.py third_party/libc++/src/CREDITS.TXT third_party/libc++/src/src/atomic.cpp third_party/libc++/src/src/chrono.cpp third_party/libc++/src/src/experimental/tzdb.cpp third_party/libc++/src/src/fstream.cpp third_party/libc++/src/src/print.cpp third_party/libc++/src/test/libcxx/containers/sequences/deque/asan_turning_off.pass.cpp third_party/libc++/src/test/libcxx/containers/sequences/vector/asan_turning_off.pass.cpp third_party/libc++/src/test/libcxx/containers/strings/basic.string/asan_turning_off.pass.cpp third_party/libc++/src/utils/ci/BOT_OWNERS.txt third_party/libc++abi/src/CREDITS.TXT third_party/libdrm/src/android/gralloc_handle.h third_party/libdrm/src/etnaviv/etnaviv_bo.c third_party/libdrm/src/etnaviv/etnaviv_bo_cache.c third_party/libdrm/src/etnaviv/etnaviv_cmd_stream.c third_party/libdrm/src/etnaviv/etnaviv_device.c third_party/libdrm/src/etnaviv/etnaviv_drmif.h third_party/libdrm/src/etnaviv/etnaviv_gpu.c third_party/libdrm/src/etnaviv/etnaviv_perfmon.c third_party/libdrm/src/etnaviv/etnaviv_pipe.c third_party/libdrm/src/etnaviv/etnaviv_priv.h third_party/libdrm/src/include/drm/drm_mode.h third_party/libdrm/src/include/drm/msm_drm.h third_party/libdrm/src/tests/drmdevice.c third_party/libdrm/src/tests/etnaviv/cmdstream.xml.h third_party/libdrm/src/tests/etnaviv/etnaviv_2d_test.c third_party/libdrm/src/tests/etnaviv/etnaviv_bo_cache_test.c third_party/libdrm/src/tests/etnaviv/etnaviv_cmd_stream_test.c third_party/libdrm/src/tests/etnaviv/state.xml.h third_party/libdrm/src/tests/etnaviv/state_2d.xml.h third_party/libdrm/src/tests/modeprint/modeprint.c third_party/libdrm/src/tests/modetest/cursor.c third_party/libdrm/src/tests/modetest/cursor.h third_party/libdrm/src/tests/radeon/radeon_ttm.c third_party/libdrm/src/tests/radeon/rbo.c third_party/libdrm/src/tests/radeon/rbo.h third_party/libdrm/src/xf86drmMode.c third_party/libdrm/src/xf86drmMode.h third_party/libgav1/src/src/utils/compiler_attributes.h third_party/libgav1/src/src/utils/cpu_test.cc third_party/liblouis/src/liblouis/metadata.c third_party/liblouis/src/python/louis/__init__.py.in third_party/liblouis/src/tests/check_metadata.c third_party/liblouis/src/tests/emphclass.c third_party/liblouis/src/tests/findTable.c third_party/liblouis/src/tests/hyphenate_xxx.c third_party/liblouis/src/tools/brl_checks.c third_party/liblouis/src/tools/brl_checks.h third_party/liblouis/src/tools/gnulib/getprogname.c third_party/liblouis/src/tools/gnulib/msvc-inval.h third_party/liblouis/src/tools/gnulib/pathmax.h third_party/liblouis/src/tools/gnulib/stat-time.h third_party/liblouis/src/tools/gnulib/stat-w32.c third_party/liblouis/src/tools/gnulib/stat.c third_party/liblouis/wasm/liblouis_wasm.js third_party/libpfm4/src/examples/check_events.c third_party/libpfm4/src/examples/showevtinfo.c third_party/libpfm4/src/include/perfmon/perf_event.h third_party/libpfm4/src/include/perfmon/pfmlib.h third_party/libpfm4/src/include/perfmon/pfmlib_perf_event.h third_party/libpfm4/src/lib/events/amd64_events_fam10h.h third_party/libpfm4/src/lib/events/amd64_events_fam14h.h third_party/libpfm4/src/lib/events/amd64_events_fam15h.h third_party/libpfm4/src/lib/events/amd64_events_fam15h_nb.h third_party/libpfm4/src/lib/events/amd64_events_fam17h_zen1.h third_party/libpfm4/src/lib/events/amd64_events_fam17h_zen2.h third_party/libpfm4/src/lib/events/amd64_events_fam19h_zen3_l3.h third_party/libpfm4/src/lib/events/amd64_events_k7.h third_party/libpfm4/src/lib/events/amd64_events_k8.h third_party/libpfm4/src/lib/events/arm_cavium_tx2_events.h third_party/libpfm4/src/lib/events/arm_cortex_a15_events.h third_party/libpfm4/src/lib/events/arm_cortex_a53_events.h third_party/libpfm4/src/lib/events/arm_cortex_a55_events.h third_party/libpfm4/src/lib/events/arm_cortex_a57_events.h third_party/libpfm4/src/lib/events/arm_cortex_a76_events.h third_party/libpfm4/src/lib/events/arm_neoverse_n1_events.h third_party/libpfm4/src/lib/events/arm_neoverse_n2_events.h third_party/libpfm4/src/lib/events/arm_neoverse_n3_events.h third_party/libpfm4/src/lib/events/arm_neoverse_v1_events.h third_party/libpfm4/src/lib/events/arm_neoverse_v2_events.h third_party/libpfm4/src/lib/events/arm_neoverse_v3_events.h third_party/libpfm4/src/lib/events/intel_adl_glc_events.h third_party/libpfm4/src/lib/events/intel_adl_grt_events.h third_party/libpfm4/src/lib/events/intel_atom_events.h third_party/libpfm4/src/lib/events/intel_bdw_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_cbo_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_ha_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_irp_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_pcu_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_qpi_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_r2pcie_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_r3qpi_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_sbo_events.h third_party/libpfm4/src/lib/events/intel_bdx_unc_ubo_events.h third_party/libpfm4/src/lib/events/intel_core_events.h third_party/libpfm4/src/lib/events/intel_coreduo_events.h third_party/libpfm4/src/lib/events/intel_glm_events.h third_party/libpfm4/src/lib/events/intel_gnr_events.h third_party/libpfm4/src/lib/events/intel_gnr_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_hsw_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_cbo_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_ha_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_irp_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_pcu_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_qpi_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_r2pcie_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_r3qpi_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_sbo_events.h third_party/libpfm4/src/lib/events/intel_hswep_unc_ubo_events.h third_party/libpfm4/src/lib/events/intel_icl_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_cha_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_iio_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_irp_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_m2m_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_m2pcie_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_m3upi_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_pcu_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_ubox_events.h third_party/libpfm4/src/lib/events/intel_icx_unc_upi_events.h third_party/libpfm4/src/lib/events/intel_ivb_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_cbo_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_ha_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_irp_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_pcu_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_qpi_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_r2pcie_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_r3qpi_events.h third_party/libpfm4/src/lib/events/intel_ivbep_unc_ubo_events.h third_party/libpfm4/src/lib/events/intel_knc_events.h third_party/libpfm4/src/lib/events/intel_nhm_events.h third_party/libpfm4/src/lib/events/intel_nhm_unc_events.h third_party/libpfm4/src/lib/events/intel_p6_events.h third_party/libpfm4/src/lib/events/intel_pii_events.h third_party/libpfm4/src/lib/events/intel_pm_events.h third_party/libpfm4/src/lib/events/intel_ppro_events.h third_party/libpfm4/src/lib/events/intel_skl_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_cha_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_iio_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_irp_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_m2m_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_m3upi_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_pcu_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_ubo_events.h third_party/libpfm4/src/lib/events/intel_skx_unc_upi_events.h third_party/libpfm4/src/lib/events/intel_slm_events.h third_party/libpfm4/src/lib/events/intel_snb_events.h third_party/libpfm4/src/lib/events/intel_snb_unc_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_cbo_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_ha_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_pcu_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_qpi_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_r2pcie_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_r3qpi_events.h third_party/libpfm4/src/lib/events/intel_snbep_unc_ubo_events.h third_party/libpfm4/src/lib/events/intel_spr_events.h third_party/libpfm4/src/lib/events/intel_spr_unc_cha_events.h third_party/libpfm4/src/lib/events/intel_spr_unc_imc_events.h third_party/libpfm4/src/lib/events/intel_spr_unc_upi_events.h third_party/libpfm4/src/lib/events/intel_tmt_events.h third_party/libpfm4/src/lib/events/intel_wsm_events.h third_party/libpfm4/src/lib/events/intel_wsm_unc_events.h third_party/libpfm4/src/lib/events/perf_events.h third_party/libpfm4/src/lib/pfmlib_amd64.c third_party/libpfm4/src/lib/pfmlib_amd64_fam10h.c third_party/libpfm4/src/lib/pfmlib_amd64_fam14h.c third_party/libpfm4/src/lib/pfmlib_amd64_fam15h.c third_party/libpfm4/src/lib/pfmlib_amd64_fam17h.c third_party/libpfm4/src/lib/pfmlib_amd64_fam19h_l3.c third_party/libpfm4/src/lib/pfmlib_amd64_k7.c third_party/libpfm4/src/lib/pfmlib_amd64_k8.c third_party/libpfm4/src/lib/pfmlib_amd64_perf_event.c third_party/libpfm4/src/lib/pfmlib_amd64_rapl.c third_party/libpfm4/src/lib/pfmlib_arm_armv8.c third_party/libpfm4/src/lib/pfmlib_arm_armv8_kunpeng_unc.c third_party/libpfm4/src/lib/pfmlib_arm_armv8_thunderx2_unc.c third_party/libpfm4/src/lib/pfmlib_arm_armv8_unc.c third_party/libpfm4/src/lib/pfmlib_arm_armv9.c third_party/libpfm4/src/lib/pfmlib_arm_perf_event.c third_party/libpfm4/src/lib/pfmlib_common.c third_party/libpfm4/src/lib/pfmlib_intel_adl.c third_party/libpfm4/src/lib/pfmlib_intel_atom.c third_party/libpfm4/src/lib/pfmlib_intel_bdw.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_cbo.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_ha.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_irp.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_pcu.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_qpi.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_r2pcie.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_r3qpi.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_sbo.c third_party/libpfm4/src/lib/pfmlib_intel_bdx_unc_ubo.c third_party/libpfm4/src/lib/pfmlib_intel_core.c third_party/libpfm4/src/lib/pfmlib_intel_coreduo.c third_party/libpfm4/src/lib/pfmlib_intel_glm.c third_party/libpfm4/src/lib/pfmlib_intel_gnr.c third_party/libpfm4/src/lib/pfmlib_intel_gnr_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_hsw.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_cbo.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_ha.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_irp.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_pcu.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_qpi.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_r2pcie.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_r3qpi.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_sbo.c third_party/libpfm4/src/lib/pfmlib_intel_hswep_unc_ubo.c third_party/libpfm4/src/lib/pfmlib_intel_icl.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_cha.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_iio.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_irp.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_m2m.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_m2pcie.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_m3upi.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_pcu.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_ubox.c third_party/libpfm4/src/lib/pfmlib_intel_icx_unc_upi.c third_party/libpfm4/src/lib/pfmlib_intel_ivb.c third_party/libpfm4/src/lib/pfmlib_intel_ivb_unc.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_cbo.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_ha.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_irp.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_pcu.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_qpi.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_r2pcie.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_r3qpi.c third_party/libpfm4/src/lib/pfmlib_intel_ivbep_unc_ubo.c third_party/libpfm4/src/lib/pfmlib_intel_knc.c third_party/libpfm4/src/lib/pfmlib_intel_netburst_perf_event.c third_party/libpfm4/src/lib/pfmlib_intel_nhm.c third_party/libpfm4/src/lib/pfmlib_intel_nhm_unc.c third_party/libpfm4/src/lib/pfmlib_intel_rapl.c third_party/libpfm4/src/lib/pfmlib_intel_skl.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_cha.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_iio.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_irp.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_m2m.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_m3upi.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_pcu.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_ubo.c third_party/libpfm4/src/lib/pfmlib_intel_skx_unc_upi.c third_party/libpfm4/src/lib/pfmlib_intel_slm.c third_party/libpfm4/src/lib/pfmlib_intel_snb.c third_party/libpfm4/src/lib/pfmlib_intel_snb_unc.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_cbo.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_ha.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_pcu.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_perf_event.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_priv.h third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_qpi.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_r2pcie.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_r3qpi.c third_party/libpfm4/src/lib/pfmlib_intel_snbep_unc_ubo.c third_party/libpfm4/src/lib/pfmlib_intel_spr.c third_party/libpfm4/src/lib/pfmlib_intel_spr_unc_cha.c third_party/libpfm4/src/lib/pfmlib_intel_spr_unc_imc.c third_party/libpfm4/src/lib/pfmlib_intel_spr_unc_upi.c third_party/libpfm4/src/lib/pfmlib_intel_tmt.c third_party/libpfm4/src/lib/pfmlib_intel_wsm.c third_party/libpfm4/src/lib/pfmlib_intel_x86.c third_party/libpfm4/src/lib/pfmlib_intel_x86_perf_event.c third_party/libpfm4/src/lib/pfmlib_intel_x86_priv.h third_party/libpfm4/src/lib/pfmlib_perf_event.c third_party/libpfm4/src/lib/pfmlib_perf_event_pmu.c third_party/libpfm4/src/lib/pfmlib_perf_event_priv.h third_party/libpfm4/src/lib/pfmlib_perf_event_raw.c third_party/libpfm4/src/lib/pfmlib_powerpc_perf_event.c third_party/libpfm4/src/lib/pfmlib_sparc.c third_party/libpfm4/src/lib/pfmlib_sparc_niagara.c third_party/libpfm4/src/lib/pfmlib_sparc_perf_event.c third_party/libpfm4/src/lib/pfmlib_sparc_ultra12.c third_party/libpfm4/src/lib/pfmlib_sparc_ultra3.c third_party/libpfm4/src/lib/pfmlib_sparc_ultra4.c third_party/libpfm4/src/perf_examples/branch_smpl.c third_party/libpfm4/src/perf_examples/notify_group.c third_party/libpfm4/src/perf_examples/notify_self.c third_party/libpfm4/src/perf_examples/perf_util.c third_party/libpfm4/src/perf_examples/perf_util.h third_party/libpfm4/src/perf_examples/rtop.c third_party/libpfm4/src/perf_examples/self.c third_party/libpfm4/src/perf_examples/self_basic.c third_party/libpfm4/src/perf_examples/self_count.c third_party/libpfm4/src/perf_examples/self_pipe.c third_party/libpfm4/src/perf_examples/self_smpl_multi.c third_party/libpfm4/src/perf_examples/syst_count.c third_party/libpfm4/src/perf_examples/syst_smpl.c third_party/libpfm4/src/perf_examples/task.c third_party/libpfm4/src/perf_examples/task_attach_timeout.c third_party/libpfm4/src/perf_examples/task_cpu.c third_party/libpfm4/src/perf_examples/task_smpl.c third_party/libpfm4/src/perf_examples/x86/bts_smpl.c third_party/libpfm4/src/python/Makefile third_party/libpfm4/src/python/self.py third_party/libpfm4/src/python/setup.py third_party/libpfm4/src/python/src/pmu.py third_party/libpfm4/src/python/src/session.py third_party/libpfm4/src/python/sys.py third_party/libpfm4/src/tests/Makefile third_party/libpfm4/src/tests/validate.c third_party/libpfm4/src/tests/validate_arm.c third_party/libpfm4/src/tests/validate_arm64.c third_party/libpfm4/src/tests/validate_mips.c third_party/libpfm4/src/tests/validate_perf.c third_party/libpfm4/src/tests/validate_power.c third_party/libpfm4/src/tests/validate_x86.c third_party/libphonenumber/dist/cpp/src/phonenumbers/phonenumbermatcher.h third_party/libphonenumber/dist/cpp/test/phonenumbers/phonenumberutil_test.cc third_party/libphonenumber/dist/java/demo/src/main/webapp/WEB-INF/appengine-web.xml third_party/libphonenumber/dist/java/pom.xml third_party/libphonenumber/dist/javascript/i18n/phonenumbers/phonenumberutil_test.js third_party/libphonenumber/dist/migrator/migrator-servlet/src/main/webapp/WEB-INF/appengine-web.xml third_party/libphonenumber/dist/release_notes.txt third_party/libphonenumber/dist/resources/ShortNumberMetadata.xml third_party/libphonenumber/dist/resources/carrier/en/221.txt third_party/libphonenumber/dist/resources/carrier/en/674.txt third_party/libphonenumber/dist/resources/carrier/en/961.txt third_party/libphonenumber/dist/resources/geocoding/en/86.txt third_party/libphonenumber/dist/resources/geocoding/zh/86.txt third_party/libphonenumber/dist/tools/java/data/webapp/WEB-INF/appengine-web.xml third_party/libpng/contrib/oss-fuzz/README.txt third_party/libpng/contrib/oss-fuzz/libpng_read_fuzzer.cc third_party/libprotobuf-mutator/src/examples/libfuzzer/libfuzzer_bin_example.cc third_party/libprotobuf-mutator/src/examples/libfuzzer/libfuzzer_example.cc third_party/libprotobuf-mutator/src/src/mutator_test.cc third_party/liburlpattern/utils.cc third_party/libusb/src/libusb/os/threads_windows.c third_party/libusb/src/libusb/os/threads_windows.h third_party/libusb/src/libusb/os/wince_usb.c third_party/libusb/src/libusb/os/wince_usb.h third_party/libusb/src/libusb/os/windows_usb.c third_party/libusb/src/msvc/inttypes.h third_party/libusb/src/msvc/stdint.h third_party/libva-fake-driver/src/common.mk third_party/libvpx/BUILD.gn third_party/libvpx/source/libvpx/build/make/Android.mk third_party/libvpx/source/libvpx/examples/vpx_dec_fuzzer.cc third_party/libvpx/source/libvpx/examples/vpx_enc_fuzzer.cc third_party/libvpx/source/libvpx/libs.mk third_party/libvpx/source/libvpx/test/vp8_datarate_test.cc third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/gtest_pred_impl.h third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/internal/gtest-port.h third_party/libvpx/source/libvpx/third_party/googletest/src/src/gtest-death-test.cc third_party/libvpx/source/libvpx/third_party/googletest/src/src/gtest.cc third_party/libvpx/source/libvpx/third_party/libwebm/AUTHORS.TXT third_party/libvpx/source/libvpx/third_party/libwebm/mkvmuxer/mkvwriter.cc third_party/libvpx/source/libvpx/third_party/libwebm/mkvparser/mkvreader.cc third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/row.h third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/video_common.h third_party/libvpx/source/libvpx/third_party/libyuv/source/cpu_id.cc third_party/libvpx/source/libvpx/tools/cpplint.py third_party/libvpx/source/libvpx/tools/diff.py third_party/libvpx/source/libvpx/tools/intersect-diffs.py third_party/libvpx/source/libvpx/tools/wrap-commit-msg.py third_party/libvpx/source/libvpx/tools_common.h third_party/libvpx/source/libvpx/vp9/encoder/vp9_block.h third_party/libvpx/source/libvpx/vpx_dsp/x86/convolve.h third_party/libvpx/source/libvpx/vpx_ports/aarch64_cpudetect.c third_party/libvpx/source/libvpx/vpx_util/vpx_thread.c third_party/libvpx/source/libvpx/vpx_util/vpx_thread.h third_party/libwebm/source/AUTHORS.TXT third_party/libwebm/source/PRESUBMIT.py third_party/libwebm/source/mkvmuxer/mkvwriter.cc third_party/libwebm/source/mkvparser/mkvreader.cc third_party/libwebp/src/Android.mk third_party/libwebp/src/PRESUBMIT.py third_party/libwebp/src/doc/webp-container-spec.txt third_party/libwebp/src/examples/anim_dump.c third_party/libwebp/src/examples/cwebp.c third_party/libwebp/src/examples/dwebp.c third_party/libwebp/src/examples/gif2webp.c third_party/libwebp/src/examples/img2webp.c third_party/libwebp/src/examples/stopwatch.h third_party/libwebp/src/examples/unicode.h third_party/libwebp/src/examples/unicode_gif.h third_party/libwebp/src/examples/vwebp.c third_party/libwebp/src/examples/webpinfo.c third_party/libwebp/src/examples/webpmux.c third_party/libwebp/src/extras/get_disto.c third_party/libwebp/src/extras/quality_estimate.c third_party/libwebp/src/extras/vwebp_sdl.c third_party/libwebp/src/extras/webp_to_sdl.c third_party/libwebp/src/extras/webp_to_sdl.h third_party/libwebp/src/imageio/image_dec.h third_party/libwebp/src/imageio/image_enc.h third_party/libwebp/src/sharpyuv/sharpyuv.c third_party/libwebp/src/sharpyuv/sharpyuv_dsp.c third_party/libwebp/src/sharpyuv/sharpyuv_neon.c third_party/libwebp/src/sharpyuv/sharpyuv_sse2.c third_party/libwebp/src/src/dec/alpha_dec.c third_party/libwebp/src/src/dec/alphai_dec.h third_party/libwebp/src/src/dec/buffer_dec.c third_party/libwebp/src/src/dec/common_dec.h third_party/libwebp/src/src/dec/frame_dec.c third_party/libwebp/src/src/dec/idec_dec.c third_party/libwebp/src/src/dec/io_dec.c third_party/libwebp/src/src/dec/quant_dec.c third_party/libwebp/src/src/dec/tree_dec.c third_party/libwebp/src/src/dec/vp8_dec.c third_party/libwebp/src/src/dec/vp8_dec.h third_party/libwebp/src/src/dec/vp8i_dec.h third_party/libwebp/src/src/dec/vp8l_dec.c third_party/libwebp/src/src/dec/vp8li_dec.h third_party/libwebp/src/src/dec/webp_dec.c third_party/libwebp/src/src/dec/webpi_dec.h third_party/libwebp/src/src/dsp/alpha_processing.c third_party/libwebp/src/src/dsp/alpha_processing_neon.c third_party/libwebp/src/src/dsp/alpha_processing_sse2.c third_party/libwebp/src/src/dsp/alpha_processing_sse41.c third_party/libwebp/src/src/dsp/common_sse2.h third_party/libwebp/src/src/dsp/common_sse41.h third_party/libwebp/src/src/dsp/cost.c third_party/libwebp/src/src/dsp/cost_sse2.c third_party/libwebp/src/src/dsp/cpu.c third_party/libwebp/src/src/dsp/cpu.h third_party/libwebp/src/src/dsp/dec.c third_party/libwebp/src/src/dsp/dec_clip_tables.c third_party/libwebp/src/src/dsp/dec_neon.c third_party/libwebp/src/src/dsp/dec_sse2.c third_party/libwebp/src/src/dsp/dec_sse41.c third_party/libwebp/src/src/dsp/dsp.h third_party/libwebp/src/src/dsp/enc.c third_party/libwebp/src/src/dsp/enc_sse2.c third_party/libwebp/src/src/dsp/enc_sse41.c third_party/libwebp/src/src/dsp/filters.c third_party/libwebp/src/src/dsp/filters_neon.c third_party/libwebp/src/src/dsp/filters_sse2.c third_party/libwebp/src/src/dsp/lossless.c third_party/libwebp/src/src/dsp/lossless.h third_party/libwebp/src/src/dsp/lossless_avx2.c third_party/libwebp/src/src/dsp/lossless_common.h third_party/libwebp/src/src/dsp/lossless_enc.c third_party/libwebp/src/src/dsp/lossless_enc_avx2.c third_party/libwebp/src/src/dsp/lossless_enc_neon.c third_party/libwebp/src/src/dsp/lossless_enc_sse2.c third_party/libwebp/src/src/dsp/lossless_enc_sse41.c third_party/libwebp/src/src/dsp/lossless_neon.c third_party/libwebp/src/src/dsp/lossless_sse2.c third_party/libwebp/src/src/dsp/rescaler.c third_party/libwebp/src/src/dsp/rescaler_neon.c third_party/libwebp/src/src/dsp/rescaler_sse2.c third_party/libwebp/src/src/dsp/ssim.c third_party/libwebp/src/src/dsp/ssim_sse2.c third_party/libwebp/src/src/dsp/upsampling.c third_party/libwebp/src/src/dsp/upsampling_neon.c third_party/libwebp/src/src/dsp/upsampling_sse2.c third_party/libwebp/src/src/dsp/upsampling_sse41.c third_party/libwebp/src/src/dsp/yuv.c third_party/libwebp/src/src/dsp/yuv.h third_party/libwebp/src/src/dsp/yuv_neon.c third_party/libwebp/src/src/dsp/yuv_sse2.c third_party/libwebp/src/src/dsp/yuv_sse41.c third_party/libwebp/src/src/enc/alpha_enc.c third_party/libwebp/src/src/enc/analysis_enc.c third_party/libwebp/src/src/enc/backward_references_cost_enc.c third_party/libwebp/src/src/enc/backward_references_enc.c third_party/libwebp/src/src/enc/backward_references_enc.h third_party/libwebp/src/src/enc/config_enc.c third_party/libwebp/src/src/enc/cost_enc.c third_party/libwebp/src/src/enc/cost_enc.h third_party/libwebp/src/src/enc/filter_enc.c third_party/libwebp/src/src/enc/frame_enc.c third_party/libwebp/src/src/enc/histogram_enc.c third_party/libwebp/src/src/enc/histogram_enc.h third_party/libwebp/src/src/enc/iterator_enc.c third_party/libwebp/src/src/enc/near_lossless_enc.c third_party/libwebp/src/src/enc/picture_csp_enc.c third_party/libwebp/src/src/enc/picture_enc.c third_party/libwebp/src/src/enc/picture_psnr_enc.c third_party/libwebp/src/src/enc/picture_rescale_enc.c third_party/libwebp/src/src/enc/picture_tools_enc.c third_party/libwebp/src/src/enc/predictor_enc.c third_party/libwebp/src/src/enc/quant_enc.c third_party/libwebp/src/src/enc/syntax_enc.c third_party/libwebp/src/src/enc/token_enc.c third_party/libwebp/src/src/enc/tree_enc.c third_party/libwebp/src/src/enc/vp8i_enc.h third_party/libwebp/src/src/enc/vp8l_enc.c third_party/libwebp/src/src/enc/vp8li_enc.h third_party/libwebp/src/src/enc/webp_enc.c third_party/libwebp/src/src/mux/animi.h third_party/libwebp/src/src/mux/muxedit.c third_party/libwebp/src/src/mux/muxi.h third_party/libwebp/src/src/mux/muxinternal.c third_party/libwebp/src/src/mux/muxread.c third_party/libwebp/src/src/utils/bit_reader_inl_utils.h third_party/libwebp/src/src/utils/bit_reader_utils.c third_party/libwebp/src/src/utils/bit_reader_utils.h third_party/libwebp/src/src/utils/bit_writer_utils.c third_party/libwebp/src/src/utils/bit_writer_utils.h third_party/libwebp/src/src/utils/color_cache_utils.c third_party/libwebp/src/src/utils/color_cache_utils.h third_party/libwebp/src/src/utils/filters_utils.c third_party/libwebp/src/src/utils/filters_utils.h third_party/libwebp/src/src/utils/huffman_encode_utils.c third_party/libwebp/src/src/utils/huffman_encode_utils.h third_party/libwebp/src/src/utils/huffman_utils.c third_party/libwebp/src/src/utils/huffman_utils.h third_party/libwebp/src/src/utils/palette.c third_party/libwebp/src/src/utils/palette.h third_party/libwebp/src/src/utils/quant_levels_dec_utils.c third_party/libwebp/src/src/utils/quant_levels_dec_utils.h third_party/libwebp/src/src/utils/quant_levels_utils.c third_party/libwebp/src/src/utils/quant_levels_utils.h third_party/libwebp/src/src/utils/random_utils.c third_party/libwebp/src/src/utils/random_utils.h third_party/libwebp/src/src/utils/rescaler_utils.c third_party/libwebp/src/src/utils/rescaler_utils.h third_party/libwebp/src/src/utils/thread_utils.c third_party/libwebp/src/src/utils/thread_utils.h third_party/libwebp/src/src/utils/utils.c third_party/libwebp/src/src/utils/utils.h third_party/libwebp/src/src/webp/decode.h third_party/libwebp/src/src/webp/encode.h third_party/libwebp/src/src/webp/format_constants.h third_party/libwebp/src/src/webp/mux.h third_party/libwebp/src/src/webp/mux_types.h third_party/libwebp/src/src/webp/types.h third_party/libwebp/src/swig/setup.py third_party/libwebp/src/tests/fuzzer/fuzz_utils.h third_party/libxslt/chromium/roll.py third_party/libyuv/include/libyuv/row.h third_party/libyuv/include/libyuv/video_common.h third_party/libyuv/source/cpu_id.cc third_party/libyuv/tools_libyuv/autoroller/roll_deps.py third_party/libyuv/tools_libyuv/autoroller/unittests/roll_deps_test.py third_party/libzip/src/lib/zip_crypto_win.c third_party/libzip/src/lib/zip_extra_field.c third_party/lit/v3_0/BUILD.gn third_party/litert/src/configure.py third_party/litert/src/litert/c/litert_common.h third_party/litert/src/litert/cc/internal/scoped_file_win.cc third_party/litert/src/litert/js/demos/efficientvit_segmentation/src/index.ts third_party/litert/src/litert/js/demos/mobilenetv2/src/index.ts third_party/litert/src/litert/js/packages/core/src/datatypes.ts third_party/litert/src/litert/runtime/ahwb_wrapper.h third_party/litert/src/litert/vendors/google_tensor/dispatch/sb_api.h third_party/litert/src/tflite/core/c/common.h third_party/litert/src/tflite/delegates/gpu/android_hardware_buffer.h third_party/litert/src/tflite/delegates/nnapi/nnapi_delegate.h third_party/litert/src/tflite/delegates/nnapi/nnapi_delegate_c_api.h third_party/litert/src/tflite/delegates/xnnpack/windows_util.cc third_party/litert/src/tflite/experimental/acceleration/mini_benchmark/libjpeg_decoder.cc third_party/litert/src/tflite/experimental/acceleration/mini_benchmark/runner.cc third_party/litert/src/tflite/g3doc/api_docs/c/group/tflite.html third_party/litert/src/tflite/g3doc/api_docs/java/classes.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/DataType.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Delegate.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.Options.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.TfLiteRuntime.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterFactory.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/RuntimeFlavor.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.QuantizationParams.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/TensorFlowLite.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/CompatibilityList.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.Options.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.GpuBackend.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/FileUtil.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/SequentialProcessor.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/CastOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/DequantizeOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/NormalizeOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/QuantizeOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.CoordinateType.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.Type.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ColorSpaceType.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/MlImageAdapter.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/TensorImage.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.ResizeMethod.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeWithCropOrPadOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/Rot90Op.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TensorOperatorWrapper.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TransformToGrayscaleOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/Category.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/LabelUtil.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/TensorLabel.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.QuantizationParams.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataParser.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Device.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBuffer.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferFloat.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferUint8.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/Classifications.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseTaskApi.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Delegate.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.MultipleBuffersHandleProvider.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/package-summary.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Orientation.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/audio/TfLiteAudio.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/text/TfLiteText.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/NearestNeighbor.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluRequest.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.CategoricalSlot.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.Mention.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.MentionedSlot.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.Pos.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QuestionAnswerer.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/Classifications.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/core/BaseVisionTaskApi.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/Detection.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ColoredLabel.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.Builder.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/OutputType.html third_party/litert/src/tflite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/Segmentation.html third_party/litert/src/tflite/g3doc/tools/build_java_api_docs.py third_party/litert/src/tflite/java/src/main/native/op_resolver_lazy_delegate_proxy.cc third_party/litert/src/tflite/kernels/ctc/ctc_beam_search.h third_party/litert/src/tflite/kernels/internal/reference/svdf.h third_party/litert/src/tflite/kernels/svdf.cc third_party/litert/src/tflite/nnapi/NeuralNetworksShim.h third_party/litert/src/tflite/nnapi/NeuralNetworksTypes.h third_party/litert/src/tflite/toco/graph_transformations/ensure_uint8_weights_safe_for_fast_int8_kernels.cc third_party/litert/src/tflite/toco/logging/template.html third_party/litert/src/tflite/toco/logging/testdata/generated.html third_party/litert/src/tflite/toco/model.h third_party/litert/src/tflite/tools/benchmark/experimental/firebase/android/jni/benchmark_model_jni.cc third_party/litert/src/tflite/tutorials/dataset.py third_party/llvm-libc/src/src/__support/macros/properties/compiler.h third_party/llvm-libc/src/src/__support/time/windows/clock_gettime.cpp third_party/llvm-libc/src/src/time/windows/clock_getres.cpp third_party/lottie/lottie_worker.js third_party/mako/mako/test/templates/internationalization.html third_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/event-options.d.ts third_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-all.d.ts third_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts third_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts third_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query-async.d.ts third_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/decorators/query.d.ts third_party/material_web_components/components-chromium/node_modules/@lit/reactive-element/reactive-element.d.ts third_party/material_web_components/components-chromium/node_modules/@lit/task/task.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/checkbox/internal/checkbox.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/checkbox/internal/checkbox.js third_party/material_web_components/components-chromium/node_modules/@material/web/dialog/internal/dialog.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/dialog/internal/dialog.js third_party/material_web_components/components-chromium/node_modules/@material/web/internal/events/form-label-activation.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/internal/events/form-label-activation.js third_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/constraint-validation.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/constraint-validation.js third_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/custom-state-set.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/custom-state-set.js third_party/material_web_components/components-chromium/node_modules/@material/web/labs/behaviors/validators/text-field-validator.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/controllers/surfacePositionController.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/controllers/surfacePositionController.js third_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/menu.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/menu/internal/menu.js third_party/material_web_components/components-chromium/node_modules/@material/web/select/internal/select.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/select/internal/select.js third_party/material_web_components/components-chromium/node_modules/@material/web/slider/internal/slider.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/slider/internal/slider.js third_party/material_web_components/components-chromium/node_modules/@material/web/switch/internal/switch.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/switch/internal/switch.js third_party/material_web_components/components-chromium/node_modules/@material/web/textfield/internal/text-field.d.ts third_party/material_web_components/components-chromium/node_modules/@material/web/textfield/internal/text-field.js third_party/material_web_components/components-chromium/node_modules/lit-html/directives/async-append.d.ts third_party/material_web_components/components-chromium/node_modules/lit-html/directives/async-replace.d.ts third_party/material_web_components/package.json third_party/mediapipe/src/mediapipe/calculators/audio/audio_decoder_calculator.cc third_party/mediapipe/src/mediapipe/calculators/audio/two_tap_fir_filter_calculator.cc third_party/mediapipe/src/mediapipe/calculators/core/bypass_calculator.cc third_party/mediapipe/src/mediapipe/calculators/image/opencv_image_encoder_calculator.cc third_party/mediapipe/src/mediapipe/calculators/image/scale_image_calculator.cc third_party/mediapipe/src/mediapipe/calculators/tflite/tflite_custom_op_resolver_calculator.cc third_party/mediapipe/src/mediapipe/calculators/util/detection_label_id_to_text_calculator.cc third_party/mediapipe/src/mediapipe/calculators/util/face_to_rect_calculator.cc third_party/mediapipe/src/mediapipe/calculators/util/resource_provider_calculator.h third_party/mediapipe/src/mediapipe/calculators/video/flow_to_image_calculator.cc third_party/mediapipe/src/mediapipe/calculators/video/opencv_video_encoder_calculator.cc third_party/mediapipe/src/mediapipe/framework/api3/contract.h third_party/mediapipe/src/mediapipe/framework/formats/unique_fd.h third_party/mediapipe/src/mediapipe/framework/resources.h third_party/mediapipe/src/mediapipe/framework/tool/proto_util_lite.cc third_party/mediapipe/src/mediapipe/framework/tool/template_parser.cc third_party/mediapipe/src/mediapipe/gpu/egl_surface_holder.h third_party/mediapipe/src/mediapipe/graphs/iris_tracking/calculators/iris_to_render_data_calculator.cc third_party/mediapipe/src/mediapipe/tasks/cc/text/language_detector/custom_ops/utils/hash/murmur.cc third_party/mediapipe/src/mediapipe/tasks/cc/text/language_detector/custom_ops/utils/hash/murmur.h third_party/mediapipe/src/mediapipe/util/tracking/image_util.h third_party/mediapipe/src/mediapipe/util/tracking/motion_estimation.cc third_party/metrics_proto/PRESUBMIT.py third_party/minigbm/src/common.mk third_party/minigbm/src/gbm.h third_party/nasm/win/manifest.xml third_party/nearby/src/connections/implementation/endpoint_manager.cc third_party/nearby/src/internal/crypto_cros/hmac_unittest.cc third_party/nearby/src/internal/crypto_cros/rsa_private_key_unittest.cc third_party/nearby/src/internal/crypto_cros/secure_util.h third_party/nearby/src/internal/network/http_client_impl_test.cc third_party/nearby/src/internal/network/http_request_test.cc third_party/nearby/src/internal/network/url_test.cc third_party/nearby/src/internal/platform/bluetooth_adapter.h third_party/nearby/src/internal/platform/bluetooth_classic.h third_party/nearby/src/internal/platform/implementation/ble.h third_party/nearby/src/internal/platform/implementation/ble_v2.h third_party/nearby/src/internal/platform/implementation/bluetooth_adapter.h third_party/nearby/src/internal/platform/implementation/bluetooth_classic.h third_party/nearby/src/internal/platform/implementation/g3/bluetooth_adapter.h third_party/nearby/src/internal/platform/implementation/g3/bluetooth_classic.h third_party/nearby/src/internal/platform/implementation/platform.h third_party/nearby/src/internal/platform/implementation/windows/ble_medium.cc third_party/nearby/src/internal/platform/implementation/windows/bluetooth_adapter.cc third_party/nearby/src/internal/platform/implementation/windows/bluetooth_adapter.h third_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_device.h third_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_medium.cc third_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_medium.h third_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_server_socket.h third_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_socket.cc third_party/nearby/src/internal/platform/implementation/windows/bluetooth_classic_socket.h third_party/nearby/src/internal/platform/implementation/windows/file_path.cc third_party/nearby/src/internal/platform/implementation/windows/generated/winrt/Windows.Foundation.h third_party/nearby/src/internal/platform/implementation/windows/http_loader_test.cc third_party/nearby/src/internal/platform/implementation/windows/string_utils.cc third_party/nearby/src/internal/platform/implementation/windows/test_utils.cc third_party/nearby/src/internal/platform/implementation/windows/utils.h third_party/nearby/src/internal/platform/implementation/windows/webrtc.cc third_party/nearby/src/internal/platform/implementation/windows/wifi_hotspot_native.cc third_party/nearby/src/internal/platform/nsd_service_info.h third_party/nearby/src/internal/platform/thread_check_nocompile.cc third_party/nearby/src/internal/platform/uuid.h third_party/nearby/src/internal/test/fake_http_client_test.cc third_party/nearby/src/presence/fpp/fpp_manager.cc third_party/nearby/src/sharing/android/example/app/src/main/res/xml/backup_rules.xml third_party/nearby/src/sharing/android/example/app/src/main/res/xml/data_extraction_rules.xml third_party/nearby/src/sharing/contacts/nearby_share_contact_manager_impl_test.cc third_party/nearby/src/sharing/local_device_data/nearby_share_local_device_data_manager_impl_test.cc third_party/nearby/src/sharing/nearby_sharing_service.h third_party/nearby/src/sharing/text_attachment_test.cc third_party/nlohmann_json/src/include/nlohmann/detail/meta/type_traits.hpp third_party/nlohmann_json/src/include/nlohmann/detail/output/serializer.hpp third_party/nlohmann_json/src/single_include/nlohmann/json.hpp third_party/nlohmann_json/src/tests/abi/include/nlohmann/json_v3_10_5.hpp third_party/nlohmann_json/src/tests/src/unit-bson.cpp third_party/nlohmann_json/src/tests/thirdparty/Fuzzer/FuzzerSHA1.cpp third_party/nlohmann_json/src/tests/thirdparty/doctest/doctest.h third_party/node/node_modules/@aashutoshrathi/word-wrap/package.json third_party/node/node_modules/@azure/msal-browser/lib/msal-browser.min.js third_party/node/node_modules/@azure/msal-browser/lib/types/app/PublicClientApplication.d.ts third_party/node/node_modules/@azure/msal-browser/lib/types/app/PublicClientNext.d.ts third_party/node/node_modules/@azure/msal-browser/lib/types/cache/DatabaseStorage.d.ts third_party/node/node_modules/@azure/msal-browser/lib/types/controllers/StandardController.d.ts third_party/node/node_modules/@azure/msal-browser/lib/types/encode/Base64Decode.d.ts third_party/node/node_modules/@azure/msal-browser/lib/types/encode/Base64Encode.d.ts third_party/node/node_modules/@azure/msal-browser/lib/types/network/FetchClient.d.ts third_party/node/node_modules/@azure/msal-browser/package.json third_party/node/node_modules/@azure/msal-common/lib/types/telemetry/performance/PerformanceEvent.d.ts third_party/node/node_modules/@azure/msal-common/package.json third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/from-binary.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/to-binary.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wire/binary-encoding.js third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wire/varint.js third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/any.js third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/any_pb.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/api_pb.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/timestamp_pb.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/cjs/wkt/gen/google/protobuf/type_pb.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/esm/from-binary.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/esm/to-binary.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wire/binary-encoding.js third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wire/varint.js third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/any.js third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/any_pb.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/api_pb.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/timestamp_pb.d.ts third_party/node/node_modules/@bufbuild/protobuf/dist/esm/wkt/gen/google/protobuf/type_pb.d.ts third_party/node/node_modules/@csstools/css-parser-algorithms/package.json third_party/node/node_modules/@csstools/css-syntax-patches-for-csstree/package.json third_party/node/node_modules/@csstools/css-tokenizer/package.json third_party/node/node_modules/@csstools/media-query-list-parser/package.json third_party/node/node_modules/@lit/reactive-element/css-tag.d.ts third_party/node/node_modules/@lit/reactive-element/reactive-element.d.ts third_party/node/node_modules/@mediapipe/tasks-vision/vision.d.ts third_party/node/node_modules/@rollup/wasm-node/dist/shared/index.js third_party/node/node_modules/@rollup/wasm-node/dist/shared/rollup.js third_party/node/node_modules/@sindresorhus/merge-streams/package.json third_party/node/node_modules/@stylistic/stylelint-plugin/lib/utils/isStandardSyntaxValue/index.js third_party/node/node_modules/@stylistic/stylelint-plugin/lib/utils/validateTypes/index.js third_party/node/node_modules/@stylistic/stylelint-plugin/node_modules/postcss-selector-parser/package.json third_party/node/node_modules/@stylistic/stylelint-plugin/package.json third_party/node/node_modules/@types/dom-speech-recognition/index.d.ts third_party/node/node_modules/@types/dom-webcodecs/index.d.ts third_party/node/node_modules/@types/google.analytics/index.d.ts third_party/node/node_modules/@types/offscreencanvas/index.d.ts third_party/node/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js third_party/node/node_modules/acorn/dist/acorn.js third_party/node/node_modules/acorn/package.json third_party/node/node_modules/ajv/dist/ajv.bundle.js third_party/node/node_modules/ansi-regex/package.json third_party/node/node_modules/ansi-styles/package.json third_party/node/node_modules/astral-regex/package.json third_party/node/node_modules/callsites/package.json third_party/node/node_modules/chai/index.js third_party/node/node_modules/chai/package.json third_party/node/node_modules/color-convert/package.json third_party/node/node_modules/color-name/package.json third_party/node/node_modules/cosmiconfig/package.json third_party/node/node_modules/css-functions-list/package.json third_party/node/node_modules/css-tree/data/patch.json third_party/node/node_modules/css-tree/lib/lexer/generic.js third_party/node/node_modules/css-tree/package.json third_party/node/node_modules/csso/lib/restructure/6-restructBlock.js third_party/node/node_modules/csso/lib/restructure/prepare/specificity.js third_party/node/node_modules/csso/node_modules/css-tree/data/patch.json third_party/node/node_modules/csso/node_modules/css-tree/lib/lexer/generic.js third_party/node/node_modules/csso/node_modules/css-tree/package.json third_party/node/node_modules/csso/node_modules/mdn-data/css/at-rules.json third_party/node/node_modules/csso/node_modules/mdn-data/css/at-rules.schema.json third_party/node/node_modules/csso/node_modules/mdn-data/css/properties.json third_party/node/node_modules/csso/node_modules/mdn-data/css/properties.schema.json third_party/node/node_modules/csso/node_modules/mdn-data/css/selectors.json third_party/node/node_modules/csso/node_modules/mdn-data/css/selectors.schema.json third_party/node/node_modules/csso/node_modules/mdn-data/css/types.json third_party/node/node_modules/csso/node_modules/mdn-data/css/types.schema.json third_party/node/node_modules/csso/node_modules/mdn-data/package.json third_party/node/node_modules/csso/package.json third_party/node/node_modules/debug/package.json third_party/node/node_modules/debug/src/browser.js third_party/node/node_modules/domutils/lib/esm/stringify.js third_party/node/node_modules/domutils/lib/stringify.js third_party/node/node_modules/env-paths/package.json third_party/node/node_modules/error-ex/package.json third_party/node/node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp/package.json third_party/node/node_modules/eslint-plugin-jsdoc/src/tagNames.js third_party/node/node_modules/eslint-plugin-lit/lib/rules/no-native-attributes.js third_party/node/node_modules/eslint-scope/lib/definition.js third_party/node/node_modules/eslint-scope/lib/index.js third_party/node/node_modules/eslint-scope/lib/pattern-visitor.js third_party/node/node_modules/eslint-scope/lib/reference.js third_party/node/node_modules/eslint-scope/lib/referencer.js third_party/node/node_modules/eslint-scope/lib/scope-manager.js third_party/node/node_modules/eslint-scope/lib/scope.js third_party/node/node_modules/eslint-scope/lib/variable.js third_party/node/node_modules/eslint/lib/rules/max-lines-per-function.js third_party/node/node_modules/eslint/node_modules/escape-string-regexp/package.json third_party/node/node_modules/espree/espree.js third_party/node/node_modules/esquery/dist/esquery.esm.js third_party/node/node_modules/esquery/dist/esquery.js third_party/node/node_modules/esquery/package.json third_party/node/node_modules/esrecurse/esrecurse.js third_party/node/node_modules/esrecurse/gulpfile.babel.js third_party/node/node_modules/esrecurse/package.json third_party/node/node_modules/estraverse/estraverse.js third_party/node/node_modules/estraverse/gulpfile.js third_party/node/node_modules/estraverse/package.json third_party/node/node_modules/esutils/lib/ast.js third_party/node/node_modules/esutils/lib/code.js third_party/node/node_modules/esutils/lib/keyword.js third_party/node/node_modules/esutils/lib/utils.js third_party/node/node_modules/esutils/package.json third_party/node/node_modules/fast-glob/node_modules/glob-parent/package.json third_party/node/node_modules/fast-glob/out/utils/path.js third_party/node/node_modules/fast-uri/package.json third_party/node/node_modules/find-up/package.json third_party/node/node_modules/get-east-asian-width/package.json third_party/node/node_modules/glob-parent/package.json third_party/node/node_modules/globals/package.json third_party/node/node_modules/globby/package.json third_party/node/node_modules/has-flag/package.json third_party/node/node_modules/html-tags/package.json third_party/node/node_modules/import-fresh/package.json third_party/node/node_modules/import-meta-resolve/package.json third_party/node/node_modules/imurmurhash/imurmurhash.js third_party/node/node_modules/imurmurhash/imurmurhash.min.js third_party/node/node_modules/imurmurhash/package.json third_party/node/node_modules/is-fullwidth-code-point/package.json third_party/node/node_modules/is-path-inside/package.json third_party/node/node_modules/js-yaml/package.json third_party/node/node_modules/json-buffer/package.json third_party/node/node_modules/lit-html/directives/async-append.d.ts third_party/node/node_modules/lit-html/directives/async-replace.d.ts third_party/node/node_modules/locate-path/package.json third_party/node/node_modules/lodash.merge/package.json third_party/node/node_modules/lodash.truncate/package.json third_party/node/node_modules/mathml-tag-names/package.json third_party/node/node_modules/mdn-data/css/at-rules.json third_party/node/node_modules/mdn-data/css/at-rules.schema.json third_party/node/node_modules/mdn-data/css/properties.json third_party/node/node_modules/mdn-data/css/properties.schema.json third_party/node/node_modules/mdn-data/css/selectors.json third_party/node/node_modules/mdn-data/css/selectors.schema.json third_party/node/node_modules/mdn-data/css/types.json third_party/node/node_modules/mdn-data/css/types.schema.json third_party/node/node_modules/mdn-data/package.json third_party/node/node_modules/meow/package.json third_party/node/node_modules/messageformat/lib/functions/datetime.d.ts third_party/node/node_modules/messageformat/lib/functions/datetime.js third_party/node/node_modules/messageformat/lib/messageformat.d.ts third_party/node/node_modules/messageformat/package.json third_party/node/node_modules/mocha/mocha.js third_party/node/node_modules/normalize-path/index.js third_party/node/node_modules/p-limit/package.json third_party/node/node_modules/p-locate/package.json third_party/node/node_modules/parent-module/package.json third_party/node/node_modules/parse-imports/package.json third_party/node/node_modules/parse-json/package.json third_party/node/node_modules/parse5-htmlparser2-tree-adapter/package.json third_party/node/node_modules/parse5/lib/tokenizer/index.js third_party/node/node_modules/parse5/package.json third_party/node/node_modules/path-exists/package.json third_party/node/node_modules/path-key/package.json third_party/node/node_modules/postcss-selector-parser/package.json third_party/node/node_modules/require-from-string/package.json third_party/node/node_modules/resolve-from/package.json third_party/node/node_modules/shebang-command/package.json third_party/node/node_modules/shebang-regex/package.json third_party/node/node_modules/slash/package.json third_party/node/node_modules/source-map-js/lib/base64-vlq.js third_party/node/node_modules/source-map-js/lib/source-map-consumer.js third_party/node/node_modules/source-map-js/package.json third_party/node/node_modules/source-map-support/node_modules/source-map/dist/source-map.js third_party/node/node_modules/source-map-support/node_modules/source-map/lib/base64-vlq.js third_party/node/node_modules/source-map-support/node_modules/source-map/lib/source-map-consumer.js third_party/node/node_modules/source-map-support/node_modules/source-map/package.json third_party/node/node_modules/source-map-support/source-map-support.js third_party/node/node_modules/string-width/package.json third_party/node/node_modules/strip-ansi/package.json third_party/node/node_modules/strip-json-comments/package.json third_party/node/node_modules/stylelint/node_modules/@csstools/selector-resolve-nested/package.json third_party/node/node_modules/stylelint/node_modules/@csstools/selector-specificity/package.json third_party/node/node_modules/stylelint/node_modules/ansi-regex/package.json third_party/node/node_modules/stylelint/node_modules/css-tree/data/patch.json third_party/node/node_modules/stylelint/node_modules/css-tree/lib/lexer/generic.js third_party/node/node_modules/stylelint/node_modules/css-tree/package.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/at-rules.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/at-rules.schema.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/functions.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/functions.schema.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/properties.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/properties.schema.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/selectors.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/selectors.schema.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/types.json third_party/node/node_modules/stylelint/node_modules/mdn-data/css/types.schema.json third_party/node/node_modules/stylelint/node_modules/mdn-data/package.json third_party/node/node_modules/stylelint/node_modules/postcss-selector-parser/package.json third_party/node/node_modules/stylelint/node_modules/string-width/package.json third_party/node/node_modules/stylelint/node_modules/strip-ansi/package.json third_party/node/node_modules/supports-color/package.json third_party/node/node_modules/supports-hyperlinks/node_modules/has-flag/package.json third_party/node/node_modules/supports-hyperlinks/node_modules/supports-color/package.json third_party/node/node_modules/svg-tags/package.json third_party/node/node_modules/svgo/dist/svgo.browser.js third_party/node/node_modules/svgo/plugins/_collections.js third_party/node/node_modules/svgo/plugins/inlineStyles.js third_party/node/node_modules/svgo/plugins/mergeStyles.js third_party/node/node_modules/svgo/plugins/minifyStyles.js third_party/node/node_modules/svgo/plugins/prefixIds.js third_party/node/node_modules/svgo/plugins/removeAttributesBySelector.js third_party/node/node_modules/svgo/plugins/removeDesc.js third_party/node/node_modules/svgo/plugins/removeTitle.js third_party/node/node_modules/terser/dist/bundle.min.js third_party/node/node_modules/terser/lib/ast.js third_party/node/node_modules/terser/lib/compress/common.js third_party/node/node_modules/terser/lib/compress/compressor-flags.js third_party/node/node_modules/terser/lib/compress/drop-side-effect-free.js third_party/node/node_modules/terser/lib/compress/drop-unused.js third_party/node/node_modules/terser/lib/compress/evaluate.js third_party/node/node_modules/terser/lib/compress/index.js third_party/node/node_modules/terser/lib/compress/inference.js third_party/node/node_modules/terser/lib/compress/inline.js third_party/node/node_modules/terser/lib/compress/native-objects.js third_party/node/node_modules/terser/lib/compress/reduce-vars.js third_party/node/node_modules/terser/lib/compress/tighten-body.js third_party/node/node_modules/terser/lib/minify.js third_party/node/node_modules/terser/lib/mozilla-ast.js third_party/node/node_modules/terser/lib/output.js third_party/node/node_modules/terser/lib/parse.js third_party/node/node_modules/terser/lib/propmangle.js third_party/node/node_modules/terser/lib/scope.js third_party/node/node_modules/terser/lib/sourcemap.js third_party/node/node_modules/terser/lib/transform.js third_party/node/node_modules/terser/lib/utils/index.js third_party/node/node_modules/terser/package.json third_party/node/node_modules/ts-proto/build/src/main.js third_party/node/node_modules/ts-proto/build/src/types.js third_party/node/node_modules/typescript/lib/_tsc.js third_party/node/node_modules/typescript/lib/lib.dom.d.ts third_party/node/node_modules/typescript/lib/lib.dom.iterable.d.ts third_party/node/node_modules/typescript/lib/lib.es2016.intl.d.ts third_party/node/node_modules/typescript/lib/lib.es2020.bigint.d.ts third_party/node/node_modules/typescript/lib/lib.es2020.intl.d.ts third_party/node/node_modules/typescript/lib/lib.es2021.intl.d.ts third_party/node/node_modules/typescript/lib/lib.es2022.intl.d.ts third_party/node/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts third_party/node/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts third_party/node/node_modules/typescript/lib/lib.webworker.d.ts third_party/node/node_modules/typescript/lib/lib.webworker.iterable.d.ts third_party/node/node_modules/typescript/lib/typescript.js third_party/node/node_modules/unicorn-magic/package.json third_party/node/node_modules/uri-js/dist/es5/uri.all.js third_party/node/node_modules/uri-js/dist/esnext/uri.js third_party/node/node_modules/uri-js/package.json third_party/node/node_modules/yocto-queue/package.json third_party/node/package.json third_party/oak/src/cc/crypto/tink/signature/testdata/generate_keyset_and_sign.cc third_party/oak/src/cc/crypto/tink/signature/verification_utils.h third_party/oak/src/cc/crypto/tink/signature/verification_utils_test.cc third_party/oak/src/cc/utils/cose/cwt.h third_party/oak/src/java/src/main/java/com/google/oak/client/android/res/values/strings.xml third_party/oak/src/oak_attestation_gcp/testdata/claims.json third_party/oak/src/oak_attestation_gcp/testdata/debug_claims.json third_party/oak/src/oak_attestation_gcp/testdata/expired_claims.json third_party/oak/src/oak_attestation_gcp/testdata/long_lived_claims.json third_party/oak/src/oak_attestation_gcp/testdata/policy_claims.json third_party/oak/src/oak_session/examples/e10_confidential_space_client_server/data/claims.json third_party/openh264/src/build/platform-android-r18b.mk third_party/openh264/src/build/platform-android.mk third_party/openh264/src/codec/build/windowsphone/all/CodecApp/Properties/AppManifest.xml third_party/openh264/src/codec/build/windowsphone/all/CodecApp/Properties/WMAppManifest.xml third_party/openh264/src/module/task_utils.h third_party/openh264/src/module/task_utils.py third_party/openh264/src/module/task_utils_generated.h third_party/openh264/src/test/build/windowsphone/codec_ut/CodecUTApp/Properties/AppManifest.xml third_party/openh264/src/test/build/windowsphone/codec_ut/CodecUTApp/Properties/WMAppManifest.xml third_party/openscreen/src/BUILD.gn third_party/openscreen/src/buildtools/README.txt third_party/openscreen/src/buildtools/clang_format/README.txt third_party/openscreen/src/buildtools/reclient_cfgs/configure_reclient_cfgs.py third_party/openscreen/src/cast/common/BUILD.gn third_party/openscreen/src/cast/common/certificate/boringssl_trust_store.cc third_party/openscreen/src/cast/common/certificate/proto/BUILD.gn third_party/openscreen/src/cast/common/channel/message_util.h third_party/openscreen/src/cast/common/channel/proto/BUILD.gn third_party/openscreen/src/cast/common/discovery/e2e_test/tests.cc third_party/openscreen/src/cast/receiver/BUILD.gn third_party/openscreen/src/cast/sender/channel/cast_auth_util.cc third_party/openscreen/src/cast/standalone_e2e.py third_party/openscreen/src/cast/standalone_receiver/avcodec_glue.h third_party/openscreen/src/cast/standalone_receiver/decoder.cc third_party/openscreen/src/cast/standalone_receiver/simple_remoting_receiver.h third_party/openscreen/src/cast/standalone_sender/connection_settings.h third_party/openscreen/src/cast/standalone_sender/ffmpeg_glue.h third_party/openscreen/src/cast/standalone_sender/remoting_sender.h third_party/openscreen/src/cast/standalone_sender/streaming_video_encoder.h third_party/openscreen/src/cast/streaming/capture_configs.h third_party/openscreen/src/cast/streaming/impl/clock_offset_estimator.h third_party/openscreen/src/cast/streaming/impl/rtp_defines.h third_party/openscreen/src/cast/streaming/impl/sender_session_unittest.cc third_party/openscreen/src/cast/streaming/impl/session_messenger_unittest.cc third_party/openscreen/src/cast/streaming/impl/statistics_analyzer_unittest.cc third_party/openscreen/src/cast/streaming/impl/statistics_collector.cc third_party/openscreen/src/cast/streaming/public/constants.h third_party/openscreen/src/cast/streaming/public/encoded_frame.h third_party/openscreen/src/cast/streaming/public/receiver_constraints.h third_party/openscreen/src/cast/streaming/public/receiver_session.h third_party/openscreen/src/cast/streaming/remoting_capabilities.h third_party/openscreen/src/cast/test/cast_socket_e2e_test.cc third_party/openscreen/src/discovery/common/reporting_client.h third_party/openscreen/src/discovery/dnssd/impl/dns_data_graph.h third_party/openscreen/src/discovery/dnssd/public/dns_sd_instance.h third_party/openscreen/src/discovery/dnssd/public/dns_sd_querier.h third_party/openscreen/src/discovery/mdns/impl/mdns_responder.cc third_party/openscreen/src/discovery/mdns/public/mdns_reader.cc third_party/openscreen/src/discovery/public/dns_sd_service_watcher.h third_party/openscreen/src/osp/impl/quic/certificates/quic_agent_certificate.cc third_party/openscreen/src/osp/public/authentication_base.cc third_party/openscreen/src/platform/impl/tls_connection_factory_posix.cc third_party/openscreen/src/platform/impl/tls_connection_posix.cc third_party/openscreen/src/test/test_main.cc third_party/openscreen/src/testing/libfuzzer/BUILD.gn third_party/openscreen/src/third_party/protobuf/.bcr/metadata.template.json third_party/openscreen/src/third_party/protobuf/CMakeLists.txt third_party/openscreen/src/third_party/protobuf/CONTRIBUTORS.txt third_party/openscreen/src/third_party/protobuf/benchmarks/benchmark.cc third_party/openscreen/src/third_party/protobuf/benchmarks/compare.py third_party/openscreen/src/third_party/protobuf/benchmarks/gen_protobuf_binary_cc.py third_party/openscreen/src/third_party/protobuf/benchmarks/gen_synthetic_protos.py third_party/openscreen/src/third_party/protobuf/benchmarks/gen_upb_binary_c.py third_party/openscreen/src/third_party/protobuf/cmake/dependencies_generator.py third_party/openscreen/src/third_party/protobuf/conformance/binary_json_conformance_suite.cc third_party/openscreen/src/third_party/protobuf/conformance/binary_json_conformance_suite.h third_party/openscreen/src/third_party/protobuf/conformance/conformance_cpp.cc third_party/openscreen/src/third_party/protobuf/conformance/conformance_python.py third_party/openscreen/src/third_party/protobuf/conformance/conformance_test.cc third_party/openscreen/src/third_party/protobuf/conformance/conformance_test.h third_party/openscreen/src/third_party/protobuf/conformance/conformance_test_main.cc third_party/openscreen/src/third_party/protobuf/conformance/conformance_test_runner.cc third_party/openscreen/src/third_party/protobuf/conformance/failure_list_trie_node.cc third_party/openscreen/src/third_party/protobuf/conformance/failure_list_trie_node.h third_party/openscreen/src/third_party/protobuf/conformance/failure_list_trie_node_test.cc third_party/openscreen/src/third_party/protobuf/conformance/fork_pipe_runner.cc third_party/openscreen/src/third_party/protobuf/conformance/fork_pipe_runner.h third_party/openscreen/src/third_party/protobuf/conformance/test_runner.h third_party/openscreen/src/third_party/protobuf/conformance/text_format_conformance_suite.cc third_party/openscreen/src/third_party/protobuf/conformance/text_format_conformance_suite.h third_party/openscreen/src/third_party/protobuf/conformance/update_failure_list.py third_party/openscreen/src/third_party/protobuf/docs/upb/render.py third_party/openscreen/src/third_party/protobuf/editions/generated_files_test.cc third_party/openscreen/src/third_party/protobuf/editions/generated_reflection_test.cc third_party/openscreen/src/third_party/protobuf/hpb/arena.h third_party/openscreen/src/third_party/protobuf/hpb/backend/cpp/cpp.h third_party/openscreen/src/third_party/protobuf/hpb/backend/cpp/interop.h third_party/openscreen/src/third_party/protobuf/hpb/backend/types.h third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/error.h third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/extension.cc third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/extension.h third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/interop.h third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/interop_test.cc third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/repeated_field.h third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/repeated_field_iterator.h third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/repeated_field_iterator_test.cc third_party/openscreen/src/third_party/protobuf/hpb/backend/upb/upb.h third_party/openscreen/src/third_party/protobuf/hpb/extension.cc third_party/openscreen/src/third_party/protobuf/hpb/extension.h third_party/openscreen/src/third_party/protobuf/hpb/hpb.h third_party/openscreen/src/third_party/protobuf/hpb/internal/internal.h third_party/openscreen/src/third_party/protobuf/hpb/internal/message_lock.cc third_party/openscreen/src/third_party/protobuf/hpb/internal/message_lock.h third_party/openscreen/src/third_party/protobuf/hpb/internal/message_lock_test.cc third_party/openscreen/src/third_party/protobuf/hpb/internal/template_help.h third_party/openscreen/src/third_party/protobuf/hpb/internal/template_help_test.cc third_party/openscreen/src/third_party/protobuf/hpb/multibackend.h third_party/openscreen/src/third_party/protobuf/hpb/options.h third_party/openscreen/src/third_party/protobuf/hpb/ptr.h third_party/openscreen/src/third_party/protobuf/hpb/repeated_field.h third_party/openscreen/src/third_party/protobuf/hpb/requires.h third_party/openscreen/src/third_party/protobuf/hpb/status.cc third_party/openscreen/src/third_party/protobuf/hpb/status.h third_party/openscreen/src/third_party/protobuf/hpb/status_test.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/context.h third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_accessors.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_accessors.h third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_enums.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_enums.h third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_extensions.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_extensions.h third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_messages.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_messages.h third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_repeated_fields.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_repeated_fields.h third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_utils.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/gen_utils.h third_party/openscreen/src/third_party/protobuf/hpb_generator/generator.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/generator.h third_party/openscreen/src/third_party/protobuf/hpb_generator/keywords.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/keywords.h third_party/openscreen/src/third_party/protobuf/hpb_generator/names.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/names.h third_party/openscreen/src/third_party/protobuf/hpb_generator/protoc-gen-hpb.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/tests/extension_test.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/tests/multibackend_test.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/tests/repeated_test.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/tests/test_generated.cc third_party/openscreen/src/third_party/protobuf/hpb_generator/tests/test_hpb_bzl_alias.cc third_party/openscreen/src/third_party/protobuf/java/bom/pom.xml third_party/openscreen/src/third_party/protobuf/java/core/pom_template.xml third_party/openscreen/src/third_party/protobuf/java/lite/pom_template.xml third_party/openscreen/src/third_party/protobuf/java/pom.xml third_party/openscreen/src/third_party/protobuf/java/protoc/pom.xml third_party/openscreen/src/third_party/protobuf/java/util/pom_template.xml third_party/openscreen/src/third_party/protobuf/lua/def.c third_party/openscreen/src/third_party/protobuf/lua/main.c third_party/openscreen/src/third_party/protobuf/lua/msg.c third_party/openscreen/src/third_party/protobuf/lua/upb.c third_party/openscreen/src/third_party/protobuf/lua/upb.h third_party/openscreen/src/third_party/protobuf/lua/upbc.cc third_party/openscreen/src/third_party/protobuf/objectivec/DevTools/pddm.py third_party/openscreen/src/third_party/protobuf/objectivec/DevTools/pddm_tests.py third_party/openscreen/src/third_party/protobuf/objectivec/GPBAny.pbobjc.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBApi.pbobjc.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBArray.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBArray_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBBootstrap.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedInputStream.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedOutputStream.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBDescriptor.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBDescriptor_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBDictionary.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBDictionary_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBExtensionInternals.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBExtensionRegistry.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBMessage.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBMessage_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBProtocolBuffers.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBRootObject.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBRootObject_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBRuntimeTypes.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBTimestamp.pbobjc.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBType.pbobjc.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownField.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownField_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownFields.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBUnknownFields_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBUtilities.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBUtilities_PackagePrivate.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBWellKnownTypes.h third_party/openscreen/src/third_party/protobuf/objectivec/GPBWireFormat.h third_party/openscreen/src/third_party/protobuf/objectivec/Tests/GPBObjectiveCPlusPlusTest.mm third_party/openscreen/src/third_party/protobuf/objectivec/Tests/GPBTestUtilities.h third_party/openscreen/src/third_party/protobuf/objectivec/Tests/UnitTests-Bridging-Header.h third_party/openscreen/src/third_party/protobuf/php/composer.json third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/arena.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/arena.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/array.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/array.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/convert.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/convert.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/def.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/def.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/map.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/map.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/message.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/message.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/names.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/names.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/php-upb.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/php-upb.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/php_protobuf.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/print_options.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/print_options.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/protobuf.c third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/protobuf.h third_party/openscreen/src/third_party/protobuf/php/ext/google/protobuf/template_package.xml third_party/openscreen/src/third_party/protobuf/pkg/test/test_lib.cc third_party/openscreen/src/third_party/protobuf/pkg/test/test_lib.h third_party/openscreen/src/third_party/protobuf/python/.repo-metadata.json third_party/openscreen/src/third_party/protobuf/python/convert.c third_party/openscreen/src/third_party/protobuf/python/convert.h third_party/openscreen/src/third_party/protobuf/python/descriptor.c third_party/openscreen/src/third_party/protobuf/python/descriptor.h third_party/openscreen/src/third_party/protobuf/python/descriptor_containers.c third_party/openscreen/src/third_party/protobuf/python/descriptor_containers.h third_party/openscreen/src/third_party/protobuf/python/descriptor_pool.c third_party/openscreen/src/third_party/protobuf/python/descriptor_pool.h third_party/openscreen/src/third_party/protobuf/python/dist/setup.py third_party/openscreen/src/third_party/protobuf/python/docs/conf.py third_party/openscreen/src/third_party/protobuf/python/docs/generate_docs.py third_party/openscreen/src/third_party/protobuf/python/extension_dict.c third_party/openscreen/src/third_party/protobuf/python/extension_dict.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/__init__.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/any.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/descriptor.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/descriptor_database.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/descriptor_pool.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/duration.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/__init__.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/any_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/api_implementation.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/api_implementation.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/builder.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/containers.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/decoder.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/decoder_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/descriptor_database_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/descriptor_pool_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/descriptor_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/duration_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/encoder.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/enum_type_wrapper.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/extension_dict.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/field_mask.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/field_mask_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/generator_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/import_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/import_test_package/__init__.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/json_format_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/keywords_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/message_factory_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/message_listener.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/message_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/numpy/__init__.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/numpy/numpy_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_builder_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_json_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/proto_text_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/pybind11_test_module.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/python_message.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/python_protobuf.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/reflection_cpp_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/reflection_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/runtime_version_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/service_reflection_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/symbol_database_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/test_util.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/testing_refleaks.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/text_format_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/thread_safe_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/timestamp_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/type_checkers.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/unknown_fields_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/well_known_types.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/well_known_types_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/wire_format.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/internal/wire_format_test.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/json_format.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/message.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/message_factory.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_api.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_builder.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_json.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/proto_text.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/cpp_message.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_database.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_database.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/extension_dict.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/extension_dict.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/field.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/field.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/map_container.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/map_container.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message_factory.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message_factory.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/message_module.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/safe_numerics.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/scoped_pyobject_ptr.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/unknown_field_set.cc third_party/openscreen/src/third_party/protobuf/python/google/protobuf/pyext/unknown_field_set.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/python_protobuf.h third_party/openscreen/src/third_party/protobuf/python/google/protobuf/reflection.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/runtime_version.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/service_reflection.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/symbol_database.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/text_encoding.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/text_format.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/timestamp.py third_party/openscreen/src/third_party/protobuf/python/google/protobuf/unknown_fields.py third_party/openscreen/src/third_party/protobuf/python/map.c third_party/openscreen/src/third_party/protobuf/python/map.h third_party/openscreen/src/third_party/protobuf/python/message.c third_party/openscreen/src/third_party/protobuf/python/message.h third_party/openscreen/src/third_party/protobuf/python/minimal_test.py third_party/openscreen/src/third_party/protobuf/python/protobuf.c third_party/openscreen/src/third_party/protobuf/python/protobuf.h third_party/openscreen/src/third_party/protobuf/python/protobuf_distutils/protobuf_distutils/generate_py_protobufs.py third_party/openscreen/src/third_party/protobuf/python/protobuf_distutils/setup.py third_party/openscreen/src/third_party/protobuf/python/python_api.h third_party/openscreen/src/third_party/protobuf/python/python_version_test.py third_party/openscreen/src/third_party/protobuf/python/repeated.c third_party/openscreen/src/third_party/protobuf/python/repeated.h third_party/openscreen/src/third_party/protobuf/python/unknown_fields.c third_party/openscreen/src/third_party/protobuf/python/unknown_fields.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/convert.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/convert.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/defs.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/defs.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/glue.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/map.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/map.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/message.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/message.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.h third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_message.c third_party/openscreen/src/third_party/protobuf/ruby/ext/google/protobuf_c/shared_message.h third_party/openscreen/src/third_party/protobuf/ruby/pom.xml third_party/openscreen/src/third_party/protobuf/rust/cpp_kernel/serialized_data.h third_party/openscreen/src/third_party/protobuf/rust/cpp_kernel/strings.h third_party/openscreen/src/third_party/protobuf/rust/test/cpp/interop/test_utils.cc third_party/openscreen/src/third_party/protobuf/rust/test/rust_proto_library_unit_test/empty.cc third_party/openscreen/src/third_party/protobuf/rust/upb/sys/upb_api.c third_party/openscreen/src/third_party/protobuf/src/google/protobuf/any.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/any.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/any_lite.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/any_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_align.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_align.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_align_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_allocation_policy.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_cleanup.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_test_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arena_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenastring.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenastring.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenastring_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenaz_sampler.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenaz_sampler.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/arenaz_sampler_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/code_generator_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/arena_ctor_visibility_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/bootstrap_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/copy_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/enum.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/enum.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/extension.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/extension.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/cord_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/generators.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/map_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/message_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_view_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/file.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/file_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/generator_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/main.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message_layout_helper.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/message_size_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/metadata_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/move_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/names.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/namespace_printer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/options.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/plugin_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/service.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/service.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto_main.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/cpp/unittest.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_options.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/names.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/csharp/names.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/fake_plugin.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/importer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/importer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/context.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/context.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/file.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/file.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/extension.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/extension.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/generator_factory.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/map_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/map_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/message_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/service.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/service.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/string_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/full/string_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator_factory.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/generator_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/helpers.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/java_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/extension.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/extension.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/generator_factory.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/message_serialization_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/names.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/names.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/names_internal.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/options.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/plugin_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/file.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/file.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/kotlin/message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/main.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/main_no_generators.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/file.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/file.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/names.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/names_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/nsobject_methods.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/options.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/package_info.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/parser.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/parser.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/generator_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/names.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/names.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/php/php_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/plugin.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/plugin.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/helpers.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/helpers.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/plugin_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/python/python_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/retention.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/retention.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/retention_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessor_case.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/map.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/repeated_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_cord.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_scalar.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_string.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/unsupported_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/context.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/context.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/enum.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/enum.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/generator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/generator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/main.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/naming.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/naming.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/oneof.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/oneof.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/relative_path_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/rust/upb_helpers.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/scc.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/subprocess.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/subprocess.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/test_plugin.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/versions.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/versions.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/versions_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/compiler/zip_writer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/debug_counter_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_database.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_database.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_visitor.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/descriptor_visitor_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/drop_unknown_fields_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/dynamic_message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/dynamic_message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/dynamic_message_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/edition_message_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/endian.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/explicitly_constructed.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set_heavy.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set_inl.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/extension_set_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/feature_resolver.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/feature_resolver.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/feature_resolver_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/field_access_listener.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_reflection.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_enum_util_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_bases.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_bases.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_reflection.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_reflection.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/generated_message_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/has_bits.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/has_bits_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/implicit_weak_message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/implicit_weak_message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/inlined_string_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/inlined_string_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/inlined_string_field_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/internal_message_util_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/internal_visibility.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/internal_visibility_for_testing.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/coded_stream.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/coded_stream.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/gzip_stream.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/gzip_stream.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/io_win32.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/io_win32.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/io_win32_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/package_info.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer_death_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/printer_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/strtod.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/strtod.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/tokenizer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/tokenizer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_sink_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/descriptor_traits.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/lexer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/lexer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/lexer_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/message_path.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/message_path.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/parser.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/parser.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/parser_traits.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/unparser.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/unparser.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/unparser_traits.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/untyped_message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/writer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/writer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/json.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/json.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/json/json_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/lazily_build_dependencies_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/lite_arena_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/lite_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_entry.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_field_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_probe_benchmark.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_test_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/map_type_handler.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/message.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/message.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/message_lite.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/message_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/message_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/metadata.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/metadata_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/micro_string.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/micro_string.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/micro_string_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/no_field_presence_map_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/no_field_presence_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/package_info.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/parse_context.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/parse_context.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/port.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/port.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/port_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/preserve_unknown_enum_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/proto3_arena_lite_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/proto3_arena_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/proto3_lite_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/raw_ptr.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/raw_ptr.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/raw_ptr_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/redaction_metric_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_internal.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_mode.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_mode.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_mode_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_ops.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_ops.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_ops_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_tester.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/reflection_tester.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_ptr_field.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/repeated_ptr_field_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/retention_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/serial_arena.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/service.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/service.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_block.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_block_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_member_robber.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/string_piece_field_support_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/callback.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/common.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/common.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/platform_macros.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/port.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/stubs/status_macros.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_textproto.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util2.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util_lite.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/test_util_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/file.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/file.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/googletest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/testing/googletest.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/text_format.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/text_format.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/text_format_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/thread_safe_arena.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/unknown_field_set.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/unknown_field_set.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/delimited_message_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/delimited_message_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/delimited_message_util_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_comparator.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_comparator.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_comparator_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_mask_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_mask_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/field_mask_util_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/internal_timeval.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/json_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/message_differencer.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/message_differencer.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/message_differencer_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/package_info.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/time_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/time_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/time_util_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver_util.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/util/type_resolver_util_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/varint_shuffle.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/varint_shuffle_test.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/well_known_types_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_lite.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_lite.h third_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_unittest.cc third_party/openscreen/src/third_party/protobuf/src/google/protobuf/wire_format_unittest.h third_party/openscreen/src/third_party/protobuf/upb/base/descriptor_constants.h third_party/openscreen/src/third_party/protobuf/upb/base/internal/endian.h third_party/openscreen/src/third_party/protobuf/upb/base/internal/log2.h third_party/openscreen/src/third_party/protobuf/upb/base/status.c third_party/openscreen/src/third_party/protobuf/upb/base/status.h third_party/openscreen/src/third_party/protobuf/upb/base/status.hpp third_party/openscreen/src/third_party/protobuf/upb/base/string_view.h third_party/openscreen/src/third_party/protobuf/upb/base/upcast.h third_party/openscreen/src/third_party/protobuf/upb/bazel/amalgamate.py third_party/openscreen/src/third_party/protobuf/upb/cmake/staleness_test.py third_party/openscreen/src/third_party/protobuf/upb/cmake/staleness_test_lib.py third_party/openscreen/src/third_party/protobuf/upb/conformance/conformance_upb.c third_party/openscreen/src/third_party/protobuf/upb/generated_code_support.h third_party/openscreen/src/third_party/protobuf/upb/hash/common.c third_party/openscreen/src/third_party/protobuf/upb/hash/common.h third_party/openscreen/src/third_party/protobuf/upb/hash/int_table.h third_party/openscreen/src/third_party/protobuf/upb/hash/str_table.h third_party/openscreen/src/third_party/protobuf/upb/hash/test.cc third_party/openscreen/src/third_party/protobuf/upb/io/chunked_input_stream.c third_party/openscreen/src/third_party/protobuf/upb/io/chunked_input_stream.h third_party/openscreen/src/third_party/protobuf/upb/io/chunked_output_stream.c third_party/openscreen/src/third_party/protobuf/upb/io/chunked_output_stream.h third_party/openscreen/src/third_party/protobuf/upb/io/string.h third_party/openscreen/src/third_party/protobuf/upb/io/string_test.cc third_party/openscreen/src/third_party/protobuf/upb/io/tokenizer.c third_party/openscreen/src/third_party/protobuf/upb/io/tokenizer.h third_party/openscreen/src/third_party/protobuf/upb/io/tokenizer_test.cc third_party/openscreen/src/third_party/protobuf/upb/io/zero_copy_input_stream.h third_party/openscreen/src/third_party/protobuf/upb/io/zero_copy_output_stream.h third_party/openscreen/src/third_party/protobuf/upb/io/zero_copy_stream_test.cc third_party/openscreen/src/third_party/protobuf/upb/json/decode.c third_party/openscreen/src/third_party/protobuf/upb/json/decode.h third_party/openscreen/src/third_party/protobuf/upb/json/decode_test.cc third_party/openscreen/src/third_party/protobuf/upb/json/encode.c third_party/openscreen/src/third_party/protobuf/upb/json/encode.h third_party/openscreen/src/third_party/protobuf/upb/json/encode_test.cc third_party/openscreen/src/third_party/protobuf/upb/json/fuzz_test.cc third_party/openscreen/src/third_party/protobuf/upb/lex/atoi.c third_party/openscreen/src/third_party/protobuf/upb/lex/atoi.h third_party/openscreen/src/third_party/protobuf/upb/lex/atoi_test.cc third_party/openscreen/src/third_party/protobuf/upb/lex/round_trip.c third_party/openscreen/src/third_party/protobuf/upb/lex/round_trip.h third_party/openscreen/src/third_party/protobuf/upb/lex/strtod.c third_party/openscreen/src/third_party/protobuf/upb/lex/strtod.h third_party/openscreen/src/third_party/protobuf/upb/lex/unicode.c third_party/openscreen/src/third_party/protobuf/upb/lex/unicode.h third_party/openscreen/src/third_party/protobuf/upb/mem/alloc.c third_party/openscreen/src/third_party/protobuf/upb/mem/alloc.h third_party/openscreen/src/third_party/protobuf/upb/mem/arena.c third_party/openscreen/src/third_party/protobuf/upb/mem/arena.h third_party/openscreen/src/third_party/protobuf/upb/mem/arena.hpp third_party/openscreen/src/third_party/protobuf/upb/mem/arena_test.cc third_party/openscreen/src/third_party/protobuf/upb/mem/internal/arena.h third_party/openscreen/src/third_party/protobuf/upb/message/accessors.c third_party/openscreen/src/third_party/protobuf/upb/message/accessors.h third_party/openscreen/src/third_party/protobuf/upb/message/accessors.hpp third_party/openscreen/src/third_party/protobuf/upb/message/accessors_split64.h third_party/openscreen/src/third_party/protobuf/upb/message/accessors_test.cc third_party/openscreen/src/third_party/protobuf/upb/message/array.c third_party/openscreen/src/third_party/protobuf/upb/message/array.h third_party/openscreen/src/third_party/protobuf/upb/message/array_test.cc third_party/openscreen/src/third_party/protobuf/upb/message/compare.c third_party/openscreen/src/third_party/protobuf/upb/message/compare.h third_party/openscreen/src/third_party/protobuf/upb/message/compat.c third_party/openscreen/src/third_party/protobuf/upb/message/compat.h third_party/openscreen/src/third_party/protobuf/upb/message/copy.c third_party/openscreen/src/third_party/protobuf/upb/message/copy.h third_party/openscreen/src/third_party/protobuf/upb/message/copy_test.cc third_party/openscreen/src/third_party/protobuf/upb/message/internal/accessors.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/array.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/compare_unknown.c third_party/openscreen/src/third_party/protobuf/upb/message/internal/compare_unknown.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/compare_unknown_test.cc third_party/openscreen/src/third_party/protobuf/upb/message/internal/extension.c third_party/openscreen/src/third_party/protobuf/upb/message/internal/extension.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/iterator.c third_party/openscreen/src/third_party/protobuf/upb/message/internal/iterator.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/map.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/map_entry.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/map_sorter.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/message.c third_party/openscreen/src/third_party/protobuf/upb/message/internal/message.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/tagged_ptr.h third_party/openscreen/src/third_party/protobuf/upb/message/internal/types.h third_party/openscreen/src/third_party/protobuf/upb/message/map.c third_party/openscreen/src/third_party/protobuf/upb/message/map.h third_party/openscreen/src/third_party/protobuf/upb/message/map_gencode_util.h third_party/openscreen/src/third_party/protobuf/upb/message/map_sorter.c third_party/openscreen/src/third_party/protobuf/upb/message/map_test.cc third_party/openscreen/src/third_party/protobuf/upb/message/message.c third_party/openscreen/src/third_party/protobuf/upb/message/message.h third_party/openscreen/src/third_party/protobuf/upb/message/promote.c third_party/openscreen/src/third_party/protobuf/upb/message/promote.h third_party/openscreen/src/third_party/protobuf/upb/message/promote_test.cc third_party/openscreen/src/third_party/protobuf/upb/message/tagged_ptr.h third_party/openscreen/src/third_party/protobuf/upb/message/test.cc third_party/openscreen/src/third_party/protobuf/upb/message/utf8_test.cc third_party/openscreen/src/third_party/protobuf/upb/message/value.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/build_enum.c third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/build_enum.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/decode.c third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/decode.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/base92.c third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/base92.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/decoder.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode.c third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode.hpp third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/encode_test.cc third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/modifiers.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/internal/wire_constants.h third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/link.c third_party/openscreen/src/third_party/protobuf/upb/mini_descriptor/link.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/compat.c third_party/openscreen/src/third_party/protobuf/upb/mini_table/compat.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/compat_test.cc third_party/openscreen/src/third_party/protobuf/upb/mini_table/enum.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/extension.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/extension_registry.c third_party/openscreen/src/third_party/protobuf/upb/mini_table/extension_registry.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/field.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/file.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/enum.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/extension.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/field.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/file.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/message.c third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/message.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/size_log2.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/internal/sub.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/message.c third_party/openscreen/src/third_party/protobuf/upb/mini_table/message.h third_party/openscreen/src/third_party/protobuf/upb/mini_table/sub.h third_party/openscreen/src/third_party/protobuf/upb/port/atomic.h third_party/openscreen/src/third_party/protobuf/upb/port/sanitizers.h third_party/openscreen/src/third_party/protobuf/upb/port/vsnprintf_compat.h third_party/openscreen/src/third_party/protobuf/upb/reflection/common.h third_party/openscreen/src/third_party/protobuf/upb/reflection/def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/def.hpp third_party/openscreen/src/third_party/protobuf/upb/reflection/def_pool.c third_party/openscreen/src/third_party/protobuf/upb/reflection/def_pool.h third_party/openscreen/src/third_party/protobuf/upb/reflection/def_type.c third_party/openscreen/src/third_party/protobuf/upb/reflection/def_type.h third_party/openscreen/src/third_party/protobuf/upb/reflection/desc_state.c third_party/openscreen/src/third_party/protobuf/upb/reflection/enum_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/enum_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/enum_reserved_range.c third_party/openscreen/src/third_party/protobuf/upb/reflection/enum_reserved_range.h third_party/openscreen/src/third_party/protobuf/upb/reflection/enum_value_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/enum_value_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/extension_range.c third_party/openscreen/src/third_party/protobuf/upb/reflection/extension_range.h third_party/openscreen/src/third_party/protobuf/upb/reflection/field_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/field_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/file_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/file_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_builder.c third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_builder.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_builder_test.cc third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/def_pool.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/desc_state.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/enum_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/enum_reserved_range.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/enum_value_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/extension_range.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/field_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/file_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/message_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/message_reserved_range.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/method_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/oneof_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/service_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/strdup2.c third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/strdup2.h third_party/openscreen/src/third_party/protobuf/upb/reflection/internal/upb_edition_defaults.h third_party/openscreen/src/third_party/protobuf/upb/reflection/message.c third_party/openscreen/src/third_party/protobuf/upb/reflection/message.h third_party/openscreen/src/third_party/protobuf/upb/reflection/message.hpp third_party/openscreen/src/third_party/protobuf/upb/reflection/message_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/message_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/message_reserved_range.c third_party/openscreen/src/third_party/protobuf/upb/reflection/message_reserved_range.h third_party/openscreen/src/third_party/protobuf/upb/reflection/method_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/method_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/oneof_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/oneof_def.h third_party/openscreen/src/third_party/protobuf/upb/reflection/service_def.c third_party/openscreen/src/third_party/protobuf/upb/reflection/service_def.h third_party/openscreen/src/third_party/protobuf/upb/test/editions_test.cc third_party/openscreen/src/third_party/protobuf/upb/test/fuzz_util.cc third_party/openscreen/src/third_party/protobuf/upb/test/fuzz_util.h third_party/openscreen/src/third_party/protobuf/upb/test/parse_text_proto.h third_party/openscreen/src/third_party/protobuf/upb/test/proto3_test.cc third_party/openscreen/src/third_party/protobuf/upb/test/test_cpp.cc third_party/openscreen/src/third_party/protobuf/upb/test/test_generated_code.cc third_party/openscreen/src/third_party/protobuf/upb/test/test_import_empty_srcs.cc third_party/openscreen/src/third_party/protobuf/upb/test/test_mini_table_oneof.cc third_party/openscreen/src/third_party/protobuf/upb/text/debug_string.c third_party/openscreen/src/third_party/protobuf/upb/text/debug_string.h third_party/openscreen/src/third_party/protobuf/upb/text/encode.c third_party/openscreen/src/third_party/protobuf/upb/text/encode.h third_party/openscreen/src/third_party/protobuf/upb/text/encode_debug_test.cc third_party/openscreen/src/third_party/protobuf/upb/text/internal/encode.c third_party/openscreen/src/third_party/protobuf/upb/text/internal/encode.h third_party/openscreen/src/third_party/protobuf/upb/text/options.h third_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto.c third_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto.h third_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto_fuzz_test.cc third_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto_test.cc third_party/openscreen/src/third_party/protobuf/upb/util/def_to_proto_test.h third_party/openscreen/src/third_party/protobuf/upb/util/required_fields.c third_party/openscreen/src/third_party/protobuf/upb/util/required_fields.h third_party/openscreen/src/third_party/protobuf/upb/util/required_fields_test.cc third_party/openscreen/src/third_party/protobuf/upb/wire/byte_size.c third_party/openscreen/src/third_party/protobuf/upb/wire/byte_size.h third_party/openscreen/src/third_party/protobuf/upb/wire/byte_size_test.cc third_party/openscreen/src/third_party/protobuf/upb/wire/decode.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_benchmark.cc third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/cardinality.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/combinations.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/data.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/dispatch.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/dispatch.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_fixed.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_message.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_parsers.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_string.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/field_varint.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/function_array.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/function_array.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/select.c third_party/openscreen/src/third_party/protobuf/upb/wire/decode_fast/select.h third_party/openscreen/src/third_party/protobuf/upb/wire/decode_test.cc third_party/openscreen/src/third_party/protobuf/upb/wire/encode.c third_party/openscreen/src/third_party/protobuf/upb/wire/encode.h third_party/openscreen/src/third_party/protobuf/upb/wire/eps_copy_input_stream.c third_party/openscreen/src/third_party/protobuf/upb/wire/eps_copy_input_stream.h third_party/openscreen/src/third_party/protobuf/upb/wire/eps_copy_input_stream_test.cc third_party/openscreen/src/third_party/protobuf/upb/wire/internal/constants.h third_party/openscreen/src/third_party/protobuf/upb/wire/internal/decoder.c third_party/openscreen/src/third_party/protobuf/upb/wire/internal/decoder.h third_party/openscreen/src/third_party/protobuf/upb/wire/internal/reader.h third_party/openscreen/src/third_party/protobuf/upb/wire/reader.c third_party/openscreen/src/third_party/protobuf/upb/wire/reader.h third_party/openscreen/src/third_party/protobuf/upb/wire/test_util/field_types.h third_party/openscreen/src/third_party/protobuf/upb/wire/test_util/make_mini_table.cc third_party/openscreen/src/third_party/protobuf/upb/wire/test_util/make_mini_table.h third_party/openscreen/src/third_party/protobuf/upb/wire/test_util/wire_message.cc third_party/openscreen/src/third_party/protobuf/upb/wire/test_util/wire_message.h third_party/openscreen/src/third_party/protobuf/upb/wire/types.h third_party/openscreen/src/third_party/protobuf/upb_generator/c/generator.cc third_party/openscreen/src/third_party/protobuf/upb_generator/c/names.cc third_party/openscreen/src/third_party/protobuf/upb_generator/c/names.h third_party/openscreen/src/third_party/protobuf/upb_generator/c/names_internal.cc third_party/openscreen/src/third_party/protobuf/upb_generator/c/names_internal.h third_party/openscreen/src/third_party/protobuf/upb_generator/common.cc third_party/openscreen/src/third_party/protobuf/upb_generator/common.h third_party/openscreen/src/third_party/protobuf/upb_generator/common/cpp_to_upb_def.cc third_party/openscreen/src/third_party/protobuf/upb_generator/common/cpp_to_upb_def.h third_party/openscreen/src/third_party/protobuf/upb_generator/common/names.cc third_party/openscreen/src/third_party/protobuf/upb_generator/common/names.h third_party/openscreen/src/third_party/protobuf/upb_generator/file_layout.cc third_party/openscreen/src/third_party/protobuf/upb_generator/file_layout.h third_party/openscreen/src/third_party/protobuf/upb_generator/minitable/generator.cc third_party/openscreen/src/third_party/protobuf/upb_generator/minitable/generator.h third_party/openscreen/src/third_party/protobuf/upb_generator/minitable/main.cc third_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names.cc third_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names.h third_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names_internal.cc third_party/openscreen/src/third_party/protobuf/upb_generator/minitable/names_internal.h third_party/openscreen/src/third_party/protobuf/upb_generator/plugin.cc third_party/openscreen/src/third_party/protobuf/upb_generator/plugin.h third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/context.h third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/generator.cc third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/header.cc third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/header.h third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/names.cc third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/names.h third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/source.cc third_party/openscreen/src/third_party/protobuf/upb_generator/reflection/source.h third_party/openscreen/src/third_party/quiche/BUILD.gn third_party/openscreen/src/tools/cddl/sema.cc third_party/openscreen/src/tools/licenses.py third_party/openscreen/src/util/crypto/rsa_private_key_unittest.cc third_party/openscreen/src/util/scoped_wake_lock.h third_party/openscreen/src/util/url_unittest.cc third_party/opus/src/doc/draft-ietf-codec-oggopus.xml third_party/opus/src/doc/draft-ietf-codec-opus-update.xml third_party/opus/src/doc/draft-ietf-codec-opus.xml third_party/opus/src/doc/draft-ietf-payload-rtp-opus.xml third_party/opus/src/doc/opus_in_isobmff.html third_party/opus/src/doc/release.txt third_party/ots/src/src/cff.cc third_party/ots/src/src/cff_charstring.h third_party/ots/src/src/cmap.cc third_party/ots/src/src/cvt.cc third_party/ots/src/src/fpgm.cc third_party/ots/src/src/gasp.cc third_party/ots/src/src/gdef.cc third_party/ots/src/src/glyf.cc third_party/ots/src/src/gpos.cc third_party/ots/src/src/gsub.cc third_party/ots/src/src/hdmx.cc third_party/ots/src/src/head.cc third_party/ots/src/src/hhea.cc third_party/ots/src/src/kern.cc third_party/ots/src/src/layout.cc third_party/ots/src/src/layout.h third_party/ots/src/src/loca.cc third_party/ots/src/src/ltsh.cc third_party/ots/src/src/math.cc third_party/ots/src/src/maxp.cc third_party/ots/src/src/metrics.cc third_party/ots/src/src/name.cc third_party/ots/src/src/os2.cc third_party/ots/src/src/ots.cc third_party/ots/src/src/post.cc third_party/ots/src/src/prep.cc third_party/ots/src/src/vdmx.cc third_party/ots/src/src/vhea.cc third_party/ots/src/src/vorg.cc third_party/pdfium/PRESUBMIT.py third_party/pdfium/core/fpdfapi/cmaps/fpdf_cmaps.cpp third_party/pdfium/core/fpdfapi/edit/cpdf_contentstream_write_utils.cpp third_party/pdfium/core/fpdftext/cpdf_linkextract_unittest.cpp third_party/pdfium/core/fxcrt/fx_memory.cpp third_party/pdfium/core/fxcrt/fx_memory_pa.cpp third_party/pdfium/core/fxcrt/widestring_unittest.cpp third_party/pdfium/core/fxge/win32/cgdi_device_driver.cpp third_party/pdfium/fpdfsdk/PRESUBMIT.py third_party/pdfium/fpdfsdk/fpdf_annot_embeddertest.cpp third_party/pdfium/fpdfsdk/fpdf_edit_embeddertest.cpp third_party/pdfium/fpdfsdk/fpdf_formfill_embeddertest.cpp third_party/pdfium/fpdfsdk/fpdf_text_embeddertest.cpp third_party/pdfium/public/PRESUBMIT.py third_party/pdfium/public/fpdf_doc.h third_party/pdfium/skia/config/SkPdfiumUserConfig.h third_party/pdfium/testing/gtest/BUILD.gn third_party/pdfium/testing/tools/PRESUBMIT.py third_party/pdfium/testing/tools/safetynet_compare.py third_party/pdfium/third_party/agg23/agg_math.h third_party/pdfium/third_party/freetype/include/freetype-custom-config/ftoption.h third_party/pdfium/third_party/libopenjpeg/j2k.c third_party/pdfium/third_party/libopenjpeg/opj_includes.h third_party/pdfium/third_party/libopenjpeg/t2.c third_party/pdfium/tools/lsan/lsan_suppressions.txt third_party/pdfium/tools/roll_pdfium_deps_test.py third_party/pefile_py3/pefile.py third_party/perfetto/CONTRIBUTORS.txt third_party/perfetto/gn/standalone/BUILD.gn third_party/perfetto/gn/standalone/toolchain/msvc.gni third_party/perfetto/include/perfetto/base/build_config.h third_party/perfetto/include/perfetto/base/thread_annotations.h third_party/perfetto/include/perfetto/ext/base/unix_socket.h third_party/perfetto/include/perfetto/protozero/proto_utils.h third_party/perfetto/include/perfetto/public/te_category_macros.h third_party/perfetto/include/perfetto/tracing/internal/track_event_legacy.h third_party/perfetto/infra/ci/Makefile third_party/perfetto/infra/ci/common_utils.py third_party/perfetto/infra/ci/config.py third_party/perfetto/infra/ci/frontend/main.py third_party/perfetto/infra/ci/frontend/stackdriver_metrics.py third_party/perfetto/infra/ci/frontend/static/index.html third_party/perfetto/infra/ci/frontend/static/script.js third_party/perfetto/infra/git_mirror_bot/Makefile third_party/perfetto/infra/git_mirror_bot/mirror_aosp_to_ghub_repo.py third_party/perfetto/infra/luci/recipe_modules/macos_sdk/__init__.py third_party/perfetto/infra/luci/recipes.py third_party/perfetto/infra/luci/recipes/perfetto.expected/ci_android.json third_party/perfetto/infra/luci/recipes/perfetto.expected/ci_linux.json third_party/perfetto/infra/luci/recipes/perfetto.expected/ci_mac.json third_party/perfetto/infra/luci/recipes/perfetto.expected/ci_tag.json third_party/perfetto/infra/luci/recipes/perfetto.expected/ci_win.json third_party/perfetto/infra/luci/recipes/perfetto.expected/unofficial.json third_party/perfetto/infra/luci/recipes/perfetto.py third_party/perfetto/infra/perfetto.dev/appengine/main.py third_party/perfetto/infra/perfetto.dev/src/assets/script.js third_party/perfetto/infra/perfetto.dev/src/markdown_render.js third_party/perfetto/infra/perfetto.dev/src/template_footer.html third_party/perfetto/infra/perfetto.dev/src/template_header.html third_party/perfetto/infra/ui.perfetto.dev/appengine/main.py third_party/perfetto/python/perfetto/prebuilts/manifests/trace_processor_shell.py third_party/perfetto/python/perfetto/prebuilts/manifests/tracebox.py third_party/perfetto/python/perfetto/prebuilts/manifests/traceconv.py third_party/perfetto/python/perfetto/prebuilts/perfetto_prebuilts.py third_party/perfetto/python/setup.py third_party/perfetto/python/tools/install_test_reporter_app.py third_party/perfetto/python/tools/record_android_trace.py third_party/perfetto/python/tools/update_permalink.py third_party/perfetto/src/android_internal/health_hal.cc third_party/perfetto/src/android_sdk/jni/dev_perfetto_sdk_PerfettoNativeMemoryCleaner.cc third_party/perfetto/src/android_sdk/nativehelper/BUILD.gn third_party/perfetto/src/android_sdk/nativehelper/JNIHelp.h third_party/perfetto/src/android_sdk/nativehelper/nativehelper_utils.h third_party/perfetto/src/android_sdk/nativehelper/scoped_local_frame.h third_party/perfetto/src/android_sdk/nativehelper/scoped_local_ref.h third_party/perfetto/src/android_sdk/nativehelper/scoped_primitive_array.h third_party/perfetto/src/android_sdk/nativehelper/scoped_string_chars.h third_party/perfetto/src/android_sdk/nativehelper/scoped_utf_chars.h third_party/perfetto/src/android_sdk/nativehelper/utils.h third_party/perfetto/src/android_sdk/perfetto_sdk_for_jni/tracing_sdk.h third_party/perfetto/src/base/flat_hash_map_benchmark.cc third_party/perfetto/src/base/time.cc third_party/perfetto/src/base/utils.cc third_party/perfetto/src/bigtrace/worker/repository_policies/gcs_trace_processor_loader.cc third_party/perfetto/src/perfetto_cmd/perfetto_cmd_android.cc third_party/perfetto/src/profiling/common/proc_utils.cc third_party/perfetto/src/profiling/memory/client.cc third_party/perfetto/src/profiling/memory/sampler.h third_party/perfetto/src/profiling/memory/shared_ring_buffer.cc third_party/perfetto/src/profiling/memory/system_property.h third_party/perfetto/src/trace_processor/importers/art_method/art_method_parser.cc third_party/perfetto/src/trace_processor/importers/art_method/art_method_tokenizer.cc third_party/perfetto/src/trace_processor/importers/common/args_translation_table.cc third_party/perfetto/src/trace_processor/importers/common/thread_state_tracker.cc third_party/perfetto/src/trace_processor/importers/etw/etw_parser.cc third_party/perfetto/src/trace_processor/importers/etw/file_io_tracker.cc third_party/perfetto/src/trace_processor/importers/etw/file_io_tracker.h third_party/perfetto/src/trace_processor/importers/ftrace/binder_tracker.cc third_party/perfetto/src/trace_processor/importers/fuchsia/fuchsia_trace_tokenizer.h third_party/perfetto/src/trace_processor/importers/fuchsia/fuchsia_trace_utils.h third_party/perfetto/src/trace_processor/importers/ninja/ninja_log_parser.cc third_party/perfetto/src/trace_processor/importers/proto/android_probes_parser.cc third_party/perfetto/src/trace_processor/importers/proto/heap_graph_tracker.cc third_party/perfetto/src/trace_processor/importers/proto/heap_graph_tracker_unittest.cc third_party/perfetto/src/trace_processor/importers/proto/statsd_module.cc third_party/perfetto/src/trace_processor/importers/proto/system_probes_parser.cc third_party/perfetto/src/trace_processor/perfetto_sql/stdlib/android/battery/doze.sql third_party/perfetto/src/trace_processor/perfetto_sql/stdlib/android/startup/time_to_display.sql third_party/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/page_loads.sql third_party/perfetto/src/trace_processor/perfetto_sql/stdlib/chrome/scroll_jank_v4.sql third_party/perfetto/src/trace_processor/perfetto_sql/stdlib/export/to_firefox_profile.sql third_party/perfetto/src/trace_processor/perfetto_sql/stdlib/stacks/symbolization_candidates.sql third_party/perfetto/src/trace_processor/util/deobfuscation/deobfuscator_unittest.cc third_party/perfetto/src/trace_processor/util/symbolizer/breakpad_parser.h third_party/perfetto/src/trace_processor/util/trace_type.cc third_party/perfetto/src/trace_redaction/redact_process_events.cc third_party/perfetto/src/traceconv/trace_to_firefox.h third_party/perfetto/src/traceconv/trace_to_hprof.cc third_party/perfetto/src/traced/probes/android_log/android_log_data_source.cc third_party/perfetto/src/tracing/service/tracing_service_impl_unittest.cc third_party/perfetto/test/cts/AndroidTest.xml third_party/perfetto/test/cts/art_module/AndroidTest.xml third_party/perfetto/test/cts/heapprofd_test_helper.cc third_party/perfetto/test/cts/reporter/AndroidTest.xml third_party/perfetto/test/trace_processor/diff_tests/parser/art_hprof/tests.py third_party/perfetto/test/trace_processor/diff_tests/parser/chrome/tests_v8.py third_party/perfetto/test/trace_processor/diff_tests/parser/simpleperf/tests.py third_party/perfetto/test/vts/AndroidTest.xml third_party/perfetto/tools/download_changed_screenshots.py third_party/perfetto/tools/release/release_perfetto.py third_party/perfetto/ui/.eslintrc.js third_party/perfetto/ui/release/build_all_channels.py third_party/perfetto/ui/src/assets/bigtrace.html third_party/perfetto/ui/src/assets/index.html third_party/perfetto/ui/src/base/errors.ts third_party/perfetto/ui/src/base/gcs_uploader.ts third_party/perfetto/ui/src/chrome_extension/index.ts third_party/perfetto/ui/src/core/analytics_impl.ts third_party/perfetto/ui/src/core/cookie_consent.ts third_party/perfetto/ui/src/core_plugins/dev.perfetto.ExampleTraces/index.ts third_party/perfetto/ui/src/frontend/css_constants.ts third_party/perfetto/ui/src/frontend/error_dialog.ts third_party/perfetto/ui/src/frontend/home_page.ts third_party/perfetto/ui/src/frontend/index.ts third_party/perfetto/ui/src/frontend/is_internal_user_script_loader.ts third_party/perfetto/ui/src/frontend/legacy_trace_viewer.ts third_party/perfetto/ui/src/frontend/permalink.ts third_party/perfetto/ui/src/frontend/post_message_handler.ts third_party/perfetto/ui/src/frontend/post_message_handler_unittest.ts third_party/perfetto/ui/src/frontend/sidebar.ts third_party/perfetto/ui/src/frontend/timeline_page/wasd_navigation_handler.ts third_party/perfetto/ui/src/open_perfetto_trace/index.html third_party/perfetto/ui/src/plugins/dev.perfetto.ProcessSummary/index.ts third_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/adb/adb_msg.ts third_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/adb/web_device_proxy/wdp_target_provider.ts third_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/pages/android.ts third_party/perfetto/ui/src/plugins/dev.perfetto.RecordTraceV2/pages/record_page.ts third_party/perfetto/ui/src/plugins/dev.perfetto.TraceInfoPage/tabs/android.ts third_party/perfetto/ui/src/plugins/dev.perfetto.TraceProcessorTrack/slice_tracks.ts third_party/perfetto/ui/src/plugins/org.chromium.ChromeScrollJank/scroll_timeline_v4_model.ts third_party/perfetto/ui/src/plugins/org.kernel.Wattson/warning.ts third_party/perfetto/ui/src/service_worker/service_worker.ts third_party/perfetto/ui/src/trace_processor/engine.ts third_party/perfetto/ui/src/widgets/hotkey_context.ts third_party/polymer/v3_0/BUILD.gn third_party/polymer/v3_0/components-chromium/iron-a11y-keys-behavior/iron-a11y-keys-behavior.js third_party/polymer/v3_0/components-chromium/iron-overlay-behavior/iron-focusables-helper.js third_party/polymer/v3_0/components-chromium/iron-overlay-behavior/iron-overlay-manager.js third_party/polymer/v3_0/components-chromium/iron-test-helpers/mock-interactions.js third_party/polymer/v3_0/components-chromium/neon-animation/neon-animated-pages.d.ts third_party/polymer/v3_0/components-chromium/neon-animation/neon-animated-pages.js third_party/polymer/v3_0/components-chromium/paper-progress/paper-progress.d.ts third_party/polymer/v3_0/components-chromium/paper-progress/paper-progress.js third_party/polymer/v3_0/components-chromium/paper-spinner/paper-spinner-lite.d.ts third_party/polymer/v3_0/components-chromium/paper-spinner/paper-spinner-lite.js third_party/polymer/v3_0/components-chromium/paper-tooltip/paper-tooltip.d.ts third_party/polymer/v3_0/components-chromium/paper-tooltip/paper-tooltip.js third_party/polymer/v3_0/components-chromium/polymer/interfaces.d.ts third_party/polymer/v3_0/package.json third_party/private_membership/BUILD.gn third_party/protobuf-javascript/src/binary/arith.js third_party/protobuf-javascript/src/binary/arith_test.js third_party/protobuf-javascript/src/binary/decoder.js third_party/protobuf-javascript/src/binary/decoder_test.js third_party/protobuf-javascript/src/binary/encoder.js third_party/protobuf-javascript/src/binary/proto_test.js third_party/protobuf-javascript/src/binary/reader.js third_party/protobuf-javascript/src/binary/reader_test.js third_party/protobuf-javascript/src/binary/test_utils.js third_party/protobuf-javascript/src/binary/utils.js third_party/protobuf-javascript/src/binary/utils_test.js third_party/protobuf-javascript/src/binary/writer.js third_party/protobuf-javascript/src/binary/writer_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/arith_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/decoder_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/reader_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/utils_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.0.0/binary/writer_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/arith_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/decoder_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/reader_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/utils_test.js third_party/protobuf-javascript/src/compatibility_tests/v3.1.0/binary/writer_test.js third_party/protobuf-javascript/src/experimental/runtime/int64.js third_party/protobuf-javascript/src/experimental/runtime/kernel/storage.js third_party/protobuf-javascript/src/generator/js_generator.cc third_party/protobuf-javascript/src/generator/well_known_types_embed.cc third_party/protobuf-javascript/src/internal_public.js third_party/protobuf-javascript/src/map.js third_party/protobuf-javascript/src/message.js third_party/protobuf/.bcr/metadata.template.json third_party/protobuf/CMakeLists.txt third_party/protobuf/CONTRIBUTORS.txt third_party/protobuf/benchmarks/benchmark.cc third_party/protobuf/benchmarks/compare.py third_party/protobuf/benchmarks/gen_protobuf_binary_cc.py third_party/protobuf/benchmarks/gen_synthetic_protos.py third_party/protobuf/benchmarks/gen_upb_binary_c.py third_party/protobuf/cmake/dependencies_generator.py third_party/protobuf/conformance/binary_json_conformance_suite.cc third_party/protobuf/conformance/binary_json_conformance_suite.h third_party/protobuf/conformance/conformance_cpp.cc third_party/protobuf/conformance/conformance_python.py third_party/protobuf/conformance/conformance_test.cc third_party/protobuf/conformance/conformance_test.h third_party/protobuf/conformance/conformance_test_main.cc third_party/protobuf/conformance/conformance_test_runner.cc third_party/protobuf/conformance/failure_list_trie_node.cc third_party/protobuf/conformance/failure_list_trie_node.h third_party/protobuf/conformance/failure_list_trie_node_test.cc third_party/protobuf/conformance/fork_pipe_runner.cc third_party/protobuf/conformance/fork_pipe_runner.h third_party/protobuf/conformance/test_runner.h third_party/protobuf/conformance/text_format_conformance_suite.cc third_party/protobuf/conformance/text_format_conformance_suite.h third_party/protobuf/conformance/update_failure_list.py third_party/protobuf/docs/upb/render.py third_party/protobuf/editions/generated_files_test.cc third_party/protobuf/editions/generated_reflection_test.cc third_party/protobuf/hpb/arena.h third_party/protobuf/hpb/backend/cpp/cpp.h third_party/protobuf/hpb/backend/cpp/interop.h third_party/protobuf/hpb/backend/types.h third_party/protobuf/hpb/backend/upb/error.h third_party/protobuf/hpb/backend/upb/extension.cc third_party/protobuf/hpb/backend/upb/extension.h third_party/protobuf/hpb/backend/upb/interop.h third_party/protobuf/hpb/backend/upb/interop_test.cc third_party/protobuf/hpb/backend/upb/repeated_field.h third_party/protobuf/hpb/backend/upb/repeated_field_iterator.h third_party/protobuf/hpb/backend/upb/repeated_field_iterator_test.cc third_party/protobuf/hpb/backend/upb/upb.h third_party/protobuf/hpb/extension.cc third_party/protobuf/hpb/extension.h third_party/protobuf/hpb/hpb.h third_party/protobuf/hpb/internal/internal.h third_party/protobuf/hpb/internal/message_lock.cc third_party/protobuf/hpb/internal/message_lock.h third_party/protobuf/hpb/internal/message_lock_test.cc third_party/protobuf/hpb/internal/template_help.h third_party/protobuf/hpb/internal/template_help_test.cc third_party/protobuf/hpb/multibackend.h third_party/protobuf/hpb/options.h third_party/protobuf/hpb/ptr.h third_party/protobuf/hpb/repeated_field.h third_party/protobuf/hpb/requires.h third_party/protobuf/hpb/status.cc third_party/protobuf/hpb/status.h third_party/protobuf/hpb/status_test.cc third_party/protobuf/hpb_generator/context.h third_party/protobuf/hpb_generator/gen_accessors.cc third_party/protobuf/hpb_generator/gen_accessors.h third_party/protobuf/hpb_generator/gen_enums.cc third_party/protobuf/hpb_generator/gen_enums.h third_party/protobuf/hpb_generator/gen_extensions.cc third_party/protobuf/hpb_generator/gen_extensions.h third_party/protobuf/hpb_generator/gen_messages.cc third_party/protobuf/hpb_generator/gen_messages.h third_party/protobuf/hpb_generator/gen_repeated_fields.cc third_party/protobuf/hpb_generator/gen_repeated_fields.h third_party/protobuf/hpb_generator/gen_utils.cc third_party/protobuf/hpb_generator/gen_utils.h third_party/protobuf/hpb_generator/generator.cc third_party/protobuf/hpb_generator/generator.h third_party/protobuf/hpb_generator/keywords.cc third_party/protobuf/hpb_generator/keywords.h third_party/protobuf/hpb_generator/names.cc third_party/protobuf/hpb_generator/names.h third_party/protobuf/hpb_generator/protoc-gen-hpb.cc third_party/protobuf/hpb_generator/tests/extension_test.cc third_party/protobuf/hpb_generator/tests/multibackend_test.cc third_party/protobuf/hpb_generator/tests/repeated_test.cc third_party/protobuf/hpb_generator/tests/test_generated.cc third_party/protobuf/hpb_generator/tests/test_hpb_bzl_alias.cc third_party/protobuf/java/bom/pom.xml third_party/protobuf/java/core/pom_template.xml third_party/protobuf/java/lite/pom_template.xml third_party/protobuf/java/pom.xml third_party/protobuf/java/protoc/pom.xml third_party/protobuf/java/util/pom_template.xml third_party/protobuf/lua/def.c third_party/protobuf/lua/main.c third_party/protobuf/lua/msg.c third_party/protobuf/lua/upb.c third_party/protobuf/lua/upb.h third_party/protobuf/lua/upbc.cc third_party/protobuf/objectivec/DevTools/pddm.py third_party/protobuf/objectivec/DevTools/pddm_tests.py third_party/protobuf/objectivec/GPBAny.pbobjc.h third_party/protobuf/objectivec/GPBApi.pbobjc.h third_party/protobuf/objectivec/GPBArray.h third_party/protobuf/objectivec/GPBArray_PackagePrivate.h third_party/protobuf/objectivec/GPBBootstrap.h third_party/protobuf/objectivec/GPBCodedInputStream.h third_party/protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h third_party/protobuf/objectivec/GPBCodedOutputStream.h third_party/protobuf/objectivec/GPBCodedOutputStream_PackagePrivate.h third_party/protobuf/objectivec/GPBDescriptor.h third_party/protobuf/objectivec/GPBDescriptor_PackagePrivate.h third_party/protobuf/objectivec/GPBDictionary.h third_party/protobuf/objectivec/GPBDictionary_PackagePrivate.h third_party/protobuf/objectivec/GPBExtensionInternals.h third_party/protobuf/objectivec/GPBExtensionRegistry.h third_party/protobuf/objectivec/GPBMessage.h third_party/protobuf/objectivec/GPBMessage_PackagePrivate.h third_party/protobuf/objectivec/GPBProtocolBuffers.h third_party/protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h third_party/protobuf/objectivec/GPBRootObject.h third_party/protobuf/objectivec/GPBRootObject_PackagePrivate.h third_party/protobuf/objectivec/GPBRuntimeTypes.h third_party/protobuf/objectivec/GPBTimestamp.pbobjc.h third_party/protobuf/objectivec/GPBType.pbobjc.h third_party/protobuf/objectivec/GPBUnknownField.h third_party/protobuf/objectivec/GPBUnknownField_PackagePrivate.h third_party/protobuf/objectivec/GPBUnknownFields.h third_party/protobuf/objectivec/GPBUnknownFields_PackagePrivate.h third_party/protobuf/objectivec/GPBUtilities.h third_party/protobuf/objectivec/GPBUtilities_PackagePrivate.h third_party/protobuf/objectivec/GPBWellKnownTypes.h third_party/protobuf/objectivec/GPBWireFormat.h third_party/protobuf/objectivec/Tests/GPBObjectiveCPlusPlusTest.mm third_party/protobuf/objectivec/Tests/GPBTestUtilities.h third_party/protobuf/objectivec/Tests/UnitTests-Bridging-Header.h third_party/protobuf/php/composer.json third_party/protobuf/php/ext/google/protobuf/arena.c third_party/protobuf/php/ext/google/protobuf/arena.h third_party/protobuf/php/ext/google/protobuf/array.c third_party/protobuf/php/ext/google/protobuf/array.h third_party/protobuf/php/ext/google/protobuf/convert.c third_party/protobuf/php/ext/google/protobuf/convert.h third_party/protobuf/php/ext/google/protobuf/def.c third_party/protobuf/php/ext/google/protobuf/def.h third_party/protobuf/php/ext/google/protobuf/map.c third_party/protobuf/php/ext/google/protobuf/map.h third_party/protobuf/php/ext/google/protobuf/message.c third_party/protobuf/php/ext/google/protobuf/message.h third_party/protobuf/php/ext/google/protobuf/names.c third_party/protobuf/php/ext/google/protobuf/names.h third_party/protobuf/php/ext/google/protobuf/php-upb.c third_party/protobuf/php/ext/google/protobuf/php-upb.h third_party/protobuf/php/ext/google/protobuf/php_protobuf.h third_party/protobuf/php/ext/google/protobuf/print_options.c third_party/protobuf/php/ext/google/protobuf/print_options.h third_party/protobuf/php/ext/google/protobuf/protobuf.c third_party/protobuf/php/ext/google/protobuf/protobuf.h third_party/protobuf/php/ext/google/protobuf/template_package.xml third_party/protobuf/pkg/test/test_lib.cc third_party/protobuf/pkg/test/test_lib.h third_party/protobuf/python/.repo-metadata.json third_party/protobuf/python/convert.c third_party/protobuf/python/convert.h third_party/protobuf/python/descriptor.c third_party/protobuf/python/descriptor.h third_party/protobuf/python/descriptor_containers.c third_party/protobuf/python/descriptor_containers.h third_party/protobuf/python/descriptor_pool.c third_party/protobuf/python/descriptor_pool.h third_party/protobuf/python/dist/setup.py third_party/protobuf/python/docs/conf.py third_party/protobuf/python/docs/generate_docs.py third_party/protobuf/python/extension_dict.c third_party/protobuf/python/extension_dict.h third_party/protobuf/python/google/protobuf/__init__.py third_party/protobuf/python/google/protobuf/any.py third_party/protobuf/python/google/protobuf/descriptor.py third_party/protobuf/python/google/protobuf/descriptor_database.py third_party/protobuf/python/google/protobuf/descriptor_pool.py third_party/protobuf/python/google/protobuf/duration.py third_party/protobuf/python/google/protobuf/internal/__init__.py third_party/protobuf/python/google/protobuf/internal/any_test.py third_party/protobuf/python/google/protobuf/internal/api_implementation.cc third_party/protobuf/python/google/protobuf/internal/api_implementation.py third_party/protobuf/python/google/protobuf/internal/builder.py third_party/protobuf/python/google/protobuf/internal/containers.py third_party/protobuf/python/google/protobuf/internal/decoder.py third_party/protobuf/python/google/protobuf/internal/decoder_test.py third_party/protobuf/python/google/protobuf/internal/descriptor_database_test.py third_party/protobuf/python/google/protobuf/internal/descriptor_pool_test.py third_party/protobuf/python/google/protobuf/internal/descriptor_test.py third_party/protobuf/python/google/protobuf/internal/duration_test.py third_party/protobuf/python/google/protobuf/internal/encoder.py third_party/protobuf/python/google/protobuf/internal/enum_type_wrapper.py third_party/protobuf/python/google/protobuf/internal/extension_dict.py third_party/protobuf/python/google/protobuf/internal/field_mask.py third_party/protobuf/python/google/protobuf/internal/field_mask_test.py third_party/protobuf/python/google/protobuf/internal/generator_test.py third_party/protobuf/python/google/protobuf/internal/import_test.py third_party/protobuf/python/google/protobuf/internal/import_test_package/__init__.py third_party/protobuf/python/google/protobuf/internal/json_format_test.py third_party/protobuf/python/google/protobuf/internal/keywords_test.py third_party/protobuf/python/google/protobuf/internal/message_factory_test.py third_party/protobuf/python/google/protobuf/internal/message_listener.py third_party/protobuf/python/google/protobuf/internal/message_test.py third_party/protobuf/python/google/protobuf/internal/numpy/__init__.py third_party/protobuf/python/google/protobuf/internal/numpy/numpy_test.py third_party/protobuf/python/google/protobuf/internal/proto_builder_test.py third_party/protobuf/python/google/protobuf/internal/proto_json_test.py third_party/protobuf/python/google/protobuf/internal/proto_test.py third_party/protobuf/python/google/protobuf/internal/proto_text_test.py third_party/protobuf/python/google/protobuf/internal/pybind11_test_module.cc third_party/protobuf/python/google/protobuf/internal/python_message.py third_party/protobuf/python/google/protobuf/internal/python_protobuf.cc third_party/protobuf/python/google/protobuf/internal/reflection_cpp_test.py third_party/protobuf/python/google/protobuf/internal/reflection_test.py third_party/protobuf/python/google/protobuf/internal/runtime_version_test.py third_party/protobuf/python/google/protobuf/internal/service_reflection_test.py third_party/protobuf/python/google/protobuf/internal/symbol_database_test.py third_party/protobuf/python/google/protobuf/internal/test_util.py third_party/protobuf/python/google/protobuf/internal/testing_refleaks.py third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py third_party/protobuf/python/google/protobuf/internal/text_format_test.py third_party/protobuf/python/google/protobuf/internal/thread_safe_test.py third_party/protobuf/python/google/protobuf/internal/timestamp_test.py third_party/protobuf/python/google/protobuf/internal/type_checkers.py third_party/protobuf/python/google/protobuf/internal/unknown_fields_test.py third_party/protobuf/python/google/protobuf/internal/well_known_types.py third_party/protobuf/python/google/protobuf/internal/well_known_types_test.py third_party/protobuf/python/google/protobuf/internal/wire_format.py third_party/protobuf/python/google/protobuf/internal/wire_format_test.py third_party/protobuf/python/google/protobuf/json_format.py third_party/protobuf/python/google/protobuf/message.py third_party/protobuf/python/google/protobuf/message_factory.py third_party/protobuf/python/google/protobuf/proto.py third_party/protobuf/python/google/protobuf/proto_api.h third_party/protobuf/python/google/protobuf/proto_builder.py third_party/protobuf/python/google/protobuf/proto_json.py third_party/protobuf/python/google/protobuf/proto_text.py third_party/protobuf/python/google/protobuf/pyext/cpp_message.py third_party/protobuf/python/google/protobuf/pyext/descriptor.cc third_party/protobuf/python/google/protobuf/pyext/descriptor.h third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.cc third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.h third_party/protobuf/python/google/protobuf/pyext/descriptor_database.cc third_party/protobuf/python/google/protobuf/pyext/descriptor_database.h third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.cc third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.h third_party/protobuf/python/google/protobuf/pyext/extension_dict.cc third_party/protobuf/python/google/protobuf/pyext/extension_dict.h third_party/protobuf/python/google/protobuf/pyext/field.cc third_party/protobuf/python/google/protobuf/pyext/field.h third_party/protobuf/python/google/protobuf/pyext/map_container.cc third_party/protobuf/python/google/protobuf/pyext/map_container.h third_party/protobuf/python/google/protobuf/pyext/message.cc third_party/protobuf/python/google/protobuf/pyext/message.h third_party/protobuf/python/google/protobuf/pyext/message_factory.cc third_party/protobuf/python/google/protobuf/pyext/message_factory.h third_party/protobuf/python/google/protobuf/pyext/message_module.cc third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.cc third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.h third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.cc third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.h third_party/protobuf/python/google/protobuf/pyext/safe_numerics.h third_party/protobuf/python/google/protobuf/pyext/scoped_pyobject_ptr.h third_party/protobuf/python/google/protobuf/pyext/unknown_field_set.cc third_party/protobuf/python/google/protobuf/pyext/unknown_field_set.h third_party/protobuf/python/google/protobuf/python_protobuf.h third_party/protobuf/python/google/protobuf/reflection.py third_party/protobuf/python/google/protobuf/runtime_version.py third_party/protobuf/python/google/protobuf/service_reflection.py third_party/protobuf/python/google/protobuf/symbol_database.py third_party/protobuf/python/google/protobuf/text_encoding.py third_party/protobuf/python/google/protobuf/text_format.py third_party/protobuf/python/google/protobuf/timestamp.py third_party/protobuf/python/google/protobuf/unknown_fields.py third_party/protobuf/python/map.c third_party/protobuf/python/map.h third_party/protobuf/python/message.c third_party/protobuf/python/message.h third_party/protobuf/python/minimal_test.py third_party/protobuf/python/protobuf.c third_party/protobuf/python/protobuf.h third_party/protobuf/python/protobuf_distutils/protobuf_distutils/generate_py_protobufs.py third_party/protobuf/python/protobuf_distutils/setup.py third_party/protobuf/python/python_api.h third_party/protobuf/python/python_version_test.py third_party/protobuf/python/repeated.c third_party/protobuf/python/repeated.h third_party/protobuf/python/unknown_fields.c third_party/protobuf/python/unknown_fields.h third_party/protobuf/ruby/ext/google/protobuf_c/convert.c third_party/protobuf/ruby/ext/google/protobuf_c/convert.h third_party/protobuf/ruby/ext/google/protobuf_c/defs.c third_party/protobuf/ruby/ext/google/protobuf_c/defs.h third_party/protobuf/ruby/ext/google/protobuf_c/glue.c third_party/protobuf/ruby/ext/google/protobuf_c/map.c third_party/protobuf/ruby/ext/google/protobuf_c/map.h third_party/protobuf/ruby/ext/google/protobuf_c/message.c third_party/protobuf/ruby/ext/google/protobuf_c/message.h third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.c third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.h third_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.c third_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.h third_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.c third_party/protobuf/ruby/ext/google/protobuf_c/ruby-upb.h third_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.c third_party/protobuf/ruby/ext/google/protobuf_c/shared_convert.h third_party/protobuf/ruby/ext/google/protobuf_c/shared_message.c third_party/protobuf/ruby/ext/google/protobuf_c/shared_message.h third_party/protobuf/ruby/pom.xml third_party/protobuf/rust/cpp_kernel/serialized_data.h third_party/protobuf/rust/cpp_kernel/strings.h third_party/protobuf/rust/test/cpp/interop/test_utils.cc third_party/protobuf/rust/test/rust_proto_library_unit_test/empty.cc third_party/protobuf/rust/upb/sys/upb_api.c third_party/protobuf/src/google/protobuf/any.cc third_party/protobuf/src/google/protobuf/any.h third_party/protobuf/src/google/protobuf/any_lite.cc third_party/protobuf/src/google/protobuf/any_test.cc third_party/protobuf/src/google/protobuf/arena.cc third_party/protobuf/src/google/protobuf/arena.h third_party/protobuf/src/google/protobuf/arena_align.cc third_party/protobuf/src/google/protobuf/arena_align.h third_party/protobuf/src/google/protobuf/arena_align_test.cc third_party/protobuf/src/google/protobuf/arena_allocation_policy.h third_party/protobuf/src/google/protobuf/arena_cleanup.h third_party/protobuf/src/google/protobuf/arena_test_util.h third_party/protobuf/src/google/protobuf/arena_unittest.cc third_party/protobuf/src/google/protobuf/arenastring.cc third_party/protobuf/src/google/protobuf/arenastring.h third_party/protobuf/src/google/protobuf/arenastring_unittest.cc third_party/protobuf/src/google/protobuf/arenaz_sampler.cc third_party/protobuf/src/google/protobuf/arenaz_sampler.h third_party/protobuf/src/google/protobuf/arenaz_sampler_test.cc third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.cc third_party/protobuf/src/google/protobuf/compiler/annotation_test_util.h third_party/protobuf/src/google/protobuf/compiler/code_generator.cc third_party/protobuf/src/google/protobuf/compiler/code_generator.h third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.cc third_party/protobuf/src/google/protobuf/compiler/code_generator_lite.h third_party/protobuf/src/google/protobuf/compiler/code_generator_unittest.cc third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.cc third_party/protobuf/src/google/protobuf/compiler/command_line_interface_tester.h third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/arena_ctor_visibility_test.cc third_party/protobuf/src/google/protobuf/compiler/cpp/bootstrap_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/copy_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h third_party/protobuf/src/google/protobuf/compiler/cpp/enum.cc third_party/protobuf/src/google/protobuf/compiler/cpp/enum.h third_party/protobuf/src/google/protobuf/compiler/cpp/extension.cc third_party/protobuf/src/google/protobuf/compiler/cpp/extension.h third_party/protobuf/src/google/protobuf/compiler/cpp/field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/field.h third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/cord_field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/generators.h third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/map_field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/message_field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_view_field.cc third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc third_party/protobuf/src/google/protobuf/compiler/cpp/file.h third_party/protobuf/src/google/protobuf/compiler/cpp/file_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/generator.cc third_party/protobuf/src/google/protobuf/compiler/cpp/generator.h third_party/protobuf/src/google/protobuf/compiler/cpp/generator_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.h third_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.cc third_party/protobuf/src/google/protobuf/compiler/cpp/ifndef_guard.h third_party/protobuf/src/google/protobuf/compiler/cpp/main.cc third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc third_party/protobuf/src/google/protobuf/compiler/cpp/message.h third_party/protobuf/src/google/protobuf/compiler/cpp/message_layout_helper.h third_party/protobuf/src/google/protobuf/compiler/cpp/message_size_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/metadata_test.cc third_party/protobuf/src/google/protobuf/compiler/cpp/move_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/names.h third_party/protobuf/src/google/protobuf/compiler/cpp/namespace_printer.h third_party/protobuf/src/google/protobuf/compiler/cpp/options.h third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.h third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.cc third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.h third_party/protobuf/src/google/protobuf/compiler/cpp/plugin_unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/service.cc third_party/protobuf/src/google/protobuf/compiler/cpp/service.h third_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto.cc third_party/protobuf/src/google/protobuf/compiler/cpp/tools/analyze_profile_proto_main.cc third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.cc third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.h third_party/protobuf/src/google/protobuf/compiler/cpp/unittest.cc third_party/protobuf/src/google/protobuf/compiler/cpp/unittest.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_options.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h third_party/protobuf/src/google/protobuf/compiler/csharp/names.cc third_party/protobuf/src/google/protobuf/compiler/csharp/names.h third_party/protobuf/src/google/protobuf/compiler/fake_plugin.cc third_party/protobuf/src/google/protobuf/compiler/importer.cc third_party/protobuf/src/google/protobuf/compiler/importer.h third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc third_party/protobuf/src/google/protobuf/compiler/java/context.cc third_party/protobuf/src/google/protobuf/compiler/java/context.h third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.cc third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.h third_party/protobuf/src/google/protobuf/compiler/java/doc_comment_unittest.cc third_party/protobuf/src/google/protobuf/compiler/java/file.cc third_party/protobuf/src/google/protobuf/compiler/java/file.h third_party/protobuf/src/google/protobuf/compiler/java/full/enum.cc third_party/protobuf/src/google/protobuf/compiler/java/full/enum.h third_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.cc third_party/protobuf/src/google/protobuf/compiler/java/full/enum_field.h third_party/protobuf/src/google/protobuf/compiler/java/full/extension.cc third_party/protobuf/src/google/protobuf/compiler/java/full/extension.h third_party/protobuf/src/google/protobuf/compiler/java/full/generator_factory.cc third_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.cc third_party/protobuf/src/google/protobuf/compiler/java/full/make_field_gens.h third_party/protobuf/src/google/protobuf/compiler/java/full/map_field.cc third_party/protobuf/src/google/protobuf/compiler/java/full/map_field.h third_party/protobuf/src/google/protobuf/compiler/java/full/message.cc third_party/protobuf/src/google/protobuf/compiler/java/full/message.h third_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.cc third_party/protobuf/src/google/protobuf/compiler/java/full/message_builder.h third_party/protobuf/src/google/protobuf/compiler/java/full/message_field.cc third_party/protobuf/src/google/protobuf/compiler/java/full/message_field.h third_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.cc third_party/protobuf/src/google/protobuf/compiler/java/full/primitive_field.h third_party/protobuf/src/google/protobuf/compiler/java/full/service.cc third_party/protobuf/src/google/protobuf/compiler/java/full/service.h third_party/protobuf/src/google/protobuf/compiler/java/full/string_field.cc third_party/protobuf/src/google/protobuf/compiler/java/full/string_field.h third_party/protobuf/src/google/protobuf/compiler/java/generator.cc third_party/protobuf/src/google/protobuf/compiler/java/generator.h third_party/protobuf/src/google/protobuf/compiler/java/generator_factory.h third_party/protobuf/src/google/protobuf/compiler/java/generator_unittest.cc third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc third_party/protobuf/src/google/protobuf/compiler/java/helpers.h third_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.cc third_party/protobuf/src/google/protobuf/compiler/java/internal_helpers.h third_party/protobuf/src/google/protobuf/compiler/java/java_generator.h third_party/protobuf/src/google/protobuf/compiler/java/lite/enum.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/enum.h third_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/enum_field.h third_party/protobuf/src/google/protobuf/compiler/java/lite/extension.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/extension.h third_party/protobuf/src/google/protobuf/compiler/java/lite/generator_factory.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/make_field_gens.h third_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/map_field.h third_party/protobuf/src/google/protobuf/compiler/java/lite/message.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/message.h third_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/message_builder.h third_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/message_field.h third_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/primitive_field.h third_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.cc third_party/protobuf/src/google/protobuf/compiler/java/lite/string_field.h third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.cc third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.h third_party/protobuf/src/google/protobuf/compiler/java/message_serialization_unittest.cc third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.cc third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.h third_party/protobuf/src/google/protobuf/compiler/java/names.cc third_party/protobuf/src/google/protobuf/compiler/java/names.h third_party/protobuf/src/google/protobuf/compiler/java/names_internal.h third_party/protobuf/src/google/protobuf/compiler/java/options.h third_party/protobuf/src/google/protobuf/compiler/java/plugin_unittest.cc third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.h third_party/protobuf/src/google/protobuf/compiler/kotlin/file.cc third_party/protobuf/src/google/protobuf/compiler/kotlin/file.h third_party/protobuf/src/google/protobuf/compiler/kotlin/generator.cc third_party/protobuf/src/google/protobuf/compiler/kotlin/generator.h third_party/protobuf/src/google/protobuf/compiler/kotlin/message.cc third_party/protobuf/src/google/protobuf/compiler/kotlin/message.h third_party/protobuf/src/google/protobuf/compiler/main.cc third_party/protobuf/src/google/protobuf/compiler/main_no_generators.cc third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.cc third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.h third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.h third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.h third_party/protobuf/src/google/protobuf/compiler/objectivec/field.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/field.h third_party/protobuf/src/google/protobuf/compiler/objectivec/file.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/file.h third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.h third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.h third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.h third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.h third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer_unittest.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.h third_party/protobuf/src/google/protobuf/compiler/objectivec/message.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/message.h third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.h third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/names.h third_party/protobuf/src/google/protobuf/compiler/objectivec/names_unittest.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/nsobject_methods.h third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.h third_party/protobuf/src/google/protobuf/compiler/objectivec/options.h third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.h third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data_unittest.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.cc third_party/protobuf/src/google/protobuf/compiler/objectivec/tf_decode_data.h third_party/protobuf/src/google/protobuf/compiler/package_info.h third_party/protobuf/src/google/protobuf/compiler/parser.cc third_party/protobuf/src/google/protobuf/compiler/parser.h third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc third_party/protobuf/src/google/protobuf/compiler/php/generator_unittest.cc third_party/protobuf/src/google/protobuf/compiler/php/names.cc third_party/protobuf/src/google/protobuf/compiler/php/names.h third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc third_party/protobuf/src/google/protobuf/compiler/php/php_generator.h third_party/protobuf/src/google/protobuf/compiler/plugin.cc third_party/protobuf/src/google/protobuf/compiler/plugin.h third_party/protobuf/src/google/protobuf/compiler/python/generator.cc third_party/protobuf/src/google/protobuf/compiler/python/generator.h third_party/protobuf/src/google/protobuf/compiler/python/helpers.cc third_party/protobuf/src/google/protobuf/compiler/python/helpers.h third_party/protobuf/src/google/protobuf/compiler/python/plugin_unittest.cc third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.cc third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.h third_party/protobuf/src/google/protobuf/compiler/python/python_generator.h third_party/protobuf/src/google/protobuf/compiler/retention.cc third_party/protobuf/src/google/protobuf/compiler/retention.h third_party/protobuf/src/google/protobuf/compiler/retention_unittest.cc third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.h third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator_unittest.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessor_case.h third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.h third_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/default_value.h third_party/protobuf/src/google/protobuf/compiler/rust/accessors/generator.h third_party/protobuf/src/google/protobuf/compiler/rust/accessors/map.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/repeated_field.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_cord.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_message.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_scalar.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_string.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/unsupported_field.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.cc third_party/protobuf/src/google/protobuf/compiler/rust/accessors/with_presence.h third_party/protobuf/src/google/protobuf/compiler/rust/context.cc third_party/protobuf/src/google/protobuf/compiler/rust/context.h third_party/protobuf/src/google/protobuf/compiler/rust/enum.cc third_party/protobuf/src/google/protobuf/compiler/rust/enum.h third_party/protobuf/src/google/protobuf/compiler/rust/generator.cc third_party/protobuf/src/google/protobuf/compiler/rust/generator.h third_party/protobuf/src/google/protobuf/compiler/rust/main.cc third_party/protobuf/src/google/protobuf/compiler/rust/message.cc third_party/protobuf/src/google/protobuf/compiler/rust/message.h third_party/protobuf/src/google/protobuf/compiler/rust/naming.cc third_party/protobuf/src/google/protobuf/compiler/rust/naming.h third_party/protobuf/src/google/protobuf/compiler/rust/oneof.cc third_party/protobuf/src/google/protobuf/compiler/rust/oneof.h third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.cc third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.h third_party/protobuf/src/google/protobuf/compiler/rust/relative_path_test.cc third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.cc third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.h third_party/protobuf/src/google/protobuf/compiler/rust/upb_helpers.h third_party/protobuf/src/google/protobuf/compiler/scc.h third_party/protobuf/src/google/protobuf/compiler/subprocess.cc third_party/protobuf/src/google/protobuf/compiler/subprocess.h third_party/protobuf/src/google/protobuf/compiler/test_plugin.cc third_party/protobuf/src/google/protobuf/compiler/versions.cc third_party/protobuf/src/google/protobuf/compiler/versions.h third_party/protobuf/src/google/protobuf/compiler/versions_test.cc third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc third_party/protobuf/src/google/protobuf/compiler/zip_writer.h third_party/protobuf/src/google/protobuf/debug_counter_test.cc third_party/protobuf/src/google/protobuf/descriptor.cc third_party/protobuf/src/google/protobuf/descriptor.h third_party/protobuf/src/google/protobuf/descriptor_database.cc third_party/protobuf/src/google/protobuf/descriptor_database.h third_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc third_party/protobuf/src/google/protobuf/descriptor_lite.h third_party/protobuf/src/google/protobuf/descriptor_unittest.cc third_party/protobuf/src/google/protobuf/descriptor_visitor.h third_party/protobuf/src/google/protobuf/descriptor_visitor_test.cc third_party/protobuf/src/google/protobuf/drop_unknown_fields_test.cc third_party/protobuf/src/google/protobuf/dynamic_message.cc third_party/protobuf/src/google/protobuf/dynamic_message.h third_party/protobuf/src/google/protobuf/dynamic_message_unittest.cc third_party/protobuf/src/google/protobuf/edition_message_unittest.cc third_party/protobuf/src/google/protobuf/endian.h third_party/protobuf/src/google/protobuf/explicitly_constructed.h third_party/protobuf/src/google/protobuf/extension_set.cc third_party/protobuf/src/google/protobuf/extension_set.h third_party/protobuf/src/google/protobuf/extension_set_heavy.cc third_party/protobuf/src/google/protobuf/extension_set_inl.h third_party/protobuf/src/google/protobuf/extension_set_unittest.cc third_party/protobuf/src/google/protobuf/feature_resolver.cc third_party/protobuf/src/google/protobuf/feature_resolver.h third_party/protobuf/src/google/protobuf/feature_resolver_test.cc third_party/protobuf/src/google/protobuf/field_access_listener.h third_party/protobuf/src/google/protobuf/generated_enum_reflection.h third_party/protobuf/src/google/protobuf/generated_enum_util.cc third_party/protobuf/src/google/protobuf/generated_enum_util.h third_party/protobuf/src/google/protobuf/generated_enum_util_test.cc third_party/protobuf/src/google/protobuf/generated_message_bases.cc third_party/protobuf/src/google/protobuf/generated_message_bases.h third_party/protobuf/src/google/protobuf/generated_message_reflection.cc third_party/protobuf/src/google/protobuf/generated_message_reflection.h third_party/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.cc third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.h third_party/protobuf/src/google/protobuf/generated_message_tctable_impl.h third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc third_party/protobuf/src/google/protobuf/generated_message_tctable_lite_test.cc third_party/protobuf/src/google/protobuf/generated_message_util.cc third_party/protobuf/src/google/protobuf/generated_message_util.h third_party/protobuf/src/google/protobuf/has_bits.h third_party/protobuf/src/google/protobuf/has_bits_test.cc third_party/protobuf/src/google/protobuf/implicit_weak_message.cc third_party/protobuf/src/google/protobuf/implicit_weak_message.h third_party/protobuf/src/google/protobuf/inlined_string_field.cc third_party/protobuf/src/google/protobuf/inlined_string_field.h third_party/protobuf/src/google/protobuf/inlined_string_field_unittest.cc third_party/protobuf/src/google/protobuf/internal_message_util_unittest.cc third_party/protobuf/src/google/protobuf/internal_visibility.h third_party/protobuf/src/google/protobuf/internal_visibility_for_testing.h third_party/protobuf/src/google/protobuf/io/coded_stream.cc third_party/protobuf/src/google/protobuf/io/coded_stream.h third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc third_party/protobuf/src/google/protobuf/io/gzip_stream.cc third_party/protobuf/src/google/protobuf/io/gzip_stream.h third_party/protobuf/src/google/protobuf/io/io_win32.cc third_party/protobuf/src/google/protobuf/io/io_win32.h third_party/protobuf/src/google/protobuf/io/io_win32_unittest.cc third_party/protobuf/src/google/protobuf/io/package_info.h third_party/protobuf/src/google/protobuf/io/printer.cc third_party/protobuf/src/google/protobuf/io/printer.h third_party/protobuf/src/google/protobuf/io/printer_death_test.cc third_party/protobuf/src/google/protobuf/io/printer_unittest.cc third_party/protobuf/src/google/protobuf/io/strtod.cc third_party/protobuf/src/google/protobuf/io/strtod.h third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream.h third_party/protobuf/src/google/protobuf/io/test_zero_copy_stream_test.cc third_party/protobuf/src/google/protobuf/io/tokenizer.cc third_party/protobuf/src/google/protobuf/io/tokenizer.h third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc third_party/protobuf/src/google/protobuf/io/zero_copy_sink.cc third_party/protobuf/src/google/protobuf/io/zero_copy_sink.h third_party/protobuf/src/google/protobuf/io/zero_copy_sink_test.cc third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc third_party/protobuf/src/google/protobuf/json/internal/descriptor_traits.h third_party/protobuf/src/google/protobuf/json/internal/lexer.cc third_party/protobuf/src/google/protobuf/json/internal/lexer.h third_party/protobuf/src/google/protobuf/json/internal/lexer_test.cc third_party/protobuf/src/google/protobuf/json/internal/message_path.cc third_party/protobuf/src/google/protobuf/json/internal/message_path.h third_party/protobuf/src/google/protobuf/json/internal/parser.cc third_party/protobuf/src/google/protobuf/json/internal/parser.h third_party/protobuf/src/google/protobuf/json/internal/parser_traits.h third_party/protobuf/src/google/protobuf/json/internal/unparser.cc third_party/protobuf/src/google/protobuf/json/internal/unparser.h third_party/protobuf/src/google/protobuf/json/internal/unparser_traits.h third_party/protobuf/src/google/protobuf/json/internal/untyped_message.cc third_party/protobuf/src/google/protobuf/json/internal/untyped_message.h third_party/protobuf/src/google/protobuf/json/internal/writer.cc third_party/protobuf/src/google/protobuf/json/internal/writer.h third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream.h third_party/protobuf/src/google/protobuf/json/internal/zero_copy_buffered_stream_test.cc third_party/protobuf/src/google/protobuf/json/json.cc third_party/protobuf/src/google/protobuf/json/json.h third_party/protobuf/src/google/protobuf/json/json_test.cc third_party/protobuf/src/google/protobuf/lazily_build_dependencies_test.cc third_party/protobuf/src/google/protobuf/lite_arena_unittest.cc third_party/protobuf/src/google/protobuf/lite_unittest.cc third_party/protobuf/src/google/protobuf/map.cc third_party/protobuf/src/google/protobuf/map.h third_party/protobuf/src/google/protobuf/map_entry.h third_party/protobuf/src/google/protobuf/map_field.cc third_party/protobuf/src/google/protobuf/map_field.h third_party/protobuf/src/google/protobuf/map_field_lite.h third_party/protobuf/src/google/protobuf/map_field_test.cc third_party/protobuf/src/google/protobuf/map_probe_benchmark.cc third_party/protobuf/src/google/protobuf/map_test.cc third_party/protobuf/src/google/protobuf/map_test_util.h third_party/protobuf/src/google/protobuf/map_type_handler.h third_party/protobuf/src/google/protobuf/message.cc third_party/protobuf/src/google/protobuf/message.h third_party/protobuf/src/google/protobuf/message_lite.cc third_party/protobuf/src/google/protobuf/message_lite.h third_party/protobuf/src/google/protobuf/message_unittest.cc third_party/protobuf/src/google/protobuf/metadata.h third_party/protobuf/src/google/protobuf/metadata_lite.h third_party/protobuf/src/google/protobuf/micro_string.cc third_party/protobuf/src/google/protobuf/micro_string.h third_party/protobuf/src/google/protobuf/micro_string_test.cc third_party/protobuf/src/google/protobuf/no_field_presence_map_test.cc third_party/protobuf/src/google/protobuf/no_field_presence_test.cc third_party/protobuf/src/google/protobuf/package_info.h third_party/protobuf/src/google/protobuf/parse_context.cc third_party/protobuf/src/google/protobuf/parse_context.h third_party/protobuf/src/google/protobuf/port.cc third_party/protobuf/src/google/protobuf/port.h third_party/protobuf/src/google/protobuf/port_test.cc third_party/protobuf/src/google/protobuf/preserve_unknown_enum_test.cc third_party/protobuf/src/google/protobuf/proto3_arena_lite_unittest.cc third_party/protobuf/src/google/protobuf/proto3_arena_unittest.cc third_party/protobuf/src/google/protobuf/proto3_lite_unittest.cc third_party/protobuf/src/google/protobuf/raw_ptr.cc third_party/protobuf/src/google/protobuf/raw_ptr.h third_party/protobuf/src/google/protobuf/raw_ptr_test.cc third_party/protobuf/src/google/protobuf/redaction_metric_test.cc third_party/protobuf/src/google/protobuf/reflection.h third_party/protobuf/src/google/protobuf/reflection_internal.h third_party/protobuf/src/google/protobuf/reflection_mode.cc third_party/protobuf/src/google/protobuf/reflection_mode.h third_party/protobuf/src/google/protobuf/reflection_mode_test.cc third_party/protobuf/src/google/protobuf/reflection_ops.cc third_party/protobuf/src/google/protobuf/reflection_ops.h third_party/protobuf/src/google/protobuf/reflection_ops_unittest.cc third_party/protobuf/src/google/protobuf/reflection_tester.cc third_party/protobuf/src/google/protobuf/reflection_tester.h third_party/protobuf/src/google/protobuf/repeated_field.cc third_party/protobuf/src/google/protobuf/repeated_field.h third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc third_party/protobuf/src/google/protobuf/repeated_ptr_field.h third_party/protobuf/src/google/protobuf/repeated_ptr_field_unittest.cc third_party/protobuf/src/google/protobuf/retention_test.cc third_party/protobuf/src/google/protobuf/serial_arena.h third_party/protobuf/src/google/protobuf/service.cc third_party/protobuf/src/google/protobuf/service.h third_party/protobuf/src/google/protobuf/string_block.h third_party/protobuf/src/google/protobuf/string_block_test.cc third_party/protobuf/src/google/protobuf/string_member_robber.h third_party/protobuf/src/google/protobuf/string_piece_field_support_unittest.cc third_party/protobuf/src/google/protobuf/stubs/callback.h third_party/protobuf/src/google/protobuf/stubs/common.cc third_party/protobuf/src/google/protobuf/stubs/common.h third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc third_party/protobuf/src/google/protobuf/stubs/platform_macros.h third_party/protobuf/src/google/protobuf/stubs/port.h third_party/protobuf/src/google/protobuf/stubs/status_macros.h third_party/protobuf/src/google/protobuf/test_textproto.h third_party/protobuf/src/google/protobuf/test_util.cc third_party/protobuf/src/google/protobuf/test_util.h third_party/protobuf/src/google/protobuf/test_util2.h third_party/protobuf/src/google/protobuf/test_util_lite.cc third_party/protobuf/src/google/protobuf/test_util_lite.h third_party/protobuf/src/google/protobuf/testing/file.cc third_party/protobuf/src/google/protobuf/testing/file.h third_party/protobuf/src/google/protobuf/testing/googletest.cc third_party/protobuf/src/google/protobuf/testing/googletest.h third_party/protobuf/src/google/protobuf/text_format.cc third_party/protobuf/src/google/protobuf/text_format.h third_party/protobuf/src/google/protobuf/text_format_unittest.cc third_party/protobuf/src/google/protobuf/thread_safe_arena.h third_party/protobuf/src/google/protobuf/unknown_field_set.cc third_party/protobuf/src/google/protobuf/unknown_field_set.h third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc third_party/protobuf/src/google/protobuf/util/delimited_message_util.cc third_party/protobuf/src/google/protobuf/util/delimited_message_util.h third_party/protobuf/src/google/protobuf/util/delimited_message_util_test.cc third_party/protobuf/src/google/protobuf/util/field_comparator.cc third_party/protobuf/src/google/protobuf/util/field_comparator.h third_party/protobuf/src/google/protobuf/util/field_comparator_test.cc third_party/protobuf/src/google/protobuf/util/field_mask_util.cc third_party/protobuf/src/google/protobuf/util/field_mask_util.h third_party/protobuf/src/google/protobuf/util/field_mask_util_test.cc third_party/protobuf/src/google/protobuf/util/internal_timeval.h third_party/protobuf/src/google/protobuf/util/json_util.h third_party/protobuf/src/google/protobuf/util/message_differencer.cc third_party/protobuf/src/google/protobuf/util/message_differencer.h third_party/protobuf/src/google/protobuf/util/message_differencer_unittest.cc third_party/protobuf/src/google/protobuf/util/package_info.h third_party/protobuf/src/google/protobuf/util/time_util.cc third_party/protobuf/src/google/protobuf/util/time_util.h third_party/protobuf/src/google/protobuf/util/time_util_test.cc third_party/protobuf/src/google/protobuf/util/type_resolver.h third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc third_party/protobuf/src/google/protobuf/util/type_resolver_util.h third_party/protobuf/src/google/protobuf/util/type_resolver_util_test.cc third_party/protobuf/src/google/protobuf/varint_shuffle.h third_party/protobuf/src/google/protobuf/varint_shuffle_test.cc third_party/protobuf/src/google/protobuf/well_known_types_unittest.cc third_party/protobuf/src/google/protobuf/wire_format.cc third_party/protobuf/src/google/protobuf/wire_format.h third_party/protobuf/src/google/protobuf/wire_format_lite.cc third_party/protobuf/src/google/protobuf/wire_format_lite.h third_party/protobuf/src/google/protobuf/wire_format_unittest.cc third_party/protobuf/src/google/protobuf/wire_format_unittest.h third_party/protobuf/upb/base/descriptor_constants.h third_party/protobuf/upb/base/internal/endian.h third_party/protobuf/upb/base/internal/log2.h third_party/protobuf/upb/base/status.c third_party/protobuf/upb/base/status.h third_party/protobuf/upb/base/status.hpp third_party/protobuf/upb/base/string_view.h third_party/protobuf/upb/base/upcast.h third_party/protobuf/upb/bazel/amalgamate.py third_party/protobuf/upb/cmake/staleness_test.py third_party/protobuf/upb/cmake/staleness_test_lib.py third_party/protobuf/upb/conformance/conformance_upb.c third_party/protobuf/upb/generated_code_support.h third_party/protobuf/upb/hash/common.c third_party/protobuf/upb/hash/common.h third_party/protobuf/upb/hash/int_table.h third_party/protobuf/upb/hash/str_table.h third_party/protobuf/upb/hash/test.cc third_party/protobuf/upb/io/chunked_input_stream.c third_party/protobuf/upb/io/chunked_input_stream.h third_party/protobuf/upb/io/chunked_output_stream.c third_party/protobuf/upb/io/chunked_output_stream.h third_party/protobuf/upb/io/string.h third_party/protobuf/upb/io/string_test.cc third_party/protobuf/upb/io/tokenizer.c third_party/protobuf/upb/io/tokenizer.h third_party/protobuf/upb/io/tokenizer_test.cc third_party/protobuf/upb/io/zero_copy_input_stream.h third_party/protobuf/upb/io/zero_copy_output_stream.h third_party/protobuf/upb/io/zero_copy_stream_test.cc third_party/protobuf/upb/json/decode.c third_party/protobuf/upb/json/decode.h third_party/protobuf/upb/json/decode_test.cc third_party/protobuf/upb/json/encode.c third_party/protobuf/upb/json/encode.h third_party/protobuf/upb/json/encode_test.cc third_party/protobuf/upb/json/fuzz_test.cc third_party/protobuf/upb/lex/atoi.c third_party/protobuf/upb/lex/atoi.h third_party/protobuf/upb/lex/atoi_test.cc third_party/protobuf/upb/lex/round_trip.c third_party/protobuf/upb/lex/round_trip.h third_party/protobuf/upb/lex/strtod.c third_party/protobuf/upb/lex/strtod.h third_party/protobuf/upb/lex/unicode.c third_party/protobuf/upb/lex/unicode.h third_party/protobuf/upb/mem/alloc.c third_party/protobuf/upb/mem/alloc.h third_party/protobuf/upb/mem/arena.c third_party/protobuf/upb/mem/arena.h third_party/protobuf/upb/mem/arena.hpp third_party/protobuf/upb/mem/arena_test.cc third_party/protobuf/upb/mem/internal/arena.h third_party/protobuf/upb/message/accessors.c third_party/protobuf/upb/message/accessors.h third_party/protobuf/upb/message/accessors.hpp third_party/protobuf/upb/message/accessors_split64.h third_party/protobuf/upb/message/accessors_test.cc third_party/protobuf/upb/message/array.c third_party/protobuf/upb/message/array.h third_party/protobuf/upb/message/array_test.cc third_party/protobuf/upb/message/compare.c third_party/protobuf/upb/message/compare.h third_party/protobuf/upb/message/compat.c third_party/protobuf/upb/message/compat.h third_party/protobuf/upb/message/copy.c third_party/protobuf/upb/message/copy.h third_party/protobuf/upb/message/copy_test.cc third_party/protobuf/upb/message/internal/accessors.h third_party/protobuf/upb/message/internal/array.h third_party/protobuf/upb/message/internal/compare_unknown.c third_party/protobuf/upb/message/internal/compare_unknown.h third_party/protobuf/upb/message/internal/compare_unknown_test.cc third_party/protobuf/upb/message/internal/extension.c third_party/protobuf/upb/message/internal/extension.h third_party/protobuf/upb/message/internal/iterator.c third_party/protobuf/upb/message/internal/iterator.h third_party/protobuf/upb/message/internal/map.h third_party/protobuf/upb/message/internal/map_entry.h third_party/protobuf/upb/message/internal/map_sorter.h third_party/protobuf/upb/message/internal/message.c third_party/protobuf/upb/message/internal/message.h third_party/protobuf/upb/message/internal/tagged_ptr.h third_party/protobuf/upb/message/internal/types.h third_party/protobuf/upb/message/map.c third_party/protobuf/upb/message/map.h third_party/protobuf/upb/message/map_gencode_util.h third_party/protobuf/upb/message/map_sorter.c third_party/protobuf/upb/message/map_test.cc third_party/protobuf/upb/message/message.c third_party/protobuf/upb/message/message.h third_party/protobuf/upb/message/promote.c third_party/protobuf/upb/message/promote.h third_party/protobuf/upb/message/promote_test.cc third_party/protobuf/upb/message/tagged_ptr.h third_party/protobuf/upb/message/test.cc third_party/protobuf/upb/message/utf8_test.cc third_party/protobuf/upb/message/value.h third_party/protobuf/upb/mini_descriptor/build_enum.c third_party/protobuf/upb/mini_descriptor/build_enum.h third_party/protobuf/upb/mini_descriptor/decode.c third_party/protobuf/upb/mini_descriptor/decode.h third_party/protobuf/upb/mini_descriptor/internal/base92.c third_party/protobuf/upb/mini_descriptor/internal/base92.h third_party/protobuf/upb/mini_descriptor/internal/decoder.h third_party/protobuf/upb/mini_descriptor/internal/encode.c third_party/protobuf/upb/mini_descriptor/internal/encode.h third_party/protobuf/upb/mini_descriptor/internal/encode.hpp third_party/protobuf/upb/mini_descriptor/internal/encode_test.cc third_party/protobuf/upb/mini_descriptor/internal/modifiers.h third_party/protobuf/upb/mini_descriptor/internal/wire_constants.h third_party/protobuf/upb/mini_descriptor/link.c third_party/protobuf/upb/mini_descriptor/link.h third_party/protobuf/upb/mini_table/compat.c third_party/protobuf/upb/mini_table/compat.h third_party/protobuf/upb/mini_table/compat_test.cc third_party/protobuf/upb/mini_table/enum.h third_party/protobuf/upb/mini_table/extension.h third_party/protobuf/upb/mini_table/extension_registry.c third_party/protobuf/upb/mini_table/extension_registry.h third_party/protobuf/upb/mini_table/field.h third_party/protobuf/upb/mini_table/file.h third_party/protobuf/upb/mini_table/internal/enum.h third_party/protobuf/upb/mini_table/internal/extension.h third_party/protobuf/upb/mini_table/internal/field.h third_party/protobuf/upb/mini_table/internal/file.h third_party/protobuf/upb/mini_table/internal/message.c third_party/protobuf/upb/mini_table/internal/message.h third_party/protobuf/upb/mini_table/internal/size_log2.h third_party/protobuf/upb/mini_table/internal/sub.h third_party/protobuf/upb/mini_table/message.c third_party/protobuf/upb/mini_table/message.h third_party/protobuf/upb/mini_table/sub.h third_party/protobuf/upb/port/atomic.h third_party/protobuf/upb/port/sanitizers.h third_party/protobuf/upb/port/vsnprintf_compat.h third_party/protobuf/upb/reflection/common.h third_party/protobuf/upb/reflection/def.h third_party/protobuf/upb/reflection/def.hpp third_party/protobuf/upb/reflection/def_pool.c third_party/protobuf/upb/reflection/def_pool.h third_party/protobuf/upb/reflection/def_type.c third_party/protobuf/upb/reflection/def_type.h third_party/protobuf/upb/reflection/desc_state.c third_party/protobuf/upb/reflection/enum_def.c third_party/protobuf/upb/reflection/enum_def.h third_party/protobuf/upb/reflection/enum_reserved_range.c third_party/protobuf/upb/reflection/enum_reserved_range.h third_party/protobuf/upb/reflection/enum_value_def.c third_party/protobuf/upb/reflection/enum_value_def.h third_party/protobuf/upb/reflection/extension_range.c third_party/protobuf/upb/reflection/extension_range.h third_party/protobuf/upb/reflection/field_def.c third_party/protobuf/upb/reflection/field_def.h third_party/protobuf/upb/reflection/file_def.c third_party/protobuf/upb/reflection/file_def.h third_party/protobuf/upb/reflection/internal/def_builder.c third_party/protobuf/upb/reflection/internal/def_builder.h third_party/protobuf/upb/reflection/internal/def_builder_test.cc third_party/protobuf/upb/reflection/internal/def_pool.h third_party/protobuf/upb/reflection/internal/desc_state.h third_party/protobuf/upb/reflection/internal/enum_def.h third_party/protobuf/upb/reflection/internal/enum_reserved_range.h third_party/protobuf/upb/reflection/internal/enum_value_def.h third_party/protobuf/upb/reflection/internal/extension_range.h third_party/protobuf/upb/reflection/internal/field_def.h third_party/protobuf/upb/reflection/internal/file_def.h third_party/protobuf/upb/reflection/internal/message_def.h third_party/protobuf/upb/reflection/internal/message_reserved_range.h third_party/protobuf/upb/reflection/internal/method_def.h third_party/protobuf/upb/reflection/internal/oneof_def.h third_party/protobuf/upb/reflection/internal/service_def.h third_party/protobuf/upb/reflection/internal/strdup2.c third_party/protobuf/upb/reflection/internal/strdup2.h third_party/protobuf/upb/reflection/internal/upb_edition_defaults.h third_party/protobuf/upb/reflection/message.c third_party/protobuf/upb/reflection/message.h third_party/protobuf/upb/reflection/message.hpp third_party/protobuf/upb/reflection/message_def.c third_party/protobuf/upb/reflection/message_def.h third_party/protobuf/upb/reflection/message_reserved_range.c third_party/protobuf/upb/reflection/message_reserved_range.h third_party/protobuf/upb/reflection/method_def.c third_party/protobuf/upb/reflection/method_def.h third_party/protobuf/upb/reflection/oneof_def.c third_party/protobuf/upb/reflection/oneof_def.h third_party/protobuf/upb/reflection/service_def.c third_party/protobuf/upb/reflection/service_def.h third_party/protobuf/upb/test/editions_test.cc third_party/protobuf/upb/test/fuzz_util.cc third_party/protobuf/upb/test/fuzz_util.h third_party/protobuf/upb/test/parse_text_proto.h third_party/protobuf/upb/test/proto3_test.cc third_party/protobuf/upb/test/test_cpp.cc third_party/protobuf/upb/test/test_generated_code.cc third_party/protobuf/upb/test/test_import_empty_srcs.cc third_party/protobuf/upb/test/test_mini_table_oneof.cc third_party/protobuf/upb/text/debug_string.c third_party/protobuf/upb/text/debug_string.h third_party/protobuf/upb/text/encode.c third_party/protobuf/upb/text/encode.h third_party/protobuf/upb/text/encode_debug_test.cc third_party/protobuf/upb/text/internal/encode.c third_party/protobuf/upb/text/internal/encode.h third_party/protobuf/upb/text/options.h third_party/protobuf/upb/util/def_to_proto.c third_party/protobuf/upb/util/def_to_proto.h third_party/protobuf/upb/util/def_to_proto_fuzz_test.cc third_party/protobuf/upb/util/def_to_proto_test.cc third_party/protobuf/upb/util/def_to_proto_test.h third_party/protobuf/upb/util/required_fields.c third_party/protobuf/upb/util/required_fields.h third_party/protobuf/upb/util/required_fields_test.cc third_party/protobuf/upb/wire/byte_size.c third_party/protobuf/upb/wire/byte_size.h third_party/protobuf/upb/wire/byte_size_test.cc third_party/protobuf/upb/wire/decode.c third_party/protobuf/upb/wire/decode.h third_party/protobuf/upb/wire/decode_benchmark.cc third_party/protobuf/upb/wire/decode_fast/cardinality.h third_party/protobuf/upb/wire/decode_fast/combinations.h third_party/protobuf/upb/wire/decode_fast/data.h third_party/protobuf/upb/wire/decode_fast/dispatch.c third_party/protobuf/upb/wire/decode_fast/dispatch.h third_party/protobuf/upb/wire/decode_fast/field_fixed.c third_party/protobuf/upb/wire/decode_fast/field_message.c third_party/protobuf/upb/wire/decode_fast/field_parsers.h third_party/protobuf/upb/wire/decode_fast/field_string.c third_party/protobuf/upb/wire/decode_fast/field_varint.c third_party/protobuf/upb/wire/decode_fast/function_array.c third_party/protobuf/upb/wire/decode_fast/function_array.h third_party/protobuf/upb/wire/decode_fast/select.c third_party/protobuf/upb/wire/decode_fast/select.h third_party/protobuf/upb/wire/decode_test.cc third_party/protobuf/upb/wire/encode.c third_party/protobuf/upb/wire/encode.h third_party/protobuf/upb/wire/eps_copy_input_stream.c third_party/protobuf/upb/wire/eps_copy_input_stream.h third_party/protobuf/upb/wire/eps_copy_input_stream_test.cc third_party/protobuf/upb/wire/internal/constants.h third_party/protobuf/upb/wire/internal/decoder.c third_party/protobuf/upb/wire/internal/decoder.h third_party/protobuf/upb/wire/internal/reader.h third_party/protobuf/upb/wire/reader.c third_party/protobuf/upb/wire/reader.h third_party/protobuf/upb/wire/test_util/field_types.h third_party/protobuf/upb/wire/test_util/make_mini_table.cc third_party/protobuf/upb/wire/test_util/make_mini_table.h third_party/protobuf/upb/wire/test_util/wire_message.cc third_party/protobuf/upb/wire/test_util/wire_message.h third_party/protobuf/upb/wire/types.h third_party/protobuf/upb_generator/c/generator.cc third_party/protobuf/upb_generator/c/names.cc third_party/protobuf/upb_generator/c/names.h third_party/protobuf/upb_generator/c/names_internal.cc third_party/protobuf/upb_generator/c/names_internal.h third_party/protobuf/upb_generator/common.cc third_party/protobuf/upb_generator/common.h third_party/protobuf/upb_generator/common/cpp_to_upb_def.cc third_party/protobuf/upb_generator/common/cpp_to_upb_def.h third_party/protobuf/upb_generator/common/names.cc third_party/protobuf/upb_generator/common/names.h third_party/protobuf/upb_generator/file_layout.cc third_party/protobuf/upb_generator/file_layout.h third_party/protobuf/upb_generator/minitable/generator.cc third_party/protobuf/upb_generator/minitable/generator.h third_party/protobuf/upb_generator/minitable/main.cc third_party/protobuf/upb_generator/minitable/names.cc third_party/protobuf/upb_generator/minitable/names.h third_party/protobuf/upb_generator/minitable/names_internal.cc third_party/protobuf/upb_generator/minitable/names_internal.h third_party/protobuf/upb_generator/plugin.cc third_party/protobuf/upb_generator/plugin.h third_party/protobuf/upb_generator/reflection/context.h third_party/protobuf/upb_generator/reflection/generator.cc third_party/protobuf/upb_generator/reflection/header.cc third_party/protobuf/upb_generator/reflection/header.h third_party/protobuf/upb_generator/reflection/names.cc third_party/protobuf/upb_generator/reflection/names.h third_party/protobuf/upb_generator/reflection/source.cc third_party/protobuf/upb_generator/reflection/source.h third_party/pthreadpool/chromium/jobs.cc third_party/pycoverage/coverage/htmlfiles/pyfile.html third_party/pyelftools/elftools/__init__.py third_party/pyelftools/elftools/common/construct_utils.py third_party/pyelftools/elftools/common/exceptions.py third_party/pyelftools/elftools/common/py3compat.py third_party/pyelftools/elftools/common/utils.py third_party/pyelftools/elftools/construct/__init__.py third_party/pyelftools/elftools/dwarf/abbrevtable.py third_party/pyelftools/elftools/dwarf/callframe.py third_party/pyelftools/elftools/dwarf/compileunit.py third_party/pyelftools/elftools/dwarf/constants.py third_party/pyelftools/elftools/dwarf/descriptions.py third_party/pyelftools/elftools/dwarf/die.py third_party/pyelftools/elftools/dwarf/dwarf_expr.py third_party/pyelftools/elftools/dwarf/dwarfinfo.py third_party/pyelftools/elftools/dwarf/enums.py third_party/pyelftools/elftools/dwarf/lineprogram.py third_party/pyelftools/elftools/dwarf/locationlists.py third_party/pyelftools/elftools/dwarf/ranges.py third_party/pyelftools/elftools/dwarf/structs.py third_party/pyelftools/elftools/elf/constants.py third_party/pyelftools/elftools/elf/descriptions.py third_party/pyelftools/elftools/elf/elffile.py third_party/pyelftools/elftools/elf/enums.py third_party/pyelftools/elftools/elf/relocation.py third_party/pyelftools/elftools/elf/sections.py third_party/pyelftools/elftools/elf/segments.py third_party/pyelftools/elftools/elf/structs.py third_party/pyelftools/examples/dwarf_decode_address.py third_party/pyelftools/examples/dwarf_die_tree.py third_party/pyelftools/examples/dwarf_location_lists.py third_party/pyelftools/examples/dwarf_range_lists.py third_party/pyelftools/examples/elf_low_high_api.py third_party/pyelftools/examples/elf_relocations.py third_party/pyelftools/examples/elf_show_debug_sections.py third_party/pyelftools/examples/elfclass_address_size.py third_party/pyelftools/examples/examine_dwarf_info.py third_party/pyelftools/scripts/readelf.py third_party/pyelftools/setup.py third_party/pyelftools/test/all_tests.py third_party/pyelftools/test/external_tools/elf_creator.c third_party/pyelftools/test/run_all_unittests.py third_party/pyelftools/test/run_examples_test.py third_party/pyelftools/test/run_readelf_tests.py third_party/pyelftools/test/test_arm_support.py third_party/pyelftools/test/test_callframe.py third_party/pyelftools/test/test_dwarf_expr.py third_party/pyelftools/test/test_dwarf_lineprogram.py third_party/pyelftools/test/test_dwarf_range_lists.py third_party/pyelftools/test/test_dwarf_structs.py third_party/pyelftools/test/test_dynamic.py third_party/pyelftools/test/test_elffile.py third_party/pyelftools/test/test_utils.py third_party/pyelftools/test/utils.py third_party/pyelftools/z.py third_party/pyjson5/src/benchmarks/chromium.linux.json third_party/pyjson5/src/setup.py third_party/pywebsocket3/src/setup.py third_party/pywebsocket3/src/test/test_handshake_hybi.py third_party/r8/3pp/3pp.py third_party/re2/src/.bcr/metadata.template.json third_party/re2/src/CMakeLists.txt third_party/re2/src/python/setup.py third_party/re2/src/re2/testing/re2_test.cc third_party/re2/src/util/pcre.h third_party/readability/modded_src/Readability-readerable.js third_party/readability/modded_src/Readability.js third_party/readability/src/.prettierrc.js third_party/readability/src/JSDOMParser.js third_party/readability/src/Readability-readerable.js third_party/readability/src/Readability.js third_party/readability/src/test/test-pages/001/source.html third_party/readability/src/test/test-pages/002/expected.html third_party/readability/src/test/test-pages/002/source.html third_party/readability/src/test/test-pages/aclu/expected.html third_party/readability/src/test/test-pages/aclu/source.html third_party/readability/src/test/test-pages/aktualne/source.html third_party/readability/src/test/test-pages/ars-1/source.html third_party/readability/src/test/test-pages/article-author-tag/expected.html third_party/readability/src/test/test-pages/article-author-tag/source.html third_party/readability/src/test/test-pages/bbc-1/source.html third_party/readability/src/test/test-pages/blogger/source.html third_party/readability/src/test/test-pages/breitbart/source.html third_party/readability/src/test/test-pages/bug-1255978/source.html third_party/readability/src/test/test-pages/buzzfeed-1/source.html third_party/readability/src/test/test-pages/citylab-1/source.html third_party/readability/src/test/test-pages/cnet-svg-classes/source.html third_party/readability/src/test/test-pages/cnet/source.html third_party/readability/src/test/test-pages/cnn/source.html third_party/readability/src/test/test-pages/daringfireball-1/source.html third_party/readability/src/test/test-pages/dropbox-blog/source.html third_party/readability/src/test/test-pages/ehow-1/source.html third_party/readability/src/test/test-pages/ehow-2/expected.html third_party/readability/src/test/test-pages/ehow-2/source.html third_party/readability/src/test/test-pages/embedded-videos/expected.html third_party/readability/src/test/test-pages/embedded-videos/source.html third_party/readability/src/test/test-pages/engadget/expected.html third_party/readability/src/test/test-pages/engadget/source.html third_party/readability/src/test/test-pages/firefox-nightly-blog/expected.html third_party/readability/src/test/test-pages/firefox-nightly-blog/source.html third_party/readability/src/test/test-pages/gitlab-blog/source.html third_party/readability/src/test/test-pages/gmw/source.html third_party/readability/src/test/test-pages/google-sre-book-1/source.html third_party/readability/src/test/test-pages/guardian-1/source.html third_party/readability/src/test/test-pages/heise/source.html third_party/readability/src/test/test-pages/herald-sun-1/source.html third_party/readability/src/test/test-pages/hukumusume/source.html third_party/readability/src/test/test-pages/iab-1/source.html third_party/readability/src/test/test-pages/ietf-1/expected.html third_party/readability/src/test/test-pages/ietf-1/source.html third_party/readability/src/test/test-pages/keep-images/expected.html third_party/readability/src/test/test-pages/keep-images/source.html third_party/readability/src/test/test-pages/keep-tabular-data/expected.html third_party/readability/src/test/test-pages/keep-tabular-data/source.html third_party/readability/src/test/test-pages/la-nacion/source.html third_party/readability/src/test/test-pages/lazy-image-1/source.html third_party/readability/src/test/test-pages/lazy-image-2/source.html third_party/readability/src/test/test-pages/lemonde-1/source.html third_party/readability/src/test/test-pages/liberation-1/source.html third_party/readability/src/test/test-pages/lifehacker-post-comment-load/source.html third_party/readability/src/test/test-pages/lifehacker-working/source.html third_party/readability/src/test/test-pages/links-in-tables/expected.html third_party/readability/src/test/test-pages/links-in-tables/source.html third_party/readability/src/test/test-pages/lwn-1/source.html third_party/readability/src/test/test-pages/medicalnewstoday/source.html third_party/readability/src/test/test-pages/medium-1/expected.html third_party/readability/src/test/test-pages/medium-1/source.html third_party/readability/src/test/test-pages/medium-2/expected.html third_party/readability/src/test/test-pages/medium-2/source.html third_party/readability/src/test/test-pages/medium-3/source.html third_party/readability/src/test/test-pages/mozilla-1/expected.html third_party/readability/src/test/test-pages/mozilla-1/source.html third_party/readability/src/test/test-pages/mozilla-2/expected.html third_party/readability/src/test/test-pages/mozilla-2/source.html third_party/readability/src/test/test-pages/msn/expected.html third_party/readability/src/test/test-pages/msn/source.html third_party/readability/src/test/test-pages/nytimes-1/source.html third_party/readability/src/test/test-pages/nytimes-2/source.html third_party/readability/src/test/test-pages/nytimes-3/expected.html third_party/readability/src/test/test-pages/nytimes-3/source.html third_party/readability/src/test/test-pages/nytimes-4/source.html third_party/readability/src/test/test-pages/nytimes-5/source.html third_party/readability/src/test/test-pages/pixnet/expected.html third_party/readability/src/test/test-pages/pixnet/source.html third_party/readability/src/test/test-pages/quanta-1/source.html third_party/readability/src/test/test-pages/royal-road/source.html third_party/readability/src/test/test-pages/salon-1/source.html third_party/readability/src/test/test-pages/schema-org-context-object/source.html third_party/readability/src/test/test-pages/seattletimes-1/source.html third_party/readability/src/test/test-pages/simplyfound-1/source.html third_party/readability/src/test/test-pages/spiceworks/source.html third_party/readability/src/test/test-pages/telegraph/source.html third_party/readability/src/test/test-pages/theverge/source.html third_party/readability/src/test/test-pages/tmz-1/source.html third_party/readability/src/test/test-pages/toc-missing/source.html third_party/readability/src/test/test-pages/topicseed-1/source.html third_party/readability/src/test/test-pages/tumblr/source.html third_party/readability/src/test/test-pages/v8-blog/expected.html third_party/readability/src/test/test-pages/v8-blog/source.html third_party/readability/src/test/test-pages/videos-1/expected.html third_party/readability/src/test/test-pages/videos-1/source.html third_party/readability/src/test/test-pages/videos-2/expected.html third_party/readability/src/test/test-pages/videos-2/source.html third_party/readability/src/test/test-pages/wapo-1/source.html third_party/readability/src/test/test-pages/wapo-2/source.html third_party/readability/src/test/test-pages/webmd-1/source.html third_party/readability/src/test/test-pages/webmd-2/source.html third_party/readability/src/test/test-pages/wikia/source.html third_party/readability/src/test/test-pages/wikipedia-2/expected.html third_party/readability/src/test/test-pages/wikipedia-2/source.html third_party/readability/src/test/test-pages/wikipedia-3/expected.html third_party/readability/src/test/test-pages/wikipedia-3/source.html third_party/readability/src/test/test-pages/wikipedia-4/expected.html third_party/readability/src/test/test-pages/wikipedia-4/source.html third_party/readability/src/test/test-pages/wikipedia/expected.html third_party/readability/src/test/test-pages/wikipedia/source.html third_party/readability/src/test/test-pages/wordpress/source.html third_party/readability/src/test/test-pages/yahoo-1/expected.html third_party/readability/src/test/test-pages/yahoo-1/source.html third_party/readability/src/test/test-pages/yahoo-2/source.html third_party/readability/src/test/test-pages/yahoo-3/source.html third_party/readability/src/test/test-pages/yahoo-4/source.html third_party/readability/test_extension/viewer.html third_party/rust/PRESUBMIT.py third_party/rust/adler2/v2/BUILD.gn third_party/rust/antlr4rust/v0_5/BUILD.gn third_party/rust/anyhow/v1/BUILD.gn third_party/rust/array_init/v2/BUILD.gn third_party/rust/autocfg/v1/BUILD.gn third_party/rust/better_any/v0_2/BUILD.gn third_party/rust/bit_set/v0_8/BUILD.gn third_party/rust/bit_vec/v0_8/BUILD.gn third_party/rust/bytemuck/v1/BUILD.gn third_party/rust/bytemuck_derive/v1/BUILD.gn third_party/rust/byteorder/v1/BUILD.gn third_party/rust/chromium_crates_io/PRESUBMIT.py third_party/rust/chromium_crates_io/crate_utils.py third_party/rust/chromium_crates_io/vendor/cxx-v1/.bcr/metadata.template.json third_party/rust/cxx/v1/BUILD.gn third_party/rust/cxxbridge_cmd/v1/BUILD.gn third_party/rust/cxxbridge_flags/v1/BUILD.gn third_party/rust/cxxbridge_macro/v1/BUILD.gn third_party/rust/diplomat/v0_14/BUILD.gn third_party/rust/diplomat_core/v0_14/BUILD.gn third_party/rust/diplomat_runtime/v0_14/BUILD.gn third_party/rust/foldhash/v0_2/BUILD.gn third_party/rust/hashbrown/v0_15/BUILD.gn third_party/rust/hashbrown/v0_16/BUILD.gn third_party/rust/itoa/v1/BUILD.gn third_party/rust/jxl/v0_3/BUILD.gn third_party/rust/jxl_macros/v0_3/BUILD.gn third_party/rust/jxl_simd/v0_3/BUILD.gn third_party/rust/jxl_transforms/v0_3/BUILD.gn third_party/rust/lazy_static/v1/BUILD.gn third_party/rust/libm/v0_2/BUILD.gn third_party/rust/lock_api/v0_4/BUILD.gn third_party/rust/memchr/v2/BUILD.gn third_party/rust/miniz_oxide/v0_8/BUILD.gn third_party/rust/murmur3/v0_4/BUILD.gn third_party/rust/once_cell/v1/BUILD.gn third_party/rust/ordered_float/v5/BUILD.gn third_party/rust/parking_lot/v0_12/BUILD.gn third_party/rust/parking_lot_core/v0_9/BUILD.gn third_party/rust/proc_macro2/v1/BUILD.gn third_party/rust/proc_macro_error2/v2/BUILD.gn third_party/rust/proc_macro_error_attr2/v2/BUILD.gn third_party/rust/prost/v0_14/BUILD.gn third_party/rust/prost_derive/v0_14/BUILD.gn third_party/rust/qr_code/v2/BUILD.gn third_party/rust/quote/v1/BUILD.gn third_party/rust/regex_automata/v0_4/BUILD.gn third_party/rust/regex_syntax/v0_8/BUILD.gn third_party/rust/rustc_demangle_capi/v0_1/BUILD.gn third_party/rust/rustversion/v1/BUILD.gn third_party/rust/ryu/v1/BUILD.gn third_party/rust/serde/v1/BUILD.gn third_party/rust/serde_core/v1/BUILD.gn third_party/rust/serde_derive/v1/BUILD.gn third_party/rust/serde_json/v1/BUILD.gn third_party/rust/serde_json_lenient/v0_2/BUILD.gn third_party/rust/stable_deref_trait/v1/BUILD.gn third_party/rust/strck/v1/BUILD.gn third_party/rust/strum/v0_27/BUILD.gn third_party/rust/strum_macros/v0_27/BUILD.gn third_party/rust/symphonia/v0_5/BUILD.gn third_party/rust/symphonia_bundle_flac/v0_5/BUILD.gn third_party/rust/symphonia_bundle_mp3/v0_5/BUILD.gn third_party/rust/symphonia_codec_pcm/v0_5/BUILD.gn third_party/rust/symphonia_core/v0_5/BUILD.gn third_party/rust/symphonia_metadata/v0_5/BUILD.gn third_party/rust/symphonia_utils_xiph/v0_5/BUILD.gn third_party/rust/syn/v2/BUILD.gn third_party/rust/termcolor/v1/BUILD.gn third_party/rust/thiserror/v2/BUILD.gn third_party/rust/thiserror_impl/v2/BUILD.gn third_party/rust/unicode_ident/v1/BUILD.gn third_party/rust/unicode_width/v0_2/BUILD.gn third_party/rust/uuid/v1/BUILD.gn third_party/rust/winapi_util/v0_1/BUILD.gn third_party/rust/yoke/v0_8/BUILD.gn third_party/rust/yoke_derive/v0_8/BUILD.gn third_party/rust/zerofrom/v0_1/BUILD.gn third_party/rust/zerofrom_derive/v0_1/BUILD.gn third_party/rust/zerovec_derive/v0_11/BUILD.gn third_party/rust/zip/v7/BUILD.gn third_party/rust/zmij/v1/BUILD.gn third_party/s2cellid/src/s2/_fpcontractoff.h third_party/s2cellid/src/s2/r1interval.h third_party/s2cellid/src/s2/r2.h third_party/s2cellid/src/s2/r2rect.cc third_party/s2cellid/src/s2/r2rect.h third_party/s2cellid/src/s2/s1angle.cc third_party/s2cellid/src/s2/s1angle.h third_party/s2cellid/src/s2/s2cellid.cc third_party/s2cellid/src/s2/s2cellid.h third_party/s2cellid/src/s2/s2coords-internal.h third_party/s2cellid/src/s2/s2coords.cc third_party/s2cellid/src/s2/s2coords.h third_party/s2cellid/src/s2/s2latlng.cc third_party/s2cellid/src/s2/s2latlng.h third_party/s2cellid/src/s2/s2point.h third_party/sentencepiece/src/CMakeLists.txt third_party/shell-encryption/BUILD.gn third_party/simplejson/ordered_dict.py third_party/skia/PRESUBMIT.py third_party/skia/bazel/deps.json third_party/skia/bench/DashBench.cpp third_party/skia/bench/DecodeBench.cpp third_party/skia/build_overrides/partition_alloc.gni third_party/skia/demos.skia.org/demos/image_decode_web_worker/index.html third_party/skia/demos.skia.org/demos/mesh2d/index.html third_party/skia/demos.skia.org/demos/path_performance/index.html third_party/skia/demos.skia.org/demos/web_worker/index.html third_party/skia/demos.skia.org/demos/webgpu/index.html third_party/skia/example/external_client/src/ganesh_gl.cpp third_party/skia/example/external_client/src/gl_context_helper.mm third_party/skia/experimental/tools/pdf-comparison.py third_party/skia/fuzz/FuzzPathop.cpp third_party/skia/gm/addarc.cpp third_party/skia/gm/annotated_text.cpp third_party/skia/gm/bitmapshader.cpp third_party/skia/gm/crbug_224618.cpp third_party/skia/gm/dashcubics.cpp third_party/skia/gm/gradients.cpp third_party/skia/gm/labyrinth.cpp third_party/skia/gm/mandoline.cpp third_party/skia/gm/pictureshader.cpp third_party/skia/gm/postercircle.cpp third_party/skia/gm/smallarc.cpp third_party/skia/gm/smallpaths.cpp third_party/skia/gm/stringart.cpp third_party/skia/gm/strokerect.cpp third_party/skia/gm/strokes.cpp third_party/skia/gm/stroketext.cpp third_party/skia/gn/gn_to_bp.py third_party/skia/gn/skia/BUILD.gn third_party/skia/include/core/SkColorSpace.h third_party/skia/include/ports/SkImageGeneratorWIC.h third_party/skia/include/ports/SkTypeface_mac.h third_party/skia/include/private/SkGainmapInfo.h third_party/skia/infra/bots/assets/android_ndk_darwin/create.py third_party/skia/infra/bots/assets/android_ndk_linux/create.py third_party/skia/infra/bots/assets/android_ndk_windows/create.py third_party/skia/infra/bots/assets/clang_mac_arm/create.py third_party/skia/infra/bots/assets/clang_mac_intel/create.py third_party/skia/infra/bots/assets/clang_win/create.py third_party/skia/infra/bots/assets/gcloud_linux/create.py third_party/skia/infra/bots/assets/gsutil/create.py third_party/skia/infra/bots/assets/skparagraph/create.py third_party/skia/infra/bots/check_deps.py third_party/skia/infra/bots/git_utils.py third_party/skia/infra/bots/recipe_modules/build/api.py third_party/skia/infra/bots/recipe_modules/build/default.py third_party/skia/infra/bots/recipe_modules/build/examples/full.py third_party/skia/infra/bots/recipe_modules/checkout/api.py third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/Build-Debian10-Clang-x86_64-Release-NoDEPS.json third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/cross_repo_trybot.json third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/trybot.json third_party/skia/infra/bots/recipe_modules/checkout/examples/full.py third_party/skia/infra/bots/recipe_modules/doxygen/examples/full.py third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-ChromeOS-Clang-Cherry-GPU-MaliG57-arm-Debug-All.json third_party/skia/infra/bots/recipe_modules/flavor/examples/full.py third_party/skia/infra/bots/recipe_modules/flavor/ssh.py third_party/skia/infra/bots/recipe_modules/gold_upload/examples/full.py third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.py third_party/skia/infra/bots/recipe_modules/infra/examples/full.py third_party/skia/infra/bots/recipe_modules/run/examples/full.py third_party/skia/infra/bots/recipe_modules/vars/examples/full.py third_party/skia/infra/bots/recipe_modules/xcode/api.py third_party/skia/infra/bots/recipe_modules/xcode/examples/full.py third_party/skia/infra/bots/recipes.py third_party/skia/infra/bots/recipes/compile.py third_party/skia/infra/bots/recipes/compute_buildstats.expected/normal_bot.json third_party/skia/infra/bots/recipes/compute_buildstats.expected/trybot.json third_party/skia/infra/bots/recipes/compute_buildstats.py third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json third_party/skia/infra/bots/recipes/housekeeper.py third_party/skia/infra/bots/recipes/infra.py third_party/skia/infra/bots/recipes/perf_skottietrace.py third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.py third_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Debian10-Clang-arm-Release-NoPatch (tryjob).json third_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Debian10-Clang-arm-Release-NoPatch.json third_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Win10-Clang-x86_64-Release-NoDEPS.json third_party/skia/infra/bots/recipes/sync_and_compile.py third_party/skia/infra/bots/recipes/test.py third_party/skia/infra/bots/recipes/test_canvaskit.py third_party/skia/infra/bots/recipes/test_lottie_web.py third_party/skia/infra/bots/recipes/upload_buildstats_results.py third_party/skia/infra/bots/recipes/upload_dm_results.py third_party/skia/infra/bots/recipes/upload_nano_results.py third_party/skia/infra/bots/run_recipe.py third_party/skia/infra/bots/tasks.json third_party/skia/infra/bots/utils.py third_party/skia/modules/canvaskit/htmlcanvas/canvas2dcontext.js third_party/skia/modules/canvaskit/htmlcanvas/font.js third_party/skia/modules/canvaskit/htmlcanvas/path2d.js third_party/skia/modules/canvaskit/interface.js third_party/skia/modules/canvaskit/npm_build/package.json third_party/skia/modules/canvaskit/npm_build/paragraphs.html third_party/skia/modules/canvaskit/npm_build/types/index.d.ts third_party/skia/modules/canvaskit/tests/canvas_test.js third_party/skia/modules/canvaskit/tests/core_test.js third_party/skia/modules/canvaskit/tests/font_test.js third_party/skia/modules/canvaskit/tests/skottie_test.js third_party/skia/modules/canvaskit/webgl.js third_party/skia/modules/skcms/src/skcms_public.h third_party/skia/modules/skottie/src/effects/SkSLEffect.cpp third_party/skia/modules/skottie/src/layers/TextLayer.cpp third_party/skia/modules/skunicode/BUILD.gn third_party/skia/modules/skunicode/src/SkUnicode_icu.cpp third_party/skia/modules/svg/src/SkSVGOpenTypeSVGDecoder.cpp third_party/skia/platform_tools/android/tradefed/upload_dm_results.py third_party/skia/platform_tools/libraries/include/arcore_c_api.h third_party/skia/resources/skottie/skottie-line-height.json third_party/skia/resources/skottie/skottie-text-pointmode-downscaletofit.json third_party/skia/resources/skottie/skottie-text-pointmode-scaletofit.json third_party/skia/resources/skottie/skottie-text-resize-to-fit.json third_party/skia/resources/skottie/skottie-text-valign-bottom.json third_party/skia/resources/skottie/skottie-text-valign.json third_party/skia/resources/skottie/skottie_sample_webfont.json third_party/skia/resources/sksl/es2_conformance/import_conformance_tests.py third_party/skia/site/about/_index.html third_party/skia/specs/web-img-decode/proposed/impl/impl.js third_party/skia/src/base/SkLeanWindows.h third_party/skia/src/codec/SkCodec.cpp third_party/skia/src/codec/SkCrabbyAvifCodec.cpp third_party/skia/src/codec/SkPngRustCodec.cpp third_party/skia/src/codec/SkWebpCodec.cpp third_party/skia/src/codec/SkWuffsCodec.cpp third_party/skia/src/codec/SkXmp.cpp third_party/skia/src/core/SkEdge.cpp third_party/skia/src/core/SkGeometry.cpp third_party/skia/src/core/SkGeometry.h third_party/skia/src/core/SkMaskGamma.cpp third_party/skia/src/core/SkMipmap.cpp third_party/skia/src/core/SkPicturePriv.h third_party/skia/src/core/SkPoint3.cpp third_party/skia/src/core/SkRasterPipelineOpList.h third_party/skia/src/core/SkRecordDraw.cpp third_party/skia/src/core/SkRecordOpts.cpp third_party/skia/src/encode/SkJpegGainmapEncoder.cpp third_party/skia/src/encode/SkWebpEncoderImpl.cpp third_party/skia/src/gpu/ganesh/GrRenderTask.h third_party/skia/src/gpu/ganesh/GrShaderCaps.h third_party/skia/src/gpu/ganesh/d3d/GrD3DCaps.cpp third_party/skia/src/gpu/ganesh/effects/GrDisableColorXP.cpp third_party/skia/src/gpu/ganesh/gl/AHardwareBufferGL.cpp third_party/skia/src/gpu/ganesh/gl/GrGLCaps.cpp third_party/skia/src/gpu/ganesh/gl/GrGLCaps.h third_party/skia/src/gpu/ganesh/gl/GrGLGpu.cpp third_party/skia/src/gpu/ganesh/vk/GrVkCaps.cpp third_party/skia/src/gpu/graphite/Device.cpp third_party/skia/src/gpu/graphite/dawn/DawnCommandBuffer.cpp third_party/skia/src/gpu/graphite/dawn/DawnResourceProvider.cpp third_party/skia/src/gpu/graphite/render/AnalyticRRectRenderStep.cpp third_party/skia/src/gpu/graphite/render/PerEdgeAAQuadRenderStep.cpp third_party/skia/src/gpu/graphite/surface/Surface_AndroidFactories.cpp third_party/skia/src/gpu/tessellate/Tessellation.cpp third_party/skia/src/opts/SkRasterPipeline_opts.h third_party/skia/src/pathops/SkOpAngle.cpp third_party/skia/src/pathops/SkPathOpsOp.cpp third_party/skia/src/pdf/SkPDFFont.cpp third_party/skia/src/ports/SkFontHost_FreeType.cpp third_party/skia/src/ports/SkFontHost_FreeType_common.cpp third_party/skia/src/ports/SkFontHost_win.cpp third_party/skia/src/ports/SkFontMgr_android_ndk.cpp third_party/skia/src/ports/SkFontMgr_mac_ct.cpp third_party/skia/src/ports/SkScalerContext_mac_ct.cpp third_party/skia/src/ports/SkScalerContext_win_dw.cpp third_party/skia/src/ports/SkTypeface_fontations.cpp third_party/skia/src/ports/SkTypeface_mac_ct.cpp third_party/skia/src/sksl/SkSLModule.h third_party/skia/src/sksl/SkSLModuleLoader.h third_party/skia/src/sksl/analysis/SkSLSpecialization.h third_party/skia/src/sksl/codegen/SkSLRasterPipelineCodeGenerator.h third_party/skia/src/utils/SkFloatToDecimal.cpp third_party/skia/src/utils/SkFloatUtils.h third_party/skia/tests/AAClipTest.cpp third_party/skia/tests/BitmapTest.cpp third_party/skia/tests/BlurTest.cpp third_party/skia/tests/CanvasTest.cpp third_party/skia/tests/ClipperTest.cpp third_party/skia/tests/CodecTest.cpp third_party/skia/tests/ColorPrivTest.cpp third_party/skia/tests/CtsEnforcement.h third_party/skia/tests/DrawPathTest.cpp third_party/skia/tests/DrawTextTest.cpp third_party/skia/tests/GradientTest.cpp third_party/skia/tests/ImageGeneratorTest.cpp third_party/skia/tests/PDFPrimitivesTest.cpp third_party/skia/tests/PDFTaggedLinkTest.cpp third_party/skia/tests/PathOpsAsWindingTest.cpp third_party/skia/tests/PathTest.cpp third_party/skia/tests/RecordingXfermodeTest.cpp third_party/skia/tests/RegionTest.cpp third_party/skia/tests/SkXmpTest.cpp third_party/skia/tests/StringTest.cpp third_party/skia/tests/TriangulatingPathRendererTests.cpp third_party/skia/tests/TypefaceTest.cpp third_party/skia/third_party/dawn/BUILD.gn third_party/skia/third_party/dawn/build_dawn.py third_party/skia/third_party/etc1/etc1.cpp third_party/skia/third_party/etc1/etc1.h third_party/skia/third_party/freetype2/include/freetype-android/freetype/config/ftoption.h third_party/skia/third_party/freetype2/include/freetype-no-type1/freetype/config/ftoption.h third_party/skia/third_party/icu_bidi/BUILD.gn third_party/skia/tools/abandon_gerrit_cls.py third_party/skia/tools/bloaty_treemap.py third_party/skia/tools/copyright/main.py third_party/skia/tools/flags/CommandLineFlags.h third_party/skia/tools/gpu/vk/VkTestMemoryAllocator.h third_party/skia/tools/perf-canvaskit-puppeteer/canvas_perf.js third_party/skia/tools/run-wasm-gm-tests/run-wasm-gm-tests.html third_party/skia/tools/skia-client-search.html third_party/skia/tools/skp/generate_page_set.py third_party/skia/tools/skp/page_sets/other/OLD-skia_desktop_set.json third_party/skia/tools/skp/page_sets/other/OLD-skia_nexus10_set.json third_party/skia/tools/skp/page_sets/skia_css3gradients_desktop.py third_party/skia/tools/skp/page_sets/skia_facebook_desktop.py third_party/skia/tools/skp/page_sets/skia_facebook_mobile.py third_party/skia/tools/skp/page_sets/skia_gmail_desktop.py third_party/skia/tools/skp/page_sets/skia_googlecalendar_desktop.py third_party/skia/tools/skp/page_sets/skia_googledocs_desktop.py third_party/skia/tools/skp/page_sets/skia_googleimagesearch_desktop.py third_party/skia/tools/skp/page_sets/skia_googlenews_mobile.py third_party/skia/tools/skp/page_sets/skia_googlesearch_desktop.py third_party/skia/tools/skp/page_sets/skia_googlespreadsheet_desktop.py third_party/skia/tools/skp/page_sets/skia_micrographygirlsvg_desktop.py third_party/skia/tools/skp/page_sets/skia_motionmarkarcs_desktop.py third_party/skia/tools/skp/page_sets/skia_motionmarkpaths_desktop.py third_party/skia/tools/skp/page_sets/skia_motionmarksuits_desktop.py third_party/skia/tools/skp/page_sets/skia_motionmarksuitsclip_desktop.py third_party/skia/tools/skp/page_sets/skia_mozilla_tablet.py third_party/skia/tools/skp/page_sets/skia_tiger8svg_desktop.py third_party/skia/tools/skp/page_sets/skia_ynevsvg_desktop.py third_party/skia/tools/skp/page_sets/skia_youtube_desktop.py third_party/skia/tools/skp/page_sets/skia_youtube_mobile.py third_party/skia/tools/skp/webpages_playback.py third_party/skia/tools/skpbench/_hardware_android.py third_party/skia/tools/skpbench/_hardware_pixel.py third_party/skia/tools/skpbench/_hardware_pixel_c.py third_party/skia/tools/skpbench/sheet.py third_party/skia/tools/skqp/src/skqp.cpp third_party/skia/tools/skqp/src/skqp_GpuTestProcs.cpp third_party/skia/tools/viewer/ClockSlide.cpp third_party/skia/tools/viewer/MotionMarkSlide.cpp third_party/skia/tools/viewer/PathSlide.cpp third_party/skia/tools/viewer/StringArtSlide.cpp third_party/smhasher/src/src/PMurHash.c third_party/snappy/linux/snappy-stubs-public.h third_party/snappy/mac/snappy-stubs-public.h third_party/snappy/src/snappy-test.h third_party/snappy/win32/snappy-stubs-public.h third_party/spirv-cross/src/spirv_hlsl.cpp third_party/spirv-headers/src/include/spirv/spir-v.xml third_party/spirv-tools/src/PRESUBMIT.py third_party/spirv-tools/src/tools/sva/package.json third_party/sqlite/src/amalgamation/shell/shell.c third_party/sqlite/src/amalgamation/sqlite3.c third_party/sqlite/src/amalgamation_dev/shell/shell.c third_party/sqlite/src/amalgamation_dev/sqlite3.c third_party/sqlite/src/ext/misc/zipfile.c third_party/sqlite/src/ext/wasm/README-dist.txt third_party/sqlite/src/ext/wasm/api/sqlite3-opfs-async-proxy.js third_party/sqlite/src/ext/wasm/api/sqlite3-worker1-promiser.c-pp.js third_party/sqlite/src/ext/wasm/index-dist.html third_party/sqlite/src/ext/wasm/index.html third_party/sqlite/src/src/date.c third_party/sqlite/src/src/main.c third_party/sqlite/src/src/os_unix.c third_party/sqlite/src/src/pager.c third_party/swiftshader/.vscode/tasks.json third_party/swiftshader/AUTHORS.txt third_party/swiftshader/CMakeLists.txt third_party/swiftshader/CONTRIBUTING.txt third_party/swiftshader/CONTRIBUTORS.txt third_party/swiftshader/src/Device/BC_Decoder.cpp third_party/swiftshader/src/Reactor/LLVMJIT.cpp third_party/swiftshader/src/System/Synchronization.hpp third_party/swiftshader/tests/ReactorUnitTests/ReactorUnitTests.cpp third_party/swiftshader/third_party/SPIRV-Headers/include/spirv/spir-v.xml third_party/swiftshader/third_party/SPIRV-Tools/PRESUBMIT.py third_party/swiftshader/third_party/SPIRV-Tools/tools/sva/package.json third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/COFF.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ELF.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/Minidump.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/CodeView.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/PassManager.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/COFFModuleDefinition.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/WindowsResource.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/CommandLine.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Compiler.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/RWMutex.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/SHA1.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/TimeProfiler.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Win64EH.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/WindowsResource/ResourceScriptToken.h third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/TargetLibraryInfo.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MachineOutliner.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCWin64EH.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Object/COFFModuleDefinition.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ELF.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Passes/PassBuilder.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Support/SHA1.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ARMFrameLowering.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/PPCISelLowering.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/X86FrameLowering.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/X86ISelLowering.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp third_party/swiftshader/third_party/llvm-10.0/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/TensorSpec.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/COFF.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/ELF.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/Minidump.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/MachineFrameInfo.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/CodeView/CodeView.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ExecutionEngine/Orc/COFFVCRuntimeSupport.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/PassManager.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Object/COFFModuleDefinition.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Object/WindowsResource.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ARMWinEH.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/CommandLine.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/Compiler.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/SHA1.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/TimeProfiler.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/Win64EH.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Transforms/IPO/FunctionSpecialization.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h third_party/swiftshader/third_party/llvm-16.0/llvm/include/llvm/WindowsResource/ResourceScriptToken.h third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/TargetLibraryInfo.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/JMCInstrumenter.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/MachineFunctionSplitter.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/MachineOutliner.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/CodeView/Formatters.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/JITLink/COFFDirectiveParser.h third_party/swiftshader/third_party/llvm-16.0/llvm/lib/MC/MCWin64EH.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/ELF/ELFObject.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/ObjCopy/MachO/MachOWriter.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Object/COFFModuleDefinition.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Object/ELF.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Passes/PassBuilderPipelines.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Support/SHA1.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/DirectX/CBufferDataLayout.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/PowerPC/PPCISelLowering.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Target/X86/X86ISelLowering.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/IPO/FunctionSpecialization.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp third_party/swiftshader/third_party/llvm-16.0/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp third_party/swiftshader/third_party/llvm-subzero/CREDITS.TXT third_party/swiftshader/third_party/llvm-subzero/include/llvm/Support/COFF.h third_party/swiftshader/third_party/llvm-subzero/include/llvm/Support/CommandLine.h third_party/swiftshader/third_party/llvm-subzero/include/llvm/Support/Compiler.h third_party/swiftshader/third_party/marl/include/marl/trace.h third_party/swiftshader/third_party/marl/src/trace.cpp third_party/swiftshader/third_party/subzero/Makefile third_party/swiftshader/third_party/subzero/bloat/webtreemap.js third_party/swiftshader/third_party/subzero/pnacl-llvm/README.txt third_party/swiftshader/third_party/subzero/src/DartARM32/assembler_arm.cc third_party/swiftshader/third_party/subzero/src/DartARM32/assembler_arm.h third_party/swiftshader/third_party/subzero/src/IceAssembler.cpp third_party/swiftshader/third_party/subzero/src/IceIntrinsics.h third_party/swiftshader/third_party/subzero/src/IceTargetLoweringMIPS32.cpp third_party/swiftshader/third_party/subzero/src/IceTargetLoweringX8632.cpp third_party/swiftshader/third_party/subzero/src/IceTargetLoweringX8664.cpp third_party/swiftshader/third_party/subzero/src/PNaClTranslator.cpp third_party/swiftshader/third_party/subzero/src/WasmTranslator.cpp third_party/swiftshader/third_party/subzero/unittest/IceParseTypesTest.cpp third_party/text-fragments-polyfill/src/package.json third_party/text-fragments-polyfill/src/src/text-fragment-utils.js third_party/text-fragments-polyfill/src/test/unit/complicated-layout.html third_party/tflite/src/configure.py third_party/tflite/src/tensorflow/core/common_runtime/accumulate_n_optimizer.cc third_party/tflite/src/tensorflow/core/distributed_runtime/error_payloads.h third_party/tflite/src/tensorflow/core/kernels/decode_proto_op.cc third_party/tflite/src/tensorflow/core/kernels/example_parsing_ops.cc third_party/tflite/src/tensorflow/core/kernels/image/decode_image_op.cc third_party/tflite/src/tensorflow/core/platform/cloud/testdata/application_default_credentials.json third_party/tflite/src/tensorflow/core/platform/cloud/testdata/service_account_credentials.json third_party/tflite/src/tensorflow/core/platform/error_payloads.h third_party/tflite/src/tensorflow/core/tpu/tpu_compile_interface.h third_party/tflite/src/tensorflow/core/tpu/tpu_embedding_errors.h third_party/tflite/src/tensorflow/core/util/ctc/ctc_beam_search.h third_party/tflite/src/tensorflow/core/util/example_proto_fast_parsing_test.cc third_party/tflite/src/tensorflow/examples/speech_commands/generate_streaming_test_wav.py third_party/tflite/src/tensorflow/examples/speech_commands/models.py third_party/tflite/src/tensorflow/examples/speech_commands/train.py third_party/tflite/src/tensorflow/lite/core/c/common.h third_party/tflite/src/tensorflow/lite/delegates/gpu/android_hardware_buffer.h third_party/tflite/src/tensorflow/lite/delegates/nnapi/nnapi_delegate.h third_party/tflite/src/tensorflow/lite/delegates/nnapi/nnapi_delegate_c_api.h third_party/tflite/src/tensorflow/lite/delegates/xnnpack/windows_util.cc third_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/libjpeg_decoder.cc third_party/tflite/src/tensorflow/lite/experimental/acceleration/mini_benchmark/runner.cc third_party/tflite/src/tensorflow/lite/g3doc/api_docs/c/group/tflite.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/classes.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/DataType.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Delegate.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.Options.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Interpreter.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.TfLiteRuntime.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.Options.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterApi.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/InterpreterFactory.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/RuntimeFlavor.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.QuantizationParams.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/Tensor.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/TensorFlowLite.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/CompatibilityList.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.Options.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegate.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.GpuBackend.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.Options.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/gpu/GpuDelegateFactory.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.TensorAudioFormat.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/audio/TensorAudio.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/FileUtil.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/SequentialProcessor.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/TensorProcessor.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/CastOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/DequantizeOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/NormalizeOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/common/ops/QuantizeOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.CoordinateType.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.Type.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/BoundingBoxUtil.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ColorSpaceType.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProcessor.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ImageProperties.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/MlImageAdapter.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/TensorImage.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.ResizeMethod.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/ResizeWithCropOrPadOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/Rot90Op.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TensorOperatorWrapper.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/image/ops/TransformToGrayscaleOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/Category.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/LabelUtil.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/TensorLabel.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/label/ops/LabelAxisOp.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.QuantizationParams.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataExtractor.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/metadata/MetadataParser.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Device.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.Options.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/model/Model.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBuffer.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferFloat.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/support/tensorbuffer/TensorBufferUint8.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.AudioClassifierOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/AudioClassifier.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/audio/classifier/Classifications.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/BaseTaskApi.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.Delegate.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/ComputeSettings.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.MultipleBuffersHandleProvider.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/TaskJniUtils.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/package-summary.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.Orientation.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/core/vision/ImageProcessingOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/audio/TfLiteAudio.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/gms/text/TfLiteText.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/NearestNeighbor.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/processor/SearcherOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.BertCluAnnotatorOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/BertCluAnnotator.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluRequest.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.CategoricalSlot.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.Mention.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.MentionedSlot.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/bertclu/CluResponse.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.BertNLClassifierOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/BertNLClassifier.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.NLClassifierOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/nlclassifier/NLClassifier.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.BertQuestionAnswererOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/BertQuestionAnswerer.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.Pos.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QaAnswer.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/qa/QuestionAnswerer.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.TextSearcherOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/text/searcher/TextSearcher.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/Classifications.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.ImageClassifierOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/classifier/ImageClassifier.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/core/BaseVisionTaskApi.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/Detection.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.ObjectDetectorOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/detector/ObjectDetector.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.ImageSearcherOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/searcher/ImageSearcher.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ColoredLabel.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.Builder.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.ImageSegmenterOptions.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/ImageSegmenter.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/OutputType.html third_party/tflite/src/tensorflow/lite/g3doc/api_docs/java/org/tensorflow/lite/task/vision/segmenter/Segmentation.html third_party/tflite/src/tensorflow/lite/g3doc/tools/build_java_api_docs.py third_party/tflite/src/tensorflow/lite/java/src/main/native/op_resolver_lazy_delegate_proxy.cc third_party/tflite/src/tensorflow/lite/kernels/ctc/ctc_beam_search.h third_party/tflite/src/tensorflow/lite/kernels/internal/reference/svdf.h third_party/tflite/src/tensorflow/lite/kernels/svdf.cc third_party/tflite/src/tensorflow/lite/nnapi/NeuralNetworksShim.h third_party/tflite/src/tensorflow/lite/nnapi/NeuralNetworksTypes.h third_party/tflite/src/tensorflow/lite/toco/graph_transformations/ensure_uint8_weights_safe_for_fast_int8_kernels.cc third_party/tflite/src/tensorflow/lite/toco/logging/template.html third_party/tflite/src/tensorflow/lite/toco/logging/testdata/generated.html third_party/tflite/src/tensorflow/lite/toco/model.h third_party/tflite/src/tensorflow/lite/tools/benchmark/experimental/firebase/android/jni/benchmark_model_jni.cc third_party/tflite/src/tensorflow/lite/tutorials/dataset.py third_party/tflite/src/tensorflow/python/compiler/xla/tests/pjrt_autoclustering_test.py third_party/tflite/src/tensorflow/python/distribute/coordinator/get_task_states_test.py third_party/tflite/src/tensorflow/python/distribute/failure_handling/failure_handling.py third_party/tflite/src/tensorflow/python/eager/remote_cluster_test.py third_party/tflite/src/tensorflow/python/framework/graph_to_function_def.py third_party/tflite/src/tensorflow/python/framework/ops.py third_party/tflite/src/tensorflow/python/framework/test_util_test.py third_party/tflite/src/tensorflow/python/keras/layers/recurrent.py third_party/tflite/src/tensorflow/python/keras/optimizer_v2/ftrl.py third_party/tflite/src/tensorflow/python/keras/utils/data_utils.py third_party/tflite/src/tensorflow/python/ops/distributions/special_math.py third_party/tflite/src/tensorflow/python/ops/parsing_ops.py third_party/tflite/src/tensorflow/python/platform/self_check.py third_party/tflite/src/tensorflow/python/tpu/client/client.py third_party/tflite/src/tensorflow/python/tpu/client/pip_package/setup.py third_party/tflite/src/tensorflow/python/tpu/tpu_embedding_v2_utils.py third_party/tflite/src/tensorflow/tools/android/test/jni/rgb2yuv.cc third_party/tflite/src/tensorflow/tools/compatibility/tf_upgrade_v2_safety_test.py third_party/tflite/src/tensorflow/tools/pip_package/THIRD_PARTY_NOTICES.txt third_party/tflite/src/third_party/xla/xla/backends/gpu/codegen/emitters/transpose.h third_party/tflite/src/third_party/xla/xla/error/debug_me_context_util.h third_party/tflite/src/third_party/xla/xla/pjrt/c/pjrt_c_api.h third_party/tflite/src/third_party/xla/xla/pjrt/distributed/coordination/coordination_service_error_util.h third_party/tflite/src/third_party/xla/xla/pjrt/errors.cc third_party/tflite/src/third_party/xla/xla/pjrt/pjrt_api.cc third_party/tflite/src/third_party/xla/xla/python/ifrt/user_context_status_util.cc third_party/tflite/src/third_party/xla/xla/python/ifrt/user_context_status_util_test.cc third_party/tflite/src/third_party/xla/xla/python/ifrt_proxy/contrib/pathways/status_annotator_util.cc third_party/tflite/src/third_party/xla/xla/service/hlo_graph_dumper.cc third_party/tflite/src/third_party/xla/xla/service/hlo_verifier.cc third_party/tflite/src/third_party/xla/xla/tools/benchmarks/utils/generate_benchmark_matrices_main.cc third_party/tflite/src/third_party/xla/xla/tsl/distributed_runtime/coordination/coordination_service_error_util.h third_party/tflite/src/third_party/xla/xla/tsl/distributed_runtime/rpc/grpc_util.h third_party/tflite/src/third_party/xla/xla/tsl/lib/io/format.h third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/compute_engine_metadata_client.h third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/curl_http_request.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/curl_http_request.h third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/curl_http_request_test.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_dns_cache.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_dns_cache_test.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_file_system.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/gcs_file_system_test.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/google_auth_provider.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/http_request.h third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/oauth_client_test.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/testdata/application_default_credentials.json third_party/tflite/src/third_party/xla/xla/tsl/platform/cloud/testdata/service_account_credentials.json third_party/tflite/src/third_party/xla/xla/tsl/platform/file_system.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/status.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/windows/env.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/windows/stacktrace.cc third_party/tflite/src/third_party/xla/xla/tsl/platform/windows/stacktrace_handler.cc third_party/tflite_support/src/tensorflow_lite_support/c/task/processor/category.h third_party/unrar/src/threadmisc.cpp third_party/unrar/src/threadpool.cpp third_party/updater/chrome_mac_universal/3pp/fetch.py third_party/updater/chrome_mac_universal_prod/3pp/fetch.py third_party/updater/chrome_win_arm64/3pp/fetch.py third_party/updater/chrome_win_x86/3pp/fetch.py third_party/updater/chrome_win_x86_64/3pp/fetch.py third_party/updater/chromium_mac_amd64/3pp/fetch.py third_party/updater/chromium_mac_arm64/3pp/fetch.py third_party/updater/chromium_win_arm64/3pp/fetch.py third_party/updater/chromium_win_x86/3pp/fetch.py third_party/updater/chromium_win_x86_64/3pp/fetch.py third_party/vulkan-deps/update-commit-message.py third_party/vulkan-loader/src/loader/allocation.c third_party/vulkan-loader/src/loader/allocation.h third_party/vulkan-loader/src/loader/generated/vk_object_types.h third_party/vulkan-loader/src/loader/loader.h third_party/vulkan-loader/src/loader/loader_common.h third_party/vulkan-loader/src/loader/loader_environment.c third_party/vulkan-loader/src/loader/loader_environment.h third_party/vulkan-loader/src/loader/loader_windows.c third_party/vulkan-loader/src/loader/loader_windows.h third_party/vulkan-loader/src/loader/log.c third_party/vulkan-loader/src/loader/log.h third_party/vulkan-loader/src/loader/stack_allocation.h third_party/vulkan-loader/src/loader/wsi.c third_party/vulkan-loader/src/scripts/generators/helper_file_generator.py third_party/vulkan-loader/src/scripts/gn/gn.py third_party/vulkan-tools/src/cube/cube.c third_party/vulkan-tools/src/cube/gettime.h third_party/vulkan-tools/src/icd/generated/vk_typemap_helper.h third_party/vulkan-tools/src/scripts/android.py third_party/vulkan-tools/src/scripts/generators/mock_icd_generator.py third_party/vulkan-tools/src/scripts/generators/vulkan_tools_helper_file_generator.py third_party/vulkan-tools/src/scripts/gn/gn.py third_party/vulkan-utility-libraries/src/scripts/gn/gn.py third_party/vulkan-validation-layers/src/layers/CMakeLists.txt third_party/vulkan-validation-layers/src/layers/external/inplace_function.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/btree.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_base.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_bits.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_config.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_dump.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_fwd_decl.h third_party/vulkan-validation-layers/src/layers/external/parallel_hashmap/phmap_utils.h third_party/vulkan-validation-layers/src/layers/external/xxhash.h third_party/vulkan-validation-layers/src/layers/gpuav/resources/gpuav_shader_resources.h third_party/vulkan-validation-layers/src/scripts/android.py third_party/vulkan-validation-layers/src/scripts/gn/export_targets.py third_party/vulkan-validation-layers/src/scripts/gn/gn.py third_party/wayland-protocols/gtk/.gitlab-ci/pages/fonts.css third_party/wayland-protocols/gtk/.gitlab-ci/pages/index.html third_party/wayland-protocols/gtk/demos/gtk-demo/links.c third_party/wayland-protocols/gtk/demos/gtk-demo/messages.txt third_party/wayland-protocols/gtk/demos/gtk-demo/org.gtk.Demo4.appdata.xml third_party/wayland-protocols/gtk/demos/icon-browser/org.gtk.IconBrowser4.appdata.xml third_party/wayland-protocols/gtk/demos/print-editor/org.gtk.PrintEditor4.appdata.xml third_party/wayland-protocols/gtk/demos/widget-factory/org.gtk.WidgetFactory4.appdata.xml third_party/wayland-protocols/gtk/gdk/wayland/gdkvulkancontext-wayland.c third_party/wayland-protocols/gtk/gdk/wayland/gdkvulkancontext-wayland.h third_party/wayland-protocols/gtk/gdk/win32/gdkclipdrop-win32.c third_party/wayland-protocols/gtk/gdk/win32/gdkdisplay-win32.h third_party/wayland-protocols/gtk/gdk/win32/gdkevents-win32.c third_party/wayland-protocols/gtk/gdk/win32/gdkhdataoutputstream-win32.c third_party/wayland-protocols/gtk/gdk/win32/gdkproperty-win32.c third_party/wayland-protocols/gtk/gdk/win32/gdkwin32langnotification.c third_party/wayland-protocols/gtk/gdk/win32/gdkwin32langnotification.h third_party/wayland-protocols/gtk/gdk/win32/gdkwin32monitor.h third_party/wayland-protocols/gtk/gsk/gskcairoblur.c third_party/wayland-protocols/gtk/gtk/gtkcomposetable.c third_party/wayland-protocols/gtk/gtk/gtkcomposetable.h third_party/wayland-protocols/gtk/gtk/gtkimcontextime.c third_party/wayland-protocols/gtk/gtk/gtklinkbutton.c third_party/wayland-protocols/gtk/gtk/gtklinkbutton.h third_party/wayland-protocols/gtk/gtk/gtkplacesview.c third_party/wayland-protocols/gtk/gtk/gtkplacesviewprivate.h third_party/wayland-protocols/gtk/gtk/gtkplacesviewrow.c third_party/wayland-protocols/gtk/gtk/gtkplacesviewrowprivate.h third_party/wayland-protocols/gtk/gtk/gtkprogresstracker.c third_party/wayland-protocols/gtk/gtk/gtkprogresstrackerprivate.h third_party/wayland-protocols/gtk/gtk/gtkscrollable.c third_party/wayland-protocols/gtk/gtk/gtkscrollable.h third_party/wayland-protocols/gtk/gtk/gtksizerequest.c third_party/wayland-protocols/gtk/gtk/gtksizerequest.h third_party/wayland-protocols/gtk/gtk/gtksizerequestcache.c third_party/wayland-protocols/gtk/gtk/gtkspinner.c third_party/wayland-protocols/gtk/gtk/gtkspinner.h third_party/wayland-protocols/gtk/gtk/open-type-layout.h third_party/wayland-protocols/gtk/modules/printbackends/gtkcloudprintaccount.c third_party/wayland-protocols/gtk/tests/testheightforwidth.c third_party/wayland/src/egl/wayland-egl-backend.h third_party/wayland/src/egl/wayland-egl.c third_party/wayland/src/src/wayland-shm.c third_party/webdriver/pylib/selenium/webdriver/firefox/firefox_profile.py third_party/webdriver/pylib/test/selenium/webdriver/common/alerts_tests.py third_party/webdriver/pylib/test/selenium/webdriver/common/clear_tests.py third_party/webdriver/pylib/test/selenium/webdriver/common/driver_element_finding_tests.py third_party/webdriver/pylib/test/selenium/webdriver/common/example2.py third_party/webdriver/pylib/test/selenium/webdriver/common/executing_async_javascript_tests.py third_party/webdriver/pylib/test/selenium/webdriver/common/typing_tests.py third_party/webdriver/pylib/test/selenium/webdriver/common/webdriverwait_tests.py third_party/webdriver/pylib/test/selenium/webdriver/firefox/firefox_sizing_tests.py third_party/webgpu-cts/src/src/webgpu/api/operation/command_buffer/queries/occlusionQuery.spec.ts third_party/webgpu-cts/src/src/webgpu/api/operation/render_pipeline/sample_mask.spec.ts third_party/webgpu-cts/src/src/webgpu/api/operation/rendering/depth_bias.spec.ts third_party/webgpu-cts/src/src/webgpu/api/operation/sampling/filter_mode.spec.ts third_party/webgpu-cts/src/src/webgpu/multisample_info.ts third_party/webgpu-cts/src/src/webgpu/shader/execution/shader_io/fragment_builtins.spec.ts third_party/webgpu-cts/src/standalone/index.html third_party/webpagereplay/PRESUBMIT.py third_party/webpagereplay/scripts/upload_new_binaries.py third_party/webrtc/.gn third_party/webrtc/BUILD.gn third_party/webrtc/PRESUBMIT.py third_party/webrtc/api/audio_codecs/opus/audio_encoder_opus_config.h third_party/webrtc/api/data_channel_event_observer_interface.h third_party/webrtc/api/jsep.cc third_party/webrtc/api/location.h third_party/webrtc/api/rtp_transceiver_interface.h third_party/webrtc/api/scoped_refptr.h third_party/webrtc/api/uma_metrics.h third_party/webrtc/api/video/hdr_metadata.h third_party/webrtc/api/video/i410_buffer.h third_party/webrtc/api/video/i420_buffer.h third_party/webrtc/api/video/i422_buffer.h third_party/webrtc/api/video/i444_buffer.h third_party/webrtc/api/video/nv12_buffer.h third_party/webrtc/api/video_codecs/video_encoder.h third_party/webrtc/api/webrtc_sdp.cc third_party/webrtc/api/webrtc_sdp_unittest.cc third_party/webrtc/call/adaptation/resource_adaptation_processor.h third_party/webrtc/call/call.cc third_party/webrtc/common_audio/resampler/sinc_resampler.cc third_party/webrtc/common_audio/third_party/ooura/fft_size_128/ooura_fft_tables_common.h third_party/webrtc/common_audio/third_party/ooura/fft_size_128/ooura_fft_tables_neon_sse2.h third_party/webrtc/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor.c third_party/webrtc/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor_mips.c third_party/webrtc/examples/peerconnection/client/defaults.cc third_party/webrtc/infra/specs/gn_isolate_map.pyl third_party/webrtc/media/base/video_common.cc third_party/webrtc/media/base/video_common.h third_party/webrtc/media/engine/webrtc_voice_engine.cc third_party/webrtc/media/engine/webrtc_voice_engine.h third_party/webrtc/media/engine/webrtc_voice_engine_unittest.cc third_party/webrtc/media/sctp/sctp_transport_internal.h third_party/webrtc/modules/audio_coding/acm2/audio_coding_module_unittest.cc third_party/webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc third_party/webrtc/modules/audio_coding/neteq/neteq_impl.cc third_party/webrtc/modules/audio_device/BUILD.gn third_party/webrtc/modules/audio_device/audio_device_generic.h third_party/webrtc/modules/audio_device/audio_device_unittest.cc third_party/webrtc/modules/audio_device/linux/audio_device_pulse_linux.h third_party/webrtc/modules/audio_device/linux/latebindingsymboltable_linux.cc third_party/webrtc/modules/audio_device/win/audio_device_core_win.cc third_party/webrtc/modules/audio_device/win/core_audio_utility_win.h third_party/webrtc/modules/audio_processing/agc2/rnn_vad/pitch_search.cc third_party/webrtc/modules/audio_processing/agc2/rnn_vad/rnn_fc.cc third_party/webrtc/modules/audio_processing/audio_processing_impl.cc third_party/webrtc/modules/audio_processing/audio_processing_impl_locking_unittest.cc third_party/webrtc/modules/audio_processing/gain_control_unittest.cc third_party/webrtc/modules/desktop_capture/cropping_window_capturer_win.cc third_party/webrtc/modules/desktop_capture/mac/screen_capturer_mac.mm third_party/webrtc/modules/desktop_capture/mouse_cursor_monitor_win.cc third_party/webrtc/modules/desktop_capture/screen_capturer_integration_test.cc third_party/webrtc/modules/desktop_capture/screen_drawer_unittest.cc third_party/webrtc/modules/desktop_capture/win/full_screen_win_application_handler.cc third_party/webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h third_party/webrtc/modules/desktop_capture/win/window_capture_utils.cc third_party/webrtc/modules/desktop_capture/win/window_capturer_win_gdi.cc third_party/webrtc/modules/desktop_capture/window_finder_win.cc third_party/webrtc/modules/rtp_rtcp/include/receive_statistics.h third_party/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc third_party/webrtc/modules/utility/source/jvm_android.cc third_party/webrtc/modules/video_capture/linux/device_info_v4l2.cc third_party/webrtc/modules/video_capture/test/video_capture_unittest.cc third_party/webrtc/modules/video_coding/codecs/vp9/test/vp9_impl_unittest.cc third_party/webrtc/modules/video_coding/codecs/vp9/vp9.cc third_party/webrtc/modules/video_coding/codecs/vp9/vp9_frame_buffer_pool.cc third_party/webrtc/modules/video_coding/packet_buffer.cc third_party/webrtc/modules/video_coding/packet_buffer_unittest.cc third_party/webrtc/modules/video_coding/timing/timing.cc third_party/webrtc/p2p/base/port_unittest.cc third_party/webrtc/p2p/base/turn_port.cc third_party/webrtc/p2p/base/turn_port_unittest.cc third_party/webrtc/p2p/client/basic_port_allocator.cc third_party/webrtc/p2p/client/basic_port_allocator_unittest.cc third_party/webrtc/pc/channel.cc third_party/webrtc/pc/media_session_unittest.cc third_party/webrtc/pc/peer_connection_bundle_unittest.cc third_party/webrtc/pc/peer_connection_crypto_unittest.cc third_party/webrtc/pc/peer_connection_encodings_integrationtest.cc third_party/webrtc/pc/peer_connection_end_to_end_unittest.cc third_party/webrtc/pc/peer_connection_factory_unittest.cc third_party/webrtc/pc/peer_connection_field_trial_tests.cc third_party/webrtc/pc/peer_connection_ice_unittest.cc third_party/webrtc/pc/peer_connection_integrationtest.cc third_party/webrtc/pc/peer_connection_interface_unittest.cc third_party/webrtc/pc/scenario_tests/goog_cc_test.cc third_party/webrtc/pc/sdp_offer_answer.cc third_party/webrtc/presubmit_test_mocks.py third_party/webrtc/rtc_base/async_dns_resolver.cc third_party/webrtc/rtc_base/byte_buffer.h third_party/webrtc/rtc_base/deprecated/recursive_critical_section.h third_party/webrtc/rtc_base/event_tracer.cc third_party/webrtc/rtc_base/file_rotating_stream_unittest.cc third_party/webrtc/rtc_base/network.cc third_party/webrtc/rtc_base/network.h third_party/webrtc/rtc_base/network_unittest.cc third_party/webrtc/rtc_base/numerics/safe_minmax.h third_party/webrtc/rtc_base/openssl_adapter.cc third_party/webrtc/rtc_base/physical_socket_server.cc third_party/webrtc/rtc_base/physical_socket_server_unittest.cc third_party/webrtc/rtc_base/platform_thread_types.cc third_party/webrtc/rtc_base/strong_alias.h third_party/webrtc/rtc_base/strong_alias_unittest.cc third_party/webrtc/rtc_base/system/arch.h third_party/webrtc/rtc_base/thread_annotations.h third_party/webrtc/rtc_base/thread_unittest.cc third_party/webrtc/rtc_base/timestamp_aligner_unittest.cc third_party/webrtc/rtc_base/win/scoped_com_initializer.h third_party/webrtc/rtc_base/win/windows_version.cc third_party/webrtc/rtc_base/win32_unittest.cc third_party/webrtc/rtc_tools/data_channel_benchmark/peer_connection_client.cc third_party/webrtc/rtc_tools/testing/utils.py third_party/webrtc/rtc_tools/unpack_aecdump/unpack.cc third_party/webrtc/rtc_tools/video_encoder/video_encoder.cc third_party/webrtc/sdk/android/native_api/jni/class_loader.cc third_party/webrtc/sdk/android/native_api/jni/class_loader.h third_party/webrtc/sdk/android/native_api/jni/java_types.h third_party/webrtc/sdk/android/native_api/jni/scoped_java_ref.h third_party/webrtc/sdk/android/native_unittests/audio_device/audio_device_unittest.cc third_party/webrtc/sdk/android/src/jni/android_network_monitor.cc third_party/webrtc/sdk/android/src/jni/audio_device/aaudio_player.cc third_party/webrtc/sdk/android/src/jni/audio_device/aaudio_recorder.cc third_party/webrtc/sdk/android/src/jni/audio_device/aaudio_wrapper.cc third_party/webrtc/sdk/android/src/jni/audio_device/audio_device_module.cc third_party/webrtc/sdk/android/src/jni/audio_device/opensles_recorder.h third_party/webrtc/sdk/android/src/jni/jvm.cc third_party/webrtc/sdk/media_constraints.h third_party/webrtc/sdk/objc/api/peerconnection/RTCConfiguration.h third_party/webrtc/sdk/objc/components/renderer/metal/RTCMTLI420Renderer.mm third_party/webrtc/test/android/native_test_launcher.cc third_party/webrtc/test/android/native_test_util.cc third_party/webrtc/test/peer_scenario/bwe_integration_tests/BUILD.gn third_party/webrtc/test/test_flags.cc third_party/webrtc/test/test_main_lib.cc third_party/webrtc/test/testsupport/perf_test.h third_party/webrtc/tools_webrtc/apply_clang_tidy.py third_party/webrtc/tools_webrtc/autoroller/roll_deps.py third_party/webrtc/tools_webrtc/autoroller/unittests/roll_deps_test.py third_party/webrtc/tools_webrtc/iwyu/apply_include_cleaner.py third_party/webrtc/tools_webrtc/perf/catapult_uploader.py third_party/webrtc/tools_webrtc/sanitizers/lsan_suppressions_webrtc.cc third_party/webrtc/tools_webrtc/sanitizers/tsan_suppressions_webrtc.cc third_party/webrtc/video/end_to_end_tests/rtp_rtcp_tests.cc third_party/webrtc/video/full_stack_tests.cc third_party/webrtc/video/pc_full_stack_tests.cc third_party/webrtc/video/render/video_render_frames.cc third_party/webrtc/video/rtp_video_stream_receiver2.h third_party/webrtc/video/timing/simulator/log_classifiers.h third_party/webrtc/video/timing/simulator/rtp_packet_simulator.h third_party/webrtc/video/timing/simulator/test/test_resources_unittest.cc third_party/webrtc/video/video_send_stream_tests.cc third_party/webrtc/webrtc.gni third_party/webxr_test_pages/bucket_latest.html third_party/webxr_test_pages/update_bucket.py third_party/webxr_test_pages/webxr-samples/attribution.html third_party/webxr_test_pages/webxr-samples/explainer.html third_party/webxr_test_pages/webxr-samples/gamepad.html third_party/webxr_test_pages/webxr-samples/index.html third_party/webxr_test_pages/webxr-samples/index.published.html third_party/webxr_test_pages/webxr-samples/js/webxr-button.js third_party/webxr_test_pages/webxr-samples/js/webxr-polyfill.js third_party/webxr_test_pages/webxr-samples/js/webxr-polyfill.min.js third_party/webxr_test_pages/webxr-samples/js/webxr-polyfill.module.js third_party/webxr_test_pages/webxr-samples/magic-window-multi.html third_party/webxr_test_pages/webxr-samples/magic-window.html third_party/webxr_test_pages/webxr-samples/positional-audio.html third_party/webxr_test_pages/webxr-samples/proposals/camera-access-barebones.html third_party/webxr_test_pages/webxr-samples/proposals/camera-access-marker.html third_party/webxr_test_pages/webxr-samples/proposals/index.html third_party/webxr_test_pages/webxr-samples/teleportation.html third_party/webxr_test_pages/webxr-samples/tests/index.html third_party/webxr_test_pages/webxr-samples/xr-barebones.html third_party/weston/src/libweston/backend-pipewire/pipewire.c third_party/weston/src/libweston/backend-rdp/rdp.c third_party/weston/src/libweston/backend-rdp/rdp.h third_party/weston/src/libweston/backend-rdp/rdpclip.c third_party/weston/src/libweston/backend-vnc/vnc.c third_party/weston/src/libweston/backend-x11/x11.c third_party/weston/src/libweston/dbus.c third_party/weston/src/libweston/dbus.h third_party/weston/src/libweston/pixman-renderer.c third_party/weston/src/libweston/pixman-renderer.h third_party/weston/src/notes.txt third_party/weston/src/tests/vertex-clip-test.c third_party/weston/src/tests/weston-test-runner.h third_party/win_virtual_display/3pp/build.py third_party/win_virtual_display/3pp/fetch.py third_party/win_virtual_display/driver/HelperMethods.cpp third_party/win_virtual_display/driver/public/properties.h third_party/woff2/src/buffer.h third_party/woff2/src/transform.cc third_party/woff2/src/woff2_common.h third_party/woff2/src/woff2_dec.cc third_party/wpt_tools/roll_wpt.py third_party/wpt_tools/wpt/tools/lint/rules.py third_party/wpt_tools/wpt/tools/third_party/pywebsocket3/setup.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/__init__.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/capture.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/commandline.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/__init__.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/base.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/errorsummary.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/grouping.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/__init__.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/html.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/main.js third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/html/style.css third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/machformatter.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/process.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/tbplformatter.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/unittest.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/formatters/xunit.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/__init__.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/base.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/bufferhandler.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/messagehandler.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/statushandler.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/summaryhandler.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/handlers/valgrindhandler.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/logtypes.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/proxy.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/pytest_mozlog/plugin.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/reader.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/__init__.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/format.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/logmerge.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/scripts/unstable.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/stdadapter.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/structuredlog.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/__init__.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/logger.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/loggingmixin.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/mozlog/unstructured/loglistener.py third_party/wpt_tools/wpt/tools/third_party_modified/mozlog/setup.py third_party/wpt_tools/wpt/tools/webdriver/webdriver/client.py third_party/wpt_tools/wpt/tools/wpt/android.py third_party/wpt_tools/wpt/tools/wpt/browser.py third_party/wpt_tools/wpt/tools/wptrunner/requirements.txt third_party/wpt_tools/wpt/tools/wptrunner/setup.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/android_webview.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/base.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/chrome.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/browsers/firefox.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/executorchrome.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/executormarionette.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/executorwebdriver.py third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/executors/test-wait.js third_party/wpt_tools/wpt/tools/wptrunner/wptrunner/wpttest.py third_party/wuffs/BUILD.gn third_party/wuffs/src/release/c/wuffs-v0.3.c third_party/xdg-utils/scripts/desc/xdg-settings.xml third_party/xnnpack/src/CMakeLists.txt third_party/zlib/BUILD.gn third_party/zlib/deflate.c third_party/zlib/google/compression_utils_portable.cc third_party/zlib/google/zip_reader.h third_party/zstd/src/build/meson/GetZstdLibraryVersion.py third_party/zstd/src/build/meson/InstallSymlink.py third_party/zstd/src/build/meson/meson_options.txt third_party/zstd/src/build/meson/tests/valgrindTest.py third_party/zstd/src/lib/common/compiler.h third_party/zstd/src/lib/common/entropy_common.c third_party/zstd/src/lib/common/fse_decompress.c third_party/zstd/src/lib/common/xxhash.h third_party/zstd/src/lib/compress/fse_compress.c third_party/zstd/src/lib/compress/hist.c third_party/zstd/src/lib/compress/hist.h third_party/zstd/src/lib/compress/huf_compress.c third_party/zstd/src/lib/legacy/zstd_v01.c third_party/zstd/src/lib/legacy/zstd_v02.c third_party/zstd/src/lib/legacy/zstd_v03.c third_party/zstd/src/lib/legacy/zstd_v04.c third_party/zstd/src/lib/legacy/zstd_v05.c third_party/zstd/src/lib/legacy/zstd_v06.c third_party/zstd/src/lib/legacy/zstd_v07.c tools/accessibility/codereview/download_issue.py tools/accessibility/codereview/mph.py tools/accessibility/inspect/ax_utils.cc tools/accessibility/nvda/README.txt tools/accessibility/rebase_dump_accessibility_tree_tests.py tools/android/android_studio/ChromiumInspections.xml tools/android/avd/3pp/fetch.py tools/android/build_speed/PRESUBMIT.py tools/android/checkstyle/chromium-style-5.0.xml tools/android/checkstyle/unused-imports.xml tools/android/checkxmlstyle/PRESUBMIT.py tools/android/checkxmlstyle/checkxmlstyle.py tools/android/checkxmlstyle/checkxmlstyle_test.py tools/android/colabutils/memory_usage/PRESUBMIT.py tools/android/colabutils/wpr.py tools/android/customtabs_benchmark/res/values/strings.xml tools/android/customtabs_benchmark/scripts/PRESUBMIT.py tools/android/customtabs_benchmark/scripts/customtabs_benchmark.py tools/android/customtabs_benchmark/scripts/run_benchmark.py tools/android/customtabs_benchmark/scripts/sample_config.json tools/android/dependency_analysis/PRESUBMIT.py tools/android/dependency_analysis/js/src/class_view.html tools/android/dependency_analysis/js/src/graph_view.js tools/android/dependency_analysis/js/src/index.html tools/android/dependency_analysis/js/src/load_graph.js tools/android/dependency_analysis/js/src/package_view.html tools/android/dependency_analysis/js/src/target_view.html tools/android/dependency_analysis/upload_html_viewer.py tools/android/generate_java_test/generate_java_test.py tools/android/memtrack_helper/memtrack_helper.c tools/android/modularization/convenience/touch_resources.py tools/android/native_lib_memory/PRESUBMIT.py tools/android/python_utils/PRESUBMIT.py tools/android/test_health/PRESUBMIT.py tools/android/tracing/systrace-extract-startup.py tools/binary_size/PRESUBMIT.py tools/binary_size/diagnose_bloat.py tools/binary_size/generate_milestone_reports.py tools/binary_size/libsupersize/arsc_parser.py tools/binary_size/libsupersize/console.py tools/binary_size/libsupersize/dalvik_bytecode.py tools/binary_size/libsupersize/dex_parser.py tools/binary_size/libsupersize/ninja_parser_test.py tools/binary_size/libsupersize/stream_reader.py tools/binary_size/libsupersize/viewer/static/auth-consts.js tools/binary_size/libsupersize/viewer/static/index.html tools/binary_size/libsupersize/viewer/static/index.js tools/binary_size/libsupersize/viewer/static/tree-worker-wasm.js tools/binary_size/libsupersize/viewer/static/viewer.html tools/binary_size/libsupersize/viewer/upload_html_viewer.py tools/binary_size/libsupersize/zip_util.py tools/binary_size/libsupersize/zip_util_test.py tools/binary_size/sizes.py tools/binary_size/trybot_commit_size_checker.py tools/bisect-builds.py tools/bisect_repackage/bisect_repackage.py tools/bisect_repackage/bisect_repackage_utils.py tools/bisect_test.py tools/boilerplate.py tools/captured_sites/refresh.py tools/check_git_config.py tools/checkbins/checkbins.py tools/checkperms/PRESUBMIT.py tools/checkteamtags/PRESUBMIT.py tools/checkteamtags/checkteamtags.py tools/checkteamtags/checkteamtags_test.py tools/checkteamtags/extract_components.py tools/checkteamtags/extract_components_test.py tools/checkteamtags/owners_file_tags_test.py tools/chrome_extensions/open_my_editor/ext/background.js tools/chrome_extensions/open_my_editor/ext/cr-content.js tools/chrome_extensions/open_my_editor/ext/cs-content.js tools/chrome_extensions/open_my_editor/ext/manifest.json tools/clang/ast_rewriter/ASTRewriter.cpp tools/clang/ast_rewriter/OutputHelper.h tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp tools/clang/iterator_checker/tests/PRESUBMIT.py tools/clang/plugins/ChromeClassTester.cpp tools/clang/raw_ptr_plugin/tests/bad_raw_ptr_cast_in_the_wild.cpp tools/clang/raw_ptr_plugin/tests/raw_ptr_to_stack_allocated.cpp tools/clang/rewrite_raw_ptr_fields/RewriteRawPtrFields.cpp tools/clang/rewrite_raw_ptr_fields/manual-fields-to-ignore.txt tools/clang/rewrite_raw_ptr_fields/tests/gen-in-out-arg-test.cc tools/clang/rewrite_raw_ptr_fields/tests/gen-reinterpret-cast-test.cc tools/clang/rewrite_templated_container_fields/RewriteTemplatedPtrFields.cpp tools/clang/rewrite_templated_container_fields/extract_edits.py tools/clang/scripts/build.py tools/clang/scripts/dashboard.py tools/clang/scripts/include-analysis.html tools/clang/scripts/package.py tools/clang/scripts/update.py tools/clang/spanify/Spanifier.cpp tools/clang/spanify/evaluate_patches.py tools/clang/spanify/extract_edits.py tools/clang/spanify/gnconfigs.py tools/clang/spanify/list-required-pragma.py tools/clang/spanify/remove-unneeded-pragmas.py tools/clang/spanify/tests/cycle-expected.cc tools/clang/spanify/tests/cycle-original.cc tools/clang/spanify/tests/informational-only-array-alias-not-rewritten-expected.cc tools/clang/spanify/tests/informational-only-array-alias-not-rewritten-original.cc tools/clang/translation_unit/test_translation_unit.py tools/code_coverage/coverage.py tools/code_coverage/js_source_maps/create_js_source_maps/PRESUBMIT.py tools/cr/cr/base/android.py tools/cr/main.py tools/crates/create_draft_comments.py tools/crates/create_update_cl.py tools/crates/gnrt/lib/test_metadata.json tools/crates/gnrt/lib/test_metadata2.json tools/crates/gnrt/lib/test_metadata3.json tools/crates/gnrt/lib/test_metadata4.json tools/cygprofile/PRESUBMIT.py tools/cygprofile/android_profile_tool.py tools/determinism/compare_build_artifacts.py tools/disable_tests/PRESUBMIT.py tools/disable_tests/disable.py tools/disable_tests/disable_test.py tools/disable_tests/resultdb.py tools/disable_tests/tests/expectations-basic.json tools/disable_tests/tests/expectations-bug-comment.json tools/disable_tests/tests/expectations-bug-with-message.json tools/disable_tests/tests/expectations-message.json tools/disable_tests/tests/expectations-virtual-conditional-to-unconditional.json tools/disable_tests/tests/gtest-add-extra-condition.json tools/disable_tests/tests/gtest-backslash-in-input.json tools/disable_tests/tests/gtest-basic.json tools/disable_tests/tests/gtest-bug-comment.json tools/disable_tests/tests/gtest-conditional-to-unconditional.json tools/disable_tests/tests/gtest-conditional.json tools/disable_tests/tests/gtest-message.json tools/disable_tests/tests/gtest-redundant-conditions.json tools/disable_tests/tests/parameterised-gtest.json tools/download_optimization_profile.py tools/dromaeo_benchmark_runner/dromaeo_benchmark_runner.py tools/emacs/trybot-mac.txt tools/find_runtime_symbols/PRESUBMIT.py tools/flags/generate_clank_feature_flag.py tools/flags/list_flags.py tools/fuchsia/3pp/gn-sdk/3pp/fetch.py tools/fuchsia/3pp/test-scripts/3pp/fetch.py tools/generate_stubs/generate_stubs.py tools/gerrit/send_after_cq_dryrun.py tools/get_asan_chrome/get_asan_chrome.py tools/git/suggest_owners.py tools/grit/PRESUBMIT.py tools/grit/grit/format/chrome_messages_json.py tools/grit/grit/format/rc.py tools/grit/grit/gather/policy_json_unittest.py tools/grit/grit/gather/tr_html_unittest.py tools/grit/grit/grd_reader_unittest.py tools/grit/grit/node/misc.py tools/grit/grit/tclib_unittest.py tools/grit/grit/testdata/README.txt tools/grit/grit/testdata/about.html tools/grit/grit/testdata/bad_browser.html tools/grit/grit/testdata/cache_prefix.html tools/grit/grit/testdata/cache_prefix_file.html tools/grit/grit/testdata/del_header.html tools/grit/grit/testdata/error.html tools/grit/grit/testdata/install_prefs.html tools/grit/grit/testdata/oem_enable.html tools/grit/grit/testdata/onebox.html tools/grit/grit/testdata/preferences.html tools/grit/grit/testdata/privacy.html tools/grit/grit/tool/android2grd.py tools/grit/grit/tool/build.py tools/grit/grit/tool/resize.py tools/grit/grit/zip_helpers.py tools/grit/pak_util.py tools/grit/setup.py tools/include_tracer.py tools/infra/PRESUBMIT.py tools/infra/clobber_cache_utils.py tools/infra/find_bad_builds.py tools/jj/upload.py tools/jj/util.py tools/json_data_generator/PRESUBMIT.py tools/json_schema_compiler/PRESUBMIT.py tools/json_schema_compiler/js_externs_generator.py tools/json_schema_compiler/js_externs_generator_test.py tools/json_schema_compiler/js_interface_generator_test.py tools/json_schema_compiler/js_util.py tools/json_schema_compiler/preview.py tools/json_schema_compiler/test/content_settings.json tools/json_schema_compiler/test/converted_schemas/app_runtime.idl tools/json_schema_compiler/test/converted_schemas/bluetooth_low_energy.idl tools/json_schema_compiler/test/converted_schemas/bluetooth_socket.idl tools/json_schema_compiler/test/converted_schemas/networking_onc.idl tools/json_schema_compiler/test/converted_schemas/networking_private.idl tools/json_schema_compiler/test/converted_schemas/offscreen.idl tools/json_schema_compiler/test/converted_schemas/protocol_handlers.idl tools/json_schema_compiler/test/converted_schemas/serial.idl tools/json_schema_compiler/test/converted_schemas/web_accessible_resources.idl tools/json_schema_compiler/test/tabs.json tools/json_schema_compiler/test/windows.json tools/json_to_struct/PRESUBMIT.py tools/linux/PRESUBMIT.py tools/mac/download_symbols.py tools/mac/icons/compile_car.py tools/mac/power/scenarios.py tools/mb/mb.py tools/md_browser/base.css tools/md_browser/footer.html tools/md_browser/gitiles_autolink.py tools/md_browser/gitiles_ext_blocks.py tools/md_browser/gitiles_smart_quotes.py tools/md_browser/md_browser.py tools/media_engagement_preload/make_dafsa_unittest.py tools/metrics/PRESUBMIT.py tools/metrics/actions/PRESUBMIT.py tools/metrics/actions/actions.xml tools/metrics/actions/actions_model_test.py tools/metrics/actions/extract_actions_test.py tools/metrics/common/models.py tools/metrics/histograms/PRESUBMIT.py tools/metrics/histograms/enums.xml tools/metrics/histograms/expand_owners.py tools/metrics/histograms/expand_owners_unittest.py tools/metrics/histograms/extract_histograms.py tools/metrics/histograms/extract_histograms_test.py tools/metrics/histograms/generate_expired_histograms_array_unittest.py tools/metrics/histograms/histogram_configuration_model_test_histograms.py tools/metrics/histograms/merge_xml.py tools/metrics/histograms/merge_xml_test.py tools/metrics/histograms/metadata/accessibility/enums.xml tools/metrics/histograms/metadata/accessibility/histograms.xml tools/metrics/histograms/metadata/accessibility_annotator/histograms.xml tools/metrics/histograms/metadata/account_manager/histograms.xml tools/metrics/histograms/metadata/actor/enums.xml tools/metrics/histograms/metadata/actor/histograms.xml tools/metrics/histograms/metadata/ai/enums.xml tools/metrics/histograms/metadata/ai/histograms.xml tools/metrics/histograms/metadata/android/enums.xml tools/metrics/histograms/metadata/android/histograms.xml tools/metrics/histograms/metadata/apps/enums.xml tools/metrics/histograms/metadata/apps/histograms.xml tools/metrics/histograms/metadata/arc/enums.xml tools/metrics/histograms/metadata/arc/histograms.xml tools/metrics/histograms/metadata/ash/enums.xml tools/metrics/histograms/metadata/ash/histograms.xml tools/metrics/histograms/metadata/ash_clipboard/enums.xml tools/metrics/histograms/metadata/ash_clipboard/histograms.xml tools/metrics/histograms/metadata/ash_growth/enums.xml tools/metrics/histograms/metadata/ash_growth/histograms.xml tools/metrics/histograms/metadata/ash_user_education/enums.xml tools/metrics/histograms/metadata/ash_user_education/histograms.xml tools/metrics/histograms/metadata/assistant/histograms.xml tools/metrics/histograms/metadata/attribution_reporting/enums.xml tools/metrics/histograms/metadata/attribution_reporting/histograms.xml tools/metrics/histograms/metadata/autofill/enums.xml tools/metrics/histograms/metadata/autofill/histograms.xml tools/metrics/histograms/metadata/background/histograms.xml tools/metrics/histograms/metadata/blink/enums.xml tools/metrics/histograms/metadata/blink/histograms.xml tools/metrics/histograms/metadata/bluetooth/enums.xml tools/metrics/histograms/metadata/bluetooth/histograms.xml tools/metrics/histograms/metadata/bookmarks/enums.xml tools/metrics/histograms/metadata/bookmarks/histograms.xml tools/metrics/histograms/metadata/borealis/enums.xml tools/metrics/histograms/metadata/borealis/histograms.xml tools/metrics/histograms/metadata/browser/enums.xml tools/metrics/histograms/metadata/browser/histograms.xml tools/metrics/histograms/metadata/browsing_topics/enums.xml tools/metrics/histograms/metadata/browsing_topics/histograms.xml tools/metrics/histograms/metadata/bruschetta/histograms.xml tools/metrics/histograms/metadata/chrome/enums.xml tools/metrics/histograms/metadata/chrome/histograms.xml tools/metrics/histograms/metadata/chromeos/enums.xml tools/metrics/histograms/metadata/chromeos/histograms.xml tools/metrics/histograms/metadata/chromeos_hps/histograms.xml tools/metrics/histograms/metadata/chromeos_settings/enums.xml tools/metrics/histograms/metadata/chromeos_settings/histograms.xml tools/metrics/histograms/metadata/collaboration_service/enums.xml tools/metrics/histograms/metadata/collaboration_service/histograms.xml tools/metrics/histograms/metadata/commerce/enums.xml tools/metrics/histograms/metadata/commerce/histograms.xml tools/metrics/histograms/metadata/compose/enums.xml tools/metrics/histograms/metadata/compose/histograms.xml tools/metrics/histograms/metadata/compositing/enums.xml tools/metrics/histograms/metadata/compositing/histograms.xml tools/metrics/histograms/metadata/content/enums.xml tools/metrics/histograms/metadata/content/histograms.xml tools/metrics/histograms/metadata/content_extraction/histograms.xml tools/metrics/histograms/metadata/contextual_cueing/enums.xml tools/metrics/histograms/metadata/contextual_cueing/histograms.xml tools/metrics/histograms/metadata/contextual_search/enums.xml tools/metrics/histograms/metadata/contextual_search/histograms.xml tools/metrics/histograms/metadata/contextual_tasks/enums.xml tools/metrics/histograms/metadata/contextual_tasks/histograms.xml tools/metrics/histograms/metadata/cookie/enums.xml tools/metrics/histograms/metadata/cookie/histograms.xml tools/metrics/histograms/metadata/cras/enums.xml tools/metrics/histograms/metadata/cras/histograms.xml tools/metrics/histograms/metadata/cros/enums.xml tools/metrics/histograms/metadata/cros/histograms.xml tools/metrics/histograms/metadata/cros_audio/enums.xml tools/metrics/histograms/metadata/cros_audio/histograms.xml tools/metrics/histograms/metadata/cros_ml/enums.xml tools/metrics/histograms/metadata/cros_ml/histograms.xml tools/metrics/histograms/metadata/cross_device/enums.xml tools/metrics/histograms/metadata/cross_device/histograms.xml tools/metrics/histograms/metadata/crostini/enums.xml tools/metrics/histograms/metadata/crostini/histograms.xml tools/metrics/histograms/metadata/cryptohome/enums.xml tools/metrics/histograms/metadata/cryptohome/histograms.xml tools/metrics/histograms/metadata/custom_tabs/enums.xml tools/metrics/histograms/metadata/custom_tabs/histograms.xml tools/metrics/histograms/metadata/data/histograms.xml tools/metrics/histograms/metadata/data_sharing/enums.xml tools/metrics/histograms/metadata/data_sharing/histograms.xml tools/metrics/histograms/metadata/dev/enums.xml tools/metrics/histograms/metadata/dev/histograms.xml tools/metrics/histograms/metadata/disk/enums.xml tools/metrics/histograms/metadata/disk/histograms.xml tools/metrics/histograms/metadata/download/enums.xml tools/metrics/histograms/metadata/download/histograms.xml tools/metrics/histograms/metadata/dwa/histograms.xml tools/metrics/histograms/metadata/enterprise/enums.xml tools/metrics/histograms/metadata/enterprise/histograms.xml tools/metrics/histograms/metadata/event/enums.xml tools/metrics/histograms/metadata/event/histograms.xml tools/metrics/histograms/metadata/extensions/enums.xml tools/metrics/histograms/metadata/extensions/histograms.xml tools/metrics/histograms/metadata/facilitated_payments/enums.xml tools/metrics/histograms/metadata/facilitated_payments/histograms.xml tools/metrics/histograms/metadata/families/enums.xml tools/metrics/histograms/metadata/families/histograms.xml tools/metrics/histograms/metadata/fastpair/enums.xml tools/metrics/histograms/metadata/fastpair/histograms.xml tools/metrics/histograms/metadata/favicons/histograms.xml tools/metrics/histograms/metadata/feature_engagement/histograms.xml tools/metrics/histograms/metadata/file/enums.xml tools/metrics/histograms/metadata/file/histograms.xml tools/metrics/histograms/metadata/fingerprint/enums.xml tools/metrics/histograms/metadata/fingerprint/histograms.xml tools/metrics/histograms/metadata/game_mode/histograms.xml tools/metrics/histograms/metadata/gcm/histograms.xml tools/metrics/histograms/metadata/geolocation/enums.xml tools/metrics/histograms/metadata/geolocation/histograms.xml tools/metrics/histograms/metadata/glic/enums.xml tools/metrics/histograms/metadata/glic/histograms.xml tools/metrics/histograms/metadata/google/enums.xml tools/metrics/histograms/metadata/google/histograms.xml tools/metrics/histograms/metadata/gpu/enums.xml tools/metrics/histograms/metadata/gpu/histograms.xml tools/metrics/histograms/metadata/hang_watcher/enums.xml tools/metrics/histograms/metadata/hang_watcher/histograms.xml tools/metrics/histograms/metadata/help_app/histograms.xml tools/metrics/histograms/metadata/histogram_suffixes_list.xml tools/metrics/histograms/metadata/history/enums.xml tools/metrics/histograms/metadata/history/histograms.xml tools/metrics/histograms/metadata/holding_space/enums.xml tools/metrics/histograms/metadata/holding_space/histograms.xml tools/metrics/histograms/metadata/image/histograms.xml tools/metrics/histograms/metadata/input/enums.xml tools/metrics/histograms/metadata/input/histograms.xml tools/metrics/histograms/metadata/installer/enums.xml tools/metrics/histograms/metadata/installer/histograms.xml tools/metrics/histograms/metadata/interstitial/histograms.xml tools/metrics/histograms/metadata/invalidation/histograms.xml tools/metrics/histograms/metadata/ios/enums.xml tools/metrics/histograms/metadata/ios/histograms.xml tools/metrics/histograms/metadata/kerberos/histograms.xml tools/metrics/histograms/metadata/kiosk/histograms.xml tools/metrics/histograms/metadata/language/enums.xml tools/metrics/histograms/metadata/language/histograms.xml tools/metrics/histograms/metadata/legion/histograms.xml tools/metrics/histograms/metadata/lens/enums.xml tools/metrics/histograms/metadata/lens/histograms.xml tools/metrics/histograms/metadata/leveldb_proto/histograms.xml tools/metrics/histograms/metadata/linux/enums.xml tools/metrics/histograms/metadata/linux/histograms.xml tools/metrics/histograms/metadata/local/histograms.xml tools/metrics/histograms/metadata/login/histograms.xml tools/metrics/histograms/metadata/mac/enums.xml tools/metrics/histograms/metadata/mac/histograms.xml tools/metrics/histograms/metadata/magic_stack/enums.xml tools/metrics/histograms/metadata/magic_stack/histograms.xml tools/metrics/histograms/metadata/media/enums.xml tools/metrics/histograms/metadata/media/histograms.xml tools/metrics/histograms/metadata/memory/enums.xml tools/metrics/histograms/metadata/memory/histograms.xml tools/metrics/histograms/metadata/mobile/enums.xml tools/metrics/histograms/metadata/mobile/histograms.xml tools/metrics/histograms/metadata/navigation/enums.xml tools/metrics/histograms/metadata/navigation/histograms.xml tools/metrics/histograms/metadata/nearby/enums.xml tools/metrics/histograms/metadata/nearby/histograms.xml tools/metrics/histograms/metadata/net/enums.xml tools/metrics/histograms/metadata/net/histograms.xml tools/metrics/histograms/metadata/network/enums.xml tools/metrics/histograms/metadata/network/histograms.xml tools/metrics/histograms/metadata/new_tab_page/enums.xml tools/metrics/histograms/metadata/new_tab_page/histograms.xml tools/metrics/histograms/metadata/notifications/enums.xml tools/metrics/histograms/metadata/notifications/histograms.xml tools/metrics/histograms/metadata/offline/histograms.xml tools/metrics/histograms/metadata/omnibox/enums.xml tools/metrics/histograms/metadata/omnibox/histograms.xml tools/metrics/histograms/metadata/on_device_model/histograms.xml tools/metrics/histograms/metadata/oobe/enums.xml tools/metrics/histograms/metadata/oobe/histograms.xml tools/metrics/histograms/metadata/optimization/enums.xml tools/metrics/histograms/metadata/optimization/histograms.xml tools/metrics/histograms/metadata/others/enums.xml tools/metrics/histograms/metadata/others/histograms.xml tools/metrics/histograms/metadata/page/enums.xml tools/metrics/histograms/metadata/page/histograms.xml tools/metrics/histograms/metadata/password/enums.xml tools/metrics/histograms/metadata/password/histograms.xml tools/metrics/histograms/metadata/payment/enums.xml tools/metrics/histograms/metadata/payment/histograms.xml tools/metrics/histograms/metadata/pdf/enums.xml tools/metrics/histograms/metadata/pdf/histograms.xml tools/metrics/histograms/metadata/performance_controls/enums.xml tools/metrics/histograms/metadata/performance_controls/histograms.xml tools/metrics/histograms/metadata/performance_manager/enums.xml tools/metrics/histograms/metadata/performance_manager/histograms.xml tools/metrics/histograms/metadata/permissions/enums.xml tools/metrics/histograms/metadata/permissions/histograms.xml tools/metrics/histograms/metadata/persistent_cache/enums.xml tools/metrics/histograms/metadata/persistent_cache/histograms.xml tools/metrics/histograms/metadata/phonehub/enums.xml tools/metrics/histograms/metadata/phonehub/histograms.xml tools/metrics/histograms/metadata/platform/enums.xml tools/metrics/histograms/metadata/platform/histograms.xml tools/metrics/histograms/metadata/plugin_vm/histograms.xml tools/metrics/histograms/metadata/plus_addresses/enums.xml tools/metrics/histograms/metadata/plus_addresses/histograms.xml tools/metrics/histograms/metadata/power/enums.xml tools/metrics/histograms/metadata/power/histograms.xml tools/metrics/histograms/metadata/prefetch/enums.xml tools/metrics/histograms/metadata/prefetch/histograms.xml tools/metrics/histograms/metadata/preloading/histograms.xml tools/metrics/histograms/metadata/printing/enums.xml tools/metrics/histograms/metadata/printing/histograms.xml tools/metrics/histograms/metadata/privacy/enums.xml tools/metrics/histograms/metadata/privacy/histograms.xml tools/metrics/histograms/metadata/private_metrics/enums.xml tools/metrics/histograms/metadata/private_metrics/histograms.xml tools/metrics/histograms/metadata/profile/enums.xml tools/metrics/histograms/metadata/profile/histograms.xml tools/metrics/histograms/metadata/puma/enums.xml tools/metrics/histograms/metadata/puma/histograms.xml tools/metrics/histograms/metadata/quick_answers/histograms.xml tools/metrics/histograms/metadata/quickoffice/histograms.xml tools/metrics/histograms/metadata/quickstart/enums.xml tools/metrics/histograms/metadata/quickstart/histograms.xml tools/metrics/histograms/metadata/quota/histograms.xml tools/metrics/histograms/metadata/readaloud/enums.xml tools/metrics/histograms/metadata/readaloud/histograms.xml tools/metrics/histograms/metadata/regional_capabilities/enums.xml tools/metrics/histograms/metadata/regional_capabilities/histograms.xml tools/metrics/histograms/metadata/remoting/enums.xml tools/metrics/histograms/metadata/remoting/histograms.xml tools/metrics/histograms/metadata/renderer/enums.xml tools/metrics/histograms/metadata/renderer/histograms.xml tools/metrics/histograms/metadata/renderer4/histograms.xml tools/metrics/histograms/metadata/safe_browsing/enums.xml tools/metrics/histograms/metadata/safe_browsing/histograms.xml tools/metrics/histograms/metadata/sb_client/enums.xml tools/metrics/histograms/metadata/sb_client/histograms.xml tools/metrics/histograms/metadata/scanning/enums.xml tools/metrics/histograms/metadata/scanning/histograms.xml tools/metrics/histograms/metadata/scheduler/enums.xml tools/metrics/histograms/metadata/scheduler/histograms.xml tools/metrics/histograms/metadata/search/enums.xml tools/metrics/histograms/metadata/search/histograms.xml tools/metrics/histograms/metadata/security/enums.xml tools/metrics/histograms/metadata/security/histograms.xml tools/metrics/histograms/metadata/segmentation_platform/enums.xml tools/metrics/histograms/metadata/segmentation_platform/histograms.xml tools/metrics/histograms/metadata/sensitive_content/enums.xml tools/metrics/histograms/metadata/sensitive_content/histograms.xml tools/metrics/histograms/metadata/service/enums.xml tools/metrics/histograms/metadata/service/histograms.xml tools/metrics/histograms/metadata/session/enums.xml tools/metrics/histograms/metadata/session/histograms.xml tools/metrics/histograms/metadata/settings/enums.xml tools/metrics/histograms/metadata/settings/histograms.xml tools/metrics/histograms/metadata/sharing/enums.xml tools/metrics/histograms/metadata/sharing/histograms.xml tools/metrics/histograms/metadata/shortcuts/enums.xml tools/metrics/histograms/metadata/shortcuts/histograms.xml tools/metrics/histograms/metadata/signin/enums.xml tools/metrics/histograms/metadata/signin/histograms.xml tools/metrics/histograms/metadata/simple/histograms.xml tools/metrics/histograms/metadata/skia/enums.xml tools/metrics/histograms/metadata/skia/histograms.xml tools/metrics/histograms/metadata/skills/enums.xml tools/metrics/histograms/metadata/skills/histograms.xml tools/metrics/histograms/metadata/sql/enums.xml tools/metrics/histograms/metadata/sql/histograms.xml tools/metrics/histograms/metadata/stability/enums.xml tools/metrics/histograms/metadata/stability/histograms.xml tools/metrics/histograms/metadata/startup/enums.xml tools/metrics/histograms/metadata/startup/histograms.xml tools/metrics/histograms/metadata/storage/enums.xml tools/metrics/histograms/metadata/storage/histograms.xml tools/metrics/histograms/metadata/structured_metrics/enums.xml tools/metrics/histograms/metadata/structured_metrics/histograms.xml tools/metrics/histograms/metadata/subresource/histograms.xml tools/metrics/histograms/metadata/sync/enums.xml tools/metrics/histograms/metadata/sync/histograms.xml tools/metrics/histograms/metadata/system/histograms.xml tools/metrics/histograms/metadata/tab/enums.xml tools/metrics/histograms/metadata/tab/histograms.xml tools/metrics/histograms/metadata/task_manager/enums.xml tools/metrics/histograms/metadata/task_manager/histograms.xml tools/metrics/histograms/metadata/toasts/enums.xml tools/metrics/histograms/metadata/toasts/histograms.xml tools/metrics/histograms/metadata/translate/enums.xml tools/metrics/histograms/metadata/translate/histograms.xml tools/metrics/histograms/metadata/trusted_vault/enums.xml tools/metrics/histograms/metadata/trusted_vault/histograms.xml tools/metrics/histograms/metadata/ui/enums.xml tools/metrics/histograms/metadata/ui/histograms.xml tools/metrics/histograms/metadata/ukm/enums.xml tools/metrics/histograms/metadata/ukm/histograms.xml tools/metrics/histograms/metadata/uma/enums.xml tools/metrics/histograms/metadata/uma/histograms.xml tools/metrics/histograms/metadata/update_engine/histograms.xml tools/metrics/histograms/metadata/user_data_importer/enums.xml tools/metrics/histograms/metadata/user_data_importer/histograms.xml tools/metrics/histograms/metadata/user_education/histograms.xml tools/metrics/histograms/metadata/v8/enums.xml tools/metrics/histograms/metadata/v8/histograms.xml tools/metrics/histograms/metadata/variations/enums.xml tools/metrics/histograms/metadata/variations/histograms.xml tools/metrics/histograms/metadata/virtualization/histograms.xml tools/metrics/histograms/metadata/visited_url_ranking/enums.xml tools/metrics/histograms/metadata/visited_url_ranking/histograms.xml tools/metrics/histograms/metadata/wallet/enums.xml tools/metrics/histograms/metadata/wallet/histograms.xml tools/metrics/histograms/metadata/web_apk/enums.xml tools/metrics/histograms/metadata/web_apk/histograms.xml tools/metrics/histograms/metadata/web_audio/enums.xml tools/metrics/histograms/metadata/web_audio/histograms.xml tools/metrics/histograms/metadata/web_core/enums.xml tools/metrics/histograms/metadata/web_core/histograms.xml tools/metrics/histograms/metadata/web_rtc/enums.xml tools/metrics/histograms/metadata/web_rtc/histograms.xml tools/metrics/histograms/metadata/webapps/enums.xml tools/metrics/histograms/metadata/webapps/histograms.xml tools/metrics/histograms/metadata/webauthn/enums.xml tools/metrics/histograms/metadata/webauthn/histograms.xml tools/metrics/histograms/metadata/webnn/enums.xml tools/metrics/histograms/metadata/webnn/histograms.xml tools/metrics/histograms/metadata/windows/enums.xml tools/metrics/histograms/metadata/windows/histograms.xml tools/metrics/histograms/metadata/xr/enums.xml tools/metrics/histograms/metadata/xr/histograms.xml tools/metrics/histograms/name_expansion_metadata.py tools/metrics/histograms/populate_enums.py tools/metrics/histograms/pretty_print_test.py tools/metrics/histograms/split_enums.py tools/metrics/histograms/split_xml.py tools/metrics/histograms/test_data/components/histograms.xml tools/metrics/histograms/test_data/example_valid_enums.xml tools/metrics/histograms/test_data/example_valid_histograms.xml tools/metrics/histograms/test_data/histograms.xml tools/metrics/histograms/test_data/no_allowlist_entries_histograms.xml tools/metrics/histograms/test_data/tokens/token_errors_histograms.xml tools/metrics/histograms/test_data/tokens/variants_inline_histograms.xml tools/metrics/histograms/test_data/tokens/variants_missing_histograms.xml tools/metrics/histograms/test_data/tokens/variants_out_of_line_explicit_histograms.xml tools/metrics/histograms/test_data/tokens/variants_out_of_line_implicit_histograms.xml tools/metrics/histograms/test_data/ukm.xml tools/metrics/md2xml.py tools/metrics/private_metrics/PRESUBMIT.py tools/metrics/private_metrics/dwa.xml tools/metrics/private_metrics/private_metrics_model_shared_test.py tools/metrics/private_metrics/private_metrics_validations_test.py tools/metrics/structured/PRESUBMIT.py tools/metrics/structured/sync/model.py tools/metrics/structured/sync/model_unittest.py tools/metrics/structured/sync/structured.xml tools/metrics/structured/sync/structured_chromiumos.xml tools/metrics/ukm/PRESUBMIT.py tools/metrics/ukm/ukm.xml tools/metrics/ukm/ukm_model_test.py tools/metrics/ukm/xml_validations.py tools/metrics/ukm/xml_validations_test.py tools/nocompile/driver.py tools/omahaproxy.py tools/perf/PRESUBMIT.py tools/perf/benchmarks/ad_frames.py tools/perf/benchmarks/blink_perf.py tools/perf/benchmarks/desktop_ui.py tools/perf/benchmarks/dummy_benchmark.py tools/perf/benchmarks/dummy_wpr_benchmark.py tools/perf/benchmarks/jetstream2.py tools/perf/benchmarks/media.py tools/perf/benchmarks/memory.py tools/perf/benchmarks/octane.py tools/perf/benchmarks/omnibox_aim_perf_story.py tools/perf/benchmarks/power.py tools/perf/benchmarks/rasterize_and_record_micro.py tools/perf/benchmarks/rendering.py tools/perf/benchmarks/speedometer1.py tools/perf/benchmarks/speedometer2.py tools/perf/benchmarks/speedometer3.py tools/perf/benchmarks/startup_mobile.py tools/perf/benchmarks/system_health.py tools/perf/benchmarks/system_health_smoke_test.py tools/perf/benchmarks/v8.py tools/perf/benchmarks/v8_browsing.py tools/perf/benchmarks/v8_loading.py tools/perf/benchmarks/wasmpspdfkit.py tools/perf/benchmarks/webrtc.py tools/perf/cli_tools/tbmv3/trace_downloader.py tools/perf/cli_tools/tbmv3/trace_downloader_unittest.py tools/perf/cli_tools/update_wpr/update_wpr.py tools/perf/cli_tools/update_wpr/update_wpr_unittest.py tools/perf/contrib/cluster_telemetry/ad_tagging_ct.py tools/perf/contrib/cluster_telemetry/ct_benchmarks_util.py tools/perf/contrib/cluster_telemetry/generic_trace.py tools/perf/contrib/cluster_telemetry/skpicture_printer.py tools/perf/contrib/download_mobile/download_mobile.py tools/perf/contrib/download_mobile/page.html tools/perf/contrib/intelligence/companion.py tools/perf/contrib/leak_detection/data/leak_detection.json tools/perf/contrib/leak_detection/leak_detection.py tools/perf/contrib/leak_detection/page_sets.py tools/perf/contrib/memory_extras/memory_extras.py tools/perf/contrib/orderfile/orderfile.py tools/perf/contrib/power/battery.py tools/perf/contrib/power/ipc.py tools/perf/contrib/power/perf_profile.py tools/perf/contrib/power/powerups.py tools/perf/contrib/power/top_sites_story.py tools/perf/contrib/power/wakeups.py tools/perf/contrib/shared_storage/shared_storage.py tools/perf/contrib/system_health_scroll_jank/system_health_scroll_jank.py tools/perf/contrib/vr_benchmarks/vr_benchmarks.py tools/perf/core/bot_platforms.py tools/perf/core/perf_benchmark.py tools/perf/core/perf_data_generator.py tools/perf/core/results_dashboard.py tools/perf/core/results_dashboard_unittest.py tools/perf/core/results_merger.py tools/perf/core/results_processor/formatters/json3_output.py tools/perf/core/results_processor/processor_test.py tools/perf/core/results_processor/processor_unittest.py tools/perf/core/results_processor/util.py tools/perf/core/retrieve_story_timing.py tools/perf/core/services/buildbucket_service.py tools/perf/core/services/dashboard_service.py tools/perf/core/services/pinpoint_service.py tools/perf/core/services/request.py tools/perf/core/shard_maps/timing_data/mac-laptop_high_end-perf_timing.json tools/perf/core/shard_maps/timing_data/mac-laptop_low_end-perf_timing.json tools/perf/core/test_data/benchmarks_to_shard.json tools/perf/core/test_data/test_timing_data.json tools/perf/core/test_data/test_timing_data_1_build.json tools/perf/download_proto_trace.py tools/perf/generate_legacy_perf_dashboard_json.py tools/perf/generate_perf_sharding.py tools/perf/json_util.py tools/perf/json_util_unittest.py tools/perf/page_sets/ad_frames.py tools/perf/page_sets/alexa1-10000-urls.json tools/perf/page_sets/companion/basic_companion_story.py tools/perf/page_sets/cros_ui_cases.py tools/perf/page_sets/data/ad_frame.json tools/perf/page_sets/data/intl_ar_fa_he.json tools/perf/page_sets/data/intl_ja_zh.json tools/perf/page_sets/data/kraken.json tools/perf/page_sets/data/long_running_idle_gmail_page.json tools/perf/page_sets/data/top_10.json tools/perf/page_sets/data/top_25.json tools/perf/page_sets/data/v8_top_25.json tools/perf/page_sets/desktop_power.py tools/perf/page_sets/desktop_ui/new_tab_page_story.py tools/perf/page_sets/desktop_ui/omnibox_story.py tools/perf/page_sets/desktop_ui/url_list.py tools/perf/page_sets/dummy_wpr_story_set.py tools/perf/page_sets/google_pages.py tools/perf/page_sets/intl_ar_fa_he.py tools/perf/page_sets/intl_ja_zh.py tools/perf/page_sets/key_mobile_sites_smooth.py tools/perf/page_sets/key_silk_cases/font_wipe.html tools/perf/page_sets/login_helpers/chrome_login.py tools/perf/page_sets/login_helpers/facebook_login.py tools/perf/page_sets/login_helpers/google_login.py tools/perf/page_sets/login_helpers/linkedin_login.py tools/perf/page_sets/login_helpers/pinterest_login.py tools/perf/page_sets/maps_perf_test/performance.html tools/perf/page_sets/maps_perf_test/tracked.js tools/perf/page_sets/rendering/key_desktop_move_cases.py tools/perf/page_sets/rendering/key_silk_cases.py tools/perf/page_sets/rendering/motionmark.py tools/perf/page_sets/rendering/story_tags.py tools/perf/page_sets/rendering/top_real_world_desktop.py tools/perf/page_sets/rendering/top_real_world_mobile.py tools/perf/page_sets/rendering/tough_animation_cases.py tools/perf/page_sets/rendering/tough_canvas_cases.py tools/perf/page_sets/rendering/tough_filters_cases.py tools/perf/page_sets/rendering/tough_pinch_zoom_cases.py tools/perf/page_sets/rendering/tough_pinch_zoom_mobile_cases.py tools/perf/page_sets/system_health/accessibility_stories.py tools/perf/page_sets/system_health/background_stories.py tools/perf/page_sets/system_health/browsing_stories.py tools/perf/page_sets/system_health/loading_stories.py tools/perf/page_sets/system_health/long_running_stories.py tools/perf/page_sets/system_health/media_stories.py tools/perf/page_sets/system_health/system_health_stories.py tools/perf/page_sets/top_10.py tools/perf/page_sets/top_pages.py tools/perf/page_sets/tough_animation_cases/mix_blend_mode_propagating_isolation.html tools/perf/page_sets/v8_top_25.py tools/perf/page_sets/webrtc_cases/codec_constraints.html tools/perf/process_perf_results.py tools/perf/process_perf_results_unittest.py tools/perfbot-analysis/builder.js tools/perfbot-analysis/bulk-download.js tools/pgo/generate_profile.py tools/polymer/PRESUBMIT.py tools/polymer/css_to_wrapper.py tools/python/google/gethash_timer.py tools/resources/find_unused_resources.py tools/roll_webgl_conformance.py tools/run-swarmed.py tools/rust/build_bindgen.py tools/rust/build_crubit.py tools/rust/build_rust.py tools/sample_clang_tidy_results.py tools/site_compare/commands/measure.py tools/site_compare/commands/scrape.py tools/site_compare/scrapers/chrome/chromebase.py tools/site_compare/scrapers/firefox/firefox2.py tools/site_compare/scrapers/ie/ie7.py tools/site_compare/utils/browser_iterate.py tools/symsrc/source_index.py tools/test_selection/decisiongraph_invoker.py tools/traceline/svgui/traceline.js tools/tracing/PRESUBMIT.py tools/tracing/rename_breakpad.py tools/traffic_annotation/sample_traffic_annotation.cc tools/traffic_annotation/scripts/annotation_tools.py tools/traffic_annotation/scripts/auditor/auditor.py tools/traffic_annotation/scripts/auditor/auditor_test.py tools/traffic_annotation/scripts/auditor/util.py tools/traffic_annotation/scripts/test_data/extractor_outputs/bad_syntax_annotation6.txt tools/traffic_annotation/scripts/test_data/extractor_outputs/good_complete_annotation.txt tools/traffic_annotation/scripts/test_data/extractor_outputs/good_partial_annotation.txt tools/traffic_annotation/scripts/test_data/missing_new_field_sample_data/sample_new_field_not_safelisted.cc tools/traffic_annotation/scripts/test_data/missing_new_field_sample_data/test_new_field_safelisted.cc tools/traffic_annotation/scripts/test_data/test_sample_annotations.cc tools/traffic_annotation/scripts/update_annotations_doc.py tools/traffic_annotation/scripts/update_annotations_sheet.py tools/translation/upload_screenshots.py tools/typescript/PRESUBMIT.py tools/typescript/definitions/command_line_private.d.ts tools/typescript/definitions/pending.d.ts tools/typescript/definitions/system_display.d.ts tools/usb_gadget/gadget.py tools/usb_gadget/msos20_descriptors.py tools/utr/builders.py tools/utr/cipd.py tools/utr/output_adapter_test.py tools/utr/recipe.py tools/variations/bisect_variations.py tools/variations/fieldtrial_util_unittest.py tools/visual_debugger/app.html tools/vscode/settings.json tools/warning_analysis/pull_logs.py tools/web_dev_style/html_checker.py tools/web_dev_style/js_checker.py tools/web_dev_style/js_checker_test.py tools/web_dev_style/resource_checker.py tools/win/CreateTempFilesPerfEvaluation/CreateTempFilesPerfEval.cc tools/win/CreateTempFilesPerfEvaluation/ReadMe.txt tools/win/DebugVisualizers/BUILD.gn tools/win/IdleWakeups/system_information_sampler.cpp tools/win/RetrieveSymbols/RetrieveSymbols.cpp tools/win/ShowThreadNames/ReadMe.txt tools/win/chromeexts/commands/hwnd_command.cc tools/win/sizeviewer/template.html ui/accelerated_widget_mac/ca_renderer_layer_tree.h ui/accessibility/ax_clipping_behavior.h ui/accessibility/ax_offscreen_result.h ui/accessibility/ax_position.h ui/accessibility/ax_range.h ui/accessibility/ax_role_properties.cc ui/accessibility/extensions/color_contrast_companion/help.html ui/accessibility/extensions/strings/accessibility_extensions_strings.grd ui/accessibility/extensions/tools/webstore_extension_util.py ui/accessibility/platform/ax_platform.cc ui/accessibility/platform/ax_platform_node_base_unittest.cc ui/accessibility/platform/ax_platform_node_delegate_utils_win.cc ui/accessibility/platform/ax_platform_node_textrangeprovider_win.cc ui/accessibility/platform/ax_platform_node_textrangeprovider_win_unittest.cc ui/accessibility/platform/ax_platform_node_win.cc ui/accessibility/platform/browser_accessibility.h ui/accessibility/platform/browser_accessibility_manager.cc ui/accessibility/platform/browser_accessibility_manager.h ui/accessibility/platform/browser_accessibility_manager_mac.mm ui/accessibility/platform/browser_accessibility_manager_win.cc ui/accessibility/platform/fuchsia/browser_accessibility_fuchsia.h ui/accessibility/platform/uia_registrar_win.h ui/android/color_utils_android_unittest.cc ui/android/java/res/values/strings.xml ui/base/accelerators/command.cc ui/base/accelerators/command.h ui/base/clipboard/clipboard.h ui/base/clipboard/clipboard_android.h ui/base/clipboard/clipboard_format_type.h ui/base/clipboard/clipboard_format_type_win.cc ui/base/clipboard/clipboard_mac_unittest.mm ui/base/clipboard/clipboard_test_template.h ui/base/clipboard/clipboard_util_mac_unittest.mm ui/base/clipboard/clipboard_util_win.cc ui/base/clipboard/clipboard_win.cc ui/base/clipboard/clipboard_win.h ui/base/clipboard/url_file_parser_unittest.cc ui/base/cocoa/tool_tip_base_view.mm ui/base/cursor/cursor.cc ui/base/dragdrop/os_exchange_data_provider_win.cc ui/base/dragdrop/os_exchange_data_unittest.cc ui/base/dragdrop/os_exchange_data_win_unittest.cc ui/base/ime/PRESUBMIT.py ui/base/ime/character_composer_sequences.txt ui/base/ime/text_input_client.h ui/base/ime/win/tsf_bridge.cc ui/base/ime/win/tsf_text_store.cc ui/base/ime/win/tsf_text_store.h ui/base/l10n/l10n_util_win.h ui/base/prediction/linear_resampling.h ui/base/resource/data_pack.cc ui/base/resource/resource_bundle.h ui/base/test/skia_gold_matching_algorithm.h ui/base/test/skia_gold_pixel_diff.cc ui/base/ui_base_features.h ui/base/win/event_creation_utils.cc ui/base/win/win_cursor.cc ui/chromeos/file_manager_strings.grdp ui/color/PRESUBMIT.py ui/display/display_switches.cc ui/display/display_transform.cc ui/display/mac/cv_display_link_mac.mm ui/display/manager/tools/index.html ui/display/types/display_constants.h ui/display/win/screen_win.cc ui/display/win/screen_win_headless.cc ui/display/win/test/virtual_display_util_win.cc ui/events/android/motion_event_android_unittest.cc ui/events/blink/blink_event_util.cc ui/events/devices/input_device_observer_win.cc ui/events/gesture_detection/gesture_provider_unittest.cc ui/events/gesture_detection/touch_disposition_gesture_filter.cc ui/events/gestures/gesture_recognizer_impl.cc ui/events/keycodes/dom/dom_keyboard_layout_map_win.cc ui/events/keycodes/keyboard_code_conversion_mac.mm ui/events/keycodes/keyboard_code_conversion_x.cc ui/events/keycodes/keyboard_codes_posix.h ui/events/keycodes/platform_key_map_win.cc ui/events/ozone/evdev/touch_filter/palm_detection_filter_factory.h ui/events/test/keyboard_layout_win.cc ui/events/win/events_win.cc ui/events/win/events_win_utils.cc ui/events/win/modifier_keyboard_hook_win.cc ui/file_manager/base/gn/PRESUBMIT.py ui/file_manager/file_manager/background/js/volume_info.ts ui/file_manager/file_manager/background/js/volume_manager_unittest.ts ui/file_manager/file_manager/common/js/files_app_entry_types.ts ui/file_manager/file_manager/common/js/filtered_volume_manager.ts ui/file_manager/file_manager/common/js/trash.ts ui/file_manager/file_manager/foreground/elements/icons.html ui/file_manager/file_manager/foreground/js/file_manager_commands.ts ui/file_manager/file_manager/foreground/js/file_transfer_controller.ts ui/file_manager/file_manager/foreground/js/ui/banners/google_one_offer_banner.html ui/file_manager/file_manager/foreground/js/ui/file_tap_handler.ts ui/file_manager/file_manager/foreground/js/ui/menu_unittest.ts ui/file_manager/file_manager/widgets/xf_bulk_pinning_dialog.ts ui/file_manager/file_manager/widgets/xf_bulk_pinning_dialog_unittest.ts ui/file_manager/image_loader/piex/Makefile ui/file_manager/image_loader/piex/package.json ui/file_manager/image_loader/service_worker.ts ui/file_manager/integration_tests/file_manager/choose_entry.ts ui/file_manager/integration_tests/file_manager/drive_specific.ts ui/file_manager/integration_tests/file_manager/office.ts ui/file_manager/integration_tests/remote_call.ts ui/file_manager/integration_tests/test_util.ts ui/gfx/PRESUBMIT.py ui/gfx/codec/vector_wstream.cc ui/gfx/color_analysis.h ui/gfx/font.h ui/gfx/font_fallback_win.h ui/gfx/font_names_testing.h ui/gfx/geometry/matrix44.cc ui/gfx/render_text.cc ui/gfx/render_text_unittest.cc ui/gfx/text_elider_unittest.cc ui/gfx/win/hwnd_util.cc ui/gfx/win/icon_util.cc ui/gfx/win/icon_util.h ui/gfx/win/physical_size.cc ui/gfx/win/singleton_hwnd_hot_key_observer.cc ui/gl/android/scoped_a_native_window.cc ui/gl/dcomp_presenter_unittest.cc ui/gl/direct_composition_support.cc ui/gl/gl_display.cc ui/gl/gl_surface_egl.cc ui/gl/gl_surface_presentation_helper.cc ui/gl/hdr_metadata_helper_win.cc ui/gl/os_compositor_tree_base.h ui/gl/vsync_thread_win_dxgi.cc ui/gtk/printing/print_dialog_gtk.cc ui/latency/latency_info.h ui/menus/android/menu_model_bridge.h ui/native_theme/os_settings_provider.cc ui/native_theme/os_settings_provider_win.cc ui/ozone/ozone.gni ui/ozone/platform/wayland/host/wayland_clipboard.cc ui/ozone/platform/wayland/host/wayland_data_drag_controller.cc ui/ozone/platform/wayland/host/wayland_output.h ui/ozone/platform/wayland/host/wayland_window.cc ui/ozone/platform/wayland/host/xdg_popup.cc ui/ozone/platform/x11/test/os_exchange_data_provider_x11_unittest.cc ui/ozone/platform/x11/x11_window.cc ui/resources/PRESUBMIT.py ui/resources/README.txt ui/resources/resource_check/ico_files.py ui/resources/resource_check/resource_scale_factors.py ui/shell_dialogs/auto_close_dialog_event_handler_win.cc ui/shell_dialogs/select_file_dialog.h ui/shell_dialogs/selected_file_info.h ui/strings/ui_strings.grd ui/views/PRESUBMIT.py ui/views/accessibility/view_ax_platform_node_delegate_win_unittest.cc ui/views/animation/animation_builder.cc ui/views/animation/animation_builder.h ui/views/animation/ink_drop_ripple.h ui/views/bubble/bubble_dialog_delegate_view.cc ui/views/controls/table/table_view_unittest.cc ui/views/controls/textfield/textfield_model_unittest.cc ui/views/examples/webview_example.cc ui/views/focus/focus_manager_unittest.cc ui/views/interaction/interaction_sequence_views_unittest.cc ui/views/layout/flex_layout_unittest.cc ui/views/view.h ui/views/view_targeter_delegate.h ui/views/view_unittest.cc ui/views/widget/desktop_aura/desktop_native_widget_aura.cc ui/views/win/hwnd_message_handler.cc ui/views/window/non_client_view.cc ui/webui/resources/cr_components/composebox/composebox_voice_search.ts ui/webui/resources/cr_components/cr_shortcut_input/cr_shortcut_input.ts ui/webui/resources/cr_components/help_bubble/help_bubble_icons.html ui/webui/resources/cr_components/searchbox/searchbox_browser_proxy.ts ui/webui/resources/cr_elements/icons.html.ts ui/webui/resources/js/ios/web_ui.js ui/webui/resources/tools/build_webui.gni url/BUILD.gn url/android/gurl_java_test_helper.cc url/gurl.h url/gurl_unittest.cc url/ipc/url_param_traits_unittest.cc url/mojom/url_gurl_mojom_traits_unittest.cc url/origin_unittest.cc url/third_party/mozilla/url_parse.cc url/third_party/mozilla/url_parse.h url/url_canon_relative.cc url/url_canon_unittest.cc url/url_idna_icu.cc url/url_parse_perftest.cc url/url_parse_unittest.cc url/url_util.cc url/url_util.h url/url_util_unittest.cc v8/PRESUBMIT.py v8/build_overrides/partition_alloc.gni v8/include/cppgc/internal/compiler-specific.h v8/include/v8-callbacks.h v8/include/v8-context.h v8/include/v8-fast-api-calls.h v8/include/v8-initialization.h v8/include/v8-isolate.h v8/include/v8config.h v8/infra/mb/gn_isolate_map.pyl v8/samples/process.cc v8/src/base/compiler-specific.h v8/src/base/cpu.cc v8/src/base/debug/stack_trace.h v8/src/base/debug/stack_trace_win.cc v8/src/base/platform/memory.h v8/src/base/platform/platform-posix.cc v8/src/base/platform/platform-qnx.cc v8/src/base/platform/platform-starboard.cc v8/src/base/platform/platform-win32.cc v8/src/base/platform/time.cc v8/src/base/strong-alias.h v8/src/base/utils/random-number-generator.cc v8/src/base/utils/random-number-generator.h v8/src/codegen/arm/macro-assembler-arm.cc v8/src/codegen/arm64/macro-assembler-arm64-inl.h v8/src/codegen/arm64/macro-assembler-arm64.cc v8/src/codegen/ia32/macro-assembler-ia32.cc v8/src/codegen/reloc-info.h v8/src/codegen/x64/macro-assembler-x64.cc v8/src/codegen/x64/register-x64.h v8/src/common/globals.h v8/src/compiler/backend/instruction.cc v8/src/compiler/backend/riscv/instruction-selector-riscv32.cc v8/src/compiler/c-linkage.cc v8/src/compiler/js-call-reducer.cc v8/src/compiler/machine-operator.cc v8/src/compiler/turboshaft/late-load-elimination-reducer.h v8/src/compiler/turboshaft/turbolev-graph-builder.cc v8/src/compiler/turboshaft/wasm-in-js-inlining-reducer-inl.h v8/src/d8/d8-posix.cc v8/src/d8/d8.cc v8/src/debug/debug-evaluate.cc v8/src/debug/debug-wasm-objects.cc v8/src/debug/debug.cc v8/src/debug/interface-types.h v8/src/debug/wasm/gdb-server/transport.cc v8/src/deoptimizer/deoptimizer.cc v8/src/diagnostics/etw-jit-metadata-win.h v8/src/diagnostics/unwinding-info-win64.cc v8/src/diagnostics/unwinding-info-win64.h v8/src/flags/flag-definitions.h v8/src/handles/handles.h v8/src/heap/code-range.cc v8/src/inspector/v8-console.h v8/src/inspector/v8-regex.cc v8/src/inspector/value-mirror.h v8/src/libplatform/default-thread-isolated-allocator.cc v8/src/libplatform/tracing/recorder-win.cc v8/src/libsampler/sampler.cc v8/src/objects/js-array-buffer.h v8/src/objects/js-number-format.cc v8/src/objects/map.h v8/src/objects/objects.h v8/src/objects/ordered-hash-table.h v8/src/objects/string-inl.h v8/src/objects/value-serializer.cc v8/src/parsing/parser-base.h v8/src/regexp/regexp.cc v8/src/runtime/runtime-test-wasm.cc v8/src/sandbox/bytecode-verifier.h v8/src/sandbox/sandbox.cc v8/src/snapshot/embedded/platform-embedded-file-writer-win.cc v8/src/torque/source-positions.h v8/src/tracing/trace-event.h v8/src/trap-handler/handler-inside-posix.cc v8/src/trap-handler/handler-inside-win.cc v8/src/trap-handler/handler-inside.cc v8/src/trap-handler/handler-outside-posix.cc v8/src/trap-handler/handler-outside-win.cc v8/src/trap-handler/handler-outside.cc v8/src/trap-handler/handler-shared.cc v8/src/wasm/interpreter/arm64/interpreter-builtins-arm64.cc v8/src/wasm/interpreter/riscv/interpreter-builtins-riscv.cc v8/src/wasm/interpreter/wasm-interpreter-runtime.cc v8/src/wasm/interpreter/wasm-interpreter-simd.cc v8/src/wasm/interpreter/wasm-interpreter.cc v8/src/wasm/interpreter/wasm-interpreter.h v8/src/wasm/interpreter/x64/interpreter-builtins-x64.cc v8/src/wasm/wasm-code-manager.cc v8/src/wasm/wasm-debug.cc v8/testing/gtest/BUILD.gn v8/third_party/googletest/BUILD.gn v8/third_party/inspector_protocol/crdtp/cbor.cc v8/third_party/inspector_protocol/crdtp/json.cc v8/third_party/inspector_protocol/roll.py v8/third_party/siphash/halfsiphash.cc v8/third_party/siphash/halfsiphash.h v8/third_party/utf8-decoder/utf8-decoder.h v8/tools/builtins-pgo/download_profiles.py v8/tools/builtins-pgo/profiles/meta.json v8/tools/callstats.html v8/tools/callstats.py v8/tools/clusterfuzz/js_fuzzer/package.json v8/tools/cppgc/gen_cmake.py v8/tools/dev/gm.py v8/tools/dev/setup-reclient.py v8/tools/grokdump.py v8/tools/heap-snapshot-processor.py v8/tools/heap-stats/index.html v8/tools/mb/mb.py v8/tools/parse-processor.html v8/tools/profview/index.html v8/tools/release/common_includes.py v8/tools/release/create_release.py v8/tools/release/git_recipes.py v8/tools/release/merge_to_branch_gerrit.py v8/tools/release/roll_bisect.py v8/tools/release/roll_merge_gerrit.py v8/tools/release/roll_merge_gerrit_test.py v8/tools/release/test_scripts.py v8/tools/release/testdata/roll_merge_gerrit_happy_path.txt v8/tools/run_perf.py v8/tools/sanitizers/sancov_formatter.py v8/tools/sanitizers/sancov_merger.py v8/tools/sanitizers/tsan_suppressions.txt v8/tools/system-analyzer/index.html v8/tools/testrunner/local/variants.py v8/tools/try_perf.py v8/tools/unittests/run_perf_test.py v8/tools/unittests/testdata/test1.json v8/tools/unittests/testdata/test2.json v8/tools/unittests/testdata/test3.json v8/tools/v8windbg/base/dbgext.cc v8/tools/v8windbg/test/debug-callbacks.h v8/tools/v8windbg/test/v8windbg-test.cc v8/tools/visual_studio/README.txt v8/tools/zone-stats/index.html ================================================ FILE: downloads.ini ================================================ # Official Chromium source code archive # NOTE: Substitutions beginning with underscore are provided by utils [chromium] url = https://commondatastorage.googleapis.com/chromium-browser-official/chromium-%(_chromium_version)s-lite.tar.xz download_filename = chromium-%(_chromium_version)s-lite.tar.xz hash_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 output_path = ./ strip_leading_dirs = chromium-%(_chromium_version)s ================================================ FILE: flags.gn ================================================ build_with_tflite_lib=false chrome_pgo_phase=0 clang_use_chrome_plugins=false disable_fieldtrial_testing_config=true enable_hangout_services_extension=false enable_mdns=false enable_remoting=false enable_reporting=false enable_service_discovery=false enable_widevine=true exclude_unwind_tables=true google_api_key="" google_default_client_id="" google_default_client_secret="" safe_browsing_mode=0 treat_warnings_as_errors=false use_official_google_api_keys=false use_unofficial_version_number=false ================================================ FILE: patches/core/bromite/disable-fetching-field-trials.patch ================================================ # NOTE: Modified to remove usage of compiler #if macros From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Sun, 8 Jul 2018 18:16:34 +0200 Subject: Disable fetching of all field trials --- .../browser/flags/ChromeFeatureList.java | 19 ++++--------------- .../variations/service/variations_service.cc | 12 +----------- 2 files changed, 5 insertions(+), 26 deletions(-) --- a/chrome/browser/flags/android/java/src/org/chromium/chrome/browser/flags/ChromeFeatureList.java +++ b/chrome/browser/flags/android/java/src/org/chromium/chrome/browser/flags/ChromeFeatureList.java @@ -62,7 +62,7 @@ public abstract class ChromeFeatureList * |kFeaturesExposedToJava| in chrome/browser/flags/android/chrome_feature_list.cc */ public static String getFieldTrialParamByFeature(String featureName, String paramName) { - return ChromeFeatureMap.getInstance().getFieldTrialParamByFeature(featureName, paramName); + return ""; } /** @@ -74,8 +74,7 @@ public abstract class ChromeFeatureList */ public static boolean getFieldTrialParamByFeatureAsBoolean( String featureName, String paramName, boolean defaultValue) { - return ChromeFeatureMap.getInstance() - .getFieldTrialParamByFeatureAsBoolean(featureName, paramName, defaultValue); + return defaultValue; } /** @@ -87,8 +86,7 @@ public abstract class ChromeFeatureList */ public static int getFieldTrialParamByFeatureAsInt( String featureName, String paramName, int defaultValue) { - return ChromeFeatureMap.getInstance() - .getFieldTrialParamByFeatureAsInt(featureName, paramName, defaultValue); + return defaultValue; } /** @@ -100,8 +98,7 @@ public abstract class ChromeFeatureList */ public static double getFieldTrialParamByFeatureAsDouble( String featureName, String paramName, double defaultValue) { - return ChromeFeatureMap.getInstance() - .getFieldTrialParamByFeatureAsDouble(featureName, paramName, defaultValue); + return defaultValue; } /** --- a/components/variations/service/variations_service.cc +++ b/components/variations/service/variations_service.cc @@ -224,22 +224,7 @@ bool GetInstanceManipulations(const net: // Variations seed fetching is only enabled in official Chrome builds, if a URL // is specified on the command line, and for testing. bool IsFetchingEnabled() { -#if BUILDFLAG(GOOGLE_CHROME_BRANDING) - if (base::CommandLine::ForCurrentProcess()->HasSwitch( - switches::kDisableVariationsSeedFetch)) { return false; - } -#else - if (!base::CommandLine::ForCurrentProcess()->HasSwitch( - switches::kVariationsServerURL) && - !g_should_fetch_for_testing) { - DVLOG(1) - << "Not performing repeated fetching in unofficial build without --" - << switches::kVariationsServerURL << " specified."; - return false; - } -#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING) - return true; } // Returns the already downloaded first run seed, and clear the seed from the ================================================ FILE: patches/core/inox-patchset/0001-fix-building-without-safebrowsing.patch ================================================ --- a/chrome/browser/BUILD.gn +++ b/chrome/browser/BUILD.gn @@ -3749,8 +3749,6 @@ static_library("browser") { "download/download_auto_open_policy_handler.cc", "download/download_auto_open_policy_handler.h", "download/download_commands.cc", - "download/download_danger_prompt.cc", - "download/download_danger_prompt.h", "download/download_dir_policy_handler.cc", "download/download_dir_policy_handler.h", "download/download_dir_util.cc", --- a/chrome/browser/chrome_content_browser_client_navigation_throttles.cc +++ b/chrome/browser/chrome_content_browser_client_navigation_throttles.cc @@ -418,10 +418,6 @@ void CreateAndAddChromeThrottlesForNavig Profile::FromBrowserContext(context)), SafeSearchFactory::GetForBrowserContext(context))); - // Before setting up SSL error detection, configure SSLErrorHandler to invoke - // the relevant extension API whenever an SSL interstitial is shown. - SSLErrorHandler::SetClientCallbackOnInterstitialsShown( - base::BindRepeating(&MaybeTriggerSecurityInterstitialShownEvent)); registry.AddThrottle(std::make_unique( registry, base::BindOnce(&HandleSSLErrorWrapper), base::BindOnce(&IsInHostedApp), --- a/chrome/browser/component_updater/file_type_policies_component_installer.cc +++ b/chrome/browser/component_updater/file_type_policies_component_installer.cc @@ -36,21 +36,6 @@ const uint8_t kFileTypePoliciesPublicKey const char kFileTypePoliciesManifestName[] = "File Type Policies"; void LoadFileTypesFromDisk(const base::FilePath& pb_path) { - if (pb_path.empty()) { - return; - } - - VLOG(1) << "Reading Download File Types from file: " << pb_path.value(); - std::string binary_pb; - if (!base::ReadFileToString(pb_path, &binary_pb)) { - // The file won't exist on new installations, so this is not always an - // error. - VLOG(1) << "Failed reading from " << pb_path.value(); - return; - } - - safe_browsing::FileTypePolicies::GetInstance()->PopulateFromDynamicUpdate( - binary_pb); } } // namespace --- a/chrome/browser/download/download_item_model.cc +++ b/chrome/browser/download/download_item_model.cc @@ -127,7 +127,7 @@ class DownloadItemModelData : public bas // Danger level of the file determined based on the file type and whether // there was a user action associated with the download. - DownloadFileType::DangerLevel danger_level_ = DownloadFileType::NOT_DANGEROUS; + safe_browsing::DownloadFileType::DangerLevel danger_level_ = safe_browsing::DownloadFileType::NOT_DANGEROUS; // Whether the download is currently being revived. bool is_being_revived_ = false; @@ -466,13 +466,13 @@ void DownloadItemModel::SetShouldPreferO data->should_prefer_opening_in_browser_ = preference; } -DownloadFileType::DangerLevel DownloadItemModel::GetDangerLevel() const { +safe_browsing::DownloadFileType::DangerLevel DownloadItemModel::GetDangerLevel() const { const DownloadItemModelData* data = DownloadItemModelData::Get(download_); - return data ? data->danger_level_ : DownloadFileType::NOT_DANGEROUS; + return data ? data->danger_level_ : safe_browsing::DownloadFileType::NOT_DANGEROUS; } void DownloadItemModel::SetDangerLevel( - DownloadFileType::DangerLevel danger_level) { + safe_browsing::DownloadFileType::DangerLevel danger_level) { DownloadItemModelData* data = DownloadItemModelData::GetOrCreate(download_); data->danger_level_ = danger_level; } --- a/chrome/browser/extensions/api/downloads/downloads_api.cc +++ b/chrome/browser/extensions/api/downloads/downloads_api.cc @@ -87,7 +87,6 @@ #endif #if BUILDFLAG(ENABLE_EXTENSIONS) -#include "chrome/browser/download/download_danger_prompt.h" #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser_window.h" #endif @@ -1367,9 +1366,6 @@ DownloadsAcceptDangerFunction::Downloads DownloadsAcceptDangerFunction::~DownloadsAcceptDangerFunction() = default; -DownloadsAcceptDangerFunction::OnPromptCreatedCallback* - DownloadsAcceptDangerFunction::on_prompt_created_ = nullptr; - ExtensionFunction::ResponseAction DownloadsAcceptDangerFunction::Run() { std::optional params = downloads::AcceptDanger::Params::Create(args()); @@ -1417,50 +1413,13 @@ void DownloadsAcceptDangerFunction::Prom } RecordApiFunctions(DownloadsFunctionName::kDownloadsFunctionAcceptDanger); #if BUILDFLAG(ENABLE_EXTENSIONS) - // DownloadDangerPrompt displays a modal dialog using native widgets that the - // user must either accept or cancel. It cannot be scripted. - DownloadDangerPrompt* prompt = DownloadDangerPrompt::Create( - download_item, web_contents, - base::BindOnce(&DownloadsAcceptDangerFunction::DangerPromptCallback, this, - download_id)); - // DownloadDangerPrompt deletes itself - if (on_prompt_created_ && !on_prompt_created_->is_null()) { - std::move(*on_prompt_created_).Run(prompt); - on_prompt_created_ = nullptr; - } - // Function finishes in DangerPromptCallback(). + download_item->ValidateDangerousDownload(); #else NOTIMPLEMENTED(); Respond(Error("DownloadDangerPrompt not implemented")); #endif // BUILDFLAG(ENABLE_EXTENSIONS) } -void DownloadsAcceptDangerFunction::DangerPromptCallback( - int download_id, - DownloadDangerPrompt::Action action) { - DCHECK_CURRENTLY_ON(BrowserThread::UI); - DownloadItem* download_item = GetDownload( - browser_context(), include_incognito_information(), download_id); - std::string error; - if (InvalidId(download_item, &error) || - Fault(download_item->GetState() != DownloadItem::IN_PROGRESS, - download_extension_errors::kNotInProgress, &error)) { - Respond(Error(std::move(error))); - return; - } - switch (action) { - case DownloadDangerPrompt::ACCEPT: - download_item->ValidateDangerousDownload(); - break; - case DownloadDangerPrompt::CANCEL: - download_item->Remove(); - break; - case DownloadDangerPrompt::DISMISS: - break; - } - Respond(NoArguments()); -} - DownloadsShowFunction::DownloadsShowFunction() = default; DownloadsShowFunction::~DownloadsShowFunction() = default; --- a/chrome/browser/extensions/api/downloads/downloads_api.h +++ b/chrome/browser/extensions/api/downloads/downloads_api.h @@ -13,7 +13,6 @@ #include "base/memory/raw_ptr.h" #include "base/scoped_observation.h" #include "base/time/time.h" -#include "chrome/browser/download/download_danger_prompt.h" #include "chrome/common/extensions/api/downloads.h" #include "components/download/content/public/all_download_item_notifier.h" #include "components/download/public/common/download_path_reservation_tracker.h" @@ -169,13 +168,6 @@ class DownloadsRemoveFileFunction : publ class DownloadsAcceptDangerFunction : public ExtensionFunction { public: - using OnPromptCreatedCallback = - base::OnceCallback; - static void OnPromptCreatedForTesting( - OnPromptCreatedCallback* callback) { - on_prompt_created_ = callback; - } - DECLARE_EXTENSION_FUNCTION("downloads.acceptDanger", DOWNLOADS_ACCEPTDANGER) DownloadsAcceptDangerFunction(); @@ -187,13 +179,10 @@ class DownloadsAcceptDangerFunction : pu protected: ~DownloadsAcceptDangerFunction() override; - void DangerPromptCallback(int download_id, - DownloadDangerPrompt::Action action); private: void PromptOrWait(int download_id, int retries); - static OnPromptCreatedCallback* on_prompt_created_; }; class DownloadsShowFunction : public ExtensionFunction { --- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc +++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc @@ -728,18 +728,6 @@ void WebstorePrivateBeginInstallWithMani void WebstorePrivateBeginInstallWithManifest3Function:: ReportFrictionAcceptedEvent() { - if (!profile_) { - return; - } - auto* metrics_collector = - safe_browsing::SafeBrowsingMetricsCollectorFactory::GetForProfile( - profile_); - // `metrics_collector` can be null in incognito. - if (metrics_collector) { - metrics_collector->AddSafeBrowsingEventToPref( - safe_browsing::SafeBrowsingMetricsCollector::EventType:: - EXTENSION_ALLOWLIST_INSTALL_BYPASS); - } } void WebstorePrivateBeginInstallWithManifest3Function::OnInstallPromptDone( --- a/chrome/browser/safe_browsing/BUILD.gn +++ b/chrome/browser/safe_browsing/BUILD.gn @@ -7,6 +7,7 @@ import("//components/safe_browsing/build import("//extensions/buildflags/buildflags.gni") static_library("safe_browsing") { + if (false) { sources = [ "chrome_controller_client.cc", "chrome_controller_client.h", @@ -85,6 +86,7 @@ static_library("safe_browsing") { "//services/metrics/public/cpp:ukm_builders", "//services/preferences/public/cpp", ] + } if (enable_extensions) { deps += [ "//chrome/browser/ui/web_applications" ] @@ -626,6 +628,7 @@ static_library("advanced_protection") { } source_set("metrics_collector") { + if (false) { sources = [ "safe_browsing_metrics_collector_factory.cc", "safe_browsing_metrics_collector_factory.h", @@ -645,6 +648,7 @@ source_set("metrics_collector") { "//components/safe_browsing/core/common:safe_browsing_prefs", "//content/public/browser", ] + } } source_set("unit_tests") { --- a/chrome/browser/ui/views/download/BUILD.gn +++ b/chrome/browser/ui/views/download/BUILD.gn @@ -6,7 +6,6 @@ assert(is_win || is_mac || is_linux || i source_set("download") { sources = [ - "download_danger_prompt_views.cc", "download_in_progress_dialog_view.cc", "download_in_progress_dialog_view.h", ] --- a/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc +++ b/chrome/browser/ui/webui/downloads/downloads_dom_handler.cc @@ -24,7 +24,6 @@ #include "base/threading/thread.h" #include "base/values.h" #include "chrome/browser/browser_process.h" -#include "chrome/browser/download/download_danger_prompt.h" #include "chrome/browser/download/download_history.h" #include "chrome/browser/download/download_item_model.h" #include "chrome/browser/download/download_item_warning_data.h" @@ -550,12 +549,6 @@ void DownloadsDOMHandler::RemoveDownload IdSet ids; for (download::DownloadItem* download : to_remove) { - if (download->IsDangerous() || download->IsInsecure()) { - // Don't allow users to revive dangerous downloads; just nuke 'em. - download->Remove(); - continue; - } - DownloadItemModel item_model(download); if (!item_model.ShouldShowInUi() || download->GetState() == download::DownloadItem::IN_PROGRESS) { --- a/chrome/browser/ui/webui/downloads/downloads_dom_handler.h +++ b/chrome/browser/ui/webui/downloads/downloads_dom_handler.h @@ -13,7 +13,6 @@ #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "base/time/time.h" -#include "chrome/browser/download/download_danger_prompt.h" #include "chrome/browser/download/download_warning_desktop_hats_utils.h" #include "chrome/browser/ui/webui/downloads/downloads.mojom-forward.h" #include "chrome/browser/ui/webui/downloads/downloads_list_tracker.h" --- a/chrome/renderer/chrome_content_renderer_client.cc +++ b/chrome/renderer/chrome_content_renderer_client.cc @@ -111,7 +111,6 @@ #include "components/pdf/common/pdf_util.h" #include "components/permissions/features.h" #include "components/safe_browsing/buildflags.h" -#include "components/safe_browsing/content/renderer/threat_dom_details.h" #include "components/sampling_profiler/process_type.h" #include "components/sampling_profiler/thread_profiler.h" #include "components/security_interstitials/content/renderer/security_interstitial_page_controller_delegate_impl.h" --- a/extensions/browser/blocklist_state_fetcher.cc +++ b/extensions/browser/blocklist_state_fetcher.cc @@ -69,8 +69,7 @@ void BlocklistStateFetcher::SendRequest( std::string request_str; request.SerializeToString(&request_str); - GURL request_url = GURL(safe_browsing::GetReportUrl( - *safe_browsing_config_, "clientreport/crx-list-info")); + GURL request_url = GURL(); net::NetworkTrafficAnnotationTag traffic_annotation = net::DefineNetworkTrafficAnnotation("extension_blacklist", R"( semantics { @@ -134,12 +133,6 @@ void BlocklistStateFetcher::SendRequest( base::Unretained(this), fetcher)); } -void BlocklistStateFetcher::SetSafeBrowsingConfig( - const safe_browsing::V4ProtocolConfig& config) { - safe_browsing_config_ = - std::make_unique(config); -} - void BlocklistStateFetcher::OnURLLoaderComplete( network::SimpleURLLoader* url_loader, std::optional response_body) { --- a/extensions/browser/blocklist_state_fetcher.h +++ b/extensions/browser/blocklist_state_fetcher.h @@ -41,8 +41,6 @@ class BlocklistStateFetcher { virtual void Request(const std::string& id, RequestCallback callback); - void SetSafeBrowsingConfig(const safe_browsing::V4ProtocolConfig& config); - protected: void OnURLLoaderComplete(network::SimpleURLLoader* url_loader, std::optional response_body); ================================================ FILE: patches/core/inox-patchset/0003-disable-autofill-download-manager.patch ================================================ --- a/components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc +++ b/components/autofill/core/browser/crowdsourcing/autofill_crowdsourcing_manager.cc @@ -916,94 +916,6 @@ std::tuple AutofillCr } bool AutofillCrowdsourcingManager::StartRequest(FormRequestData request_data) { - // kRequestUploads take no IsolationInfo because Password Manager uploads when - // RenderFrameHostImpl::DidCommitNavigation() is called, in which case - // AutofillDriver::IsolationInfo() may crash because there is no committing - // NavigationRequest. Not setting an IsolationInfo is safe because no - // information about the response is passed to the renderer, or is otherwise - // visible to a page. See crbug/1176635#c22. -#if BUILDFLAG(IS_IOS) - DCHECK(!request_data.isolation_info); -#else - DCHECK( - (request_data.request_type == CrowdsourcingRequestType::kRequestUpload) == - !request_data.isolation_info); -#endif - // Get the URL and method to use for this request. - auto [request_url, method] = GetRequestURLAndMethod(request_data); - - // Track the URL length for GET queries because the URL length can be in the - // thousands when rich metadata is enabled. - if (request_data.request_type == CrowdsourcingRequestType::kRequestQuery && - method == "GET") { - base::UmaHistogramCounts100000(kUmaGetUrlLength, - request_url.spec().length()); - } - - auto resource_request = std::make_unique(); - resource_request->url = request_url; - resource_request->credentials_mode = network::mojom::CredentialsMode::kOmit; - resource_request->method = method; - - if (request_data.isolation_info) { - resource_request->trusted_params = - network::ResourceRequest::TrustedParams(); - resource_request->trusted_params->isolation_info = - *request_data.isolation_info; - } - - // Add Chrome experiment state to the request headers. - variations::AppendVariationsHeaderUnknownSignedIn( - request_url, - client_->IsOffTheRecord() ? variations::InIncognito::kYes - : variations::InIncognito::kNo, - resource_request.get()); - - // Set headers specific to the API. - // Encode response serialized proto in base64 for safety. - resource_request->headers.SetHeader(kGoogEncodeResponseIfExecutable, - "base64"); - - // Add API key to the request if a key exists, and the endpoint is trusted by - // Google. - if (!api_key_.empty() && request_url.SchemeIs(url::kHttpsScheme) && - google_util::IsGoogleAssociatedDomainUrl(request_url)) { - google_apis::AddAPIKeyToRequest(*resource_request, api_key_); - } - - auto simple_loader = network::SimpleURLLoader::Create( - std::move(resource_request), - GetNetworkTrafficAnnotation(request_data.request_type)); - - // This allows reading the error message within the API response when status - // is not 200 (e.g., 400). Otherwise, URL loader will not give any content in - // the response when there is a failure, which makes debugging hard. - simple_loader->SetAllowHttpErrorResults(true); - - if (method == "POST") { - static constexpr char content_type[] = "application/x-protobuf"; - std::optional payload = - GetAPIBodyPayload(request_data.payload, request_data.request_type); - if (!payload) { - return false; - } - // Attach payload data and add data format header. - simple_loader->AttachStringForUpload(std::move(payload).value(), - content_type); - } - - // Transfer ownership of the loader into url_loaders_. Temporarily hang - // onto the raw pointer to use it as a key and to kick off the request; - // transferring ownership (std::move) invalidates the `simple_loader` - // variable. - auto* raw_simple_loader = simple_loader.get(); - url_loaders_.push_back(std::move(simple_loader)); - raw_simple_loader->SetTimeoutDuration(kFetchTimeout); - raw_simple_loader->DownloadToStringOfUnboundedSizeUntilCrashAndDie( - client_->GetURLLoaderFactory().get(), - base::BindOnce(&AutofillCrowdsourcingManager::OnSimpleLoaderComplete, - base::Unretained(this), std::move(--url_loaders_.end()), - std::move(request_data), base::TimeTicks::Now())); return true; } ================================================ FILE: patches/core/inox-patchset/0005-disable-default-extensions.patch ================================================ --- a/chrome/browser/extensions/component_extensions_allowlist/allowlist.cc +++ b/chrome/browser/extensions/component_extensions_allowlist/allowlist.cc @@ -32,7 +32,6 @@ namespace extensions { bool IsComponentExtensionAllowlisted(const std::string& extension_id) { constexpr auto kAllowed = base::MakeFixedFlatSet({ - extension_misc::kInAppPaymentsSupportAppId, extension_misc::kPdfExtensionId, #if BUILDFLAG(IS_CHROMEOS) extension_misc::kAssessmentAssistantExtensionId, --- a/chrome/browser/extensions/component_loader.cc +++ b/chrome/browser/extensions/component_loader.cc @@ -422,11 +422,6 @@ void ComponentLoader::AddWebStoreApp() { return; } #endif - - AddWithNameAndDescription( - IDR_WEBSTORE_MANIFEST, base::FilePath(FILE_PATH_LITERAL("web_store")), - l10n_util::GetStringUTF8(IDS_WEBSTORE_NAME_STORE), - l10n_util::GetStringUTF8(IDS_WEBSTORE_APP_DESCRIPTION)); } #if BUILDFLAG(IS_CHROMEOS) --- a/chrome/browser/extensions/external_component_loader.cc +++ b/chrome/browser/extensions/external_component_loader.cc @@ -41,9 +41,6 @@ ExternalComponentLoader::~ExternalCompon void ExternalComponentLoader::StartLoading() { auto prefs = base::DictValue(); // Skip in-app payments app on Android. crbug.com/409396604 -#if BUILDFLAG(GOOGLE_CHROME_BRANDING) && !BUILDFLAG(IS_ANDROID) - AddExternalExtension(extension_misc::kInAppPaymentsSupportAppId, prefs); -#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING) && !BUILDFLAG(IS_ANDROID) #if BUILDFLAG(IS_CHROMEOS) { --- a/chrome/browser/extensions/webstore_installer.cc +++ b/chrome/browser/extensions/webstore_installer.cc @@ -489,20 +489,6 @@ void WebstoreInstaller::DownloadNextPend void WebstoreInstaller::DownloadCrx(const extensions::ExtensionId& extension_id, InstallSource source) { - download_url_ = GetWebstoreInstallURL(extension_id, source); - MaybeAppendAuthUserParameter(approval_->authuser, &download_url_); - - base::FilePath user_data_dir; - base::PathService::Get(chrome::DIR_USER_DATA, &user_data_dir); - base::FilePath download_path = user_data_dir.Append(kWebstoreDownloadFolder); - - base::FilePath download_directory(g_download_directory_for_tests ? - *g_download_directory_for_tests : download_path); - - GetExtensionFileTaskRunner()->PostTaskAndReplyWithResult( - FROM_HERE, - base::BindOnce(&GetDownloadFilePath, download_directory, extension_id), - base::BindOnce(&WebstoreInstaller::StartDownload, this, extension_id)); } // http://crbug.com/165634 @@ -657,21 +643,6 @@ void WebstoreInstaller::UpdateDownloadPr void WebstoreInstaller::StartCrxInstaller(const DownloadItem& download) { DCHECK_CURRENTLY_ON(BrowserThread::UI); DCHECK(!crx_installer_.get()); - - const InstallApproval* approval = GetAssociatedApproval(download); - DCHECK(approval); - - crx_installer_ = download_crx_util::CreateCrxInstaller(profile_, download); - - crx_installer_->set_expected_id(approval->extension_id); - crx_installer_->set_is_gallery_install(true); - crx_installer_->set_allow_silent_install(true); - crx_installer_->AddInstallerCallback(base::BindOnce( - &WebstoreInstaller::OnInstallerDone, weak_ptr_factory_.GetWeakPtr())); - if (approval->withhold_permissions) - crx_installer_->set_withhold_permissions(); - - crx_installer_->InstallCrx(download.GetFullPath()); } void WebstoreInstaller::ReportFailure(const std::string& error, ================================================ FILE: patches/core/inox-patchset/0015-disable-update-pings.patch ================================================ --- a/chrome/updater/configurator.cc +++ b/chrome/updater/configurator.cc @@ -133,7 +133,7 @@ base::TimeDelta Configurator::UpdateDela std::vector Configurator::UpdateUrl() const { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); - return external_constants_->UpdateURL(); + return std::vector(); } std::vector Configurator::PingUrl() const { ================================================ FILE: patches/core/inox-patchset/0021-disable-rlz.patch ================================================ # Disable rlz --- a/BUILD.gn +++ b/BUILD.gn @@ -456,14 +456,6 @@ group("gn_all") { ] } - if (is_chromeos || is_mac || is_win) { - deps += [ - "//rlz:rlz_id", - "//rlz:rlz_lib", - "//rlz:rlz_unittests", - ] - } - if (is_linux || is_chromeos) { # The following are definitely linux-only. deps += [ --- a/rlz/buildflags/buildflags.gni +++ b/rlz/buildflags/buildflags.gni @@ -6,7 +6,7 @@ import("//build/config/chrome_build.gni" # Whether we are using the rlz library or not. Platforms like Android send # rlz codes for searches but do not use the library. -enable_rlz_support = is_win || is_apple || is_chromeos +enable_rlz_support = false declare_args() { enable_rlz = is_chrome_branded && enable_rlz_support ================================================ FILE: patches/core/iridium-browser/all-add-trk-prefixes-to-possibly-evil-connections.patch ================================================ From 06f6141610cb2aa562c94dbb9f1f4355e4b34c5d Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Mon, 30 Sep 2019 09:37:51 +0200 Subject: [PATCH 75/76] all: add trk: prefixes to possibly evil connections Prefix URLs to Google services with trk: so that whenever something tries to load them, the developer will be informed via printf and dialog (extra info bar between URLbar and content window) about this. If you see such dialog, we know that (a) either the URL needs to be whitelisted, or (b) the feature that triggered it needs to be disabled by default. --- build/mac/tweak_info_plist.py | 2 +- .../customization/customization_document.cc | 2 +- .../file_manager/private_api_drive.cc | 2 +- .../file_manager/private_api_misc.cc | 2 +- .../remote_commands/crd_host_delegate.cc | 6 +++--- .../cryptotoken_private_api.cc | 4 ++-- chrome/browser/extensions/install_signer.cc | 2 +- .../media/webrtc/webrtc_event_log_uploader.cc | 2 +- .../media/webrtc/webrtc_log_uploader.cc | 2 +- .../nacl_host/nacl_infobar_delegate.cc | 2 +- .../profiles/profile_avatar_downloader.cc | 2 +- .../default_apps/external_extensions.json | 6 +++--- .../client_side_detection_service.cc | 2 +- .../download_protection/download_feedback.cc | 2 +- .../spellcheck_hunspell_dictionary.cc | 2 +- .../supervised_user_service.cc | 2 +- .../browser/tracing/crash_service_uploader.cc | 2 +- .../ui/views/outdated_upgrade_bubble_view.cc | 2 +- .../ui/webui/ntp/ntp_resource_cache.cc | 8 ++++---- .../components/recovery_component.cc | 2 +- .../crash/crashpad_crash_reporter.cc | 2 +- .../extensions/chrome_extensions_client.cc | 4 ++-- .../setup/google_chrome_behaviors.cc | 2 +- .../browser/service/cast_service_simple.cc | 2 +- chromecast/crash/linux/minidump_uploader.cc | 2 +- .../simple_geolocation_provider.cc | 2 +- .../common/cloud_devices_urls.cc | 8 ++++---- components/drive/service/drive_api_service.cc | 4 ++-- components/feedback/feedback_uploader.cc | 2 +- components/gcm_driver/gcm_account_tracker.cc | 4 ++-- components/google/core/common/google_util.cc | 2 +- .../core/browser/web_history_service.cc | 6 +++--- components/metrics/url_constants.cc | 2 +- .../core/browser/password_store.cc | 8 ++++---- .../safe_search_url_checker_client.cc | 2 +- .../safe_search_api/stub_url_checker.cc | 2 +- .../core/browser/translate_url_fetcher.cc | 1 + .../translate/core/common/translate_util.cc | 2 +- .../variations/variations_url_constants.cc | 2 +- .../speech/speech_recognition_engine.cc | 2 +- .../browser/webauth/authenticator_common.cc | 4 ++-- .../shell/browser/shell_browser_main_parts.cc | 2 +- google_apis/gaia/gaia_constants.cc | 20 +++++++++---------- google_apis/gaia/gaia_urls.cc | 1 + google_apis/gcm/engine/gservices_settings.cc | 6 +++--- .../notifier/base/gaia_token_pre_xmpp_auth.cc | 2 +- remoting/base/breakpad_mac.mm | 2 +- remoting/protocol/jingle_messages.cc | 2 +- rlz/lib/lib_values.cc | 2 +- third_party/libjingle_xmpp/xmpp/constants.cc | 6 +++--- .../chromevox/background/prefs.js | 4 ++-- .../chromevoxclassic/host/chrome/host.js | 4 ++-- ui/views/examples/webview_example.cc | 2 +- 54 files changed, 89 insertions(+), 87 deletions(-) --- a/build/apple/tweak_info_plist.py +++ b/build/apple/tweak_info_plist.py @@ -218,7 +218,7 @@ def _AddKeystoneKeys(plist, bundle_ident also requires the |bundle_identifier| argument (com.example.product).""" plist['KSVersion'] = plist['CFBundleShortVersionString'] plist['KSProductID'] = bundle_identifier - plist['KSUpdateURL'] = 'https://tools.google.com/service/update2' + plist['KSUpdateURL'] = 'trk:132:https://tools.google.com/service/update2' _RemoveKeys(plist, 'KSChannelID') if base_tag != '': --- a/chrome/browser/ash/customization/customization_document.h +++ b/chrome/browser/ash/customization/customization_document.h @@ -155,7 +155,7 @@ class ServicesCustomizationDocument : pu // Template URL where to fetch OEM services customization manifest from. static constexpr char kManifestUrl[] = - "https://ssl.gstatic.com/chrome/chromeos-customization/%s.json"; + "trk:151:https://ssl.gstatic.com/chrome/chromeos-customization/%s.json"; // Return true if the customization was applied. Customization is applied only // once per machine. --- a/chrome/browser/media/webrtc/webrtc_event_log_uploader.cc +++ b/chrome/browser/media/webrtc/webrtc_event_log_uploader.cc @@ -110,7 +110,7 @@ void OnURLLoadUploadProgress(uint64_t cu } // namespace const char WebRtcEventLogUploaderImpl::kUploadURL[] = - "https://clients2.google.com/cr/report"; + "trk:300:https://clients2.google.com/cr/report"; WebRtcEventLogUploaderImpl::Factory::Factory( scoped_refptr task_runner) --- a/chrome/browser/media/webrtc/webrtc_log_uploader.cc +++ b/chrome/browser/media/webrtc/webrtc_log_uploader.cc @@ -473,7 +473,7 @@ void WebRtcLogUploader::UploadCompressed } })"); - constexpr char kUploadURL[] = "https://clients2.google.com/cr/report"; + constexpr char kUploadURL[] = "trk:301:https://clients2.google.com/cr/report"; auto resource_request = std::make_unique(); resource_request->url = !upload_url_for_testing_.is_empty() ? upload_url_for_testing_ --- a/chrome/browser/profiles/profile_avatar_downloader.cc +++ b/chrome/browser/profiles/profile_avatar_downloader.cc @@ -20,7 +20,7 @@ namespace { const char kHighResAvatarDownloadUrlPrefix[] = - "https://www.gstatic.com/chrome/profile_avatars/"; + "trk:271:https://www.gstatic.com/chrome/profile_avatars/"; } ProfileAvatarDownloader::ProfileAvatarDownloader(size_t icon_index, --- a/chrome/browser/resources/default_apps/external_extensions.json +++ b/chrome/browser/resources/default_apps/external_extensions.json @@ -3,7 +3,7 @@ { // Drive extension "ghbmnnjooekpmoecnnnilnnbdlolhkhi" : { - "external_update_url": "https://clients2.google.com/service/update2/crx" + "external_update_url": "trk:04:https://clients2.google.com/service/update2/crx" } } --- a/chrome/browser/safe_browsing/download_protection/download_feedback.cc +++ b/chrome/browser/safe_browsing/download_protection/download_feedback.cc @@ -178,7 +178,7 @@ const int64_t DownloadFeedback::kMaxUplo // static const char DownloadFeedback::kSbFeedbackURL[] = - "https://safebrowsing.google.com/safebrowsing/uploads/chrome"; + "trk:164:https://safebrowsing.google.com/safebrowsing/uploads/chrome"; // static DownloadFeedbackFactory* DownloadFeedback::factory_ = nullptr; --- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc +++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc @@ -278,7 +278,7 @@ GURL SpellcheckHunspellDictionary::GetDi DCHECK(!bdict_file.empty()); static const char kDownloadServerUrl[] = - "https://redirector.gvt1.com/edgedl/chrome/dict/"; + "trk:173:https://redirector.gvt1.com/edgedl/chrome/dict/"; return GURL(std::string(kDownloadServerUrl) + base::ToLowerASCII(bdict_file)); --- a/chrome/browser/ui/dialogs/outdated_upgrade_bubble.cc +++ b/chrome/browser/ui/dialogs/outdated_upgrade_bubble.cc @@ -33,7 +33,7 @@ namespace { // The URL to be used to re-install Chrome when auto-update failed for too long. -const char* kUpdateBrowserRedirectUrl = "https://www.google.com/chrome"; +const char* kUpdateBrowserRedirectUrl = "trk:242:https://www.google.com/chrome"; bool g_upgrade_bubble_is_showing = false; --- a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc +++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc @@ -65,17 +65,17 @@ namespace { // The URL for the the Learn More page shown on incognito new tab. const char kLearnMoreIncognitoUrl[] = #if BUILDFLAG(IS_CHROMEOS) - "https://support.google.com/chromebook/?p=incognito"; + "trk:246:https://support.google.com/chromebook/?p=incognito"; #else - "https://support.google.com/chrome/?p=incognito"; + "trk:247:https://support.google.com/chrome/?p=incognito"; #endif // The URL for the Learn More page shown on guest session new tab. const char kLearnMoreGuestSessionUrl[] = #if BUILDFLAG(IS_CHROMEOS) - "https://support.google.com/chromebook/?p=chromebook_guest"; + "trk:248:https://support.google.com/chromebook/?p=chromebook_guest"; #else - "https://support.google.com/chrome/?p=ui_guest"; + "trk:261:https://support.google.com/chrome/?p=ui_guest"; #endif std::string ReplaceTemplateExpressions( --- a/chrome/common/extensions/chrome_extensions_client.cc +++ b/chrome/common/extensions/chrome_extensions_client.cc @@ -46,9 +46,9 @@ namespace { // TODO(battre): Delete the HTTP URL once the blocklist is downloaded via HTTPS. const char kExtensionBlocklistUrlPrefix[] = - "http://www.gstatic.com/chrome/extensions/blocklist"; + "trk:269:http://www.gstatic.com/chrome/extensions/blocklist"; const char kExtensionBlocklistHttpsUrlPrefix[] = - "https://www.gstatic.com/chrome/extensions/blocklist"; + "trk:270:https://www.gstatic.com/chrome/extensions/blocklist"; } // namespace --- a/chrome/installer/setup/google_chrome_behaviors.cc +++ b/chrome/installer/setup/google_chrome_behaviors.cc @@ -38,7 +38,7 @@ namespace installer { namespace { constexpr std::wstring_view kUninstallSurveyUrl( - L"https://support.google.com/chrome?p=chrome_uninstall_survey"); + L"trk:253:https://support.google.com/chrome?p=chrome_uninstall_survey"); // Launches the url directly with the user's default handler for |url|. bool NavigateToUrlWithHttps(const std::wstring& url) { --- a/chromeos/ash/components/geolocation/location_fetcher.h +++ b/chromeos/ash/components/geolocation/location_fetcher.h @@ -36,7 +36,7 @@ class GeolocationHandler; class COMPONENT_EXPORT(CHROMEOS_ASH_COMPONENTS_GEOLOCATION) LocationFetcher { public: static constexpr char kDefaultGeolocationProviderUrl[] = - "https://www.googleapis.com/geolocation/v1/geolocate?"; + "trk:215:https://www.googleapis.com/geolocation/v1/geolocate?"; explicit LocationFetcher( scoped_refptr url_loader_factory); --- a/components/feedback/feedback_uploader.cc +++ b/components/feedback/feedback_uploader.cc @@ -43,7 +43,7 @@ constexpr base::FilePath::CharType kFeed FILE_PATH_LITERAL("Feedback Reports"); constexpr char kFeedbackPostUrl[] = - "https://www.google.com/tools/feedback/chrome/__submit"; + "trk:232:https://www.google.com/tools/feedback/chrome/__submit"; constexpr char kProtoBufMimeType[] = "application/x-protobuf"; --- a/components/google/core/common/google_util.cc +++ b/components/google/core/common/google_util.cc @@ -150,7 +150,7 @@ BASE_FEATURE(kIsViewerGoogleSearchUrl, b // Global functions ----------------------------------------------------------- -const char kGoogleHomepageURL[] = "https://www.google.com/"; +const char kGoogleHomepageURL[] = "trk:113:https://www.google.com/"; bool HasGoogleSearchQueryParam(std::string_view str) { url::Component query(0, static_cast(str.length())), key, value; --- a/components/history/core/browser/web_history_service.cc +++ b/components/history/core/browser/web_history_service.cc @@ -47,19 +47,19 @@ namespace history { namespace { const char kOldQueryHistoryUrl[] = - "https://history.google.com/history/api/lookup?client=chrome"; + "trk:134:https://history.google.com/history/api/lookup?client=chrome"; const char kNewQueryHistoryUrl[] = - "https://footprints-pa.googleapis.com/v1/read_chrome_history"; + "trk:135:https://footprints-pa.googleapis.com/v1/read_chrome_history"; const char kOldHistoryDeleteHistoryUrl[] = - "https://history.google.com/history/api/delete?client=chrome"; + "trk:136:https://history.google.com/history/api/delete?client=chrome"; const char kNewHistoryDeleteHistoryUrl[] = - "https://footprints-pa.googleapis.com/v1/delete_chrome_history"; + "trk:137:https://footprints-pa.googleapis.com/v1/delete_chrome_history"; const char kOldQueryWebAndAppActivityUrl[] = - "https://history.google.com/history/api/lookup?client=web_app"; + "trk:138:https://history.google.com/history/api/lookup?client=web_app"; const char kNewQueryWebAndAppActivityUrl[] = - "https://footprints-pa.googleapis.com/v1/get_facs"; + "trk:139:https://footprints-pa.googleapis.com/v1/get_facs"; const char kQueryOtherFormsOfBrowsingHistoryUrlSuffix[] = "/historystatus"; --- a/components/safe_browsing/content/browser/client_side_detection_service.cc +++ b/components/safe_browsing/content/browser/client_side_detection_service.cc @@ -72,7 +72,7 @@ const int ClientSideDetectionService::kN const int ClientSideDetectionService::kPositiveCacheIntervalMinutes = 30; const char ClientSideDetectionService::kClientReportPhishingUrl[] = - "https://sb-ssl.google.com/safebrowsing/clientreport/phishing"; + "trk:148:https://sb-ssl.google.com/safebrowsing/clientreport/phishing"; struct ClientSideDetectionService::ClientPhishingReportInfo { std::unique_ptr loader; --- a/components/safe_search_api/safe_search/safe_search_url_checker_client.cc +++ b/components/safe_search_api/safe_search/safe_search_url_checker_client.cc @@ -28,7 +28,7 @@ namespace safe_search_api { namespace { const char kSafeSearchApiUrl[] = - "https://safesearch.googleapis.com/v1:classify"; + "trk:238:https://safesearch.googleapis.com/v1:classify"; const char kDataContentType[] = "application/x-www-form-urlencoded"; const char kDataFormat[] = "key=%s&urls=%s"; --- a/components/safe_search_api/stub_url_checker.cc +++ b/components/safe_search_api/stub_url_checker.cc @@ -21,7 +21,7 @@ namespace safe_search_api { namespace { constexpr char kSafeSearchApiUrl[] = - "https://safesearch.googleapis.com/v1:classify"; + "trk:238:https://safesearch.googleapis.com/v1:classify"; std::string BuildResponse(bool is_porn) { base::DictValue dict; --- a/components/translate/core/browser/translate_url_fetcher.cc +++ b/components/translate/core/browser/translate_url_fetcher.cc @@ -101,6 +101,7 @@ bool TranslateURLFetcher::Request(const resource_request->credentials_mode = network::mojom::CredentialsMode::kOmit; resource_request->headers.MergeFrom(extra_request_header_); + fprintf(stderr, "translator: fetching something from %s\n", url_.spec().c_str()); simple_loader_ = variations::CreateSimpleURLLoaderWithVariationsHeaderUnknownSignedIn( std::move(resource_request), --- a/components/translate/core/common/translate_util.cc +++ b/components/translate/core/common/translate_util.cc @@ -28,7 +28,7 @@ constexpr int kMaxNumberOfAutoNever = 2; namespace translate { -const char kSecurityOrigin[] = "https://translate.googleapis.com/"; +const char kSecurityOrigin[] = "trk:220:https://translate.googleapis.com/"; GURL GetTranslateSecurityOrigin() { std::string security_origin(kSecurityOrigin); --- a/components/variations/variations_url_constants.cc +++ b/components/variations/variations_url_constants.cc @@ -8,7 +8,7 @@ namespace variations { // Default server of Variations seed info. const char kDefaultServerUrl[] = - "https://clientservices.googleapis.com/chrome-variations/seed"; + "trk:142:https://clientservices.googleapis.com/chrome-variations/seed"; const char kDefaultInsecureServerUrl[] = "http://clientservices.googleapis.com/chrome-variations/seed"; --- a/content/browser/speech/network_speech_recognition_engine_impl.cc +++ b/content/browser/speech/network_speech_recognition_engine_impl.cc @@ -35,7 +35,7 @@ namespace content { namespace { const char kWebServiceBaseUrl[] = - "https://www.google.com/speech-api/full-duplex/v1"; + "trk:184:https://www.google.com/speech-api/full-duplex/v1"; const char kDownstreamUrl[] = "/down?"; const char kUpstreamUrl[] = "/up?"; --- a/content/browser/webauth/webauth_request_security_checker.h +++ b/content/browser/webauth/webauth_request_security_checker.h @@ -44,9 +44,9 @@ class CONTENT_EXPORT WebAuthRequestSecur // Legacy App IDs, which google.com origins are allowed to assert for // compatibility reasons. static constexpr char kGstaticAppId[] = - "https://www.gstatic.com/securitykey/origins.json"; + "trk:276:https://www.gstatic.com/securitykey/origins.json"; static constexpr char kGstaticCorpAppId[] = - "https://www.gstatic.com/securitykey/a/google.com/origins.json"; + "trk:277:https://www.gstatic.com/securitykey/a/google.com/origins.json"; explicit WebAuthRequestSecurityChecker(RenderFrameHost* host); WebAuthRequestSecurityChecker(const WebAuthRequestSecurityChecker&) = delete; --- a/content/shell/browser/shell_browser_main_parts.cc +++ b/content/shell/browser/shell_browser_main_parts.cc @@ -85,7 +85,7 @@ GURL GetStartupURL() { #else const base::CommandLine::StringVector& args = command_line->GetArgs(); if (args.empty()) - return GURL("https://www.google.com/"); + return GURL("trk:183:https://www.google.com/"); #if BUILDFLAG(IS_WIN) GURL url(base::WideToUTF16(args[0])); --- a/extensions/browser/install_signer.cc +++ b/extensions/browser/install_signer.cc @@ -68,7 +68,7 @@ const int kSignatureFormatVersion = 2; const size_t kSaltBytes = 32; const char kBackendUrl[] = - "https://www.googleapis.com/chromewebstore/v1.1/items/verify"; + "trk:222:https://www.googleapis.com/chromewebstore/v1.1/items/verify"; const char kPublicKeyPEM[] = "-----BEGIN PUBLIC KEY-----" --- a/extensions/common/extension_urls.cc +++ b/extensions/common/extension_urls.cc @@ -38,13 +38,13 @@ const GURL* g_item_snippet_url_for_test_ } // namespace -const char kChromeWebstoreBaseURL[] = "https://chrome.google.com/webstore"; -const char kNewChromeWebstoreBaseURL[] = "https://chromewebstore.google.com/"; +const char kChromeWebstoreBaseURL[] = "trk:09:https://chrome.google.com/webstore"; +const char kNewChromeWebstoreBaseURL[] = "trk:08:https://chromewebstore.google.com/"; const char kExtensionsDocsWhatsNewURL[] = - "https://developer.chrome.com/docs/extensions/whats-new"; + "trk:06:https://developer.chrome.com/docs/extensions/whats-new"; const char kChromeWebstoreUpdateURL[] = - "https://clients2.google.com/service/update2/crx"; -const char kChromeWebstoreApiURL[] = "https://chromewebstore.googleapis.com/"; + "trk:05:https://clients2.google.com/service/update2/crx"; +const char kChromeWebstoreApiURL[] = "trk:07:https://chromewebstore.googleapis.com/"; const char kAppMenuUtmSource[] = "ext_app_menu"; const char kExtensionsMenuUtmSource[] = "ext_extensions_menu"; --- a/google_apis/gaia/gaia_constants.cc +++ b/google_apis/gaia/gaia_constants.cc @@ -14,189 +14,189 @@ const char kChromeSource[] = "ChromiumBr const char kUnexpectedServiceResponse[] = "UnexpectedServiceResponse"; // OAuth scopes. -const char kOAuth1LoginScope[] = "https://www.google.com/accounts/OAuthLogin"; +const char kOAuth1LoginScope[] = "trk:069:https://www.google.com/accounts/OAuthLogin"; // Service/scope names for device management (cloud-based policy) server. const char kDeviceManagementServiceOAuth[] = - "https://www.googleapis.com/auth/chromeosdevicemanagement"; + "trk:070:https://www.googleapis.com/auth/chromeosdevicemanagement"; // OAuth2 scope for access to all Google APIs. -const char kAnyApiOAuth2Scope[] = "https://www.googleapis.com/auth/any-api"; +const char kAnyApiOAuth2Scope[] = "trk:071:https://www.googleapis.com/auth/any-api"; // OAuth2 scope for access to Chrome sync APIs const char kChromeSyncOAuth2Scope[] = - "https://www.googleapis.com/auth/chromesync"; + "trk:072:https://www.googleapis.com/auth/chromesync"; // OAuth2 scope for access to the Chrome Sync APIs for managed profiles. const char kChromeSyncSupervisedOAuth2Scope[] = - "https://www.googleapis.com/auth/chromesync_playpen"; + "trk:073:https://www.googleapis.com/auth/chromesync_playpen"; // OAuth2 scope for parental consent logging for secondary account addition. const char kKidManagementPrivilegedOAuth2Scope[] = - "https://www.googleapis.com/auth/kid.management.privileged"; + "trk:075:https://www.googleapis.com/auth/kid.management.privileged"; // OAuth2 scope for access to Google Family Link Supervision Setup. const char kKidsSupervisionSetupChildOAuth2Scope[] = - "https://www.googleapis.com/auth/kids.supervision.setup.child"; + "trk:076:https://www.googleapis.com/auth/kids.supervision.setup.child"; // OAuth2 scope for access to Google Talk APIs (XMPP). const char kGoogleTalkOAuth2Scope[] = - "https://www.googleapis.com/auth/googletalk"; + "trk:077:https://www.googleapis.com/auth/googletalk"; // OAuth2 scope for access to Google account information. const char kGoogleUserInfoEmail[] = - "https://www.googleapis.com/auth/userinfo.email"; + "trk:078:https://www.googleapis.com/auth/userinfo.email"; const char kGoogleUserInfoProfile[] = - "https://www.googleapis.com/auth/userinfo.profile"; + "trk:079:https://www.googleapis.com/auth/userinfo.profile"; // OAuth2 scope for IP protection proxy authentication const char kIpProtectionAuthScope[] = - "https://www.googleapis.com/auth/ip-protection"; + "trk:109:https://www.googleapis.com/auth/ip-protection"; // OAuth2 scope for access to the parent approval widget. const char kParentApprovalOAuth2Scope[] = - "https://www.googleapis.com/auth/kids.parentapproval"; + "trk:080:https://www.googleapis.com/auth/kids.parentapproval"; // OAuth2 scope for access to the people API (read-only). const char kPeopleApiReadOnlyOAuth2Scope[] = - "https://www.googleapis.com/auth/peopleapi.readonly"; + "trk:081:https://www.googleapis.com/auth/peopleapi.readonly"; // OAuth2 scope for access to the people API (read-write). const char kPeopleApiReadWriteOAuth2Scope[] = - "https://www.googleapis.com/auth/peopleapi.readwrite"; + "trk:115:https://www.googleapis.com/auth/peopleapi.readwrite"; // OAuth2 scope for read-write access to contacts. -const char kContactsOAuth2Scope[] = "https://www.googleapis.com/auth/contacts"; +const char kContactsOAuth2Scope[] = "trk:117:https://www.googleapis.com/auth/contacts"; // OAuth2 scope for access to the people API person's locale preferences // (read-only). const char kProfileLanguageReadOnlyOAuth2Scope[] = - "https://www.googleapis.com/auth/profile.language.read"; + "trk:116:https://www.googleapis.com/auth/profile.language.read"; // OAuth2 scope for access to the programmatic challenge API (read-only). const char kProgrammaticChallengeOAuth2Scope[] = - "https://www.googleapis.com/auth/accounts.programmaticchallenge"; + "trk:082:https://www.googleapis.com/auth/accounts.programmaticchallenge"; // OAuth2 scope for access to the Reauth flow. const char kAccountsReauthOAuth2Scope[] = - "https://www.googleapis.com/auth/accounts.reauth"; + "trk:083:https://www.googleapis.com/auth/accounts.reauth"; // OAuth2 scope for access to audit recording (ARI). const char kAuditRecordingOAuth2Scope[] = - "https://www.googleapis.com/auth/auditrecording-pa"; + "trk:084:https://www.googleapis.com/auth/auditrecording-pa"; // OAuth2 scope for access to clear cut logs. -const char kClearCutOAuth2Scope[] = "https://www.googleapis.com/auth/cclog"; +const char kClearCutOAuth2Scope[] = "trk:085:https://www.googleapis.com/auth/cclog"; // OAuth2 scope for FCM, the Firebase Cloud Messaging service. const char kFCMOAuthScope[] = - "https://www.googleapis.com/auth/firebase.messaging"; + "trk:086:https://www.googleapis.com/auth/firebase.messaging"; // OAuth2 scope for access to Tachyon api. -const char kTachyonOAuthScope[] = "https://www.googleapis.com/auth/tachyon"; +const char kTachyonOAuthScope[] = "trk:087:https://www.googleapis.com/auth/tachyon"; // OAuth2 scope for School Tools API. const char kSchoolToolsAuthScope[] = - "https://www.googleapis.com/auth/chromeosschooltools"; + "trk:068:https://www.googleapis.com/auth/chromeosschooltools"; // OAuth2 scope for access to the Photos API. -const char kPhotosOAuth2Scope[] = "https://www.googleapis.com/auth/photos"; +const char kPhotosOAuth2Scope[] = "trk:088:https://www.googleapis.com/auth/photos"; // OAuth2 scope for access to the SecureConnect API. extern const char kSecureConnectOAuth2Scope[] = - "https://www.googleapis.com/auth/bce.secureconnect"; + "trk:074:https://www.googleapis.com/auth/bce.secureconnect"; // OAuth2 scope for access to personalized web search results. const char kSearchResultsOAuth2Scope[] = - "https://www.googleapis.com/auth/searchresults"; + "trk:065:https://www.googleapis.com/auth/searchresults"; // OAuth2 scope for access to Cast backdrop API. const char kCastBackdropOAuth2Scope[] = - "https://www.googleapis.com/auth/cast.backdrop"; + "trk:089:https://www.googleapis.com/auth/cast.backdrop"; // OAuth2 scope for access to passwords leak checking API. const char kPasswordsLeakCheckOAuth2Scope[] = - "https://www.googleapis.com/auth/identity.passwords.leak.check"; + "trk:091:https://www.googleapis.com/auth/identity.passwords.leak.check"; // OAuth2 scope for access to Chrome safe browsing API. const char kChromeSafeBrowsingOAuth2Scope[] = - "https://www.googleapis.com/auth/chrome-safe-browsing"; + "trk:092:https://www.googleapis.com/auth/chrome-safe-browsing"; // OAuth2 scope for access to kid permissions by URL. const char kClassifyUrlKidPermissionOAuth2Scope[] = - "https://www.googleapis.com/auth/kid.permission"; + "trk:093:https://www.googleapis.com/auth/kid.permission"; const char kKidFamilyReadonlyOAuth2Scope[] = - "https://www.googleapis.com/auth/kid.family.readonly"; + "trk:094:https://www.googleapis.com/auth/kid.family.readonly"; // OAuth2 scope for access to payments. const char kPaymentsOAuth2Scope[] = - "https://www.googleapis.com/auth/wallet.chrome"; + "trk:095:https://www.googleapis.com/auth/wallet.chrome"; const char kCryptAuthOAuth2Scope[] = - "https://www.googleapis.com/auth/cryptauth"; + "trk:096:https://www.googleapis.com/auth/cryptauth"; // OAuth2 scope for access to Drive. -const char kDriveOAuth2Scope[] = "https://www.googleapis.com/auth/drive"; +const char kDriveOAuth2Scope[] = "trk:097:https://www.googleapis.com/auth/drive"; // OAuth2 scope for access to Drive Apps. const char kDriveAppsOAuth2Scope[] = - "https://www.googleapis.com/auth/drive.apps"; + "trk:067:https://www.googleapis.com/auth/drive.apps"; // OAuth2 scope for access for DriveFS to access flags. const char kExperimentsAndConfigsOAuth2Scope[] = - "https://www.googleapis.com/auth/experimentsandconfigs"; + "trk:209:https://www.googleapis.com/auth/experimentsandconfigs"; // OAuth2 scope for access for DriveFS to use client-side notifications. const char kClientChannelOAuth2Scope[] = - "https://www.googleapis.com/auth/client_channel"; + "trk:210:https://www.googleapis.com/auth/client_channel"; // The scope required for an access token in order to query ItemSuggest. const char kDriveReadOnlyOAuth2Scope[] = - "https://www.googleapis.com/auth/drive.readonly"; + "trk:098:https://www.googleapis.com/auth/drive.readonly"; // OAuth2 scope for access to Assistant SDK. const char kAssistantOAuth2Scope[] = - "https://www.googleapis.com/auth/assistant-sdk-prototype"; + "trk:099:https://www.googleapis.com/auth/assistant-sdk-prototype"; // OAuth2 scope for access to nearby devices (fast pair) APIs. const char kNearbyDevicesOAuth2Scope[] = - "https://www.googleapis.com/auth/nearbydevices-pa"; + "trk:100:https://www.googleapis.com/auth/nearbydevices-pa"; // OAuth2 scope for access to readonly Drive Apps. const char kDriveAppsReadonlyOAuth2Scope[] = - "https://www.googleapis.com/auth/drive.apps.readonly"; + "trk:066:https://www.googleapis.com/auth/drive.apps.readonly"; // OAuth2 scope for access to nearby sharing. const char kNearbyShareOAuth2Scope[] = - "https://www.googleapis.com/auth/nearbysharing-pa"; + "trk:101:https://www.googleapis.com/auth/nearbysharing-pa"; // OAuth2 scope for access to nearby sharing. const char kNearbyPresenceOAuth2Scope[] = - "https://www.googleapis.com/auth/nearbypresence-pa"; + "trk:114:https://www.googleapis.com/auth/nearbypresence-pa"; // OAuth2 scopes for access to GCM account tracker. -const char kGCMGroupServerOAuth2Scope[] = "https://www.googleapis.com/auth/gcm"; +const char kGCMGroupServerOAuth2Scope[] = "trk:102:https://www.googleapis.com/auth/gcm"; const char kGCMCheckinServerOAuth2Scope[] = - "https://www.googleapis.com/auth/android_checkin"; + "trk:103:https://www.googleapis.com/auth/android_checkin"; // OAuth2 scope for access to readonly Chrome web store. const char kChromeWebstoreOAuth2Scope[] = - "https://www.googleapis.com/auth/chromewebstore.readonly"; + "trk:104:https://www.googleapis.com/auth/chromewebstore.readonly"; // OAuth2 scope for access to Account Capabilities API. const char kAccountCapabilitiesOAuth2Scope[] = - "https://www.googleapis.com/auth/account.capabilities"; + "trk:105:https://www.googleapis.com/auth/account.capabilities"; // OAuth2 scope for support content API. const char kSupportContentOAuth2Scope[] = - "https://www.googleapis.com/auth/supportcontent"; + "trk:106:https://www.googleapis.com/auth/supportcontent"; // OAuth 2 scope for NTP Photos module API. const char kPhotosModuleOAuth2Scope[] = - "https://www.googleapis.com/auth/photos.firstparty.readonly"; + "trk:107:https://www.googleapis.com/auth/photos.firstparty.readonly"; // OAuth 2 scope for NTP Photos module image API. const char kPhotosModuleImageOAuth2Scope[] = - "https://www.googleapis.com/auth/photos.image.readonly"; + "trk:108:https://www.googleapis.com/auth/photos.image.readonly"; // OAuth 2 scope for the Discover feed. const char kFeedOAuth2Scope[] = "https://www.googleapis.com/auth/googlenow"; --- a/google_apis/gaia/gaia_urls.cc +++ b/google_apis/gaia/gaia_urls.cc @@ -25,6 +25,7 @@ namespace { // Gaia service constants +//adding trk: here currently crashes the program const char kDefaultGoogleUrl[] = "http://google.com"; const char kDefaultGaiaUrl[] = "https://accounts.google.com"; const char kDefaultGoogleApisBaseUrl[] = "https://www.googleapis.com"; --- a/google_apis/gcm/engine/gservices_settings.cc +++ b/google_apis/gcm/engine/gservices_settings.cc @@ -29,18 +29,18 @@ const char kRegistrationURLKey[] = "gcm_ const int64_t kDefaultCheckinInterval = 2 * 24 * 60 * 60; // seconds = 2 days. const int64_t kMinimumCheckinInterval = 12 * 60 * 60; // seconds = 12 hours. -const char kDefaultCheckinURL[] = "https://android.clients.google.com/checkin"; +const char kDefaultCheckinURL[] = "trk:110:https://android.clients.google.com/checkin"; const char kDefaultMCSHostname[] = "mtalk.google.com"; const int kDefaultMCSMainSecurePort = 5228; const int kDefaultMCSFallbackSecurePort = 443; const char kDefaultRegistrationURL[] = - "https://android.clients.google.com/c2dm/register3"; + "trk:111:https://android.clients.google.com/c2dm/register3"; // Settings that are to be deleted are marked with this prefix in checkin // response. const char kDeleteSettingPrefix[] = "delete_"; // Settings digest starts with verison number followed by '-'. const char kDigestVersionPrefix[] = "1-"; -const char kMCSEnpointTemplate[] = "https://%s:%d"; +const char kMCSEnpointTemplate[] = "trk:112:https://%s:%d"; const int kMaxSecurePort = 65535; std::string MakeMCSEndpoint(const std::string& mcs_hostname, int port) { --- a/remoting/protocol/jingle_message_xml_converter.cc +++ b/remoting/protocol/jingle_message_xml_converter.cc @@ -37,7 +37,7 @@ const jingle_xmpp::StaticQName kQNameRea const jingle_xmpp::StaticQName kQNameContent = {kJingleNamespace, "content"}; // Namespace for transport messages when using standard ICE. -const char kIceTransportNamespace[] = "google:remoting:ice"; +const char kIceTransportNamespace[] = "trk:100:google:remoting:ice"; const jingle_xmpp::StaticQName kQNameIceTransport = {kIceTransportNamespace, "transport"}; const jingle_xmpp::StaticQName kQNameIceCredentials = {kIceTransportNamespace, --- a/rlz/lib/lib_values.cc +++ b/rlz/lib/lib_values.cc @@ -45,7 +45,7 @@ const char kSetDccResponseVariable[] = " // const char kFinancialPingPath[] = "/tools/pso/ping"; -const char kFinancialServer[] = "clients1.google.com"; +const char kFinancialServer[] = "trk:443:clients1.google.com"; /* not using URLRequest! catch with cache.ir */ const int kFinancialPort = 443; // Ping times in 100-nanosecond intervals. --- a/ui/views/examples/webview_example.cc +++ b/ui/views/examples/webview_example.cc @@ -28,7 +28,7 @@ void WebViewExample::CreateExampleView(V webview_->GetWebContents()->SetDelegate(this); container->SetLayoutManager(std::make_unique()); - webview_->LoadInitialURL(GURL("http://www.google.com/")); + webview_->LoadInitialURL(GURL("trk:174:http://www.google.com/")); webview_->GetWebContents()->Focus(); } ================================================ FILE: patches/core/iridium-browser/safe_browsing-disable-incident-reporting.patch ================================================ From 4dfa8ed0814040317cb82d8545502186daa0a204 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 7 Jul 2015 17:02:09 +0200 Subject: [PATCH 62/76] safe_browsing: disable incident reporting Disables the safebrowsing incident reporting where you could upload information about a blocked URL to Google (also added a trk prefix to the URL so we get notified if this happens again in the future). --- .../incident_reporting/incident_report_uploader_impl.cc | 2 +- .../incident_reporting/incident_reporting_service.cc | 3 +++ chrome/browser/safe_browsing/safe_browsing_blocking_page.cc | 3 +-- chrome/browser/safe_browsing/safe_browsing_service.cc | 2 +- .../security_interstitials/core/safe_browsing_loud_error_ui.cc | 1 + 5 files changed, 7 insertions(+), 4 deletions(-) --- a/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc +++ b/chrome/browser/safe_browsing/chrome_safe_browsing_blocking_page_factory.cc @@ -63,8 +63,7 @@ ChromeSafeBrowsingBlockingPageFactory::C Profile::FromBrowserContext(web_contents->GetBrowserContext()); // Create appropriate display options for this blocking page. PrefService* prefs = profile->GetPrefs(); - bool is_extended_reporting_opt_in_allowed = - IsExtendedReportingOptInAllowed(*prefs); + bool is_extended_reporting_opt_in_allowed = false; bool is_proceed_anyway_disabled = IsSafeBrowsingProceedAnywayDisabled(*prefs); // Determine if any prefs need to be updated prior to showing the security --- a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc +++ b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc @@ -29,7 +29,7 @@ namespace safe_browsing { namespace { const char kSbIncidentReportUrl[] = - "https://sb-ssl.google.com/safebrowsing/clientreport/incident"; + "trk:268:https://sb-ssl.google.com/safebrowsing/clientreport/incident"; constexpr net::NetworkTrafficAnnotationTag kSafeBrowsingIncidentTrafficAnnotation = --- a/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service.cc +++ b/chrome/browser/safe_browsing/incident_reporting/incident_reporting_service.cc @@ -302,11 +302,14 @@ IncidentReportingService::UploadContext: // static bool IncidentReportingService::IsEnabledForProfile(Profile* profile) { + return false; +#if 0 if (profile->IsOffTheRecord()) return false; if (!IsSafeBrowsingEnabled(*profile->GetPrefs())) return false; return IsExtendedReportingEnabled(*profile->GetPrefs()); +#endif } IncidentReportingService::IncidentReportingService( --- a/chrome/browser/safe_browsing/safe_browsing_service.cc +++ b/chrome/browser/safe_browsing/safe_browsing_service.cc @@ -498,7 +498,7 @@ SafeBrowsingUIManager* SafeBrowsingServi } void SafeBrowsingServiceImpl::RegisterAllDelayedAnalysis() { -#if BUILDFLAG(FULL_SAFE_BROWSING) +#if 0 RegisterBinaryIntegrityAnalysis(); #endif } --- a/components/security_interstitials/core/safe_browsing_loud_error_ui.cc +++ b/components/security_interstitials/core/safe_browsing_loud_error_ui.cc @@ -27,11 +27,11 @@ namespace { // For malware interstitial pages, we link the problematic URL to Google's // diagnostic page. const char kSbDiagnosticUrl[] = - "https://transparencyreport.google.com/safe-browsing/search?url=%s"; + "trk:227:https://transparencyreport.google.com/safe-browsing/search?url=%s"; // Constants for the V4 phishing string upgrades. const char kReportPhishingErrorUrl[] = - "https://safebrowsing.google.com/safebrowsing/report_error/?url=%s"; + "trk:228:https://safebrowsing.google.com/safebrowsing/report_error/?url=%s"; void RecordExtendedReportingPrefChanged(bool report) { UMA_HISTOGRAM_BOOLEAN("SafeBrowsing.Pref.Extended.SecurityInterstitial", ================================================ FILE: patches/core/iridium-browser/safe_browsing-disable-reporting-of-safebrowsing-over.patch ================================================ From c89ce946e5328ca8a7df923d421e904bb6bfe9b6 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Tue, 7 Jul 2015 18:28:46 +0200 Subject: [PATCH 63/76] safe_browsing: disable reporting of safebrowsing override Disables reporting of the safebrowsing override, i.e. the report sent if a user decides to visit a page that was flagged as "insecure". This prevents trk:148 (phishing) and trk:149 (malware). --- components/safe_browsing/content/browser/client_side_detection_service.cc | 5 +++++ 1 file changed, 5 insertions(+) --- a/components/safe_browsing/content/browser/client_side_detection_service.cc +++ b/components/safe_browsing/content/browser/client_side_detection_service.cc @@ -282,6 +282,10 @@ void ClientSideDetectionService::StartCl return; } +#if 1 + if (!callback.is_null()) + std::move(callback).Run(GURL(request->url()), false, std::nullopt, std::nullopt); +#else std::string request_data; request->SerializeToString(&request_data); @@ -364,6 +368,7 @@ void ClientSideDetectionService::StartCl &WebUIContentInfoSingleton::AddToClientPhishingRequestsSent, base::Unretained(WebUIContentInfoSingleton::GetInstance()), std::move(request), access_token)); +#endif } void ClientSideDetectionService::HandlePhishingVerdict( ================================================ FILE: patches/core/ungoogled-chromium/block-requests.patch ================================================ ## Prevent request attempts # chrome://discards/ attempts to use d3 to display the graph # New tab page tries to download background images # New tab page attempts to download the 'One Google' bar # New tab page attempts to load promos # Password manager attempts to get credential affiliation # Attempts to check for updates even with autoupdate disabled # Dev tools attempts to download css data --- a/chrome/browser/new_tab_page/one_google_bar/one_google_bar_loader_impl.cc +++ b/chrome/browser/new_tab_page/one_google_bar/one_google_bar_loader_impl.cc @@ -300,6 +300,7 @@ OneGoogleBarLoaderImpl::OneGoogleBarLoad OneGoogleBarLoaderImpl::~OneGoogleBarLoaderImpl() = default; void OneGoogleBarLoaderImpl::Load(OneGoogleCallback callback) { + return; callbacks_.push_back(std::move(callback)); // Note: If there is an ongoing request, abandon it. It's possible that --- a/chrome/browser/new_tab_page/promos/promo_service.cc +++ b/chrome/browser/new_tab_page/promos/promo_service.cc @@ -172,6 +172,7 @@ PromoService::PromoService( PromoService::~PromoService() = default; void PromoService::Refresh() { + if ((true)) return; std::string command_id; // Replace the promo URL with "command:" if such a command ID is set // via the feature params. --- a/chrome/browser/profile_resetter/profile_resetter.cc +++ b/chrome/browser/profile_resetter/profile_resetter.cc @@ -101,17 +101,6 @@ ProfileResetter::ProfileResetter(Profile cookies_remover_(nullptr) { DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); DCHECK(profile_); - - google_brand::GetBrand(&brandcode_); - if (brandcode_.empty()) { - return; - } - config_fetcher_ = std::make_unique( - g_browser_process->system_network_context_manager() - ->GetURLLoaderFactory(), - base::BindOnce(&ProfileResetter::OnDefaultSettingsFetched, - base::Unretained(this)), - GURL("https://tools.google.com/service/update2"), brandcode_); } void ProfileResetter::OnDefaultSettingsFetched() { --- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc +++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.cc @@ -285,6 +285,7 @@ GURL SpellcheckHunspellDictionary::GetDi } void SpellcheckHunspellDictionary::DownloadDictionary(GURL url) { + return; DCHECK_CURRENTLY_ON(BrowserThread::UI); DCHECK(browser_context_); --- a/components/affiliations/core/browser/hash_affiliation_fetcher.cc +++ b/components/affiliations/core/browser/hash_affiliation_fetcher.cc @@ -127,6 +127,10 @@ HashAffiliationFetcher::~HashAffiliation } void HashAffiliationFetcher::StartRequest( + const std::vector& a, RequestInfo b, + base::OnceCallback c) {} +[[maybe_unused]] +void HashAffiliationFetcher::DeadStartRequest( const std::vector& facet_uris, RequestInfo request_info, base::OnceCallback result_callback) { --- a/components/affiliations/core/browser/hash_affiliation_fetcher.h +++ b/components/affiliations/core/browser/hash_affiliation_fetcher.h @@ -41,6 +41,8 @@ class HashAffiliationFetcher : public Af const std::vector& facet_uris, RequestInfo request_info, base::OnceCallback result_callback) override; + void DeadStartRequest(const std::vector& a, RequestInfo b, + base::OnceCallback c); const std::vector& GetRequestedFacetURIs() const override; // Builds the URL for the Affiliation API's lookup method. --- a/components/assist_ranker/ranker_url_fetcher.cc +++ b/components/assist_ranker/ranker_url_fetcher.cc @@ -35,6 +35,7 @@ bool RankerURLFetcher::Request( const GURL& url, RankerURLFetcher::Callback callback, network::mojom::URLLoaderFactory* url_loader_factory) { + return false; // This function is not supposed to be called if the previous operation is not // finished. if (state_ == REQUESTING) { --- a/components/themes/ntp_background_service.cc +++ b/components/themes/ntp_background_service.cc @@ -92,9 +92,7 @@ void NtpBackgroundService::Shutdown() { void NtpBackgroundService::FetchCollectionInfo( const std::string& filtering_label) { // If a request is currently in progress, drop the new request. - if (collections_loader_ != nullptr) { return; - } collection_error_info_.ClearError(); net::NetworkTrafficAnnotationTag traffic_annotation = --- a/components/update_client/update_checker.cc +++ b/components/update_client/update_checker.cc @@ -104,6 +104,7 @@ void UpdateCheckerImpl::CheckForUpdates( scoped_refptr context, const base::flat_map& additional_attributes, UpdateCheckCallback update_check_callback) { + return; DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker_); update_check_callback_ = std::move(update_check_callback); --- a/third_party/devtools-frontend/src/front_end/panels/elements/WebCustomData.ts +++ b/third_party/devtools-frontend/src/front_end/panels/elements/WebCustomData.ts @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -import * as Root from '../../core/root/root.js'; /** * Lazily loads the vscode.web-custom-data/browser.css-data.json and allows @@ -15,33 +14,14 @@ import * as Root from '../../core/root/r export class WebCustomData { #data = new Map(); - /** The test actually needs to wait for the result */ - readonly fetchPromiseForTest: Promise; - - constructor(remoteBase: string) { - if (!remoteBase) { - this.fetchPromiseForTest = Promise.resolve(); - return; - } - this.fetchPromiseForTest = fetch(`${remoteBase}third_party/vscode.web-custom-data/browsers.css-data.json`) - .then(response => response.json()) - .then((json: CSSBrowserData) => { - for (const property of json.properties) { - this.#data.set(property.name, property); - } - }) - .catch(); - } - /** * Creates a fresh `WebCustomData` instance using the standard * DevTools remote base. * Throws if no valid remoteBase was found. */ static create(): WebCustomData { - const remoteBase = Root.Runtime.getRemoteBase(); // Silently skip loading of the CSS data if remoteBase is not set properly. - return new WebCustomData(remoteBase?.base ?? ''); + return new WebCustomData(); } /** @@ -54,9 +34,6 @@ export class WebCustomData { } } -interface CSSBrowserData { - properties: CSSProperty[]; -} export interface CSSProperty { name: string; ================================================ FILE: patches/core/ungoogled-chromium/block-trk-and-subdomains.patch ================================================ # Block all connection requests with 'qjz9zk' in the domain name or with a 'trk:' scheme. # This patch is based on Iridium's 'net: add "trk:" scheme and help identify URLs being retrieved' --- a/chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.cc +++ b/chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.cc @@ -71,6 +71,7 @@ ChromeAutocompleteSchemeClassifier::GetI if (base::IsStringASCII(scheme) && (ProfileIOData::IsHandledProtocol(scheme) || base::EqualsCaseInsensitiveASCII(scheme, content::kViewSourceScheme) || + base::EqualsCaseInsensitiveASCII(scheme, url::kTraceScheme) || base::EqualsCaseInsensitiveASCII(scheme, url::kJavaScriptScheme) || base::EqualsCaseInsensitiveASCII(scheme, url::kDataScheme))) { return metrics::OmniboxInputType::URL; --- a/chrome/browser/history/history_utils.cc +++ b/chrome/browser/history/history_utils.cc @@ -22,6 +22,7 @@ bool CanAddURLToHistory(const GURL& url) url.SchemeIs(content::kChromeUIScheme) || url.SchemeIs(content::kChromeUIUntrustedScheme) || url.SchemeIs(content::kViewSourceScheme) || + url.SchemeIs(url::kTraceScheme) || url.SchemeIs(chrome::kChromeNativeScheme) || url.SchemeIs(chrome::kChromeSearchScheme) || url.SchemeIs(dom_distiller::kDomDistillerScheme)) --- a/chrome/browser/ui/singleton_tabs.cc +++ b/chrome/browser/ui/singleton_tabs.cc @@ -140,7 +140,8 @@ int GetIndexOfExistingTab(BrowserWindowI // RewriteURLIfNecessary removes the "view-source:" scheme which could lead // to incorrect matching, so ensure that the target and the candidate are // either both view-source:, or neither is. - if (tab_url.SchemeIs(content::kViewSourceScheme) != target_is_view_source) { + if (tab_url.SchemeIs(content::kViewSourceScheme) != target_is_view_source || + tab_url.SchemeIs(url::kTraceScheme)) { continue; } --- a/components/omnibox/browser/autocomplete_input.cc +++ b/components/omnibox/browser/autocomplete_input.cc @@ -579,7 +579,8 @@ void AutocompleteInput::ParseForEmphasiz // For the view-source and blob schemes, we should emphasize the host of the // URL qualified by the view-source or blob prefix. if ((base::EqualsCaseInsensitiveASCII(scheme_str, kViewSourceScheme) || - base::EqualsCaseInsensitiveASCII(scheme_str, url::kBlobScheme)) && + base::EqualsCaseInsensitiveASCII(scheme_str, url::kBlobScheme) || + base::EqualsCaseInsensitiveASCII(scheme_str, url::kTraceScheme)) && (static_cast(text.length()) > after_scheme_and_colon)) { // Obtain the URL prefixed by view-source or blob and parse it. std::u16string real_url(text.substr(after_scheme_and_colon)); --- a/components/url_formatter/url_fixer.cc +++ b/components/url_formatter/url_fixer.cc @@ -597,6 +597,10 @@ GURL FixupURLInternal(const std::string& } } + if (scheme == url::kTraceScheme) { + return GURL(); + } + // We handle the file scheme separately. if (scheme == url::kFileScheme) { return GURL(parts.scheme.is_valid() ? text : FixupPath(text)); --- a/content/browser/child_process_security_policy_impl.cc +++ b/content/browser/child_process_security_policy_impl.cc @@ -1032,6 +1032,7 @@ ChildProcessSecurityPolicyImpl::ChildPro RegisterWebSafeScheme(url::kWssScheme); #endif // BUILDFLAG(ENABLE_WEBSOCKETS) RegisterWebSafeScheme(url::kDataScheme); + RegisterWebSafeScheme(url::kTraceScheme); // TODO(nick): https://crbug.com/651534 blob: and filesystem: schemes embed // other origins, so we should not treat them as web safe. Remove callers of --- a/net/BUILD.gn +++ b/net/BUILD.gn @@ -1160,6 +1160,8 @@ component("net") { "url_request/static_http_user_agent_settings.cc", "url_request/static_http_user_agent_settings.h", "url_request/storage_access_status_cache.h", + "url_request/trk_protocol_handler.cc", + "url_request/trk_protocol_handler.h", "url_request/url_request.cc", "url_request/url_request.h", "url_request/url_request_context.cc", --- /dev/null +++ b/net/url_request/trk_protocol_handler.cc @@ -0,0 +1,25 @@ +// Copyright (c) 2018 The ungoogled-chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "net/url_request/trk_protocol_handler.h" + +#include "base/logging.h" +#include "net/base/net_errors.h" +#include "net/url_request/url_request_error_job.h" + +namespace net { + +TrkProtocolHandler::TrkProtocolHandler() = default; + +std::unique_ptr TrkProtocolHandler::CreateJob( + URLRequest* request) const { + LOG(ERROR) << "Blocked URL in TrkProtocolHandler: " << request->original_url(); + return std::make_unique(request, ERR_BLOCKED_BY_CLIENT); +} + +bool TrkProtocolHandler::IsSafeRedirectTarget(const GURL& location) const { + return true; +} + +} // namespace net --- /dev/null +++ b/net/url_request/trk_protocol_handler.h @@ -0,0 +1,30 @@ +// Copyright (c) 2018 The ungoogled-chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef NET_URL_REQUEST_TRK_PROTOCOL_HANDLER_H_ +#define NET_URL_REQUEST_TRK_PROTOCOL_HANDLER_H_ + +#include "base/compiler_specific.h" +#include "net/base/net_export.h" +#include "net/url_request/url_request_job_factory.h" + +namespace net { + +class URLRequestJob; + +// Implements a ProtocolHandler for Trk jobs. +class NET_EXPORT TrkProtocolHandler + : public URLRequestJobFactory::ProtocolHandler { + public: + TrkProtocolHandler(); + TrkProtocolHandler(const TrkProtocolHandler&) = delete; + TrkProtocolHandler& operator=(const TrkProtocolHandler&) = delete; + std::unique_ptr CreateJob( + URLRequest* request) const override; + bool IsSafeRedirectTarget(const GURL& location) const override; +}; + +} // namespace net + +#endif // NET_URL_REQUEST_TRK_PROTOCOL_HANDLER_H_ --- a/net/url_request/url_request.cc +++ b/net/url_request/url_request.cc @@ -14,6 +14,7 @@ #include "base/metrics/histogram_macros.h" #include "base/notreached.h" #include "base/rand_util.h" +#include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "base/synchronization/lock.h" #include "base/task/single_thread_task_runner.h" @@ -55,6 +56,7 @@ #include "net/url_request/url_request_redirect_job.h" #include "url/gurl.h" #include "url/origin.h" +#include "url/url_constants.h" namespace net { @@ -648,6 +650,12 @@ URLRequest::URLRequest(base::PassKeyurl_requests()->insert(this); net_log_.BeginEvent(NetLogEventType::REQUEST_ALIVE, [&](NetLogCaptureMode capture_mode) { --- a/net/url_request/url_request_context_builder.cc +++ b/net/url_request/url_request_context_builder.cc @@ -55,6 +55,7 @@ #include "net/socket/network_binding_client_socket_factory.h" #include "net/ssl/ssl_config_service_defaults.h" #include "net/url_request/static_http_user_agent_settings.h" +#include "net/url_request/trk_protocol_handler.h" #include "net/url_request/url_request_context.h" #include "net/url_request/url_request_job_factory.h" #include "url/url_constants.h" @@ -626,6 +627,8 @@ std::unique_ptr URLRe std::move(scheme_handler.second)); } protocol_handlers_.clear(); + job_factory->SetProtocolHandler(url::kTraceScheme, + std::make_unique()); context->set_job_factory(std::move(job_factory)); return context; } --- a/url/url_constants.h +++ b/url/url_constants.h @@ -50,6 +50,8 @@ inline constexpr char kMaterializedViewS inline constexpr char kSteamScheme[] = "steam"; inline constexpr char kTelScheme[] = "tel"; inline constexpr char16_t kTelScheme16[] = u"tel"; +inline constexpr char kTraceScheme[] = "trk"; +inline constexpr char16_t kTraceScheme16[] = u"trk"; inline constexpr char kUrnScheme[] = "urn"; inline constexpr char16_t kUrnScheme16[] = u"urn"; inline constexpr char kUuidInPackageScheme[] = "uuid-in-package"; --- a/url/url_util.cc +++ b/url/url_util.cc @@ -80,6 +80,7 @@ struct SchemeRegistry { kWssScheme, kDataScheme, kAboutScheme, + kTraceScheme, }; // Schemes that normal pages cannot link to or access (i.e., with the same @@ -94,6 +95,7 @@ struct SchemeRegistry { kAboutScheme, kJavaScriptScheme, kDataScheme, + kTraceScheme, }; // Schemes that can be sent CORS requests. ================================================ FILE: patches/core/ungoogled-chromium/build-with-wasm-rollup.patch ================================================ --- a/third_party/devtools-frontend/src/front_end/Images/BUILD.gn +++ b/third_party/devtools-frontend/src/front_end/Images/BUILD.gn @@ -28,7 +28,7 @@ node_action("generate_css_vars") { } node_action("optimize_images") { - script = "node_modules/rollup/dist/bin/rollup" + script = "../../node/node_modules/@rollup/wasm-node/dist/bin/rollup" _bundled_entrypoint = target_gen_dir + "/Images.prebundle.js" _output_file_location = target_gen_dir + "/Images.js" --- a/third_party/devtools-frontend/src/front_end/models/live-metrics/web-vitals-injected/BUILD.gn +++ b/third_party/devtools-frontend/src/front_end/models/live-metrics/web-vitals-injected/BUILD.gn @@ -26,7 +26,7 @@ devtools_module("web-vitals-injected") { } node_action("bundled_library") { - script = "node_modules/rollup/dist/bin/rollup" + script = "../../node/node_modules/@rollup/wasm-node/dist/bin/rollup" _bundled_entrypoint = target_gen_dir + "/web-vitals-injected.js" _output_file_location = target_gen_dir + "/web-vitals-injected.generated.js" --- a/third_party/devtools-frontend/src/front_end/panels/recorder/injected/BUILD.gn +++ b/third_party/devtools-frontend/src/front_end/panels/recorder/injected/BUILD.gn @@ -55,7 +55,7 @@ devtools_entrypoint("bundle") { } node_action("bundled_library") { - script = "node_modules/rollup/dist/bin/rollup" + script = "../../node/node_modules/@rollup/wasm-node/dist/bin/rollup" _bundled_entrypoint = target_gen_dir + "/injected.js" _output_file_location = target_gen_dir + "/injected.generated.js" --- a/third_party/devtools-frontend/src/inspector_overlay/BUILD.gn +++ b/third_party/devtools-frontend/src/inspector_overlay/BUILD.gn @@ -36,7 +36,7 @@ action("build_inspector_overlay") { "$target_gen_dir/tool_window_controls.css", "$target_gen_dir/main.js", devtools_location_prepend + "inspector_overlay/loadCSS.rollup.js", - devtools_location_prepend + "node_modules/rollup/dist/bin/rollup", + devtools_location_prepend + "../../node/node_modules/@rollup/wasm-node/dist/bin/rollup", ] outputs = [ "$resources_out_dir/main.js" ] --- a/third_party/devtools-frontend/src/scripts/build/build_inspector_overlay.py +++ b/third_party/devtools-frontend/src/scripts/build/build_inspector_overlay.py @@ -56,7 +56,7 @@ def rollup(input_path, output_path, file [devtools_paths.node_path(), devtools_paths.rollup_path()] + ['--format', 'iife', '-n', 'InspectorOverlay'] + ['--input', target] + - ['--plugin', rollup_plugin, '--plugin', 'terser'], + ['--plugin', rollup_plugin, '--plugin', path.join(devtools_paths.node_modules_path(), '@rollup', 'plugin-terser', 'dist', 'cjs', 'index.js')], stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True, --- a/third_party/devtools-frontend/src/scripts/build/ninja/bundle.gni +++ b/third_party/devtools-frontend/src/scripts/build/ninja/bundle.gni @@ -11,7 +11,7 @@ template("bundle") { "You must define the 'entrypoint' for a bundle target") node_action(target_name) { - script = "scripts/build/esbuild.js" + script = "../../node/node_modules/@rollup/wasm-node/dist/bin/rollup" forward_variables_from(invoker, [ "visibility", @@ -21,27 +21,23 @@ template("bundle") { inputs = [ invoker.entrypoint, + devtools_location_prepend + "scripts/build/rollup.config.mjs", devtools_location_prepend + "scripts/build/devtools_plugin.js", devtools_location_prepend + "scripts/devtools_paths.js", ] - _esbuild = devtools_location_prepend + "third_party/esbuild/esbuild" - if (host_os == "win") { - inputs += [ _esbuild + ".exe" ] - } else { - inputs += [ _esbuild ] - } - args = [ + "--config", + rebase_path( + devtools_location_prepend + "scripts/build/rollup.config.mjs", + root_build_dir), + "--input", rebase_path(invoker.entrypoint, root_build_dir), + "--file", rebase_path(invoker.output_file_location, root_build_dir), "--configSourcemaps", ] - if (!is_debug) { - args += [ "--minify" ] - } - outputs = [ invoker.output_file_location ] } } --- a/third_party/devtools-frontend/src/scripts/devtools_paths.py +++ b/third_party/devtools-frontend/src/scripts/devtools_paths.py @@ -64,8 +64,11 @@ def license_checker_path(): def rollup_path(): return path.join( - node_modules_path(), - 'rollup', + third_party_path(), + 'node', + 'node_modules', + '@rollup', + 'wasm-node', 'dist', 'bin', 'rollup', ================================================ FILE: patches/core/ungoogled-chromium/disable-crash-reporter.patch ================================================ # Disable some background communication with clients2.google.com --- a/components/crash/core/app/crash_reporter_client.cc +++ b/components/crash/core/app/crash_reporter_client.cc @@ -146,7 +146,7 @@ void CrashReporterClient::GetSanitizatio #endif std::string CrashReporterClient::GetUploadUrl() { -#if BUILDFLAG(GOOGLE_CHROME_BRANDING) && defined(OFFICIAL_BUILD) +#if 0 return kDefaultUploadURL; #else return std::string(); --- a/components/crash/core/app/crashpad.cc +++ b/components/crash/core/app/crashpad.cc @@ -73,6 +73,13 @@ bool InitializeCrashpadImpl(bool initial const std::vector& initial_arguments, bool embedded_handler, const std::vector& attachments) { +// Crashpad is needed on Linux because it's used as a WASM signal handler. +// This is not the case on other platforms, and so it can remain entirely +// disabled there. +#if !BUILDFLAG(IS_LINUX) + return false; +#endif + static bool initialized = false; DCHECK(!initialized); initialized = true; --- a/third_party/crashpad/crashpad/handler/handler_main.cc +++ b/third_party/crashpad/crashpad/handler/handler_main.cc @@ -876,7 +876,7 @@ int HandlerMain(int argc, #endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || // BUILDFLAG(IS_ANDROID) case kOptionURL: { - options.url = optarg; + options.url = ""; break; } #if BUILDFLAG(IS_CHROMEOS) @@ -1017,7 +1017,7 @@ int HandlerMain(int argc, } ScopedStoppable upload_thread; - if (!options.url.empty()) { + if ((false)) { // TODO(scottmg): options.rate_limit should be removed when we have a // configurable database setting to control upload limiting. // See https://crashpad.chromium.org/bug/23. ================================================ FILE: patches/core/ungoogled-chromium/disable-domain-reliability.patch ================================================ ## Disable domain reliability component # Many of these changes are for thoroughness, # the most significant changes are in service_factory.cc and uploader.cc --- a/chrome/browser/domain_reliability/service_factory.cc +++ b/chrome/browser/domain_reliability/service_factory.cc @@ -14,40 +14,10 @@ namespace domain_reliability { -namespace { - -// If Domain Reliability is enabled in the absence of a flag or field trial. -const bool kDefaultEnabled = true; - -// The name and value of the field trial to turn Domain Reliability on. -const char kFieldTrialName[] = "DomRel-Enable"; -const char kFieldTrialValueEnable[] = "enable"; - -bool IsDomainReliabilityAllowed() { - return g_browser_process->local_state()->GetBoolean( - prefs::kDomainReliabilityAllowedByPolicy); -} - -} // namespace - const char kUploadReporterString[] = "chrome"; bool ShouldCreateService() { - base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); - if (command_line->HasSwitch(switches::kDisableDomainReliability)) - return false; - if (command_line->HasSwitch(switches::kEnableDomainReliability)) - return true; - if (!IsDomainReliabilityAllowed()) { - return false; - } - if (!ChromeMetricsServiceAccessor::IsMetricsAndCrashReportingEnabled()) - return false; - if (base::FieldTrialList::TrialExists(kFieldTrialName)) { - std::string value = base::FieldTrialList::FindFullName(kFieldTrialName); - return (value == kFieldTrialValueEnable); - } - return kDefaultEnabled; + return false; } } // namespace domain_reliability --- a/components/domain_reliability/BUILD.gn +++ b/components/domain_reliability/BUILD.gn @@ -7,26 +7,6 @@ action("bake_in_configs") { script = "bake_in_configs.py" inputs = [ - "baked_in_configs/c_android_clients_google_com.json", - "baked_in_configs/c_bigcache_googleapis_com.json", - "baked_in_configs/c_doc-0-0-sj_sj_googleusercontent_com.json", - "baked_in_configs/c_docs_google_com.json", - "baked_in_configs/c_drive_google_com.json", - "baked_in_configs/c_googlesyndication_com.json", - "baked_in_configs/c_pack_google_com.json", - "baked_in_configs/c_play_google_com.json", - "baked_in_configs/c_youtube_com.json", - "baked_in_configs/clients2_google_com.json", - "baked_in_configs/docs_google_com.json", - "baked_in_configs/gcp_gvt2_com.json", - "baked_in_configs/gcp_gvt6_com.json", - "baked_in_configs/google-analytics_com.json", - "baked_in_configs/googlevideo_com.json", - "baked_in_configs/gvt1_com.json", - "baked_in_configs/gvt2_com.json", - "baked_in_configs/gvt6_com.json", - "baked_in_configs/ssl_gstatic_com.json", - "baked_in_configs/www_google_com.json", ] output_file = "$target_gen_dir/baked_in_configs.cc" @@ -34,13 +14,21 @@ action("bake_in_configs") { # The JSON file list is too long for the command line on Windows, so put # them in a response file. - response_file_contents = rebase_path(inputs, root_build_dir) - args = [ - "--file-list", - "{{response_file_name}}", - "--output", - rebase_path(output_file, root_build_dir), - ] + if (host_os == "win") { + args = [ + "--file-list", + "nul", + "--output", + rebase_path(output_file, root_build_dir), + ] + } else { + args = [ + "--file-list", + "/dev/null", + "--output", + rebase_path(output_file, root_build_dir), + ] + } } component("domain_reliability") { --- a/components/domain_reliability/bake_in_configs.py +++ b/components/domain_reliability/bake_in_configs.py @@ -490,7 +490,7 @@ def origin_is_whitelisted(origin): domain = origin[8:-1] else: return False - return any(domain == e or domain.endswith('.' + e) for e in DOMAIN_WHITELIST) + return False def quote_and_wrap_text(text, width=79, prefix=' "', suffix='"'): --- a/components/domain_reliability/google_configs.cc +++ b/components/domain_reliability/google_configs.cc @@ -13,569 +13,8 @@ namespace domain_reliability { -namespace { - -struct GoogleConfigParams { - bool include_subdomains; - - // If true, prepend a collector URL within https://|hostname|/. - bool include_origin_specific_collector; - - // If true, also add a config for www.|hostname|. - // - // |include_subdomains| will be false in the extra config, but - // |include_origin_specific_collector| will be respected, and will use the - // www subdomain as the origin for the collector so it matches the config. - bool duplicate_for_www; -}; - -const auto kGoogleConfigs = base::MakeFixedFlatMap({ - // Origins with subdomains and same-origin collectors. Currently, all - // origins with same-origin collectors also run collectors on their www - // subdomain. (e.g., both foo.com and www.foo.com.) - {"google.ac", {true, true, true}}, - {"google.ad", {true, true, true}}, - {"google.ae", {true, true, true}}, - {"google.af", {true, true, true}}, - {"google.ag", {true, true, true}}, - {"google.al", {true, true, true}}, - {"google.am", {true, true, true}}, - {"google.as", {true, true, true}}, - {"google.at", {true, true, true}}, - {"google.az", {true, true, true}}, - {"google.ba", {true, true, true}}, - {"google.be", {true, true, true}}, - {"google.bf", {true, true, true}}, - {"google.bg", {true, true, true}}, - {"google.bi", {true, true, true}}, - {"google.bj", {true, true, true}}, - {"google.bs", {true, true, true}}, - {"google.bt", {true, true, true}}, - {"google.by", {true, true, true}}, - {"google.ca", {true, true, true}}, - {"google.cc", {true, true, true}}, - {"google.cd", {true, true, true}}, - {"google.cf", {true, true, true}}, - {"google.cg", {true, true, true}}, - {"google.ch", {true, true, true}}, - {"google.ci", {true, true, true}}, - {"google.cl", {true, true, true}}, - {"google.cm", {true, true, true}}, - {"google.cn", {true, true, true}}, - {"google.co.ao", {true, true, true}}, - {"google.co.bw", {true, true, true}}, - {"google.co.ck", {true, true, true}}, - {"google.co.cr", {true, true, true}}, - {"google.co.hu", {true, true, true}}, - {"google.co.id", {true, true, true}}, - {"google.co.il", {true, true, true}}, - {"google.co.im", {true, true, true}}, - {"google.co.in", {true, true, true}}, - {"google.co.je", {true, true, true}}, - {"google.co.jp", {true, true, true}}, - {"google.co.ke", {true, true, true}}, - {"google.co.kr", {true, true, true}}, - {"google.co.ls", {true, true, true}}, - {"google.co.ma", {true, true, true}}, - {"google.co.mz", {true, true, true}}, - {"google.co.nz", {true, true, true}}, - {"google.co.th", {true, true, true}}, - {"google.co.tz", {true, true, true}}, - {"google.co.ug", {true, true, true}}, - {"google.co.uk", {true, true, true}}, - {"google.co.uz", {true, true, true}}, - {"google.co.ve", {true, true, true}}, - {"google.co.vi", {true, true, true}}, - {"google.co.za", {true, true, true}}, - {"google.co.zm", {true, true, true}}, - {"google.co.zw", {true, true, true}}, - {"google.com.af", {true, true, true}}, - {"google.com.ag", {true, true, true}}, - {"google.com.ai", {true, true, true}}, - {"google.com.ar", {true, true, true}}, - {"google.com.au", {true, true, true}}, - {"google.com.bd", {true, true, true}}, - {"google.com.bh", {true, true, true}}, - {"google.com.bn", {true, true, true}}, - {"google.com.bo", {true, true, true}}, - {"google.com.br", {true, true, true}}, - {"google.com.by", {true, true, true}}, - {"google.com.bz", {true, true, true}}, - {"google.com.cn", {true, true, true}}, - {"google.com.co", {true, true, true}}, - {"google.com.cu", {true, true, true}}, - {"google.com.cy", {true, true, true}}, - {"google.com.do", {true, true, true}}, - {"google.com.ec", {true, true, true}}, - {"google.com.eg", {true, true, true}}, - {"google.com.et", {true, true, true}}, - {"google.com.fj", {true, true, true}}, - {"google.com.ge", {true, true, true}}, - {"google.com.gh", {true, true, true}}, - {"google.com.gi", {true, true, true}}, - {"google.com.gr", {true, true, true}}, - {"google.com.gt", {true, true, true}}, - {"google.com.hk", {true, true, true}}, - {"google.com.iq", {true, true, true}}, - {"google.com.jm", {true, true, true}}, - {"google.com.jo", {true, true, true}}, - {"google.com.kh", {true, true, true}}, - {"google.com.kw", {true, true, true}}, - {"google.com.lb", {true, true, true}}, - {"google.com.ly", {true, true, true}}, - {"google.com.mm", {true, true, true}}, - {"google.com.mt", {true, true, true}}, - {"google.com.mx", {true, true, true}}, - {"google.com.my", {true, true, true}}, - {"google.com.na", {true, true, true}}, - {"google.com.nf", {true, true, true}}, - {"google.com.ng", {true, true, true}}, - {"google.com.ni", {true, true, true}}, - {"google.com.np", {true, true, true}}, - {"google.com.nr", {true, true, true}}, - {"google.com.om", {true, true, true}}, - {"google.com.pa", {true, true, true}}, - {"google.com.pe", {true, true, true}}, - {"google.com.pg", {true, true, true}}, - {"google.com.ph", {true, true, true}}, - {"google.com.pk", {true, true, true}}, - {"google.com.pl", {true, true, true}}, - {"google.com.pr", {true, true, true}}, - {"google.com.py", {true, true, true}}, - {"google.com.qa", {true, true, true}}, - {"google.com.ru", {true, true, true}}, - {"google.com.sa", {true, true, true}}, - {"google.com.sb", {true, true, true}}, - {"google.com.sg", {true, true, true}}, - {"google.com.sl", {true, true, true}}, - {"google.com.sv", {true, true, true}}, - {"google.com.tj", {true, true, true}}, - {"google.com.tn", {true, true, true}}, - {"google.com.tr", {true, true, true}}, - {"google.com.tw", {true, true, true}}, - {"google.com.ua", {true, true, true}}, - {"google.com.uy", {true, true, true}}, - {"google.com.vc", {true, true, true}}, - {"google.com.ve", {true, true, true}}, - {"google.com.vn", {true, true, true}}, - {"google.cv", {true, true, true}}, - {"google.cz", {true, true, true}}, - {"google.de", {true, true, true}}, - {"google.dj", {true, true, true}}, - {"google.dk", {true, true, true}}, - {"google.dm", {true, true, true}}, - {"google.dz", {true, true, true}}, - {"google.ee", {true, true, true}}, - {"google.es", {true, true, true}}, - {"google.fi", {true, true, true}}, - {"google.fm", {true, true, true}}, - {"google.fr", {true, true, true}}, - {"google.ga", {true, true, true}}, - {"google.ge", {true, true, true}}, - {"google.gg", {true, true, true}}, - {"google.gl", {true, true, true}}, - {"google.gm", {true, true, true}}, - {"google.gp", {true, true, true}}, - {"google.gr", {true, true, true}}, - {"google.gy", {true, true, true}}, - {"google.hk", {true, true, true}}, - {"google.hn", {true, true, true}}, - {"google.hr", {true, true, true}}, - {"google.ht", {true, true, true}}, - {"google.hu", {true, true, true}}, - {"google.ie", {true, true, true}}, - {"google.im", {true, true, true}}, - {"google.iq", {true, true, true}}, - {"google.ir", {true, true, true}}, - {"google.is", {true, true, true}}, - {"google.it", {true, true, true}}, - {"google.it.ao", {true, true, true}}, - {"google.je", {true, true, true}}, - {"google.jo", {true, true, true}}, - {"google.jp", {true, true, true}}, - {"google.kg", {true, true, true}}, - {"google.ki", {true, true, true}}, - {"google.kz", {true, true, true}}, - {"google.la", {true, true, true}}, - {"google.li", {true, true, true}}, - {"google.lk", {true, true, true}}, - {"google.lt", {true, true, true}}, - {"google.lu", {true, true, true}}, - {"google.lv", {true, true, true}}, - {"google.md", {true, true, true}}, - {"google.me", {true, true, true}}, - {"google.mg", {true, true, true}}, - {"google.mk", {true, true, true}}, - {"google.ml", {true, true, true}}, - {"google.mn", {true, true, true}}, - {"google.ms", {true, true, true}}, - {"google.mu", {true, true, true}}, - {"google.mv", {true, true, true}}, - {"google.mw", {true, true, true}}, - {"google.ne", {true, true, true}}, - {"google.ne.jp", {true, true, true}}, - {"google.ng", {true, true, true}}, - {"google.nl", {true, true, true}}, - {"google.no", {true, true, true}}, - {"google.nr", {true, true, true}}, - {"google.nu", {true, true, true}}, - {"google.off.ai", {true, true, true}}, - {"google.pk", {true, true, true}}, - {"google.pl", {true, true, true}}, - {"google.pn", {true, true, true}}, - {"google.ps", {true, true, true}}, - {"google.pt", {true, true, true}}, - {"google.ro", {true, true, true}}, - {"google.rs", {true, true, true}}, - {"google.ru", {true, true, true}}, - {"google.rw", {true, true, true}}, - {"google.sc", {true, true, true}}, - {"google.se", {true, true, true}}, - {"google.sh", {true, true, true}}, - {"google.si", {true, true, true}}, - {"google.sk", {true, true, true}}, - {"google.sm", {true, true, true}}, - {"google.sn", {true, true, true}}, - {"google.so", {true, true, true}}, - {"google.sr", {true, true, true}}, - {"google.st", {true, true, true}}, - {"google.td", {true, true, true}}, - {"google.tg", {true, true, true}}, - {"google.tk", {true, true, true}}, - {"google.tl", {true, true, true}}, - {"google.tm", {true, true, true}}, - {"google.tn", {true, true, true}}, - {"google.to", {true, true, true}}, - {"google.tt", {true, true, true}}, - {"google.us", {true, true, true}}, - {"google.uz", {true, true, true}}, - {"google.vg", {true, true, true}}, - {"google.vu", {true, true, true}}, - {"google.ws", {true, true, true}}, - {"l.google.com", {true, true, true}}, - - // google.com is a special case. We have a custom config for www.google.com, - // so set duplicate_for_www = false. - {"google.com", {true, true, false}}, - - // Origins with subdomains and without same-origin collectors. - {"2mdn.net", {true, false, false}}, - {"adgoogle.net", {true, false, false}}, - {"admeld.com", {true, false, false}}, - {"admob.biz", {true, false, false}}, - {"admob.co.in", {true, false, false}}, - {"admob.co.kr", {true, false, false}}, - {"admob.co.nz", {true, false, false}}, - {"admob.co.uk", {true, false, false}}, - {"admob.co.za", {true, false, false}}, - {"admob.com", {true, false, false}}, - {"admob.com.br", {true, false, false}}, - {"admob.com.es", {true, false, false}}, - {"admob.com.fr", {true, false, false}}, - {"admob.com.mx", {true, false, false}}, - {"admob.com.pt", {true, false, false}}, - {"admob.de", {true, false, false}}, - {"admob.dk", {true, false, false}}, - {"admob.es", {true, false, false}}, - {"admob.fi", {true, false, false}}, - {"admob.fr", {true, false, false}}, - {"admob.gr", {true, false, false}}, - {"admob.hk", {true, false, false}}, - {"admob.ie", {true, false, false}}, - {"admob.in", {true, false, false}}, - {"admob.it", {true, false, false}}, - {"admob.jp", {true, false, false}}, - {"admob.kr", {true, false, false}}, - {"admob.mobi", {true, false, false}}, - {"admob.no", {true, false, false}}, - {"admob.ph", {true, false, false}}, - {"admob.pt", {true, false, false}}, - {"admob.sg", {true, false, false}}, - {"admob.tw", {true, false, false}}, - {"admob.us", {true, false, false}}, - {"admob.vn", {true, false, false}}, - {"adwhirl.com", {true, false, false}}, - {"ampproject.com", {true, false, false}}, - {"ampproject.net", {true, false, false}}, - {"ampproject.org", {true, false, false}}, - {"android.com", {true, false, false}}, - {"cdn.ampproject.org", {true, false, false}}, - {"chromecast.com", {true, false, false}}, - {"chromeexperiments.com", {true, false, false}}, - {"chromestatus.com", {true, false, false}}, - {"chromium.org", {true, false, false}}, - {"clients6.google.com", {true, false, false}}, - {"cloudendpointsapis.com", {true, false, false}}, - {"dartmotif.com", {true, false, false}}, - {"dartsearch.net", {true, false, false}}, - {"doubleclick.com", {true, false, false}}, - {"doubleclick.ne.jp", {true, false, false}}, - {"doubleclick.net", {true, false, false}}, - {"doubleclickusercontent.com", {true, false, false}}, - {"fls.doubleclick.net", {true, false, false}}, - {"g.co", {true, false, false}}, - {"g.doubleclick.net", {true, false, false}}, - {"ggpht.com", {true, false, false}}, - {"gmodules.com", {true, false, false}}, - {"goo.gl", {true, false, false}}, - {"google-syndication.com", {true, false, false}}, - {"google.cat", {true, false, false}}, - {"google.info", {true, false, false}}, - {"google.jobs", {true, false, false}}, - {"google.net", {true, false, false}}, - {"google.org", {true, false, false}}, - {"google.stackdriver.com", {true, false, false}}, - {"googleadservices.com", {true, false, false}}, - {"googleadsserving.cn", {true, false, false}}, - {"googlealumni.com", {true, false, false}}, - {"googleapis.cn", {true, false, false}}, - {"googleapis.com", {true, false, false}}, - {"googleapps.com", {true, false, false}}, - {"googlecbs.com", {true, false, false}}, - {"googlecode.com", {true, false, false}}, - {"googlecommerce.com", {true, false, false}}, - {"googledrive.com", {true, false, false}}, - {"googleenterprise.com", {true, false, false}}, - {"googlefiber.com", {true, false, false}}, - {"googlefiber.net", {true, false, false}}, - {"googlegoro.com", {true, false, false}}, - {"googlehosted.com", {true, false, false}}, - {"googlepayments.com", {true, false, false}}, - {"googlesource.com", {true, false, false}}, - {"googlesyndication.com", {true, false, false}}, - {"googletagmanager.com", {true, false, false}}, - {"googletagservices.com", {true, false, false}}, - {"googleusercontent.com", {true, false, false}}, - {"googlezip.net", {true, false, false}}, - {"gstatic.cn", {true, false, false}}, - {"gstatic.com", {true, false, false}}, - {"gvt3.com", {true, false, false}}, - {"gvt9.com", {true, false, false}}, - {"picasa.com", {true, false, false}}, - {"recaptcha.net", {true, false, false}}, - {"stackdriver.com", {true, false, false}}, - {"usercontent.google.com", {true, false, false}}, - {"waze.com", {true, false, false}}, - {"withgoogle.com", {true, false, false}}, - {"youtu.be", {true, false, false}}, - {"youtube-3rd-party.com", {true, false, false}}, - {"youtube-nocookie.com", {true, false, false}}, - {"youtube.ae", {true, false, false}}, - {"youtube.al", {true, false, false}}, - {"youtube.am", {true, false, false}}, - {"youtube.at", {true, false, false}}, - {"youtube.az", {true, false, false}}, - {"youtube.ba", {true, false, false}}, - {"youtube.be", {true, false, false}}, - {"youtube.bg", {true, false, false}}, - {"youtube.bh", {true, false, false}}, - {"youtube.bo", {true, false, false}}, - {"youtube.ca", {true, false, false}}, - {"youtube.cat", {true, false, false}}, - {"youtube.ch", {true, false, false}}, - {"youtube.cl", {true, false, false}}, - {"youtube.co", {true, false, false}}, - {"youtube.co.ae", {true, false, false}}, - {"youtube.co.at", {true, false, false}}, - {"youtube.co.hu", {true, false, false}}, - {"youtube.co.id", {true, false, false}}, - {"youtube.co.il", {true, false, false}}, - {"youtube.co.in", {true, false, false}}, - {"youtube.co.jp", {true, false, false}}, - {"youtube.co.ke", {true, false, false}}, - {"youtube.co.kr", {true, false, false}}, - {"youtube.co.ma", {true, false, false}}, - {"youtube.co.nz", {true, false, false}}, - {"youtube.co.th", {true, false, false}}, - {"youtube.co.ug", {true, false, false}}, - {"youtube.co.uk", {true, false, false}}, - {"youtube.co.ve", {true, false, false}}, - {"youtube.co.za", {true, false, false}}, - {"youtube.com", {true, false, false}}, - {"youtube.com.ar", {true, false, false}}, - {"youtube.com.au", {true, false, false}}, - {"youtube.com.az", {true, false, false}}, - {"youtube.com.bh", {true, false, false}}, - {"youtube.com.bo", {true, false, false}}, - {"youtube.com.br", {true, false, false}}, - {"youtube.com.by", {true, false, false}}, - {"youtube.com.co", {true, false, false}}, - {"youtube.com.do", {true, false, false}}, - {"youtube.com.ee", {true, false, false}}, - {"youtube.com.eg", {true, false, false}}, - {"youtube.com.es", {true, false, false}}, - {"youtube.com.gh", {true, false, false}}, - {"youtube.com.gr", {true, false, false}}, - {"youtube.com.gt", {true, false, false}}, - {"youtube.com.hk", {true, false, false}}, - {"youtube.com.hr", {true, false, false}}, - {"youtube.com.jm", {true, false, false}}, - {"youtube.com.jo", {true, false, false}}, - {"youtube.com.kw", {true, false, false}}, - {"youtube.com.lb", {true, false, false}}, - {"youtube.com.lv", {true, false, false}}, - {"youtube.com.mk", {true, false, false}}, - {"youtube.com.mt", {true, false, false}}, - {"youtube.com.mx", {true, false, false}}, - {"youtube.com.my", {true, false, false}}, - {"youtube.com.ng", {true, false, false}}, - {"youtube.com.om", {true, false, false}}, - {"youtube.com.pe", {true, false, false}}, - {"youtube.com.ph", {true, false, false}}, - {"youtube.com.pk", {true, false, false}}, - {"youtube.com.pt", {true, false, false}}, - {"youtube.com.qa", {true, false, false}}, - {"youtube.com.ro", {true, false, false}}, - {"youtube.com.sa", {true, false, false}}, - {"youtube.com.sg", {true, false, false}}, - {"youtube.com.tn", {true, false, false}}, - {"youtube.com.tr", {true, false, false}}, - {"youtube.com.tw", {true, false, false}}, - {"youtube.com.ua", {true, false, false}}, - {"youtube.com.uy", {true, false, false}}, - {"youtube.com.ve", {true, false, false}}, - {"youtube.cz", {true, false, false}}, - {"youtube.de", {true, false, false}}, - {"youtube.dk", {true, false, false}}, - {"youtube.ee", {true, false, false}}, - {"youtube.es", {true, false, false}}, - {"youtube.fi", {true, false, false}}, - {"youtube.fr", {true, false, false}}, - {"youtube.ge", {true, false, false}}, - {"youtube.gr", {true, false, false}}, - {"youtube.gt", {true, false, false}}, - {"youtube.hk", {true, false, false}}, - {"youtube.hr", {true, false, false}}, - {"youtube.hu", {true, false, false}}, - {"youtube.ie", {true, false, false}}, - {"youtube.in", {true, false, false}}, - {"youtube.is", {true, false, false}}, - {"youtube.it", {true, false, false}}, - {"youtube.jo", {true, false, false}}, - {"youtube.jp", {true, false, false}}, - {"youtube.kr", {true, false, false}}, - {"youtube.lk", {true, false, false}}, - {"youtube.lt", {true, false, false}}, - {"youtube.lv", {true, false, false}}, - {"youtube.ma", {true, false, false}}, - {"youtube.md", {true, false, false}}, - {"youtube.me", {true, false, false}}, - {"youtube.mk", {true, false, false}}, - {"youtube.mx", {true, false, false}}, - {"youtube.my", {true, false, false}}, - {"youtube.ng", {true, false, false}}, - {"youtube.nl", {true, false, false}}, - {"youtube.no", {true, false, false}}, - {"youtube.pe", {true, false, false}}, - {"youtube.ph", {true, false, false}}, - {"youtube.pk", {true, false, false}}, - {"youtube.pl", {true, false, false}}, - {"youtube.pr", {true, false, false}}, - {"youtube.pt", {true, false, false}}, - {"youtube.qa", {true, false, false}}, - {"youtube.ro", {true, false, false}}, - {"youtube.rs", {true, false, false}}, - {"youtube.ru", {true, false, false}}, - {"youtube.sa", {true, false, false}}, - {"youtube.se", {true, false, false}}, - {"youtube.sg", {true, false, false}}, - {"youtube.si", {true, false, false}}, - {"youtube.sk", {true, false, false}}, - {"youtube.sn", {true, false, false}}, - {"youtube.tn", {true, false, false}}, - {"youtube.ua", {true, false, false}}, - {"youtube.ug", {true, false, false}}, - {"youtube.uy", {true, false, false}}, - {"youtube.vn", {true, false, false}}, - {"youtubeeducation.com", {true, false, false}}, - {"youtubemobilesupport.com", {true, false, false}}, - {"ytimg.com", {true, false, false}}, - - // Origins without subdomains and with same-origin collectors. - {"accounts.google.com", {false, true, false}}, - {"apis.google.com", {false, true, false}}, - {"app.google.stackdriver.com", {false, true, false}}, - {"b.mail.google.com", {false, true, false}}, - {"chatenabled.mail.google.com", {false, true, false}}, - {"ddm.google.com", {false, true, false}}, - {"gmail.com", {false, true, false}}, - {"gmail.google.com", {false, true, false}}, - {"mail-attachment.googleusercontent.com", {false, true, false}}, - {"mail.google.com", {false, true, false}}, - {"www.gmail.com", {false, true, false}}, - - // Origins without subdomains or same-origin collectors. - {"ad.doubleclick.net", {false, false, false}}, - {"drive.google.com", {false, false, false}}, - {"redirector.googlevideo.com", {false, false, false}}, -}); - -const char* const kGoogleStandardCollectors[] = { - "https://beacons.gcp.gvt2.com/domainreliability/upload", - "https://beacons.gvt2.com/domainreliability/upload", - "https://beacons2.gvt2.com/domainreliability/upload", - "https://beacons3.gvt2.com/domainreliability/upload", - "https://beacons4.gvt2.com/domainreliability/upload", - "https://beacons5.gvt2.com/domainreliability/upload", - "https://beacons5.gvt3.com/domainreliability/upload", - "https://clients2.google.com/domainreliability/upload", -}; - -const char* const kGoogleOriginSpecificCollectorPathString = - "/domainreliability/upload"; - -std::unique_ptr CreateGoogleConfig( - std::string_view hostname, - const GoogleConfigParams& params, - bool is_www) { - CHECK(params.duplicate_for_www || !is_www); - - bool include_subdomains = params.include_subdomains && !is_www; - - auto config = std::make_unique(); - GURL url(base::StrCat({"https://", (is_www ? "www." : ""), hostname, "/"})); - config->origin = url::Origin::Create(url); - config->include_subdomains = include_subdomains; - config->collectors.clear(); - if (params.include_origin_specific_collector) { - GURL::Replacements replacements; - replacements.SetPathStr(kGoogleOriginSpecificCollectorPathString); - config->collectors.push_back( - std::make_unique(url.ReplaceComponents(replacements))); - } - for (const char* collector : kGoogleStandardCollectors) { - config->collectors.push_back(std::make_unique(collector)); - } - config->success_sample_rate = 0.05; - config->failure_sample_rate = 1.00; - config->path_prefixes.clear(); - return config; -} - -} // namespace - std::unique_ptr MaybeGetGoogleConfig( const std::string& hostname) { - bool is_www_subdomain = - base::StartsWith(hostname, "www.", base::CompareCase::SENSITIVE); - - const auto itr = kGoogleConfigs.find(hostname); - if (itr != std::end(kGoogleConfigs)) { - return CreateGoogleConfig(hostname, itr->second, /*is_www=*/false); - } - std::string hostname_parent = net::GetSuperdomain(hostname); - const auto parent_it = kGoogleConfigs.find(hostname_parent); - if (parent_it != std::end(kGoogleConfigs)) { - const GoogleConfigParams& params = parent_it->second; - if (is_www_subdomain && params.duplicate_for_www) { - return CreateGoogleConfig(hostname_parent, params, /*is_www=*/true); - } - if (params.include_subdomains) { - return CreateGoogleConfig(hostname_parent, params, /*is_www=*/false); - } - } - return nullptr; } @@ -583,12 +22,6 @@ std::vector> configs_out; - for (const auto& [hostname, params] : kGoogleConfigs) { - configs_out.push_back(CreateGoogleConfig(hostname, params, false)); - if (params.duplicate_for_www) { - configs_out.push_back(CreateGoogleConfig(hostname, params, true)); - } - } return configs_out; } --- a/components/domain_reliability/uploader.cc +++ b/components/domain_reliability/uploader.cc @@ -80,7 +80,7 @@ class DomainReliabilityUploaderImpl : pu if (discard_uploads_) discarded_upload_count_++; - if (discard_uploads_ || shutdown_) { + if (true) { DVLOG(1) << "Discarding report instead of uploading."; UploadResult result; result.status = UploadResult::SUCCESS; ================================================ FILE: patches/core/ungoogled-chromium/disable-fonts-googleapis-references.patch ================================================ # Disables references to fonts.googleapis.com --- a/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc +++ b/components/dom_distiller/content/browser/dom_distiller_viewer_source.cc @@ -309,7 +309,7 @@ bool DomDistillerViewerSource::ShouldSer std::string DomDistillerViewerSource::GetContentSecurityPolicy( network::mojom::CSPDirectiveName directive) { if (directive == network::mojom::CSPDirectiveName::StyleSrc) { - return "style-src 'self' https://fonts.googleapis.com;"; + return "style-src 'self';"; } else if (directive == network::mojom::CSPDirectiveName::ChildSrc) { return "child-src *;"; } else if (directive == --- a/components/dom_distiller/core/html/preview.html +++ b/components/dom_distiller/core/html/preview.html @@ -11,7 +11,7 @@ found in the LICENSE file. Title goes here and it could be kind of lengthy - Publisher name - + + +
+

ungoogled-chromium

+ This browser was built with ungoogled-chromium patches and differs from the default Chromium experience + in a few ways. Look over the sections below and the + + changes to the default settings to see what may be important to you.

+ This page can always be accessed again at chrome://ungoogled-first-run +

+
+

How-To

+
Install and update extensions
+ NeverDecaf has created an extension to make this process easy: +
    +
  1. Set chrome://flags/#extension-mime-request-handling + to Always prompt for install and relaunch.
  2. +
  3. Then click on the latest Chromium.Web.Store.crx link on + the extension's Releases page.
  4. +
+ Please check out the chromium-web-store + repo for further details and alternate installation methods for the extension.

+ If you do not wish to install this extension, there is still a way to install other extensions albeit + without the ability to easily update them. In this case, please refer to the entry on the wiki for + + installing extensions manually.
+
Enable spellcheck +
    +
  1. Go to + https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries/+/main
  2. +
  3. Find a bdic file for the language you want and click on it. + You will see a mostly empty page aside from "X-byte binary file".
  4. +
  5. On the bottom right corner, click "txt". The direct link for en-US-10-1.bdic is: + + https://chromium.googlesource.com/chromium/deps/hunspell_dictionaries/+/main/en-US-10-1.bdic?format=TEXT
  6. +
  7. This is a base64-encoded file that needs to be decoded. Use the button below to select the .txt file you saved + and save/move the resulting bdic file to your Dictionaries directory. Default locations: +
      +
    • Linux: ~/.config/chromium/Dictionaries/
    • +
    • Mac: ~/Library/Application Support/Chromium/Dictionaries/
    • +
    • Windows: %LOCALAPPDATA%\Chromium\User Data\Dictionaries\
    • +
    + +
  8. +
  9. Toggle spell check in chrome://settings/languages, + or restart the browser for the dictionaries to take effect.
  10. +

+ Check out the FAQ on the wiki + for information on other common topics. +

+
+

Extra Features

+ Most features introduced by ungoogled-chromium are disabled by default and can be enabled in + chrome://flags or as command-line switches. Take a look at + + the flags documentation to see what features you may find useful to enable. +

+
+

Additional Links

+ Privacy and security information, motivation and philosophy, rationale for changes, and more can be found in the + README.

+ Visit our + support page if you wish to report problems.

+ Are you a developer? Consider + + contributing to ungoogled-chromium! +

+ +)"; + std::move(callback).Run(base::MakeRefCounted(std::move(source))); + } +}; + +class UngoogledFirstRun; +class UngoogledFirstRunUIConfig : public content::DefaultWebUIConfig { + public: + UngoogledFirstRunUIConfig() : DefaultWebUIConfig("chrome", "ungoogled-first-run") {} +}; + +class UngoogledFirstRun : public content::WebUIController { + public: + UngoogledFirstRun(content::WebUI* web_ui) : content::WebUIController(web_ui) { + content::URLDataSource::Add(Profile::FromWebUI(web_ui), std::make_unique()); + } + UngoogledFirstRun(const UngoogledFirstRun&) = delete; + UngoogledFirstRun& operator=(const UngoogledFirstRun&) = delete; +}; + +#endif // CHROME_BROWSER_UI_WEBUI_UNGOOGLED_FIRST_RUN_H_ --- a/chrome/common/webui_url_constants.cc +++ b/chrome/common/webui_url_constants.cc @@ -74,6 +74,7 @@ bool IsSystemWebUIHost(std::string_view // These hosts will also be suggested by BuiltinProvider. base::span ChromeURLHosts() { static constexpr auto kChromeURLHosts = std::to_array({ + "ungoogled-first-run", kChromeUIAboutHost, kChromeUIAccessibilityHost, kChromeUIActorInternalsHost, ================================================ FILE: patches/extra/ungoogled-chromium/fix-building-without-mdns-and-service-discovery.patch ================================================ # Fix building with enable_service_discovery=false and enable_mds=false --- a/chrome/browser/media/router/discovery/mdns/dns_sd_device_lister.cc +++ b/chrome/browser/media/router/discovery/mdns/dns_sd_device_lister.cc @@ -40,37 +40,22 @@ DnsSdDeviceLister::DnsSdDeviceLister( DnsSdDeviceLister::~DnsSdDeviceLister() = default; void DnsSdDeviceLister::Discover() { -#if BUILDFLAG(ENABLE_SERVICE_DISCOVERY) - if (!device_lister_) { - device_lister_ = local_discovery::ServiceDiscoveryDeviceLister::Create( - this, service_discovery_client_, service_type_); - device_lister_->Start(); - } - device_lister_->DiscoverNewDevices(); -#endif } void DnsSdDeviceLister::Reset() { - device_lister_.reset(); } void DnsSdDeviceLister::OnDeviceChanged( const std::string& service_type, bool added, const ServiceDescription& service_description) { - DnsSdService service; - FillServiceInfo(service_description, &service); - delegate_->ServiceChanged(device_lister_->service_type(), added, service); } void DnsSdDeviceLister::OnDeviceRemoved(const std::string& service_type, const std::string& service_name) { - delegate_->ServiceRemoved(service_type, service_name); } void DnsSdDeviceLister::OnDeviceCacheFlushed(const std::string& service_type) { - delegate_->ServicesFlushed(device_lister_->service_type()); - device_lister_->DiscoverNewDevices(); } void DnsSdDeviceLister::OnPermissionRejected() { ================================================ FILE: patches/extra/ungoogled-chromium/fix-distilled-icons.patch ================================================ --- a/components/dom_distiller/core/css/distilledpage_common.css +++ b/components/dom_distiller/core/css/distilledpage_common.css @@ -26,6 +26,11 @@ box-sizing: border-box; } +.material-icons { + font-family: Material Icons; + font-style: normal !important; +} + /* Remove all margins and padding from certain element and add word wrap. */ blockquote, ================================================ FILE: patches/extra/ungoogled-chromium/keep-expired-flags.patch ================================================ --- a/components/webui/flags/flags_state.cc +++ b/components/webui/flags/flags_state.cc @@ -26,6 +26,7 @@ #include "base/strings/utf_string_conversions.h" #include "base/values.h" #include "build/build_config.h" +#include "chrome/browser/unexpire_flags.h" #include "components/variations/field_trial_config/field_trial_util.h" #include "components/variations/variations_associated_data.h" #include "components/variations/variations_switches.h" @@ -680,14 +681,19 @@ void FlagsState::GetFlagFeatureEntries( int current_platform = GetCurrentPlatform(); for (const FeatureEntry& entry : feature_entries_) { + std::string desc = entry.visible_description; if (skip_feature_entry.Run(entry)) { + if (flags::IsFlagExpired(flags_storage, entry.internal_name)) { + desc.insert(0, "!!! NOTE: THIS FLAG IS EXPIRED AND MAY STOP FUNCTIONING OR BE REMOVED SOON !!! "); + } else { continue; + } } base::DictValue data; data.Set("internal_name", entry.internal_name); data.Set("name", entry.visible_name); - data.Set("description", entry.visible_description); + data.Set("description", desc); base::ListValue supported_platforms; AddOsStrings(entry.supported_platforms, &supported_platforms); @@ -1111,7 +1117,9 @@ bool FlagsState::IsSupportedFeature(cons continue; } if (delegate_ && delegate_->ShouldExcludeFlag(storage, entry)) { + if (!flags::IsFlagExpired(storage, entry.internal_name)) { continue; + } } return true; } ================================================ FILE: patches/extra/ungoogled-chromium/prepopulated-search-engines.patch ================================================ # Disables Site search Starter Pack # --- a/components/omnibox/common/omnibox_features.cc +++ b/components/omnibox/common/omnibox_features.cc @@ -249,7 +249,7 @@ BASE_FEATURE(kOmniboxTouchDownTriggerFor BASE_FEATURE(kOmniboxSiteSearch, DISABLED); // Enables additional site search providers for the Site search Starter Pack. -BASE_FEATURE(kStarterPackExpansion, enable_if(!IS_ANDROID && !IS_IOS)); +BASE_FEATURE(kStarterPackExpansion, base::FEATURE_DISABLED_BY_DEFAULT); // Enables an informational IPH message at the bottom of the Omnibox directing // users to certain starter pack engines. ================================================ FILE: patches/extra/ungoogled-chromium/remove-disable-setuid-sandbox-as-bad-flag.patch ================================================ # Remove the "--disable-setuid-sandbox" command line flag as a bad flag --- a/chrome/browser/ui/startup/bad_flags_prompt.cc +++ b/chrome/browser/ui/startup/bad_flags_prompt.cc @@ -84,7 +84,6 @@ const char* const kBadFlags[] = { sandbox::policy::switches::kDisableGpuSandbox, sandbox::policy::switches::kDisableLandlockSandbox, sandbox::policy::switches::kDisableSeccompFilterSandbox, - sandbox::policy::switches::kDisableSetuidSandbox, sandbox::policy::switches::kNoSandbox, #if BUILDFLAG(IS_WIN) sandbox::policy::switches::kAllowThirdPartyModules, ================================================ FILE: patches/extra/ungoogled-chromium/remove-pac-size-limit.patch ================================================ --- a/net/proxy_resolution/pac_file_fetcher_impl.cc +++ b/net/proxy_resolution/pac_file_fetcher_impl.cc @@ -359,13 +359,6 @@ bool PacFileFetcherImpl::ConsumeBytesRea return false; } - // Enforce maximum size bound. - if (num_bytes + bytes_read_so_far_.size() > - static_cast(max_response_bytes_)) { - result_code_ = ERR_FILE_TOO_BIG; - request->Cancel(); - return false; - } bytes_read_so_far_.append(buf_->data(), num_bytes); return true; ================================================ FILE: patches/extra/ungoogled-chromium/remove-uneeded-ui.patch ================================================ # Removes in order: # 'Learn more' links on the performance page # more 'Learn more' links on the performance page # link to Chrome store on the extensions page when empty # link to Chrome store in extensions page sidebar # 'Tabs from other devices' entry on the History page sidebar # the 'Learn more' link on new incognito tabs # Live captions entry from the settings page # link to Google's accessibility site from the settings page # update status icon on the About page # update status text on the About page # link to Google's help site on the About page # external link for theme entry on settings page # the Google account line from the Payment methods page # Safety check section on the settings page # Google sign-in and Anonymized Data Collection sections # help bubble for the removed data collection section # Privacy guide promo on the privacy page # Privacy guide section on the privacy page # The password leak detection toggle on the security settings page # Advanced Protection Program link on the security settings page # the 'Learn more' link from the search engine entry on the settings page # Safety Check entry on the side menu on the settings page # the (?) learn more button on many settings pages # 'Sign in to see tabs from other devices' in the history submenu # the 'Vist Chrome Web Store' entry in the extensions section of the main menu # the side panel entry in All Bookmarks # the feedback entry in the third party cookie popup # the 'Learn more' link on crashed tabs # non-functional AI options # disable LiveCaption flag by default, this also removes non-functional Live Caption checkbox from media controls # the new feature badges --- a/chrome/app/settings_chromium_strings.grdp +++ b/chrome/app/settings_chromium_strings.grdp @@ -355,13 +355,13 @@ - 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. <a href="$1" target="_blank" id="learn-more" aria-description="$2">Learn more about Memory Saver</a> + 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. - Chromium conserves battery power by limiting background activity and visual effects, such as smooth scrolling and video frame rates. <a href="$1" target="_blank" id="learn-more" aria-description="$2">Learn more about Energy Saver</a> + Chromium conserves battery power by limiting background activity and visual effects, such as smooth scrolling and video frame rates. - Chromium preloads pages which makes browsing and searching faster. <a href="$1" target="_blank" id="learn-more" aria-description="$2">Learn more about preload pages</a> + Chromium preloads pages which makes browsing and searching faster. --- a/chrome/app/settings_strings.grdp +++ b/chrome/app/settings_strings.grdp @@ -1101,7 +1101,7 @@ Active site - Sites you add will always stay active and memory won't be freed up from them. <a href="$1" target="_blank">Learn more about keeping specific sites active</a> + Sites you add will always stay active and memory won't be freed up from them. Power @@ -1125,7 +1125,7 @@ Inactive tabs appearance - A dotted circle appears around site icons. <a href="$1" target="_blank" aria-description="$2">Learn more about inactive tabs</a> + A dotted circle appears around site icons. Tab hover preview card appearance @@ -1137,7 +1137,7 @@ Performance issue alerts - Get notifications that suggest ways to improve detected performance issues. <a href="$1" target="_blank" aria-description="$2">Learn more about performance issue alerts</a> + Get notifications that suggest ways to improve detected performance issues. --- a/chrome/browser/resources/extensions/item_list.html.ts +++ b/chrome/browser/resources/extensions/item_list.html.ts @@ -30,12 +30,6 @@ export function getHtml(this: Extensions ` : ''} -
- - $i18nRaw{noExtensionsOrApps} - -
$i18n{noSearchResults} --- a/chrome/browser/resources/extensions/sidebar.html.ts +++ b/chrome/browser/resources/extensions/sidebar.html.ts @@ -33,24 +33,6 @@ export function getHtml(this: Extensions -
- ${this.inDevMode ? html` -
- - -
- `: ''} -
-
- - - - - -
`; // clang-format on } --- a/chrome/browser/resources/extensions/sidebar.ts +++ b/chrome/browser/resources/extensions/sidebar.ts @@ -9,7 +9,6 @@ import './icons.html.js'; import type {CrMenuSelector} from 'chrome://resources/cr_elements/cr_menu_selector/cr_menu_selector.js'; import {I18nMixinLit} from 'chrome://resources/cr_elements/i18n_mixin_lit.js'; import {assert} from 'chrome://resources/js/assert.js'; -import {loadTimeData} from 'chrome://resources/js/load_time_data.js'; import {CrLitElement} from 'chrome://resources/lit/v3_0/lit.rollup.js'; import type {PropertyValues} from 'chrome://resources/lit/v3_0/lit.rollup.js'; @@ -114,21 +113,6 @@ export class ExtensionsSidebarElement ex } } - protected computeDiscoverMoreText_(): TrustedHTML { - return this.i18nAdvanced('sidebarDiscoverMore', { - tags: ['a'], - attrs: ['target'], - substitutions: [loadTimeData.getString('getMoreExtensionsUrl')], - }); - } - - protected computeDocsPromoText_(): TrustedHTML { - return this.i18nAdvanced('sidebarDocsPromo', { - tags: ['a'], - attrs: ['target'], - substitutions: [loadTimeData.getString('extensionsWhatsNewURL')], - }); - } } declare global { --- a/chrome/browser/resources/history/side_bar.html.ts +++ b/chrome/browser/resources/history/side_bar.html.ts @@ -22,13 +22,6 @@ export function getHtml(this: HistorySid $i18n{historyMenuItem} - - - $i18n{openTabsMenuItem} - - $i18n{incognitoTabHeading}

$i18n{incognitoTabDescription} - $i18n{learnMore}

$i18nRaw{incognitoTabFeatures}
--- a/chrome/browser/resources/settings/a11y_page/a11y_page.html +++ b/chrome/browser/resources/settings/a11y_page/a11y_page.html @@ -99,10 +99,5 @@ sub-label="$i18n{toastAlertLevelDescription}"> - -
--- a/chrome/browser/resources/settings/about_page/about_page.html +++ b/chrome/browser/resources/settings/about_page/about_page.html @@ -57,7 +57,7 @@
- +