Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2026-03-16 on branch 'main'

Chromium Digest: 2026-03-16

Overview

A day with a high volume of breaking changes across core APIs. Out of 548 total commits, 405 were flagged as relevant to developers. The changes span UI, content, media, extensions, and core utilities, requiring significant updates for many embedders. Major refactoring efforts continue in the UI layer with the "Bedrock" project, and several features on Android and iOS have been either removed or fully launched. The day's activity started with commit (4e4b30e) and ended with (44f0d80).

UI & UX

  • ⚠️ BREAKING BREAKING CHANGE: The public method views::WebView::SetCrashedOverlayView has been removed. Embedders must now use TakeCrashedOverlayView to provide a custom view for a crashed web contents. (cbbb542)
  • ⚠️ BREAKING BREAKING CHANGE: The public ui::PlatformClipboard::IsSelectionOwner method has been changed from a synchronous boolean return to an asynchronous callback-based signature. This affects all platform clipboard implementations and requires callers to adapt. (f56f565)
  • ⚠️ BREAKING BREAKING CHANGE: The TabStrip mojom API's OnDataChangedEvent is now a union containing a field mask. This allows clients to identify which tab properties have changed but is a non-backwards-compatible change requiring client updates. (e2acfde)
  • The "Search Resumption Module" feature has been completely removed from Android, including its feature flag, Java classes, and C++ bridge. (4830d98)
  • On Android, middle-click support was added to the home button to open the homepage in a new background tab, aligning behavior with desktop. (b9ac297)
  • Fixes were implemented for vertical tabs to correct width calculations during pinning/unpinning animations and to ensure activated tabs are scrolled fully into view. (f50be19) (47a5730)
  • The "Bedrock" project continues, with numerous call sites updated to use the BrowserWindowInterface abstraction instead of the concrete Browser class. (ba815fd) (4a045d1) (98777b3)

Web Platform, Content & Blink

  • ⚠️ BREAKING BREAKING CHANGE: Public content::ServiceWorkerContext interfaces now use the strongly-typed content::ChildProcessId instead of int process_id. Embedders must update method signatures in ServiceWorkerContextObserverSynchronous and ServiceWorkerContextCoreObserver. (1f8433c) (491060e)
  • ⚠️ BREAKING BREAKING CHANGE: The SetStorageAccessApiStatus method was removed from the public blink::mojom::LocalFrameHost mojo interface to fix a race condition. Clients using this IPC will break. (3fe82e5)
  • ⚠️ BREAKING BREAKING CHANGE: The public method String::Truncate() has been removed from Blink's core wtf_string.h. Code must be updated to use substr() instead. (adeb097)
  • The non-standard -webkit-search-results-decoration pseudo-element styling was removed from the user-agent stylesheet as it has no effect. (a4ce098)
  • On Android, cursor tracking is now enabled for contenteditable elements, improving the user experience with on-screen keyboards. (e36b350)

Media & GPU

  • ⚠️ BREAKING BREAKING CHANGE: The signature of media::AudioDecoderConfig::Initialize was changed to use ChannelLayoutConfig. The corresponding AudioDecoderConfig mojom struct was also modified, breaking both C++ calls and wire compatibility. (62da318)
  • The core gpu::command_buffer::client::GLES2Interface was updated with new virtual methods CanCopySharedImageDirectlyToGLTexture() and CanCopySharedImageToGLTextureViaSkia(). While they have default implementations, this modifies a key interface for GPU embedders. (fe5ea1e) (2a7f0ca)

Extensions

  • ⚠️ BREAKING BREAKING CHANGE: The signature of extensions::ServiceWorkerState::Observer::OnWorkerStop was changed to include the blink::ServiceWorkerToken. Observers of this state must be updated. (2cc7179)
  • ⚠️ BREAKING BREAKING CHANGE: The extensions::DisplayInfoProvider API was changed from asynchronous to synchronous. SetDisplayLayout and GetDisplayLayout now return their results directly instead of using callbacks. (a2e1c0b) (7b0fc8f)

ChromeOS & Ash

  • ⚠️ BREAKING BREAKING CHANGE: Several methods on the public CrosDisplayConfig interface were changed from asynchronous (callback-based) to synchronous (direct return). This affects GetDisplayUnitInfoList, SetDisplayProperties, and OverscanCalibration. (911fc29) (d9a28cd) (cb973d0)

Autofill & Wallet

  • ⚠️ BREAKING BREAKING CHANGE: The public method FormFieldData::selected_option() has been removed from components/autofill. Code must be migrated to use selected_option_text(). (2348edd)
  • ⚠️ BREAKING BREAKING CHANGE: Several data model structs (Passport, DriverLicense, NationalIdentityCard, etc.) have been removed from the public header components/wallet/core/browser/data_models/wallet_pass.h. (e96642c)

Features & Services

  • ⚠️ BREAKING BREAKING CHANGE: The PrivacySandboxQueueManager class and its accessor GetPrivacySandboxNoticeQueueManager() have been removed from the public PrivacySandboxService interface as part of a notice UI cleanup. (55c649e)
  • ⚠️ BREAKING BREAKING CHANGE: The pdf_infobar_controller() accessor was removed from BrowserWindowFeatures. Consumers must now use the pdf::infobar::PdfInfoBarController::From(browser) pattern to access the controller. (c12f6fa)
  • The Device-Bound Session Credentials (DBSC) feature has graduated from its origin trial and is now enabled by default. (ebf37aa)
  • Several features are now enabled by default and have had their feature flags removed, including StaticStorageQuota, SetDefaultDropEffect, and the iOS "Close Other Tabs" feature. (5ea1a81) (3da57f8) (4059dc3)
  • The Android-specific "TinkerTank" feature has been deleted from the codebase. (4783f6f)

Core & Infrastructure

  • ⚠️ BREAKING BREAKING CHANGE: The public method base::PickleIterator::ReadStringPiece16 has been removed from the fundamental base::Pickle utility due to memory alignment issues. Code should be updated to use ReadString16. (9ba8054)
  • Security was hardened by adding validation in the browser process to verify that WindowOpenDisposition values sent from the renderer via IPC are legitimate. (4ccc2d9)
  • A CHECK failure in TransportClientSocketPool was fixed. The code no longer assumes that Init() on an idle socket will not return ERR_IO_PENDING. (9205cf1)
  • The Public Suffix List was updated to the latest version. (a4dd319)
All Commits (548)
  • 44f0d80 SlimWebview: UT for requesting geolocation in the permission helper
  • 8849f94 WebUI: Implement ESlint check to enforce file/DOM name convention.
  • 9205cf1 Remove CHECK for ERR_IO_PENDING in TransportClientSocketPool::RequestSocket.
  • 1c80639 [Extensions] Update tabs API tests to MV3
  • 2cc7179 [Extensions] Pass ServiceWorkerToken to OnWorkerStop
  • 73df8d1 Ash: Fix flakiness in IconButtonWithBackgroundColorIdDoesNotCrash
  • 3ade95a Ash: Fix false confidence in DisableExtensionForUnaffiliatedUser test
  • 605f43d Add logic to connect prefs to process isolation state
  • ef6b887 [Default Browser] Store amount of declines and last decline time in pref
  • 78b18ce Roll WebView ARM Orderfile from 9xlnjMCioo_popcnN... to Idtn6YqnyHF0zSrda...
  • 55fc22d [User Education] Allow querying whether a promo has been dismissed
  • 9504c61 Roll src-internal from 539ced1f10ff to dcab460476cd (1 revision)
  • 90ae2ac Remove enable-chromeos-live-translate flag
  • 302c59b [BNPL-Ai][Clank] Rearrange AI amount extraction terms text
  • 71631f7 [Extensions] Return early and DWC if stale SW in DidStartWorkerForScope
  • 435ae54 [omnibox][next] Clean kExhaustiveGetRecentTabs; remove unoptimized code
  • 774a5ae Mark UNSAFE_BUFFER_USAGE in wtf/atomic_operations.{h,cc}
  • f69bb67 Add conversion util for Corp messaging struct <-> JingleMessage
  • df63b24 [IA] Add menu item for page info in app menu
  • d559317 Revert^2 "[VerticalTabs][Glic] Implement Glic nudge for toolbar."
  • 4209606 Roll Skia from df5f12318313 to d668b6f4815b (2 revisions)
  • 32ecefc fjord-oobe: Create image download OOBE screen
  • 13a4e9f Remove GlicMediaContext::GetContext()
  • 2f7fce8 [CodeHealth] Remove a leftover call to CreateScrollResolvedPromise.
  • 656ee34 cleanup: remove unused constants from HttpCache::Transaction
  • 0e5f719 Ban UBSan cflag that breaks the AOSP build
  • 0caac4a Add HasTranscriptsForFrame() to avoid un-needed copies of transcripts
  • 7d765c0 [tips] Guard tips notifications opt in by platform
  • f22731a [Contextual Tasks] Don't treat sign out URLs as sign in URLs
  • 5cd4aae [iOS] Add secondary string for more passkeys in passkey bottom sheet
  • 8dd21ad [Glic] use async navigation on page handler
  • 40a58ef [aim-eligibility] Add server eligibility check to Fusebox and Co-browse
  • c553a09 [lensoverlay] Enable non-blocking privacy notice and entrypoint alt.
  • 1f8433c Migrate ServiceWorkerContext to ChildProcessId
  • 45d47fa Roll Depot Tools from 6b62257bd9fc to 4e58caf8aa08 (1 revision)
  • 7c72d7f Roll Chrome Android ARM64 Orderfile from sty0cWwbhiRNWE86w... to YKl-X5jchkH3TuLUE...
  • 79e2ad2 Support compiling ts files in ios_internal
  • 968ba35 Roll Chrome Mac Arm PGO Profile
  • 52b214c Roll src/third_party/leveldatabase/src/ 4ee78d7ea..7ee830d02 (5 commits)
  • 55c649e [Privacy Sandbox] Remove Queue Manager
  • 7c444f6 Add CallbackURLMatchingIsSupported to the Info.plist
  • 62da318 Update last few legacy init() usage of AudioDecoderConfig
  • f499ab8 Remove ScrollableArea::promise_resolver_, pass it as a param instead
  • f0548ca Suppress duplicate ESB notifications when changed via Tailored Security
  • 98cd704 Roll Chrome Win32 PGO Profile
  • e4957ea Ash: Fix flakiness in WindowResizing capture mode test
  • ce3675f Update CBB autoroll for the builds refs
  • cbbb542 Remove WebView::SetCrashedOverlayView
  • 4312984 Roll Chrome Mac PGO Profile
  • fe9cf49 ASH Refactoring: Remove 6 unused strings of IDS_EULA_*
  • b76b429 [Link Capturing] Don't initialize for CCTs not opened by Chrome
  • 57c0bd3 Roll android_deps from 3VYcqPssBf1YI1iK0... to Iv8_79hT6eno7q3HW...
  • a8483ab [Vertical Tabs] Force rich animation in TabCollectionAnimatingLayoutManagerTest
  • 643df38 [Extensions Cleanup] Simple JS updates in desktop_capture API
  • 4ccc2d9 Validate WindowOpenDisposition sent by the renderer.
  • e11a176 Roll WebRTC from 9056a05a34cf to aa217206b9ce (4 revisions)
  • 98cb002 Add Rust coverage to ChildProcessSecurityPolicy tests.
  • 0a143bf [Actor] Expose getLastActedTabs method to Java.
  • 1845dab [page actions] Call the close callback **after** the chip callback
  • 8e84072 Quota: remove redundant histogram
  • cc1135f Roll Perfetto from 5eb53b8a269f to f2a3fbdcf9f4 (2 revisions)
  • 0e67620 Add UMA histogram for gesture timeouts.
  • 0bd0eb2 [Hub] Preparation for bottom bar
  • a9dfcf4 Roll vulkan-deps from ec4491a90f47 to e3c1ec79380e (1 revision)
  • e5623a5 [ios] Clarify when the histogram IOS.PushNotification.NotificationSettingsAuthorizationStatus is logged with specific use cases.
  • 9f5545e [MultiColumn][Settings Search] Add search visibility flag to base providers and migrate some opt-outs as an example
  • d44615c Add presubmit to prevent new usage of base::RunLoop in //chrome.
  • 59c3d40 [IntersectionObserver] Disable animations-force-main-frames feature
  • b97bf3b [Actor] Hookup ActorNotificationFactory from ActorNotificationService.
  • 8cff795 DomStorage: Unify commit error threshold
  • 1d5098e [Actions] Add onLongPressRunnable in FullButtonData
  • b6c7455 DomStorage: Add database recovery outcome histograms
  • 8abf3c4 Properly set Origin headers for frame load requests
  • 635cc50 Replace enabled-by-default feature with a per-network request bool.
  • 58263a4 Use macro for spanified inputs in //pdf fuzzer
  • c483594 WebUI Lit Migration script: Update to handle empty style + remove css.js
  • 7a8000b Roll compiler-rt from b93edfeca73c to 573ea4ab862e (1 revision)
  • 36314f7 [PWA] Extend histograms to Apr 2027
  • 583dd04 Ignore keyboard override in MITM interstitial
  • 1382d94 Delete TinkerTankDelegate
  • 743a37d Roll DevTools Frontend from bf7c13571b92 to 6469c7ae1f28 (1 revision)
  • 63aea23 [FedCM] Notify embedder when showing certain non-account dialogs.
  • d41b221 Add SplitTabChanged event to the TabStripAPI
  • 0475e80 Ensure plane polygon buffer is available
  • e0e3482 [A11Y] Fix expand/collapse actions for treeitems
  • 4fb430f [TabStrip] Only set recommendedNextTab if closing the selected tab
  • 0d48820 Add additional downloads owners
  • 2b2f1da Move translate bubble closing logic to WindowClosing
  • 194e9a0 Roll Chrome Android Desktop x64 PGO Profile
  • 51c1f01 Roll Chrome Android ARM32 PGO Profile
  • 9251da1 [Extensions Cleanup] Simple JS updates in active_tab
  • 31ec414 Update GlicEnabling::ShouldBypassFreUi to check any PDF rather than invocation source. This will be used until the Invoke API is ready.
  • 9ac8936 Fix GlicControllerUiTest for MultiInstance
  • b587497 Encode mojo api guideline in README.md for //components/browser_apis
  • 5e5fe32 Move IntervalMap from blink to media
  • 995f5c2 Remove redundant aura/accessibility deps from //chrome/browser
  • e64e2d9 [Glic] Fix update button state in clank toolbar
  • 01b697d [Extensions Cleanup] Simple JS updates in dns API
  • 6ce4bd4 Roll ANGLE from 8fb26b5fa9d5 to 74b9ebf70420 (4 revisions)
  • 2f3261c ASH Refactoring: Remove 10 unused string starting with IDS_EASY_UNLOCK_
  • e794104 [Extensions Cleanup] Simple JS updates in activity_log_private
  • 0ec2a01 [Extensions] Start porting tabs_api_unittest.cc to desktop Android pt 1
  • e21358c Migrate autofill bubbles SetHighlightedButton -> SetHighlightedElement
  • f8243f3 Use synchronous closing for JS optimizations bubble
  • 7afe827 [iOS] Add reauthentication to PasskeySuggestionBottomSheetMediator
  • b179335 Add report-unsafe-site interactive ui tests
  • f7ec37e [SxS] Make tab drop target delay configurable
  • f97fbc5 Add expiry timer to Glic web contents warming pool.
  • 8c5a11d [Animated pb] M144 bisect cl 3
  • c45513d Roll Platform Experience Win from be3a78cb0f01 to 4406ae42e059 (6 revisions)
  • c12f6fa Refactor BrowserWindowFeatures: Migrate PdfInfoBarController to UnownedUserData
  • 3fb78de SlimWebview: Simplify mojo binding
  • be83035 [composebox] Update styling for text input and context menu icon
  • 42d510a [Extensions Cleanup] Simple JS updates in command_line API
  • 16e9c1b Add koretadaniel@ in c/b/ui/ OWNERS
  • bea9f02 [AIM] Add model params to request URL.
  • 41ef156 WebUI: Re-enable console error tests again
  • 4d4a67c Separate user and workspace enabled status ExtensionInfo
  • 416ca4b Agent policy: mention human-reply-to-human rule
  • 30d6ec8 Disable ligatures for all message banners on Android
  • fdd90ed Refactor: Use eventToPromise to wait for CLOSE_ALL_MENUS in font_menu tests
  • ab075ea Rewrite Chromium fuzzing README for clarity
  • 8748e6a Refactor: Use eventToPromise to wait for CLOSE_ALL_MENUS in color_menu tests
  • cd76e57 Roll clank/internal/apps from ec6c33e4b3fd to 8dea2c77e2bd (1 revision)
  • ce4d0d4 Refactor: Use eventToPromise to wait for CLOSE_ALL_MENUS in letter_spacing tests
  • 4d33d70 Refactor: Use eventToPromise to wait for CLOSE_ALL_MENUS in line_spacing tests
  • 8dfe0f4 [Side Panel Infra] Build shared Side Panel package on Android
  • 52f40ff Roll Skia from 93167171d595 to df5f12318313 (2 revisions)
  • f56f565 Reland "[X11] Make IsSelectionOwner asynchronous in PlatformClipboard"
  • 3142792 Roll V8 from 74dc92cb0a12 to 77ce13db691d (19 revisions)
  • d09cd53 [iOS] Add EG test for Enhanced Autofill user verification toggle
  • a8234e3 Remove unneeded TS text segmentation enablements in tests.
  • 06b113d [Readability] Fix Readability crash.
  • 9f42271 Roll Chrome Mac Arm PGO Profile
  • f79b7a1 Update DEPS and add glic region selection cursor icon to browser resources grd
  • a4dd319 Refresh Public Suffix List to current version
  • e1a0a1e [Privacy Sandbox] Remove PS Notice from Startup and Preconditions
  • da3e203 Bump histograms
  • d2c7b24 [iOS] Add reauthentication app interface
  • 1f04e58 Fix at-rule() in compound supports condition
  • b4203a8 [shape-cache] Shift TextDirection into ShapeCacheKey.
  • ba815fd [bedrock] FindBrowserWithProfile() function call point refactoring
  • 67ec2ef [projects] Add trailing icon to thread item view
  • 63a2ae3 [DCSI] Implement proactive synchronization in CompoundImageBacking.
  • 8c91a4c fjord-oobe: Create image selection OOBE screen
  • fcd7527 [wpt] Remove deprecated iframe attributes from reflection tests
  • ed4ddec Consolidate locale handling between Variations and UMA
  • 48430e6 WebUI: Fix CrLitElement file/DOM name pattern violations, part 2.
  • 5764720 [wpt] Mark `//third_party/wpt_tools/` as manually rolled
  • a4ce098 Remove webkit-search-results-decoration from UA stylesheet
  • 242a720 ose-split: Attempt to fix KWDB refresh consistency check
  • ece5a43 [A11y] Add session ID to ChromeVox event processing
  • d56f4bd [bedrock] fix memory/ dependency
  • 5214142 [BottomBar] Expose capability to control the color and scroll behavior
  • e08b4b1 [hub] Implement history clustering logic
  • 33b0efe Roll clank/internal/apps from 68645b505716 to ec6c33e4b3fd (1 revision)
  • f410bcd [media] Disallow KEYCODE_MEDIA_PAUSE to resume playback for system events.
  • a8fabdf Roll androidx from Mn6UxK4fOcnps2oJ1... to ZmqTPlStkea9SodRT...
  • ae6d4fa Roll WebView ARM64 Orderfile from yC96bPAwA4xlMUNYY... to R-Bu3EXsoyD9ToPVC...
  • be7deb0 [composebox] Add test coverage for context menu and add*FromAttachment
  • bd934f0 Roll ios_internal from 7445d5344a96 to 0686e658c280
  • 81cd430 base/i18n: Use literal 'GMT' in HTTP time format
  • 4376b4f Move messages to secondary UI container
  • 3d98225 Roll Chrome Win64 PGO Profile
  • ad95a08 Add aria-expanded tests.
  • 1de482b Build google_accounts_private_api_* from their own GN target
  • 6d136be Fix `include` formatting error in page_load_metrics_initialize.cc
  • 6c8197b [iOS] Dismiss keyboard after cobrowse query
  • 24d3c65 Roll DevTools Frontend from 4fcb0b34c638 to bf7c13571b92 (1 revision)
  • 674542b [searchbox] Searchbox mixin class [Part 1]
  • 4830d98 [SearchResumption] Clean up search resumption module.
  • 702d885 [A11Y] Adding ARIA carousel (tabs for slide control) dump tree test
  • 966c6c3 Roll Perfetto from 09f2475998ce to 5eb53b8a269f (2 revisions)
  • 3fe82e5 [SAA] Remove renderer->browser IPC and fix race condition
  • 3124113 [shape-cache] Allow floats/OOF-positioned items.
  • b686345 Roll Chrome Android ARM64 Orderfile from 1pscfeLeRCP6wY5X0... to sty0cWwbhiRNWE86w...
  • 8043efa [TabBottomSheet] Starts in expanded state
  • a398fe7 [Android NTP] Fix shadow display and simplify layout
  • d6f100c Roll Chrome Win32 PGO Profile
  • 574bcd2 Add pixel test for search ai signin promo view
  • 27ebcb6 Revert "[bedrock] Migrate BrowserListObserver to BrowserCollectionObserver - part 9/n"
  • 9ba8054 Replace base::PickleIterator::ReadStringPiece16 with ReadString16
  • ebf37aa [DBSC] Allow session registration by default and remove origin trials
  • 44f6a02 Change meaning of Element::customElementRegistry to simplify callers.
  • f3f9a0f [//cc] Simplify TileBasedLayerImpl::AppendQuadForTile()
  • a2d8ca6 Move LiveTranslate general counters from the google-api dispatcher
  • 580c342 [//cc] Inline Append*Quad() in AppendQuadForTile()
  • 03a8d65 [//cc] Streamline AppendQuadForTile()
  • 6662700 Revert "Implement AIA cert backtracking on WebView"
  • 3a19e25 Revise tests to be DRY and ensure GetSkill retrieves API Created Skills
  • 2adf8a6 Roll Dawn from 46d1c217cb9b to 24d032f9897c (2 revisions)
  • e94f227 Roll vulkan-deps from 26ad58d0b7b7 to ec4491a90f47 (1 revision)
  • d12dce5 Consolidate processing instruction attribute parsing
  • 32351c3 Roll Skia from d6bc6d17d637 to 93167171d595 (1 revision)
  • 3564a81 Refactor: Consolidate duplicated switches into shared helper
  • 40ffba6 [FRE] Support `FirstRunDesktopRefresh` in history sync opt-in tests
  • cc68d45 [GlicSelection] Use lens theme colors in glic selection overlay
  • 7bc21d4 [a11y] Cleanup of dead code and unused includes.
  • 4783f6f Delete TinkerTank
  • 8fe412c Update OverscrollGestures to experimental status
  • ed598b5 [PWA Migration]Prevent cross-site migration
  • 05d1f76 Remove a dead declaration
  • 3ad907e Update androidx.pdf versions to 1.0.0-alpha13.
  • ef8ca74 [Signin][Android] Ensure ProfileDataCache always stores account info
  • e2acfde [TabStrip API] Modify the DataChanged event and add field mask
  • 55cb36e [iOS] Update transition when viewing the TabGroup page
  • e723677 Roll Chrome Mac Arm PGO Profile
  • 4966e52 [Grid] Delete copy ctor's for grid data structures
  • 618732b [owners] Remove cduvall@chromium.org from tools/metrics/histograms/metadata/content_extraction/OWNERS
  • fc30ffd Cleanup: Remove unused switch kWpMaxParallelActiveRequests.
  • 029e2aa content: Use try_emplace for map insertions
  • 392c4d5 [FedCM] Get the FederatedAuthRequest right before using it
  • 89625dc Revert "Re-batch ChooserDialogTests"
  • de8acff [shape-cache] Allow multiple text/control items.
  • 1d6f147 Private passes: Add API to log consent
  • f147130 [Persist] Handle Full Rollbacks in MigrationManager
  • 096c1b3 Reland "Refactor CaptivePortalView to use CLIENT_OWNS_WIDGET model."
  • 9287a28 Extend expiration dates for Fingerprint histograms by one year.
  • c38c9e5 Clean up unused enum in startup browser creator browser test
  • 06088be Extend Sync.TrustedVaultJavascript* histograms
  • ee0a742 [Persist] Rework feature params for migration phases
  • 2bb6d1e Upgrade SECURITY_DCHECK() to CHECK() in blink StringView and StringImpl
  • ff2805b [B4B] Cleanup: Signin related code
  • 7d6834e [PiP] Add duration metric for fullscreen video PiP
  • 1f14e39 [layout] Cleanup of dead code an unused includes
  • e36b350 Reland "[a11y] Add cursor tracking for contenteditable elements"
  • bb3415a [Socket Pool] (2) Remove iOS-specific proxy pool settings
  • e0ac391 [iOS][Assistant] Add feature parm for medium detent
  • fcfb1a4 unbundle: Stub libavutil/rational.h in ffmpeg
  • 60dd191 [Encrypt Bookmarks] Add new stage to stop writing in the clear text file
  • a0c3c08 Add local code coverage support for html blackbox fuzzers
  • 1a41a55 [Signin][Android] Show identity error badge for Signin button
  • 4bbac91 Roll ANGLE from 040cc83d70e7 to 8fb26b5fa9d5 (1 revision)
  • 91ca5e3 [next] Update NTP next testing config to match launch candidate
  • c591958 Enable AutofillEnableImportOfUnchangedValuesForCountryAndState in testing.
  • f1f10d7 [components/password_manager] Code clean-up with clang-tidy's checks
  • 3da57f8 Ship SetDefaultDropEffect
  • e4adc01 [Autofill] Fix at-memory trigger for contenteditables
  • 99f29d9 [//docs] add headless details to supported_platforms.md
  • dc8a8ed Roll clank/internal/apps from bb3ba12a6b32 to 68645b505716 (1 revision)
  • c3e5089 Revert "Clean up AppBannerManagerBrowserTest"
  • be605b4 Remove PlzDedicatedWorker from fieldtrial_testing_config.json.
  • 75c313d Use relative group index during tab drag revert
  • 99ee258 Roll DevTools Frontend from d1bc0830cfd0 to 4fcb0b34c638 (8 revisions)
  • 47afcee [iOS] Add Cobalt OverflowMenuDestination and coordinator provider APIs
  • 45627ef [Accessibility] Fix missing newlines in AXImageStopwords
  • 5b2c2a2 [refactor] Finish renaming file upload vars to context upload.
  • 3533a91 Add one shard to interactive_ui_tests on mac15-arm64-rel-tests
  • 3492dd6 Only download AI Threads for AIM Eligible user
  • 68dcba4 Roll ios_internal from 49ac433459a8 to 7445d5344a96
  • 64e930f Close IRM on SPA soft navigations
  • f0f7039 [FRE] Support `FirstRunDesktopRefresh` in sync settings tests
  • 05346da Add a fieldtrial testing entry for DnsOverHttpsCloudflareFamilies.
  • fa82546 [Persist] Add histograms to record instantiated store types
  • b9460bd Roll Chromium Variations from rXkrosv-av4F-aoCk... to 63u-wPHHZAlYqHp4J...
  • c9ed57e Eliminate UNSAFE_TODOs in style_builder_converter.cc
  • 3bccbde Fix blink compilation for platforms other than x86 and arm
  • f1323d0 [media] Use default ColorSpace in VideoEncodeAccelerateAdapter SI
  • 2b30027 Remove duplicated ScreenshotTaker constants
  • b48ef40 [iOS][PRDBD] Move clear_browsing_data folder under settings folder
  • 72f1460 Roll Media App from zuxNSRdee9dITLIag... to _2KQJWAEQyY1sxfT_...
  • 296f628 Shared Storage: Fix cross-entry state carry-over in origin matching
  • cf21a5b Implement FilterExtractor logic to extract and store annotations
  • becf50e [//cc] Inline AppendQuad() in AppendQuadForTile()
  • 798a808 [//cc] Remove AppendQuadsSpecialization() references
  • dfc126c [//cc] Dedupe {Picture, TileDisplay}LayerImpl::AppendQuadForTile()
  • a597078 [iOS]Do not offer drive if sign-in is disabled
  • 2134394 [iOS] Make features enabled with or without params not mutually exclusive
  • 432c30e [Extensions] Warning for long alarm names for new alarms
  • 2a5590f [iOS][Composebox] Enable fusebox in composebox egtests
  • abdd164 Migrate Search.ChoiceScreenEvents to per-profile metrics
  • d680b85 Plumb skill description for contextual skills
  • 9d52da3 [Signin][Android] Flag guard update credentials
  • ae10069 [ios] Polish AppBar TabGrid button update logic.
  • 591a89f [IOS][AIM] Do not dismiss the assistant sheet on cobrowse presentation
  • b5118ba Add UMA logging for base::FeatureList::IsEnabled() calls.
  • 87f7f06 WebUI: Extract PressHandler and update button visibility
  • d9b5782 [ios] Deprecate UIWindow's init in unittests under ui/util
  • 5f3f59d Revert "Address the final cleanup comments for 322342499 in AppBannerManager"
  • 1ffed9e Revert "Refresh Public Suffix List to latest version"
  • 875a90a [ios] Deprecate UIWindow's init in FrameLayoutGuideTest and LayoutGuideCenterTest
  • 3cc8046 Fix CrateID Checking in crate_utils for Presubmits
  • 55b92da [shape-cache] Shift shape-cache tests into separate file.
  • 5451ddf a11y: support selection without aconfig layer
  • 61f5c40 [ios] Deprecate UIWindow's init in ToolbarCoordinatorTest
  • 78f8219 Add feature flag for restructuring metrics consent settings.
  • 0999c76 Automated Commit: LKGM 16618.0.0-1075999 for chromeos.
  • 481e80c Roll Help App from IvtMZvq5utE0gFYSZ... to 42YmQyMLp0THwwhoO...
  • 4a7c760 Roll Chrome Win32 PGO Profile
  • 26bdfd8 Roll WebRTC from 457f8ae7e2e2 to 9056a05a34cf (1 revision)
  • 26b9e9f Introduce AggregatedJournal in i/c/b/i/actuation.
  • 63307d4 [signin] Deprecate account_consistency in MutablePO2TSDelegate
  • 89f236c Roll Chrome Mac PGO Profile
  • ec47d8c Add an agent skill for running LoadLine v1/v2
  • 6b3497c [iOS] Enable testShowHeaderOnReload in FullscreenSmoothScrollingTestCase
  • fdd63be Roll Chrome Win64 PGO Profile
  • 25a6b83 Roll DevTools Frontend from db5736fec160 to d1bc0830cfd0 (3 revisions)
  • ec16592 Roll vulkan-deps from d2a8908cd9d2 to 26ad58d0b7b7 (1 revision)
  • 55aae86 [iOS][Assistant] Fix Assistant container being pushed down
  • 8368087 Trigger Sign in promo from new tab search result
  • 579b5da Enable SendTextFragment test on Windows
  • 2c1e504 [Hub] Update top toolbar behavior if bottom bar enabled
  • 6c1dc4d [iOS][AppBar] Configure Tab Grid Button with Add/Move Tab to Group Menu
  • 0e3dd5e Refresh Public Suffix List to latest version
  • ef51631 [IOS][AIM] Dismiss the assistant sheet on new navigation
  • 106a23e [Fonts] Fix measureText() actualBoundingBox precision for MeasureRuns
  • e7fec38 Roll Perfetto from 0950d1381ab9 to 09f2475998ce (4 revisions)
  • 20fdbeb [shape-cache] Add flag for the extended shape-cache.
  • 911c5d4 [ios] call provider to update prompt for edit menu with co presence
  • 6a96840 [ios] Move ProceedWithUserActivity logic out of BrowserAgent
  • 57c92b7 Roll Chrome Mac Arm PGO Profile
  • 42a63f7 Update ExecutionCandidate to reflect server API changes
  • 729996f [Hub] Remove select_tabs from the overflow menu on non-tabs panes
  • 4dfe22a Add missing header for GrMockTypes
  • 61990cb Roll ios_internal from 59888857e612 to 49ac433459a8
  • 992a780 [iOS] Delete client certificate keys when deleting a profile
  • 56a7944 Roll V8 from f50fd8fedf25 to 74dc92cb0a12 (5 revisions)
  • 367a2da [CT] Automatic update from google3
  • c6f4288 Fix crash when overscroll container has no overscroll areas
  • c9c1494 Improve chooser bubble anchoring logic for fullscreen mode
  • 5c47046 [Phone Hub] Fix dangling pointer in InvalidConnectionDisconnectorTest
  • fde37ae Roll Chrome Android ARM64 Orderfile from bI0jr5jot0VmKAZ5b... to 1pscfeLeRCP6wY5X0...
  • e048c89 WebView Navigation APIs: Fix AndroidX build 2
  • 0800981 Roll WebRTC from 629212ab1d91 to 457f8ae7e2e2 (1 revision)
  • 3fb804b Fix typo from WaitForAutofillParsing to WaitForAutofillPredictions.
  • 532911e Implement AIA cert backtracking on WebView
  • 426038a Updating XTBs based on .GRDs from branch main
  • 6c5df62 [iOS] Resize the AppBar when entering fullscreen
  • 8df35e9 [FRE] Support `FirstRunDesktopRefresh` in SupervisedUserProfileIPHTest
  • 6bcbe82 [iOS] SigninAccountCapabilitiesSceneAgent to observe capabilities
  • 59b8b55 Roll src-internal from d5bcc509f8f9 to 539ced1f10ff (1 revision)
  • a9c6f23 Reland "Fix invocation of python scripts from within python scripts"
  • 6eec9f0 [Cleanup] Remove migrated page actions from location_bar_view.cc
  • 22baf96 blob_generator.py: remove desktop-specific code
  • b8197a0 [chrome://policy] Migrate chrome://policy/test to use mojo
  • d8954d1 Add set<Type>sWithPrefix methods to SharedPreferencesManager
  • 370852b Eliminate UNSAFE_TODOs in memory_usage_monitor_posix.cc
  • 7c9c954 Updater: Make time range tests separator-agnostic
  • 3a5df22 Eliminate UNSAFE_TODOs in css_selector.cc
  • 74754be Componentize ChromeSelectFilePolicy to fix circular dependency
  • 09f1fe1 Updating trunk VERSION from 7736.0 to 7737.0
  • cb973d0 ash: Dismantle crosapi's cros_display_config.mojom, part 7
  • d9a28cd ash: Dismantle crosapi's cros_display_config.mojom, part 6
  • f505e1b [ios] Remove redundant BVC fullscreen update
  • 5ea1a81 Flip StaticStorageQuota and remove field trial config
  • b064e11 Refactor AXImageAnnotator for clarity and efficiency
  • 0cd98c0 PrivateAi: Add button to send ZSS requests
  • 4abf01a Roll Chrome Win ARM64 PGO Profile
  • 3d82532 [Fusebox] AutocompleteInput mUserText -> Supplier
  • e16c9f3 [MagicStack] Fix indicator position in both LRT and RTL layouts.
  • 70c5d81 Roll ANGLE from fa4749fb9086 to 040cc83d70e7 (2 revisions)
  • 4283b38 Exit tab fullscreen when showing chooser bubbles
  • 77630e2 [iOS] Remove unnecessary TODO reference.
  • ad83e67 Roll V8 from 2d42057a689b to f50fd8fedf25 (3 revisions)
  • 4059dc3 [iOS] Launch Close Other Tabs Feature
  • 911fc29 ash: Dismantle crosapi's cros_display_config.mojom, part 5
  • e360a13 [RouteMatching] Remove NOTREACHED in FlattenFunctionBody().
  • 4fa118b [ios] Deprecate initWithFrame in ScopedKeyWindow
  • 85a01d2 Propagate ActionableErrors from ChromePasswordManagerClient
  • 9a0616c Roll Chrome Android Desktop x64 PGO Profile
  • 0238a87 Update deep scanning dialog message for saving to cloud storage.
  • 4c2816c Add OWNERS for synced_set_up junit
  • ee56706 Roll Kotlin Stdlib from mLhm2Qx7LKeQaTHlt... to uq9bdsIxS9Is_mAZr...
  • 8191f71 Update strings & image in Search AI Mode Sign in promo
  • 0ce9f37 Roll WebRTC from 0e036e13f489 to 629212ab1d91 (4 revisions)
  • 6c71c30 Roll WebView ARM64 Orderfile from PmmZOSfLp4AolRnf5... to yC96bPAwA4xlMUNYY...
  • 128ae81 Roll Chrome Android ARM64 Orderfile from YYxBLB89MQJeEdPz6... to bI0jr5jot0VmKAZ5b...
  • 89ee19a Roll clank/internal/apps from cde881886fb7 to bb3ba12a6b32 (1 revision)
  • c153421 [bookmarks] Encapsulate bookmark_model_unittest fixtures
  • c70e51f [carousel] Fix hover and active states for ::scroll-marker-group
  • 77a36b8 Revert "[Tab] Enforce single TabInterfaceAndroid per TabAndroid"
  • 888cc27 Roll DevTools Frontend from 669189f436b9 to db5736fec160 (1 revision)
  • 5b5149c Spanify ComputeBloomFilterHashes().
  • fa7161f Roll Chrome Mac Arm PGO Profile
  • 65ffcf3 [blink][xr] Bind camera texture only for the base layer
  • 4296f19 [profiles] Fix crash in GetLastOpenedProfiles() due to synchronous load
  • 6e352ee Reland "[iOS] Add tests to ensure that fullscreen metrics are correctly recorded"
  • 661b40a [ConAcc] Refactor Dice parsing logic and consolidate in DiceHeaderHelper
  • c357690 Update meet_effects hash in DEPS file.
  • 3369d92 [SVG] Remove flag SvgSmilPruneInstanceTimes
  • 2d489fd Roll llvm-libc from fd9bad083090 to 851188a13298 (1 revision)
  • 99e90ce Roll ios_internal from bc20458c014c to 59888857e612
  • bfc0720 [FRE] Support `FirstRunDesktopRefresh` in `login_ui_test_utils`
  • 36415e3 image: Extend diagnostic histograms
  • e492f94 Remove registry workaround in Isolated Browser tests
  • d792029 Roll src-internal from e3ecf8f24476 to d5bcc509f8f9 (1 revision)
  • 54dac6b Roll clank/internal/apps from 2db5bfdf0dba to cde881886fb7 (1 revision)
  • edca4cb ASH Refactoring: Remove 4 unused strings of IDS_EDU_LOGIN_WELCOME_*
  • bb7eb92 Roll V8 from 366820448676 to 2d42057a689b (2 revisions)
  • f572b13 Roll WebRTC from d9b92fe1bc81 to 0e036e13f489 (1 revision)
  • ac250f2 Roll Chrome Win32 PGO Profile
  • ad65ba8 [iOS]Deal with nil chosen name
  • 37efb4a Roll Perfetto from e858627a5208 to 0950d1381ab9 (2 revisions)
  • 06ce592 Roll Kotlin Compiler from rZVNs6pgsRU0LupGq... to RcyJsRii1TkItQ8Hj...
  • 98baed0 Roll Chrome Win64 PGO Profile
  • a27e12e [iOS]Deal with nil full name
  • e3ce354 [FRE Refresh] Adjust customization bubble to mock changes.
  • e8ccb89 Clear filter suggestions on committed cross-document navigations
  • 1088f04 Roll ANGLE from 455477231ca6 to fa4749fb9086 (4 revisions)
  • 2348edd Remove FormFieldData::selected_option()
  • db3cbc0 [iOS]Don’t open sync settings if unusable
  • 10c9f78 Use fdfind in remove_stale_pyc_files.py
  • 8754763 private_ai: Add kAutofillAiUsePrivateAi feature flag
  • be728a4 Roll ios_internal from 082d394d129d to bc20458c014c
  • 6afa69f [test] Remove expected failures on Mac14 for Wasm SIMD tests
  • 3b3f75f Roll Chrome Android ARM64 Orderfile from KC9AiYRcFFsM0el2e... to YYxBLB89MQJeEdPz6...
  • bb7fcbc Roll DevTools Frontend from 923e28b0edbf to 669189f436b9 (3 revisions)
  • 8a1c4d6 Skip ProxyPacUsed test when WinHTTP ignores custom PAC URL
  • e43725c [iOS] Remove stale LINT.IfChange
  • fe5ea1e [//gpu] Move CanCopySIDirectlyToGLTexture() to GLES2Interface
  • 90c87ce [IOS][AIM] Invoke cobrowse with initial medium detent
  • 8e0746a Update RLZ brand codes map for M147+
  • 98e4b8c [Blink] Streamline LowLatencyUsageSupportedForWebGL()
  • f14702b [permissions] Use base::raw_ref in PermissionRequestManager
  • 898fe70 Roll WebRTC from d11adf6359e4 to d9b92fe1bc81 (1 revision)
  • 7776bf3 [shape-cache] Introduce ShapeCacheKey.
  • 8668267 Update icon for Multistep Filter Suggestion toast.
  • e24e98b [Blink] Make LowLatencyUsageSupportedForWebGL() Android-only
  • 094aa19 [Blink] Remove usage of base::Feature in CanvasRenderingContext2D test
  • 0ab00a7 [Blink] Eliminate test setting kLowLatencyUsageSupportedForCanvas2D
  • ed2614a [//Blink] Remove kLowLatencyUsedSupportedForCanvas2D usage on CrOS
  • cffaf87 Roll WebGPU CTS from 4cafebf94970 to 81bf5e91ec26 (1 revision)
  • 82e765d Roll Perfetto from 9474ba3efc65 to e858627a5208 (1 revision)
  • 1279f7b Roll Chrome Mac Arm PGO Profile
  • 4fc6ef1 [//media] Remove VideoFrame from CanCopyVideoFrameDirectlyToGLTexture()
  • c31d540 [IOS][AIM] Invoke cobrowse on aim query when the current tab is attached
  • 2b8d407 Spanify CSSTokenizerInputStream.
  • 6043023 Revert "Update WebView arm64 PGO profile path to use Chrome's profile."
  • f10fd06 [iOS] Increase show-tab-group-in-grid-on-start expiry milestone
  • 491060e Migrate ServiceWorkerContextCoreObserver to ChildProcessId
  • 443257d Roll Dawn from 851ba3e50c35 to 46d1c217cb9b (1 revision)
  • e96642c Remove unused pass structs
  • 4a9ab1b [Autofill]: Fix @memory breakage after multiple backspaces
  • aa9cf32 Add a test policy for machine and user value conflicts.
  • 1f5dbdb [Blink] Modernize base::Feature name for WebGL low-latency usage
  • 8933f45 [Blink] Modernize base::Feature name for Canvas2D low-latency usage
  • d3eb01a Roll DevTools Frontend from 320a91bfedd6 to 923e28b0edbf (1 revision)
  • dbceaea Roll Skia from bfd7b47843ed to d6bc6d17d637 (1 revision)
  • fcfb174 Remove DEV_SUFFIX from BACK_FORWARD_CACHE_SETTINGS_V4
  • adeb097 WTF: Remove String::Truncate()
  • bdd455e Fix MobileMenuReaderMode metrics
  • cac3d3f Gardener: Disable flaky test: PasswordChangeFromCheckupDelegateBrowserTest.FormWaiterFindsFormAndSubmits
  • 96a8c3c Roll WebView ARM64 Orderfile from Vst6RDn3FKcBYLYns... to PmmZOSfLp4AolRnf5...
  • fd8ba9c WTF: Rename IsASCIIDigit() to IsAsciiDigit()
  • 701001b Roll Projector App from Z6jNemmwQlGR1q1hJ... to NIxGoQIonFz0gTSzw...
  • ebfe062 [Signin][Android] Extract loading state alpha values into constants
  • ab0058b [//gpu] Update bugref in gles2_implementation.cc
  • 73992bf Roll clank/internal/apps from 5a2419de6b54 to 2db5bfdf0dba (1 revision)
  • fe03cd2 Mark subtitle as not editable for table empty states
  • f1280a6 Roll Chrome Android ARM64 Orderfile from yZpZsXLtFmh7l-WFy... to KC9AiYRcFFsM0el2e...
  • 79707ce Roll WebRTC from b7e65ec7f0a7 to d11adf6359e4 (3 revisions)
  • 582ecf3 Roll Boca App from wxnp7ozYwL5ySfpsw... to zGDXewMwJd2MwYc8l...
  • 04f327b Remove the "CssTextJustify" runtime flag
  • bd74608 Remove the "FindAcrossParagraphsInTextarea" runtime flag
  • afffb96 Disable WebUIUrlNoConsoleErrorsTest.NoConsoleErrors
  • a08d74a Roll Chrome Win64 PGO Profile
  • 2a7f0ca [//gpu] MoveCanCopySIToGLTextureViaSkia() to GLES2Interface
  • 836e840 Move download_danger_prompt to chrome/browser/download/BUILD.gn
  • 95bde57 [//docs] Expand Linux support section of supported_platforms.md
  • b2a5c41 Win: Do not close handles to predefined keys
  • 1aa05b8 Roll Chrome Mac PGO Profile
  • 84883ca iwa: Make IWA installer the only handler for .swbn files.
  • 8eb3c5f Roll WebView ARM Orderfile from AP6J3I2tC1Yyu2EbC... to 9xlnjMCioo_popcnN...
  • b953836 Roll Chrome Win ARM64 PGO Profile
  • e050988 [Frameworks roll] Roll to 884250970 piper revision
  • 94dbf89 Roll Boca Receiver App from _2UjAwvvaYCLKlzwT... to j3RGuXrvKYkVztDSA...
  • 4ca3e6c Graphite: skip submit if there is no pending commands
  • 6db4a7a login: Pass local state PrefService to SessionContext
  • 169156b [CredMan] Restore isConditionalMediationAvailable to Credential interface
  • 23248b1 Roll ios_internal from 57a2ee718467 to 082d394d129d
  • e972877 Roll Perfetto from 18bc9d956e70 to 9474ba3efc65 (1 revision)
  • 96c015f Roll Chrome Win32 PGO Profile
  • b32c844 Roll Chrome Mac Arm PGO Profile
  • 683b0c2 Revert "Roll BoringSSL from 75a1350717c1 to 8338e40d7111 (4 revisions)"
  • eda6e99 Updating trunk VERSION from 7735.0 to 7736.0
  • f2d496f Revert "Enable NetworkQualityEstimatorAsyncNotifyStartTransaction by default"
  • f107664 Remove expired flag arc-vm-memory-size
  • 23290db Roll Skia from d18425ea5cdb to bfd7b47843ed (2 revisions)
  • 404354b Roll Perfetto from 9887f1b3cb6c to 18bc9d956e70 (1 revision)
  • 2398fc8 Ash: Guard quick_insert drive-file fallback
  • 7f5892a [PWA Migration] Add UMA for update/migration dialog user responses
  • 550b59c Roll BoringSSL from 75a1350717c1 to 8338e40d7111 (4 revisions)
  • 17809c9 Introduce WindowOcclusionTracker and integrate into AsyncInitializationActivity
  • 8b0e2bb Roll Chrome Android ARM64 Orderfile from cH1FYAluBB9ecXFwt... to yZpZsXLtFmh7l-WFy...
  • f3a3d45 Roll DevTools Frontend from 2a494ca4ac53 to 320a91bfedd6 (1 revision)
  • 06d35c4 Roll V8 from 1d35a992e5b6 to 366820448676 (3 revisions)
  • 8fbf0b9 Roll Chrome Android ARM32 PGO Profile
  • f9aa352 Add a feature flag for Android app occlusion tracking.
  • 550fbf0 Roll Chrome Mac Arm PGO Profile
  • d64b446 Roll Chrome Win64 PGO Profile
  • 37487c0 Enable NetworkQualityEstimatorAsyncNotifyStartTransaction by default
  • f5af487 Roll DevTools Frontend from c98dd4a71702 to 2a494ca4ac53 (1 revision)
  • 688c343 Roll Skia from 03df192c5f94 to d18425ea5cdb (1 revision)
  • 30d2ab2 Roll Chrome Win32 PGO Profile
  • 8d81f78 WaaP: Record the time when Initial WebUI renderer process is launched.
  • f50be19 [Vertical Tabs] Correct pinned container width calculations
  • 35d3573 Revert "android-a11y: Update AccessibilityNodeInfo#textSelectable property."
  • 47a5730 [Vertical Tabs] Scroll activated views beyond gradient mask if needed
  • 43b63ef Roll Chrome Android ARM64 Orderfile from 2TRq-NDTlgVlYdPNb... to cH1FYAluBB9ecXFwt...
  • 92ac8d8 Move c/b/apps/app_service/launch_result_type.h out from //chrome.
  • 4a045d1 [bedrock] FindTabbedBrowser() function call point refactoring
  • a2e1c0b ash: Dismantle crosapi's cros_display_config.mojom, part 4
  • 957a86b WaaP: Move Glic testing mode initialization to SetUpOnMainThread.
  • ae6178c Roll eigen from 929785924cf4 to ea13a98decd4 (1 revision)
  • 7b0fc8f ash: Dismantle crosapi's cros_display_config.mojom, part 3
  • fcdc2da Roll Chrome Mac Arm PGO Profile
  • dba3eb2 WaaP: Wait for page load in BrowserCloseManager test
  • 97c2744 Roll vulkan-deps from 3d9301dec00f to d2a8908cd9d2 (1 revision)
  • df7783e Roll Chrome Android ARM64 Orderfile from oYKYPY1lPYJdPK_AX... to 2TRq-NDTlgVlYdPNb...
  • 8838878 login: Pass local state PrefService to DemoLoginController
  • bc93162 Roll clank/internal/apps from ed8abe9bdc3a to 5a2419de6b54 (1 revision)
  • 304e645 Gardener: Disable GeolocationHeaderTest#testGpsFallback on x86_64 as well
  • 405fcaa Roll Skia from a6ccaf95c6e0 to 03df192c5f94 (1 revision)
  • 8178d15 [Animated pb] M144 bisect cl 2
  • bb6dec8 Roll Chrome Android ARM32 Orderfile from 4_vWhXjAzM0bCtWRC... to eFiwbS-ihdqzOnfnE...
  • 98777b3 [bedrock] FindAnyBrowser() function call point refactoring
  • a8a81cb Roll Chrome Mac PGO Profile
  • 4437ef1 [WebNN] Fix WebNNIntrospectionImpl thread safety and cross-thread task
  • 21491f4 Enable BFCache in android low-end devices
  • 46ad879 Roll Chrome Win64 PGO Profile
  • c26278e Roll Chrome Android ARM64 Orderfile from ruxcJwE7iDNCoQWh2... to oYKYPY1lPYJdPK_AX...
  • 3819209 Revert "Remove WidgetObserver::OnWidgetClosing from WebUIBubbleDialogView"
  • b9ac297 Support middle-click on home button to open in new tab
  • e7808aa Roll Chrome Mac Arm PGO Profile
  • 31ef831 Roll Chrome Win32 PGO Profile
  • 31d25f3 Roll WebView ARM Orderfile from XrNtTUPCiR3NJ4m9k... to AP6J3I2tC1Yyu2EbC...
  • 54493fa Roll Chrome Linux PGO Profile
  • 95fadc1 docs: fix typoes and links in adding_to_third_party
  • a6be2aa Move InstallResizeHandleWindowTargeterForWindow() to chromeos/ui/wm
  • 114d51a Move WmHighlightBorderOverlayDelegate from ash/frame to chromeos/ui/frame.
  • 4c67600 net: Track queue wait time for SPDY stream requests
  • 32e0374 Gardener: Disable flaky test: PasswordChangeFromCheckupDelegateBrowserTest.FormWaiterFindsFormAndSubmits
  • b245ff3 Roll vulkan-deps from e50fc8e9c4a5 to 3d9301dec00f (2 revisions)
  • ea55943 Roll Chromium Variations from buORp_ZhTeXfBGtaq... to rXkrosv-av4F-aoCk...
  • 9f187d9 siso: update to version 1.5.6
  • 0476df5 Migrate FrameContextMenuController from ash/frame to chromeos/ui/frame.
  • 2d05449 Mark iframe-loading-lazy-nav-form-submit flakey on windows
  • 24e7432 Roll Chrome Android Desktop x64 PGO Profile
  • a0de1af Roll Chrome Win ARM64 PGO Profile
  • a6b1f52 Launch DiscardPageWithCrashedSubframeRelaxedEligibility feature
  • cb9a593 Eliminate allow_unsafe_buffers in vector.h
  • a49a96e Roll Chrome Android ARM64 Orderfile from BLAyFQqufCMOHWkMo... to ruxcJwE7iDNCoQWh2...
  • 367eab5 Roll Chrome Android ARM32 PGO Profile
  • 83fc770 Roll Chrome Mac Arm PGO Profile
  • fa8c71a Allow anyone to modify the gitlink for third_party/libpfm4/src
  • 6859fe8 Roll clank/internal/apps from e61ef7c7e726 to ed8abe9bdc3a (1 revision)
  • b19a91a Roll WebView ARM64 Orderfile from X6z_Jod4889L8V0Op... to Vst6RDn3FKcBYLYns...
  • 4e4b30e Use StringView in InsertIncrementalTextCommand
← Back to all summaries