Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2025-11-19 on branch 'main'

Chromium Digest: 2025-11-19

Overview

This digest summarizes a day of development on the Chromium main branch, covering 662 commits from (29bb9f0) to (a96996f). Today's changes feature a significant number of breaking changes across the codebase, including the renaming of CSS `display: masonry`, the removal of the foundational `blink::Supplementable` class, and major API signature changes in core components.

Major Breaking Changes

  • ⚠️ BREAKING The experimental CSS feature display: masonry has been renamed to display: grid-lanes, along with related properties like inline-masonry. Web content, polyfills, or tests using the old masonry keyword will break. (76cc361) (7d1e648)
  • ⚠️ BREAKING The foundational blink::Supplementable base class and its header have been completely removed. This is a major refactoring that requires updates to any downstream code that used this mechanism to attach extra data to Blink objects. (4c9ba80) (ee79c91)
  • ⚠️ BREAKING The public Blink interface blink::MemoryPressureListener has been removed. Downstream projects must migrate to the base::MemoryPressureListener interface to handle memory pressure events. (c022244) (cf35b90)
  • ⚠️ BREAKING A roll of the libc++ dependency removed several standard library headers, including . Code that explicitly includes these now-removed files will fail to build. (afb865d) (1cdc8d8)
  • ⚠️ BREAKING The persistent cache component's API was refactored, removing the BackendParams class in favor of a new PendingBackend model. This alters the public API for creating and initializing cache backends. (da81816)
  • ⚠️ BREAKING Methods in base::flat_map and base::flat_tree now use templated signatures to support heterogeneous lookup. This change may break code relying on the previous, non-templated signatures. (3de1d9d)
  • ⚠️ BREAKING Core permissions logic has been moved from //chrome/browser/permissions to //extensions. This architectural change alters build dependencies and introduces new interfaces in ExtensionsBrowserClient that must be implemented by downstream embedders. (bc9fccb)

Web Platform & APIs

  • ⚠️ BREAKING Parsing of the Cache-Control HTTP header is now stricter and more compliant with RFC 7234. This may cause caching to fail for sites served by older or non-compliant web servers. (7041069)
  • ⚠️ BREAKING The Privacy Sandbox Topics API (document.browsingTopics()) is now marked for deprecation and will trigger warnings in the Developer Console upon use. (7403da1)
  • ⚠️ BREAKING The SystemEntropy API, previously part of the Performance Navigation Timing specification, has been completely removed from Blink, finalizing its replacement by the Confidence API. (39d9599)
  • ⚠️ BREAKING The Chrome DevTools Protocol Network domain was updated to support DirectSockets multicast, adding two new events (udpSocketJoinedGroup, udpSocketLeftGroup) and new options, which is a breaking change for CDP clients. (34c5740)
  • The performance.interactionCount API, which allows websites to measure the total number of user interactions, is now enabled by default and considered a stable feature. (5937143)
  • A new WebXR XRCubeLayer feature has been implemented, allowing for the creation of cubemap-based layers in WebXR sessions on Android with WebGL. (f2f11e8)
  • The behavior of pointer and mouse boundary events (over, out, enter, leave) after DOM modifications has been updated for better spec compliance and interoperability. (84dac72)

Core, Internals & APIs

  • ⚠️ BREAKING The kKAnonymityService feature is now disabled by default, ceasing communication with the k-anonymity server for Protected Audience ads. (7da13e3)
  • ⚠️ BREAKING The content::NavigationHandle::SetRequestHeader and RemoveRequestHeader methods now accept std::string_view instead of const std::string& for header names and values. (7d6e063)
  • ⚠️ BREAKING The internal SetCurrentThreadType threading function signature has been simplified to remove unused arguments, which could break downstream code that calls this low-level function directly. (d72aee4)
  • ⚠️ BREAKING All code and interfaces related to the experimental cookie deprecation label feature, including CookieDeprecationLabelManager, have been removed. (c095fc3) (5fe1c84)
  • ⚠️ BREAKING Two Safe Browsing histograms (SBClientPhishing.CreditCardFormEvent.*) have been obsoleted and replaced by new ...CreditCardFormEvent2.* histograms, which will break monitoring dashboards that relied on the old names. (be7529b)
  • ⚠️ BREAKING Feature flags for Private Network Access (kPrivateNetworkAccessForWorkers, kPrivateNetworkAccessForNavigations) have been removed, making preflight requests for subresources on more private networks the default and permanent behavior. (a56961c)
  • IndexedDB now uses mojo::BigBuffer for transporting large values between processes. This improves performance for large data entries but does not alter the public web API. (21de555)
  • A new feature, kHttpCacheInitializeBackendEarly, was added to initialize the HttpCache backend earlier during startup, reducing I/O latency on the critical path of initial network requests. (35767c0)

Platform Specific

  • ⚠️ BREAKING On Android, the SelectFileDialog now returns a virtual document path instead of a Content URI when a folder is selected. This breaks existing clients that perform their own URI resolution. (dbb82f3)
  • ⚠️ BREAKING Several Android WebView feature flags, including kWebViewShortCircuitShouldInterceptRequest and kWebViewMuteAudio, have been removed as their features are now stable. (18c7228) (b90f85d) (3e5cedf)
  • ⚠️ BREAKING On iOS, the public Objective-C class CRWSessionUserData was removed as part of a legacy session storage cleanup. (0afdef0)
  • ⚠️ BREAKING On iOS, the JavaScript function getUnownedAutofillableFormFieldElements was removed from the public __gCrWeb.fill API, making it an internal detail. (fd3d935)
  • ⚠️ BREAKING On Linux with Wayland, a recent change that adjusted touchpad scroll sensitivity was reverted due to user feedback. This restores the previous, more sensitive scrolling behavior. (b77b5ec)
  • On Linux, the browser UI now respects the system-level preference for whether middle-clicking in a text field pastes content from the selection clipboard. (362c5e8) (7357da8)
  • Support for Chrome Remote Desktop on Wayland has been improved through the addition of new D-BUS interfaces for the XDG desktop portal. (eaa4318) (d5fc9a2)

Developer Tools

  • Remote debugging security has been enhanced with a new 'approval-only' mode. When enabled, it disables all HTTP endpoints and requires each new WebSocket connection to be manually approved via a UI dialog. (7c12e9d) (0b9af34) (3d94716)
All Commits (662)
  • a96996f Fix line-ending in build/config/fuchsia/gn_configs.gni
  • eaa4318 [crd host][wayland] Add Request and Session D-BUS interfaces
  • 2f53281 Automated Commit: LKGM 16487.0.0-1073240 for chromeos.
  • 7d1e648 [Masonry] Update test file names to grid-lanes
  • e8b8864 Add Default Browser infobar to infobar-internals
  • 6951070 Roll Perfetto Trace Processor Win from f9a9f6207b9b to 2529dcb2fbaf
  • 7041069 Fix Cache-Control parsing to only use RFC 7234-compliant separators
  • 019a0f2 Roll BoringSSL from 723a34d27b85 to 14e752507fe9 (1 revision)
  • 6a19243 Chrome Next Composebox UI Fixes
  • c00e44f Add methods to support "All NTP cards" switch to Home modules config
  • d72aee4 [base] Simplify SetCurrentThreadType
  • 9450f14 [glic] Enable ChromeOS GlicBackgroundModeManager Test
  • b7e1667 Simplify the Multiline Omnibox logic.
  • 69c8b39 2-stage init for PerformanceScenarioObserverList
  • 00bc8f1 Suppress flaky Pixel_OffscreenCanvasAccelerated2D on Mac gl ganesh
  • afb865d Roll libc++ from 29d97bf40ff6 to be279eb793eb (20 revisions)
  • 77e3dba Roll Skia from dc90bb19819e to dc9d718def16 (2 revisions)
  • d56dd52 Roll src-internal from b9c2be35413b to ee7030ff99da (1 revision)
  • 502a436 Remove field trial config for AccessibilityTextFormatting
  • 7bfc827 Manual roll vulkan-deps from d95638c2cc39 to 4f291467d990 (1 revision)
  • dc070e7 [Desktop Android] Implement TabListBridge::AddTabsToGroup
  • 210aeae disk_cache/sql: Call LoadInMemoryIndex from Initialize to enable trace
  • e0b1273 popup-ui: Enable the feature flag for tests
  • b034cc7 [GlicMI] Update remaining checks to use IsMultiInstanceEnabled
  • b77b5ec Revert "Fix touchpad scroll sensitivity on Wayland."
  • 33dd349 Update glic ghost loading state.
  • 93bbc66 [Contextual Tasks] Add first iteration of <webview> results auth
  • 09acad3 [Contextual tasks] Update cache on task change
  • a9c1989 Roll Chrome Mac Arm PGO Profile
  • 76cc361 [Masonry] Update display name to grid-lanes
  • 3202e96 Revert "[IOS] Fix crash: [DCHECK] autofill::payments::IOSChromePaymentsAutofillClient::ShowSaveCreditCardLocally"
  • 29e01c7 Roll WebView ARM Orderfile from rjh1b2kbP2R8wWFH7... to C2d2EKXeiOidDwfxZ...
  • d683432 Revert "Mac: Always return original frameRect in constrainFrameRect"
  • 4cbf3a5 [GlicMI] Make IsWebContentsPresentAndMatching public
  • dd951be [lensoverlay] Add entrypoint label strings with "this tab".
  • 40592d2 Roll DevTools Frontend from 36e5721e667a to cd885374e464 (1 revision)
  • 311c905 Roll Platform Experience Win from 2427b1902fcb to b3f70835c714 (2 revisions)
  • 5330772 Navigate() Handles WindowOpenDisposition::NEW_POPUP
  • 1138617 rcaps: Launch DynamicProfileCountry on Android
  • 7ef62b2 spanification: automatically spanify device/fido/enclave/attestation.cc etc.
  • 20fca2b [Vertical Tabs] Fixing Toggle Vertical Tabs Text in Windows
  • e8a5efa Add metrics of how often old GPU persistent caches are deleted.
  • 45fd2f5 Roll ANGLE from e0a160343269 to fe81e1d5542a (1 revision)
  • bddabb6 [BWG] Implement multi active badge state.
  • be4307b Roll Perfetto Trace Processor Linux from 463cf36edd2e to 2529dcb2fbaf
  • 122a2db [omnibox][next] Update context menu string to reflect new guidance.
  • d9a6bb1 Update string_view_util.h for unsafe 2-arg string_view constructor.
  • 6448b5b Roll Website from 9918992493d3 to 53291bf0602e (1 revision)
  • be29b88 [gardender] Disable DirectSocketsUDPJoinLeaveMulticastEvents
  • 63730cc [PSF] Increase page action menu separator padding to 20px.
  • 4ea8a92 Roll WebView ARM64 Orderfile from B9KHpapU1KSUe7ECk... to -eoFS00rmvLHu2362...
  • 81546fa Move the classifier event logging so that request type is set first
  • df320fe [GlicMI] Make sure that the webui_contents has a compositor for screenshot
  • 5937143 [EventTiming] Enable EventTimingInteractionCount by default.
  • badf636 Select the correct audio playback method for Class Tools CRD sessions
  • 90a7e10 Update CBB autorolll for the builds refs
  • 98e3c8e Roll Chrome Android ARM64 Orderfile from AjOH2RTjNQjAZiLxU... to dZ3X0t2OVCz1xzKbp...
  • 183d62f Make ManagePasswordsUIControllerTest compatible with the new page actions framework
  • d45dce7 [iOS] Add data_controls_egtest skeleton.
  • 61d3d9f Make DeviceInfo.setForTesting methods apply to native code
  • 3a0e473 Enable kLazyBrowserInterfaceBroker for desktop Android
  • 709362a Move kLazyBrowserInterfaceBroker to a content public feature
  • bd1702b [Extensions] Update chrome_url_override test extensions to MV3
  • 5fe1c84 Remove cookie labels from URLRequestContext
  • b66f900 Make Safe Browsing OHTTP key fetch URL configurable from Finch
  • c6619a2 Fix refactoring mishap
  • 7c493d9 Roll Depot Tools from 14f053740d20 to 778af1e3b8ad (1 revision)
  • b89802a Create startOnIncognitoBlankPage() so tests can start in Incognito
  • 2ebd327 Add metrics for Desktop-like Incognito windows on Clank
  • a869094 CreateBrowserWindow() Supports BrowserWindowType.POPUP
  • ff41092 Roll Skia from 1974d40a9dc7 to dc90bb19819e (4 revisions)
  • 7ca5242 IDB: minor improvement to unit test
  • be7529b Add telemetry breakdown for credit card form CSD ping by referring app
  • a3192b9 [Media Indicator] Use close button opacity for visual changes
  • fd2f91c Revert "Disable some LinkToTextMenuObserverTests on Win"
  • 53200aa ash: Delete some obsolete Ash.Birch metrics
  • 78325e0 [ios] Mark DataControlRules policy as GA on iOS
  • 1559899 Roll DevTools Frontend from c89fc0d2ece2 to 36e5721e667a (1 revision)
  • ea8a19f [TBHSP] Fix crash for animations only added to one animation type
  • ae37265 Add tab group support to vertical tabs.
  • 13b728d Roll Chrome Mac PGO Profile
  • be36855 Roll src-internal from a68e4cce9b0d to b9c2be35413b (1 revision)
  • c67aba3 Use std::move with value_or in SimpleUrlLoader callbacks
  • 565d1af Increase Mac/Debug/Intel pixel test shards
  • 621d1f6 [ntp-next] Pass `maxTilesBeforeShowMore` as a prop to `cr-most-visited`.
  • f21d438 Revert "Consolidate CHROME_VERSION_EXTRA logic to base/nix"
  • 2bfab2f Avoid crash on federated session registration
  • d754f62 Roll clank/internal/apps from 2bff5f550cfb to 99bd0cb68d14 (1 revision)
  • 3f86caa Enable field trial testing for infobar refresh
  • ee2eb0e Roll ios_internal from fbb337ee1327 to bcbdb6b7cd2a
  • 6c8307b Roll Chrome Win64 PGO Profile
  • ec35c77 Roll Chrome Win32 PGO Profile
  • 6e73c9b Show the status of some new features to chrome://safe-browsing
  • 9a6c439 [iOS][CX] Implement resume in passkey importer
  • d1e3078 Require page stabilization after scroll into view
  • de0eed2 Revert "[Android] Migrate LocationBarLayoutTest to Public Transit"
  • c029730 [Read aloud] Handle superscripts split across sentences.
  • b61d10a Roll Chrome Mac Arm PGO Profile
  • b29c69d Supply additional device info in the request to the demo server
  • 15b63ad Roll Perfetto from 463cf36edd2e to 2529dcb2fbaf (2 revisions)
  • 91837b3 Roll Depot Tools from b5427d5ad8b5 to 14f053740d20 (1 revision)
  • 362c5e8 [Linux UI] Respect middle click paste preference
  • 7357da8 [Linux UI] Add Clipboard function for middle click paste pref
  • c1a9af9 Unify UserVerificationRequirement conversion to and from strings
  • 1c9abe1 Roll vulkan-deps from bcfaf61b48e0 to d95638c2cc39 (2 revisions)
  • f0efa98 [DomStorage] Delete histogram SessionStorageContext.OpenResultAfter
  • 142d0a4 Roll WebRTC from 88083095f789 to 9af1a88de4f9 (3 revisions)
  • 96dd307 Reverts `AutoResetCtaTransitTestRule` to `FreshCtaTransitTestRule`.
  • 9d75365 [Media Indicator] Prevent updates during shrink close animation
  • d04c3ee [actor] Deal with PDF files not being actuated correctly
  • da81816 [persistent_cache] PendingBackend refactor
  • f5b9744 Roll Crossbench from ef1e8374fff7 to 73f466f9f655 (1 revision)
  • 32b9cfa Roll DevTools Frontend from 35151fe5e2ad to c89fc0d2ece2 (1 revision)
  • c88e9da [iOS] Refactor Content Suggestions Safety Check
  • 0d1f0ff Consolidate CHROME_VERSION_EXTRA logic to base/nix
  • 7b30546 Roll ANGLE from c16a44b0111c to e0a160343269 (3 revisions)
  • bee8234 AddOutOfFlowChildCandidate() to take LogicalStaticPosition.
  • 1ead3ee Add hnakashima@ to chrome/android/javatests OWNERS
  • add78fb Merge gpu::SemaphoreHandle::is_valid() impls
  • c0c74ce Use tflite OWNERS for tensorflow-text
  • f60d162 [TreesInViz] Run MoveChangeTrackingToLayers() in Viz.
  • 9b23f2f Don't truncate pixel values to integers in ToString().
  • cf4a79d Roll Perfetto Trace Processor Win from 13281e834491 to f9a9f6207b9b
  • c022244 Remove blink::MemoryPressureListener
  • 486147f Roll src-internal from 5b2ac1084565 to a68e4cce9b0d (3 revisions)
  • 09182e8 Roll Perfetto Trace Processor Linux from dce4574083b3 to 463cf36edd2e
  • ae1925a [gap-decorations] Split GenerateMain/CrossIntersectionList
  • 0e2cd18 WebNN: fix crash from premature move of ort::Environment
  • 22729cb Roll Chrome Android ARM64 Orderfile from GLKubSr0BeJflEd_X... to AjOH2RTjNQjAZiLxU...
  • c98f0ef Roll BoringSSL from 1396c25c7149 to 723a34d27b85 (1 revision)
  • ac9e290 Roll Chrome Linux PGO Profile
  • 9939316 legion: Remove permanent failure state for a more resilient client
  • 4a555a2 [lens] Remove lens query controller instance from overlay.
  • e8dd78c Roll WebView ARM64 Orderfile from EcFHNJWMuDGpDhOMp... to B9KHpapU1KSUe7ECk...
  • d040127 [gnrt] Dedupe `gnrt` invocation in `run_gnrt.py` and `gnrt_stdlib.py`.
  • eac57c5 Recaculate button visibility on url bar wrapping change
  • c41af92 code health: Replace base::RunLoop for base::test::TestFuture
  • 10acde6 [IOS] Fix crash: [DCHECK] autofill::payments::IOSChromePaymentsAutofillClient::ShowSaveCreditCardLocally
  • 9f16950 [gnrt] Add `gnrt fmt` sub-command to format `gnrt_config.toml` etc.
  • a945c73 popup-ui: Integrate DesktopPopupHeader into BaseCustomTabActivity
  • 2b2a5b9 popup-ui: Implement DesktopPopupHeader component
  • ac4ab5a Plumb through host_public_key and update OpenChannel struct
  • f742b2f [Esc Secondary Activities] Escape Handling for sheets in Settings
  • 2f5b00b Clean up actor policy checker test
  • 9e9126c Change infobar refresh properties to account for eliding
  • ebeae95 Roll Chrome Android Desktop x64 PGO Profile
  • ecca6d0 Mac: Always return original frameRect in constrainFrameRect
  • 0b3a9f2 WebUI: Enable @webui-eslint/web-component-missing-deps by default.
  • 48015dc [gnrt] Sort `//tools/crates/gnrt/Cargo.toml` using `cargo sort` tool.
  • 3f6d335 Resetting tracker mock from test rule
  • 21de555 IDB: use BigBuffer to pass values over mojo.
  • 7403da1 Add deprecation warning for Topics APIs
  • 1a8f539 Reland "Move DICTIONARY sync data type behind history toggle"
  • 73970f9 Forward declare more ui/color bits
  • 8d58a10 Roll clank/internal/apps from c98f7354383a to 2bff5f550cfb (1 revision)
  • 5135203 Move ConfigParseSuccess histogram to be shared across surfaces
  • 3594c91 Merge back-forward transition shared image features into one study
  • b287f5c Roll Perfetto from f9a9f6207b9b to 463cf36edd2e (7 revisions)
  • 135561c [ios] Rollout AutofillPaymentsSheetV3Ios in testing trial config
  • 86836b3 Propagate Tool Mode to Suggest
  • d0616a7 [VL] Make InMemoryURLIndex::OnURLVisited() ignore 404s
  • b16dc97 Roll Chrome Android ARM32 PGO Profile
  • eeda283 Fix cloning NavigationEntry when there are pending RFH deletions
  • f744db2 [Hagrid ChromeOS] Extend the check that checks whether re-auth is enabled on pref
  • 29502c8 [RWM][RecentTabs] Persist timestamp of recently closed group to disk
  • 92ccc78 [fuchsia] Finish push messaging api implementation
  • 62f52a9 [gardener] Disable testPinTabsStatePersistWhenClientRestarts
  • 04c4bf1 Roll clank/internal/apps from de525d256842 to c98f7354383a (1 revision)
  • 2740f2b [VL] Make FaviconCache::OnURLVisited() ignore 404s
  • d1b4ab6 [BNPL][Clank] Disable payments autofill inside BNPL ephemeral tab
  • e35d6ae WebNN: remove resource task from Ort backend
  • 1a2c777 Use base::span for scheme lists in shell_integration_win.cc
  • 0e93541 Roll Chrome Mac Arm PGO Profile
  • 47b0e59 Roll Depot Tools from a40c63a40be0 to b5427d5ad8b5 (1 revision)
  • 1cdc8d8 Roll libc++ from 454a561737fb to 29d97bf40ff6 (12 revisions)
  • 37acdfb [AIAE] Add BNPL error handling logic for AI-based Amount Extraction
  • 3cb61bb Roll Crossbench from 037476e9c3cc to ef1e8374fff7 (2 revisions)
  • 0e1bacc [Code Health] Clean up stale base::Feature "EcheLauncher"
  • fccac7b boca: Make user prefs syncable across accounts.
  • 076b8b9 GpuPersistentCache: Make reads wait max 20ms for writes to finish
  • d5fc9a2 [crd host][wayland] Add portal RemoteDesktop and ScreenCast D-BUS interfaces
  • 032927a [crd host][wayland] Rename PipewireCaptureStreamManager
  • ac4c6c7 Fix crash in GlicFloatingUi::MaybeSetWidgetCanResize
  • 2593e4b [Identifiability] Remove instrumentation of HTMLMediaElement::canPlayType
  • 3691c8c Split up ui::ColorMixer constructors
  • 297c8b7 [gardener] Disable anchored-transition-display-none-001.html
  • adbb2ed Revert "[BrowserControls] TabStripTopControlLayers handle tab strip transition"
  • 9563b95 [MinimalUi_MenuButton] Remove unnecessary .post call
  • b0db9c8 Roll DevTools Frontend from 2df407c5490f to 35151fe5e2ad (2 revisions)
  • cb217ba Actor treats provided scroll distances as DIPs not physical pixels
  • 6102ee8 Fix format in NavigationEntryImpl
  • 9b3ae95 Use base::StrCat and std::string_view to avoid string copies.
  • 99e7499 [Persist] Create StorageId type
  • 2691194 [a11y] Add role description for table captions on Android.
  • 2c354b6 Revert "cpu_performance: Override the default implementation for Chrome"
  • bb2de9e Roll vulkan-deps from 0b01f8fa28c7 to bcfaf61b48e0 (1 revision)
  • cf35b90 Migrate blink::MemoryPressureListener to base::MemoryPressureListener
  • f6c8dfc ipcz: Add missing BUILD.gn files
  • b5015b9 [lens] Create LensResultsPanelRouter to abstract side panel logic
  • fe9d3af [iOS] Passkey event logging cleanup
  • 51b2a0c [Settings containment] Disable feature flag for failing tests
  • 5f58efb Roll src-internal from 9d20fd176f43 to 5b2ac1084565 (1 revision)
  • 5f3f393 [BNPL][Clank] Fix BNPL VCN snackbar race condition
  • 57d0e6a [BrowserControls] TabStripTopControlLayers handle tab strip transition
  • e5d1463 Reland "[Toolbar] Set hairline gravity to bottom"
  • dbcbe64 Revert "Load the classification model on startup for eligible clients"
  • 2b91e5b Fix StatisticsRecorder::PrepareDeltas() excluding some histograms
  • b61cecd PaintTiming: Make reporting largest ignored image consistent with text
  • 24b0d1f Add pixel tests for the account settings page
  • c095fc3 Remove cookie deprecation label code
  • 35d5856 [iOS] Move the autodeletion IPH to a navigation controller
  • 604ca97 Roll Platform Experience Win from c2bd5ad0f237 to 2427b1902fcb (1 revision)
  • 046e50d Roll Skia from b5dc8c3494ac to 1974d40a9dc7 (3 revisions)
  • 284854a [Android] Migrate LocationBarLayoutTest to Public Transit
  • ee574b2 Roll Chrome Android ARM64 Orderfile from xnQfPOyXQYDljUCJc... to GLKubSr0BeJflEd_X...
  • c49ae03 Fix or disable Desktop-like Incognito windows feature for TabsTest
  • e274f6d [TBHSP] Remove leading_exclusion.ContentWithPadding from top of TBHSP.
  • 3d30575 Roll WebView ARM64 Orderfile from LbPT-1mIHyNlGn--m... to EcFHNJWMuDGpDhOMp...
  • f234b79 [ios] Remove obsolete class AllWebStateListObservationRegistrar
  • 6725a1c [Save to Drive] Add field trial testing config for save to drive survey
  • 5c2e26a [Built-In API WPTs] Disable multimodal AI tests on Mac.
  • 0fc94be Updating CorpMessagingPlayground to use new PingPong proto message
  • e47aa94 [TDR] Remove TODOs linked to issue 40616187.
  • 2014665 Handle 'Burst' messages in Corp messaging playground
  • 4457b6a [iOS] Update table view cell style
  • cda0dba Initialize ExtensionInstallPolicyServiceFactory during startup
  • 31b2baa [chrome stdlib] Cleanup includes
  • 7236ed5 Roll WebRTC from bff7ad9c8629 to 88083095f789 (1 revision)
  • f30ceb7 [Auto-PiP] Add UMA for auto-pip playback time and ratio
  • f6b4954 Roll Perfetto from dce4574083b3 to f9a9f6207b9b (3 revisions)
  • b8871b8 [ios] Stop referencing legacy session storage path
  • bb4f907 [Signin][Android] Implement sign-in promo layout for signed in case
  • 0054ac4 [TBHSP] Reparent tap strip on touch mode change.
  • 39d9599 Remove SystemEntropy code from Blink
  • 56bfb22 Disable FeedV2NewTabPageTest#testNavigateBackToNTPWithFeeds for x86
  • 9ff50cd Extend ChromeOS.Keyboard.TimeUntilFirstBrightnessChange.* histograms.
  • 1676074 Simplify async waits in PasswordManagerUIHandlerUnitTest
  • 4517010 [VL] Make HistoryEventRouter::OnURLVisited() ignore 404s
  • 82e76bd [iOS] Add a new command to display a message after dismissing keyboard.
  • 33696dd Extend expiration for ChromeOS.Settings.Device.HasAmbientLightSensor.
  • 42ae0bd Use iterator for map erase operations.
  • 85080ac Roll Crossbench from 47487469f296 to 037476e9c3cc (1 revision)
  • 5777b0d Roll Perfetto Trace Processor Linux from 13281e834491 to dce4574083b3
  • 1bcb5eb [actor] Fix crash in TOU check
  • 7c53502 [NTP Customization for MVT] Enable NewTabPageCustomizationForMvt by default
  • bd58d09 glicmi: Add Glic metrics for tab binding, pinning, and generic shown
  • bfc785f Updating CorpMessagingPlayground to use messaging authz token
  • 4421cd0 YourSavedInfo: Always show "Identity docs" and "Travel" categories
  • 8d8cf0f Add a fieldtrial testing entry for GlicEnableMultiInstanceBasedOnTier.
  • 112da52 Revert "infra: Temporarily remove linux-official from tree-closures"
  • 9a2025e [Extensions] Remove TabStripModelObserver from menu delegate views
  • dfa3ac2 Roll Perfetto Trace Processor Win from dc53863c4079 to 13281e834491
  • 987d358 Remove code for WebView's QUIC idle connection timeout experiment
  • adef24c fake_dmserver: Improve documentation of the tools
  • 14540e6 Revert "[tables] Make vertical-align on table-cells safe by default."
  • d66f5fd [iOS] Add navigation bar in tabs picker
  • 2815dce [iOS] Add empty state for unrealized web states
  • a76a70e Revert "Remove unused entries in InputMethodSettings API."
  • c5e5fe5 Roll clank/internal/apps from 6db0a5dd064d to de525d256842 (1 revision)
  • 4c39112 [iOS][CX] Open password manager before starting import
  • c287474 Update Password views to use BubbleAnchor
  • 6d10c61 [iOS][mvt-customization] Update string for site blocking
  • bd9b1e5 [TDR] Remove TODOs linked to issue 162365553.
  • 4f3c53a Remove OverlayProcessorUsingStrategy.NumOverlays* histograms
  • 7d568b4 Roll Chrome Mac Arm PGO Profile
  • a9c5587 Revert "[Android][Signin] Use ConstraintLayout for HistorySync Layout"
  • 21efcdf [iOS][Gardener] Disable flaky tests in InactiveTabsTestCase and StartSurfaceTestCase
  • 0236a54 [iOS] Create a Feature Param for Ask Gemini Chip Prepopulate Floaty
  • fa4a481 YourSavedInfo: Align category visibility with Autofill AI eligibility
  • 6420f58 Clean up SidePanel z-ordering
  • 049d212 Roll build deps in standalone ipcz
  • 79c84d6 Use static constexpr char[] in net HTTP request/response headers.
  • 594c094 Replace kSync with kSignin in c/b/devtools
  • 3750a34 [iOS] Replace SettingsImageDetailTextItem with ContentConfiguration
  • 6c5c28a YourSavedInfo: update field trials to include another experiment
  • 1158ae7 Roll Chrome Win64 PGO Profile
  • 60a6a10 Match parameter name in header to source
  • eabfd53 Update our copy of BuildCompat.kt
  • 8b002d5 Add andysjlim@ to SAFE_BROWSING_FEATURE_OWNERS
  • c0eeb42 [iOS][Gardener] Disable flaky test
  • 49f23d1 [iOS] Prepare to replace SettingsImageDetailTextCell
  • f21f9f0 [AIAE] Integrate BNPL flow for users haven't seen the AI terms
  • 9d99c3f [Android] Hide Keyboard Accessory on page scroll
  • 2edcb00 [iOS][autofill] Move getFormElementFromIdentifier out of form.ts
  • 9aefef6 [iOS][autofill] getFormIdentifier as util function
  • 77a5fd5 [BWG] Auto-dismiss Page Action Menu when reverting translation.
  • ba63f74 Roll ANGLE from 57b8f80127e0 to c16a44b0111c (1 revision)
  • 94248a6 Roll V8 from a45a15dccb89 to 802e662c39e6 (11 revisions)
  • 0dbcae3 Remove the kill switch for draining the WebView prefetch queue
  • 4c2e0ad bt-internals: Migrate chrome://bluetooth-internals to TypeScript (6/N)
  • 9325a09 CastOS: fix compile failure of cast_audio_renderer
  • 1e24d4a Roll WebRTC from b2a3c095a5dc to bff7ad9c8629 (2 revisions)
  • 8371e84 [iOS] Add unit test copy/paste reporting
  • 185ad34 build: Move Android lint target from bundle to apk
  • 418db65 [UNO FF] Add prefs for showing history promo 5 times
  • 93cc56d [aim][popup] Fix state preservation on close.
  • 0d759de [WaaP] Add MetricsReporter::Measure(start_mark, end_time)
  • 765d48b Move HasExtraUiToDisplay from ConnectorsService to ConnectorsServiceBase
  • a56961c [LNA] remove worker and navigation PNA feature flags
  • 941034b Roll Perfetto from 13281e834491 to dce4574083b3 (2 revisions)
  • e12836f Roll clank/internal/apps from 98963f89131a to 6db0a5dd064d (1 revision)
  • b4fae3c [VL] Make ChromeTemplateURLServiceClient::OnURLVisited() ignore 404s
  • 00d61f0 [TDR] Remove TODOs linked to issue 40945153.
  • 9aa975d Enable EncryptedPrefHashing by default
  • 05ad2a4 [Desktop Zoom] Add fieldtrial for feature flag
  • 84dac72 Re-enable interoperable Pointer/Mouse boundary events after DOM changes
  • 72e1795 Roll Media App from 6ALBqXCaamztpSBWl... to 9RgKkXH3aOAlculQK...
  • 3dfa1cc [ios] Remove unnecessary deps
  • 3000774 Drop irrelevant mouse event in BrowserTests
  • afc4630 [ios] Fix incorrect dependency //ios/chrome/{common => browser}
  • f2f11e8 Implement WebXR cube layer
  • 569ae32 Roll DevTools Frontend from 3059d7157fcf to 2df407c5490f (1 revision)
  • 899fefd Roll vulkan-deps from fd4a136138b7 to 0b01f8fa28c7 (2 revisions)
  • 3744170 Spanification of process_singleton_posix.cc
  • e330e09 [UNO] Fix account setting managed disclaimer string
  • 713677a Roll WebView ARM64 Orderfile from IdI31U_Ua6QtV2ErM... to LbPT-1mIHyNlGn--m...
  • 35c6ff0 Legion: Rename ModelExecutionFetcher to -Impl
  • 9ee3b0b [a11y] Update TextInputState.getSurroundingTextInternal to include the offset.
  • d81b89a [PEPC] Remove deprecated pseudo-classes for Permission Element
  • 38b0b97 [IdentifiabilityStudy] Remove some unused includes in element.cc
  • 4f5f1de [tips] Update the bottom sheets for tips to include a11y components
  • 389ccad CastOS: Spanify crash_key_breakpad.
  • e708b61 Roll ios_internal from f7b58c3c3d5c to fbb337ee1327
  • 1bc86ef Updating trunk VERSION from 7534.0 to 7535.0
  • f127f38 Roll Chrome Android ARM64 Orderfile from tau6erO1WQXPN7vBW... to xnQfPOyXQYDljUCJc...
  • a81c1d8 [iOS] Fixes PromoStyleViewController issues
  • 7cbfc84 Improve memory safety of cc::ScrollJankV4Frame::args
  • a83fc54 Roll Crossbench from 2f3e5f4efb74 to 47487469f296 (1 revision)
  • 78b2d7f Roll Dawn from f48e51efdbe3 to 0dddef17c0ba (4 revisions)
  • 9b5e5c9 Bump/remove expiring Attribution Reporting metrics
  • d8ef095 Roll Help App from x27M80gWQxMMZKuXp... to iCDEOMKc4CzLbLSas...
  • 0ee58db Revert "autofill: Update RSA cert for captured sites test"
  • 8f62a31 [TreesInViz] Fix how we detect trees_in_viz_in_viz_process for metrics collection
  • 2a5d9d5 [iOS] Fix cell load/reuse issues in the NTP customization menu
  • e19f28c cpu_performance: Override the default implementation for Chrome
  • c559d9d [aim][popup] Restore the ability to dismiss/delete history suggestions.
  • a5a353c Not load native library only for --disable-native-initialization switch
  • 94d888f GpuPersistentCache: Store entries in a MemoryCache for fast lookup
  • c661889 [Autofill] Fix semantics of Form[Field]Data::DeepEqual()
  • ccd2b0d Roll src-internal from ad74d2ea29b0 to 9d20fd176f43 (1 revision)
  • 06783c1 [webium] Fire kElementBoundsChangedEvent for TrackedElementWebUI
  • e8f161f Reland "[glic] Updated buildflags"
  • 6cfc8ae [TDR] Remove TODOs linked to issue 417467809.
  • 53e22e7 [RSG] Apply fetched plus address as the AutofillProfile's email in ASG
  • fea7c3b Remove old fieldtrial_testing_config entries
  • 50ac5f1 Roll WebView ARM64 Orderfile from B9c5y-Bdu7nFNgmXx... to IdI31U_Ua6QtV2ErM...
  • 82224e9 reenable flaky macos nudge test
  • e6f0504 Roll Chrome Mac PGO Profile
  • fd3d935 [iOS][autofill] getUnownedAutofillableFormFieldElements as util function
  • 9f1fe0f Roll DevTools Frontend from 3720b2d4d8ae to 3059d7157fcf (7 revisions)
  • 2b49284 Roll ios_internal from 844964102a71 to f7b58c3c3d5c
  • 5722174 [wallet] Add IsEligibleUser function
  • 2bf59b2 Remove fieldtrial testing config for WebViewUseRenderingHeuristic
  • 971ad9c [Extensions] Web Request parse SecurityInfo
  • 923f16e Update Pixel_ViewTransitionsCapture end condition
  • 4512193 Roll Chrome Android ARM64 Orderfile from PiI0XpSpUgPaeMZ1r... to tau6erO1WQXPN7vBW...
  • 3de1d9d [base] Refactor flat_map and flat_tree for improved heterogeneous lookup.
  • e943796 Roll Chrome Mac Arm PGO Profile
  • ffccaef legion: Simplify GetHandshakeMessage
  • c737a78 LPP: Add declarations for new Local Pin Password related feature checks
  • 7d6e063 Make NavigationHandle takes HTTP request headers/values as string_views.
  • 634a388 Roll WebRTC from 59391e5e8ae6 to b2a3c095a5dc (7 revisions)
  • 87bd27c Revert "Simplify cc::EventsMetricsManager::ScopedMonitor::DoneCallback"
  • 2f80a08 Roll Perfetto Trace Processor Linux from dc53863c4079 to 13281e834491
  • 6416985 [Growth] Disable Signin variation for Profile Creation Friction Reduction experiment.
  • 9b41e8a Disable glic tests caused bot failures temporarily.
  • 4bd352e [KP] Automatic update from google3
  • a34981e [TDR] Remove TODOs linked to issue 279503977.
  • 3d94716 Implement an infobar for active debugging connections
  • 6c633fa Roll vulkan-deps from 127cb4cd6f92 to fd4a136138b7 (1 revision)
  • 0b9af34 Implement a dialog to confirm debugging connections
  • 4f8dd59 Add a feature flag for approval-mode DevTools debugging server
  • 7c12e9d Support approval-only mode for the debugging server
  • fcfbacd Roll V8 from b96cbbf4f37a to a45a15dccb89 (6 revisions)
  • f83c8e1 Roll Perfetto Trace Processor Win from aeb21f4c54d2 to dc53863c4079
  • 3ae9f8a LoadAllTabsAtStartup testing config
  • 9fdf44a Roll Chrome Win ARM64 PGO Profile
  • 8c10708 Roll Updater chromium_mac_amd64 from 2@1541001 to 2@1542026
  • 726d3fc Roll Chrome Linux PGO Profile
  • 6340471 [iOS] Migrate PromoStyleViewController to use ButtonStackConfiguration
  • e0d8a1a Roll DevTools Frontend from c8d71ecec521 to 3720b2d4d8ae (2 revisions)
  • aac0438 [CT] Automatic update from google3
  • 0afdef0 [ios] Remove obsolete class CRWSessionUserData
  • edb9f02 [Android][Signin] Use ConstraintLayout for HistorySync Layout
  • 18c7228 Remove the experiment shortcutting shouldInterceptRequest
  • b12ec24 Roll Skia from 2054d87c6a85 to b5dc8c3494ac (1 revision)
  • e64ed5f [IdentifiabilityStudy] Remove code measuring device orientation
  • 5370eac Roll Fuchsia SDK from 30.20251118.5.1 to 30.20251119.3.1
  • 0a3c874 Roll ios_internal from 5b821bbfbab0 to 844964102a71
  • db68ca8 Roll Projector App from NHDxWZurrfuSnh_Pk... to AjGJJh0ooYJFQLxqy...
  • 26371f6 Updating XTBs based on .GRDs from branch main
  • ee5b382 [IdentifiabilityStudy] Delete code measuring canPlayType()
  • 7da13e3 Disable the k-anonymity service by default.
  • 43b0c80 [IdentifiabilityStudy] Remove code measuring gamepad
  • 28523bc Use more standard enumerator names in web_apps
  • c47a815 Let ActorFillingObserver observer CCAM
  • 4031946 Enable the Passage Embeddings Service on Android
  • 1c4fdbf [Code Health] Add IFTTT for PermissionPromptDisposition enum and histogram variants.
  • 04b709a Roll Chrome Android Desktop x64 PGO Profile
  • bea66a0 [iOS] Replace SafeBrowsing
  • 7a7e6a8 Roll Chrome Android ARM32 PGO Profile
  • cd6558d Roll WebView ARM64 Orderfile from v_2HFJdu8fTYGdLgu... to B9c5y-Bdu7nFNgmXx...
  • 8663f86 Roll Chrome Android ARM64 Orderfile from zwRNCkQeB0RTraeC3... to PiI0XpSpUgPaeMZ1r...
  • f315d77 Use RestrictTo instead of @hide in package-info.java
  • 210bf32 Roll Crossbench from fe484655ae94 to 2f3e5f4efb74 (1 revision)
  • dc2913b [GdpIntegration] Enable starter badge by default
  • 1b46384 Roll Perfetto from dc53863c4079 to 13281e834491 (2 revisions)
  • c648ed8 Roll Updater chromium_linux64 from 2@1541004 to 2@1542004
  • 206b050 Exclusive Access Manager Back Handler does not intercept Esc key
  • 7c73515 Roll ANGLE from 7b8565523f58 to 57b8f80127e0 (1 revision)
  • a932ed4 Extend expiry and update description for Password Manager histograms.
  • b8825b4 Roll Perfetto Trace Processor Linux from aeb21f4c54d2 to dc53863c4079
  • b43b684 Roll DevTools Frontend from 526659b347e1 to c8d71ecec521 (2 revisions)
  • b4d77cd Roll Updater chromium_win_x86 from 2@1541022 to 2@1542009
  • 32b03a7 LPP: Remove unused function PinBackend::MigrateToCryptohome
  • e30ddf9 Roll Updater chromium_mac_arm64 from 2@1541004 to 2@1542002
  • 637cf12 Migrate c/b/r/chromeos/gaia_action_buttons.js to TypeScript.
  • d1ae8cf Roll Enterprise Companion chromium_win_x86_64 from O0uYDrXyOZmaKRRL4... to x46jNYMcScUuvL3hX...
  • 1625869 Roll Updater chromium_win_x86_64 from 2@1541021 to 2@1542017
  • cc9951a Revert "[glic] Updated buildflags"
  • d685fb4 Roll Enterprise Companion chromium_mac_amd64 from SxRvA-0tnVyle3khY... to mNIVExLFtIt6AzgPf...
  • 15136be Roll Chrome Mac Arm PGO Profile
  • d7769b6 Roll V8 from 6d47c172eb07 to b96cbbf4f37a (2 revisions)
  • 437f2a1 Roll Enterprise Companion chromium_mac_arm64 from 66aESdfPvgih65HQ5... to 6wCL0cne8FLzBFKvH...
  • 1607192 Load the classification model on startup for eligible clients
  • 2bb8c18 Update the way change password form is filled during password change
  • 49aea79 Roll Updater chromium_win_arm64 from 2@1541023 to 2@1542038
  • c6a9205 [Gardener] Set test expectation for wpt...pointer_mouse.py test to failure
  • b90f85d Remove the kWebViewPreloadClasses feature
  • 3e5cedf Remove the kWebViewMuteAudio feature flag
  • 517a726 Roll Enterprise Companion chromium_win_x86 from swabgQWpnl_CHbeFZ... to oq_K-sHmpnRE9Mf4N...
  • c0206ef Roll Skia from a30b02d57637 to 2054d87c6a85 (2 revisions)
  • ecc2af7 Remove old-style Android ARM64 PGO profile roller artifacts
  • 41dbb3c Roll Enterprise Companion chromium_linux64 from RzbDZm8qUgA0MW-Aq... to 1axGDL2SyK9_UoAVV...
  • 56a0d4a Roll vulkan-deps from c26927eb0c50 to 127cb4cd6f92 (1 revision)
  • 08faf8b [RSG] Move early returns from CSG::Generate to CSG::Fetch
  • dea8349 Roll Crossbench from 6945a4d9f99a to fe484655ae94 (1 revision)
  • 46501b5 Add new error for when capture constraints are invalid
  • 34c5740 DevTools protocol for DirectSockets Multicast Capabilities.
  • 449a5a7 Fix line-ending in third_party/fuchsia-gn-sdk/src/gn_configs.gni
  • 7a64acd Roll Perfetto from aeb21f4c54d2 to dc53863c4079 (1 revision)
  • 894e8e4 Roll Chromium Variations from 4f1pyfFljBRrGZFkB... to BD3LHzHlCryHBnWBr...
  • b58ad54 Roll Chrome Win64 PGO Profile
  • f26a228 Roll ios_internal from f357f16bf16b to 5b821bbfbab0
  • 47a2907 Remove -Clinker-plugin-lto Rust flag from Cronet
  • 6ec660d cros-geo-caching: Clean up TestGeolocationAPILoaderFactory
  • 4ea8cd8 Roll DevTools Frontend from 205babb73cd5 to 526659b347e1 (5 revisions)
  • 6898749 Roll Boca App from 16XImZW60wu3TMarn... to mQDFEV2slIKNReznz...
  • a83c49f [iOS] Implements `init` method in ButtonStackViewController
  • a3895db [//cc] Have PictureLayerImpl get content scale key from tiling
  • 106bfee [iOS] Adds OWNERS to i/c/common/ui
  • 3cb35fa [iOS][Multiline] Fix pinned fakebox focus height
  • 0a10f5d Add a smoketest for proxied bidirectional streams
  • a54f8b5 Roll Chrome Mac Arm PGO Profile
  • 5f8502c [BreakoutBox] FIFO traces
  • cc36e60 Pass PipScreenCaptureCoordinatorProxy to ScreenCaptureKitDeviceMac
  • 14a0eb2 CodeHealth: Cleanup the BackgroundModeAllowRestart feature
  • f87786a Remove unnecessary AwaitQuiescence calls from tests
  • 3b73b79 Roll ANGLE from aa2d7e12817c to 7b8565523f58 (1 revision)
  • 579599f [PasskeyUnlockErrorUI] Add Passkey unlock card to Profile Menu
  • 9a80b8d Extend CanAuthenticateWithBiometricsOrScreenLock histogram
  • cbca1aa Add DUMP_WILL_CHECK for elusive CHECK in hull quad detection
  • 0c1e6d1 Update meet_effects hash in DEPS file.
  • 95ac97b Fix android-only deps
  • 92b900d Roll Skia from 2d174cbfd460 to a30b02d57637 (1 revision)
  • f8aa58f [ios] Avoid DumpWithoutCrashing() in GURL
  • 2e0be02 [ios] Remove obsolete classes SerializableUserDataManager{,Impl}
  • 6612b93 Roll Boca Receiver App from x29TDLc0-oqudcX9r... to qxTUe-j_3iOpb0wh2...
  • c8b04b3 Fix focus and alerts in AudioPermissionWarningView
  • 6bd5171 [Frameworks roll] Roll to 834150459 piper revision
  • 80ad373 Roll DevTools Frontend from a576afd6d579 to 205babb73cd5 (2 revisions)
  • d62d9bf Add feature flag for devtools AI code generation
  • 89b29eb [iOS]SyncErrorInfoBarDelegate observe primary identity
  • 9f6dc1c Remove testing/buildbot config for chormeos arm ThinLTO builder
  • 7f3b545 Roll Depot Tools from 5ba2fb94f5ce to a40c63a40be0 (1 revision)
  • c3f43f7 [ios] Fix unsafe buffer in ReferrerUtilTest
  • 08b0ed5 Move PasswordManagerBlocklistPolicy to //components/password_manager
  • bc25a98 Fix check failure in VideoCaptureController
  • ee096b8 [TDR] Remove TODOs linked to issue 302726243.
  • d43bfd6 Update walletable pass save bubble header image for transport ticket
  • 3eeb6f8 Apply blink::StrCat() in core/dom/
  • 9437230 Roll vulkan-deps from adf149a338dc to c26927eb0c50 (1 revision)
  • e4b7dda Roll Chrome Android ARM64 Orderfile from j-amVCHIcU2Nnle3d... to zwRNCkQeB0RTraeC3...
  • 38bffbd Fix up cursorignore to enable opted-in directories under third_party
  • 5518ec7 Roll Dawn from da06d996c7ea to f48e51efdbe3 (6 revisions)
  • d0e6aba [TDR] Remove TODOs linked to issue 261615629.
  • 02a5a01 Roll compiler-rt from d4d5a24a5514 to 57b9b63b69bb (4 revisions)
  • 7951f23 Roll WebView ARM64 Orderfile from IdqJ--0CVa_01qA0c... to v_2HFJdu8fTYGdLgu...
  • 349e2b4 [TDR] Remove TODOs linked to issue 194964287.
  • 84f1b6d [iOS] Move the ConfirmationAlertVC showDismissBarButton to default NO
  • e7ea1d4 Roll Chrome Mac PGO Profile
  • dbb82f3 Update SelectFileDialog to return VDP
  • f9a0910 Roll BoringSSL from 4032738e8208 to 1396c25c7149 (1 revision)
  • 91e0400 [devtools] Temporarily disable web tests
  • 963ad4c [Linux UI] Observe middle click paste pref and update renderer
  • 4c9ba80 Remove Supplementable.
  • ee79c91 Devirtualize some ex-Supplements.
  • 33f8d39 Remove leftover includes of supplementable.h.
  • 0d68ef3 Roll Skia from 84f30c1c92ae to 2d174cbfd460 (1 revision)
  • f292f41 Roll Chrome Linux PGO Profile
  • e88b489 Correct color space in webrtc for internal conversion
  • 399f5bd [glic] Updated buildflags
  • 5b1c5f2 Simplify DoEncodeTask() interface
  • 8fac81d Roll Chrome Mac Arm PGO Profile
  • e0358c7 [Blink] Fork DrawVideoFrameIntoResourceProvider for WebGPU
  • 95582de Remove stale webcodecs expectations
  • e5c2d64 [Linux UI] Pass middle click paste preference to renderer
  • c1fd58f Return early in BrowserAccessibilityComWin when destroyed
  • 56ffec2 Refactor PasswordImporter::ConsumePasswords
  • e9743ae [RSG][Part 2] Use PASG in BrowserAutofillManager
  • 73e4cdc Roll DevTools Frontend from 14222f4a19d0 to a576afd6d579 (1 revision)
  • 267b4bb Roll Chrome Win ARM64 PGO Profile
  • 5e36fe0 Remove superfluous includes for Mojo bindings in ash/chromeos headers
  • 2a7a52f Remove stale WebGL 2 expectations
  • c9219c6 Roll BoringSSL from a1b6110c3aae to 4032738e8208 (1 revision)
  • 0385565 Roll Chrome Android ARM64 Orderfile from 83lLedZLoOPdg5K2H... to j-amVCHIcU2Nnle3d...
  • 4591fa7 [Blink] Eliminate FlushReason from CRP::UnacceleratedSnapshot()
  • c20d63a [Blink] Eliminate FlushReason from CanvasResourceProvider::Snapshot()
  • b1871b2 [Blink] Remove FlushReason from SBITransform::ApplyWithBlit()
  • ff86837 [//cc] Have PictureLayerImpl get resolution from current tiling
  • d3c2b0f [Blink] Remove FlushReason from SBITransform::Apply()
  • 02d7928 [Blink] Remove unneeded TestSII calls
  • e2565e9 [Blink] Remove FlushReason from SBITransform::ConvertToColorSpace()
  • 0237b1e [Blink] Remove FlushReason from StaticBitmapImageTransform::Clone()
  • a261bff [Blink] Eliminate FlushReason from GetImage()
  • c199c8d [Blink] Remove FlushReason from PaintRenderingResultsToSnapshot
  • 7defb92 [Blink] Remove FlushReason from HTMLCanvasElement::Snapshot()
  • b5ea4f2 Remove stale pixel expectations
  • 31542b0 Roll V8 from fda467d6158b to 6d47c172eb07 (4 revisions)
  • f89e8f4 build: forward configs to compiled_action_foreach
  • 169921a Roll ANGLE from 7b89c0056fc1 to aa2d7e12817c (2 revisions)
  • d804bfc Fix the hardcoded -MMD compile command on Mac.
  • 29ea17c [<geolocation> element] Fixing minor IDL misalignment.
  • 2f4f363 Roll WebView ARM64 Orderfile from iOa5OtjiWsOxOkWVH... to IdqJ--0CVa_01qA0c...
  • 06d6b75 [DomStorage] Update DomStorageDatabaseLevelDB::Get() to return StatusOr
  • f4c3264 Roll vulkan-deps from 62b2797661b4 to adf149a338dc (2 revisions)
  • a9530ab Add snapshot for feedcards to prevent NTP flashing
  • 8233e53 Roll Chrome Android Desktop x64 PGO Profile
  • b22c293 Remove stale trace_test expectations
  • 61fb793 Roll Chrome Android ARM32 PGO Profile
  • 7d38c61 Roll Skia from 547e3e5441b4 to 84f30c1c92ae (1 revision)
  • c317519 Roll Chrome Mac Arm PGO Profile
  • 6ddee1b [CodeHealth] Remove stale base::Feature EnableOrdinalMotion
  • 7d25aa8 Roll DevTools Frontend from df163f36f19b to 14222f4a19d0 (1 revision)
  • 35767c0 net: Initialize http cache backend aggressively
  • 827f708 [Perf] Change linux-perf to 7 shards
  • 46d27d6 Roll Chrome Win32 PGO Profile
  • cd2943d Roll Chrome Linux PGO Profile
  • 95b7f3d [contextual_tasks} Remove BrowserWindowInterface association
  • 22b49f1 Roll clank/internal/apps from ea59af5f3609 to 98963f89131a (1 revision)
  • 6faf918 Add a tool to benchmark the speed of building a specific file locally.
  • b577155 [CodeHealth] Refactor and expand cleanup-feature command
  • e59bbd8 [SxS] Enable Split View on ToT for W/M/L
  • 21b38e7 Roll DevTools Frontend from 8d48ff8f694f to df163f36f19b (1 revision)
  • 67bc574 Remove unused entries in InputMethodSettings API.
  • 9812876 [prerender] Extend expiration dates for preloading-related histograms.
  • 5c18846 Roll clank/internal/apps from a4e43da864f1 to ea59af5f3609 (1 revision)
  • 49a3603 Roll WebGPU CTS from 5a1dcdc8578d to 3314e4108692 (1 revision)
  • 87b024e [Extensions] Add justification view to install dialog on Desktop Android
  • 89d021f Remove uses of BodyAsStringCallbackDeprecated (chrome/browser)
  • f5c2cab Roll ANGLE from d7323c0b8abc to 7b89c0056fc1 (1 revision)
  • 82deab4 Roll Chrome Mac Arm PGO Profile
  • 518cbe3 Fix exception in RealtimeEngagementSignalObserver during Tab destruction
  • 6151bb3 url: Replace URLComponentSource/Parsed pair with Replacements
  • 3fdc3ed Introduce GlobalEventHandlers partial mixin for onbeforexrselect
  • 7ca6ae1 Remove uses of BodyAsStringCallbackDeprecated (safe browsing)
  • b340d6c Roll Skia from d13c1deb1557 to 547e3e5441b4 (3 revisions)
  • 8420709 Deprecates MultiWindowUtils.getInstanceCount().
  • eaf7dae [TSTC] Move margin updates into control container
  • 7bfa851 Roll Perfetto Trace Processor Win from 60767b0bac8b to aeb21f4c54d2
  • a3156ac [fuchsia] Update default Fuchsia target API level to 29
  • 2e3f095 Roll vulkan-deps from 85242c2df110 to 62b2797661b4 (3 revisions)
  • b361168 Revert "[Toolbar] Set hairline gravity to bottom"
  • 35d1313 Remove IdbDecompressValuesInPlace feature flag.
  • 7f5df13 Updating trunk VERSION from 7533.0 to 7534.0
  • b687013 Roll Chrome Android ARM64 Orderfile from vFTJJVyb2RUJ0_bCJ... to 83lLedZLoOPdg5K2H...
  • 6cb22b3 Roll WebView ARM64 Orderfile from XVRSjm_y5vnGtbypX... to iOa5OtjiWsOxOkWVH...
  • 082e95b extensions: Remove unnecessary getters from EAVM
  • 7b56989 Enable RBE for chromeos and fuchsia ToT builders
  • 4c97b76 Roll Chrome Mac PGO Profile
  • 1ebbc23 [glic] Enable accelerator toggle in ChromeOS
  • a3e4517 Android: Remove remnant of GCMNetworkService
  • 934ed53 [PDF Ink Signatures] Add pen tip behaviors
  • 23981a9 [BWG][PSF] Fix price tracking button not opening insights panel.
  • bdef829 Roll-deps and update open source code for new Messaging protos
  • 9964dcb Automated Commit: LKGM 16487.0.0-1073234 for chromeos.
  • 8e5df4d Move hats_browser_proxy.ts to privacy_page directory
  • 6201eb1 Revert "Move logging::LoggingSettings to base/logging/logging_settings.h"
  • 0ea5dbc Set SKCMS_DLL and SKCMS_IMPLEMENTATION appropriately
  • 2155d14 Roll Chrome Mac Arm PGO Profile
  • 92d6828 More c++23 fixes in //chrome
  • 65645da WebNN: Cache package dependency initialization for ORT backend
  • 684669b [lensoverlay] Add field trial config for non-blocking privacy notice.
  • 284b8f6 Roll Turbine from mhp6RDdhmKqxaMshy... to pti7PbW9jlUKUCvkp...
  • 3685011 Roll Updater chromium_win_arm64 from 2@1539004 to 2@1541023
  • b93af9c Roll Chrome Win ARM64 PGO Profile
  • c72d3c8 Roll Perfetto Trace Processor Linux from 60767b0bac8b to aeb21f4c54d2
  • 783bb63 Roll Perfetto Trace Processor Win from c0c007f42204 to 60767b0bac8b
  • e3fb01b updater: mojo dialer for Windows
  • 67d9cbe [ntp-realbox] Resolve misalignment of the contextual entrypoint.
  • 5fcbdbe ChromeAndroidTask: support PENDING_{CREATE|UPDATE} state for minimize()
  • bc9fccb Move //chrome/browser/permissions except test files to //extensions
  • c17ec33 [PA] Make PartitionAllocExternalMetadata 100%-enabled on canary.
  • f6f1046 Roll ChromeOS Bigcore AFDO profile from 144-7499.11-1763349143-benchmark-144.0.7530.0_pre1545745-r1 to 144-7499.11-1763349143-benchmark-144.0.7532.0_pre1546354-r1
  • e7e463c Roll Depot Tools from 8e49ae5de847 to 5ba2fb94f5ce (3 revisions)
  • 40a6f77 ash: Remove an obsolete check
  • 3a44735 [TBHSP] Fix bug where side panel rounded corners were not rounded
  • 718feb9 Replace includes with forward decl variants in navigation_handle.h
  • 40b3198 [Clank] Fix Bluetooth media control 5s dead zone
  • 65223e1 ELUD: Narrow the target platform of the AMSC macro on aura::Window
  • 70247d0 Update `TestExpectations` with bugs filed for crrev.com/c/7169543
  • fa81f6d Roll ChromeOS Atom AFDO profile from 144-7499.11-1763355062-benchmark-144.0.7530.0_pre1545745-r1 to 144-7499.11-1763355062-benchmark-144.0.7532.0_pre1546354-r1
  • 1d20c5c Roll Chrome Android Desktop x64 PGO Profile
  • ebb75c5 Roll Updater chromium_mac_arm64 from 2@1539003 to 2@1541004
  • 1b2fe83 Roll ANGLE from b72747b41eca to d7323c0b8abc (3 revisions)
  • 92ea7f8 [remoting] Don't hardcode XDG_RUNTIME_DIR for the Wayland host.
  • 2a2df6b Roll Updater chromium_linux64 from 2@1539003 to 2@1541004
  • 35fd001 Roll clank/internal/apps from d6c606dacae7 to a4e43da864f1 (1 revision)
  • 901a758 [iOS] Add param to DB off-cycle promo field trial
  • 4960502 Use same back and reload icons in web_apps as browser
  • 3cbee5e Remove dead class EmojiSuggester [9/N]
  • 3097e4c Mark disabling SETTINGS_MULTI_COLUMN for several tests.
  • 280989d Roll Updater chromium_win_x86 from 2@1539004 to 2@1541022
  • f36815e [WaaP] Add SessionRestore slicing to WaaP UI startup metrics.
  • e94faaf Roll Updater chromium_mac_amd64 from 2@1539004 to 2@1541001
  • 2e47711 Roll Updater chromium_win_x86_64 from 2@1539003 to 2@1541021
  • f6c4884 WebNN: Enable `kUseDeviceTensor` feature flag by default
  • b686c96 Roll Depot Tools from 56afa6dda88f to 8e49ae5de847 (1 revision)
  • 61cbeee [PDF Ink Signatures] Add pressure information to strokes
  • db7467e Roll Perfetto from 60767b0bac8b to aeb21f4c54d2 (1 revision)
  • eef3e70 Roll Kotlin Stdlib from wTCaoWB9dhXrnZpcJ... to eDgQH6vcE7X7iRSrB...
  • dc3adcf Roll Chrome Mac Arm PGO Profile
  • d70f102 Roll src-internal from 5d24299464fa to ad74d2ea29b0 (1 revision)
  • f15b177 Extend end date for hardware verifier histograms
  • 2dc406b Roll Manifest Merger from auGY-KH9MEKUjUxnt... to xFZBRBJvCExrX-o8k...
  • 84849c5 Roll Chrome Android ARM64 Orderfile from VYCyfYnVOIkax_lbm... to vFTJJVyb2RUJ0_bCJ...
  • 2e96d68 Roll R8 from OKVTi4dPaKvVi24Mu... to a4fVqbIycCDqs1714...
  • 26357a0 Fix a crash when a tab opening NTP is dragged out of a window
  • fb32860 Roll Enterprise Companion chromium_win_x86_64 from _C3RJT2fFCT7ckox8... to O0uYDrXyOZmaKRRL4...
  • 8e3742a Roll WebView ARM64 Orderfile from cHLXZKn7_J5Y3RDOH... to XVRSjm_y5vnGtbypX...
  • 36f964e Roll Kotlin Compiler from chp__Zw61CfK2ZPIj... to dzSoO7s4xA33tSKgO...
  • c24330d Enable WinSboxNoDbghelpWarmup by default
  • 8821ef5 Roll Enterprise Companion chromium_mac_arm64 from 2NdaAX7lPT6w3tMn8... to 66aESdfPvgih65HQ5...
  • 95793af Roll Enterprise Companion chromium_linux64 from tHES_8eAILT6DThJV... to RzbDZm8qUgA0MW-Aq...
  • 3fb7e3a Disable LogNetLogTest.Exists on ChromeOS ASAN
  • c665fee Create _keepAlive much earlier in AppController mac
  • fe0b851 LCP: Only consider largest-ignored-text as an LCP candidate once
  • 5e0c4e2 Roll Enterprise Companion chromium_win_x86 from YmljgFCB075ZTlJit... to swabgQWpnl_CHbeFZ...
  • 456ebfe Add frame/README.md with information about throttling
  • 88fe8fe Roll Enterprise Companion chromium_mac_amd64 from SN2KjSEk3GOOqHHvw... to SxRvA-0tnVyle3khY...
  • 28673dd Roll Skia from 3dcc94ced00e to d13c1deb1557 (5 revisions)
  • f497539 Roll DevTools Frontend from 15d663835928 to 8d48ff8f694f (1 revision)
  • e07db00 Switch to size_t-based and bounds-checked EVP_CIPHER APIs
  • 219b4cd Roll ChromeOS Arm AFDO profile from 144-7499.11-1763349616-benchmark-144.0.7530.0_pre1545745-r1 to 144-7499.11-1763349616-benchmark-144.0.7532.0_pre1546354-r1
  • cd4d28a [crd host][win] Event-driven MouseCursorMonitor
  • 1b542e9 [PinnedTabs][TabHighlighting] Trim offset when dragging to edge
  • 0aad295 Add histogram to track new window entry points.
  • 51a4124 Automated Commit: LKGM 16487.0.0-1073226 for chromeos.
  • a3a83bb [Read aloud] Fix bug where duplicate text was spoken with superscripts.
  • d6b1013 [Esc Secondary Activities] Backpress/Escape handling for Download Page
  • 3792496 Allow multiple device bound sessions to be created at once
  • 29bb9f0 [WaaP] Add MetricsReporter::Mark(name, time)
← Back to all summaries