Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2025-12-23 on branch 'main'

Chromium Digest: 2025-12-23

Overview

This summary covers 355 commits on the main branch from 2025-12-23, with 232 commits identified as particularly relevant to developers. The changes span from the first commit (1fc3fae) to the last (beeab12).

Core & Internals

  • ⚠️ BREAKING BREAKING: The utility function base::to_underlying and its header base/types/cxx23_to_underlying.h have been removed. Developers must migrate to std::to_underlying from the <utility> header. (271bd17)
  • The ChildProcessSecurityPolicy was updated to correctly query process state even after a RenderProcessHost is gone. This fixes race conditions and incorrect denials on the IO thread. (5beb143) (a6ddaec) (44a3fd1) (be545d7)
  • Renderer hang detection is improved with a new PingMainThread IPC probe to more accurately assess main thread responsiveness. (e74ee98)
  • In the GLES2 command decoder, a fix now handles calls to glGetIntegerv with a parameter size of zero to prevent a crash. (fded4cd)

Identity & Sign-in

  • ⚠️ BREAKING BREAKING: Several public members of AccountInfo are now private. Direct access to is_child_account, picture_url, and last_downloaded_image_url_with_size must be replaced with calls to IsChildAccount(), GetAvatarUrl(), and GetLastDownloadedAvatarUrlWithSize() respectively. (d2acdce) (454a9ad)
  • ⚠️ BREAKING BREAKING: The public header components/signin/public/identity_manager/scope_set.h has been removed. Embedders including this file will fail to compile. (66263c5)

UI & UX

  • ⚠️ BREAKING BREAKING: The public method BrowserList::empty() has been removed. Callers must be updated to use GlobalBrowserCollection::GetInstance()->IsEmpty(). (cef649e)
  • The tab search toolbar button is now enabled by default. (2b20533)
  • Support has been added for dragging tabs to and from the vertical tab strip. (96affd4)
  • On the New Tab Page, a toast notification with an "Undo" option now informs users when stale modules are automatically removed. (3b97b72)
  • Initial UI for a new immersive settings menu has been added to Reading Mode. (e7d19f4)

Extensions

  • ⚠️ BREAKING BREAKING: The extensions UI platform delegate has been renamed. ExtensionActionPlatformDelegate is now ExtensionActionDelegate, and ExtensionActionPlatformDelegateViews is now ExtensionActionDelegateDesktop. (7ae66c4) (c673ccb)
  • On desktop Android, support was added for tabId in windows.create() and for the chrome.tabGroups.get() API, expanding extension capabilities. (a8f32e1) (a5e3a17)
  • Documentation for runtime.onMessage and other APIs was updated to reflect that listeners can return a Promise for asynchronous responses, aligning with modern JavaScript practices. (5309887) (0d1975a)

Networking & Security

  • ⚠️ BREAKING BREAKING: The BinaryUploadService has been relocated to enterprise_connectors. The factory method CloudBinaryUploadServiceFactory::GetForProfile now returns a pointer to the new type, requiring updates for all callers. (7e684bc)
  • ⚠️ BREAKING BREAKING: QuicHttpStream now includes a CHECK to validate that the session's certificate matches the request URL's host. This enforces a new correctness rule and may cause crashes in builds with CHECK enabled if a QUIC session is used for a host it is not certified for. (e3d10c8)
  • For WebNN, a new switch --webnn-ort-ignore-ihv-eps has been added to ignore third-party execution providers. Support was also added to write large model weights to temporary files to avoid out-of-memory errors. (8c5017b) (529fe0c)

Android

  • The UrlConstants Java class has been updated to deprecate direct access to static URL strings (e.g., NTP_URL). Developers are encouraged to use the new UrlConstantResolver to handle potential URL overrides. (dcd2525) (7c96719)
  • Content filter observers for supervised users were encapsulated into a new AndroidParentalControls class, decoupling them from the user profile. (d8a30eb)
  • The InputTransferHandler was improved to better handle cases where a touch cancel event might not arrive, preventing the unintentional dropping of subsequent touch sequences. (91e0746)
  • A fix was landed to correctly manage "offset tags" for the browser's top controls, preventing a potential crash when the tab strip is hidden or not scrollable. (16904ec)

iOS

  • A large number of files related to Content Suggestions and Promos were moved and reorganized into a more modern coordinator/, ui/, model/ structure. (68b7302) (fa693b1) (3d7e058)
  • Obsolete code paths and compile-time guards related to the iOS 16 minimum version bump have been removed. (1c6b998) (5d1c37c)
  • A crash related to the Synced Set Up flow being triggered in Incognito mode has been fixed. (0082326)
  • A fix was implemented to allow reloading of offline pages, which have a chrome:// URL but a https:// virtual URL. (c3b867a)

ChromeOS

  • A large-scale refactoring of the Input Method Editor (IME) settings moved hardcoded preference keys and values into centralized, shared constant files to improve maintainability. (a06e5de) (6eedf6b) (2d5687f) (f426869)

Code Health & Refactoring

  • Expired feature flags kEnableArcIdleManager and back-forward-transitions-cross-doc-shared-image were removed from the codebase. (c5418bc) (a321318)
  • Internal components for managing the Third-Party Cookie Deprecation experiment, including ExperimentManager and EligibilityService, were removed. (db3f2ba) (6a3c751)
  • The jxl (JPEG XL) Rust crate dependency was updated from version 0.2.1 to 0.2.2. (18c54ad)
All Commits (355)
  • beeab12 Revert "[contextual_tasks] Move contextual tasks logic out of omnibox"
  • 5e36c8f [glic-tab-context-menu] Add bypass_enablement_checks_for_testing to GlicEnabling::IsProfileEligible.
  • 18c54ad Roll jxl: 0.2.1 => 0.2.2 in //third_party/rust.
  • 19f53fb [contextual_tasks] Move contextual tasks logic out of omnibox
  • 256f324 [Android] Convert waitForDialogViewCheckingState() to waitForView()
  • 0d1975a [Extensions] Use Promise based language in JSON schemas.
  • 5a343d2 Roll android_deps from 6rftEQmt3FPykKABz... to WJa0CXY9wb6EyhoYM...
  • eafaf7c Check that the composeboxShowRecentTabChip Exists Before Getting The Value
  • 786d19a Roll androidx from 6aUs4YiLnp3RZJClZ... to OE06k1NtXjansVnJA...
  • aa53fc4 [lens_server_proto] Update aim_communication.proto
  • a8f32e1 [Desktop Android] Add support for tabId in windows.create()
  • c4b8f95 [contextual_tasks] Replacement of ContextualTaskContextController calls
  • 4184c85 [contextual_tasks] Do not send context library capability unless enabled
  • 3b97b72 [ntp-simplification] UI changes to add toast on stale module removal
  • f24e6c9 Gate actuation access by AI subscription tier
  • 873358d [PWA] Add name localization fields for install info during parsing
  • d8a30eb Encapsulate content filter observers in a container.
  • 5901ce9 extensions: Add gpu_browsertest.cc to desktop Android
  • 6a5e696 Roll WebView ARM64 Orderfile from 4ZRvFjpUFw8f9Ksm6... to 69poCwO0qByRTKKIH...
  • a5e3a17 extensions: Support chrome.tabGroups.get() on desktop Android
  • bfe1488 Roll WebRTC from a3ec6a8e6f07 to ca640fbffdb1 (2 revisions)
  • c71dddf [rustmojo] Add arm & trigger functionality to safe Traps.
  • 69c8b3d [Omnibox] Hide variant 1/2 of add context affordance.
  • e6537f9 Roll Chrome Mac Arm PGO Profile
  • 4d931f5 Roll ios_internal from c5154c82f568 to a708bd202257
  • 84f4c1c Replace kSync with kSignin in chrome/browser/safe_browsing
  • 2bf6ef0 Roll ANGLE from e1b74418e7ca to 990e44900219 (1 revision)
  • c5d46f5 Roll Skia from 4303fabcca0e to 85cbd3e42a2c (1 revision)
  • e9d9df8 [BrowserControls] Fix offset tag crash on tab strip
  • 7e0d7c8 Roll Chrome Win32 PGO Profile
  • eed64b6 [iOS] Clean up Default Browser Banner promo flag
  • 47e91da [composebox] Close omnibox on lens side panel open.
  • d729bd2 Roll clank/internal/apps from e01f28e09b42 to afa84d16c184 (1 revision)
  • ac9639f [ntp-simplification] Rename shortcuts auto removal test class
  • f259a15 Add TabListInterface::CreateTabGroup() for Android
  • d8b8a69 [Extensions] Extend expiration for corrupt extension disabled metric.
  • 5404a7f Mark external/wpt/notifications/registration-association.https.window.html as flaky on Mac
  • 271bd17 Delete unused base/types/cxx23_to_underlying.h
  • ce63a0f Creating Extensible IsHitInView Function
  • 101a5dd Roll Chrome Win ARM64 PGO Profile
  • 1473840 Revert "[Extensions][IME]: Align keyData.key values with DOM spec."
  • 1982fc5 Roll Catapult from 935fc19b595a to 530794d005fb (1 revision)
  • 17a2cd8 Roll Chrome Android ARM64 Orderfile from kZ8hulovJLo89EqAm... to RHK7vj_Hj7AM-RorH...
  • 17be78e [AIAE][UKM] Add extraction overall latency metric.
  • a76910a Roll llvm-libc from aafc91c0bac6 to 87edf87aa2cb (2 revisions)
  • ecd258a Roll clank/internal/apps from ee668abd12fe to e01f28e09b42 (1 revision)
  • e22bdcf Add aggressive hibernation mode to Glic
  • 05109a5 Roll Skia from a0f18947bc1b to 4303fabcca0e (2 revisions)
  • d923394 Import wpt@1f390164f63a3c09f54aebd3f775ac5458072d2f
  • b1d1f23 [actor] enable GlicMultiInstance in ActorFunctionalBrowserTest
  • 9424e94 [Frameworks roll] Roll to 848253961 piper revision
  • a603bc1 Roll Chrome Mac PGO Profile
  • 2d00bdc Fix unsafe buffer usage in services/tracing
  • c5418bc Code health: Remove feature flag kEnableArcIdleManager
  • be545d7 Make LogKilledProcessOriginLock work while Handles exist.
  • 0c90901 Roll clank/internal/apps from 11effa001037 to ee668abd12fe (1 revision)
  • 5af7951 Roll WebView ARM Orderfile from 9NzCXSirTMsxsy2dc... to 3NU-8enqqRJp3H9KC...
  • 3b4cfad [iOS] Updated outdated TODO
  • fa693b1 [iOS] Move fullscreen promo out of i/c/b/authentication/ui_bundled
  • b487fe4 Fix attaching to worklet twice
  • 5beb143 Make ChildProcessSecurityPolicy::GetProcessLock work while Handles exist.
  • a3c557b [ContextualTasks] Plumb interaction response to Lens
  • 8e2fb48 Add local state to web app browser controller for WCO toggle.
  • b983ae2 Roll vulkan-deps from e718e928e54e to 551d7912243a (2 revisions)
  • a6ddaec Make ChildProcessSecurityPolicy::CanRequestURL work while Handles exist.
  • b597fc7 Roll Chrome Mac Arm PGO Profile
  • 0082326 [iOS][SyncedSetUp] Prevent Triggering in Incognito Mode
  • 3e82be3 Dark mode support for chrome://device-log
  • 417ea30 Revert "Remove TabGroupModelFilterProvider"
  • cbc2156 glic: Disable password redaction
  • f7bbb10 [Gardener] Disable Failing testIncognitoTabsNotRestoredAfterSwipe
  • 5a5deec [InputVizard] Update emission of kAndroidOSTransferredANewSequence
  • 7ebaa63 Roll ios_internal from e5c5cd1fca6e to c5154c82f568
  • e6a80a5 Roll Chrome Linux PGO Profile
  • fded4cd Handle param_size == 0
  • c7e17a5 [Android] Make MvtTilesContextMenuFacility scrollable
  • affc8ec [SLAMS] Populate model_type in IntelligentScanInfo.
  • fddd797 Mark wpt/notifications/registration-association.https.window.html as flaky
  • 0194497 [SLAMS] Add IntelligentScanModelType and LlamaForcedTriggerCapability to Safe Browsing protos.
  • d5462cf Roll Skia from bdb147ae3040 to a0f18947bc1b (2 revisions)
  • 9071ddb [Vertical Tabs] Check VerticalTabStripStateController Before Use
  • 4b83d44 Roll ANGLE from e66ba25def14 to e1b74418e7ca (1 revision)
  • 3439c74 Roll Catapult from a4432a77891c to 935fc19b595a (1 revision)
  • 5e9a827 Roll Chrome Win64 PGO Profile
  • 30efc72 [ContextualTasks] Make Lens flows all ContextualTasks criteria
  • 2815e4e [Vertical Tabs] Fixing Collapsed Buttons logic for TopContainer
  • ad9d38f Fix chrome://device-log missing the "Memory" log type.
  • 65c291f [iOS] Add Unknown View State for Gemini View Enum
  • 81f348f Roll Chrome Android Desktop x64 PGO Profile
  • a43a5e5 Actor: Add browser/actor/OWNERS as owners in glic/actor
  • 91e0746 [InputVizard] Handle missing cancel in InputTransferHandler.
  • 2b66c67 Roll Chrome Android ARM32 PGO Profile
  • 804ffd7 Revert "CCA: OneDrive Sign-in notification for camera"
  • 03008fd [AIAE] Add finch flag for AI-based amount extraction testing purposes
  • bcd5583 Fix histogram suffix name for SCAM_EXPERIMENT_CATCH_ALL_ENFORCEMENT
  • 5309887 [Extensions] Add Promise type to possible return for runtime.onMessage
  • 8ab2903 fix UNSAFE_TODO in FileEnumerator
  • f001823 Remove TabGroupModelFilterProvider
  • a83ce18 Migrate usages of base::to_underlying in //fuchsia_web
  • 44a3fd1 Make CPSP's Midi permission queries work while Handles still exist.
  • 68b7302 [iOS] Refactor Content Suggestions
  • 71aef1e Add TabListInterface::CreateTabGroup() for non-Android platforms
  • 9f55d37 [Actor Overlay] Add glow for magic cursor
  • a4e91e2 Fix using unexportable key service after moving it
  • 49e3510 [rust] Prepend version line to `bindgen`-generated files.
  • ccaa7d9 Roll Chrome Mac Arm PGO Profile
  • 70924d7 Remove unused StopTask code in AUSM, TaskIcon
  • 653a0af [WAConsent] Mark web actuation toggle strings for translation in M145
  • 9deb6be Add tests for chrome://device-log
  • aa5bdd5 Roll ios_internal from 3e390c0cf373 to e5c5cd1fca6e
  • 3d7e058 [iOS] Move non-modal promo files out of i/c/b/authentication/ui_bundled
  • 9a3ebde [glic-tab-context-menu] Implement 'Create new chat' option in GlicTabSubMenuModel.
  • 0b6f3b8 Un-expire SafeBrowsing.Android.RealTimeAllowlist.InstallerLoadFromDiskPbFileEmpty
  • a77ec06 Make CPSP's GetSecurityStateForQuery and its dependencies const.
  • a10b11a Correctly sanitize make_dfsa.py arguments
  • ff9aa4c [composebox] Use submitted tokens for IsTabInContext.
  • 7b5ab2d Automated Commit: LKGM 16532.0.0-1074034 for chromeos.
  • c8284e0 [iOS] Deprecate SKStoreReviewController from browser_coordinator
  • 1ed003c [omnibox-next] Fix contextual chip visual.
  • 51058ec [Task Indicator] Show task indicator when a task is active
  • a321318 Remove expired flag back-forward-transitions-cross-doc-shared-image
  • f2b7309 Roll Chromium Variations from 1PXCfP2PBTE2GhPAQ... to 3MoJe2XpwVC1lxlFq...
  • 2193a2e CCA: OneDrive Sign-in notification for camera
  • 70f9a2a [IOS][AIM] Add invocation source to the search url request info
  • 1848868 CCA: Basic Google Drive Upload
  • db3f2ba Remove ExperimentManager
  • 97fe92d [iOS] Adds Provider Function For Updating Gemini View State
  • 4de1297 [Desktop Android] Enable more (sub)tests in ExtensionApiTabTest.Tabs2
  • 8c618d3 CCA: Basic OneDrive Upload
  • 3184145 [Desktop Android] Add support for active/selected in tabs.update()
  • 62f8b1e [rust bmp] Configure rust bmp targets in skia
  • 0f99a50 [context-input] Make tab suggestion chips use GetTabsToUpdate in cobrowsing
  • a2570d5 [PWA] Add dibyapal@ as a metric reviewer for PWA related directories
  • ea565cf [Extensions] Remove storage of ToolbarActionsModel in menu entry view
  • bb54102 [Extensions] Add ExtensionsMenuEntryView for menu under feature
  • 1729189 Add flag to disable tab underline animations
  • 6f43acc [Gardening] Disable testStripDialog_TabListEditorCloseAll_CustomHomepage
  • 79c2620 [omnibox] Remove context menu description for Inline Variant Omnibox.
  • 1b9a42c Adds moveTabGroupToOtherWindow unit tests
  • 6537b3c Actor: Retry failed observations
  • 0327151 histograms.xml: Cleanup and extend expiry for storage metrics
  • 6490679 Actor: Refactor crash reloading and observation
  • 112c464 [iOS] Fixed testPasswordLeakCheckToggle EGTest flakiness
  • d5387b8 media/gpu/v4l2: Follow v4l2 stateless spec at initialization
  • 16904ec Reland "[BrowserControls] Apply the offset tags info when tab strip are hidden"
  • 4fc6d33 [Actor Overlay] Queue overlay background updates until handler is ready
  • 1f11fc4 [Actor Overlay] Initialize cursor location before first movement
  • e11a1e7 [GlicMI] Remove `GlicTabSubMenuModel` from non-glic builds
  • a348ae8 [iOS] Remove unused first_run/ui_bundled files
  • 1c6b998 [iOS] iOS 16 deprecation code cleanup
  • f0a8a64 [ActorUi] Add completed task expiry timer
  • b5cd38d Rename a couple of Gap Decorations tests for consistency
  • 0fa7d8c Roll Chrome Win32 PGO Profile
  • 49de6a6 Roll WebView ARM64 Orderfile from zQWr1bu8rBh9r67_9... to 4ZRvFjpUFw8f9Ksm6...
  • d58cd74 Roll Chrome Android ARM64 Orderfile from 3L4db4IWQgebG_3vD... to kZ8hulovJLo89EqAm...
  • 7c49a7a [DCSI] Refactor CompoundImageBacking::Update().
  • a01b778 [iOS] Add Enum For Gemini View State API
  • 11510dc Notify Java CrossDevicePrefTracker of changes
  • c3b867a Fix reloading offline page
  • eae506c Roll Chrome Mac Arm PGO Profile
  • 49f1380 Roll libc++ from 7048ba4f2970 to e00073aa58a4 (9 revisions)
  • 5d1c37c [iOS] iOS 16 deprecation code cleanup
  • fe1c737 [iOS] Fix kCornerRadius initialization and clean unused import
  • 218a332 [Msg Refactor] Squash MessageCardProviderMediator + Coordinator
  • d1423fc Extend expiry for Cookie.CrossSiteRedirectDowngradeChangesInclusion2
  • 1c6c70e Roll src-internal from 2d074c928ad7 to 23e4a1c75109 (1 revision)
  • 3463a11 [Desktop Android] Focus the first tab in a newly-created window
  • a52b91e Remove Win7 comment, since Win7 is no longer supported
  • a5d69ad Roll WebView ARM64 Orderfile from RXcM8Un9xI3WInsHv... to zQWr1bu8rBh9r67_9...
  • e7d04ee [Signin][Android] Ensure that AccountInfo is non-empty in GetPrimaryAccountInfo
  • cec7ff1 Roll Chrome Android ARM64 Orderfile from SeVkfzROgx13JWhWb... to 3L4db4IWQgebG_3vD...
  • fedc09e [Extensions] Remove GetAssociatedWebContents check in AddNewContents()
  • bb2815e Add ActionForSettingsContext to bwg_api & providers
  • 461ef01 [iOS] Disable testPullToRefreshIPHShouldDisappearOnEnteringTabGrid
  • dcd2525 [Url Override] Deprecate use of static url constant variables
  • c0b19f4 [iOS] Focus the omnibox to check the content of it
  • 7c96719 [Url Override] Use Resolver for pre-native NTP GURL access
  • eb1ead0 [Windows] Fix ProgID registration for .pdf files
  • 43f8260 [iOS] Removing unneeded forward declaration
  • f6221d4 Updating trunk VERSION from 7595.0 to 7596.0
  • 242c2a1 [Gardener] Disable flaky test on Fuchsia
  • 8454964 Simplify storage_test_util JS expression
  • 0ee6ff4 [Extensions] Remove usage of GetVisibleWebContents() in TabHelper
  • cf5be4a HttpEngineNativeProvider: always report PROXY_OPTIONS as supported
  • a416dff [perf] Preparing running JetStream 3
  • cb503c9 Roll androidx from 5ncvbgUJTZKS1vHDc... to 6aUs4YiLnp3RZJClZ...
  • c38a9bf Roll Help App from oYUiTZbCoDS3o_iDW... to qz6uMmJyWnbh3LYuq...
  • a40d4c2 Introduce feature flag for M145 loyalty card target state.
  • 2dcd50e Roll Media App from 5CrAvU-8oLYZGOa2d... to QzApTM7sgnI5ojED3...
  • a2a54c9 Fix unsafe buffer usage in services/audio/input_sync_writer.cc
  • 18cc2f9 Annotate intentionally unused result for std::variant nodiscard in absl_hardening_test.cc
  • 0566a9b Clean up AreThirdPartyCookiesBlockedByCookieDeprecationExperiment
  • 40892f3 Roll WebView ARM64 Orderfile from OcIjUD-qJeIbcchmW... to RXcM8Un9xI3WInsHv...
  • 3a09cd3 Extend Enterprise.Dlp.*Warn* histograms
  • b98cfc5 Roll Chrome Mac PGO Profile
  • 21d0ac4 Make Scrim Theme Adaptive
  • 6a3c751 Reland "Remove EligibilityService"
  • 935598c [iOS][Assistant][3/N] Add Feature Modes
  • 4b6c0d5 Roll Perfetto from 6b6538870a15 to 7285d71a98f2 (1 revision)
  • 03deff3 Roll Chrome Android ARM64 Orderfile from cwk_XtKzogXue6cjY... to SeVkfzROgx13JWhWb...
  • e74ee98 Refine renderer hang detection with HangMonitorTimerState
  • 422b478 Roll Chrome Mac Arm PGO Profile
  • be976e3 [iOS][Assistant][2/N] Implement Assistant Sheet UI
  • fe582fe [ContextualTasks] Change the definition of "signed in" for contextual tasks
  • 8ac13d3 [Growth] Adapt fieldtrial config name for ProfileExperimentsM1UsabilityHypothesis.
  • 693de13 Extend histograms
  • 6c91049 Roll Chrome Linux PGO Profile
  • f9366d5 Roll WebView ARM64 Orderfile from uPgWbNkdYeJWhxm8g... to OcIjUD-qJeIbcchmW...
  • 81430a1 [Tests] Re-enable flaky PeoplePageSyncControl tests
  • 8769a03 Automated Commit: LKGM 16531.0.0-1074028 for chromeos.
  • d2acdce [signin] Refactor AccountInfo::is_child_account to be private
  • 454a9ad [signin] Make AccountInfo::picture_url private
  • 3805e1b Roll WebView ARM Orderfile from Gtx_5-Z7hIz9H_TNZ... to 9NzCXSirTMsxsy2dc...
  • f317c8b [KP] Automatic update from google3
  • c90be9d [iOS][AIM] Fix regular composebox not dismissed on new incognito search
  • 2b20533 Enable the tab search toolbar button on top of tree
  • 78e8bfc [CT] Automatic update from google3
  • df94829 Updating XTBs based on .GRDs from branch main
  • f4ed18f [AutofillAi - M4] Update message UI icons.
  • 861c6d2 [AutofillAi - M4] Save/update in Google Wallet message strings.
  • fc9b947 Add M3 feature flag and refactor M2 checks
  • 6e3c06f [iOS Blink] Apply the changes to RenderWidgetHostViewIOS::CopyFromSurface
  • 462fb20 Roll ios_internal from 41ccb5c1af85 to 3e390c0cf373
  • cb343e5 Roll Chrome Mac Arm PGO Profile
  • 0dc1e22 Roll Chrome Android ARM64 Orderfile from TUsvN1s2H3eRkxvx1... to cwk_XtKzogXue6cjY...
  • 4af06b6 Roll Chrome Android Desktop x64 PGO Profile
  • f17b067 Roll WebView ARM64 Orderfile from CJpz6moXG1nAOu7tH... to uPgWbNkdYeJWhxm8g...
  • 86320ec Roll Chrome Android ARM32 PGO Profile
  • 8154076 Roll Chrome Win32 PGO Profile
  • a7a2052 legion: Add hardcoded server verification key
  • 417a377 legion: Introduce AttestationEvidence data structures
  • 8615715 [Autofill AI - Reauth] Reauth on filling
  • 66263c5 Remove identity_manager/scope_set.h
  • cc5619c Roll Chrome Win64 PGO Profile
  • 75a0653 Roll Chrome Android ARM64 Orderfile from d1sOuWByZWx-qmk5x... to TUsvN1s2H3eRkxvx1...
  • 5ca24df [testing/variations] Enable RestrictMainThreadBigCoreAffinity on bots
  • 642d20e Roll Projector App from tLV7s0mU6Y4QKVl3F... to JyY2gXuhDc8XaNPeP...
  • 815f43e [webshare] Fix building with safe_browsing_mode=0
  • 06c663b Roll Chrome Android ARM64 Orderfile from YLETfJbmaG5Zpe-xd... to d1sOuWByZWx-qmk5x...
  • ecc8bc1 Roll WebView ARM64 Orderfile from orWIUXwzBFB1p_8hU... to CJpz6moXG1nAOu7tH...
  • be47827 Roll ios_internal from 1b6436eba53f to 41ccb5c1af85
  • fcc93f7 Roll Chrome Mac Arm PGO Profile
  • 6bcef8b Update browsing egtest to use `waitForWebStateVisibleURL`
  • 7e684bc Move BinaryUploadService to components directory and enterprise_connectors namespace (5)
  • 0f57e34 Delay expiry of frequently used histograms.
  • 4442d78 Roll ANGLE from 5210023f02a0 to e66ba25def14 (1 revision)
  • 372ab92 Fix building with safe_browsing_mode=0 (9/14)
  • f34f5bc [Frameworks roll] Roll to 848046598 piper revision
  • 017a5d9 Roll Chrome Mac PGO Profile
  • 08c7e65 Roll Chrome Android ARM32 Orderfile from JBqbTQHt3C_1Z0nue... to 2QrYjpngazneD0Y1R...
  • 7cfb0cd Roll Perfetto from 9a3d1520c232 to 6b6538870a15 (1 revision)
  • 018b56c Roll WebView ARM64 Orderfile from siN157w3A12Insifq... to orWIUXwzBFB1p_8hU...
  • aae453d Roll androidx from EeT8duf0mcJrWAsTa... to 5ncvbgUJTZKS1vHDc...
  • a91cdf6 Disable tast.secagentd.NetworkEvents on ThinLTO builders
  • eb78288 Roll Chrome Android ARM64 Orderfile from 3HNawKxiGPQTAm6LW... to YLETfJbmaG5Zpe-xd...
  • af226cd Roll Chrome Mac Arm PGO Profile
  • cef649e [bedrock] Remove unused BrowserList::empty() method
  • 6be757a Roll Skia from db7ec9a14905 to bdb147ae3040 (2 revisions)
  • bf3896a Add UKM metrics for user interaction to navigation duration
  • b972655 [iOS][Composebox] Adjust content inset for bottom position
  • a06e5de Use symbolic consts for CrOS-Prefs keys & values in IME Settings.
  • 8835cc9 Roll Chrome Win64 PGO Profile
  • b4f5854 Roll Chrome Linux PGO Profile
  • ffde21f Refactor DNRManifestTest to use ErrorUtils::FormatErrorMessageUTF16
  • c6a5feb [Signin][Android] Move NTP Sign-in promo suppressing logic to the delegate
  • a6f4c01 Add URL for WebGPU renderdoc capture instructions
  • 700b38d Roll Chrome Win32 PGO Profile
  • cfdce10 Roll jxl: 0.2.0 => 0.2.1 in //third_party/rust.
  • 1015926 Roll Chrome Android ARM32 PGO Profile
  • 48be13a Automated Commit: LKGM 16531.0.0-1074022 for chromeos.
  • 6eedf6b Extract CrOS-Prefs consts from input_method_utils to ..._prefs_consts.
  • 7836137 [Cleanup] AndroidAnimatedProgressBarInViz
  • 47cd244 Roll Chrome Android Desktop x64 PGO Profile
  • 2d5687f Distinguish CrOS-Prefs-backed vs UI-only OptionTypes in IME Settings.
  • bd07055 Roll Updater chromium_win_x86_64 from 2@1556011 to 2@1557028
  • be74556 Roll Updater chromium_win_arm64 from 2@1556019 to 2@1557001
  • 73ab3a1 Roll Updater chromium_win_x86 from 2@1556018 to 2@1557021
  • 21d1881 Roll Updater chromium_mac_amd64 from 2@1556008 to 2@1557004
  • d215761 Roll Skia from 0b1ba3920f1c to db7ec9a14905 (1 revision)
  • 8b3a341 Roll Chrome Mac Arm PGO Profile
  • aa3acde [Gardening] mediastreamaudiosourcenode test timeout on msan bot
  • f426869 Rename input_method_types -> ..._prefs_consts in CrOS IME Settings.
  • e3c932a Roll Updater chromium_mac_arm64 from 2@1556013 to 2@1557021
  • 2db9f91 Roll Enterprise Companion chromium_linux64 from BlVamxaNEb8bzB26s... to oPJRLZUVHI2Kcekpz...
  • 1cff8eb Roll Enterprise Companion chromium_win_x86_64 from NWftowioOFFcWCZLZ... to BbxIk-33MsY-NtBpD...
  • e3d10c8 Add CHECK that triggers if a QUIC session is being used incorrectly.
  • a1d56af Roll Enterprise Companion chromium_win_x86 from pgrjU1KCZBaGtCNb0... to 6IjyTtEKqdvilAJvC...
  • 0c9bcf6 Roll Enterprise Companion chromium_mac_amd64 from XThNtV4eQWY2EHF0T... to qz2k590ZjxC8xNq0M...
  • 3167e14 Roll Updater chromium_linux64 from 2@1556006 to 2@1557009
  • 0056de3 Roll Enterprise Companion chromium_mac_arm64 from PhzwhaYbKd8k3gAmz... to A3TKj6uBvy-fUKZqa...
  • 02ab912 Revert "Enable DistillationPopulatesContent test."
  • e22e7f2 Roll Chromium Variations from hS5RKdBvY_sely8L2... to 1PXCfP2PBTE2GhPAQ...
  • 0c65b6c [ContextualTasks] Update icon based on side panel location
  • ea3a795 Roll Chrome Mac Arm PGO Profile
  • ae3049f Roll Skia from a3e4f7b9d5f3 to 0b1ba3920f1c (1 revision)
  • 2468c3a Extract consts from input_method_settings.cc into separate .h file.
  • e7d19f4 Reading Mode: Add UI for the Immersive Settings Menu
  • e6a5968 actions revamp: Add ExtensionActionDelegateAndroid
  • ec94e05 Views: Fix SublevelManager reordering stability by iterating over copy
  • a8a81df Reland "cdm: Add UKM metrics for decoder check1 results"
  • 684af0e Updating trunk VERSION from 7594.0 to 7595.0
  • f4dce75 Roll WebView ARM64 Orderfile from Cg2GZ-ph9j-J3tGlq... to siN157w3A12Insifq...
  • 2e85632 Add field trial testing config for ContextualTasks and ContextualTasksContext
  • 9f351c2 Fix misnomers in Japanese IME PunctuationStyle metric enum.
  • 3e59238 Roll Chrome Win32 PGO Profile
  • 5465b08 [Extensions] Add evasu@ to //extensions/UI_OWNERS
  • 4cef4c1 Roll compiler-rt from 83b066d39015 to c3539aa5cbb0 (1 revision)
  • 1f25991 [omnibox][next] Explicitly focus destination web contents on navigation.
  • f5338e5 actions revamp: Reference pinned actions via ETVM
  • 91fc42d Roll Chrome Android ARM64 Orderfile from l3ImvVB3N0uVGFrc2... to 3HNawKxiGPQTAm6LW...
  • 7370fd9 Roll Chrome Mac PGO Profile
  • d46837b Add TODO comments re: shared CrOS-Prefs between CrOS 1P Japanese IMEs.
  • 2cb51a3 [CADisplayLink] Update the comments about DisplayLinkMacMojo
  • 7ae66c4 actions revamp: Rename EAPlatformDelegate to EADelegate
  • c673ccb actions revamp: Rename EAPlatformDelegateViews to EADelegateDesktop
  • 1b7fac3 actions revamp: Store EAVMs in a std::map
  • 0261ff6 Roll WebView ARM64 Orderfile from XVvDpf3EXnvXDd5oV... to Cg2GZ-ph9j-J3tGlq...
  • df7e57f Roll vulkan-deps from 4baea9acfd6f to e718e928e54e (1 revision)
  • 9c71656 Roll Chrome Mac Arm PGO Profile
  • 56e9fec Roll Chrome Win64 PGO Profile
  • 8408f3a [AIM] Supply Fusebox Extras Externally
  • 34902b6 [Cleanup] Format composebox
  • 6348b21 Roll Chrome Android ARM64 Orderfile from W4tBI1prPa77AywEf... to l3ImvVB3N0uVGFrc2...
  • 885f935 [Omnibox Next] clicking "details" link navigates correctly
  • 4014b66 Use std::stringview for all string consts in input_method_settings.cc.
  • d6290cf [Reading Mode] Implement new ShowAtConfigPrefs type
  • 529fe0c webnn: Write all weights to a temporary file in WebNN Service process
  • 8783394 Roll ChromeOS Arm AFDO profile from 145-7559.17-1765768618-benchmark-145.0.7590.0_pre1561556-r1 to 145-7581.0-1766373563-benchmark-145.0.7593.0_pre1561717-r1
  • e500bb8 [views-ax] Implement initial selective event serialization for Views
  • 379b2ca Reland "blink: Update scrollbar existence after pinch-zoom"
  • 533c146 Roll WebView ARM64 Orderfile from y5gVT1m4udj7hapQa... to XVvDpf3EXnvXDd5oV...
  • 96affd4 Support attaching to vertical tab strip for tab dragging
  • 3f7e569 Roll Depot Tools from 522a0d7bc338 to 967382fdcd14 (1 revision)
  • 95e1bd1 Fix IfChange-ThenChange file ref in inputs metric enums.xml.
  • 1d4cd72 Roll WebRTC from 60ccc5021527 to a3ec6a8e6f07 (1 revision)
  • 46fe8b6 Do not intercept about:blank or data: URLs in contextual tasks nav throttle
  • 8c5017b WebNN: Add a switch to ignore all IHV EPs
  • f6bee51 Roll Chrome Android Desktop x64 PGO Profile
  • 3cb8f2b Roll Chrome Android ARM64 Orderfile from UmHcGHl_NxUtsFM2I... to W4tBI1prPa77AywEf...
  • 5c5d8cf Roll clank/internal/apps from 050ca376116c to 11effa001037 (1 revision)
  • 33cdf35 Roll Chrome Mac Arm PGO Profile
  • c08b6e1 [Omnibox Next] Make recent tab chips update with navigations
  • b9d1674 Revert "[ntp][realbox][next] Contextual entrypoint IPH"
  • d3c9be1 Reland "Add UMA metrics for user interaction to navigation duration"
  • ac2003a [Contextual Tasks] Fix Lens requests when session handle already exists
  • 3aae0df [ntp] Add Test case for Google Calendar Disable button
  • 1a09863 Sync feature protos.
  • a7f82a2 Roll Crossbench from 242219a403ea to d9edfb43f839 (1 revision)
  • d0bdcb9 [Extensions Bindings] Make ContextInvalidationListeners Checked
  • 986d696 Add flag to allow forcing video PiP to be trusted for media playback
  • 5c577b0 [Extensions Bindings] Upgrade a few DCHECKs to CHECKs
  • 392ffb6 Ensure that CPSP's SecurityState isn't modified after process is gone.
  • e3e9b21 [Extensions][IME]: Align keyData.key values with DOM spec.
  • f4ae4d0 glic: Remove horizontal rule above personal context and instructions links
  • 1fc3fae [Icons] Update globe vector drawable
← Back to all summaries