Chromium Digest: 2026-01-13
Overview
On January 13th, 2026, a total of 668 commits were made to the Chromium main branch, with 549 being identified as relevant to developers. This day was marked by a significant number of breaking API changes and removals, alongside the integration of the JXL image format and continued code modernization efforts. The first relevant commit was
(fcfac78) and the last was (ac867bd).Breaking Changes
-
⚠️ BREAKING
The utility
base::Contains()will now trigger astatic_assertbuild error when used on containers with their own.contains()or.find()methods. This change forces migration to more efficient container-specific methods orstd::ranges::contains()and will break builds that use this common utility. (4a17af8) -
⚠️ BREAKING
The entire mechanism for overriding UI strings via Variations has been removed. This deletes the
generate_ui_string_overriderbuild target and modifies public function signatures likeVariationsService::Create, which will cause build failures for any embedder using this feature. (8c51996) -
⚠️ BREAKING
The virtual method
IsThirdPartyStoragePartitioningAllowedhas been removed from the publiccontent::ContentBrowserClientinterface. Embedders must remove their implementations of this method. (bde1f50) -
⚠️ BREAKING
The public type
base::trace_event::TraceEventHandlehas been removed. SeveralAddTraceEventfunctions inbase/trace_event/trace_event.hnow returnvoid, breaking code that relied on the previous return type. (9801a81) -
⚠️ BREAKING
The constructor for the public
TabCollectionclass has been modified to acceptbase::EnumSetinstead ofstd::unordered_set, requiring updates for any code that directly instantiates or subclasses it. (0b0a76f) -
⚠️ BREAKING
A deprecated overload of
PrerenderHostRegistry::CancelHostthat accepted aFrameTreeNodeIdhas been removed. Callers must migrate to the version that usesPrerenderHostId. (21c475a) -
⚠️ BREAKING
The constructor signatures for
autofill::LoyaltyCardhave been changed in both C++ (loyalty_card.h) and Java (LoyaltyCard.java), requiring updates to instantiation calls. (59b8a5d) -
⚠️ BREAKING
The public field
supported_buffer_formats_for_allocation_and_texturinghas been removed from thegpu::GpuFeatureInfostruct. (61f62f2) -
⚠️ BREAKING
The
kMailboxHoldervalue has been removed from the public enummedia::VideoCaptureBufferType. Code referencing this buffer type will no longer compile. (936dc7c) -
⚠️ BREAKING
The
samePartyattribute and related error types have been removed from the public DevTools Protocol, breaking automation clients that reference them. (1cb1214) -
⚠️ BREAKING
On Android, the public Java class
TabListEditorLegacyGroupActionhas been deleted, which will cause build failures for embedders using it for tab management UI. (f679737) -
⚠️ BREAKING
On Android, the
kRequestedByEmbeddervalue has been removed from the public enumcontent::TransferInputToVizResult. (ba880fd) -
⚠️ BREAKING
The signature for
url_formatter::FixupURLwas reverted fromstd::string_viewback toconst std::string&, which will break code that was recently updated to thestring_viewversion. (985ddb3)
Web Platform & Blink
-
The JXL (JPEG XL) image decoder has been integrated. The feature is enabled by default at build time and is available behind the
#enable-jxl-image-formatflag. (8215ebd) -
The initial web-exposed parts of a proposed Autofill API have landed, introducing an
onautofillevent. (ad56812) -
A new
Element.activeViewTransitionattribute has been added to the View Transitions API, providing a reference to the activeViewTransitionon a scope. (8d132fe) -
The rendering of ordered lists (
<ol>) withreversedorstartattributes was updated to better align with the CSS specification by moving the source of truth toComputedStyle. (da7096f) -
A new flag,
kWebAssemblyStackSwitching, has been added tochrome://flagsfor the WebAssembly stack switching feature. (c7b86af) -
A bug with the
<label>element's default activation behavior has been fixed. The action is now correctly suppressed if the label contains interactive content that is removed from the DOM during itsonclickevent. (70e1fb8)
Services & Features
-
The "run on OS login" functionality for PWAs is now permanently enabled on desktop platforms, and the controlling feature flag
kDesktopPWAsRunOnOsLoginhas been removed. (fe87d68) - Safe Browsing's site familiarity heuristic has been updated to incorporate site engagement scores, allowing sites with a high enough score to be considered "familiar". (b339f8b)
- Eager downloading of model configurations for built-in AI features like Summarizer, Writer, and Rewriter is now enabled by default. (12471d6)
- The Reading Mode side panel's line focus menu has been updated with separate sections for style and movement, along with new options. (36bdebf) (61b28bc) (0d16746)
UI & UX
-
The "Chrome Refresh 2023" UI is now the only option available as the feature flags (
kChromeRefresh2023,kChromeWebuiRefresh2023) have been removed. (6d6528f) -
A new
CustomCornersBackgroundclass has been introduced to support configurable UI corners, now used in the top container and toolbar as part of the Vertical Tabs feature. (e331d37) - A new views-based End-User License Agreement (EULA) dialog has been implemented for Linux, which appears on first run when Chrome is pre-installed. (56aaafa)
- On Linux, the logic for opening links has been changed to prefer the most recently used browser window within the current workspace, rather than the globally most recent one. (addcbeb)
Android & iOS
-
The
chrome.tabGroups.move()API has been partially ported to desktop Android, allowing extensions to move tab groups within a window. (e572b54) - The Android SDK dependency was rolled to version 36.1. (f022114)
- A crash in multi-window scenarios on Android related to input event transfer has been fixed. (ba880fd)
Major Removals
-
The entire native implementation of Cronet (
//components/cronet/native) and the gRPC support library (//components/grpc_support) have been deleted. The native implementation was never officially supported. (bf972e6) - The experimental parser and related build flags for the VVC (H.266) video codec were removed, as it is not planned for support. (1e56231)
-
Several unlaunched enterprise policies, including
ReportingEndpoints, and their underlying components have been removed from the codebase. (aad3155) (edcdaeb) (861ebdf)
Code Health & Infrastructure
-
The C++ style guide has been updated to officially allow several
std::rangesfunctions from C++20. A large-scale migration frombase::Contains()to standard library or container-specific methods continues across the codebase. (2ba2ac3) (f177700) (7c2fca9) -
C++
#warningpreprocessor directives are now treated as errors. This may cause build failures in downstream projects that have warnings in their code. (6dc257b) - Chromium M145 was officially activated in the build infrastructure. (876a330)
-
The
kUseCompoundImageBackingAsDefaultfeature, which was enabled earlier, has been reverted due to regressions on certain Windows/NVIDIA configurations. (6f06775)
All Commits (668)
- ac867bd [Community Contributions] Clean up readAloudInMultiWindow flag
- 1ce98be Roll ios_internal from 99f50c46857c to 4312d43af2fd
- 536f85c Reland "[DCSI] Enable CompoundImageBacking as default."
- 3e11954 history-embeddings: use base::RandomChoice() to construct test passages
- 59fa579 [CCSG-2] Add CCSG to the new RSG flow
- 918ee60 Add a helper function to generate a shared secret for ECDH P384
- fc5de7d [Settings Search] Adjust UI width in single column mode
- 9b6b9bc [PM] Replace TaskPriority by Process::Priority
- a4271b7 webnn: Extend backend control flags
- dc57a19 Sequoia Pixel Test Suppressions
- 9191189 [VerticalTabs] Disable menu option to toggle from horizontal to vertical tab strip when in immersive.
- 72f1fd3 Roll prost-derive: 0.14.1 => 0.14.3 in //third_party/rust.
- 9be41dd [iGA Hagrid] Add cwv flag to guard using fpan risk based authentication
- f81609a Roll WebRTC from ac4db2b98c8a to cefa33dd9551 (2 revisions)
- 96815c1 Revert "[rust] Cover `rustc_nightly_capability` via `buildflag_header`."
- 8ec54fc [blink/platform] Remove unused function in MainThreadSchedulerImpl
- 8a07233 [PWA] Enforce web app construction constraints
- f14307e [AIM] Switch fusebox to more simple spacing deco.
- f177700 Migrate base::Contains() to std::ranges::contains() in content
- 412555a [Extensions] Fix ContentVerifierJob race condition with extension roots
- 0307766 Fix a crash that happens when an enabled flag gets removed
- e0dce9a [ntp-next] chip row dismissal
- eb80110 Add myself to web apps watchlists
- 1ac23dd Remove calls to base::android::GetClass() #5
- 26656f6 [rust] Cover `rustc_nightly_capability` via `buildflag_header`.
- 6db471c [ntp-composebox] Define new types in for the support enums for model, types and input.
- 7885eec Roll ANGLE from 72b169e7e1ca to 90a1c1396b1a (7 revisions)
- a9f17ef Revert "[Android] Create waitForNoView(), replace waitForViewCheckingState()"
- a961ee7 [Force Save to OneDrive] Rename string resources to be more generic
- 87f9058 [WebAuthn] Extend flag expiry for showing suggestions on autofocus
- ac378f6 [BrowserControls] Allow adjustment tab strip height during startup
- 902e385 [SetupList] Add Two-Cell UI Components (1/2)
- 186f3ab [SEH] Add Feature to gate new search engine dialog behavior
- fa5fee4 [a11y] Add test coverage for posInSet/setSize on menu elements.
- 9b3ebe5 Replace jint with int32_t (Part 1)
- b882e5a [Cleanup] Inline DestroySharedImage() in VR/XR code
- 7596265 [Community Contributions] Clean up readAloudBackgroundPlayback flag
- fa3b2ac [text-indent] Support `hanging` for abspos static position
- 8c51996 Remove support for variations UI string overrides.
- 2d5e028 Roll Chrome Mac Arm PGO Profile
- 4f481b8 Move overscroll area tests to common location.
- a9bb8f4 Fix unsafe buffer usage in unload_browsertest.cc
- d122974 network: use RandBytesAsVector in transport tests
- ed576d0 prepare chrome/browser/glic for enable_glic=true
- edad292 [headless] Use CHECK_DEREF consistently for command line
- ffe93ef Roll V8 from 934f90af7826 to 5f37c6a48223 (5 revisions)
- 0d4868a Reland "[AIM] Have screenshot by default"
- 7b284c9 Roll BoringSSL from c88440cb71fa to 6989efa98463 (1 revision)
- bfdbead Extend expiry of collaboration flags
- f23cebb Hoist ClickType and ClickCount out of mojo struct
- 7a79c87 Fill in all missing improvement direction XML tag for guiding metrics including versioned histograms
- ec03425 [cleanup][proxy_main] CommitRequested() logic easier to follow.
- e9832ab Add duration of tab's last visit i.e. the time it was in foreground.
- 01d05d1 Change reporting client side ownership.
- 9bbdb40 PaintTiming: Fix ordering for frames with the same presentation time
- 430064b Clamp backdrop filter area to output rect in SKIA renderer
- bffa54b android: Properly enable kXrDevice
- 5931647 [TWA] Add query API to AconfigFlaggedApiDelegate
- 5b436ed [Nearby] Modernize c/a/s/nearby/p/cpp nested namespaces
- 1e456ac Promote GPU M1 experimental config to stable
- 29d5714 [iOS] Remove safety-check-notifications flag metadata
- db80139 [PWA/App Migration] Decouple IsSynced() from install state logic
- 4757ed5 Roll ios_internal from 33b685b8f372 to 99f50c46857c
- 43f7a86 Roll WebView ARM64 Orderfile from z3Zm4BoR7KxBUU9HD... to 3Z3rcW9P6705QccMT...
- 21daf8e Roll Chrome Android ARM64 Orderfile from Uh8xE2QxbxvdnK01Z... to 4f_aRTD9wR6DvFjEf...
- e07aa37 PaintTiming: Refactor LCP candidate update flow
- 0172b97 Roll Skia from 6c78072eb424 to 10c8e3eee3cd (2 revisions)
- 5ccd7d9 Wire up default browser notification interactions
- c778cbc [context-input] Add suggestion vs manual selection UMA slicing for tab context
- 06afc01 [Reading mode] Remove separator above the first line focus header
- 3b29701 spanification: automatically spanify base/cpu.cc etc.
- 06a4b63 Populate active tab in context turn metadata in cobrowse mode (postMessage)
- d83412c Remove unnecessary platform buildflags for BNPL project
- 50fa1c3 Update CBB autoroll for the builds refs
- 1d21e4c [FedCM] Minor code simplification
- ccbb8d8 Add button reorder to infobar refresh
- 9642fda [CCSG-2] Move metrics logic from BAM into CCSG
- cb098d9 [NTP-Real-Box]: Takes 2 clicks to focus input when context menu is open
- bc87e1c Add entrance animation for task icon.
- 3c3d46a [VerticalTabs] Fixing a crash during drag when TabGroup is collapsed
- c83474f [gpu] Remove BufferFormat refs from DrmModifiersFilter
- 862ec83 [animation-trigger] Rename range boundaries of TimelineTrigger IDLs
- e831ff7 [Contextual Tasks] Introduce retries in OAuth retrieval
- 1662b20 Add histograms for MTC metadata freshness
- 3cac5a3 Add metrics for pane swiping in the Android Hub.
- 98726ff ios: Add experiment to disable CookieStoreIOS::FlushStore on background
- 1964352 Add non_git_source to components/variations/test_data/cipd.
- 25e8f0f [iOS] Extend UMA Histogram IOS.PushNotification.APNSDeviceRegistration
- a60d068 arc: Update expiry of histogram Arc.Session.StopReason
- 16c6951 Roll Chrome Win32 PGO Profile
- f2d1ba3 Replace `std::set` with `absl::flat_hash_set`.
- 6a81cdc [Frameworks roll] Roll to 855820572 piper revision
- fe7be89 Remove deprecated arc-switch-to-keymint-daemon and
- 02c0038 [Gardener] Disable DiskCacheBackendTest#SimpleCacheNegMaxSize on Android
- 99b5af5 Increase sharding for browser_tests on Linux CFI builder
- 7b7f12e [Gardener] Disable RenderDocumentHostBrowserTestt#SubframeScriptableNavigate on Android
- 69530f4 Add webview feature flag for UpdateScrollPredictorInputMapping
- 2bc63e1 Add fieldtrial config for PredictorInputMapping desktop and WebView.
- d450a10 [FedCM] Remove `rp_mode` from FetchConfig()
- 76074a1 [Extension] Create FT config for browser namespace and polyfill features
- 7243dd2 Roll Chrome Mac PGO Profile
- 93ed1ae CCA: CameraSaveHandler unit tests
- 30d794c [iOS] Gemini camera image taking flow
- f060d50 Prepare contextual_cueing for enable_glic=true
- e331d37 [Vertical Tabs] New background for many browser elements
- 845105a [RWM] Update MultiInstanceManagerApi31#allocInstanceId
- a00b21a Roll clank/internal/apps from b3debb5fff46 to deeb02b7cab6 (1 revision)
- aee4895 Add Sign function to RsaKeyPair
- 0d568ee Roll FreeType from 341049a95bac to a9babbcbc0e9 (1 revision)
- dc9daf9 Reland "pdf: Use a set of rotating buffers for the PDF PaintManager"
- abb44e2 Roll Chrome Win64 PGO Profile
- 6b30ab2 Reland "[CodeHealth] Spanify AAudio (de)interleaving"
- 82d258b Allow showing and hiding the magic stack
- 8fdbff2 Update copyright year for remoting binaries
- 1c7693f Enable Win/AMD 5500XT experimental tests
- 614a8ff Add Keychain V1 functionality to KeychainV2
- 28a93a5 [Animated PB] Don't show pulse animation if android controls are hidden
- 1888657 Roll optimization-guide from 8d07ad4a2278 to ee77b3928497
- a7b708a Fix clicking bookmarks from app menu
- 533c8b5 [iOS][WebAuthn] Add logic to handle conditional passkey requests in JS shim
- 691f7e6 Roll Chrome Mac Arm PGO Profile
- cd13798 Revert "[Extensions] Enable browser namespace and polyfill support features."
- 8666580 Add japhet and aixba to web_applications WATCHLIST
- 1bc0e6a [bedrock] Migrate web_contents_display_observer_view.cc away from BrowserListObserver.
- 49cae4c Sync feature protos.
- 81a4a9b Extend web-app-migrate-preinstalled-chat flag
- 50ad6f8 [Force Save to Cloud] Update download bubble message
- a714a14 [soft navs] Remove kMarkTextNodesForRepaintOnContextChange
- c3be40f [glic] Add a bunch of sharing manager stuff to android
- 4fdfe59 [AIAE][Launch] Add fieldtrial config
- 5f21780 Use SharedImageExportResult for VideoFrameHandleReleaser
- a09e9ed Roll WebRTC from f051ff2194fa to ac4db2b98c8a (3 revisions)
- acee786 Roll V8 from b90901923b7c to 934f90af7826 (3 revisions)
- 6a4c5f7 webstore_private: check ExtensionInstallPolicyService for InstallStatus
- 414058e Roll ios_internal from cd67aad0db21 to 33b685b8f372
- c7c37e5 [contextual tasks] Add voice metrics for contextual tasks
- d545ae0 Disable flaky multicol-under-vertical-rl-scroll.html
- 58cc3a2 [glic] Add glic_pinned_tab_manager_impl to android build
- c7b86af [wasm][wasmfx]Add chrome flag for WebAssembly stack switching
- 79cde19 [glic] Add glic_ui and its deps to the android build
- 76bbc3d [iOS] Extend enable-cross-device-pref-tracker
- 25bb2f8 [Glic] Enable GlicKeyedService compilation on Android
- 8fc7983 [contextual-tasks] Enable non-blocking privacy notice for contextual queries
- d7deac6 [Okta SSO] Move support for Okta in the blocklist policy to 146
- e410924 [RMW][RecentlyClosed] Invoke #onInstanceClosed in #onDestroy
- 0b4fd95 [capture_mode] Remove SharedImage usage added for raster-over-GLES
- b137b27 [//gpu] Remove comment referencing raster-over-GLES
- 925ba5d [//media] Update comments in renderable_gmb_video_frame_pool.*
- 45c50ce [Reading mode] Add tests for an unresponsive renderer in immersive
- 6d6528f [Chrome Next] Remove old layout
- f1a3f89 Update `TestExpectations` with bugs filed for crrev.com/c/7456978
- 6f568ce Migrate base::Contains() to std::ranges::contains() in chromeos
- ea2cfec Avoid duplicate map lookups.
- 36bdebf [Reading mode] Update line focus menu
- 61b28bc [Reading mode] Propagate line focus changes
- bc58830 Add about_flags entries for mi tiered enabling manual testing
- b70cf38 Roll flate2: 1.1.5 => 1.1.8 in //third_party/rust.
- f0895b6 Add URLInfo fields to LoginEvent and DlpSensitiveDataEvent.
- 55fee58 [A11y] Use supplemental description as fallback for kRelatedElement
- e2fcac0 Cleanup now redundant UNSAFE_TODO() content
- 630f268 Introduce FuseboxSessionState object.
- 2c35b69 [Android] Create waitForNoView(), replace waitForViewCheckingState()
- c9a8d6b Roll Chrome Android ARM64 Orderfile from sU3CuHU7mjuTbHR3B... to Uh8xE2QxbxvdnK01Z...
- 6bee131 extends expiry for ChromeOS.SecurityAnomalyUploadSuccess
- 263262d Migrate base::Contains() to std::ranges::contains() in media
- fe87d68 [PWA] Remove kDesktopPWAsRunOnOsLogin feature flag.
- 9055b7f [Extensions] Fix race condition in UserScriptsUITest causing test flake
- 7988ad9 Add a client-side Skill proto that matches the server-side proto.
- a42fe57 [iOS][WhatsNew] Update Lens Search Instruction step 2
- b0c72f7 Roll DevTools Frontend from 7cedd95a62ea to 7779e480dacc (2 revisions)
- f679737 Delete TabListEditorLegacyGroupAction
- de11c92 Migrate base::Contains() to std::ranges::contains() in services
- 318dff0 Fix chrome.processes.getProcessInfo when requesting memory
- 5cc49d6 Roll Chrome Linux PGO Profile
- 9801a81 Remove base::trace_event::TraceEventHandle
- 809c333 Roll Skia from fe854bdf9199 to 6c78072eb424 (1 revision)
- f66d371 Remove FluentScrollbar base::Feature.
- 05d8743 Gate JXL decoder by feature flag
- 3c3d14e Roll WebView ARM64 Orderfile from bUhKF8A7_sk8v47lq... to z3Zm4BoR7KxBUU9HD...
- da9caa8 [ntp-simplification] Update stale shortcuts threshold to reflect LE
- 9f2300c Remove unused PageContentAnnotationsWebContentsObserver members
- 0eb8664 Roll Chrome Win ARM64 PGO Profile
- 34ef787 [SxS] Show view source domain label
- 267028d Add overscroll targets to their associated overscroll-area-parent.
- d6740ca [PromptAPI] Revise tool types for `Tool use` IDL
- c5a8d4c Actor: Add tabs to task before calling Act
- 446f3fb Make arrow focus changes for menuitems loop.
- 83468ee Modify updateContent to support showing DOM Distiller content.
- f9c866d Roll zmij: 1.0.12 => 1.0.13 in //third_party/rust.
- 23b595d Delete unused overflow view
- ff57719 Roll Chrome Android Desktop x64 PGO Profile
- ca515a1 Roll gn from 5550ba0f4053 to 9673115bc14c
- e1658a3 Fix data loss in Segmentation model execution metrics
- a307c80 (Uplift) Correctly parse ethiopic-amete-alem alias
- 9285b16 Migrate base::Contains() to std::ranges::contains() in tools
- a772a54 Roll src-internal from f8c4bc03f997 to 36c9af9f5159 (2 revisions)
- b0c05a6 [Reading mode] Add onStyleChange and onMovementChange methods
- d8733f2 [Animated PB] Show toolbar even if there's no capture
- ba94831 [Extensions] Remove ContextType comment mentioning Feature::Context
- bce7510 Modularize CSD host ping sending condition logic
- 65d226f [Extensions] Consolidate extension_post_install_dialog_utils
- 937620d [Gap Decorations]: Remove TODOs for serialization of *-rule shorthand
- 0e41413 [ntp-realbox] Close context menu when tab context is added from chips
- 3249909 Migrate base::Contains() to std::ranges::contains() in device
- 34d24be cleanup: Remove old experimental .Tabbed.ColdStartTracker histograms
- aaead72 Roll clank/internal/apps from dfa683418740 to b3debb5fff46 (1 revision)
- f762ecf [Frameworks roll] Roll to 855760520 piper revision
- afb5eef Roll WebRTC from d56e34442c1a to f051ff2194fa (1 revision)
- 29fdfd8 [Contextual Tasks] Monitor primary account token changes
- 048b0eb [NtpCustomizationV2] Refactor search box width calculation and add search box to the preview dialog
- 788b837 Roll Amd64 AFDO from 145.0.7629.0_pre1567504_rc-r1-merged to 145.0.7631.0_pre1567646_rc-r1-merged
- 8d8b774 Run heuristics for small forms in actor mode
- e5d7b27 Reland "[iOS] Gemini image remix camera flow skeleton and gateway"
- c782b09 [iOSFidoImportExport] Add more EGTests for Credential Export View
- bb9dbc6 Roll Chrome Mac PGO Profile
- e24bce0 Update TestExpectation for authentication-invalid-payment-entity-logo.https.html
- 0c17ffe generate_milestone_reports.py: Add M144
- 89f056e Right align Incognito indicator popup menu, add animation
- dc43085 Roll Chrome Mac Arm PGO Profile
- ef1dbb7 [BrowserControls] Add testing switch to enable LockTopControlsV2
- fd601f9 [glic-tab-context-menu] Implement unsharing tabs from all conversations.
- 955c025 Revert "Use default pipe size in in-proc WebUI resource loading"
- 872820b Mark EnableProxyOverrideRulesForAllUsers as supported on in M145
- d662cd4 Cleanup of the ManagedBrowserClientCertificateEnabled flag
- 2db99a3 Revert "Mark Tablet and Desktop as important for PublicTransitLeakTest"
- cbd6948 [ntp-next] Matching hover text for normal chip and rows
- a26913c Roll Projector App from uKBXTwvAMLMEgqEow... to Mi1yam7MjoyWDZNGC...
- f9036bf Cleanup now redundant UNSAFE_TODO() components
- 5a7bbba Use string_view instead of string to avoid string copies.
- 55184f0 Import wpt@f4b91347f2afe637dfd8f8f8dd114e55180691aa
- ad818fc Roll V8 from f09d67c66114 to b90901923b7c (51 revisions)
- d2e8a55 [CBB] Add finch seeds to desktop perf builds
- 15a05d1 DOM: Introduce CommandInvokerElement interface mixin
- 6155e72 Add browser tests for EnableProxyOverrideRulesForAllUsers
- 23bfc69 Roll JetStream main from 181f3cc3eded to 64577a67503f (1 revision)
- d5e7894 Fix unit and use LiveTicks in Memory.DumpProvider.TotalTime
- bbeadef Adds 'Enabled Open Fullscreen' as an option for robust-window-managment-experimental.
- 8726453 Migrate base::Contains() to std::ranges::contains() in android_webview
- c4a52ee [Omnibox Next] Add flag variant to hide chips for inline context menu
- 8ff1b48 Roll DevTools Frontend from 444ff1784420 to 7cedd95a62ea (14 revisions)
- cc6fb67 Reland "[HLS] Expose HLS renditions & variants as MediaTracks"
- 06d58ce Roll ANGLE from 428d7443a83f to 72b169e7e1ca (2 revisions)
- 1ba7bd4 Roll Chrome Android ARM64 Orderfile from QGvjjMrOAVZoHnZd0... to sU3CuHU7mjuTbHR3B...
- 4799f31 Roll Skia from 8f3134206e8d to fe854bdf9199 (8 revisions)
- 5b28a36 Uncomment Pixel_ReflectedDiv suppression
- 98b0aa3 Roll WebView ARM64 Orderfile from bR3V1alRBDG9yoiBv... to bUhKF8A7_sk8v47lq...
- 691c08c Add long timeout annotation to focus-menu-elements-arrowoperations.html.
- 887e62f Roll Media App from CFbbFynZc-H8Z7PQt... to vkilsiq6J5CaIx1PW...
- c76cecd Add persistAcrossReboots to ChromeTabbedActivity with fix to test utility
- 9ea1565 [Composeplate] Don't over record lens metrics.
- f530aba Roll Dawn from 9da9d6cc30c2 to af363a1f3171 (6 revisions)
- 5e57e0b Unbreak DUMP_NODE_STATISTICS.
- 3922b77 [AIM] Fix attachment flicker issue.
- 2a6f107 Roll R8 from TXlzDJEcatuD9PYDo... to ANp1-W2IZaMat2k3g...
- d589e2b Roll WebView ARM Orderfile from _VHtkGksYjiOMNLhq... to CLgucgl8psivrATRq...
- 7567497 [Force Save to OneDrive] Add a new danger type for force save to onedrive
- da21116 Change scoped_refptr<StringImpl> to String in AtomicString.
- 118808e gardener: Disable TtsMacTest.CachedVoiceData on Mac
- a32d230 Roll ios_internal from a9e58a1bdcd4 to cd67aad0db21
- 6d600ec Roll Depot Tools from fb0b652edba7 to 832d422ec4d5 (1 revision)
- b0b54aa Clean up 3pc component names on Android
- ae47c3c Add WebDX use counter for partitioned cookies
- 13775c0 WebUI: Replace more usages of CrContainerShadowMixin with cr-scrollable
- 8d132fe ScopedVT: Add Element.activeViewTransition attribute
- 51c7ba7 Roll Crossbench from 8f7c9b39f4c1 to 0706cc21db2c (1 revision)
- 7a87312 Roll src-internal from 6d9eb0fa8482 to f8c4bc03f997 (1 revision)
- 1a12e09 Roll Website from cb33846322e8 to fb3def8a9930 (2 revisions)
- 14259c0 Re-enable select appearance tests
- 94606e0 [a11y] Add a function to check if setting extended selection is supported.
- cee9f4f Create stable import pipeline for GN2BP
- 2496407 Fix custom icon download with CSP restrictions
- 4f8a4d9 media: Fix MediaDrmBridge log message format
- 48d6e2d Updaate BuildCompat.kt
- 49434a2 Do not send DOM model to renderer on model update
- 41e4aa7 Roll Help App from c-y_MmkPyAmWE2d_1... to UaqzopNwJewobHnHc...
- 13d7d5b Migrate base::Contains() to std::ranges::contains() in ui/views
- c272250 Migrate base::Contains() to std::ranges::contains() in chrome
- a8314ee [Happy Eyeballs v3] Fix AttemptManager::CanAttemptConnection().
- d397eff Roll clank/internal/apps from 0f30382ae7bc to dfa683418740 (1 revision)
- ad56812 Autofill event - web exposed parts
- 9203ba8 Remove outdated countries from kDefaultEnabledCountries
- 4424a49 Roll WebRTC from f38efe4faa1d to d56e34442c1a (8 revisions)
- b373b31 Roll Chromium Variations from 6B44K9mqNs5Dw6S-6... to Y8DJK52u8vNA1Ugp2...
- b7701dc Add JXL WPT tests to jxl-enabled virtual test suite
- b4b74af [fuchsia] Increase page_action.DEFAULT_TIMEOUT to 240
- 868c2a5 Roll Catapult from 5278e26a9964 to 9a9768518a51 (2 revisions)
- 4c83571 Disable RenderFrameHostManagerTest.ChromeSchemeProcesses on all desktop
- de9047c [Windows] Include module names in symbolized stack traces
- 3915beb Roll llvm-libc from e9f0fd993242 to add939b55890 (4 revisions)
- 6a0d90a Migrate base::Contains() to std::ranges::contains() in base
- 56aaafa [Linux] Implement First Run EULA dialog
- 819a232 Roll find-msvc-tools: 0.1.6 => 0.1.7 in //third_party/rust.
- 1e56231 Remove VVC parser code.
- f0eeea2 [PWA] Use WebAppFilter for OS integration in tests
- c8427a4 [//media] Eliminate SharedImage usage added for raster-over-GLES
- 13213a7 Don't recalc ::first-letter ancestors for interleaved root
- 704d0c9 Roll SearchEnginesData from 97355b69daee to de5efa2da622 (1 revision)
- 098fd13 Change pending_migration_info to optional single field
- 45128a9 [UW] Post-launch cleanup for kInstanceSwitcherV2
- f69a468 Roll Chrome Linux PGO Profile
- a9a82e0 Extend expiration for AccessCodeCast histograms
- bf972e6 Delete //components/cronet/native and //components/grpc_support
- db64a84 Add plaintext variant of HTML terms
- 2a4313f [Contextual Tasks] Add flag to use new OAuth2 Scope
- 77cb026 Use mojom-shared.h not mojom-data-view.h in blink
- 63ba1fc Roll clank/internal/apps from 5e5cf1da512e to 0f30382ae7bc (1 revision)
- 710714b Remove platforms support restriction for blink.WebGPU benchmark.
- 668f29d [NtpCustomizationV2] Add display cut and navigation bar to the preview dialog
- 00fb6c9 Move WeakPtr check before touching member variables
- bde1f50 3PSP Enterprise Policy - Remove
- 021aa25 Add LOWER_IS_BETTER tag to blink latency metrics
- 30d8aa2 [TreesInViz] Fully diff nodes in ComputePropertyTreeNodeUpdate
- 67340d6 Roll Chrome Android Desktop x64 PGO Profile
- de3f7d3 Migrate base::Contains() to std::ranges::contains() in chrome
- 165612b Roll ChromeOS Bigcore AFDO profile from 145-7606.0-1767581439-benchmark-145.0.7629.0_pre1567504-r1 to 145-7606.0-1768189518-benchmark-145.0.7631.0_pre1567646-r1
- 5bcd0f1 Roll Arm AFDO from 145.0.7630.0_pre1567562_rc-r1-merged to 145.0.7631.0_pre1567646_rc-r1-merged
- 458b45f Roll ChromeOS Atom AFDO profile from 145-7606.0-1767586649-benchmark-145.0.7629.0_pre1567504-r1 to 145-7618.0-1768192297-benchmark-145.0.7631.0_pre1567646-r1
- ab121a4 Cleanup now redundant UNSAFE_TODO() ui
- e7662a7 Roll Chrome Mac Arm PGO Profile
- 716d8a9 Broker link-local connections from sandboxed network service
- 59b8a5d Update LoyaltyCard constructors to include usage metadata
- 37ca686 Persist valuable metadata in ValuablesTable
- fcf05d8 Implement ProduceVideo for CompoundImageBacking
- 876a330 Activate chromium M145
- f25b0b5 Run IWA trust checks while getting the IwaSource from //chrome
- 9f9d6ea [Omnibox Next] Add histograms for context menu
- a6e669f Roll clank/internal/apps from 365d817def34 to 5e5cf1da512e (2 revisions)
- 8d083be [realbox] Match Compact layout bottom padding to Tall layout.
- 2db4554 Spanify base::File usage in aggregate_metrics_processor.cc
- fa825de Refactor StartQuery tests to use FormData only
- 3dad848 Overscroll: Ensure to check for overscroll areas before V2 actions.
- ecf9e89 [Omnibox Next] Add hcm color for lens chip
- edcdaeb Delete tpcd/enterprise_reporting component
- aad3155 Delete ReportingEndpoints enterprise policy
- 4277eba Suppress ContextLost_WebGLContextLostInHiddenTab on Pixel 4
- 5355c00 Roll Chrome Android ARM32 PGO Profile
- 4cf9786 [Passwords] Extend PasswordManager.AddCredentialFromSettings.UserAction2
- 33fb8ea Roll Chrome Win ARM64 PGO Profile
- 38a963a [MagicStack] Fix the logic to skip manually ranked modules.
- eca4e1d Fix crash on TabModel.GetBrowserWindowInterface
- 90f42fc [iOSFidoImportExport] Add egtest for csv export button state
- c5131d2 Updater UI: Factor scope icon to new element
- 5508ea0 [css-transition] A singular-valued matrix break transitionability
- 2b23df6 Forward DrmColorSpaceDefaultIsRec709 to guest mode
- 168620b Change double init error to assert in WebViewCachedFlags
- 7470ddf Migrate base::Contains() to std::ranges::contains() in crypto
- 0bd07c2 Migrate base::Contains() to std::ranges::contains() in sandbox
- 861ebdf Remove code that sets enterprise endpoints in the ReportingService
- 57f66ce spanification: automatically spanify ui/gtk/x/gtk_event_loop_x11.cc etc.
- e681c9f Remove initializations of enterprise endpoints from ReportingService
- 0393015 Don't use deprecated net callbacks and modernize remoting/protocol
- 8068644 upload_screenshots: don't try to add files to CL in Cog workspaces
- ce76563 Replace ConsentLevel::kSync with kSignin
- bbc22c3 Add command line flags to enable logging for chrome login window.
- 25112b4 Clean up tab search flags
- b7ffa82 Move ProjectsPanel controls to its own view
- cc8e70d [PaymentRequest] Deduplicate native payment app creation for Google Pay
- d8e4478 Migrate base::Contains() to std::ranges::contains() in components
- 299c9e9 [fieldtrials] Add Support for Human Readable Group Names to Synthetic Field Trials
- 82deaa3 [Force Save to OneDrive] Add chrome://flags for enabling force save to one drive
- cd00fd8 Delete enterprise endpoints from the ReportingCache
- f437fbf Delete ReportingEndpointsPolicyTest
- c2f5258 Delete EnterpriseReportingBrowserTest
- a2863fd [Connection-Allowlist] Enforce network restrictions on navigations
- 31f0119 Fix UNSAFE_TODOs in device\bluetooth files
- 557b224 [ActorTaskBubble] Make tab closed row unclickable after first click
- 86b1403 Migrate base::Contains() to std::ranges::contains() in mojo
- 054b103 [Omnibox Next] Fix voice search button overlap on hover
- 2976aa5 [TDR] Remove TODOs linked to issue 40102887
- e74ce36 Avoid duplicate map lookups.
- 47b1e8b [PWA/App Migration] Prevent apps suggested for migration from syncing
- c569fd6 Use default pipe size in in-proc WebUI resource loading
- 21c475a Prerender: Remove CancelHost(FrameTreeNodeId)
- 040ea7d Disable flaky PrivacySandboxQueueNoticeWithEsbNoticeBrowserTest on CrOS
- 1f300ae De-flake CC form tests in client_side_detection_host_unittest.cc.
- 9d4656c [iOS][AIM] Update width of the AIM nudge on toggle
- 9fa07f8 [Actor Overlay] Add GlicActorUiOverlayMagicCursor to field trial
- e2822e6 [Autofill] Use WebForm[Control]Element in UpdateLastInteractedElement()
- 8951078 Migrate base::Contains() to std::ranges::contains() in net
- 5495ceb Migrate base::Contains() to std::ranges::contains() in pdf
- 5a8164b Migrate base::Contains() to std::ranges::contains() in chrome
- 780765c Migrate base::Contains() to std::ranges::contains() in ios
- 37ec642 Migrate base::Contains() to std::ranges::contains() in url
- 59bb05e Migrate base::Contains() to std::ranges::contains() in fuchsia_web
- 1a1e620 Migrate base::Contains() to std::ranges::contains() in storage
- f43ed2e Migrate base::Contains() to std::ranges::contains() in remoting
- a36fae1 Migrate base::Contains() to std::ranges::contains() in google_apis
- f371365 Updater UI: Present policies for events
- d43da54 [iOS] Passkey creation bottom sheet UI strings
- c4d7d4c [tracing] Migrate legacy flow macros in components/input
- e693744 [Private AI] Rename TokenService into PrivateAiService.
- 9206bbd drm: Add flag to assume Default colorspace is Rec709
- 6f06775 Revert "[DCSI] Enable CompoundImageBacking as default."
- f68b806 [iOS][PRDBD] Changes the color of the button in Quick Delete VC
- 0611156 add adelm@ to contextmenu owners
- 4a17af8 Disallow base::Contains() when contains() or find() methods available
- 7987695 [PWA] Refactoring out ManifestUpdateJob from update commands.
- 92d11c2 Use full host for chrome://webui-toolbar.top-chrome
- 37c8bfc Create hardened GL contexts if !webgl
- 5d9b400 Avoid warnings in FindBarViewsUiTest.SelectionDuringFindPolicy
- ba880fd [InputVizard] Don't attempt to transfer in multi-window scenario.
- 11de9c5 Compile ExtensionInstallPolicyService, etc. on desktop Android
- 3994454 [TDR] Remove TODOs linked to issue 40544272.
- 1a997da Spanify zlib's FileWriterDelegate
- d687b39 [permissions] Fix PageSpecificContentSettings for approximate location
- 61f62f2 Reland "[gpu] Remove supported_buffer_formats_for_allocation_and_texturing"
- 58057d0 [TDR] Remove TODOs linked to issue 40544272.
- b0778fc [Windows] Enable use of symbol servers when symbolizing stack traces
- c76b775 Prerender: Remove deprecated FrameTreeNodeId usage in prerender tests
- 986cb6d Revert "[iOS] Make IsReaderModeAvailable() always return the same value"
- befbe46 Use span-based file API in native_messaging_reader.cc
- 8d2312c [iOS] Close other tabs follow up
- 55764e6 [TDR] Remove TODOs linked to issue 40870601
- 61423ae Fix building with safe_browsing_mode=0 (5/14)
- e3f7094 [TDR] Remove TODOs linked to issue 41364310.
- 9715dd0 [InputVizard] Do not request input back multiple times from Viz.
- 2b7034d Disable rust_gtest_interop on macs when asan is enabled
- 168673a [Android] Assert if calling openNewTabFast() from incognito window
- 749c201 [Vertical tabs] Add group header button for opening editor bubble.
- e4cc77b [TDR] Remove TODOs linked to issue 40619931.
- 833110b Autofill: Implement NFKC normalization for autocomplete labels
- 939e6e1 Initialize JXL frame buffer state
- 9494ae2 Delay expiry of Attribution Reporting histograms
- 3d6a808 Make vsavu@ an owner of extended updates files instead of myself
- 214fa52 Consume device parental controls directly in pref store and metrics
- e78286a [background_fetch] Let PERMISSIONS_OWNERS own PermissionContext
- e62b1df SimulateFrame() for RunSnapshotPostLayoutStateSteps
- 4d96956 Extend Media.Audio.Mac.AggregateDeviceCompositionPropertyIsNull
- da7096f [css-lists] Implement presentational hint for the `counter-reset`
- 936dc7c [media] Remove VideoCaptureBufferType::kMailboxHolder
- 9acfb52 [media] Remove VideoFrame::set_color_space DUMP_WILL_BE_CHECK
- 847a2a3 Use span-based file API in single_install_event_log.h
- 841afdd [KP] Automatic update from google3
- 68a615e [CT] Automatic update from google3
- 532aa38 [Signin][Android] Remove FakeAccountInfoService from SigninTestRule
- 59189b7 Fix NPE on Proguarded annotation packages
- e8e44fa [Vertical Tabs] Add grab handle to toolbar
- f8d7e46 [clang] Update for tip-of-tree version bump to 23
- e4f2806 Updating XTBs based on .GRDs from branch main
- 8f0d7e3 Add WeakPtr checks to avoid ScopedCrashKey crash
- 2afcadf Add CapturedSitesAutomatedPasswordChangeBrowserTest
- a1898be WebAuthn: Prefix GPM related model steps with GPM
- 2982cac Change Device Parental Controls interface to subscriber from observer.
- b187c80 [Settings Search] Index FinancialAccountManagementFragment
- 3958145 Update and re-enable layout tests after crrev.com/c/7274476
- 402831b Reenable individual request throttling
- 985ddb3 Revert "[url_fixer] Use string_view instead of const string parameter."
- dcb8454 Add presubmit checking for action hashes collisions
- 0f4118a Move SupportedProfileType to tabmodel package
- 407ef5c Keep pseudo-element style with no properties but with nested styles
- ecbcc9b [CCSG-2] Move early return logic from BAM to psg.cc
- 6459c90 Don't clear server predictions for small forms in actor mode
- c1860bf Fix float-cast-overflow UBSAN issues in media_query_evaluator.cc
- 7957d96 Extract parsing metrics xml logic to action utils
- a191188 Improve negative timestamp DCHECKs in WebRtcVideoTrackSource.
- 692b19c [text-indent] Implement `CSSPropertyEquality`
- 47fd446 Revert "[ClapperQuiet] Adds Clapper Quiet Icon"
- 42cbb89 Revert "Refactor PermissionIconResource to include content description"
- c408d68 Generalize sys path restoration code in metrics presubmit
- f8c9c48 Make CreateActionsFromVariants support multiple tokens
- f443f37 legion: Add Public Keysets for other environments
- d50c947 Revert "[webnn] Implement litert graph."
- 4838bf6 Extend UMA Histogram Autofill.FastCheckout.*
- f26c846 WebAuthn: Rename profile passkey creation step for clarity
- 5e48199 Extend Sync.UnsyncedDataOn* histograms
- 42d9ee5 Make Profile::ToDebugString() const
- cf82102 Field trial config for AutofillEnableNonAffiliatedLoyaltyCardsFilling.
- 2ab0f3c Extend UMA Histogram Autofill.FastCheckout.CapabilitiesFetcher
- 30a9069 [iOS] Update expiration date for SSORecallPromo.AccountsAvailable
- 588e091 Disable flaky PrivacyIndicatorsControllerTest test
- 92abc3a [TDR] Remove TODOs linked to issue 42050417
- 399dbd4 Add finch feature flag to control the added fix for FullScreenHandler
- 8cf7a96 [TDR] Remove TODOs linked to issue 40150290
- ac668e3 Refactor PermissionIconResource to include content description
- 4b82e40 Remove Autofill.ExtractForm(Unowned|Owned).FieldCount2 histograms
- c0f020e [PasskeyUnlockErrorUI] Improve PasskeyUnlockManagerTest
- 8285e10 Revert "[Media Indicator] Swap arm in fieldtrial config"
- be78c68 Add .siso_failed_targets to .gitignore
- 793d6ee [PWA] Use WebAppFilter for OS integration in tests
- 1cb1214 [Cookies] Remove sameParty cookie attributes in DevTools Protocol
- b18b1b5 Adjust single-invalid-mask-layer predicate
- 75f15e2 [Autofill AI - Reauth] Authenticate when editing entities
- 1e162bd [iOS] Update expiration date for Signin.IOSDeviceRestore*
- a0d0ebd Export some SVG hit-testing tests to WPT
- 4bc3d9d Remove unused StringImpl::GetCharacters()
- fce6597 iwa: Update ManifestBuilder to use DisplayOverride
- 32f013b Replace kSync with kSignin in chrome/browser/profiles tests
- 4cd2ce1 [CCSG-2] Move the experiment if condition from BAM into psg.cc
- 1ddc453 Delay expiry of frequently used histograms.
- 3692fc2 [Frameworks roll] Roll to 855559243 piper revision
- 7292788 WTF: Add StringView::Split() and SplitSkippingEmpty()
- 5bbca78 Disable two tests to land a V8 change
- f404124 [Extensions] Remove `serialized_type` field from bookmarks API schema.
- 236d34f [AutofillAi - M4] Filter manage autofill ai suggestions.
- 3eb3ba3 [ClapperQuiet] Adds Clapper Quiet Icon
- 6578170 Add useLockFreeVerification to X509Util
- 02ea556 [DBSC] Implement chrome://unexportable-keys-internals
- f1fda25 Allow invoking password change feature without auth
- 0479ec8 Delay expiry of histograms causing alerts.
- a4fcaef connectivity_tool: Implement GoogleConnectivityRoutine
- 640c552 Clean up the DeviceBoundSessionAccessObserverSharedRemote feature
- 545923e Implement Prewarm user interaction trigger on Android
- 706283d Roll clang llvmorg-22-init-17020-gbd1bd178-2 : llvmorg-22-init-20115-g2a8be8bd-1
- f5842c7 connectivity_tool: Add stub DebugDaemonClient::TestConnectivity
- f2a2aed [wasm] Extend expiration of useful histograms
- 25037e0 Multi-account device metrics: Tie to metrics recording being enabled
- a6d7acc Set resource request mode to kSameOrigin and only use the kOnlyIfCached mode
- 85ed06b Fix reporting error in SystemPdhMetricsProvider
- 6e80c21 WebRTC GPU tests: expect to pass on Win10 Qualcomm.
- 9aba129 Roll Chrome Win64 PGO Profile
- ba11311 legion: Token-Keyed-Service owns Legion Client
- ba939ac Skip unnecessary IPC for synthetic response registration
- f47f03b Prerender: Return PrerenderHostId from WebContentsTester::AddPrerender
- e27361d Roll Chrome Win32 PGO Profile
- 28b09ac Fix/suppress -Wunsafe-buffer-usage for printf-style function calls
- 7980646 Use span-based file API in carrier_lock_manager.cc
- f117570 connectivity_tool: Add GoogleServiceConnectivityRoutine skeleton.
- 6ad39df WebAuthn: Prefix GPM related events in AuthenticatorRequestDialogModel
- 195c2ce Spanify base::File usage in blob_memory_controller.cc
- a231e91 Update expiry of Net.SpdySession.OnSettings.*StreamCount2
- 76ef133 Extend the expiration date of histograms
- 1f70c19 Fix DCHECK crash in SharedStorage worklet reporting
- 3558efd Use span-based base::File API in video_frame_file_writer.cc
- 9692f39 Set default 500ms to readability delay launch value.
- 828735a Export prewarm features and parameters to Android
- 704331a Update WiFi histogram expiry date and owner
- b3afe31 [Editing] Fix styled span merging with siblings during font size changes
- 381f5d2 Fix JP PunctuationStyle misnomers in CrOS IME Settings & IMF.
- addcbeb [bedrock] Use most recent browser in current workspace when opening links (Linux)
- 7e886cc Mark WPT URL test "windows-1251.html?include=loading" as flaky
- 811fd55 Revert "Specifies a null TimeTicks for input_start time when unsure"
- b690ace Remove the "TextareaLineEndingsAsBr" flag
- 3181f98 Replace `std::unordered_set` with `absl::flat_hash_set`.
- 6dc257b Promote #warnings to #error
- 058ff9a Update field trial config for DSEPrewarm
- 2534c34 viz::Display: clamp size to gpu max_texture_size
- 758fd1e Roll WebView ARM64 Orderfile from oyXPKMijpmrZmTxLF... to bR3V1alRBDG9yoiBv...
- 9031c38 fix PeripheralBatteryNotifierListenerTest dangling pointer
- 370e29e Roll DevTools Frontend from 0d943e301f41 to 444ff1784420 (1 revision)
- d1f3d4e fix DragWindowResizerTest dangling pointer
- 8d9fc68 fix ClipboardHistoryResourceManagerTest dangling pointers
- 605a83e fix FullscreenControllerTest dangling pointers
- 091156b fix LoginShelfViewTest dangling pointer
- b9ba040 [Gardener] Mark xslt-transform-with-javascript-disabled-quirk.html as Failure on Win11-arm64
- cc2ef84 Roll Chrome Android ARM64 Orderfile from 6LwzPgg0iiylCljf1... to QGvjjMrOAVZoHnZd0...
- f32bbd3 Decouple TabStripTopControlLayer with top toolbar
- 4874b99 fix LoginExpandedPublicAccountViewTest dangling pointers
- 36b795a fix ShelfButtonPressedMetricTrackerTest dangling pointer
- f500df5 fix LauncherNudgeControllerTest dangling pointer
- 2aa352f fix AutozoomToastControllerTest dangling pointer
- a755491 fix QuickSettingsHeaderTest dangling pointer
- 3e1c810 fix LoginPinViewTest Dangling pointer
- 2be4748 fix SnoopingProtectionControllerTestBase dangling pointer
- 9507a09 fix LoginPinInputViewTest dangling pointer
- 7a7338e fix RefreshRateControllerTest dangling pointer
- 2ba169f fix ClipboardHistoryTest dangling pointer
- ba18132 fix PowerStatusTest dangling pointer
- 10a1972 Roll Chrome Mac Arm PGO Profile
- 23915e1 [fuchsia] Disable ViewFocusObserverTest.TracksFocus on fuchsia arm64 debug build
- 151d4ee Remove the obsolete metrics, Arc.AppLanguageSwitch.*
- 3cf61d6 [omnibox] Improves HTML sanitization for ACMatch classifications
- ad8b6e8 Roll WebView ARM64 Orderfile from iLKZpC9qMWdPhU7_X... to oyXPKMijpmrZmTxLF...
- 6477782 Roll Chrome Win32 PGO Profile
- c986e84 Roll Dawn from 392e4c807c1b to 9da9d6cc30c2 (4 revisions)
- 248930f [iOS] Fix iOS 26 password manager search scrim top anchor
- f44363b Revert "net: Refactor GURLWithNSURL to fix 'about:' scheme percent-encoding"
- 3566b84 Roll WebRTC from b47e68e6966d to f38efe4faa1d (1 revision)
- 2ba2ac3 [styleguide] Allow std::ranges::contains() and friends
- 46fa243 [rust] Cover `rustflags` / `--cfg` in `buildflag_header.gni`.
- 30a004c Remove LCPPFontURLPredictor in field trial config
- cd6de00 Updating trunk VERSION from 7632.0 to 7633.0 and incrementing major version to 146
- 46767f2 Roll vulkan-deps from 6288ed7195ce to f9be7fb16df9 (2 revisions)
- 33d1d26 Roll Chrome Android ARM64 Orderfile from EtIz3j1uHULsPlkYe... to 6LwzPgg0iiylCljf1...
- 70e1fb8 Fix <label> default action when clicked button is removed
- 354902c Roll Catapult from 6a01cf2195fd to 5278e26a9964 (1 revision)
- e95d17d Roll Chrome Android ARM32 Orderfile from pIMj-ttF5L_QTNNcR... to huAConspTidkvBAEj...
- 2089584 Roll Chrome Mac PGO Profile
- 9cbabe5 [spc][bbk] Add BBK test to test exception due to lack of TPM
- b339f8b Integrate site engagement score into site familiarity calculation
- 5dd7406 Roll Chrome Mac Arm PGO Profile
- 336630b Roll Chrome Win64 PGO Profile
- 64a5842 [Reading mode] Add new static window options
- 0fb5416 Roll WebView ARM Orderfile from Zn2fkWRENgaDZLAi3... to _VHtkGksYjiOMNLhq...
- 3143f80 Roll Chromium Variations from aceJzOHX1zh7xTamF... to 6B44K9mqNs5Dw6S-6...
- b690e33 Roll ANGLE from 4c0ae3917d4f to 428d7443a83f (1 revision)
- 0d16746 [Reading mode] Rename line focus window values
- 29f8b3f Optimize Incognito Indicator sizing to avoid redundant layout passes
- 8d7b137 extensions: Add 2 more TabGroupsApiBrowserTests to desktop Android
- 7b80205 Import wpt@b953dd19a65e5cf42efd6c375b60593be7565c22
- c8beafd Roll Chrome Linux PGO Profile
- 8f90bdb FIXUP: Views: Slider: DCHECK failure on drag when SetValue is called before widget is visible
- 7c2fca9 Migrate last base::Contains() to .contains()
- a6096ae Roll ios_internal from ed6dc59005f0 to a9e58a1bdcd4
- eeb5176 Roll PDFium from 3c679253a9e1 to 25a40d539c0e (6 revisions)
- 66324c3 Migrate FakeMojoPasswordManagerDriver to GMock
- 82c66b0 Remove useless using statements
- f022114 Roll Android SDK to 36.1
- 0bbdf29 Roll src-internal from 155b24c29b5f to 6d9eb0fa8482 (1 revision)
- 77fb93c Roll clank/internal/apps from 1ae1c9e874ca to 365d817def34 (1 revision)
- 7560737 [Media Indicator] Swap arm in fieldtrial config
- 3f544c8 [bluetooth] Release WinRT IAgileReference off UI thread to avoid STA jank
- fcc5617 Rename CrashReportStorage, and its remove() method
- 176210e Roll DevTools Frontend from d1b4db0c02fc to 0d943e301f41 (2 revisions)
- 05e8a65 Add test to verify language menu clicks don't close menus.
- 29a2740 Rename CSSOverscrollGestures flag to OverscrollGestures
- 589c0b3 Hide Glic nudge if subsequent page load is not eligible for nudge
- 07c6a5e Roll WebView ARM64 Orderfile from _k5siNzIa0kuTZCg3... to iLKZpC9qMWdPhU7_X...
- beb6bd1 Revert "[contextual-tasks] Add pixel test for smart compose."
- b60331e Roll BoringSSL from a0ca0a172510 to c88440cb71fa (3 revisions)
- 048f5b8 Roll Chrome Android ARM64 Orderfile from m4PfexCJgr2_UoMv4... to EtIz3j1uHULsPlkYe...
- cf5ea45 siso: update to version 1.4.23
- c6d7f91 [BugFix] Crash remedy
- f1e12d2 Suppress assertions in Canary build.
- 52e0715 bluetooth: Add descriptor API coverage to web Bluetooth fuzzer
- 2a27380 Roll Chrome Android Desktop x64 PGO Profile
- be525c5 infra: Enable android-desktop builders on release branches
- afc87ea Roll src/net/third_party/quiche/src/ 35edd098e..022c607b0 (4 commits)
- a5736ca [remoting] Improve handling of Wayland compositor timeouts.
- 86ce769 Switch to role/turboci.nodeReaderExternal
- d295cfe Roll Chrome Android ARM32 PGO Profile
- 2b69df9 [glic] Split daisy chain metrics by source and add New Tab source
- f29f812 [sheriff] Disable failing NewTabPageTest
- c6b0bd1 Roll earl_grey2 from ecd723e95e36 to ee4d5ab4ed5a (1 revision)
- 63bdffc Roll Skia from 714d0af2eda7 to 8f3134206e8d (1 revision)
- b52f64d Roll Chrome Mac Arm PGO Profile
- 58cc5ca Prevent Glic from stealing focus via a feature flag
- a530f1b [Frameworks roll] Roll to 855324328 piper revision
- d487dec [Settings Search] Update dynamic properties of ManageSyncSettings
- af06bf3 [sheriff] Disable flaky BookmarkPaneTest
- e7f8274 [Extensions] Separate add and update host access request
- 3cc01c9 [Mac] Prevent key status for specific TopChrome WebUIs
- f0872e0 Disable flaky test ActorPageToolTimeoutBrowserTest.Timeout on MSAN/ASAN
- c945541 [ntp-simplification] Update testing config to reflect testing LEs
- 6dc1988 [Reading mode] Add possibility for multiple selected items in a menu
- 2bfdffa [Android] Improve assert messages for BasePageBuilder.init_()
- 4ce4f3e [Vertical Tabs] Refactoring TopContainerBackground to use ColorChoice instead of TopChromeArea
- 940b091 Roll Catapult from cfb62296f04e to 6a01cf2195fd (1 revision)
- 0b0a76f Replace `std::unordered_set` with `base::EnumSet`.
- 50c89f9 Use the URL from the Site Isolation model for creating exceptions
- d7cd163 url: Fix UNSAFE_TODOs for fixed-size arrays
- f570b31 Roll WebRTC from 5f2ab20662f3 to b47e68e6966d (8 revisions)
- d7d097b Fix Float-cast-overflow in FETurbulence
- e9a840a Sync feature protos.
- 2b94907 Roll DevTools Frontend from 65afb9b6e8ae to d1b4db0c02fc (3 revisions)
- 8215ebd Wire up JXL decoder.
- 664cb17 [AIM] Adjust button sizes and lots of padding/margin.
- 780cb85 Add a flag to allow empty suggestions returned from SearchSuggestionParser
- 4564985 Roll androidx from WX3ELG4TgH2nEIDT1... to ZxkXYGrKejmBqc_WB...
- 1f51160 [Vertical Tabs] Refactor TopContainerBackground to take care of the frame state
- 740de60 [Settings Search] Remove TextMessagePreference from index by default
- 988460a Use base::DoNothingWithBoundArgs in chrome/browser
- cd8bf47 Reset tab detaching state when RM is reactivated after a tab detach
- 4cce057 Roll optimization-guide from 7932ce5eec91 to 8d07ad4a2278
- 20c0079 Extend Vertical Tabs state histogram
- e572b54 extensions: Port chrome.tabGroups.move() to desktop Android, part 3
- fb6ec9f Roll vulkan-deps from a359fd23fd78 to 6288ed7195ce (1 revision)
- f7a15c0 [fuchsia][webengine] Enable PushMessagingApi by default
- a89effd Add an example of a draggable menu to the menu example.
- 08c1669 Roll BoringSSL from f075344a3acb to a0ca0a172510 (2 revisions)
- 78654ab Roll Chrome Android ARM64 Orderfile from q30s6RLzZb5QcKv0c... to m4PfexCJgr2_UoMv4...
- 7de5721 Reland "[spc][config] Add Field Trial Testing Config for SPC UX Refresh"
- 60660ad [MVT Customization] Fix In-Product Help frequency.
- 462a70b fix: the typos for navigation_handle_proxy_
- 0c2acb5 Roll compiler-rt from 2a9f44874fa9 to c3c996fabde1 (1 revision)
- d70aa75 Roll ANGLE from d1d446b99526 to 4c0ae3917d4f (4 revisions)
- 12471d6 Built-In AI APIs: Enable eager config downloads by default
- 7cd91c0 Remove overscroll css properties.
- fcfac78 [Task List Bubble] Notify web client when a row is clicked