Chromium Digest: 2026-01-06
Overview
This summary covers 491 relevant commits out of a total of 648 on the main branch for January 6th, 2026. The day saw a significant number of breaking changes to core utilities, UI components, and networking APIs, requiring developer action. Major modernizations continued with large-scale refactorings to adopt C++20/23 features. Key feature work included advancements in Device Bound Session Credentials (DBSC), new web platform capabilities like customizable comboboxes, and numerous UI refinements across all platforms. The first and last relevant commits are
(0673bf1) and (08418a1) respectively.Breaking Changes
-
⚠️ BREAKING
The public function
base::ByteSwaphas been removed frombase/numerics/byte_conversions.h. Embedders must migrate to the C++23 standardstd::byteswap. (5869e71) -
⚠️ BREAKING
The public API of
media::SincResamplerhas been updated to usebase::spaninstead of raw pointers and size arguments. Direct callers will need to update their code. (2522e7a) -
⚠️ BREAKING
The signature of
FencedAllocatorWrapper::Alloc()ingpu/command_buffer/client/fenced_allocator.hnow returns abase::span<uint8_t>instead of a rawvoid*pointer. (de3e9aa) -
⚠️ BREAKING
The behavior of
base::MemoryPressureListeneris now fully stateful. Listeners will receive an immediate notification of the current memory pressure state upon creation, which may alter the logic of existing implementations. (5c71b78) -
⚠️ BREAKING
Support for Media Transfer Protocol (MTP) devices on Windows has been removed from
storage_monitor. The public headerportable_device_watcher_win.hhas been deleted. (aef221a) -
⚠️ BREAKING
Support for vertical button layouts in
views::DialogDelegatehas been removed. Theallow_vertical_buttonsproperty and its corresponding logic are deleted, breaking custom dialogs that used this layout. (dd407f7) -
⚠️ BREAKING
The
cc::ResourcePoolclass no longer inherits frombase::MemoryPressureListener, removing the publicOnMemoryPressuremethod from its API. (4470afa) -
⚠️ BREAKING
The public accessor method
model()has been removed from theBrowserTabStripControllerclass, affecting custom UI implementations that relied on it to access theTabStripModel. (7acd5e6) -
⚠️ BREAKING
On Android, the public method
verifyServerCertificatesinorg.chromium.net.X509Utilcan now throw aCertificateException. Cronet consumers must update their code to handle this new checked exception. (9fbb028) -
⚠️ BREAKING
The user-facing UI and related mojom definitions (
kCrostiniContainerUpgrade) for the Crostini container upgrade feature on ChromeOS have been removed. (ec36ec5) -
⚠️ BREAKING
The
setWindowDraggableAreasmethod has been removed from the Google-hosted Licensed Content (glic) API. (e490fce)
Web Platform & Blink
-
Support has been added for a
<datalist>element to act as a popover for a customizable combobox (<input type="text">), allowing web authors to fully style the options dropdown. (4da887d) -
The
LongAnimationFrameSourceCharPositionfeature is now enabled by default, providing more detailed attribution for long animation frames. (d514972) -
The
initiator-urlis now exposed inresourceTimingfor more resource types, improving attribution for fetched resources. (45d5c73) - Text-autosizing is now disabled by default in Android WebView, which may affect the rendering of some mobile sites. (4adbe03)
-
A bug in Shadow DOM has been fixed to correct the timing of
slotchangesignals for slot fallback during node insertion, aligning behavior with the DOM specification. (f834b27) -
Preparatory work was done to support the
random()CSS function by adding property information to theCSSParserLocalContext. (a340ed8) (3c844e5) -
For WebGPU, a prototype for
mapSynchas been added toGPUBufferbehind a feature flag. (b3138f1)
UI & Features
- The password manager's 3-button save dialog has been updated to a wider horizontal layout to better accommodate the Not Now option. (d75cd2f)
-
The internal
chrome://updaterpage has been enhanced with an event count, an infinite list for better performance, and filtering options. (26069d4) (aebf17c) (1dd25c7) -
The
kLeftClickOpensTabGroupBubblefeature flag was removed, making a single left-click to open the tab group editor bubble the default behavior. (5c3a14f) - Vertical tabs now correctly apply custom browser themes to the tab strip background. (954cc48)
- The "Read Anything" accessibility feature's UI has been updated to consolidate appearance settings into a single menu with cascading submenus. (85a76f0)
-
On Linux, named
<form>elements are now exposed asATK_ROLE_LANDMARKin the accessibility tree, aligning with macOS and Windows. (e49796d)
Networking & Services
- Significant infrastructure was added to expose Device Bound Session Credentials (DBSC) lifecycle events (challenge, refresh, termination) to DevTools for easier debugging. (62e7e23) (d11af9c) (a8949e5) (3e54720)
-
A major refactoring of the
HttpStreamPoolbegan with the introduction of a newHttpStreamPool::Attemptclass to encapsulate the logic for a single connection attempt. (a5ca8bb) -
In Cronet, a new boolean was added to
UrlResponseInfoto explicitly log whether a request is being proxied. (fd3b374)
Security & Policy
- To enforce the hardened runtime on macOS, third-party in-process plugins are now blocked by default. An emergency override switch has been added. (c54ef9c)
-
The
URLAllowlistandURLBlocklistenterprise policies were refactored to use the standard sensitive policy mechanism, making their status more visible onchrome://policy. (adfc6d7) -
The
ChildProcessSecurityPolicyimplementation was refactored to track its state within a newSecurityStateMapsinner class, improving encapsulation. (589551b)
Android & iOS
- The Tab Highlighting feature is now enabled by default on Android. (aeb0fba)
-
On Android, the
ANDROID_USE_CORRECT_WINDOW_BOUNDSfeature is now enabled by default to improve how window bounds are calculated. (488834b) - On Android, cipher key management has been added for Off-the-Record (incognito) tab state storage, allowing keys to be managed in-memory. (5202361)
-
On iOS, a crash and a visibility issue related to
window.openwere resolved, enabling the functionality. (2f70778) -
On iOS, a new
TabGroupColorPaletteclass was introduced to generate color variants for tab groups. (97f6039)
ChromeOS
- The "Enable Hostname Setting" feature has been completely removed. This includes backend classes, WebUI settings pages, and the feature flag. (1767d04) (fd41fc1) (b47ec40) (a74e353)
-
The
GetConnectedDevices()API in diagnostics was refactored to return a single struct, changing its signature. (8cc6488)
Code Health & Build System
-
A large-scale refactoring continued to replace
base::Contains()with the C++20std::ranges::contains()across dozens of commits. (e13cb6a) (f301383) (8d05058) (116ad4d) (ef704f8) -
A multi-part refactoring converted the
LayoutConstantenum to a saferenum classto improve type safety in UI code. (da3c215) (2b771af) (e1c5783) (0b97986) -
The
nodedependency was updated to v24.12.0 LTS. (8ced542) -
Numerous shipped features had their feature flags and killswitches removed, including
kUserAgentFrozenBuildVersion,Read Aloud, andDownloadsDisplayInitiatorOrigin. (efdbfb2) (a2891e1) (d52447d)
All Commits (648)
- dee21fb Roll Enterprise Companion chromium_win_x86 from gQC_4A14F6FJeYtiR... to etcMIrH_aMFRJ_oWk...
- b18e041 Roll Updater chromium_mac_amd64 from 2@1559022 to 2@1560017
- 08418a1 [Glic] Fix FRE Escape key handling and metrics
- d112744 Roll WebView ARM64 Orderfile from qwobNnWJJ-a0dur6L... to EIqidYK7t26sRaZOV...
- b3c86a0 Roll android_deps from WJa0CXY9wb6EyhoYM... to LStkoCV2NKgZ1hqhn...
- 302e842 [Omnibox Next] When showing the full URL tab chips do not show
- df0dcf6 [glic] Fix duplicate MaxPrivateMemoryFootprint metric reporting
- 6a04fc4 [Contextual Tasks] Fix dark mode and RTL in pixel test
- 8cc6488 diagnostics: Create ConnectedDevices struct
- 1f95a9b Roll Catapult from 4bd4bcffdfa5 to c9916a593bec (1 revision)
- ffdee6f [cleanup] Remove FontSelector::Version
- 083813c [bytesize] Migrate the Performance Controls code from the old ByteCount to ByteSize.
- 7acd5e6 [VerticalTabs] Remove TabStripModel accessor from
- db42a9e [remoting] Use $XDG_RUNTIME_DIR for SSH_AUTH_SOCK.
- 924918f Handle hovered/selected/pressed states for action button views
- 8f43721 move the NTSTATUS histogram enum to windows/ and add more codes
- d44b237 Roll Dawn from 958dff171579 to c5c38c717eb1 (3 revisions)
- e788478 ChromeAndroidTask: Log unsupported window types during window creation
- 6053220 Roll Chrome Android ARM64 Orderfile from j2YsDu-VmQ2-X0_pI... to kw5kjdSXtUfdqHjWE...
- 32d87d7 Roll PDFium from f0fa46532da4 to 7ab0fb11656f (5 revisions)
- 851072d [FedCM] Allow RequestPageData to store some embedder login info
- e2245fc Reland: Feature+param to control how sticky studies are persisted.
- 919b426 Roll FreeType from 4553f1c396dd to 5f524d04b4f8 (1 revision)
- 9fbb028 Reland "Refactor X509Util"
- 62915ec Migrate various base::Contains() to contains() in device
- 6b72473 [APC] Align outer bounding box mapping with visible rect
- 84b8493 Migrate various base::Contains() to contains() in testing
- d67f0d0 Roll ios_internal from 13b3f78cf5c5 to 323ac6ea1be6
- df9d02b [Omnibox Next] Update color of deep search and create image chip text
- 2522e7a fix the revert of sinc_resampler auto spanification
- 0b97986 Migrate LayoutConstant enum callers to support enum class
- d319c0d Use content model MutationObserver in listbox select elements
- 6524b05 [omnibox-next] Fix spacing header issues.
- fef3ac4 [ActorTaskBubble] Add subtitle for other task states
- 8c52f49 [ReadAnything] Centralize default SettingsPrefs into a constant
- 0f9d376 Extend ChromeOS.RgbKeyboard.* histograms
- e1c329a Roll SwiftShader from 8e12559189fa to 07b52b2bdc96 (1 revision)
- cdace36 Refactor SurfaceAnimationManager use of TextureDrawQuad to unnormalized
- cd0ab2e [Contextual Tasks] Fix WebUI not respecting browser RTL
- 6cfb3de Remove padding from customizable select WPT
- eb7ad14 Remove expired Compositing.Display.Draw.LastPass.Quads metrics
- ce32f5a Roll Chrome Mac Arm PGO Profile
- 5372fb3 Roll WebRTC from 15d74a5b976c to d1767395b668 (2 revisions)
- be8e74e [OOPPD Linux] Ensure DBus connection is up before making an XDG request
- c742da0 [Omnibox Next]Align mic and submit button in Variant 1
- 1bee373 Roll glic-test-internal from 50d243bda4e2 to 002775eaa771 (2 revisions)
- 6e48d48 [Vertical Tabs] Remove unused function CanDrawStrokes
- 18fe8fd Fix include order in content_to_visible_time_reporter_unittest.cc
- a9db94d [Vertical Tabs] Move ShouldDrawStrokes into BrowserView
- 908ad5a Enable CompensateGestureDetectorTimeouts by default on Android
- 4254bda Roll ANGLE from 1b567e6d2ef2 to 0d753c1e209e (1 revision)
- 0cb611c Updater UI: Hide event durations
- b396f3f [bytesize] Migrate some Performance Manager code from the old ByteCount to ByteSize.
- c54ef9c Block third-party in-process plugins
- 3551439 Remove "enable-secure-payment-confirmation-availability-api" flag
- bd2e433 [Media] Add jophba (@me) to media/OWNERS
- 556f4c8 [actor] Move UI mocks from mocks/ to test_support/
- 9868113 feat(cc): Add feature flag to control UKM reporting for compositor frames
- e8d9f56 base/{allocator,numerics}: Fix incorrect ARM preprocessor check
- f5b1a2e [Extensions] Use Promise based language in .idl / .webidl schemas
- 2bda121 Fix dropEffect value override for default spec values
- 7e252e2 mac: always restore focus on window becoming key
- 572fc21 Update CBB autoroll for the builds refs
- e76186e Roll WebView ARM64 Orderfile from dvMv5lWweklvk6Tow... to qwobNnWJJ-a0dur6L...
- ec36ec5 Deprecate UI-based container upgrade
- b3bb271 Roll Skia from 87a9f7d25c44 to eec90000a899 (2 revisions)
- dbd3cd6 [Omnibox Next] Fix contextual tab chip visibility conditions
- 807bd47 [iOS] Clean up PersistTabContext SQLite storage
- 880a1a2 [glic] Enable GlicWindowDragRegions by default
- 83c8996 spanification: automatically spanify remoting/host/mouse_shape_pump.cc etc.
- dc339f5 Update TextureDrawQuad tests to use unnormalized coordinates
- bac2ee6 [Vertical tabs] Use the controller's IsCollapsed() in the tab containers
- ec3a6af [Task Indicator] Add tooltip text for the task indicator
- 6c529a4 [Task List Bubble] Add a11y label for bubble
- 70d2da9 Roll Chrome Android ARM64 Orderfile from RDa7QktRvN0UYCra3... to j2YsDu-VmQ2-X0_pI...
- 90c93bc Roll WebView ARM Orderfile from 7tMBFhP2aF7y6ALTy... to wHFrbLSNxQvCbxHmW...
- 79ec113 updater: delete orphaned version directories, increase uninstall tries
- 9887fef display proper count when deleting bookmark folders in side panel
- 5c71b78 [MemoryPressureListener] Make pressure notifications fully stateful
- 820a68d Remove extra parentElement loop for interest invokers
- e23b06c ChromeAndroidTask: move setBounds() preconditions before pending update
- 7365591 [Frameworks roll] Roll to 852877807 piper revision
- 7cab53d Import wpt@8bf2c1d7cae64e7bcd28faed8f1b5e757194cbf7
- 05c495a Add a target for system_notification_helper.h/cc
- b810d9c [Omnibox Next] Fix SearchContentSharingSettings hiding entrypoint
- 1bb57b2 [ntp-next] Rename GetActionChipSuggestionsForTab to GetDeepdiveChipSuggestionsForTab
- d52447d Remove Read Aloud flag from chrome://flags
- cec0856 [ios] Reporting: use email instead of profile name
- 352a599 Implement LookAheadObservableSupplier
- f9089e8 Roll Chrome Mac PGO Profile
- b5704a4 [TabAndroid] Implement #registerDidActivate
- 3590901 [FRE] Enable FRE Launch bounds by default
- 968189d Fix joenotcharles address in histograms.xml
- 1b9aac2 Revert "Stop checking the package name in CronetTestRule"
- 78f56ae Roll vulkan-deps from b008fcb0489b to 6ab0c81a88f7 (1 revision)
- 488834b Enable ANDROID_USE_CORRECT_WINDOW_BOUNDS by default
- c55e79f Roll ios_internal from 1037c272ac62 to 13b3f78cf5c5
- 60999e7 Initialize the right font integration in paint preview on windows
- 9f89cc9 [gardener] Disable flaky GlicActorScrollToToolUiTest.ScrollsToValidNodeID
- 0de7166 [SxS] Clean up last test uses of kSideBySide
- 31317ee colabutils: Demangle symbols in MemoryUsageView by default
- 9b65901 colabutils: Prettify memory usage numbers when displaying in Colab
- b362e61 colabutils: Teach memory usage view to diff against another view
- 3eb84fb colabutils: Implement MemoryUsageView.display()
- 609c295 Roll Chrome Win64 PGO Profile
- 4ca7249 Roll Perfetto from e99dc403cec1 to 174d1d43709e (2 revisions)
- 54a4ab0 [vr] Remove dead ProcessFrameFromMailbox method
- c668009 Roll Chromium Variations from ycdu0NqDErWbNKsZC... to 4atdcFmnsBa2Y-qJU...
- 99a92f9 Remove PNaCl component cleanup code
- cf2c631 [BrowserControls] Allows cancel ongoing animations when height changed
- e490fce [glic][Part-1] Remove `setWindowDraggableAreas` from glic API
- 37f035b Move last usage of string to avoid a string copy.
- 738afd1 Roll Chrome Mac Arm PGO Profile
- 63e1153 [Clank Search] Supplies Attachment Limit for String Externally
- aa44d3f [iOS] Remove ProvisionalSafetyCheckNotificationsEnabled()
- 097b2ee Roll WebView ARM64 Orderfile from CdHF3SL6ofqtCLBOS... to dvMv5lWweklvk6Tow...
- c43c0ec [Chrome Next] Move ChromeOS ARC++ apps to new layout
- 3f98ad9 Roll Skia from b6249496c230 to 87a9f7d25c44 (1 revision)
- 4038e16 Migrate various base::Contains() to contains() in remoting
- 13d6416 [BCIV] Cleanup for bottom controls
- 240e984 colabutils: Implement MemoryUsageView.from_heap_dump
- a303cad Migrate LayoutConstant enum callers to support enum class
- 6d2f873 android: colabutils: Add MemoryUsageView
- 45d5c73 Expose initiator-url in resourceTiming for more resources
- d514972 Enable LongAnimationFrameSourceCharPosition
- 6c1d3d1 Migrate LayoutConstant enum callers to support enum class
- 3efff9e Migrate LayoutConstant enum callers to support enum class
- b31be5e Reland "Enable DistillationPopulatesContent test."
- 47faaf6 Roll Chrome Win32 PGO Profile
- 80f08d7 android: Add quiet mode to JUnit tests
- 5694939 docs/security: add AI shepherding notes
- ac8f9ac [Vertical Tabs] Center X button in collapsed tab
- 0492392 Roll Enterprise Companion chromium_linux64 from PsmKv9iTPp5XWXnn7... to e1hTsoe7JXHavRGfq...
- 9324bd0 [Cleanup][cc] Inline DestroySharedImage in StagingBuffer
- 68387d2 [IRM] Attempt to fix the Side Panel to IRM failure on Mac Canary
- 583ebd2 [Cleanup] Inline DestroySharedImage() calls in oop_pixeltest.cc
- 57ce987 Roll Depot Tools from b084cd665f2f to 3ad54e4fef93 (1 revision)
- 0153906 Rolling 2 dependencies
- aa65499 WebUI: Fix more TypeScript errors with moduleResolution="nodenext".
- 6e0912a extensions: Port tab group API unit tests to browser tests, part 3
- a9742cb Roll libyuv from 821b9c5de1cf to 022efdb0b771 (1 revision)
- cad7c0c Remove documentation for lookalike appeals process
- da212af Extend Bundled Security Settings Chrome Flag
- dd07373 WebUI: Remove PDF from Polymer folders list
- 634e433 Remove redundant checks in javascript_optimizer_feature_browsertest.cc
- c3673b7 Fix Elegant Text Height in Fusebox/Omnibox
- 3469349 Adding deprecation info on SearchContentSharing enterprise policy
- c0b5cb2 GlicButton refactor: unify width animations
- 9487b7d Roll src/third_party/libaom/source/libaom/ 9f39edc5c..6269d4011 (5 commits)
- c1d08cc Add glic_page_handler to android build
- 7acc505 Roll ios_internal from b5023bfceb4a to 1037c272ac62
- cb3c212 Roll Perfetto from 7115d474c95e to e99dc403cec1 (1 revision)
- baebf87 [iOS] move webauthn_security_utils from content into components
- 3957854 Roll Updater chromium_linux64 from 2@1559012 to 2@1560007
- f7eeb97 [iOS] Add unit tests for every type of passkey parsing error
- 10b9f53 [iOS] move RemoteValidation into components folder
- 5d4dd80 [ntp-next] Add enum values used by action chips
- ce41647 Fix typo on copyright header in c/b/ui/BUILD.gn
- 249828d Remove ampersands from showing in open all strings in bookmark folders
- c7b6b93 [NTP-Real-Box]: Remove focus outline and Fix clipped focus ring
- cad3bd7 [Desktop Android] Move tab status observers to TabsEventRouter
- 3824fcb Roll Chrome Android ARM32 PGO Profile
- d778ffd Roll Chrome Win ARM64 PGO Profile
- e1ba1f7 Roll Chrome Android ARM64 Orderfile from gAImKcOVB2vgliqYm... to RDa7QktRvN0UYCra3...
- 4adbe03 [text-autosizing] Disable text-autosizing by default in WebView.
- 4758040 [DCSI] SharedImageBacking::buffer_usage() returns optional.
- 1aa47d6 Enable GlicDefaultTabContextSetting in GlicAnnotationManager tests
- 17e170e History WebUI: Lit migration cleanup
- d02d479 [gap-decorations] Implement missing shorthands for inset properties (1)
- 4448c50 [realbox] Update the chrome://flags for enabling multiline in Realbox.
- ef5d86b [iOS] move RemoteValidation out of WebAuthRequestSecurityChecker for reusing
- 6312251 Roll llvm-libc from 5ada3ef076b3 to 8529e19e048f (2 revisions)
- c6938a2 Add glic_net_log to android build
- 67ec39c Roll Skia from f5d9da13d56d to b6249496c230 (1 revision)
- aac72b2 Fix include order in 2 //extensions files
- aae3a74 Observe side panel show/hide events to determine when to update underlines
- 8788084 [omnibox-next] Fix voice search font color in dark mode.
- 2589146 [styleguide] Allow std::basic_string::contains
- 444f832 Migrate various base::Contains() to contains() in chrome
- f04bd1b Migrate various base::Contains() to contains() in mojo
- ed7c78a Adding fieldtrial testing config for UpdateInstanceLimitDefinition study.
- fd81eb1 [Vertical tabs] Update the tab group line layout for collapse tab strip.
- 5c14098 Roll WebView ARM64 Orderfile from 9cnL3lSpwEOsMtgX5... to CdHF3SL6ofqtCLBOS...
- e7ef7cd Revert "Reland "[DragDrop][Mac] - Use async hit testing for drop operations""
- bf50a79 Remove HitReport struct and references to it
- 5e9c0a1 Roll Depot Tools from 90eb3fe8ba2b to b084cd665f2f (1 revision)
- e6f9f6c Reland "[Desktop Android] Enable more tabs API tests"
- fc7fcf4 Fix problem where Corp messaging listener is removed
- e536bf6 Enable scalefactor200 effect-reference-feimage tests
- dd407f7 Remove Dialog vertical button layout support
- 8ccc2a9 Drop seller trusted signals usage from inspector-protocol/storage/interest-groups-expected.txt
- 3fcd8c3 Roll Chrome Android Desktop x64 PGO Profile
- f31fcd6 Remove MemoryPressureListener in SkiaOutputSurfaceImpl
- c12220c Extensions UI: Do not propagate theme uninstall events from backend.
- da3c215 Migrate LayoutConstant enum callers to support enum class
- 2b771af Migrate LayoutConstant enum callers to support enum class
- 6e17cef Migrate LayoutConstant enum callers to support enum class
- 3cc3514 Roll BoringSSL from 01b2772446ce to 3a3675025ff4 (1 revision)
- 6a6b090 Add //chrome/browser/glic/public/features
- 1d607fe Migrate LayoutConstant enum callers to support enum class
- f0a6994 Fix crash when running Corp Messaging unit tests
- 1aad59a This change addresses reviewer feedback on https://crrev.com/c/7269048.
- 75001bc media/gpu/v4l2: Limit STREAMON ioctl at initialization to stateful
- e13cb6a Migrate various base::Contains() to contains() in ash
- 94676af blink: Add more descriptive error for webmcp/script tool
- f301383 Migrate various base::Contains() to contains() in ipc
- be1eb5b Simplify vertical tab drag interactive tests
- 8d05058 Migrate various base::Contains() to contains() in views
- 6c220f4 Roll compiler-rt from a3a137899070 to 01b1c31bf10f (4 revisions)
- eaabb87 [HFM] Disable dialog UI flag on Android
- 6927642 Migrate LayoutConstant enum callers to support enum class
- c5da3fa Android: remove GN references to monochrome in AW folder
- efdbfb2 Remove kUserAgentFrozenBuildVersion feature param
- 829e70f [realbox] Expanding realbox does not shift NTP elements down.
- 0183686 Roll Perfetto from 9ef94c27c361 to 7115d474c95e (4 revisions)
- a532c97 Roll Chrome Mac Arm PGO Profile
- 21d71a0 Roll ios_internal from 7b324083b159 to b5023bfceb4a
- f3560e9 Refactor string to string_view.
- 35ae781 extensions: Port tab group API unit tests to browser tests, part 2
- e71c9fc Fix VCN on manual fallback hanging issue
- 26069d4 Updater UI: Display event count
- 865b978 [Settings Search] Ensure Theme settings opens from search results
- 4e39eca [Desktop Android] Move TabsEventRouter dispatch onCreated code
- adfc6d7 Refactor ShouldHonorPolicies to use standard sensitive policy mechanism
- c603d4c Migrate various base::Contains() to contains() in components
- 40fc2df [AIAE][UMA] Add extraction overall latency metric.
- ba4f631 Migrate various base::Contains() to contains() in headless
- 24b17ed Clean up StrictJsonMimeTypeTokenValidation feature flag (shipped M142)
- 3a33ecc [iOS] Prepare TableViewAccountItem to move to ContentConfig
- 5869e71 Migrate from base::ByteSwap to std::byteswap
- aebf17c Updater UI: Use cr-infinite-list for event log
- 7c2346e [CCT] Stop reporting non-crash exception
- 38b5648 [Desktop Android] Move TabsEventRouter dispatch onUpdated code
- f39e958 [Contextual Tasks] Set group in InsertWebContentsAt call
- d9b1b92 [Okta SSO] Check Blocked IdPs policy before proxying
- 17cb1df Remove dep on glic:impl from browser/ui
- 244acf6 Disable SettingsTest.SettingsMain on debug ChromeOS builds
- 9459cbd [LiteRT-LM][ConversationAPI] Update indexmap to be usable from 1st party code.
- cff4ddd Add an OCSP Stapling test to Cronet
- c57a6d7 Braille IME: Remove mv3 feature flag and default to mv3
- 74c80b8 [IOS][AIM] Refocus the composebox when dismissing the camera picker
- 36ddeb4 Roll Chrome Android ARM64 Orderfile from FP9sRna2Fsa1eHymJ... to gAImKcOVB2vgliqYm...
- ad21646 Revert "Update weston to fix flaky tests"
- 0cb079b Roll clank/internal/apps from f4f5c8d61ded to a768eadbd227 (1 revision)
- 79cc213 Extend sampled protego ping histogram expiry
- ec5f233 [Composeplagte] Control fusebox by policy.
- fb60352 Migrate various base::Contains() to contains() in media
- 5fe0184 [contextual_tasks] Re-enable AreEntryPointsEligible_True test
- b3cb85e [LiteRT-LM][ConversationAPI] Add minijinja to third_party/rust.
- 1dd25c7 Updater UI: Add updater scope filter
- 95a8447 Refactor NativeTestServer HTTPS setup
- 82c0c9f Roll src/third_party/libjpeg_turbo/ 6383cf609..6bb85251a (2 commits)
- 2014793 [presubmit] Add test for elifdef in testInvalidIfDefinedMacroNames
- bfc91e4 [iOS] Add Gemini FRE UI components
- d115b5d Extend histogram SafeBrowsing.HPRT.FoundUnmatchedFullHashes
- 82efe63 Extend metrics
- 32f3602 Automated Commit: LKGM 16545.0.0-1074364 for chromeos.
- cd8439c Migrate various base::Contains() to contains() in printing
- 2afc8d0 [Settings Search] Polish empty fragment layout
- dfe0501 Updater UI: Set dialog focus on firstUpdated
- 79b5de8 Roll JetStream main from 53cefcd84a0c to 181f3cc3eded (1 revision)
- 03fb1f8 Roll Skia from d5fd8902006e to f5d9da13d56d (1 revision)
- 6063d89 [Vertical Tabs] Update collapsed state on resize
- 35a43f3 Fix crash in TabStripEventRecorder::OnChildrenAdded
- 857c8c6 Do not allow invalid types in registration headers
- 23e8879 [DomStorage] Make session storage LevelDB serializers private
- 623be4d Add WPT for no challenge in the Secure-Session-Registration header
- 204899a [TabListBridge] Implement DiscardTab
- 50d9f3a [glic] Migrate GlicPageHandler to BrowserCollectionObserver
- 0e8495c Fix watermarking for webapps
- 831958e Allow no challenge in registration header
- bf774c5 Roll Perfetto from d24e58965633 to 9ef94c27c361 (2 revisions)
- 8a1cbd4 [iOS]Send tab to self coordinator waits for the model to be loaded
- 31c4881 [gardener] Disable flaky test: testInvokingTabSwitcherHidesAccessory
- 7b8ea1d [TestFix] Remove breaking line from test
- 0b4fb3f Refactor Windows clipboard filename extraction
- a2891e1 Remove DownloadsDisplayInitiatorOrigin killswitch and set always true
- dee78ad [DomStorage] Make local storage LevelDB serializers private
- cb48ee6 Revert "Log whether UrlRequests is being proxied proxied"
- 24ba688 Clean up TextElementTiming ownership
- aef221a Storage Monitor: Delete Windows MTP code
- 84c0276 [url_fixer] Use string_view instead of const string parameter.
- 521658a Fix UAF in SurfaceSavedFrame by posting capture callback
- 4dd7f91 Roll WebRTC from 0436eecd8a19 to 15d74a5b976c (1 revision)
- b11cd7e Add regression tests for b/473578370
- e1c5783 [Vertical Tabs] Set up LayoutConstant to migrate to enum class
- c2e1fe1 Settings: Remove unused 'hideCloseButton' option in <settings-subpage>
- d75cd2f Reland "Switch 3-button password save dialog to wide horizontal layout"
- 50b2674 [ios][web] Forward the back/forward navigation type to CRWWebController
- 059a443 Extend expiration of the GPU.Sandboxed histogram
- 73dd210 Synchronize back-forward transition screenshot
- cabe30d [iOS][AIM] Fix input plate memory leak retain cycle.
- 6a6c56e Revert "Remove kOverrideAPIKeyFeature feature flag"
- 0a430ef views: Fix out-of-bounds CHECK failure in TableView's selection model
- 6ff2a58 Reland "[iOS] Remove Choose from Drive flag and prepare feature cleanup"
- d0c5a20 Android: document build features specific to monochrome
- 9412449 Roll Chrome Mac Arm PGO Profile
- 0f93394 Add SingleAxisScrollContainers feature flag
- d7a3ad5 Migrate various base::Contains() to contains() in cc
- 75aab08 Extract OriginChecker class to manage origin sets
- 2c1b151 Reset homework call to action on tab detach
- cc70d92 [ios][web] Add GoTo(GoToParams) method to NavigationManagerImpl
- d6d6b4b [TabStrip] Migrate close button flow behind flag
- 954cc48 [Vertical Tabs] Adding Support for Custom Themes in VT
- 364eb9d [iOS] Fix crash in HomeCustomizationImageView when image or view size is zero
- a814df9 Roll Chrome Win64 PGO Profile
- d9431d0 NTP Promos: Update field trial to one-promo option
- 3f961c1 Migrate various base::Contains() to contains() in sandbox
- f60ea2b [styleguide] Allow #elifdef and #elifndef
- 589f013 Add koretadaniel@chromium.org to c/b/ui/views/locations_bar/OWNERS
- d3cb857 Remove unused focused tab manager.
- 838c9f3 Support "all cards" switch in cross-device settings import
- 43452f9 [ios][web] Add enum representing type of navigation in back-forward list
- 67ef6e6 Bump paint preview renderer histogram expiry
- 2f70778 [ios blink] Resolve issue with JavaScript's window.open
- 058b649 Use `base::span<const T>` instead of `const std::vector<T>&`.
- 62e7e23 NetworkHandler sends device bound session displays to DevTools front-end
- 005f2f1 [ios][web] Add provider API for //ios/web
- fd181eb Add DeviceBoundSessionsDevTools feature
- 3a8173f Migrate various base::Contains() to contains() in gpu
- d11af9c Add fetching session displays to DeviceBoundSessionManager
- 68570d5 Roll Skia from cb5aefa41cec to d5fd8902006e (1 revision)
- 7d0b747 Spanify matrix3_f.cc
- 3a7f1cc Remove myself from android omnibox owners.
- b50821f Roll JetStream main from a3f5c45465f5 to 53cefcd84a0c (1 revision)
- 2bdcd38 Roll ios_internal from 1821137b3dac to 7b324083b159
- aeb0fba [Tab Highlighting] Enable on ToT
- d2969d8 Add event observing in DeviceBoundSessionManager
- 461139d [Perf] Make Android Pixel 9 perf testers public
- ef2d236 Revert "Introduce feature+param to control how sticky studies are persisted."
- 8345f2b Migrate various base::Contains() to contains() in cc
- b829dab Roll Dawn from e7df23a34666 to 958dff171579 (5 revisions)
- f7d3652 Show canned suggestions in NB mode.
- ec638c4 Migrate various base::Contains() to contains() in remoting
- 677378c Migrate various base::Contains() to contains() in ui
- a54386f [gardener] Disable two flaky ChromeAimEligibilityServiceStartupRequestBrowserTests
- e4baa38 Rename existing observer to access observer in DeviceBoundSessionManager
- b055e06 Roll androidx from linCx4ekbL5DZYQRF... to JsmXMSy4fc6xu2x2a...
- 3c37b7e Manual roll Breakpad from d0b41ca2a38c to bcf7b6f1596e (4 revisions)
- 76e3dd5 Revert "Hide the 'Let Gemini browse for you' setting based on Account Capability"
- 9bdb8be [iOS] Add error handling to all of the passkey parsing code
- 2c2af6d Roll WebView ARM64 Orderfile from FgBY_AE4YOoyijlug... to 9cnL3lSpwEOsMtgX5...
- c75e058 activity_reporter: Create stub module owned by browser_process
- b13ed57 Fix description of std::unreachable
- 07454bd [Signin][Al] Migrate WebAuthFlowBrowserTest to platform-agnostic APIs.
- 2326b91 Fix UNSAFE_TDOO in win_http_url_fetcher.cc
- a0a398f Roll Perfetto from e0664aa7f412 to d24e58965633 (2 revisions)
- a9074d0 Remove or X86 for ios-device testers upstream
- d37af78 Revert "[iOS] using performBatchUpdates to fix a flaky test of Password Manager"
- 6e3c3a6 Updating trunk VERSION from 7619.0 to 7620.0
- 42ade86 [iOS][Composebox] Update content sharing policy for 145
- 4edd847 Roll Media App from tA4zh0pzwoYrqytaR... to oYsOOELJrvJltOhOi...
- de3e9aa gpu: Spanify FencedAllocatorWrapper to avoid unsafe buffer usage
- 247aa4a Fix crash in ToolbarView::GetReloadButton
- 800fd82 [iOSFidoImportExport] Centralize password logic in passwords/coordinator
- 4ab0b42 Remove TextureLayerClient as subclass
- 53243ea [iOS] Fix AlertViewController buttons spacing and refactor naming
- e8c49ee [ActorTaskBubble] Add subtitle for active tasks
- b894f13 Enable StringWidthCache by default
- 2f59496 Add sensitive policy notices automatically when policy is marked as sensitive
- 3bcb9a9 Roll FreeType from 26adb9ff98f9 to 4553f1c396dd (1 revision)
- 3531a18 [iOS Blink] Disable failing FillJsTest.StringifyFoo tests
- 3498d07 [AIAE] Make progress dialog Cancel button non-prominent
- c2b7766 [gardener] Disable TestSendMessage tests while a cause is investigated
- f0056a6 Roll Help App from UQvKQPkbamnSyvzdr... to HVAUgGsiZ4_1G_qMR...
- 2ac43f4 Roll Chrome Mac PGO Profile
- e748f45 Roll Skia from b970aeffa66f to cb5aefa41cec (3 revisions)
- 4583ab6 Ensure swift compiler does not add deps on system toolchain libs
- aa04f35 [ios] Move AccountMenuCoordinator ownership to SceneCoordinator
- 4470afa Remove MemoryPressureListener in ResourcePool
- e3572d0 Roll ios_internal from 4729e9a88fc0 to 1821137b3dac
- 8ca249e Roll Chrome Win32 PGO Profile
- ba8071c Migrate various base::Contains() to contains() in components
- 770b73d Stop checking the package name in CronetTestRule
- afae687 [iOS][Field trial config] Add PageContentCache and params
- 5772a92 [Code Health] Remove stale features for ProfileBasedKeyedServiceStorage
- b360d81 [iOS] extend PageContextExtraction execute model
- 05a1afc Improve CronetUrlRequestHTTPSTest
- 32ab74f [testing/variations] Fix typo in trial name
- e88139e Enable skipping specific implementations in tests
- 864b184 [Tabs] Update Tab.java docs
- dcad654 [iOS] Fix AutoDeletion file download crash
- e212581 Fix include order in services/image_annotation/annotator_unittest.cc
- 988bcc5 Extend LibraryLoader Prefetch histograms
- 1420e18 Add histogram to measure stickiness of sticky study activation.
- 116ad4d Migrate various base::Contains() to contains() in extensions
- 02efd9b [iOS][Lens] Remove Lens iPad Compatibility flag and checks
- a4bfdba Revert "Drop deprecated Cronet proxy APIs"
- 81f27c1 Migrate various base::Contains() to contains() in gin
- 3531701 Roll Chrome Mac Arm PGO Profile
- d263e10 Roll Perfetto from ce986e15df27 to e0664aa7f412 (2 revisions)
- abbd9b1 Run swift/C++ interop tests on the chromium.fyi waterfall
- 7bac72b [ActorTaskBubble] Change color and icon of waiting tasks
- c9e9db5 [ios] Reenable content world related FillJSTests
- b4061ce Fix flaky font-relative-units-dynamic.html test
- af238a6 Update weston to fix flaky tests
- 5d5206e Fix redundant modifiers
- 22d4016 Roll ANGLE from 1a7b22f822da to 1b567e6d2ef2 (1 revision)
- fb27925 Extends multiple metrics for AuxiliarySearch.
- 973c7a9 Roll WebView ARM64 Orderfile from HNsA2XMKqc0yP0Uac... to FgBY_AE4YOoyijlug...
- db2bf6f Roll Chrome Android ARM64 Orderfile from ksXKu2u1h6VAVMI48... to FP9sRna2Fsa1eHymJ...
- b04d146 [browser] Remove red debug div from about://gpu
- 5eae02c Extend page actions histogram expiry dates
- a340ed8 Store property info in CSSParserLocalContext for random()
- 8daf047 Roll Chrome Linux PGO Profile
- eadf694 [KP] Automatic update from google3
- 9cde860 Roll WebRTC from dd679612f7bd to 0436eecd8a19 (1 revision)
- b8b5d75 Remove unused method BrowserPaymentRequest.patchPaymentResponseIfNeeded
- ef704f8 Migrate various base::Contains() to contains() in net
- 498a658 Revert "[Desktop Android] Enable more tabs API tests"
- fd3b374 Log whether UrlRequests is being proxied proxied
- 03bb72c Updating XTBs based on .GRDs from branch main
- a8949e5 Add DeviceBoundSessionEvent struct to DBSC mojo
- 8bd421a Add MemoryPressureListenerRegistry to IOSChromeUnitTestSuiteInitializer
- f95fd62 [CT] Automatic update from google3
- dcb024a [iOS] Clean up expired flag web-feed-feedback-reroute
- 0c27eca Roll Perfetto from fa740a7fcdbb to ce986e15df27 (1 revision)
- 3f369fb Migrate various base::Contains() to contains() in chromeos
- 0586b00 [iOS] Abort ChooseFileTabHelper selection on DidStartNavigation
- f526a30 Roll clank/internal/apps from 5f1a45cf8f3b to f4f5c8d61ded (1 revision)
- c962e37 Roll ios_internal from ff7a1c6adaed to 4729e9a88fc0
- ca190a1 Migrate various base::Contains() to contains() in extensions
- 211ab7a [AIM] Clean up attach aim action unused code
- 1ab1639 Make can_use_generative_ai_photo_editing capability ChromeOS only
- 17a20c0 Roll Chrome Win ARM64 PGO Profile
- 8fc3aa3 Extend tracked pref histograms
- dfcff50 [WV] Update histogram expiry
- 6e38349 Add UMA metrics to ObfuscatedFileReader
- c343e9e Roll Chrome Android Desktop x64 PGO Profile
- 761dbb7 Roll Chrome Mac Arm PGO Profile
- 0508ff4 Introduce Cancel button in Signout confirmation dialog
- a1e26f7 Enable preconnecing to non-SearchType omnibox suggestions by default
- 8c0b504 Roll Depot Tools from e04940f5e8ed to 90eb3fe8ba2b (1 revision)
- 232687d Make can_use_generative_ai_in_recorder_app capability ChromeOS only
- 06c7c68 [Persist] Add calls to seal/open and key storage
- 5202361 [Persist] Cipher key management for OTR
- c51f0b1 Fix include order in on_device_tail_model_executor_unittest.cc
- be3adf4 [Signin][iOS] Use SigninReauthCoordinator in account settings
- a4841c3 Roll WebRTC from 662f240de740 to dd679612f7bd (1 revision)
- ad7fa68 Roll ANGLE from 86ded156f9df to 1a7b22f822da (1 revision)
- 36181e1 Roll WebView ARM64 Orderfile from lohVknf7zNCv2bOgj... to HNsA2XMKqc0yP0Uac...
- 23a6013 Roll Chrome Android ARM64 Orderfile from vzt5lApns0JyBcrxJ... to ksXKu2u1h6VAVMI48...
- 6995829 Roll Perfetto from f05b11be602f to fa740a7fcdbb (4 revisions)
- 678b098 [Extensions] Use Promise based language in .idl / .webidl schemas
- 26bf6a4 Roll ios_internal from ae82e94f571c to ff7a1c6adaed
- 0f129cf Roll Chrome Win64 PGO Profile
- 9031cc8 [Settings Search] Hide UI when local search is on
- 77fc412 [owners] Remove johnykim@google.com from third_party/blink/renderer/core/canvas_interventions/OWNERS
- b2e0135 Don't fetch can_use_edu_features capability on iOS
- 03f74e0 [iOS] Callback URL opener EG tests - Incognito text search
- 2246a89 Update meet_effects hash in DEPS file.
- 0aa1280 Roll Skia from 3c028a778759 to b970aeffa66f (6 revisions)
- 4a78e54 Don't fetch can_have_email_address_displayed capability on iOS
- 5ad2af7 Migrate various base::Contains() to contains() in dbus
- 47a1665 Fix include order in 2 //chrome files
- c8a6c6c Drop deprecated Cronet proxy APIs
- a484fe8 [iOS][safari-import]Disclaimer indicating local save for signed-out user
- 97f6039 [iOS] Add tab group color palette and util
- c75633c Roll Chrome Mac Arm PGO Profile
- ee1f295 Roll Dawn from bf5d31685280 to e7df23a34666 (1 revision)
- 133dc96 Revert "Reland "Disable site isolation memory thresholds on Desktop Android.""
- 3efffaa Roll Projector App from 8p9jBzTPWJHJY2kVu... to -hVLAhDHY8cSIryfN...
- 57e6831 Migrate various base::Contains() to contains() in services
- 9c88f13 Re-enable ArcAppModelBuilderRecreate.AppModelRestart
- 8027468 Address memory sanitizer concern for PerformanceHistogram test
- 3c844e5 Fix property value index computation for random()
- b9d5f10 Roll Chrome Android ARM64 Orderfile from -19Il7MlhIEGk4HA6... to vzt5lApns0JyBcrxJ...
- 81d1c42 Roll WebRTC from 02fc2a33493b to 662f240de740 (1 revision)
- f0bb019 Migrate various base::Contains() to contains() in storage
- 9c46dde Roll WebView ARM64 Orderfile from k7mMs7bJwU0Gn4esM... to lohVknf7zNCv2bOgj...
- 9600616 Roll Chrome Win32 PGO Profile
- 925abec Roll Chrome Win ARM64 PGO Profile
- e24548b Roll ANGLE from 8f0a94b7a6cc to 86ded156f9df (1 revision)
- 5f6c8b3 Delay expiry of frequently used histograms.
- 44b3b84 Autoshard chromium/src test suites
- 916ab33 Avoid duplicate map lookups.
- 034e650 Roll Chrome Mac PGO Profile
- 1eaa32e Avoid duplicate map lookups.
- 7200f90 [VideoFrame] Reorder ShouldCreateAcceleratedImages() check
- 570bf70 [WebGL] Don't try to reuse an invalid CanvasSnapshotProvider
- cb9977d Roll Perfetto from ffd9e5b64f06 to f05b11be602f (1 revision)
- 1d31839 Roll Depot Tools from daf26020239a to e04940f5e8ed (1 revision)
- 1b45312 Avoid duplicate map lookups.
- 54d5005 Update visible URL tests to assert on the focused omnibox
- 549b350 Delay expiry of histograms causing alerts.
- 847a4e1 Roll androidx from h9wOyBmFFjN29aUGt... to linCx4ekbL5DZYQRF...
- c0c8e12 Roll Chrome Mac Arm PGO Profile
- 9a7d112 Add wpt tests for CSSContainerRule containerName/containerQuery
- 47934b9 Roll WebGPU CTS from 279abe9b9e60 to f1aca41cb916 (2 revisions)
- 82ee72d [Blink] Update check in convert_to_webrtc_video_frame_buffer.cc
- 1650aa8 [Blink] Remove check in convert_to_webrtc_video_frame_buffer.cc
- d94f4dc [Blink] Update checks in RtcVideoEncoder
- a8a9288 [Blink] Make CRP::NotifyGpuContextLostTask() CRPSI-only
- cad7328 [Blink] Remove redundant check in RtcVideoEncoder
- ff093c9 [Blink] Make CanvasResourceProvider method CRPSI-only
- de46d3e [Blink] Update comment in video_track_adapter.cc
- 7f8af8d Roll Chromium Variations from e6rYVhahqrPqJ7GH1... to ycdu0NqDErWbNKsZC...
- decf0ca Automated Commit: LKGM 16545.0.0-1074358 for chromeos.
- b9ff62b Deduplicate mojom includes (non-blink)
- 19e0b8c Roll Chrome Linux PGO Profile
- 47b24ed Use StrCat instead of repeated string appends.
- c51359d Roll Skia from 904ba00331ca to 3c028a778759 (1 revision)
- 9d5709c Roll gn from 40aac3f15d34 to 1a9fc6149393
- 2bf0990 Use string utils instead of repeated concatenation to build strings.
- 7d7bacf Roll Chrome Android ARM64 Orderfile from pFYSw5jbofoW4uN8C... to -19Il7MlhIEGk4HA6...
- 3d80000 [fuchsia] Slightly loose the restriction of binary size check
- 286272c Roll Chrome Android Desktop x64 PGO Profile
- f0328d1 Roll Crossbench from 56c15b0cd98e to b4676a0dff40 (1 revision)
- a30e9c5 [Vertical Tabs] Null check collection_node_ in VerticalTabGroupView layout
- 08fdf8b Roll WebView ARM64 Orderfile from 5uxMpzqOL1A4HmGQI... to k7mMs7bJwU0Gn4esM...
- ad3c301 Roll Depot Tools from 6e87d87cd50e to daf26020239a (1 revision)
- c6d7399 fix StatusAreaWidgetCollapseStateTest dangling pointer
- 0bced13 fixed FastInkHostCreateFrameUtilTest Dangling pointer
- 3429ace fix TimeViewTest dangling pointer
- 46066b8 fix AppListViewTest dangling pointer
- 94337a2 Roll Chrome Mac Arm PGO Profile
- a77dd4a ChromeAndroidTask: deflake test createPendingTask..dispatchesBothActions
- 38fcb4d Avoid duplicate map lookups.
- 4642a4b Roll DevTools Frontend from 144b5434016b to 5d4c12362e84 (2 revisions)
- 35b16f5 Enable ServiceWorkerAutoPreload in fieldtrial tseting config
- 918ed59 Roll Chrome Win64 PGO Profile
- 36968ca Extends Extensions.WebRequest proxy decision related metrics
- fc6b19c Roll Crossbench from 1dd0f0c188d7 to 56c15b0cd98e (1 revision)
- af38923 fix auto spanification for tablet_event_converter_evdev.cc
- af4d4b6 Roll src/net/third_party/quiche/src/ 5d51e0784..eec4080d1 (1 commit)
- b19f50f Mark WPT URL test "utf-8.html?include=loading" as flaky
- f0ea30c [PSF] Dynamic Price Tracking label in Page Action Menu.
- fed2f2d [omnibox][next] Init AimElig service independent of TURL service loading
- 6339f6b MiraclePtr: Adjust banning rules
- a90e4a6 Roll Chrome Android ARM64 Orderfile from xtIXBtAEVAXX6IKGG... to pFYSw5jbofoW4uN8C...
- 4da887d Implement popover for customizable combobox
- 8405b07 Revert "[BrowserControls] Create TopControlsLockCoordinator"
- f933ff8 [BrowserControls] Fix calculateHasAnimation
- 3c094ae Remove superfluous std allowlist in audit_non_blink_usage.py
- e87a1a6 Move UnpackedInstaller to //extensions.
- 3660e52 Roll WebView ARM64 Orderfile from voaNDZwQYj1fci7kp... to 5uxMpzqOL1A4HmGQI...
- 9397869 Roll Dawn from 36c16592ab2e to bf5d31685280 (3 revisions)
- 53a893f Support dragging multiple files from Windows ZIP folders
- 844f465 [rustmojo] Move message_pipes to their own file/module.
- 892c72a Roll Chrome Mac Arm PGO Profile
- cd9296d Roll WebRTC from cfbe803bbe0d to 02fc2a33493b (1 revision)
- e3991df Extend NetworkService.Scheduler.IOThread.* histograms
- cb3f17a Roll libc++ from 7e7036c3ce48 to 7ab65651aed6 (3 revisions)
- de13e6b Roll Depot Tools from ffa2705be42a to 6e87d87cd50e (1 revision)
- d433524 [rustmojo] Rename safe_trap to trap.
- 4e7107b Fix issue in CorpMessagingClient
- 81e42d5 Updating trunk VERSION from 7618.0 to 7619.0
- 71b0d1c webnn: ensure installation is triggered
- bbf3d1b Roll WebView ARM64 Orderfile from KS1BI6YniLUnjH1Wl... to voaNDZwQYj1fci7kp...
- 949048b [WaaP] Fix crash caused by empty presentation time in `OnFirst*Paint()`
- 620997d Roll Chrome Android ARM64 Orderfile from 8LC_pYgYzRGKCKehl... to xtIXBtAEVAXX6IKGG...
- eda628b [Element Capture] Cleanup commandline flag.
- 769e161 Roll Perfetto from b44970b424d6 to ffd9e5b64f06 (2 revisions)
- c53e96d Prevent lock granting with new web content in WebAppLockManager during profile shutdown
- c201569 extensions: Convert 1 tab group API unit test to browsertest
- 313322f Avoid duplicate map lookups.
- b17e7f0 Roll Chrome Mac PGO Profile
- 170afdf Tidy mojom includes to avoid .mojom-data-view.h
- 00a72f9 Refine comments in PrefetchContainer::UpdateResourceRequest()
- 7761efb Refactor Client Hints in PrefetchContainer::UpdateResourceRequest()
- 6253fa3 [webnn] Add operand descriptor in the returned input_name_to_descriptor
- c4e12a0 Put prefetch_streaming_url_loader_common_types.h into content namespace
- 08e1018 Split variations::kClientDataHeader from headers_to_remove
- 659105c Introduce kPrefetchFixHeaderUpdatesOnRedirect flag
- 81a5c6d Extend relax-dom-valid-names-disabled
- 967de5b crabbyavif_image_decoder: Disallow YUV decoding for YCgCo-R
- 5940060 Rollback the change to use system headers just for Windows.
- dd56638 Roll Chrome Android Desktop x64 PGO Profile
- 82960e1 Add SessionEvent enums to DBSC mojo
- b993e73 Roll Chrome Mac Arm PGO Profile
- fc6365e Roll WebView ARM Orderfile from Sd8R6Uc6CvVnNYFoN... to 7tMBFhP2aF7y6ALTy...
- 2f5eaaa Suppress WebCodecs flake
- baa31ff Add OAuth token support to WalletHttpClient
- 035296b Add termination SessionEvent
- a5ca8bb HttpStreamPool: Introduce connection Attempt class
- afae015 Roll FFmpeg from f05c72c6bf06 to fd8d327732d4 (4 revisions)
- 526ea69 Fix the issue that the next animation in a sequential animation cannot
- 82dd810 Roll Chrome Linux PGO Profile
- bb65dff Add tests for ContextualTasksComposebox focus, resize, and autocomplete selection.
- 7f309e1 Add challenge SessionEvent
- a6db79b actions revamp: ETB implements ETVM interfaces
- 0973a51 Roll Chrome Android ARM64 Orderfile from 35mZqeUCrVgeoqwb1... to 8LC_pYgYzRGKCKehl...
- 7e4eb6f Add refresh SessionEvent
- ccfe114 [siso] config/windows: append inputs from `rewrapper_windows.cfg`
- 289f284 Roll WebView ARM64 Orderfile from otp1lPzm2IMywEofw... to KS1BI6YniLUnjH1Wl...
- 23050d9 infra: Remove 'reclient' gn args phase from Deterministic Linux (dbg)
- 7ab44ad [Contextual Tasks] Add histogram for error page shown.
- 1767d04 device_name: Remove remaining C++ classes
- fd41fc1 device_name: Remove DeviceNameStore::Initialize/Shutdown calls
- b47ec40 device_name: Remove device name setting UI from the OS settings
- a74e353 device_name: Remove the enable-hostname-setting flag
- 3165dd8 [mojo] Add a message queue for undeliverable messages
- b1f701c Introduce network layer and tests for saving passes
- 0f6995f [Cleanup] Remove methods in ContextualSearchboxHandler without a definition
- 176099a Roll Chrome Win ARM64 PGO Profile
- e93121e [GTK] Don't preselect file dialog accept buttons
- 7386791 Reland "chromeos: Remove `chrome` dependency from `browser_tests`"
- e790fb0 [Desktop Android] Create TabsEventRouterPlatformDelegate
- 392842e [chrome][next] Fix missing eligibility information during initialization.
- e893fb8 Update expiry of Net.NetworkTransaction.StreamRequestErrorCode2
- f834b27 Fix slot change signals timing for slot fallback on insertion
- 4de5305 Remove the unused snackbar logic from bottom attached UI
- e8cb987 Update expiry date of histograms
- bf31d54 url: Fix two UNSAFE_TODOs in DomainIs()
- ba4b867 Ensure no AIM ZPS in multiple attachments context.
- 033663e Actor: defer OnFinishedActing while interrupted
- 515661c [iOS] Add a spacer only at the end of the overflow menu action list
- 7c1ef2d [remoting] Handle the GNOME remote-desktop "closed" event.
- 35e6b9e Prerender: Use PrerenderHostId as map key in PrerenderHostRegistry
- 08e836a Have cueing and ZSS use glic global enabling flags rather than separate IsInRolloutLocation method
- ae7a8ac Roll WebGPU CTS from 77591d8c07c9 to 279abe9b9e60 (4 revisions)
- e081fb5 [composebox] Fix the context menu z-index while dragging overlay is present.
- 11cf290 Remove flag metadata enable-zram-writeback
- d538bca Launch UseIsUnboundCheck feature
- 6eb7f19 updater: Use `PRODUCT_FULLNAME_STRING` as the prod id
- daf3eb6 Roll Chrome Android ARM32 PGO Profile
- 693a4b6 Automated Commit: LKGM 16545.0.0-1074352 for chromeos.
- c2b478d Launch EffectiveBindingState feature
- d89ebc1 [ntp-next] Updating action row spacing for backgrounds with image
- 7c2aba6 Roll optimization-guide from 6e4e82708eb0 to 441f57e36963
- 589551b Move ChildProcessSecurityPolicy state tracking into SecurityStateMaps.
- 2bfa0fb Roll BoringSSL from 78ab2c2774bc to 01b2772446ce (2 revisions)
- 2b7ba62 Follow-up: fix remaining references after native_widget_types.h -> native_ui_types.h rename
- a5ee38f Roll Skia from 98c042dde68c to 904ba00331ca (3 revisions)
- 0da27cc webnn: Fix double-init of ScopedFeatureList in fuzz test
- d4d3533 Run WebGL 1 serially on M1 Exp
- fadeaee Roll Chrome Mac Arm PGO Profile
- c090631 Log creation SessionEvent for public AddSession method (used by OAML)
- 9829a76 Refactor OnAddSessionKeyRestored to have internal helper method
- 34edf31 Add creation SessionEvent
- 2a16699 Fix unsafe buffer usage in webgpu_cmd_format_test
- 40abb16 Roll WebView ARM64 Orderfile from wFGoaAPrSEJpIBbg9... to otp1lPzm2IMywEofw...
- 5c3a14f Remove kLeftClickOpensTabGroupBubble feature flag.
- b3138f1 [webgpu] Prototypes MapSync in Blink.
- 8607312 clean up floating-snackbar flag
- 3e54720 Add event observing skeleton to SessionService
- 2141b88 [Read anything] Enable TS segmentation flag in Readability tests.
- c2bc229 Roll ANGLE from 885f466181cf to 8f0a94b7a6cc (2 revisions)
- b1d5542 Use ScopedObservation in PersonalDataManagerObserverBridge
- 4bd9cc4 Clean up pref migration code.
- 799bdff [glic] Migrate GlicFocusedBrowsermanager to BrowserCollectionObserver
- 9c861fb PaintTiming: move largest image and text candidates to LCP Calculator
- 8ced542 Update third_party/node from v24.11.1 to v24.12.0 LTS.
- f35c78b [Cleanup] Test for ContextualSearchService Shutdown to fortify against crashes
- 85a76f0 [Read Anything]: Show submenus in settings menu
- daaec6f Roll Chrome Android ARM64 Orderfile from oFZ4nA6c51dxc_qee... to 35mZqeUCrVgeoqwb1...
- e49796d Expose named forms as ATK_ROLE_LANDMARK on Linux
- 0673bf1 [omnibox] Add regression test for ContextualSearchService crash