Chromium Digest: 2026-01-16
Overview
On this day, 615 commits landed on the main branch, with 415 being deemed relevant for this summary. This digest covers a significant number of breaking API changes across core components, permissions, networking, and the Android platform, requiring attention from embedders. Notable changes include a major refactor of the permissions system, the removal of VVC codec support, and architectural shifts in the extensions system. The first commit was (fd32a8d) and the last was (0ddfda3).
Breaking Changes
-
⚠️ BREAKING
Permissions: A major refactor to support prompt-specific options has changed the public API of
permissions::PermissionRequestManager,permissions::PermissionsClient, andpermissions::PermissionContextBase. Methods likeAccept,Deny, andOnPromptResolvednow require aPromptOptionsparameter, and thePermissionDecidedCallbacksignature has been altered. (7688ee1) (b47e74e) (5d3a4e1) -
⚠️ BREAKING
Android: The widely used public Java interface
ObservableSupplierhas been renamed toMonotonicObservableSupplier, which will break any embedder code on Android that uses this common supplier pattern. (b8cb84d) -
⚠️ BREAKING
Extensions: The static singleton
ExtensionAssetsManager::GetInstance()has been removed. Embedders must now implement the new virtual methodGetAssetsManager()on theExtensionsBrowserClientinterface to access the asset manager. (9a7acb2) -
⚠️ BREAKING
Content: The public class
content::ProcessVisibilityTrackerhas been renamed tocontent::ProcessPriorityTracker, and its observer methods have been updated accordingly. This is a source-breaking change for embedders monitoring process state. (24075b8) -
⚠️ BREAKING
Media: Support for the VVC (Versatile Video Coding) codec has been removed. This includes the removal of VVC profiles from the public
media::VideoCodecProfileenum and the deletion of theParseVVCCodecIdfunction. (bdb67c3) -
⚠️ BREAKING
Cronet: The public API surface has been reduced.
CronetEngine.Builder.setProxyOptionsnow requires a non-null argument, and several public getter methods on theProxyclass have been made package-private. (4fd337e) (20a3650) -
⚠️ BREAKING
Blink/Graphics: The
GLHelperclass and the corresponding publicGetGLHelper()method have been removed from theblink::WebGraphicsContext3DProviderinterface. (e67fa28) -
⚠️ BREAKING
WebXR: The behavior of
getViewSubImageandgetSubImagehas changed. The methods will now throw aTypeErrorif the target layer is not part of the active render state, requiring developers to update their error handling. (c773351) -
⚠️ BREAKING
Digital Credentials API: Calls to
get()andcreate()will now be rejected with aNotAllowedErrorif transient user activation is not present, changing the expected behavior of this stable web API. (25a95cd) -
⚠️ BREAKING
Core/Base (Windows): The public method
base::win::AccessToken::GetSecurityAttributeStringhas been replaced withGetSecurityAttribute, which returns aSecurityAttributeobject instead of a string. (dbc59bc) -
⚠️ BREAKING
Networking: The
AliasRequiresProxyOverridevirtual method has been removed from the publicnet::ProxyDelegateinterface as part of a cleanup. (ee52776)
Core & System
-
⚠️ BREAKING
BREAKING: The public class
content::ProcessVisibilityTrackerhas been renamed tocontent::ProcessPriorityTrackeralong with its observer methods, breaking any code that used the old names. (24075b8) -
⚠️ BREAKING
BREAKING: On Windows, the
base::win::AccessTokenclass API has changed.GetSecurityAttributeStringwas replaced byGetSecurityAttribute, which returns aSecurityAttributeobject. (dbc59bc) -
⚠️ BREAKING
BREAKING: Agent cluster handling was refactored, removing the public header
content/browser/security/coop/cross_origin_isolation_mode.hand modifying the coreCommonNavigationParamsstructure. (c5a1fcd) -
⚠️ BREAKING
BREAKING: The sandboxed SQLite VFS was moved to a new
//components/sqlite_vfscomponent. This changes the publicpersistent_cache::PendingBackendstruct, which is part of the API. (38cb111) -
The
base::MakeCheckedNum<>()helper function has been removed throughout the codebase. Developers should now use class template argument deduction withbase::CheckedNumeric(). (419f713) -
The old
TabLoader-based session restore mechanism has been removed, finalizing the migration to thePerformanceManager-based implementation. (cf33d9c) (3f0d5d7)
Blink & Web Platform
-
⚠️ BREAKING
BREAKING: The WebXR API's
getViewSubImageandgetSubImagemethods will now throw aTypeErrorif the specified layer is not part of the active render state, altering the API's behavior for developers. (c773351) -
⚠️ BREAKING
BREAKING: The Digital Credentials API now consumes user activation. Calls to
get()orcreate()without transient user activation will be rejected with aNotAllowedError. (25a95cd) -
⚠️ BREAKING
BREAKING: The
GLHelperclass and its public accessorGetGLHelper()have been removed from theblink::WebGraphicsContext3DProviderinterface, as it is no longer used. (e67fa28) -
The
DataUrlMimeTypeParameterPreservationfeature is now enabled by default, which preserves MIME type parameters indata:URL parsing to align with the Fetch Standard. (8e1a893) -
The behavior of
position: stickyhas been updated to better align with the CSS spec by reducing the end-edge inset when the sticky box is overconstrained. (6c24b5a) -
The
scroll-behaviorproperty is now inherited on the internal overscroll area parent pseudo-element, allowing developers to control its scrolling behavior. (17c0e40)
Permissions
-
⚠️ BREAKING
BREAKING: A major refactor to support prompt-specific options has changed the public API of
permissions::PermissionRequestManager,permissions::PermissionsClient, andpermissions::PermissionContextBase. Methods likeAccept,Deny, andOnPromptResolvednow require aPromptOptionsparameter, and thePermissionDecidedCallbacksignature has been altered. (7688ee1) (b47e74e) (5d3a4e1) (d383d17)
Android
-
⚠️ BREAKING
BREAKING: The widely used
ObservableSupplierJava interface has been renamed toMonotonicObservableSupplier, affecting hundreds of files and breaking any embedder using this pattern. (b8cb84d) -
⚠️ BREAKING
BREAKING (Cronet): The
CronetEngine.Builder.setProxyOptionsmethod now strictly requires a non-nullProxyOptionsargument, and several public getters on theProxyclass were made package-private. (4fd337e) (20a3650) -
The
TabListInterfaceObserverhas a newOnMovedmethod to notify observers when a tab is moved within the same tab strip. (bc04ad2) -
The legacy
FirstRunSigninProcessorand its associated UI, unused since 2022, have been removed from the codebase. (df13626)
Extensions & Web Apps
-
⚠️ BREAKING
BREAKING:
ExtensionAssetsManagerwas moved to//extensionsand its staticGetInstance()singleton was removed. Embedders must now implement the newExtensionsBrowserClient::GetAssetsManager()virtual method. (9a7acb2) -
⚠️ BREAKING
BREAKING: The
extensions::InstallApprovalstruct and its factory methods were updated to usecontent::BrowserContext*instead ofProfile*, breaking code in the installation flow. (6c18838) -
Support for
chrome.tabGroupsevents (onCreated,onRemoved,onMoved) is being added for the experimental desktop Android platform. (4dd3d0f) (0256dcb) (093a2ae)
Media
-
⚠️ BREAKING
BREAKING: Support for the VVC (Versatile Video Coding) codec has been removed. This includes removing VVC profiles from the public
media::VideoCodecProfileenum and deleting theParseVVCCodecIdfunction. (bdb67c3)
Networking & Security
-
⚠️ BREAKING
BREAKING: The
AliasRequiresProxyOverridevirtual method was removed from thenet::ProxyDelegatepublic interface as part of a cleanup of unfinished CNAME record proxy handling. (ee52776) -
A fix was implemented for Local Network Access (LNA) to bypass mixed-content checks for WebSocket (
ws://) connections, aligning its behavior withfetch. (03b9f5d) - A memory leak in WebTransport related to tracking closed streams has been fixed. (08e0e0e)
Enterprise
-
⚠️ BREAKING
BREAKING (Data Contract): For enterprise SaaS usage reporting, a key protobuf message was renamed to
SaasUsageReportEvent, altering the data contract for external reporting tools. (f9e2d26) -
Data Controls policy enforcement was extended to desktop drag-and-drop operations on Aura platforms (Windows, Linux, ChromeOS) via a new hook in
ContentBrowserClient. (f29965a) -
A new
PrefURLListMatcherclass has been added tocomponents/enterprisefor efficiently matching URLs against a list defined in a preference. (794aef0)
UI & UX
-
A new
chrome.histogramsWebUI API has been introduced as a lightweight, extension-independent replacement for parts ofchrome.metricsPrivate, simplifying UMA logging from WebUI pages. (9044a5b) -
The legacy
CrContainerShadowMixinhas been replaced with the moderncr-scrollableelement across various WebUI pages like Settings and Print Preview. (271c954) (1ce290d) - iOS: New UI has been added to warn users when they are about to sign out with unsynced bookmarks due to exceeding their storage quota. (77fd0ea) (673d582)
- Branding for "Buy Now, Pay Later" (BNPL) and CVC save flows has been updated from "GPay" to "Google Wallet". (4f028fd) (620ce87)
All Commits (615)
- fb2e540 Roll Skia from 0b10a4cf50a6 to 92727320bd0e (1 revision)
- 0ddfda3 Fix hover text
- 192a5fd Possibly DumpWithoutCrashing if no CPSP::SecurityState is found.
- 438a876 Roll Chrome Android ARM64 Orderfile from lXfGDQVPr7MLv7yUr... to hGr1kjz4trSZcPbXU...
- b5dd9be Remove unnecessary mClickDelegate
- c2b3d5f WebUI: Integrate CSS lint checks in build_webui().
- b7d302e Remove dependency between lens and tabs components
- aa03d06 fjord-oobe: Expose Fjord OOBE dbus service even if flag is disabled
- 29ee7b6 Roll WebView ARM64 Orderfile from b5Mz-ks9F9k6f0zOD... to -tLEmGHuQlMsZGUZM...
- a251d4d Suppress ScreenshotSync Raster tests on AMD
- 6581d6e Use span-based file API in //media tests
- 0d94e68 Roll ios_internal from f30cfdb2fe1b to f028da6b5cc8
- 965c5b2 [PWA] Add logging for database version downgrade crashes for PWAs
- 34027ad Roll Chrome Win32 PGO Profile
- 982870c Roll androidx from H_bpreD8PDCWsTpDG... to rPn5iPEfpXFf0w_O5...
- d8fe009 [Desktop Android] Move tab-moved observations to TabsEventRouter
- 43cd14c [Omnibox] Adjust composebox spacing for compact layout mode.
- 6a3fd11 [Android] Make waitForVisibleView() an alias of ViewFinder.waitForView()
- 00b42ef [x-plat promos][iOS] Add iOS feature variations for new types
- 543aa22 Fix unsafe buffer operation in traced_value_proto_writer.cc
- 382de9e [IBAN][Clank] Replace GPay with Wallet text in upstream bottom sheet
- 30a020e [AIM] Add TRANSPARENT_COLOR for scrim clients.
- a88c254 Enable webgpu interop only for mesa 22.0+
- a7ebcfc [User Education] Mark WebUI help bubbles as visible
- d06566e Remove unused page extractor related functions
- 28a6b55 Roll Chrome Mac Arm PGO Profile
- fc4b5a8 Roll clank/internal/apps from c2e78efd79fa to 3435bd4381cf (1 revision)
- d1de8d6 Roll WebView ARM64 Orderfile from kKvAMnWOBm35ygKcw... to b5Mz-ks9F9k6f0zOD...
- 1305956 [Settings Search] Set max length for title and summary
- 093a2ae extensions: Support tab group move notification on desktop Android
- 6f82c3e Roll Chrome Android ARM64 Orderfile from wf-09e3D7uC5CZRSw... to lXfGDQVPr7MLv7yUr...
- 941a7be [Masonry] move shared helpers to grid_layout_utils
- a45cb4e Roll Depot Tools from 1e038d3d4805 to 679386aca8b1 (1 revision)
- b141024 Actor: Fix empty base::expected in PageContextFetcher
- 5b2da1a Roll Website from 96df5d9491d8 to 95109e8918bd (1 revision)
- 15d40d5 [aim-tools-models] Make SearchboxConfig available from the AIMEligibilityService
- 61b6c76 Roll ios_internal from 3d3a998d8fe0 to f30cfdb2fe1b
- 523771e Roll eigen from 9a37aca9fc36 to 918a5f1a6fc5 (1 revision)
- d848dfa [Vertical Tabs] Allow vertical tab icon to show discard indicator
- 8cd9498 Roll vulkan-deps from 0a43d5ca2b5d to 4d09a84205f9 (2 revisions)
- 9138977 [iOSPasskeysM3] Remove obsolete TODO
- ff4578d Revert "[Blink] Remove CanvasResourceProvider::Clear()"
- 8e4626d SidePanel: Set up //chrome/browser/ui/side_panel_container directory
- 2f2550d Roll Chrome Mac PGO Profile
- 1343796 [Vertical Tabs] Fix caption button size on Mac in PWA mode
- f96e9d4 Roll V8 from dbd5639b4f6b to a9192a12b170 (5 revisions)
- 0f212d8 Add sequence checking to structured metrics' proto manipulation.
- d3e2925 [projects] Add thread list item view
- 8ef3040 Fix BrowserUpdaterClient lifetime issues
- 221cf58 fix UNSAFE_STODO in util_win_mojom_traits.cc
- f846b75 Roll Perfetto from 8de8f5acb662 to 876800e5151d (1 revision)
- c331d2c [iOS] Modify UpdateGeminiViewState Function To Take Animation Flag
- a64ba46 [x-plat promos] Upload strings for the new cross platform promos
- 3e8834e Import wpt@554f5a3f3f07eb9efd3aee50279caa46c9141a48
- e6961ef [TabGroups] Move attention observer to the feature
- ef17925 [Gardener] Remove base::Contains usage
- 075ec78 [aim-tools-models] Add linear scan for allowed items
- 4767554 Route ScrollTo metrics to GlicInstanceMetrics for MultiInstance
- a2c5438 [ios] Add DumpWithoutCrashing to suspect Drag and Drop bad states.
- 0ce3387 [Contextual Tasks] Inject auth token via URLLoaderFactory
- dbc59bc [Windows] Add GetSecurityAttribute method to AccessToken class.
- fdc90ea Set BNPL 2nd line string update to 100% Chrome Stable
- a5725a6 [glic] Refactor CreateTabData to use TabInterface
- e90f4a3 Roll PDFium from 08f3c8a7a782 to c1cb9dec3406 (9 revisions)
- a5502b1 Reland "Add glic-actor-eligible-tiers to fieldtrial testing config"
- 6c24b5a Reduce effective end edge inset of sticky view rectangle when sticky box is too large
- 2093c1e [glic] Prevent daisy chaining during Trust-First onboarding flow
- 9b28482 [Composeplate] Fix composeplate view visibility issue.
- d4235ba Extend wayland-session-management flag
- cc52341 Roll Depot Tools from ea4fc7f6815a to 1e038d3d4805 (1 revision)
- 3030725 [ntp-next] Add subtitle field to ActionChip Mojo struct and update WebUI logic
- 291681b [VerticalTabs] Pass in BWI to TabStripControlButton
- 19c63de Extend OBC cookie flags
- 4844812 Roll Skia from ec889941c7d6 to 0b10a4cf50a6 (2 revisions)
- e7d8e0e [layout] Avoid <fieldset> crash for float state change.
- eb56afb Roll Chrome Win ARM64 PGO Profile
- e80da65 [cleanup] Remove LayoutBox::AvailableLogicalWidth
- 87bce50 Retire the HTMLCommandRequestClose runtime flag
- 368c096 Refine the visual for Incognito NTP
- 4fde741 [Reading mode] Snap line focus window to frame lines exactly.
- 6e10f96 pdf: Fix redraw issues with PdfBufferedPaintManager
- 35b2c64 [Frameworks roll] Roll to 857250441 piper revision
- d847a4f [Settings Search] Remove tags from summary text.
- 5083515 Remove elainechien and add labs-on-chrome as OWNERS for chrome-labs
- d6cd898 Roll Chrome Android ARM32 Orderfile from Y5fQju6igupCHmvb9... to w2XidixGJIDUZElwD...
- cdb61f8 Roll clank/internal/apps from ef7fe8339bcd to c2e78efd79fa (1 revision)
- b6b8a32 [FedCM] Fix crash when invoking GetActorLoginRequest()
- b8cb84d Rename ObservableSupplier -> MonotonicObservableSupplier
- c105d72 Roll WebView ARM Orderfile from kuEm02MC4I6_5WMOe... to AbHFHrgNuyaBTMzxh...
- acf76fb Roll Chrome Mac Arm PGO Profile
- 9c97306 Roll Perfetto from 175fda6b778f to 8de8f5acb662 (2 revisions)
- ee2eb14 [Desktop Android] Make TabsEventRouter a TabListInterfaceObserver
- aeb1a0b Revert "Reland "Delete unused base::Contains()""
- 25a95cd [DC] Consume transient user activation for DC API
- fcc55f3 Move outline provider to suggestions container
- 87f3d0d Reland "Delete unused base::Contains()"
- 06f5bc0 Reland "[RWM][RecentlyClosed] Show message if instance limit reached"
- 891db6a [LeftRail]: Hide TabGroups when kProjectsPanel feature flag is enabled
- f5e462f Invoke StringImpl dtor
- 01f04d2 Roll BoringSSL from 44a1a1f54f81 to df08c3a55a8a (1 revision)
- 56bf0d5 [Persist] Move authoritative store creation to PersistenceStoreFactory
- ea293fc Remove redundant parameter from TabDragController::Init
- c7a4c75 Update #shouldOpenIncognitoAsWindow for test
- 199ea02 Avoid duplicate map lookups.
- 3678830 [NtpCustomizationV2] Disable preview dialog on tablets
- f6d569d Avoid duplicate map lookups.
- 2fd5f4d Add master key management for HTTP Cache Encryption
- 1cb0d20 Roll WebRTC from 4098bb385415 to d3abe01f4ba1 (3 revisions)
- 7dde67b Roll FuzzTest from 9534f7ae0c15 to 5a702743bbf2 (1 revision)
- f2ad1dc [TreesInViz] Optimize Layer update serialization
- bf766de [Entry Point] Add feature flag and param
- 42b9182 Roll Chromite from d6969395e7a6 to a8ff7138f3c6 (1 revision)
- 4e16650 [iOS][PRDBD] Removes the footer of the Quick Delete VC
- ad499de [Settings Search] Highlight preference with custom layout
- f049aa8 [ntp-next] Call the remote endpoint with a new client
- b973733 [renderer] Add feature for SetIsLoading
- eaef9a7 webauthn: store opportunistically retrieved key after account signs-in
- 988a7a6 Replace unsafe wcslen with wcslen_s.
- 0256dcb extensions: Support tab group removing notification on desktop Android
- b6ca9da Roll vulkan-deps from 65aa1957f924 to 0a43d5ca2b5d (1 revision)
- b6fec29 [rust] Move `{{rustflags}}` into `rspfile_content`.
- 1a81c7f [Omnibox Next] Correct the mic position when searchboxLayoutMode empty
- da79e80 Roll Chrome Win64 PGO Profile
- bfa09ef Add metrics for InputHandling mode
- 5a877c2 Check if component build is disabled when clang_coverage is enabled on Win
- f2b78aa [4/n] Break language_pack_util and constants into smaller units
- 32d74ee Revert "Clean up tab search flags"
- 0afa884 [X11] Add CHECK in AtomCache::GetAtom
- d50d2b0 [omnibox][composebox] Prevent "STYLE not supported" crashes.
- f995173 [Gardener] Remove base::Contains usage
- ee52776 Remove unfinished CNAME record proxy handling code
- d570742 [realbox] Setup listener for InputState changes
- 794aef0 Add PrefURLListMatcher for matching URLs against a URL list from pref.
- 139072a Set addToBackStack to true for prefs launched within PrivacySettings
- 43bb63f Guard model version addition to study
- 4e7faa2 Roll clank/internal/apps from 12237343c4d2 to ef7fe8339bcd (1 revision)
- 3e525ef Update VariationIdsAreValid test for new range.
- e67fa28 Remove GLHelper
- 22b6035 Revert "Delete unused base::Contains()"
- c8a14c7 [Android] Move Root matching logic into RootSpec, add specificRoot()
- dceba1f Roll Chrome Android Desktop x64 PGO Profile
- 67b30b8 SuperSize: Filter out 0-sized .relro_padding section when present
- 2319b04 net: Add error logging to QuicSessionAttempt
- b145052 Avoid duplicate map lookups.
- a5d750f [Start Chrome with Windows] Add foreground launch capability
- 15af921 Delete unused base::Contains()
- 5200a7c Reland "Migrate last base::Contains() to std::ranges::contains()"
- 2900a3b [iOS] Allow webauthn text fields to trigger the credential bottom sheet
- bd1d271 Remove HttpStreamPool::Job::CallOnPreconnectCompleteLater()
- 9044a5b webui: Add chrome.histograms API for UMA histogram logging
- 40393e3 [Extensions] Forbid late calls to Extension::SetManifestData()
- 3ef9aaa Inject the chrome dependency into PageContextFetcher
- e314d72 Roll Chrome Android ARM64 Orderfile from D3jID9pSBmsD4ehoR... to wf-09e3D7uC5CZRSw...
- 1c9edd4 Add metric for search engines potentially spoofing Google in settings
- a10aa88 Roll WebView ARM64 Orderfile from 8l8ak9orgN7WNAyjX... to kKvAMnWOBm35ygKcw...
- f357478 Roll Chrome Android ARM32 PGO Profile
- 86c6a8b [iOS][mvt-customization] Show in-product help for pin most visited site
- 757faf8 [New Tab Animation] Default enable on ToT
- e0afea3 Roll clank/internal/apps from 0052336f6503 to 12237343c4d2 (1 revision)
- b2036db Suppress Mac ASAN Renderer Hang
- c5c7e19 SidePanel: Add feature flag EnableAndroidSidePanel
- ca66b41 image: Extend diagnostic histograms
- 9536ed4 Revert "[RWM][RecentlyClosed] Show message if instance limit reached"
- 4dd3d0f Reland "extensions: Support tab group created notification on desktop Android"
- d58299e [omnibox][composebox] Fix high contrast mode color support.
- 379f4d1 Roll Skia from 46e52c3b16ca to ec889941c7d6 (1 revision)
- a79bc5b Spannify unsafe memcpy in session_manager_client.cc.
- 8952d00 [Code Health/Base] Change MemoryPressureListener log to DVLOG
- 2033bd1 Roll Crossbench from 876c6243d82d to b6dff2f31bc3 (1 revision)
- 1a98acc Roll Chrome Mac Arm PGO Profile
- c773351 WebXR layer: Fail getViewSubImage if layer isn't active
- cc65dab Update RLZ brand codes map for M145+
- 59c62cf Extensions: CodeHealth: Add classes to some enums
- 39a89d2 [iOS][SyncedSetUp] Prevent triggering if data or service is unavailable
- ef012af [iOS][Code Health] Fix CrossDevicePrefTrackerObserver naming conventions
- 7823378 Map kColorAppMenuRowBackgroundHovered for Windows high contrast mode
- d286a8c [Persist] Destroy WebContentsState when a tab has not been restored
- 2188923 Cleanup UseCecEnabledFlag field trial config.
- 5a64fd4 Roll Chrome Win32 PGO Profile
- 7a8200a [iOS][WhatsNew] Add missing enum and histogram type.
- bfede64 [IOS] Extend expiration of IOS.WhatsNew histograms
- 264b431 Clear some members on detach
- e0dacd4 [a11y] Improve atomic live regions support on Clank
- 64f46f1 Reland "[Immersive Reading Mode]: Submenu remains open after settings menu close"
- 23c9ef1 Add support for ignoring completely non-damaging scrolls
- 80f1541 Clarify #isDesktopSiteEnabled checks ContentSetting, not global setting
- bc04ad2 [TabListInterface] Add OnMoved observer method
- 6c835e1 [LiteRT-LM] Expose serde_json to libs outside of third_party/rust.
- f9b7039 [aim-tools-models] Implement `updateSelectedState` in `InputStateModel`
- e3464dd updater: use mojo proxy for Windows to query updater state and policies
- 887a6e3 Use default generated_action_names to prevent issues calling UpdateXml
- ef6261e Import wpt@9eec2b3bdab069572ed1d10228e66256a87fd461
- 9433693 Roll BoringSSL from c2d23258fc0d to 44a1a1f54f81 (1 revision)
- e97ce33 Set up skeleton dialog and page handler for chrome://skills
- 7b29343 Reland "[composebox] Disable input cursor changing colors in NTP, CoBr"
- 6d4ce9d artemis: Add ArtemisDynamicCloudLogging feature flag
- 3b57de6 pdf: Make PaintManager buffer area transparent rather than white
- 9f92a24 [CrOS only] Force occlude windows in always on top container when locked.
- 000dce6 [Extensions] Use BrowserWindowInterface in request acesss button
- b304d2a [Skills] Implement applying remote updates
- cb370f8 [windows] Handle more time formats in subtract_time.py
- 8c3705f Migrate ProgramCache to support stateful memory pressure signal
- ba1fefb Roll Dawn from 38c82634fe2f to 42fd897fda10 (3 revisions)
- daeedbf [ios] Use absolute paths in run_cwt_chromedriver.py
- cd788e5 Roll V8 from 8c60172d94f3 to dbd5639b4f6b (6 revisions)
- ccc23f7 [Reading mode] Recalculate line focus when content changes
- 24075b8 Rename ProcessVisibilityTracker to ProcessPriorityTracker
- a4be7f7 [NtpCustomizationV2] Fix the navigation
- 2b65110 content: RandInt(0, 1) -> RandBool()
- 1f69727 [Autofill] Update UI when available by default
- cff157a Add javaless renderer fallback to normal renderer in failure case
- c8ce44b [iOS] Fix new tab grid transitions bottom crop issue in animation
- c1e484a [Extensions] Remove tab observers from request access button
- 78933f9 [Vertical Tabs] Fixing a crash during drag on windows with pinned tabs
- b1cbd3d Roll Perfetto from a5c4278fbc60 to 175fda6b778f (1 revision)
- fc7bbbb [Linux Package] Fix NoDisplay=true section in desktop file
- 331d26c Use span-based base::File API in more //chrome unit tests
- 92eecf1 [Export Tagged PDFs] Fix checkbox Role attribute value
- 44651a7 Roll Crossbench from 841f380122c2 to 876c6243d82d (1 revision)
- ca24419 Replace `std::unordered_map` with `absl::flat_hash_map`.
- 3324f68 [BNPL] Fix issue with disabling pay later during an ongoing flow
- dcc47c1 fake_dmserver: Better logging for extension policies
- 56cc5fd Roll WebView ARM64 Orderfile from ifRhYy2emjPQzmK8q... to 8l8ak9orgN7WNAyjX...
- 4fd337e setProxyOptions: require ProxyOptions to be non-null
- 1dd1297 Declare acceptable values for port via @IntRange
- 20a3650 Make proxy APIs getters package private
- f4397e2 Add AutofillServerQueryPredictionsEarly to fieldtrial_testing_config
- 831c530 Roll vulkan-deps from 3d192133a53d to 65aa1957f924 (1 revision)
- 4024702 Fix absl includes with shortened path
- 6ee8ab9 Revert "Create fieldtrial testing config for reading mode omnibox"
- 1ac0790 [glic] Gate Trust-First Onboarding on Multi Instance availability
- bdb989f WebNN: Simplify D3D12 synchronization in ORT backend
- 07d824a Add a new owner for //ui/display/mac
- db062c9 Mark ContextLost_WebGPUStressRequestDeviceAndRemoveLoop for retry
- fcd2451 [iOS][Omnibox] Show suggestions on clobber
- 410da6a Reland "[iOS] Re-enable FileUploadPanelTestCases photo picker tests on device"
- 708955c Roll Chrome Android ARM64 Orderfile from rB3k4X3aJyxnbyzIO... to D3jID9pSBmsD4ehoR...
- 211b720 [Autofill AI - Reauth] Add final strings to toggle component
- afdf916 CCA: Remove accent color in upload error notification
- 160e11b Roll WebRTC from d4c7545caaf9 to 4098bb385415 (1 revision)
- a0f1e3f [profiles] Extend ProfilePicker.StartupTime.BeforeCreation histogram
- e43ce2f Revert "[AIM] Adjust button sizes and lots of padding/margin."
- e626c5c Extend HPRT histograms
- 129488c Select to speak: Remove mv3 directory
- 22f40cc Use PrivacyIndicator for glic microphone usage
- 92bcbad [Bedrock] Ensure service is checked for validity
- 3bb4bab Reland #2 "Android: Fix crash from using TransitiveObservableSupplier after destroy()"
- 495e884 Roll clank/internal/apps from a77ba17b2981 to 0052336f6503 (1 revision)
- 51ca8ca EIPS: don't fetch policy for non-CWS extensions
- bdb5033 [cleanup] De-virtualize LayoutBoxModelObject::FirstLineHeight.
- 8dc51d5 Remove deprecated TODO.
- 03b9f5d [LNA] fix mixed content ws:// bypass for LNA
- cf33d9c Remove TabLoader based tab restore code [2/3]
- 3f0d5d7 Remove TabLoader based tab restore code [1/3]
- 3f3e22c Move css-shadow-parts/ tests to css-shadow/part/
- 503b562 [ios] Update cvc deletion dialog to wallet branding
- 6c9f831 ScopedVT: Rename WebDXFeature.
- 70a691c [Chrome Next] Eliminate unneeded animator and dependencies
- 9fad40a spanification: automatically spanify base/strings/utf_string_conversion_utils.cc etc.
- 609f438 Roll WebView ARM64 Orderfile from kHvFpRX12I1xjRwie... to ifRhYy2emjPQzmK8q...
- f6e5355 Roll Chrome Mac Arm PGO Profile
- 606360f [Persist] Add orchestrator-specific metrics
- fa38873 [Persist] Allow null cipher factories
- c1908e9 Access Code Cast: Migrate error-message to Lit
- 0494b82 Mark WebCodecs_EncodingRateControl_hvc1 Slow
- 28a80f6 [Vertical Tabs] Add user action for switching tab strip mode
- 333309b Suppress conformance2/rendering/framebuffer-render-to-layer.html
- 4f2d891 Move css-scoping/ tests to css-shadow/ to match spec
- 4452564 Update spec references in tests for css-scoping/
- 84490ae Roll Crossbench from dadbfbb5128a to 841f380122c2 (1 revision)
- 1b47b9d Roll Chrome Android ARM64 Orderfile from FllvyONW1EeEYxgy2... to rB3k4X3aJyxnbyzIO...
- ec211f7 [iOS] Add provider method for Gemini floaty UI change
- f29965a enterprise: Enforce Data Controls for Drag-and-Drop on Desktop
- 5efdcb9 Roll Media App from _GU6sn_Ax1MB0t_k8... to uf714ZcPSVzdN4ToB...
- 85acc66 [Gardener] Update logs in getDisplayMedia test to show error message
- 580ad90 [Vertical Tabs] Repeatedly middle clicking fix
- ecbb5cb [Autofill] Add actor mode debug flag
- c8892b1 [iOS] Mark setup items as complete when steps are finished
- 498cb56 [iOS][AIM] Reduce space between attachments and text by 4pt
- 7076bc9 Rebucket Memory.DumpProvider.FollowingProviders again and log counts
- c5a1fcd Pass the AgentClusterKey from the browser process
- 88928ab Webview web performance apis: add null check
- befccd9 Roll DevTools Frontend from bcaa5a1aacae to c47caefdfe58 (1 revision)
- 864f0cb Allow overflow in all directions for overscroll-area
- ec9185a Add more NOTREACHED for Linux updater client
- 2bab978 [Android][3PPWM] Restore 3P setting for temporary failures
- 17c0e40 Inherit scroll-behavior on ::-internal-overscroll-area-parent
- a95a3c4 [OTP] Add Gmail OTP integration test
- 499b8f7 [OTP] Call GmailOtpBackend in OneTimeTokenService
- d94fc5d [OTP] Add GmailOtpBackend with fake impl
- be138c9 [Vertical Tabs] Change computation of tabstrip preferred height
- 5c34712 [Skills] Add skills string file
- 35e542d Migrate sensitive policies with manually added notices
- c847b5a [VL] Add additional 404 integration tests for HistoryBrowserTest
- 750dd84 Add IDBDatabaseExternalMemoryAccounting to testing config and Webview flags.
- f177a08 Updating trunk VERSION from 7638.0 to 7639.0
- 48e99f9 Roll src-internal from 20441dc8b04a to 0c3dc5c6f4fc (1 revision)
- 783619b Roll WebView ARM Orderfile from w0Lqe0BsTZyaUvOrd... to kuEm02MC4I6_5WMOe...
- a370f27 Change breakages.json to accept a list of change IDs
- bd4e9cb Do not use FastCheckout's drawable class in recent_tabs
- cc071bd Roll CrOS system_api from 3757fb80b4ba to 0b7c44227a01 (1 revision)
- e8a957e [iOS] Adds OWNERS to i/c/download
- 7f01a01 [BrowserWindow] Change ChromeAndroidTask setup
- d8834e7 Roll WebRTC from 8db56f72bf25 to d4c7545caaf9 (1 revision)
- fd2af92 Fix UNSAFE_TODO in process_iterator_win.cc
- 406c0f6 Roll Chrome Mac PGO Profile
- 62a0312 Add kill switch for skipping suppressing on ac=unrecognized fields
- cd6d13f Add experiment flags for WebView Perfetto init
- 48cb69a [iOS][Composebox] Fix Corner Resizing
- bd8bd47 [iOS] Remove unused method -[ResizedAvatarCache initWithSize:]
- 9bc2860 Roll Skia from 9dde6e3b93e9 to 46e52c3b16ca (1 revision)
- 0b39fa4 Roll Chrome Android ARM64 Orderfile from puJHmfF9-NYk_RKFs... to FllvyONW1EeEYxgy2...
- 22ac175 Refactor FeatureTokenManager to use base::expected
- 3f15b15 Import wpt@a9180c62224f2eb6df09a4e441d6aba2fd2df47b
- df13626 [Signin][Android] Remove FirstRunSigninProcessor and related code
- 276eb49 Roll FreeType from a9babbcbc0e9 to dad4640660a2 (1 revision)
- 67c010a Roll DevTools Frontend from fa44b5cb4c8d to bcaa5a1aacae (1 revision)
- 01bca48 Roll captured_sites/password from 749475b8448a to fe3c6ba1ca9a (1 revision)
- fddf253 Revert "Reland "Android: Fix crash from using TransitiveObservableSupplier after destroy()""
- 3a8ebd2 Roll Chrome Android ARM32 Orderfile from 63f85MSwMwF5nrHu1... to Y5fQju6igupCHmvb9...
- c4dfacc Sync tests: Create reading_list_helper.h/cc
- 3d8a940 Roll Perfetto from 21cba3ee2bb5 to a5c4278fbc60 (1 revision)
- d939989 Roll Help App from wCx3LV5za1HARMwN4... to TMPInp9OKdfjFc9ez...
- 55f8965 Roll WebView ARM64 Orderfile from DDC1hcDZ5iw--VoL5... to kHvFpRX12I1xjRwie...
- 11a08f0 Roll Chrome Win64 PGO Profile
- 6c8b179 legion: Implement server attestation signature verification
- fb28d4c Rm field trial config for UseHeuristicForWindowsFullScreenPowerPoint
- 3a7fa8a Roll Chrome Win ARM64 PGO Profile
- 5c99b32 Add field trial test config for UseHeuristicForFindingEditor
- 3856054 Update references to PNA to point to LNA
- 1dd8588 [gardener] switch off ManualFillingIntegrationTest#testMovesUpSnackbar
- 3d783a4 [media] Pass ColorSpace for CreateSI in FakeVideoCaptureStackReceiver
- daa42bd Roll androidx from w7eBFF8Y-i6GcXetK... to H_bpreD8PDCWsTpDG...
- 0518942 [Blink] Remove CanvasResourceProvider::Clear()
- e0a2196 Roll Chrome Mac Arm PGO Profile
- 17b1790 [TDR] Remove TODOs linked to issue 41486252
- 4883b9e feat: Add logging for gemini session cancellation
- 5c3ec2f Clean up obsolete negative-background-size use counters
- 9d9f8a9 [TDR] Remove TODOs linked to issue 258278176
- a9cce57 Revert "Add LockTopControlsV2 to field trial testing config"
- 101c6d7 [Uno-d clean-up]: Remove dependency on the Sign-in manager
- dfddd6b Merge BrowserCollection Android and non-Android implementations.
- ea54ce3 Roll Chrome Win32 PGO Profile
- 24d5b9f [iOS] Fix distillation freeze for fragment navigations in Reading Mode.
- fb9266c Revert "Move parser logic to presubmit utils from prettry print scripts."
- 38ae24e Roll DevTools Frontend from 594769f48f88 to fa44b5cb4c8d (1 revision)
- 2e5ed76 [AutofillAi - M4] Fix date parsing in the AttributeInstance.
- 4614aea Fix CSSParserLocalContext computation for ConsumeBorderRadiusCommon
- 8370a27 Roll Perfetto from 4d003f71a165 to 21cba3ee2bb5 (1 revision)
- 4f737fe [KP] Automatic update from google3
- e68a40e [TabGroups] Create feature for attention indicator status
- 69708a4 Updating XTBs based on .GRDs from branch main
- 3481e39 [2/7] Add new experimental APIs to AconfigFlaggedApiDelegate
- d957b80 Roll ios_internal from e16d4bc239ec to 3d3a998d8fe0
- a762931 Revert "Migrate last base::Contains() to std::ranges::contains()"
- c4d17d2 Check the input type correctness for CSS abs() function
- f76d1da [CT] Automatic update from google3
- 5c01d25 Roll Crossbench from 81ebd0f9e676 to dadbfbb5128a (1 revision)
- b850aeb Migrate last base::Contains() to std::ranges::contains()
- 241ea74 extensions: Consolidate TabGroupVisualData JNI calls on Desktop Android
- 9693263 Revert "[Part 2] Hook up back button to back-to-opener functionality"
- 3700203 Revert "[iOS] Re-enable FileUploadPanelTestCases photo picker tests on device"
- 612938e Roll clank/internal/apps from 2c344bb21de1 to a77ba17b2981 (1 revision)
- 168cf1f Roll Chrome Android ARM32 PGO Profile
- 35ee842 Roll ios_internal from 83f5cefa2318 to e16d4bc239ec
- 932bbb1 Remove CopyRandomValue*IfNeeded functions
- a47dff6 Roll Chrome Android Desktop x64 PGO Profile
- 2acc3f7 Revert "[permissions] Plumb PromptOptions through PermissionRequestManager"
- 4a9f291 [ios] Add verbose logging option for run_cwt_chromedriver.py
- 95629ff [Persist] Add shadow store functionality to CustomTMO and HeadlessTMO
- 1a90c37 Roll Chrome Android ARM64 Orderfile from drZ4-_vIK2_hZG9gF... to puJHmfF9-NYk_RKFs...
- 2b43e6a Roll WebView ARM64 Orderfile from YBwCRKZf3SFjx3h8O... to DDC1hcDZ5iw--VoL5...
- 98b0f61 Roll Chrome Mac Arm PGO Profile
- 988d5f4 Roll ANGLE from 958a12c66f1f to 8662de5e6b62 (1 revision)
- d7b3c08 Roll V8 from 4d6845a19d6f to 8c60172d94f3 (3 revisions)
- cfc9ea7 Roll Perfetto from 06a950d59ed6 to 4d003f71a165 (1 revision)
- 738c9bb [RWM][RecentlyClosed] Show message if instance limit reached
- 9f6b919 Roll Chromium Variations from OV4lvOl_YXbIY_9uV... to g3tfxBxbah7S-CrRz...
- 8cf308d Add placeholder custom icon load support
- a559130 [Extensions] Clarify fallback behavior for `sidePanel.close()` method
- f2c12da Roll BoringSSL from 6fe076b4fe7a to c2d23258fc0d (1 revision)
- 2af2575 Stop un-biasing the number of presented frames in first fixed window
- c6e4ebc network_diagnostics: add missing version annotations
- 1acd19a [iOS]Rename AccountInfo to ExtensionAccountInfo
- 0263c7b [AutofillAi - M4] Create converters for update details.
- 49cf2b9 [AutofillAi - M4] Add old attribute value to the update details.
- 131b12f privacy-hub: Clean up expired histograms
- 7c7d85a Roll Chromium-BiDi
- bc18f0a [iOS][AIM] Decrease attachment radius to be 16pt
- a8044fb Roll Dawn from 8cdfb5f7b2c9 to 38c82634fe2f (2 revisions)
- e814522 Roll src-internal from de609e4154e4 to 20441dc8b04a (1 revision)
- 1a5f6b4 Replace styled attributes with references to the underlying layouts
- d236a51 [Autofill AI - Reauth] Obfuscate sensitive labels on settings page
- 1d9b203 Roll V8 from c4005757d805 to 4d6845a19d6f (4 revisions)
- 3ceb1ab Update spec references for css-shadow-parts
- 3e1a979 Move css-shadow-parts idl tests into css-shadow
- bbd04a9 Update meet_effects hash in DEPS file.
- fae17f5 Roll Perfetto from 53beba68daf9 to 06a950d59ed6 (1 revision)
- 7b55c04 Roll BoringSSL from 7a9a8e2f7b5c to 6fe076b4fe7a (1 revision)
- 376d4f0 Remove kIOSOneTapMiniMapRemoveSectionsBreaks
- dfc95bf [Autofill AI] Update settings page to handle default availability
- 0de87f5 [iOS][AIM] Center align clear button in its visual bounding box
- 8e1a893 Enable DataUrlMimeTypeParameterPreservation by default
- ae3c392 Roll Projector App from t1NwmEEH7fI29whf3... to gO9KmL4DpMZcDDQJ6...
- 268e45e Roll Chrome Android ARM64 Orderfile from DbP3XTZsMWKBxonog... to drZ4-_vIK2_hZG9gF...
- 2155825 Pass CSSParserLocalContext to custom properties syntax parser
- a7c4865 Roll ios_internal from 2147639a98ff to 83f5cefa2318
- 39b68e2 Roll WebView ARM64 Orderfile from -T2J5gjNK57qMqZTj... to YBwCRKZf3SFjx3h8O...
- f9cdca6 Roll Chrome Win64 PGO Profile
- 6355a62 [HybridInAutofill] Allow footer entry point for all dropdowns
- 8a4cbce [PEPC] HTMLPermissionIconElement should not have icon choosing logic
- 87ca2f0 Roll WebRTC from 948ae77960bb to 8db56f72bf25 (1 revision)
- 24d48c4 Enable some features related to automated password change by default
- 516a066 Roll Chrome Mac Arm PGO Profile
- d218a44 Move parser logic to presubmit utils from prettry print scripts.
- 7e46fb2 Roll V8 from b4269866b232 to c4005757d805 (3 revisions)
- d4afdcc Roll DevTools Frontend from 73adf2fe2345 to 594769f48f88 (1 revision)
- 27c0ded Create new flag `PasswordUploadUiUpdate`
- 6c9bded Fix DisplayOverride::ToDebugValue to set "display"
- f895c13 Gardener: Disable WPT tests external/wpt/webdriver/tests/bidi/script/get_realms/
- 3a4b55f Roll ANGLE from c509a8315bad to 958a12c66f1f (1 revision)
- a5b9749 [Android] Add SigninSurveryController integration test
- 7688ee1 [permissions] Plumb PromptOptions through PermissionRequestManager
- ff27e1b Add a fieldtrial testing entry for ExcludePipFromScreenCapture.
- b3890b3 [Sync] Simplify GetDataTypeFromSpecifics()
- 3b1047e Use base::flat_map instead of std::map in DecodeMap.
- bdfbd49 De-duplicate account extensions also saved locally
- e3dcfd1 Roll clank/internal/apps from b62fcb5ff216 to 2c344bb21de1 (1 revision)
- 1fd4179 Roll Boca Receiver App from uMAiaNhqlBHJk7CUz... to wgNFvqpJGjitFYTnC...
- c24c6aa Roll WebView ARM64 Orderfile from YIL627C4Nb2lSn68f... to -T2J5gjNK57qMqZTj...
- 6ef3190 Roll Chrome Android ARM64 Orderfile from y0QPkKHihwJPj3uWt... to DbP3XTZsMWKBxonog...
- 5273ee3 Reland "DSEPrewarm: Enable on mac/windows in the fieldtrial_testing_config.json"
- c7bd568 Reland "WTF: Fix UNSAFE_TODOs in atomic_operations_test.cc"
- d383d17 [permissions] Plumb PromptOptions through PermissionPromptAndroid
- fa0be66 [iOS] Postpone IOS.SaveToDrive.* histograms expiry, update owners
- b30ba6c [iOS] Re-enable FileUploadPanelTestCases photo picker tests on device
- 8d638ac [Frameworks roll] Roll to 856995215 piper revision
- b47e74e [permissions] Plumb PromptOptions through OnPromptResolved
- 79e47fd Move SearchEngineChoiceScreenConditions to regional_capabilities namespace
- ad15b9f Query server predictions early
- b0ddb31 [permissions] Plumb PromptOptions through PermissionUmaUtil
- 5d3a4e1 [permissions] Plumb PromptOptions through PermissionDecided
- 2bdf2fe Roll WebRTC from 8c4d7ff6bffd to 948ae77960bb (1 revision)
- 447b496 [Autofill] Use base::IgnoreArgs() for on_suggestions_returned
- a423bd0 Fix Sync Error Infobar dismissal on acceptance
- c701771 Roll Chrome Mac PGO Profile
- 77fd0ea Warn user when bookmark limit is exceeded during Sign-out
- 4679d02 Deflake PageLoadMetricsBrowserTest.InputEventsForFormSubmission
- 68b1614 Roll Search Engines Data Internal from 2c00b61a3d21 to 51daafef1dd7 (1 revision)
- e9808c2 Roll BoringSSL from bcd49571e973 to 7a9a8e2f7b5c (1 revision)
- 2acd915 Roll Skia from 4074904184f8 to 9dde6e3b93e9 (1 revision)
- 5b0a93a Roll Chrome Win32 PGO Profile
- a8d5e27 Roll WebView ARM Orderfile from 9W2gC6mgSHad7QG4S... to w0Lqe0BsTZyaUvOrd...
- 4ce5e68 ELUD: Add ADVANCED_MEMORY_SAFETY_CHECKS to BrowsingDataModel
- 2803e39 WebAuthn: Remove dead IDS_PASSWORD_MANAGER_PASSKEY_FROM_PHONE path
- 673d582 Display UI for the bookmarks limit exceeded sync error
- c08a306 Roll WebView ARM64 Orderfile from TNoe1NptGRtTTN1mA... to YIL627C4Nb2lSn68f...
- b58505c Roll Chrome Android ARM64 Orderfile from HW_VitmwIefZP9xRQ... to y0QPkKHihwJPj3uWt...
- 9fc9dc6 Roll Chrome Mac Arm PGO Profile
- 1e0ca04 Add UMA for chrome://inspect#remote-debugging
- 1f56fd7 Avoid adding frameworks deps on non-apple builds
- 62e94a0 Roll Chrome Win ARM64 PGO Profile
- 99c80e4 CCA: Use path from OdfsSkyvaultUploader for OneDrive uploaded path
- 78e535a Roll androidx from wncI2D_0ozFAcWGh7... to w7eBFF8Y-i6GcXetK...
- de25f1c Rename ComputedStyleUtils::BackgroundImageOrMaskSize
- bcac5c4 [Signin][Android] Implement seamless sign-in loading state
- a56d78e Gardener: Disable external/wpt/fedcm/fedcm-storage-access-api-autogrant.tentative.https.sub.html
- 3a63a54 Reland "Refactor PermissionIconResource to include content description"
- e903120 [ClapperQuiet] Adds Field Trial Config
- ba93480 Roll Skia from 47d1d2f5bda8 to 4074904184f8 (2 revisions)
- 9b18be6 Gardener: Disable three ReadAnythingControllerBrowserTest
- f9e2d26 Rename SaaS domain report to SaaS usage report
- 05cf29e actions revamp: Rename EToolbarContainer to ExtensionsToolbarDesktop
- 02a5ee8 Revert "Relocate form factor checks in shouldOpenIncognitoAsWindow"
- 30bb168 Roll Depot Tools from 4ee113471daf to ea4fc7f6815a (1 revision)
- af35f32 Roll V8 from 85e8a9c93c94 to b4269866b232 (2 revisions)
- 50e3f1a Remove the "CanvasTextTexImage2DFix" runtime flag
- 4f028fd [BNPL][Clank] Replace GPay with Wallet branding in BNPL ToS bottom sheet
- 68af14f Roll Chrome Android ARM32 PGO Profile
- f84829c Roll Chrome Android Desktop x64 PGO Profile
- a0499dc actions revamp: Enable ExtensionsMenuAccessControl on Android
- 79286fe Add CHECK in `StartLoadingInternal` to confirm nullptr usage.
- 51991e1 Roll Chrome Android ARM64 Orderfile from Fl1MU7Oy30Lq8Hoie... to HW_VitmwIefZP9xRQ...
- 5ffcfd8 Roll WebView ARM64 Orderfile from 2LJBJsEJ27YpjJys5... to TNoe1NptGRtTTN1mA...
- f954d2c Roll DevTools Frontend from fa0fe837e593 to 73adf2fe2345 (2 revisions)
- 8ae78c5 [Autofill] std::move() Suggestions in on_suggestions_returned
- 75e9ddd Roll Chrome Mac Arm PGO Profile
- bd223de Roll Skia from 5b0b17eed6b6 to 47d1d2f5bda8 (1 revision)
- 65a0cdd [ios] Add a new implementation of PrintCoordinator in Swift
- 555c349 infra: Introduce linux.asan.browser_tests.filter
- 9b9435e Roll Updater chromium_win_x86 from 2@1564004 to 2@1565035
- 95a5903 Roll Chrome Win64 PGO Profile
- 25d0796 Roll Updater chromium_mac_amd64 from 2@1564004 to 2@1565035
- 557c886 Improve PRESUBMIT against C++23 features in partition alloc
- 3071592 Roll Updater chromium_win_x86_64 from 2@1564005 to 2@1565036
- 08e0e08 Fix memory leak in WebTransport::closed_potentially_pending_streams
- e2d1903 Roll Updater chromium_win_arm64 from 2@1564004 to 2@1565024
- 0c42b74 Re-autogen input_method_private_interface.js in Closure compiler.
- 9bdc317 [Part 2] Hook up back button to back-to-opener functionality
- 1524f62 Roll Chrome Android ARM64 Orderfile from 27yu3i5CI7Kz61k1U... to Fl1MU7Oy30Lq8Hoie...
- 7d1c49f Roll WebView ARM64 Orderfile from y0z7wP7ZdFDXbfKnM... to 2LJBJsEJ27YpjJys5...
- f1e14f1 Roll DevTools Frontend from eddf713e1954 to fa0fe837e593 (1 revision)
- 7ac00c3 Move user gesture dropping logic for frame proxy navigation
- cab7e47 Roll FuzzTest from a72f099a943c to 9534f7ae0c15 (1 revision)
- 33211d3 Roll clank/internal/apps from 6fa8d1447855 to b62fcb5ff216 (1 revision)
- c5295d0 Revert "[composebox] Disable input cursor changing colors in NTP, CoBr"
- ddc79bf Roll Dawn from 8911780920c2 to 8cdfb5f7b2c9 (1 revision)
- dee6b84 Roll ANGLE from 8f8fc461bbc2 to c509a8315bad (1 revision)
- de4abbf Manual roll Breakpad from bcf7b6f1596e to 12603ee4d152 (11 revisions)
- cb2d18c Gardener: Disable external/wpt/fedcm/fedcm-storage-access-api-autogrant.tentative.https.sub.html
- 92d5aa2 Roll Chrome Mac Arm PGO Profile
- dc965d9 Reland "infra/config: Enable local profile for build perf builders"
- 84120f9 [ios] Update upload failure to local save error message
- f794036 Roll WebView ARM64 Orderfile from 1XyYJwBBSc1mXBNDg... to y0z7wP7ZdFDXbfKnM...
- 4167c59 Roll Chrome Android ARM64 Orderfile from TpcAh2cy-9MDRhWXM... to 27yu3i5CI7Kz61k1U...
- 6fd706a Roll vulkan-deps from 3249f65a4e16 to 3d192133a53d (1 revision)
- 4202595 Add Script Tools team as actor OWNERS
- 5e147af [contextual tasks] Eliminate race condition in uploads
- fe07cef Roll Chrome Win32 PGO Profile
- 80443cd Updating trunk VERSION from 7637.0 to 7638.0
- adf0dbd [omnibox-next] Adjust variant 3's contextual chips placement.
- 8669c06 Fix a pair of QuicSessionAttemptManagerTests.
- 8df19c0 Extending the run loop timeout to ensure CRX verification completion.
- 539f09a Roll Chrome Mac PGO Profile
- 19a2482 Move OnUsersSignInConstraintsUpdated to PolicyUserManagerController
- f0ad5ea Roll Skia from 33e8951e3a0b to 5b0b17eed6b6 (1 revision)
- 6e08c58 Add LockTopControlsV2 to field trial testing config
- 9234ba5 Roll Chrome Mac Arm PGO Profile
- 45ca275 [Linux] Add Linux.KernelVersion metric
- a0d9c92 Roll WebView ARM64 Orderfile from nMbzmIvLwJfjAaCK0... to 1XyYJwBBSc1mXBNDg...
- d43eb86 glic: address a11y issues with settings page
- f9efb37 Roll Chrome Android ARM64 Orderfile from 1yaFEsIgxjNuykiuU... to TpcAh2cy-9MDRhWXM...
- b757b37 Roll src-internal from 3bda23e12a2d to de609e4154e4 (2 revisions)
- 8ff6359 Roll Depot Tools from 90942f80d90c to 4ee113471daf (1 revision)
- 620ce87 [AF][Clank] Replace GPay with Wallet branding for CVC only save
- 6c18838 Replace Profile with BrowserContext in InstallApproval.
- 9a7acb2 Move ExtensionAssetsManager to //extensions.
- c53efb4 Add a browsertest to verify a crashed page is not discardable
- bfae10a Roll Chrome Linux PGO Profile
- 757105a Revert "infra/config: Enable local profile for build perf builders"
- d21b045 Roll Chrome Win64 PGO Profile
- 6264ebe Roll Perfetto from f4af140308bf to 53beba68daf9 (2 revisions)
- 4c888bb Roll BoringSSL from 988577e83b7e to bcd49571e973 (3 revisions)
- 16de725 Roll Skia from 946441608e3e to 33e8951e3a0b (1 revision)
- f0c5612 Populate updated_hardware_class in system profile
- cf5973c url: Resolve UNSAFE_TODOs in url_canon.h
- bdb67c3 Remove vvc codec string parsing.
- 50cca5a Optimize add tab of PendingTabClosureManager
- 39365e1 Roll clank/internal/apps from 18964ea69b1d to 6fa8d1447855 (2 revisions)
- e355619 Roll src-internal from ff632019b3fd to 3bda23e12a2d (1 revision)
- d26d2f7 Roll Open Screen from 43bf97a1aa11 to d364847b924b (5 revisions)
- 6f54a00 Roll Chrome Android Desktop x64 PGO Profile
- 21deda5 HttpStreamPool: Add tests for slow IPv4 attempts
- 240cea4 [context-input] Refactor how source is passed through contextual-tasks
- ab0fe48 Revert "extensions: Support tab group created notification on desktop Android"
- 3f04883 Roll clank/internal/apps from 9fc9324d08de to 18964ea69b1d (1 revision)
- 7552d54 infra/config: Enable local profile for build perf builders
- fded23a Roll ANGLE from a6a96f17d27b to 8f8fc461bbc2 (1 revision)
- 6ec6966 Move PageContentScreenshotService to //components
- d4607cd HttpStreamPool: Move connection attempt delay timer to TcpAttempt
- 99da461 Roll Updater chromium_mac_arm64 from 2@1564004 to 2@1565025
- 39b4caf updater: remove trailing decltype return from lambda
- b78d1b3 [Composebox] Update the expiry date for aggregate metrics
- 507c3ae [lens] Add searchbox stats to Lens AIM client message
- 0d1b308 Relocate form factor checks in shouldOpenIncognitoAsWindow
- 87cb100 Roll Android Lint from 22TeXNcAIQUr7pSY2... to kKXCEgWultH2wInyO...
- bcf7285 Roll Chrome Mac Arm PGO Profile
- 49e37b0 [iOS] Refactor Mojo API to use standard JSON.stringify
- cd0ceae [WebUIContentsWrapper] Remove zoom gestures for all platforms
- 73a7492 Revert "[gardener] Disable WebUILoadingUtilSendDataTest#SendData"
- 201fef7 Roll Enterprise Companion chromium_win_x86_64 from YhXpdOiiflIOxqdLP... to Gt07itbpqB4dZYblA...
- 71e327d Roll Kotlin Stdlib from w1TdvHUfiUruKecZG... to qsUJaApT56zmlGGJ6...
- e14556b Roll vulkan-deps from ad3cefb42098 to 3249f65a4e16 (3 revisions)
- c4a7196 Roll Depot Tools from 84abba9a0210 to 90942f80d90c (1 revision)
- 3a3ee32 Automated Commit: LKGM 16556.0.0-1074593 for chromeos.
- ea02150 Roll Updater chromium_linux64 from 2@1564004 to 2@1565003
- 7a209e8 Roll clank/internal/apps from 0db30559bd7f to 9fc9324d08de (1 revision)
- 81a583c Roll Enterprise Companion chromium_win_x86 from gi8IGbb5o1UgF8CH3... to FAmlsuBpHHI_07YZg...
- c9af97b Update `TestExpectations` with bugs filed for crrev.com/c/7485033
- 4070991 Roll Enterprise Companion chromium_mac_arm64 from uAqV-ZWCcr_8C4Pld... to zYbg4vYi0Cg-C2CDj...
- 6455e09 [TreesInViz] Refactor Layer serialization tests
- 38cb111 [sqlite_vfs] Move sandboxed SQLite VFS to its own component
- e0753b1 fjord-oobe: Export dbus method for getting fjord OOBE states
- 3012c72 Roll Chrome Android ARM64 Orderfile from IbKkmLXj2LCyLvkF1... to 1yaFEsIgxjNuykiuU...
- 1471014 Roll Error Prone from dhl6VZIaB1O_e5ero... to I1le-VKG1eHuZsz0L...
- 9a3bbe4 [Vertical Tab] Handle kTabWantsAttentionStatus attention type
- 4f631ad Roll Manifest Merger from rFAYLi0-Y71nDk13D... to KwSGMP0ESTSb86A6P...
- 5c2f523 Change sub-menus border radius for Immersive Reading Mode toolbar.
- de06a36 Fix UNSAFE_TODOs in some net/ files
- 99935f0 Roll Enterprise Companion chromium_mac_amd64 from s9kNaFT1339fA7lMU... to ru2QS89Ut9S5o6uEq...
- 4de5d22 Roll WebView ARM64 Orderfile from mpDhfySIr5cVLkhP7... to nMbzmIvLwJfjAaCK0...
- b045f81 Revert "Remove stale WebGL 1 expectations"
- e97085d Roll Enterprise Companion chromium_linux64 from F1repiVrFfwaeG-zT... to 0HQaF_YPUflw1doM5...
- cd85e54 Roll BoringSSL from b648431a6ef3 to 988577e83b7e (1 revision)
- 93252a9 updater: refactor GetAllPolicies, use GetUpdaterPolicies/GetAppPolicies
- afffff9 Roll DevTools Frontend from 225e347185ed to eddf713e1954 (1 revision)
- 2fb3fa3 [i18n][ntp][passwords] Prevent i18n "is not supported" error throwing.
- 271c954 WebUI: Replace all usages of CrContainerShadowMixin with cr-scrollable
- 302d3d4 Add fieldtrial testing config for CSBExpansion Study
- 226efc3 Remove kComputePressureBreakCalibrationMitigation flag
- ee47dc8 [Model Picker & Canvas] Add strings for context menu section headers
- bbd4626 [contextual-tasks] Use image media type for requests with image crops
- 8c753a4 Roll llvm-libc from 5655225edf51 to f945d5762934 (1 revision)
- e6a247b Update Corp Messaging Playground to handle ECDH exchange
- 0f8ea78 Roll Open Screen from 8fc39671507f to 43bf97a1aa11 (1 revision)
- 09b93fa Extend ChromeOS.Settings.Device.Keyboard.AutoRepeatDelay.* histograms
- c648d93 Implement GlicTabObserverAndroid
- 12bab41 Allow try-bot to run on non-stable release branches
- a7730da Add the dimensions through flatbuffer when attaching embedding model
- 419f713 Remove base::MakeCheckedNum<>().
- 3ccb578 Add AdjustPreconnectRetryInterval feature for SearchEnginePreconnector
- 9126550 Roll src/net/third_party/quiche/src/ 022c607b0..a92707751 (5 commits)
- 1ce290d [WebUI Toolbar] Disable zoom gestures on mac
- fd32a8d Clean up old NotebookLM preload flags
- ef62eee Roll Dawn from 0ab61e6eaa3b to 8911780920c2 (2 revisions)