Chromium Digest: 2026-01-14
Overview
This digest covers 618 commits on the main branch from (5e4ce29)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((5e4ce29)) to (2be9192)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((2be9192)), with 436 commits analyzed as relevant to developers. The day saw a large number of breaking API changes across the UI framework, Blink, and core services, requiring significant updates for embedders. Major themes include refactoring of the browser frame and policy client, API modernizations using
base::span, and a standards-compliance change to URL parsing.Breaking Changes
-
⚠️ BREAKING
BrowserFrameViewAPI Removal: The publicvirtualmethodsGetBoundsForTabStripRegionandGetBoundsForWebAppFrameToolbarhave been removed. Embedders subclassingBrowserFrameViewand overriding these methods will have their builds broken. Layout logic is now centralized inBrowserView's layout manager. (9c5016d) (8231cda) -
⚠️ BREAKING
Blink Scrolling API Change: The public method
ScrollableArea::SetScrollOffsetis no longervirtual. Subclasses must now override the newprotected virtualmethodSetScrollOffsetInternalto customize scroll offset behavior. (aa9f551) -
⚠️ BREAKING
Unexportable Key Deletion API Change: Methods for deleting single keys (
DeleteKey,DeleteKeySlowlyAsync,DeleteSigningKeySlowly) have been removed from theUnexportableKeyServiceandStatefulUnexportableKeyProviderinterfaces. Callers must migrate to the new batch deletion methods (DeleteKeysSlowlyAsync,DeleteSigningKeysSlowly). (a5c30f3) (ed5561b) -
⚠️ BREAKING
URL Parsing Behavior Change: URL path parsing no longer decodes
%2Esequences to a literal dot (.), aligning with the WHATWG URL Standard. This may break embedder code that relies on the previous, incorrect decoding for URL processing, routing, or comparison. (bdfac8c) -
⚠️ BREAKING
Windows
baseAPI Modernization: The public, exported functionsCreateIBufferFromDataandGetPointerToBufferDatainbase/win/winrt_storage_util.hhave changed to usebase::spaninstead of raw pointers and length. This will cause build failures for Windows embedders calling these functions. (e4201a2) -
⚠️ BREAKING
Cloud Policy Client API Refactor: The public type
CloudPolicyClientTypeParamshas been refactored to use an interface pointer and subsequently renamed toPolicyTypeToFetch. Consumers constructing or referencing the old type will have their build broken. (ac8c74a) (9eeddf2) -
⚠️ BREAKING
Android Public Java API Removals: Several public methods have been removed from Java interfaces, causing build breaks for embedders. This includes
requestInputFocusOnScreenandrequestTextCursorOnScreenfromAconfigFlaggedApiDelegate, a deprecated overload ofonObservingDifferentTabfromActivityTabTabObserver, and two validation methods fromBrowserPaymentRequest. (ea72d51) (a9d15d5) (8c298a8) -
⚠️ BREAKING
Mojom Interface Signature Change: The
PageHandler::ShowContextMenumethod inwebui_toolbar.mojomnow requires aContextMenuType, agfx.mojom.Point, and aui.mojom.MenuSourceType, breaking existing implementations. (02473f3) -
⚠️ BREAKING
Public API and Enum Removals: The public API
WebRuntimeFeatures::EnableFluentOverlayScrollbarshas been removed. Additionally, multiple obsolete values have been removed from the publicsignin_metrics::AccessPointenum, which may break code referencing them. (5207ba5) (611666c)
UI & Browser Framework
- Significant refinements were made to the Vertical Tab Strip (VTS) UI, including animations for moving tabs between groups, making the top of the toolbar a draggable region, and extensive work to ensure custom-rounded corners render correctly in various states. (1378fb4) (9f2782b) (89c440f) (fc79edb)
- On macOS, a visual glitch was fixed where the Services submenu in contextual menus would not match the browser's theme, creating an inconsistent appearance. (c417103)
-
A new virtual method,
OnTabRemoved, was added to theTabListInterfaceObserverto notify observers when a tab is removed. This is a non-breaking addition as it includes a default implementation. (4fc0736)
Web Platform & Blink
-
Support for the
hangingkeyword in the CSStext-indentproperty has been added, which primarily affects caret positioning in editable content. (367f1f9) -
For scroll-driven animations,
DeferredTimelinesare now created lazily to better supporttimeline-scope: alland improve performance. (fccef9f) -
The size of
Elementnodes has been reduced by more efficiently storinglast_child_andcomputed_style_, leading to memory savings. (4265923) - The DirectML backend unit tests for WebNN have been removed, signaling its upcoming deprecation in favor of other backends. (b5f5069)
Services & Policy
-
FedCM has a new public API,
IdentityCredentialSource, allowing embedders to query FedCM accounts directly without an existing API call. (aa21ef9) -
For Device Bound Session Credentials (DBSC), the
UnexportableKeyServiceis now scoped to storage partitions instead of the profile, fixing Mojo connection issues during new profile creation. (87f5d16) - For Extensions, a behavioral change was introduced to disable externally installed extensions if their permissions increase upon update, enhancing security. (b846067)
-
The URLBlocklist/URLAllowlist policy protection was refactored to use the standard sensitive policy mechanism, making its protection status visible on
chrome://policy. (b74b53c)
Android & iOS
- On Android, XR-related code has been refactored into a Dynamic Feature Module (DFM) to reduce the base binary size of Chrome. (155e63e)
-
On Android, new plumbing was added to support the platform's Adaptive Refresh Rate (ARR) via the
getFrameRateVelocityMappingAPI, allowing for smoother scrolling. (c74e3ab) - On Android, a "Copy link" action was added to the bookmark row menu for easier sharing. (2e92587)
-
On iOS, back/forward navigation was improved to skip over session history items added via
pushStateorreplaceState, aligning with desktop behavior. (10cee16)
Build & Internals
-
The PartitionAlloc memory allocator now supports multiple
ThreadCacheinstances per thread. This is a significant internal improvement for enhancing performance and security by allowing finer-grained memory partitions. (0f545a6) -
On Windows,
base::StackTracecan now probe fordbghelp.dllat runtime, allowing for symbolization in some developer builds where it was previously unavailable. (128ded4) -
The
REMOTING_MULTI_PROCESSbuild flag was converted to a runtime boolean to allow the Linux host to support both single and multi-process modes without a separate build. (b48f402) -
A memory double-counting issue in
CompoundImageBackingwas fixed, which will improve the accuracy of GPU memory metrics. (6731928) -
Code health efforts continued with large-scale migrations from
base::Contains()tostd::ranges::contains()and removal of obsoleteUNSAFE_TODOmacros. (0a5de2b) (9008641) (e900b99)
All Commits (618)
- 2be9192 [Immersive Reading Mode] Close submenus on horizontal back key
- 439b5e9 updater: make PolicyStatusToDict a member of PolicyStatus
- 9ccaca4 Skip failing GlicFreShown_SingleInstance test on wayland
- 6989172 [Force Save to OneDrive] Add a unit test for force save to OneDrive.
- 975db27 Adds tests for ChromeContextMenuPopulator#onItemSelected
- 18d9676 Disable omnibox flag in tests that assume it's disabled.
- 48f16c6 [Settings Search] Stop highlighting upon touch
- e9ee7b5 Select to speak: Remove mv3 flag
- 3819e5e [VerticalTabs] Combine the HorizontalTabStripRegionView Constructor
- 287cc03 Set addToBackStack to true for LocationPermissionSubpageSettings
- e3fc5c5 [Persist] Add shadow store functionality to ArchivedTabModelOrchestrator
- fb6ff75 supervised-user: use base::RandomChoice()
- cb63c71 support skill for Chromium documentation search
- f879e6d [Persist] Encapsulate shadow store wiring in factory
- 54d357b Reland "[BNPL][Clank] Enable logo with message for Accessibility in ToS screen"
- 8e99f78 Roll ios_internal from c3ccd4e0c1e6 to a858d7fcc74f
- 17ad315 Fixing a typo in Aead class impl
- 132b051 [PinnedTabs] Ctrl+W to close pinned tab requires two tries
- 9fd792b split_variations_cmd: split features based on trials
- 3f28dcd Adjust android_browsertests shard to 7 on android-14-arm64-rel
- 744c504 [tracing] Migrate legacy flow macros in content/renderer
- ad933a5 [Vertical Tabs] Cleanup: remove TabStripLikeBackground
- b19d167 Remove dead lazy-load logic for style images
- 5ce8a56 Reland "extensions: Add TabGroupsEventRouter to the desktop Android build"
- ff26636 Roll DevTools Frontend from 55746df603f8 to c66e983a6386 (1 revision)
- c739cde Roll WebGPU CTS from db3a77f4ae78 to c4cfd73dd78c (1 revision)
- b39d041 Roll Chrome Mac Arm PGO Profile
- 432d031 Add environment variable that sets the module_scheme
- fbb69ab ios: Extend NewTabPage.ActioniOS histogram expiry
- 737b922 Roll src-internal from 7305fc7b7f07 to 3d1b890ea771 (1 revision)
- b990adc [Media Indicator] Add mute/unmute in tab grid context menu
- f0ed919 Roll Chrome Win64 PGO Profile
- 02473f3 Change how the context menu is dispatched for WebUI Toolbar
- eca1a16 Roll Skia from 213247579bbe to bf4b7fe4348d (1 revision)
- 5ce50a8 Reland "Roll Error Prone from vNPU2aqNbmnmcCMUn... to dhl6VZIaB1O_e5ero..."
- 5ae3726 Roll Dawn from 9771708eeab7 to 56526fd8ef6f (5 revisions)
- 9a1be93 [iOS] Record metrics for Cross Platform Promos and Notifications
- 925244c Reland "[tips] Add integration tests for tips via public transit"
- e51e2ab Avoid generating empty GSUs for consumed touch moves
- aedfe7a Move ComposeBoxController and Profile to FuseboxSessionState
- 53ed5b0 Enable PdfInfoBar by default on ToT
- aa21ef9 [FedCM] Support embedder to query FedCM sign-in accounts directly
- c73ba40 infra: Allowlist android-internal's test-tablet bot on chromium's cq
- 225fcf2 Extends robust-window-management-experimental flag expiration.
- 40e1182 [builtin ai api] Add a new user setting to disable on device models.
- 61e21a7 Roll Chrome Android ARM64 Orderfile from L8G2FRD1cCWZfwveV... to z8W65sOas949sdk4f...
- 08dc87e Extend expiry for audio selection improvement flags
- 6a0d2ee Format some files
- 20bea43 Actor: Cap point refinement iteration at 1000
- e8ef55c WebUI: Sort list attributes in several build_webui() invocations, part3.
- a9d15d5 refactor: remove hint parameter from ActivityTab observer usage
- 0d39dbe Extensions: Permissions: Clarify variable name to match the function
- b846067 Extensions: Permissions: Disable external extensions on increase
- 6aa8afb Set addToBackStack to true for AutofillOptionsFragment
- 5266311 Disable flaky CanGetFileResourceWithFileAccess test on chromeos
- 15f8fea Roll WebView ARM64 Orderfile from eC-vYCXDO9Hw189zW... to nvboOOjYxIbZp-EH_...
- e420b00 [FedCM] Remove some unused rfh parameters from AccountsFetcher
- e6d91ae Add Tab Groups view to Projects Panel
- d1e6dd5 Enable kUseCECFlagInPolicyData by default.
- 45da4d2 Actor: Fix infinite loop in InteractionPointFromWebNode
- ded9cdb [styleguide] Allow if consteval
- 5deca34 Extend three SubresourceFilter histograms
- 7f97450 Another ExpectedColor_MediaRecorderFromVideoElement suppression
- 8231cda [Chrome Next] Remove unneeded API methods on browser frame
- 9c5016d [Chrome Next] Eliminate frame tabstrip positioning code
- 128ded4 Reland "Allow StackTrace to probe for dbghelp on Windows"
- 0b48493 Create ChromeAndroidTaskTracker if is_android_desktop = true
- 3bbd6d2 [ios] Add a fieldtrial config for ConsistentLogoDoodleHeight
- a7aa60d Roll androidx from TpMNm7QRxB3_7tBbn... to YEuRLUze1JVIRPCbS...
- f87719d Roll optimization-guide from 8f5c8182fbf5 to 47d9baa5118a
- e5352e3 [X11] Add missing atoms to kAtomsToCache
- 2174955 Fix builds on ppc64 and s390x
- 8aaf2b1 Delete expiring histograms
- 6b4f096 Revert "AndroidX biometric flag temporary fix"
- 98fde76 [iOS] Add IOSCustomFileUploadMenu fieldtrial_testing_config.json entry
- bdcb10e [blink] Fix nullptr deref on VideoFrame::set_color_space
- ddc2a68 [projects] Create projects panel view controller
- 549725c [animation-trigger] Enforce single trigger per animation
- bc3de6e [PDF] Remove parameter from PDFiumEngine::SearchForFragment()
- 48099a9 Update CBB autoroll for the builds refs
- f4b4f1c [Frameworks roll] Roll to 856302605 piper revision
- 30bde0e [AX] Fix dump will check crash when serializing accessibility tree with
- 55b764d [css-lists] Implement presentational hint for <li>'s value attribute
- 75bdbc0 [bookmarks] Use search_toolbar layout for bookmarks
- bdc4bf2 Extend enable-fenced-frames-developer-mode flag
- de0783d Add about flag for the new Default browser framework
- c494aad Remove PaintHolding.InputTiming4
- 063a10a Reland "Add webview feature flag for UpdateScrollPredictorInputM..."
- 06d54e6 Use span-based file API in audio_pipe_reader.cc
- f4a3a0b [ntp-threads] Improve AI Mode URL construction and test setup
- 16497ea Revert "Android: Fix crash from using TransitiveObservableSupplier after destroy()"
- 0625814 Attempt 2 to fix FindBarViewsUiTest.SelectionDuringFindPolicy
- 09eeb4e [Reland] WebUI: Switch default tsconfig moduleResolution to 'NodeNext'.
- 876c7ff media: Add cros-codecs AV1 encoder to temporal layer encoding support list
- 02e8e5c Enable actor UI interface to build on Android.
- 86514a2 Remove InputMethod.Assistive.MultiWord.CouldPossiblyShowSuggestion
- 925b9e9 Roll Enterprise Companion chromium_mac_arm64 from sVdyVgBLXpQzcs9mY... to uAqV-ZWCcr_8C4Pld...
- 473eec8 Switch owner to an account with chromium commit access.
- f7224c1 Suppress glsl-function-texture2dprojlod
- 070dd88 Check ExtensionManagement::GetInstallationMode() in EIPS
- 6189c1d [PDF] Fix bad indexing in PDFiumEngine::SearchUsingICU()
- 28bd3ba Roll ios_internal from 17cabe3f0ad6 to c3ccd4e0c1e6
- aa9f551 [CodeHealth] Make ScrollableArea SetScrollOffset non-virtual
- 166974c Add timeouts to content API for CopyFromSurface
- f5c949e Accessibility: Update guest manifest name for select to speak
- c8294ea Cleanup EnableSinglePageAppDataProtection field trial config
- 947aa52 Roll vulkan-deps from 123afca5b693 to e5aebf166a3d (5 revisions)
- bfda733 Roll ANGLE from 2d8ac01dc65b to 3f67af8e457e (3 revisions)
- 46845d0 Fix unsafe buffer usage in FontFallbackWin
- a444ae9 content/browser: fix RandInt off-by-1 in snapshot tests
- 280a71d Roll Updater chromium_win_x86 from 2@1563001 to 2@1564004
- b70e4a0 Split WebViewSurfaceControlForTV
- 4064b63 Roll Chrome Mac PGO Profile
- 757d126 [Vertical Tabs] Add dir metadata for tabs directory
- d148e07 Roll src-internal from f6413d658991 to 7305fc7b7f07 (1 revision)
- abe5349 Reland "[Android] Create waitForNoView(), replace waitForViewCheckingState()"
- 2ca9d30 [Extensions] Correct appViewGuestInternal.attachFrame schema definition
- 888b79e Roll Chrome Mac Arm PGO Profile
- d423b9f [Customize Chrome] Fix Reset to Default button logic
- 6731928 [DCSI] Fix double counting of memory for CompoundImageBacking.
- d367e2e Overscroll: rename OverscrollContainer to GetOverscrollContainer
- d5c1329 Reland "[webnn] Implement litert graph."
- cc572ff Roll Updater chromium_linux64 from 2@1563001 to 2@1564004
- 37b5823 Extend glic media metrics
- b94aa98 updater: fix test failure in IntegrationTest.GetUpdaterState
- 9cbcb77 Mostly migrate GetAnchorView() -> GetBubbleAnchor()
- 63990e1 Roll libunwind from a726f5347e1e to a56e6191d5a5 (1 revision)
- 5b205ca [Composeplate] Extend expiry date for aim-server-eligibility.
- e879fe0 Roll cpuinfo from 0fea7f5f8824 to c4b4f4bf08c0 (1 revision)
- b13dbaa Migrate base::Contains() to std::ranges::contains() in blink
- c6a087b [JXL] Use platform-native pixel format for 8-bit decoding
- 0dd7608 Roll llvm-libc from add939b55890 to 5655225edf51 (4 revisions)
- bdf9c21 WebNN: allow thread safe access to D3D12 backings
- 622d8b9 [Vertical Tabs] ensure left caption button grab handle has minimum width
- beaa9b0 Revert "Reland "[AIM] Have screenshot by default""
- c635035 Roll JetStream main from 1dbb86146b0c to 687792e3a634 (1 revision)
- d3e3617 [bookmarks] Add logging to debug bookmarks manager hang
- 5e74ae5 [iOS] Extend ios-keyboard-accessory-two-bubble flag to M148
- 4a89a29 [Extensions] Remove nodoc from sidePanel.close() method.
- ce4f198 [iOS] Disable GeminiCameraHandlerTest.TestOpenCamera
- 2b7efc7 [ash] Notifications: Support one of accent_color_id or accent_color
- c36c91f [iOS] Gemini image remix in-product help
- 4ea9828 [Refactor Legion] Decouple TokenFetcherImpl from PrivateAiService
- 07ac169 Remove glic_handler from android build
- 883ce3a PopulateFrameBinders 7/8
- e2fc20a Roll Chrome Android ARM64 Orderfile from gzsE0-frIT7zcsMso... to L8G2FRD1cCWZfwveV...
- 5ffda36 Add metrics for GlicPinTrigger. These will record anytime a user pins a tab from any source.
- 7a2ed08 [Contextual Tasks] Add 1px outer border to Composebox input plate
- 647d4fc Enable SplitButton and TaskIndicator changes by default
- 071b56b Roll Perfetto from 698c3b289159 to 43fac090f899 (123 revisions)
- 0ce3da6 Pick up XzEnc in Chromium's copy of lzma_sdk.
- ea72d51 [a11y] Remove unused AconfigFlaggedApiDelegate API
- e19a381 [ClapperQuiet] Adds Clapper Quiet Icon
- a738c81 [Cleanup] Inline DestroySharedImage()
- b110465 Clean or update expiring BTM performance histograms
- 950d069 [Persist] Keep track of modified parents in RestoreOrchestrator
- f41ef86 Roll Chromium Variations from fbXqOHXKk2DCA0SIU... to uOLSt0blJpVn6xPXB...
- 4104c9d [Extensions] Preserve other disable reasons when reloading extension
- 4968f9e Roll WebView ARM64 Orderfile from 1D9HJIp4No1ZqFI-Y... to eC-vYCXDO9Hw189zW...
- c74e3ab Use getFrameRateVelocityMapping API for Android ARR
- 73b6db3 Extend ios-one-tap-mini-map-restrictions
- b48f402 [crd host] Turn REMOTING_MULTI_PROCESS into a boolean
- b443be1 [aim-tools-models] Downstream ToolMode, ModelMode, InputType protos
- 219d3d2 Actor: Bump APC and tool timeouts
- 87f5d16 [dbsc] Scope UnexportableKeyService to storage partitions
- 9e9fcd8 [Vertical Tabs] Reorder methods in vertical split tab view
- da66c30 Caches content of closed tabs to allow restoration on undo.
- 864d45f [Camera] Unify and update the expiry of histograms
- f150f23 [iOS][AIM] Add AIM debugger
- 4807a13 [Vertical Tabs] Repeatedly clicking close button fix
- 3b29471 Roll Chrome Win ARM64 PGO Profile
- 76cd427 Revert "[ios][web] Skip over automatic items when navigating back/forward"
- 2d613cd Roll Updater chromium_mac_amd64 from 2@1563001 to 2@1564004
- 29d0046 Add per-user alint run to global presubmit
- 6ee92e4 [Vertical Tabs] Fix blocked attention indicator
- e5df9e7 Roll Enterprise Companion chromium_mac_amd64 from wor0EGzFVdURw3_DR... to s9kNaFT1339fA7lMU...
- 3ae4559 [contextual tasks] Replace `TabStripModel` with `TabListInterface` in
- b2ba852 Roll Skia from dd4b8e85256d to 213247579bbe (6 revisions)
- ede759c Roll gn from 9673115bc14c to 103f8b437f5e
- df2ca9a [UMA] Delay expiry of two ChromeOS identity histograms
- 2e1e06d Roll Updater chromium_win_x86_64 from 2@1563001 to 2@1564005
- d57818f Make mask-image invalidation on image changes less strict
- 36f909f [Community Contributions] Clean up readAloudInOverflowMenuInCCT flag
- 62d9213 [Settings Search] Keep search UI hidden in single column mode
- 0f22743 Roll Enterprise Companion chromium_win_x86_64 from Ph31e2UaA8_zQ3_aI... to YhXpdOiiflIOxqdLP...
- af66028 Roll Updater chromium_win_arm64 from 2@1563001 to 2@1564004
- 9cb7389 Roll Enterprise Companion chromium_win_x86 from g5VjrROOkf1YAjJiJ... to gi8IGbb5o1UgF8CH3...
- 6d178bd [BrowserControls] Repopulate yOffset for toolbar scene layer
- 2809ee0 Roll Updater chromium_mac_arm64 from 2@1563001 to 2@1564004
- 71db6b1 [Cleanup][exo] Inline DestroySharedImage()
- 1b25d8d Add TextfieldController::OnBeforeCutOrCopy
- 6c208d5 Roll Chrome Linux PGO Profile
- 1c0c9eb Roll Chrome Win32 PGO Profile
- 155e63e Reland "[XR] Refactor XR/JXR related code into a DFM"
- f51eb44 iwa: Additional unit tests for KeyDistributionInfoProvider
- fd24190 [iOS] Update Gemini Floaty State When A Child View Controller Shows
- 3587db1 Migrate factory methods in `image_button_factory.h` to ui::ColorVariant
- 1a67727 Roll WebRTC from 4e58235e1b14 to 7d3af2ee95f2 (3 revisions)
- e02bf73 Replace RunUntilActorTaskStateIs with utility class
- c8fd666 [Settings Search] Null check to avoid crash
- b16f93c [TabBottomSheet] Make toolbar swapable
- 752b584 Roll Chrome Android Desktop x64 PGO Profile
- 2bb6135 Fix unsafe buffer usage in ui/display/win/screen_win.cc
- 0f930ca [glic][onboarding] Add metrics for Trust-First Onboarding experiment
- 0a5de2b Migrate base::Contains() to std::ranges::contains() in chromecast
- e4201a2 Fix UNSAFE_TODOs in winrt_storage_util.cc
- 710550b Roll androidx from ZxkXYGrKejmBqc_WB... to TpMNm7QRxB3_7tBbn...
- 4050f9a Revert "Roll Error Prone from vNPU2aqNbmnmcCMUn... to dhl6VZIaB1O_e5ero..."
- 2526dc9 Roll Chrome Mac Arm PGO Profile
- 4d3a5b9 [Theme] Add spinner for theme collections image.
- 373e331 [Cleanup] Inline DestroySharedImage() for video code
- b1399b8 Roll Error Prone from vNPU2aqNbmnmcCMUn... to dhl6VZIaB1O_e5ero...
- 07575d2 extensions: Fix TabGroupsApiBrowserTest::SupportsTabGroups()
- 87bbd5b [glic] Remove unused includes from glic_instance_coordinator_impl
- 34cec37 Add automatic-track selection logic
- 6755e65 WebNN: Add CreateFromUnownedHandle to wrap D3D12 fences
- 9ccbbad Android: Fix crash from using TransitiveObservableSupplier after destroy()
- e959442 [iOS Gardener] Test SafetyCheckViewTestCase/testLongPressAndHide
- ed5561b [dbsc] Remove DeleteSigningKeySlowly
- 248e9b1 [Suggestion][Clank] Add TouchToFillDisplayOptions struct on native side
- 715db6d Use span-based file API in seccomp_broker_process_unittest.cc
- 8e27e15 [MCVD] Improve logging for deferred flush operations
- 25209d2 set enable_glic=true
- 812bd40 updater: test more UpdateService methods to get the state and policies
- de24193 Roll Chrome Win64 PGO Profile
- 074a881 Revert "[a11y] Add cursor tracking for contenteditable elements"
- 73f8d58 Remove expired about flag "feedback-include-variations"
- a96147f Clear translation observers in ContentTranslateDriver destructor
- 1d1035a Fix defaultTopK returning 0 when model not downloaded
- 9eeddf2 Rename CloudPolicyClientTypeParams -> PolicyTypeToFetch
- f3a31fe [Omnibox Next] Add comment as a follow up Fix
- 06a080d Roll clank/internal/apps from 200e15a59bc1 to 0037fe8f7d59 (1 revision)
- d5a4aab [Force Save to OneDrive] Check if feature is enabled before returning precedence.
- 574ceba Support Tool: Migrate data-collectors and pii-selection to Lit
- 16adc8a [soft navs] Only consider FullyTrusted events
- 8134170 IDB: reject invalid last_modified value from renderer
- 2211721 [iOS] Fix CameraHandler test by mocking authorization status
- 9008641 Migrate base::Contains() to std::ranges::contains() in gpu
- a319570 [Signin][Android] Add WindowAndroid to BookmarkActivity
- 266f5a5 [iOS] Extends show-tab-group-in-grid-on-start
- 889d62d Add support for multiple modules to swift_modulemap
- aa1cd4b Preserve lazy loading behavior when an image is side-loaded, take two
- 0857e3d [Cleanup] AndroidAnimatedProgressBarInViz 2
- cfa03c0 [CBB] Handle --variations-test-seed-path in crossbench test
- 0d0bbf5 [iOS] Call Cancel() if download task not done at destruction
- 0e70d8f Roll Chrome Mac Arm PGO Profile
- 5b69550 Roll clank/internal/apps from 7c068fb34c4f to 200e15a59bc1 (1 revision)
- 5c9e7fc [Force Save to Cloud] Enable feature by default
- 0665b68 Roll DevTools Frontend from 8a1451ae1983 to 55746df603f8 (1 revision)
- 117d129 [A11y] Stop exposing filename as text when alt text exists
- b83937a [Settings Search] Removes @NonNull annotation
- 9b137aa [ios] Refine iPad Fusebox positioning based on omnibox frame
- 5df65b1 [TreesInViz] Check that min_page_scale is set before using it.
- b072649 [PWA] Fix InstallLocally flake
- 680a535 Roll SwiftShader from 76b5d96a9287 to 9c9be8427470 (1 revision)
- 1d3d419 Settings: Remove debug logs from SettingsEnumTest
- d7a50a6 [WV] Update AutofillBottomSheet histogram expiry date
- f8aa6cc Roll rust a4cfac7093a1c1c7fbdb6bc75d6b6dc4d385fc69-3 : b2a322beb29110e22a1782e2ce5ed2a0719b81ed-1
- 789abe6 [omnibox] Adds about:flags entries w/ and w/o chips for above variant
- c198f02 [iOS] Ensure passkey creation notifier file exists
- ac8c74a Add EIPS to CloudPolicyClient::types_to_fetch_
- f754f74 Fix a crash that happens when an enabled flag gets removed (part 2)
- 3067334 [iOS Blink] Fix perf regressions due to std::ranges::contains()
- d19628b Migrate base::Contains() to std::ranges::contains() in components
- 8af9ce1 Migrate base::Contains() to std::ranges::contains() in rlz
- 3fc3a6a [cleanup] Remove {LayoutBlock,LayoutBlockFlow}::HitTestChildren
- 4265923 Store last_child_ and computed_style_ more efficiently.
- 174ec2a Remove stale trace_test expectations
- de56da7 Show DomDistiller content in the WebUI.
- 938d079 Roll Chrome Win32 PGO Profile
- 8501756 [a11y] Remove deprecated getActionSetExtendedSelectionId function.
- ad5afb6 Roll Chrome Android ARM64 Orderfile from ACYjGNBc2c37bvr_Q... to gzsE0-frIT7zcsMso...
- c46012b [Settings Search] Open keyboard when clearing search text
- 102a1b4 Updating trunk VERSION from 7634.0 to 7635.0
- a71e576 Remove stale pixel expectations
- cb211d9 Roll V8 from 9076b3af4327 to f4b042d85fc6 (3 revisions)
- 1f07f29 Use span-based file API in //chrome tests
- 20ee5be updater: use references instead of pointers to TestServer
- 0b19000 Roll Media App from vkilsiq6J5CaIx1PW... to CoKpQcNGoAg7oHlwS...
- 5321cf4 [webview][profile] Extend Profile Data Migration Histogram Expiry
- bf3968d [iOS] Enable SeparateProfilesForManagedAccountsForceMigration by default
- d5aa911 [iOS] Connect PasskeyTabHelper to CommandDispatcher
- c8209fc Make skia::InitializeFontRendering part of gfx::InitializeFonts
- 5207ba5 Remove FluentOverlayScrollbars from RuntimeEnabledFeatures.
- adcef1f Roll src-internal from 14539451fc7b to f6413d658991 (1 revision)
- 8dbd24c Roll Chrome Mac PGO Profile
- 51c2db2 Roll Skia from 4319f2a0304b to dd4b8e85256d (1 revision)
- 7ae9aa7 [Gardener ]Disable MouseUpInOOPIframeShouldCancelMainFrameAutoscrollSelection on Chrome OS
- 556e480 Roll Help App from UaqzopNwJewobHnHc... to 9wbEuMjXm-4Phex7P...
- 80c75d8 Roll WebView ARM64 Orderfile from SvxW7TvACHSluJimn... to 1D9HJIp4No1ZqFI-Y...
- 89d4ecf Use span-based file API in chrome/elf unit tests
- 10cee16 [ios][web] Skip over automatic items when navigating back/forward
- b8aac4f Roll Chrome Android ARM32 Orderfile from akuHhzwIoEm_gvl0X... to tgODTbesRonXjJANJ...
- 59b75b2 [fuchsia] Disable InterestGroupBrowserTest.RunAdAuctionRepro1451572 on fuchsia arm64 debug build
- e1ab29e Move StrikeDatabaseFactory into its own subfolder
- b302b5d Use base::NoDestructor for UKM's CreateDecodeMap().
- 577bcc7 Add "requires cplusplus" directive to generated modulemap files
- 569c657 [Autofill][Consolidation] Clean up flag
- 157dfd3 Roll ios_internal from cde54b9e99b0 to 17cabe3f0ad6
- 22fdc85 Add siso_keep_going builder property to remaining trybots
- fb8ae3a Expect in CloudUploadPromptPrefsHandlerTestBase.KeyedServiceRegistered
- e9328f4 Clean up the WebRTC window icon picker.
- 96b73f6 [CodeHealth] Clean up SyncPasswordCleanUpAccidentalBatchDeletions
- b17deb4 Update documentation for `jj upload`
- b02071e Fix perfetto roll errors
- a466b8c Fix a race condition in `KioskExternalUpdater`
- 7a2e3ee [iOS] Fix Youtube intertitial crash when the current browser is null
- 720498f Roll Dawn from 2132031a6f5f to 9771708eeab7 (5 revisions)
- 334935e build_rust.py: Propagate --skip-checkout to LLVM build.py
- 80777af Extend supervised-user-block-interstitial-v3 flag expiration
- 8318aa7 Update `run_egtests.py` to support iOS 26.0.1.
- 5cac7c2 [Profiles] Animate identity pill expansion.
- b442fd9 updater: testing if the C++23 compiler is real
- 24cbfe9 [ClapperLoud] Show Android level permission prompt
- 113b0e1 Fix kDefaultBrowserChangedOsNotification top comment
- eb76a28 Roll Chrome Mac Arm PGO Profile
- 44bfe8e Roll DevTools Frontend from 50fd223222e1 to 8a1451ae1983 (7 revisions)
- 646fae4 Support multiple apinotes files per swift modulemap
- f87291e Roll JetStream main from b0430587abc5 to 1dbb86146b0c (2 revisions)
- 4e3d1b8 [iOS][Signin] Add strings for mdm errors handling
- 78d41c5 Roll Chrome Android ARM64 Orderfile from eJZZbgUBQYTJBkQ9Y... to ACYjGNBc2c37bvr_Q...
- 9a737c0 Replace kSync with kSignin in components/sync/service
- b5be950 Roll Chrome Win64 PGO Profile
- 75d36bc Roll src-internal from bf1c9aa20e21 to 14539451fc7b (1 revision)
- 611666c [signin] Remove some unused values in signin_metrics::AccessPoint
- 322e68c [Skills] Add skeleton for Chrome UI Controller
- 055be6b Add environment variable for enabling swift/C++ interop
- 579c35d [Signin][Android]Get AccountInfo by AccountId within Signin directory
- 52b34c6 Reland "net: Refactor GURLWithNSURL to fix 'about:' scheme percent-encoding"
- 174def4 Remove forward references to GpuMemoryBuffer
- 334fa6f [//media] Remove comment referencing raster-over-GLES
- 5c95d2d [//content] Remove SI usage for raster-over-GL from DCompTextureWrapper
- 8c298a8 Remove two dead methods from BrowserPaymentRequest interface
- 9a16b80 Roll WebView ARM64 Orderfile from VAj0DjLbVJscH7CNE... to SvxW7TvACHSluJimn...
- 1755367 Extend DBSC chrome://flags entries
- d510c38 Replace kSync with kSignin in chrome/browser/ui/views/*
- 7f77caf [KP] Automatic update from google3
- 7b0e477 [mica] Update owner and expiry milestone for windows11-mica-titlebar
- b3c86c7 [CT] Automatic update from google3
- d5875a4 Extend chrome://flags#cpe-passkey-largeblob-support
- af7081b [iOS] Fix failing TranslateInfobarTestCase in ios-fieldtrial-rel.
- 063382f [a11y] Inline Magnification-following code
- a91926c [CustomizationV2] Configure FIFE image options for theme collection images (Part 2)
- 92500ba Roll Chrome Linux PGO Profile
- 4a895cd Roll JetStream main from 8b934434e76d to b0430587abc5 (1 revision)
- 7c8c47e Updating XTBs based on .GRDs from branch main
- 4f1d9af Roll Chrome Android ARM64 Orderfile from MpUEUMpygFVj1A1um... to eJZZbgUBQYTJBkQ9Y...
- 333be13 Roll Chrome Win ARM64 PGO Profile
- 63f025a Roll clank/internal/apps from 32254c023c71 to 7c068fb34c4f (1 revision)
- 990ce4c Roll V8 from 0e1c9fc538cd to 9076b3af4327 (5 revisions)
- 02a077e Fix unsafe buffer usage in ErrorTolerantBleAdvertisementImpl
- a5a55c2 [iOS] Remove segmentation-platform-tips-ephemeral-card flag metadata
- 7e8519d [Signin][Android]Get AccountInfo by AccountId in WebsiteApprovalMediator
- fc814fa Roll ios_internal from bca788219b20 to cde54b9e99b0
- c3bbf8b Roll ANGLE from a60e268024c7 to 2d8ac01dc65b (2 revisions)
- eea4a09 [CrossDevicePrefTracker] Introduce OnServiceStatusChanged
- 0984f07 [CrossDevicePrefTracker] Expose ServiceStatus to clients
- 016bb88 [CrossDevicePrefTracker] Rename AvailabilityAtQuery to ServiceStatus
- 917dd2b Roll clank/internal/apps from 0cfec5fbe7cf to 32254c023c71 (1 revision)
- 17d7831 Roll Chrome Android Desktop x64 PGO Profile
- e694247 Disable Prewarm trigger in InProcessBrowserTest.ExternalConnectionFail
- 55c75fb Roll Chrome Android ARM32 PGO Profile
- a210bd7 Roll WebView ARM64 Orderfile from fP-lHoURGWYmyySZp... to VAj0DjLbVJscH7CNE...
- 574330d Roll Chrome Mac Arm PGO Profile
- dcf2f11 Renew InputStreamDuration histogram
- b7d5a58 [iOS] Add feature flag for passkey conditional create with JS shim
- 7c6fae7 Roll src-internal from df7c516db061 to bf1c9aa20e21 (1 revision)
- d78f59e Roll JetStream main from 78ccaf3ff2d6 to 8b934434e76d (2 revisions)
- c3a3771 [Signin] Deprecate unused NtpLink AccessPoint
- b450ac3 Roll WebView ARM64 Orderfile from rcQlKPNg1201r3Hnp... to fP-lHoURGWYmyySZp...
- d83a8b5 Roll Enterprise Companion chromium_linux64 from 4TzPR3-_b1NDSVYlT... to F1repiVrFfwaeG-zT...
- 9397c17 legion: Add utilities to parse processed public keysets and signatures
- 44f5f6e Roll Chrome Android ARM64 Orderfile from s2akNzdzKxyhiH3NK... to MpUEUMpygFVj1A1um...
- 1a224f2 Roll Chrome Win32 PGO Profile
- 558b77a Roll ios_internal from 0be3d040df6e to bca788219b20
- 76a5366 Improve tests for extract_actions script
- 40df4d0 Roll Projector App from Mi1yam7MjoyWDZNGC... to dh8IRb9T4-GEqlERO...
- e900b99 Cleanup now redundant UNSAFE_TODO() base
- 7729efe Replace kSync with kSignin in chrome/browser/ui/views/autofill/payments
- 904a007 [iOS][Signin] Remove AuthenticationErrorCategory
- 6d8b367 Roll Skia from 96181dab2446 to 4319f2a0304b (2 revisions)
- ddab946 Roll JetStream main from 64577a67503f to 78ccaf3ff2d6 (1 revision)
- 2053a3f [TDR] Remove TODOs linked to issue 40239372
- f18543f Disable layout tests to land crrev.com/c/7472072
- b74b53c Reland "Refactor ShouldHonorPolicies to use standard sensitive policy mechanism"
- b3cfd2a [TDR] Remove TODOs linked to issue 42050646
- 8e09e35 [TDR] Remove TODOs linked to issue 40187396
- a143e2d [TDR] Remove TODOs linked to issue 364657540
- 3728447 [Default Browser] Activate users only on navigation
- e3791d4 legion: Add token manager to legion client
- 8c2e484 autofill: delete FormFillLatencyAfterSubmit test
- 3a599b6 Update meet_effects hash in DEPS file.
- fccef9f [scroll-animations] Create DeferredTimelines lazily
- c87f1a9 Roll Chrome Mac Arm PGO Profile
- 71729e8 Implement :tool-form-active and :tool-submit-active behind WebMCP flag
- 8c7f189 Plumb TrackedElement data from Blink to RenderFrameMetadata
- 9182ff1 [Autofill AI - Reauth] Only reauth if sensitive information exists
- efae6c7 [ios] Remove legacy inactive tabs logic from BrowserLifetimeManager
- a5c30f3 [dbsc] Remove DeleteKey from UnexportableKeyService
- b61b455 Roll Amd64 AFDO from 145.0.7631.0_pre1567646_rc-r1-merged to 146.0.7633.0_pre1568682_rc-r1-merged
- 985ca23 Remove chrome://flags#cpe-signal-api
- 213ebca Roll ios_internal from 4312d43af2fd to 0be3d040df6e
- 465e7b0 web_app: Deprecate the display_mode_override field in web_app.proto
- 937a3ce Roll Chrome Android ARM64 Orderfile from hxvjXFe8bmMR_ZKPo... to s2akNzdzKxyhiH3NK...
- baf011c Roll DevTools Frontend from 290e8b26a259 to 50fd223222e1 (1 revision)
- 0f545a6 Reland "PA: Support multiple ThreadCache instances per thread."
- 7ec6152 [dbsc] Add batch key deletion to UnexportableKeyService
- 65da6b4 [iOS] Add EnableNewStartupFlow feature flag
- 576b34e [iOS][QD] Remove TabsClosureAnimationStartDelay and extend *Duration
- aee6dc1 Roll clank/internal/apps from ffa8fb506970 to 0cfec5fbe7cf (1 revision)
- 9f59574 Roll WebView ARM64 Orderfile from TJ69HY-5UI0_iR3kI... to rcQlKPNg1201r3Hnp...
- 4d5d09c Roll vulkan-deps from 9283eb54dc67 to 123afca5b693 (1 revision)
- 8327929 [JXL] Address post-land review comments
- 3938a16 Remove chrome://flags/#web-authentication-passkey-upgrade
- efd9331 Cleanup now redundant UNSAFE_TODO() media
- a353349 Cleanup now redundant UNSAFE_TODO() device
- 829b6ec Roll Chrome Win64 PGO Profile
- 0968a9a Revert "[tips] Add integration tests for tips via public transit"
- 35c6872 Roll Boca App from QiyxgwOTK64Gy4C7f... to kNdpQeB8IXMR0FLXG...
- 3d1f2dd Roll Website from fb3def8a9930 to 4099a7b26fe6 (1 revision)
- 53d2a72 Roll Depot Tools from 63930d83feb3 to 07eeddee99eb (3 revisions)
- dcfb007 Roll Boca Receiver App from RhYfNFWGGkI32avbk... to 0H7WmEQHgXUJIrWae...
- c251a1b Roll ANGLE from c3fa81ba4c94 to a60e268024c7 (3 revisions)
- 4965ecb [iOS] Address TODO in bookmarks_coordinator
- bbc5769 Roll WebGPU CTS from d1ef6a8547bd to db3a77f4ae78 (1 revision)
- 570c17e Roll Chrome Android ARM32 Orderfile from huAConspTidkvBAEj... to akuHhzwIoEm_gvl0X...
- a6ea8e8 Roll DevTools Frontend from f054abc24946 to 290e8b26a259 (1 revision)
- 3f82f6f Show a specific sign-out dialog when bookmarks limit is exceeded.
- 6c97ff0 Remove the "CanvasTextMemoryPressure" runtime flag
- 19ce9f8 WTF: Fix an UNSAFE_TODO in hash_table.cc
- c47514a Roll Skia from 49819b05232d to 96181dab2446 (5 revisions)
- d63ecc0 [ios] Rename BrowserViewWrangler to BrowserLifecycleManager
- 0f16ff2 Roll Chrome Mac PGO Profile
- 4d08eed [iOS] Show Drive file picker from custom file upload panel
- 2bcaec0 Add fieldtrial config for AutofillMoveSmallFormLogicToClient
- e9be6cf Roll Chrome Android ARM64 Orderfile from MwuYk4G44ckf-N90H... to hxvjXFe8bmMR_ZKPo...
- 4a77396 [fuchsia] Disable HttpCacheTest.EncryptionDelegateInitSuccess on asan builder
- ee45f12 Deflake DevToolsExtensionFileAccessTest. Attempt #2
- 5278db9 Add UMA to measure DataPipe creation in ContentDecodingInterceptor
- 6f6edd1 [Frameworks roll] Roll to 856068321 piper revision
- 1e91632 gardener: Disable WebRTC tests on Linux MSan
- e260315 Revert "[PA] Make PartitionRoot a class"
- d7068a5 Cleanup DesktopMediaPickerMultiLineTitle, DisplayMediaRejectLongDomains
- 3230fa8 Roll Chrome Mac Arm PGO Profile
- d07518a Roll Depot Tools from d72fb3a9a700 to 63930d83feb3 (1 revision)
- e3c73ac Roll DevTools Frontend from 1e68957df7bb to f054abc24946 (1 revision)
- 367f1f9 [text-indent] Support `hanging` for the caret position
- 03d5c95 Roll WebRTC from 67ce67babeda to 4e58235e1b14 (1 revision)
- 51c088b [PA] Make PartitionRoot a class
- c10dfe3 Roll Dawn from 1cd8c851583a to 2132031a6f5f (2 revisions)
- d33a9c7 WebAuthn: Move `OnEnclaveError` to `GPMEnclaveController`
- 93ff2a5 Webium Product: refactor the reload_button_web_ui method
- a5f610f [text-indent] Use `CSSPrimitiveValue` when possible
- cb8c533 Extend background-resource-fetch to M160
- b518c36 Roll Search Engines Data Internal from e3663b1ef883 to 2c00b61a3d21 (1 revision)
- 7ff7099 Roll WebView ARM64 Orderfile from 7rPq_k8UBbLnsZxhQ... to TJ69HY-5UI0_iR3kI...
- 5dd0644 Roll Chrome Win32 PGO Profile
- fce7e98 Roll ANGLE from 90a1c1396b1a to c3fa81ba4c94 (4 revisions)
- 4f114ca [Cleanup] Remove orphaned declaration from RenderSurfaceImpl
- 19d96ab Roll Chrome Win ARM64 PGO Profile
- 243c472 Roll Updater chromium_win_x86 from 2@1561002 to 2@1563001
- 83412ca CCA: Cloud save warning dialog
- a9b5b0b Roll V8 from 5f37c6a48223 to 0e1c9fc538cd (4 revisions)
- d903324 Roll Chrome Android ARM32 PGO Profile
- d601ec3 Roll Chromium Variations from Y8DJK52u8vNA1Ugp2... to fbXqOHXKk2DCA0SIU...
- 22931f5 Roll Updater chromium_win_x86_64 from 2@1561003 to 2@1563001
- 64ab7f8 Roll Chrome Android Desktop x64 PGO Profile
- 991ef96 Spanify base::File usage in copying_file_stream.cc
- f75ca9d Roll Updater chromium_mac_amd64 from 2@1561001 to 2@1563001
- ec02b81 Roll Updater chromium_mac_arm64 from 2@1561002 to 2@1563001
- 6847273 Roll Chrome Mac Arm PGO Profile
- 524dfc2 Roll Enterprise Companion chromium_mac_arm64 from IH3DWMpVQ_VOH5Vyj... to sVdyVgBLXpQzcs9mY...
- 96abdf9 actor: Include tool name and input args in the action result
- bfef0a1 Remove dependency on ProfileManager from ash::AccessibilityManager
- a05cdef Roll Enterprise Companion chromium_mac_amd64 from -UgDXHH3lF88q9c38... to wor0EGzFVdURw3_DR...
- 6044b67 Roll Updater chromium_linux64 from 2@1561001 to 2@1563001
- 1378fb4 [Vertical Tabs] Animate cross-TabCollectionNode view move operations
- c51bf45 Revert "extensions: Add TabGroupsEventRouter to the desktop Android build"
- 7a7288b Roll Enterprise Companion chromium_win_x86 from NH1eNpvZzBrSicI-L... to g5VjrROOkf1YAjJiJ...
- 7742504 Roll Enterprise Companion chromium_win_x86_64 from XubLIamL8xB1FXoj0... to Ph31e2UaA8_zQ3_aI...
- b8f6c0b Roll Kotlin Stdlib from pzmoMtwHT1hYqAVIa... to w1TdvHUfiUruKecZG...
- ff87e03 [Vertical Tabs] Test the real tab strip in TabCollectionNodeBrowserTest
- ec40d11 Roll Manifest Merger from OWV7CA1NXDbFTkcr9... to rFAYLi0-Y71nDk13D...
- 3f29289 Roll Chrome Win64 PGO Profile
- dbaefbf Roll Android Lint from 9AgFghC99R1A3IPlL... to 22TeXNcAIQUr7pSY2...
- c01504d Extend http-cache-custom-backend to M160
- d243cab Roll clank/internal/apps from 3c65ded57986 to ffa8fb506970 (1 revision)
- 206fc00 gardener: Disable flaky test on linux wayland weston bot
- 48a724d Roll Updater chromium_win_arm64 from 2@1561001 to 2@1563001
- 1340080 Roll Enterprise Companion chromium_linux64 from lDdzDkUH41msW06ls... to 4TzPR3-_b1NDSVYlT...
- 6fe5e1a [bedrock] Migrate devtools_window away from BrowserListObserver
- e980983 Roll Kotlin Compiler from swjrmkJ-TygIVaYOB... to ntxdi4kiaehsqujWA...
- 353c2df Roll Depot Tools from 8f894deeff96 to d72fb3a9a700 (1 revision)
- 2f5bc57 WebNN: Create ORT `Environment` on background thread
- 15f1168 Roll Chrome Android ARM64 Orderfile from UEg2MpQh5XLGdmx69... to MwuYk4G44ckf-N90H...
- 0b350d3 [ios] Refactor PrintCoordinator
- e9e8735 Fix CloseButtonMenu's hover effect out of bound issue
- aa4c999 [WaaP] Fix unreliable session restored flag in metrics service
- 4a90aa8 Roll WebRTC from cefa33dd9551 to 67ce67babeda (2 revisions)
- 95ec556 Roll Skia from 45ac568b86ad to 49819b05232d (1 revision)
- 6ff3384 Roll clank/internal/apps from ba78fbd1ecab to 3c65ded57986 (1 revision)
- 2629534 [a11y] Add an explicit example of canvas without fallback.
- fd7a39b Revert "The candidate position can also as a child node of the editing_root"
- 0fd24fe Roll WebView ARM64 Orderfile from YssyG5BzIwfVFkee-... to 7rPq_k8UBbLnsZxhQ...
- 7f18e76 Roll DevTools Frontend from 7779e480dacc to 1e68957df7bb (1 revision)
- 532ff61 Migrate base::Contains() to std::ranges::contains() in chrome
- 6ae8b41 Revert "Avoid warnings in FindBarViewsUiTest.SelectionDuringFindPolicy"
- 8e76c97 Migrate base::Contains() to std::ranges::contains() in printing
- d89999d Revert "DSEPrewarm: Enable on mac/windows in the fieldtrial_testing_config.json"
- d24dd0c Roll vulkan-deps from 9dc01cb23a88 to 9283eb54dc67 (1 revision)
- 83bfcc1 Roll Chrome Mac Arm PGO Profile
- 101ec6b Revert "PA: Support multiple ThreadCache instances per thread."
- b5f5069 WebNN: Remove services unittests for DirectML backend
- 8408890 [omnibox] Prevent voice input transfer from AIM popup to Omnibox.
- 695dda9 Tentative fix for flaky SearchEngineChoiceServiceRestoreBrowserTest
- 7ae4098 extensions: Add ExtensionTabUtil::SupportsTabGroups for desktop Android
- 71643cf Revert "[XR] Refactor XR/JXR related code into a DFM"
- 63bb9f9 [iOS] Add new setup list item types for Safari import and background customization
- 63daa4e Updating trunk VERSION from 7633.0 to 7634.0
- 4004871 [Community Contributions] Clean up readAloudTapToSeek flag
- 89f3e82 Rename GlicFocusedBrowserManagerInterface to follow project convention.
- 9c9a5fb Roll Chrome Android ARM64 Orderfile from As6optKWQfCiVxOda... to UEg2MpQh5XLGdmx69...
- e6e73b7 Re-enable FilterNTPNoMemoryThresholdWithKill group for Android spare
- 7d6e7b9 Add flag to always send not-allowed client hints
- aaf5356 Roll Depot Tools from 832d422ec4d5 to 8f894deeff96 (1 revision)
- c417103 [Mac] Fix Services menu appearance in contextual menus
- fc33ebe [realbox] Ensure placeholder text does not wrap.
- 68623d0 [realbox] Fix the error scrim height in case of multiline realbox.
- c7d12d3 [realbox] Remove recent tab chip when user starts typing.
- 189fea5 Roll Chrome Mac PGO Profile
- 4bd17a4 gardener: Disable EulaDialogLinuxBrowserTest.InvokeUi_default on Linux Asan
- 74b1ecc [Immersive] Reduce accidental submenu opens from hover.
- 6554ff6 Reland "Specifies a null TimeTicks for input_start time when unsure"
- cd78b67 Implement a feature that enables automatic js-opt blocking
- 24c8f31 [rust] `atomic_output` w/ `only_if_changed=False` in `rustc_wrapper.py`.
- b983df9 Roll Chrome Mac Arm PGO Profile
- d0679de Fix the cronjob script in the remoting Debian package.
- 0cbbb0e Speculative workaround for Win11 screenshot_sync
- 3139609 Roll WebView ARM64 Orderfile from iyYQktijWX8n9o8iR... to YssyG5BzIwfVFkee-...
- 4f88299 Roll Chrome Win ARM64 PGO Profile
- 4ece163 Roll Chrome Win32 PGO Profile
- 9426407 [iOS] Remove obsolete TODOs
- e89bdff [WebCodecs] Ensure bitstream converted buffers have key frame markings
- 4c7a14e Roll Chrome Linux PGO Profile
- 1131367 DSEPrewarm: Enable on mac/windows in the fieldtrial_testing_config.json
- 369d178 Extend histogram expiry for WebAudio.Midi and WebAudio.AudioDestination
- 4354a13 [blink] Remove stale Linux expectation for pointerlock WPT
- 736e568 Extend chrome://flags#webium to M150
- 3bd8e6e Avoid creating context for destroying document
- c4cf24a Roll src-internal from 36c9af9f5159 to df7c516db061 (1 revision)
- 44b590f Roll Chrome Android Desktop x64 PGO Profile
- a10cc24 Roll Chrome Win64 PGO Profile
- 5111d58 Clarify Service Worker lifetime for Payment Handlers in FAQ
- de2cf04 Revert "Add fieldtrial config for PredictorInputMapping desktop ..."
- 479125c extensions: Add ComponentExtensionBrowserTest to desktop Android
- bdaf3e7 Roll BoringSSL from 6989efa98463 to bca12c4aa69e (2 revisions)
- 261157b Use Tab's Duration (while it was in foreground) to improve model's precision.
- 581383a [XR] Refactor XR/JXR related code into a DFM
- 16d74c7 Extend renderer-side-content-decoding to M160
- 737e7cc Roll Skia from 10c8e3eee3cd to 45ac568b86ad (2 revisions)
- 23b1001 Roll optimization-guide from ee77b3928497 to 8f5c8182fbf5
- b3225eb Refactor code to add scoring util.
- 4fc0736 [TabListInterface] Add OnTabRemoved observer method
- bdfac8c Preserve %2E encoding in URL paths
- 3a670cd Create feature flag for tab strip empty space context menu
- 3632190 Roll compiler-rt from c3c996fabde1 to ffb4bfe3993d (2 revisions)
- 0b18065 Roll WebGPU CTS from cf6c5cd8e96d to d1ef6a8547bd (1 revision)
- 6175778 [PWA] Use WebAppFilter for OS integration in tests
- 30e633d Add contextual_cueing to android build
- 0651acb Roll clank/internal/apps from 738790907218 to ba78fbd1ecab (1 revision)
- fe01f6a [ImageCapture] Restore accelerated provider creation
- 5f64c58 [Immersive Reading Mode]: Add keyboard navigation to settings menu
- 87f2576 extensions: Add TabGroupsEventRouter to the desktop Android build
- 267b1c7 Remove feature OneGroupPerRenderer
- e0621b7 Output Surface Resize Optimization
- 87b6afb [Settings containment] Fix: Prevent flicker when toggling sync types
- bb688e1 url: Fix UNSAFE_TODOs in url_canon_unittest.cc
- 2e92587 [Bookmarks] Add bookmark copy link menu item on Android
- 1d48e54 Roll prost: 0.14.1 => 0.14.3 in //third_party/rust.
- 750b71b Roll cc: 1.2.51 => 1.2.52 in //third_party/rust.
- 829f16e Rename histograms due to volume adjustment with logging location change
- 01dd3c5 Replace jint with int32_t (Part 2)
- 91c1474 Revert "Add webview feature flag for UpdateScrollPredictorInputM..."
- 8570852 [TDR] Remove TODOs linked to issue 40858292
- 6d3d3e8 Roll Chrome Mac Arm PGO Profile
- a47c6c3 Add AAudio glitch metrics
- 9989ec6 [Reading mode] Ensure keyboard nav in line focus resumes after scroll
- 2746ec5 Add owners file for Projects Panel
- d709366 Reland "Webium Product: defer browser test until the reload button is painted"
- ef014f1 Update expiration of Ash.Login.LoggedInStateChanged
- af2b71b Update the CIPD path and version for android cmdline-tools.
- 46bc222 [PinnedTabs] Do not hide/unhide divider when tab is not sliding
- fc904de WebDX features for Prompt, Proofreader, Rewriter and Writer APIs
- 4f3bfac [tips] Add integration tests for tips via public transit
- d2a7be4 Roll Dawn from af363a1f3171 to 1cd8c851583a (6 revisions)
- b995db4 [tips] Update the enum for the event type histogram correctly
- 9349b31 Clip Side Panel to visible bounds during animation
- c424ec6 [contextual-tasks] Fix PDF context eligibility check
- d7bfc3c PA: Support multiple ThreadCache instances per thread.
- 2ad4bf7 Migrate base::Contains() to std::ranges::contains() in ui
- 9f2782b [Vertical Tabs] Make very top of toolbar part of the window grab handle
- 8fec8f4 Roll vulkan-deps from f9be7fb16df9 to 9dc01cb23a88 (5 revisions)
- 8a06371 Roll Chrome Android ARM64 Orderfile from 4f_aRTD9wR6DvFjEf... to As6optKWQfCiVxOda...
- 2187689 Migrate base::Contains() to std::ranges::contains() in cc
- c35836b [Code health] Refactor OscillatorHandler and PeriodicWave to use base::span.
- ca85192 Roll WebView ARM64 Orderfile from 3Z3rcW9P6705QccMT... to iyYQktijWX8n9o8iR...
- ee49922 Win/AMD 5500XT exp follow-up
- 0888e65 Reland "Use default pipe size in in-proc WebUI resource loading"
- 89c440f [Vertical Tabs] Convert to a single floating rounded corner class
- 4c35cdf [AIM] Increase attachment close button width from 34dp to 48dp.
- fc79edb [Vertical Tabs] Correct lower-left corner on contents in ChromeOS
- 42f62e4 net: use base::RandomChoice for SCT auditing
- 33c8a32 [Vertical Tabs] Use new background for VTS container view
- fa285cc [Vertical Tabs] Add custom background to main background
- 9fc2f04 [Vertical Tabs] Move corner configuration to layout
- db1e952 Roll clank/internal/apps from deeb02b7cab6 to 738790907218 (1 revision)
- 15c004d reporting: base::RandInt(0, n - 1) -> base::RandGenerator(n)
- 5e4ce29 net/disk_cache/sql: Fix index mismatch on optimistic write failure