Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2026-03-11 on branch 'main'

Chromium Digest: 2026-03-11

Overview

This daily summary for March 11, 2026, covers 668 commits, with 511 identified as relevant to developers. Highlights include numerous breaking API removals across core systems, UI, and platform-specific code. Other major changes include the removal of several web-facing APIs, significant security hardening like enabling the network service sandbox on Windows by default, and continued migration of extensions to Manifest V3. The first relevant commit was (878f494) and the last was (1dd3629).

Breaking Changes

  • ⚠️ BREAKING BREAKING: The signature of the public virtual method ClientSocketPool::RequestSockets has changed. The callback parameter is now a PreconnectCompletionCallback (base::OnceCallback<void(bool)>) instead of a CompletionOnceCallback (base::OnceCallback<void(int)>). Embedders implementing or calling this core networking API must update. (ad97a90)
  • ⚠️ BREAKING BREAKING: The method signature for ScrollEnd in core input handling interfaces (InputHandler, CompositorDelegateForInput, LayerTreeHostImpl) was changed to pass compensated scroll delta. This is an API break for embedders. (9ec5ed7)
  • ⚠️ BREAKING BREAKING: The underlying type of the core ui::KeyboardCode enum has been changed, resulting in an ABI-breaking change that will affect embedders linking against Chromium. (e9e9cf3)
  • ⚠️ BREAKING BREAKING: The (const char* data, int size) overload for base::File::WriteAtCurrentPos has been made private. Embedders must migrate to the base::span overload. (42d167b)
  • ⚠️ BREAKING BREAKING: The signature of the public static method AutofillSuggestionController::GetOrCreate was changed to include a new AutofillSuggestionTriggerSource parameter. (a29ad42)
  • ⚠️ BREAKING BREAKING (macOS): The CHILD_PLUGIN helper process type has been removed. Embedders on macOS relying on this legacy child process type for less strict library validation must migrate to other process types. (12d359c)
  • ⚠️ BREAKING BREAKING (ChromeOS): The public function chrome::ShowAppManagementPage() has been removed from the general-purpose chrome_pages.h header and migrated into the Ash-specific ash::SettingsAppManager. Embedders must update their code to use the new manager. (ae02e83)
  • ⚠️ BREAKING BREAKING (Android): The public Java class org.chromium.chrome.browser.sync.TrustedVaultClient was removed. Downstream code must migrate to org.chromium.components.trusted_vault.TrustedVaultClient. (1ae80bc)
  • ⚠️ BREAKING BREAKING (Android): The deprecated, two-argument createScreenCaptureIntent method was removed from the public MediaCapturePickerDelegate Java interface. Implementations must now use the three-argument variant. (2d0f192)
  • ⚠️ BREAKING BREAKING: Several public APIs have been removed or refactored, including EnableVideoCaptureServiceSafeMode(), PrivacySandboxActivityTypesService, AccessibilityAnnotationService observers, and the TabSearchContainer and Click to Call UI components. Several App Mode command-line switches were also moved to an internal header. (a252ae8) (44dc583) (77cb6c6) (d43a49d) (47aad4d) (06d9ced)

Web Platform & Blink

  • The <command> element is now treated as an invalid element during HTML parsing, aligning with the WHATWG specification. It was previously parsed as a special void element in the <head>. (baff9bb)
  • The fireOnEveryPaint option has been removed from the ResizeObserver API. This non-standard and little-used option is no longer supported. (e0ce255)
  • The GeolocationSensor API has been removed from the codebase, as the specification was discontinued. (f2a0ff6)
  • A new alwaysNegotiateDataChannels option was added to the WebRTC RTCConfiguration dictionary, implementing a W3C extension to force SCTP negotiation even if no data channels are created initially. (1fcfe41)
  • The behavior of navigator.storage.estimate() in Incognito mode has been altered to prevent privacy leaks. It will now return values that do not reveal discrepancies in storage capacity, which could have been used to detect Incognito mode. (c48f71d)
  • Reader Mode's underlying Readability.js library was updated to improve content extraction on recipe websites. (5a78e07)
  • The focusgroup controller will no longer consume Alt+Arrow key events, preventing interference with standard back/forward navigation shortcuts. (2aed26a)

UI & UX

  • The TabSearchContainer and "auto tab groups" nudge button have been removed from the tab strip, simplifying the UI. (d43a49d)
  • The "Click to Call" page action icon and its associated feature code have been completely removed from the browser. (47aad4d)
  • ⚠️ BREAKING On Android, the "Following" feed feature and its associated UI (FeedManagementActivity, FollowManagementActivity) have been removed to simplify the Feed experience. (1f1fda2)
  • A new HitTestCallback was added to views::FrameView, providing a uniform hook for subclasses to customize hit-testing behavior in the non-client area. (7c1ec2a)
  • Support for multi-promo "SetupList" cards on the New Tab Page has been removed in favor of a simpler single-promo design. (b233318)
  • On iOS, support for Dynamic Type was added to the new toolbar and app bar for improved accessibility. (1d48f04)

Security & Privacy

  • The network service sandbox is now enabled by default on Windows, a significant security hardening measure that restricts the privileges of the network process. (a0ad012)
  • The Authorization header is now correctly stripped from fetch() keepalive requests during cross-origin redirects to align with web specifications and prevent credential leakage. (5fb6646)
  • The ChildMemoryConsumerRegistryHost was hardened with resource limits and validation to improve security against compromised child processes. (13fc6d1)
  • Permissions policies for the Digital Identity Request API are now enforced in the browser process, not just the renderer, for improved security. (0f622d1)

Autofill & Passwords

  • New methods were exposed on HTMLOptionElement and HTMLSelectElement to allow Autofill to select options by index, which is more robust for fields with duplicate display values. (118baa7)
  • Logic for the built-in password store backend was updated to return more actionable errors and notify observers of those errors, improving diagnostics. (242d7c0)

Extensions

  • A large number of extension API tests (for history, management, context_menus, metricsPrivate, etc.) have been updated from Manifest V2 to Manifest V3, continuing the deprecation effort. (36f2f4c) (c4f4143) (bdbefc8) (35e7b66) (0b8b89d)
  • A crash in ServiceWorkerTaskQueue was fixed, which could occur when a stale context initialization IPC arrived after an extension was reloaded. (d12bcc8)

Build & Infrastructure

  • The effort to modularize the browser continues, with source code for page_info, data_sharing, engagement, and performance_monitor being moved into their own GN targets. (f7272c2) (b49f647) (1703de6) (5e70d3b)
  • The abseil dependency was rolled, bringing in new utilities like absl::SourceLocation. (c34a655)
  • Numerous expired feature flags were removed from the codebase, including enable-service-workers-for-chrome-untrusted, EnableNtpEnterpriseShortcuts, and flags related to Autofill and Password Manager features that have now launched. (2ceeca1) (b2574b0) (e484c32) (b937d39)
All Commits (668)
  • 1dd3629 [code-health] Clean up `disable-quick-answers-v2-translation` flag
  • 05581e6 Add kAnchoredContextualCue InvocationSource
  • b26a80b [Tab Strip Glic Button] Update hovered and pressed state colors
  • e096b12 [bookmarks] Migrate bookmark_model_unittest observer checks to gMock
  • f120d77 Handle unhandled keyboard events in indigo OnboardingWebView.
  • e79cd82 Roll DevTools Frontend from b2a86d09d5c4 to 48f965098f72 (6 revisions)
  • f9bb85d [aim-eligibility] Gate Omnibox Next with `IsFuseboxEligible`
  • 58849d4 Extend expiration date for Assistant.NewEntryPoint.Eligibility histogram.
  • 1e33d5b Remove some glic_enabling_browsertest tests
  • eb44944 [Glic] Add multi-selection bool for lens overlay
  • 625a43e [GlowUp] Increase group header padding
  • dcf5cf6 [Media Capture] old UI: return to chrome dialog on system UI dismissed
  • 71f8869 Prerender2Fallback: Use `PrerenderHostId` to distinguish matched mark
  • fe9dfd7 [omnibox] Prevent crash in OmniboxPopupViewWebUI.
  • 0b8b89d [Extensions] Update "extension" API tests to MV3
  • e3cb5ba [x-plat promos] Fix Wave 1 Promo Presentation
  • bb19dc8 [NtpRefactor] Fix the MVT being truncated issue
  • f7272c2 Modularize chrome/browser/page_info/
  • 35e7b66 [Extensions] Update metricsPrivate API tests to MV3
  • 68b202f [composebox] Fix Leaked Session and ghost tabs from stale session.
  • 4f080f4 [webmcp] Add a histogram to record script tool registrations.
  • c4f4143 [Extensions] Update management API tests to MV3
  • 0aef95f Record Autofill.Actor.AutofillAttentionDialogsPerTask metric.
  • 32b4899 Roll WebView ARM Orderfile from ItzOXXvcPGAdWaR_l... to 3-7D9jCzhIvN_rL2R...
  • d43a49d [TabOrganization] Remove TabSearchContainer
  • 7412853 Roll WebView ARM64 Orderfile from LfyrmvIF5uUxUhirL... to MDukuqP9TkUEo6U0E...
  • 028addb [Chrome Next] Correctly cap minimum size when THSP is visible
  • 750f26f Roll vulkan-deps from d61243d1b083 to c29f9df0edc1 (3 revisions)
  • 165dd79 Extend expiry of https-upgrades-ios flag.
  • 23cde9e Search Integrity: Ignore punctuation when matching search engine names
  • 758712a Pass StringView to KURL::SetProtocol()
  • baff9bb The <command> element should be treated as invalid in HTML parsing.
  • dc47e95 prerendering: Allow secure prerendering form submission
  • f84e6d7 Clean up PlzServiceWorker tests from TestExpectations
  • 7e6df05 Rename ShouldBeginMainFrameWhenIdle
  • 5a78e07 [Reader Mode] Fix massive content omission on recipe sites
  • ef669a2 [iOS] Fix Tab Grid toolbar crashes
  • 4cb1b42 [Contextual Task] Persist active tool chip across navigations
  • ff83a4c Add @JniType to a batch of files in //components (#3)
  • 236df6b [Extensions] #3 go at DumpWithoutCrash in RendererDidInitializeSWContext
  • 8a329fd FieldTrial Cleanup
  • b49f647 Modularize chrome/browser/data_sharing/
  • 87e571e Pass StringView to JSONValue::QuoteString and ...StringForJSON helpers
  • c019fc7 Enable file selection in Indigo Onboarding dialog.
  • be7746b Add Indigo onboarding dialog.
  • 8a84a8c [builtin ai] Wire up GlobalState and ModelBrokerState to provide
  • b54eaf2 Use StringView in InspectorStyle::LonghandProperties()
  • b51fac8 Use StringView in RemoveFragmentDirectives()
  • 4156a23 Roll Perfetto from 08b509bdad26 to 3a764e6f6339 (3 revisions)
  • ae02e83 Migrate ShowAppManagementPage() into ash::SettingsAppManager
  • 8488968 [Bookmarks Tree View] Fix crashes when bookmarks are deleted
  • 6e03dc8 [Glic] Add multi-selection bool for selection overlay
  • 5792bb3 Record UMA histograms for Education and Shopping category scores
  • fa39ccf [aim-eligibility] Always check `IsAimEligible` in `IsFuseboxEligible`
  • 36f2f4c [Extensions] Update history API tests to MV3
  • 079063c Automated Commit: LKGM 16613.0.0-1075889 for chromeos.
  • 94ef474 remove deprecated chromeos assistive watch list
  • 0dac4a9 [Search Integrity] Defer engine check until TemplateURLService is loaded
  • 6615e85 Roll Chrome Mac PGO Profile
  • c2652c7 [x-plat promos] Extend x-plat promo flags
  • ecd0354 Add jacastro@ as OWNER for safe_browsing_pref_change_handler* files
  • d364b65 Create ui/actions and move generic ButtonData
  • e5ff62f Respect two-step shutdown of KeyedService in SegmentationPlatformServiceImpl
  • 40a509f Roll FuzzTest from 54ed36269217 to 2145ac8a7576 (1 revision)
  • 2ceeca1 Delete enable-service-workers-for-chrome-untrusted and related code.
  • 7805835 Roll ANGLE from 563c8f2f88c5 to 6935aaed653a (2 revisions)
  • a04820a Roll Chrome Mac Arm PGO Profile
  • 1703de6 Modularize //chrome/browser/engagement
  • 9cc17ab [selection] Fix overlay not getting clear when tab is discarded
  • 44673bf Roll Chrome Win64 PGO Profile
  • e0ce255 [HiC] Revert ResizeObserver fireOnEveryPaint
  • 22cbcd3 Roll Chrome Win ARM64 PGO Profile
  • aefb7ea Roll V8 from b210c794d22b to 3ec501ccaac5 (30 revisions)
  • 7d93b81 Fix a crash in GlicWindowEventObserver::HandleWindowDragWithOffset.
  • b304521 Reland "[Contextual Task] Fix Flakey Test"
  • 135a043 Roll Chrome Win32 PGO Profile
  • 64a28f3 [Vertical Tabs] Update icon size constant naming
  • 8cd7350 Roll src-internal from d20d72c266b2 to 5f3259bc268e (1 revision)
  • 86af5fb [Durable Messages] Extend PM2 histogram expiry.
  • 3bd4c6d [projects] Implement ProjectsPanelStateController for Resumption Rail IPH (4/6)
  • e9cdae6 Roll Chrome Android ARM64 Orderfile from dzGa3_5tCMT6famxU... to jmCOxHNAPV4mcchol...
  • f7cc05c [GlowUp] Hide the WebContents shadow
  • 12d359c Remove the CHILD_PLUGIN helper
  • e3dbce9 android: Fetch gtest location data when listing all tests
  • 8140688 Fix dangling pointer crash in ThinWebView
  • de412c3 [PerProfileMetrics] Implement metric for SignIn/Out.Completed
  • 24acde0 Add api definition file for projector app and delegate interfaces.
  • 02d6d6d [PerProfileMetrics] Add factory to ios/web_view
  • 68c1adc [refactor] Rename OnFileUploadStatus* to OnContextUploadStatus*
  • 157b481 [fedcm] Remove the permission prompt in IdentityProvider.register()
  • 69c36be [PerProfileMetrics] Support duplicating variant definition as needed
  • a6f4d46 [SidePanel] Fix SideUiSpecs param naming
  • 1d53325 Use macro for spanified inputs in components/apdu fuzzers
  • 0876161 [crd host][linux] Allow run-multi-process-host script to keep sessions
  • f292d27 [style] Fix serialization for CSS will-change.
  • 55c19a4 [crd host][linux] Implement remote_session_info binary
  • 2aed26a [focusgroup] Don't allow alt+arrow to be consumed by focusgroup
  • c0cf120 Sync feature protos.
  • 07e755f metrics/structured: Fix timer deadlock and extraction bypass
  • a858081 [persistent_cache] Add a perf test to measure the WAL penalty
  • 48e5067 Roll compiler-rt from c8a567684659 to e1e57b877616 (4 revisions)
  • 8199988 [TabItemPicker] Fix background thumbnail fetch by using translucent theme
  • f89c9e0 Roll R8 from CoaQUbD7pDX3OuETi... to 6BLixpU9eIdUBP0eg...
  • a485fa8 [bedrock] Migrate tab_strip_model_browsertest away from BrowserListObserver
  • 41a7246 [Toasts] Add metrics for EnhancedBundledSecuritySettings toasts
  • c579d74 Always initialize the settings notification controller
  • 4ca3578 Roll Chrome Linux PGO Profile
  • 7218d4b Remove expired feature flag enable-doze-mode-power-scheduler
  • 29a76e5 Delete certificate_reporting_test_utils.h.
  • 0ddd7af [GlowUp] Add app menu icon animation tests
  • bdbefc8 [Extensions] Update context_menus API tests to MV3
  • 4ba1e45 Roll Chrome Android ARM32 PGO Profile
  • bc5c67d [Masonry] Add baseline shim for single-span items
  • 720089a [Contextual Tasks] Fix composebox bounds in side panel
  • 32039e3 [crd host][linux] Client-controlled layout for multi-process host
  • fa1f022 [blink] Enable Memory Purge on background for AL
  • 47aad4d [Page Action] Remove Click to Call Page Action code
  • d3314cc Enable WebViewPrefetchHighestPrefetchPriority by default
  • 9ad9563 android: Increase memory for TraceReferences
  • 913b7b3 Extend expiration and add owner for ChromeOS.Settings.Display histograms.
  • 8c6b7bf Replace content::AttributionStorageSql::Error with std::monostate
  • 663f2cd Ensure FuseboxSessionState is cleanly destroyed when Chrome exits.
  • 2e7e273 [x-plat promos] Move Lens promo to wave 1 flag
  • 714d4c1 [PDF Ink Signatures] Generalize PdfInkUndoRedoModel::Add()
  • 1b72195 Roll DevTools Frontend from 3fc7b681a246 to b2a86d09d5c4 (1 revision)
  • 4517d5e Move android-x64-rel to android android-16 from android-15
  • 8c6fa0f [PDF Ink Signatures] Rename Erase to Remove in PdfInkUndoRedoModel pt. 2
  • e11845d Roll WebView ARM64 Orderfile from A3JSDYnuLHD9uYvHq... to LfyrmvIF5uUxUhirL...
  • 58793a8 [Vertical Tab] Refactor hover card classes
  • 3bd5d8e [GlowUp] Post-CL cleanup
  • 6201281 [Bottom Bar] Add feature flag
  • 8f1f523 AnnotationReducer: Support 2 implementations in QueryClassifier
  • 1382d43 Roll PDFium from ff5e04acc96f to ca0f9d08ee3e (9 revisions)
  • 1d7e608 Fix unsafe buffer usage in frame_overlay_test.cc
  • 70dd2cc Wrap Mojo callbacks in chrome.cookies API with default invocation
  • 27853f5 [projects] Update utilities for Resumption Rail IPH (3/6)
  • f2a0ff6 Replace Geolocation Sensor tests with historical artifact
  • b233318 [NTP Promos] Remove SetupList and multi-promo support
  • cb32151 Add OnePResolver interface and stub implementation.
  • 47902a8 Fix unsafe buffer usage in lottie animation_unittest.cc
  • 5d3d698 [PromptAPI][Tool Use] on_device_model service (ODMS) layer changes
  • b126547 [webnn] Ensure output tensor size is same as tensor buffer
  • cb0bb0a Fix unsafe buffer usage in literal_buffer_test.cc
  • 0bb1ce6 [PDF Ink Signatures] Rename Draw to Add in PdfInkUndoRedoModel pt. 2
  • fbfc8fc [PDF Ink Signatures] Rename Erase to Remove in PdfInkUndoRedoModel pt. 1
  • a561aad Roll Chrome Mac Arm PGO Profile
  • e6890cf [ios][apcv2] Extract paid content data
  • 0d65f9e [Prompt API] Update AI creation and detection APIs to use NotSupportedError for unavailable status.
  • 35c20fb [Contextual tasks] SetAimUrl even if thread id is missing
  • 2eb1f88 [PDF Ink Signatures] Rename Draw to Add in PdfInkUndoRedoModel pt. 1
  • b2a8cf2 Fix unsafe buffer usage in vp9_uncompressed_header_parser_unittest.cc
  • 865a845 Explicitly add gpu_mode to the Android AVD creation proto.
  • 2b84cfc [PDF Ink Signatures] Consolidate Erase methods in PdfInkUndoRedoModel
  • 1542adb Refactor BrowserWindowFeatures: Migrate UpgradeNotificationController
  • b7d21d2 Add @JniType to a batch of files in //components (#1)
  • bae23c7 [AccessibilityAnnotator] Rename DriverLicense to DriversLicense
  • 52cefaa Add some missing includes of //ui/views/layout/layout_provider.h
  • ef021bb Extend histograms: Supervised User
  • 0a7261d Move FirstLevel check to SysInfo
  • f698b41 Add @JniType to a batch of files in //components (#2)
  • c674cd8 Add some missing includes of //ui/views/controls/image_view.h
  • 0a3c4d2 Add scan_id field to UnscannedFileEvent (1/2)
  • b877472 [cc] Cleanup overloaded InputHandler::ScrollEnd
  • 6c9aaf5 Add @JniType to some files in //base
  • ec10aa2 [ios] Remove code for kRemoveGreySnapshot experiment
  • 940ac2b Roll Chrome Win64 PGO Profile
  • cd9dc10 Introduce IndigoAgentHost to manage script injection and invocation.
  • 3b4fcb7 Add EnableADPFWorkloadIncreaseOnPageLoad to fieldtrial config
  • f56bc07 [TabData] Use base::Unretained for data subscription callback
  • 149081c Add Google Wallet dark mode image to settings
  • ba2a6b9 [UserEducation] Remove stale UserEducationExperienceVersion2 histograms
  • c107e28 Reland "Implement WebUILocationBar::GetAnchorOrNull"
  • a897a35 [Signin][Android] Add IdentityManager core accounts observer for cache
  • 16a13f9 Rename gcli deny policy file for consistency
  • a3d6e7c Built-In AI APIs: Add browser-side permissions policy enforcement
  • 44f4eb6 [Masonry] Add BuildSizingCollection to Grid Lanes
  • 3f7e443 [iOS] Remove TraitCollectionSetForTraits invocation
  • 7d415fa spanification: automatically spanify base/rand_util_unittest.cc etc.
  • 1f1fda2 [Feed] Removes feed header related code
  • 829f41e Roll Chrome Win32 PGO Profile
  • 232e61d Revert "Update policy support version."
  • ff02dd8 [FRE] Create the new primer UI for arm 3 (portrait mode)
  • 9328e64 [Signin][Android] Move AccountManagerFacade observer to dedicated class
  • 10cf946 [contextual tasks] add tab spinner tests
  • 47b6250 Reland "Pass in `SkillsDialogType` as a param when creating a dialog."
  • 9ddef4c Extend expiring Built-in AI API flags to M154
  • 4b93c56 Add a Gemini CLI skill for @JniType.
  • 8a818be Componentize chrome/browser/bookmarks/ test files
  • 5043cda Update policy support version.
  • 5c5efd5 [Vertical tabs] Close tab group editor bubble if tab strip is scrolled.
  • fdbcc4a Disable SensitivePaymentRedactionMultiSourcePageContextFetcherBrowserTest.BasicRedactionInIframe
  • 9d3819e [ntp-next] Export omnibox proto changes
  • 216c685 WebMCP: Remove toolparamtitle attribute
  • a6ea5d7 Roll ANGLE from 54f436eb6c1f to 563c8f2f88c5 (3 revisions)
  • 66e0067 Roll Perfetto from c0a3840504ad to 08b509bdad26 (5 revisions)
  • abe73e3 Refactor PaletteTray to use ui::ColorId for its icon
  • 7c1ec2a Add a callback for custom hit-testing logic in views::FrameView
  • 2192dbf [ntp][ogb] Remove obsolete usages of setForegroundStyle
  • aa638c5 Fix use-after-free in AnchoredMessageBubbleView::ChipCallback
  • d58da74 Modularize //chrome/browser/security_events
  • 7783f83 [Reading Mode] Remove failed distillation TODO
  • 126b11e Revert "WebrtcVideoFrameAdapter: use SharedGpuContext"
  • dc8e550 Replace UNSAFE_TODO in OfflineAudioDestinationHandler with safe code
  • 13c8b3d [BrowserWindow] Update TODO bug numbers
  • c38cb5e [testing/variations] Add testing config for BusyLoopAggressiveAfterCommittedLoad
  • 95cdd05 [contextual-tasks] Disable new tab button when protected page showing.
  • 8fdfcb5 [Memory] Add IsStateful trait to MemoryConsumerTraits.
  • b833532 [fedcm] Implement FedCmAmbientUI using Page Action framework
  • 06d9ced Migrate ChromeOS-exclusive switches from chrome/common to ash/constants
  • 2309891 ForeignSessionHandler: Remove initial_session_list_
  • 5c1fe9b [projects] Add histogram metrics for the panel
  • f9b663b Fix off-by-one in BookmarkBarView::RemoveBookmarkButton
  • 9ec5ed7 Pass compensated scroll delta to GestureScrollEnd
  • 8f048d5 Migrate EventRouter and helpers to ChildProcessId
  • 0d2ba2a Add MallocDumpDoNotWalkFreeList to testing config.
  • 1983a07 [display] Change int64_t kDefaultDisplayId value from 0xff to -2
  • 0ffab45 Replace UNSAFE_TODO in PannerHandler with safe operations
  • c45a277 Roll ios_internal from bfec578f872c to edad5c2b85ea
  • 8d28d31 [Signin][Android] Fix crash in web signin bridge
  • e82b288 Convert UNSAFE_TODO in AudioContext to safe operations
  • 3175ff8 Revert "[iOS][Signin] Add get method for DeviceManagementError"
  • 9f5dac8 webui-browser: Fix searchbox height without breaking Tall layout mode
  • 531acd4 [iOS] Add proper VoiceOver message for enhanced autofill suggestions
  • e4849c9 [iOS][Signin] Add get method for DeviceManagementError
  • 4539eb7 Extend expiration of V8 compile hints histograms
  • c0e3732 [Signin][Android] Add piping for Signin button onclick functionality
  • 3f489bf [Signin][Android] Show profile image in Signin button when signed in
  • 9e0d99a Add DevTools.ExtensionEvalTarget histogram.
  • a9a5e92 [iOS][Signin] Put DeviceManagementErrorDetails in the gaia namespace
  • 8a7b9af [ios] Remove FastApplicationWillTerminate experiment
  • a9c81d9 [ios] Support Tab Group symbol for AppBar
  • c209157 [glic] Open created tabs adjacent to the current tab
  • 44dc583 [Privacy Sandbox] Delete Activity Type Service
  • 1d48f04 Reland "[iOS] Support Dynamic Type in new toolbar/appbar"
  • 0e41d4c Fix calc() double-zooming in timeline-trigger ranges
  • 726a2d7 Add jj option to diagnose_bloat.py
  • 51ab577 Roll clank/internal/apps from 6cb0d6685698 to cd6dc9e3c3ef (1 revision)
  • d03389e Add Web Continuity originating host URL override pref to Glic internals
  • b7fb890 Roll androidx from Hi79Lu6qQ-Fbcjwgf... to A6oLcxGdFmfrPoaAc...
  • 82c4810 Roll Chrome Android ARM64 Orderfile from 08AELqm5mrA3JreBi... to dzGa3_5tCMT6famxU...
  • 385848c Roll WebRTC from 8281b933c9f9 to 201168a998a4 (6 revisions)
  • 7de2b74 Roll WebView ARM64 Orderfile from p8YmHEbva8JTyDn7M... to A3JSDYnuLHD9uYvHq...
  • b09714f Fix incorrect MediaLauncherActivityStarted histogram name
  • d701f5d Roll DevTools Frontend from 8cf895447ace to 3fc7b681a246 (3 revisions)
  • 084f2e9 [iOS] Cleanup Copresence Presented Source Updates
  • 8e0d5e3 Roll Chrome Mac Arm PGO Profile
  • a65fbac [AIAE][Clank] Override AI-based amount extraction terms seen pref
  • 370bba0 WebUI: Fix CrLitElement class/DOM name pattern violations, part 4.
  • 2162492 Add Android 17 beta creation proto
  • 8dd0897 [Gemini CLI] Remove the colon put after the tag
  • 989d054 Log UMA metrics for iOS client identity creation errors
  • 0f7574e [Readability] Allow read aloud to work.
  • 88b908b Overscroll: ensure that IsOverscrollContainer is false for text nodes.
  • c609a8a Move instance show responsibility to the invoke handler.
  • a8d0015 nearby: use new AEAD API
  • bbb1103 Add test for allow_implicit_tool_origin_grants feature param
  • 8f2775d Honor DevTools Save-Data override for request headers
  • 63353d3 [Connection-Allowlist] Clean up global header param tests.
  • 59425ac [Autofil AI - M4] Add addresses title when M4 feature is on
  • ef6596b [Vertical Tabs] Use correct new tab icon
  • f1362c8 Add AnnotationReducerQueryClassifier to LogAiDataRequest.
  • a906ce6 Fix NPE in WebUIBubbleDialogView::ShowUI
  • 3863752 [ui] Fix reentrant crash in Browser::OnThemeChanged during destruction
  • d6096d2 Implement FilterAnnotationTable SQL operations
  • 066a0a1 [WebAppInstallFinalizer] Create install and update job tests
  • 74374c0 Simplify the is_isolated branch when resolving effective display mode
  • 6fc7e45 [Masonry] Update CreateConstraintSpaceForLayout and expose avail size
  • 6fe1734 Roll clank/internal/apps from 75d28e13497c to 6cb0d6685698 (1 revision)
  • 4b06afe Improve feature hierarchy documentation in AwFieldTrials
  • fa6431f Roll Chrome Android ARM32 Orderfile from tI00zy5bvSbNuRK83... to 0ZqeWPme_NoWICTn3...
  • ea3fc41 Fix race condition in RM badge logic
  • 1fcfe41 webrtc: add alwaysNegotiateDataChannels option to RTCConfiguration
  • c690374 PasswordManager: Replace legacy UMA histogram macros in PasswordImporter
  • 9d81810 [iOS] Show snackbar when custom photo is uploaded
  • 8dacc76 [Windows] Remove legacy TestRunner code from the sandbox tests.
  • b165690 Roll Media App from 7TgtSlYcserkwHcpf... to hlPOLMaiEparZfdNM...
  • 95f38ee Remove the CSSCursorSizeCheckFix flag
  • 97c80ac Add otara@google.com to zxcvbn-cpp OWNERS.
  • 0d603ab Explicitly allow reentrancy for NewTabFooterControllerObserver
  • 4b22ebe PasswordManager: Remove redundant base::BindOnce in ExecuteImport
  • 81b405a [iOS] Integrate composebox input plate in the Cobrowse prototype
  • c5b7fa0 [Desktop Zoom] Update expiry of flag in metadata
  • c7baf51 Check for TrustedVaultKeyNeeded error in ShouldAllowSavingPasswordsWithInFlowRecovery
  • f6bc90d [iOS] Add cobrowse context object
  • b6bbc57 Fix broken BadSslResponse inttest on iOS26.4
  • 5639c54 Roll vulkan-deps from 931133bc6f96 to d61243d1b083 (2 revisions)
  • c2f7cd1 Add isIncognito to the reorder left/right tab strip context menu options
  • 89a2fbb Roll Perfetto from 4cead1b0fc99 to c0a3840504ad (6 revisions)
  • 62d74b9 [crypto] Log keychain error when wrapped key lookup fails
  • f4fdab3 [glic][onboarding] Add ChromeOS to finch testing config
  • a3bed6f Address the final cleanup comments for 322342499 in AppBannerManager
  • c7dfb0a Fix typed-arithmetic width calc crash
  • 13fc6d1 [Memory Coordinator] Harden ChildMemoryConsumerRegistryHost
  • 7b82f91 [Signin][Android] Remove redundant SigninButtonMediatorTest
  • c8381f1 [iOS] Fix shortcut action execution when switching modes on cold start
  • c5656be Add fieldtrial config for ScrollPredictorEnhancements
  • b30ba78 Replace blackbox fuzzer clusterfuzz set up link with reference page
  • b19b29a [composebox] Caret repositioning upon resizing
  • c9cd24a [iOS] Introduce a cobrowse composebox omnibox client
  • 429b793 [Mac] Fix Omnibox opening context menu instead of navigating
  • b313ed4 [Setup List] Fix NPE by using static builder registration
  • 2321c71 Fix expectation for pointerevent attributes WPT: only touch is flaky
  • 024c3eb Roll ANGLE from 40c3a37dcd6c to 54f436eb6c1f (1 revision)
  • 426ac40 Stop "no results" message from appearing when AtMemory returns data
  • 6b0f808 [lens] Prevent feedback toast from showing when composebox is expanded.
  • 1ff888e [Setup List] Instantly mark promo complete upon external task resolution
  • edecd5a [Setup List] Prevent premature removal of default browser promo
  • 0b8e673 Add Autofill.Ai.ReauthToFill.ResultPerFieldType metric
  • 9ee4054 Manual Catapult roll from e0ebf38a0121 to a2f6285fa55a (1 revision)
  • 295fbb5 [Signin][Android] Update the strings for when signin is forced.
  • df93991 Fixes the crash http://crash/3d76d58251b30049
  • cc872a4 actor: Remove kGlicEnableAutoLoginPersistedPermissions flag
  • d34ce08 [BNPL][PNPL] Rename OnDidAcceptBnplSuggestion() to be more general
  • ae9aaba Roll WebView ARM Orderfile from 3IGgdHkXAHR-jnzci... to ItzOXXvcPGAdWaR_l...
  • 8ad4cfb [KP] Automatic update from google3
  • 1c6ed78 Remove non-strictly necessary logging
  • e79d530 [iOS] Optimize Lottie animation color configuration
  • b5f08f6 Only one string for marker attribute
  • a252ae8 Make the video capture service not use the plugin helper
  • e3db405 Add scroll position generation metrics for Android
  • 75ca3cf Add scroll volume metric for scroll position restoration
  • 8a122f2 Roll Help App from 7X2TTLv2gfq1oU1Py... to Efm46F-VpjYXFX-el...
  • ffef714 [Signin][Android] Migrate Settings Sign-in row to activity-less flow
  • 4815a6f Roll Chrome Mac PGO Profile
  • f4ba259 [ios] Extend ios-provides-app-notification-settings flag expiry
  • 1ca6ace Roll ios_internal from 2ae19e8b8b68 to bfec578f872c
  • a7bb053 Roll Chrome Mac Arm PGO Profile
  • c48f71d Always report fixed quota for Incognito
  • 56816f1 LPP: Introduce LocalAuthFactorsPolicyController class
  • 333ae54 Add metrics for Send Tab To Self scroll restoration
  • 9bd8cfd [Launch Bling CC] Start rolling out policy and introduce a killswitch.
  • 03df9c4 Add support for approximate-only geolocation prompts.
  • 6fb1a37 Roll Chrome Win32 PGO Profile
  • 1018c40 Move TryMatchingExistingServerCard to PaymentsFormDataImporter
  • 23e015b [Fixit][Signin][Android] Rename Test account for clarity.
  • 08ad0de Roll WebView ARM64 Orderfile from NZWy_6GwyskFgr41T... to p8YmHEbva8JTyDn7M...
  • ce21538 Roll Depot Tools from 4ce8ba39a348 to a4e677522da5 (1 revision)
  • ece2f80 Roll Chrome Win64 PGO Profile
  • a355315 [iOS] Swift compiler to use non-symlink path to SDK
  • 38d6ef2 [Privacy Sandbox] Clean up android usage of Activity Type Service
  • a685596 Update price tracking tests for transport mode
  • 55f5eaf WebUI: Standardize reload button method naming and CSS
  • dc1ab80 Add feature flag for DevTools Accessibility Agent
  • c10432a Roll DevTools Frontend from e96832de8629 to 8cf895447ace (1 revision)
  • 26b6139 [CT] Automatic update from google3
  • 4e03589 Revert "[Contextual Task] Fix Flakey Test"
  • e60b2de Add support for policies that use both machine and user scope values.
  • 2eed665 Remove D3D11Vp9kSVCHWDecoding config
  • 8073645 [Connection-Allowlist] Null-check headers in Worker throttle.
  • 34fc21b [ios] Update iOS 26 beta bots to Xcode 26.4 beta 3
  • e9e9cf3 [ui][events] Use explicitly-sized type for KeyboardCode enums
  • fdd86b2 Disable report-unsafe-site dialog "Send" button initially
  • 000d007 Roll Chrome Android ARM64 Orderfile from yomrHpmaMsKEfHhdX... to 08AELqm5mrA3JreBi...
  • 764e514 [iOS] Extend ios-segmentation-ephemeral-card-ranker
  • 2a8baf3 [iOS] Extend ios-synced-set-up
  • 64d7838 Extend two expiring flags in flag-metadata.json
  • 5541dbe Improve crash diagnostics in MemoryConsumerRegistration
  • 14d9172 [iOS] Add new ios/chrome Cobalt provider APIs
  • 7d9c5d9 [iOS][AIM] Add flag for aim eligibility fetching on navigation
  • cdd72ed Roll Skia from 750b2b2091be to 90b1d0b22a61 (1 revision)
  • dcae08a Triage virtual/run-snapshot-post-layout/ tests
  • 31ca189 Roll eigen from 4387e3248109 to c4eb3c4f4c91 (1 revision)
  • fecc768 [SkillsMetrics] Add action button variant
  • 9a46123 Add percentages_depend_on_used_value flag for -webkit-transform-origin-*
  • bbcd32a [Autofill AI - M4] Add entity button is hidden when not eligible
  • 76fc374 [iOS][Forms AI] Move DefaultIconForAutofillAiEntityType into autofill/public
  • b2574b0 [NTPShortcuts] Remove EnableNtpEnterpriseShortcuts feature flag
  • d393f49 Updating trunk VERSION from 7729.0 to 7730.0
  • 3c389f4 Updating XTBs based on .GRDs from branch main
  • 041e6c3 Use distinct values for DomainReliability Outcome enum
  • f808ab7 WaaP: Fix ExtensionWindowCreateTest.AcceptState
  • 16e0f40 Roll Chrome Win ARM64 PGO Profile
  • d6c5c65 Roll vulkan-deps from 2c56cc64ad7f to 931133bc6f96 (1 revision)
  • fe0f0e9 [iOS] Remove the guard preventing usage of APC in tab picker
  • 6ae2899 Refactor UnusedSitePermissionManager with base::AutoReset
  • 035c2af [Cros] Migrate B4B UI changes to a separate flag
  • 2af51d7 Set FillingValueAndType::select_text to nullopt if not found
  • 642c068 Fix case where background color of thumbnail is wrong when spinner is removed
  • 25e0f8d Roll DevTools Frontend from edb8fdd0d384 to e96832de8629 (2 revisions)
  • 7a98fdb Add storage layer for multi-step filter component.
  • 280b876 Roll ANGLE from fb2fe2ad9213 to 40c3a37dcd6c (1 revision)
  • 77a101c Add WebView targets to android_arm64_high_end-builder-perf
  • 69ce622 Use wallet monochrome icon in migrate/update to wallet failure toast
  • df9d044 Roll Chrome Android ARM32 PGO Profile
  • e484c32 Remove the "password-form-clientside-classifier" flag.
  • d0f62bd Add focusBackButton override to identity_docs_page and travel_page
  • 50cffc8 Roll WebView ARM64 Orderfile from GbyslL8w2oK6J_Zjb... to NZWy_6GwyskFgr41T...
  • 01a98c3 Roll Chrome Android ARM64 Orderfile from GC2-wSPSZBig5ONps... to yomrHpmaMsKEfHhdX...
  • 64e4519 WaaP: Wait tab to be viaible after dragged out in test
  • a237aba WebGPU: add linear_indexing enum
  • 1ce3b24 Roll ios_internal from b172340740be to 2ae19e8b8b68
  • b87333a [ios] Fix opening chrome dino game from Shortcuts
  • e203fe8 grit: Explicitly flush stdout and stderr before os._exit()
  • 75c4614 [blink][test] Move nested-object-gc to v8 webkit tests
  • 3293c62 [LNA] enable kServiceWorkerWindowClientInitiator by default.
  • 1ae80bc Remove temporary TrustedVaultClient shim
  • 2b7c8f3 [NtpRefactor] Move mLogoView out of NewTabPageLayout.
  • a58c64a [PSF] Update location bar badge UI for Available state for price insights.
  • fd82ac5 [iOS] Move TabHelperAttacher to separate files
  • 2970137 [Side Panel Infra] Move SidePanelRegistry for tabs to unowned user data
  • 90c99fa Out of order streaming: change marker naming API
  • 0cfa1f0 Use macro for spanified inputs in //media fuzzers
  • 68f7034 IDB: Treat backing stores with data loss as new stores
  • 8c3ff43 Script execution order when streaming HTML
  • 89731c1 Roll Chrome Mac Arm PGO Profile
  • d54f905 [code-health] Clean up `cros-block-warnings` flag
  • b0cd14f [RWS] Rewrite public RWSes to use FirstPartySetsContextConfig
  • 7b3cb9d cpu_performance: Enable third-party for the origin trial
  • 2dcda66 wpt/pointerevents/ tests are universally flaky.
  • fd062ba Remove legacy FindBarIcon and associated migration code
  • c8f913d Document addition of absl::SourceLocation
  • 0799437 Extend replace-sync-promos-with-sign-in-promos-desktop
  • c34a655 Roll abseil_revision 3b777f6798..04f3bc01d1
  • ee7253d Roll src/components/resources/default_200_percent/google_chrome/ 32c657bfa..59496a7f4 (1 commit)
  • 42d167b Make non-spanified base::File::WriteAtCurrentPos overload private
  • 39e4dc8 Roll Chrome Android ARM64 Orderfile from 38KMN2ellMI1yE9J2... to GC2-wSPSZBig5ONps...
  • f895372 Roll src/components/resources/default_300_percent/google_chrome/ 5639b83c3..3e80ba527 (1 commit)
  • 2e2d50d Fetch contextual version of history sync opt in capability on iOS
  • 08dc74f Roll WebView ARM64 Orderfile from y9DMgQxhlaOe0j2b0... to GbyslL8w2oK6J_Zjb...
  • 07765f1 Roll clank/internal/apps from 707c4d527f76 to 75d28e13497c (1 revision)
  • b75d257 Use macro for spanified inputs in //content fuzzers
  • ddfd7fb Roll src/chrome/app/theme/google_chrome/ 248dde0c8..53d8b2573 (1 commit)
  • 2d0f192 [Media Capture] remove deprecated createScreenCaptureIntent variant
  • c48885e Roll src/components/resources/default_100_percent/google_chrome/ 2ab4b0d1d..6b1e9802f (1 commit)
  • 853a9cb media/win: fix WASAPI input Stop cleanup on Start failure
  • b937d39 Remove the kAutofillEnableEmailOrLoyaltyCardsFilling feature flag
  • 3836493 Roll Skia from 27d124264317 to 750b2b2091be (1 revision)
  • c1dc870 Extend expiry of autofill-enable-support-for-name-and-email-profile
  • d93b93e Roll Chrome Win64 PGO Profile
  • 8280da2 Shrink the IsTokenChar table
  • 32d9e1c [iOS] Reload suggestions if there are clipboard changes on foreground
  • f016989 Roll llvm-libc from 8df8a70a8349 to 044963a253be (6 revisions)
  • 1d8a7f8 Roll vulkan-deps from b8c07da19f50 to 2c56cc64ad7f (1 revision)
  • 76c9ae2 Remove non-affiliated loyalty cards about flag.
  • 0c8e8ec Roll Chrome Win32 PGO Profile
  • 0345bda private_ai: Restrict Connection lifetime
  • 761f9c7 MP4StreamParser: Pre-clean-up
  • 1a1c1e2 Revert "[Persist] Load active tabs pre-native"
  • 75da2a1 Roll DevTools Frontend from 604f6ea79fc4 to edb8fdd0d384 (3 revisions)
  • 242d7c0 Built-in backend returns actionable errors and notifies observers
  • 2eec9a0 [cc/metrics]: Clean up HandleNonDamagingInputsInScrollJankV4Metric leftovers
  • c20081d Add SigninAccountCapabilitiesSceneAgent
  • 0f622d1 Enforce Permissions Policy browser-side for DigitalIdentityRequest
  • 379d6d4 [ios] Deprecate initWithFrame in BubbleViewControllerPresenterTest
  • 09b132b Roll federated_compute to eb170f6
  • bcb8762 dwa: Use GenerateHpkeKeyPair() for tests
  • 9987bac [Consent] SessionId support in UserConsentSpecifics
  • 0d05d51 Roll WebView ARM64 Orderfile from xhwvEBkkAHMjClzn0... to y9DMgQxhlaOe0j2b0...
  • c5836cc Roll Chrome Mac Arm PGO Profile
  • a29ad42 @memory: Fix popup reuse conflict with standard autofill
  • ec3a69e [iOS][AIM] Add tab helper to fetch aim eligibility
  • 387b8d4 Consolidate DefaultBrowserInfo and expand cache usage
  • 59b2cb1 Roll ANGLE from 41b52b413169 to fb2fe2ad9213 (1 revision)
  • 1b245cb [ios] improve logic in task_request_shortcut_item.mm
  • 56065b9 [ios] Deprecate initWithFrame in ShellAppDelegate
  • bd09462 [aim-eligibility] Gate Realbox Next with `IsFuseboxEligible`
  • 0a07120 Roll Chrome Android ARM64 Orderfile from xgzF4eu96_jFTOA7D... to 38KMN2ellMI1yE9J2...
  • 8ca83da Rename PlatformDnsQueryExecutorAndroid to DnsPlatformAndroidAttempt
  • 72933e6 Roll DevTools Frontend from 0fdb9584cd13 to 604f6ea79fc4 (1 revision)
  • 54458bb [base] Add Uuid::AsInteger()
  • bf0750c Roll Projector App from 1gfYeVlo0VjmKPANY... to lzZ85O571Ue0XzA68...
  • 19c8744 [//cc] Add IsReadyToDraw() check to TileDisplayLayerImpl
  • b30b2ac [//cc] Refactor PictureLayerImpl switch statement into if/else
  • 6e6e845 [//cc] Extract local var in {Picture, TileDisplay}LayerImpl for clarity
  • d4e9911 [//cc] Have ValidateQuadResources() calls happen via TileBasedLayerImpl
  • 800a4e7 Disable recent flaky tast tests for betty.
  • c951414 [iOS] Remove unused raw_ptr<PromosManager> from WhatsNewPromoDisplayHandler
  • 17e1e51 Use PasswordEchoSplitSettingDelegate to track system settings
  • a8e675e Fix U16_FWD_1 increment boundary in CaseMappingHarfBuzzBufferFiller
  • 61310ee allow-attribute-with-create.https.html times out in most moon phases.
  • 268f7bd Roll src-internal from 4fb23b165b32 to d20d72c266b2 (1 revision)
  • a18b5ec Roll WebView ARM64 Orderfile from 7RyWNk2LYtNlvgVKi... to xhwvEBkkAHMjClzn0...
  • b6222f0 [chrome://policy] Add Mojo migration setup for chrome://policy
  • 3155008 Roll Chrome Android ARM32 Orderfile from 6jUILxsSnoUlE3H8s... to tI00zy5bvSbNuRK83...
  • b6aa5c4 Roll Skia from 7537e40bef9e to 27d124264317 (1 revision)
  • a736c50 Roll Chrome Android ARM64 Orderfile from TCdy8sTQU4HoyftVg... to xgzF4eu96_jFTOA7D...
  • 5e6c44e WTF: Rename LowerASCII() methods to ToAsciiLower()
  • e312043 [geo] Simplify logic to populate X-Geo header on Android
  • 4a24e67 gardening: Disable external/wpt/pointerevents/pointerevent_attributes
  • 4e6b03d Roll Chromium Variations from cxncVXYbJTZHpxDLp... to 3pIEvnJgjs4yPcLeJ...
  • 72a793c Update form_parsing internal repo to latest version.
  • 285edb7 Roll Chrome Mac PGO Profile
  • ec314bd [iOS] Prevent double-registration of download task observations
  • e9b030c WTF: Update String::Substring() usages in bindings/ and core/
  • 18f2e4c Update BrowserCommandControllerBrowserTest to ConsentLevel::kSignin
  • 25dc4f5 [bookmarks] Fix Javascript assertion in bookmarks manager
  • 8ec0d3a Roll Boca Receiver App from agDp_Hccv1DdBQ1fp... to 9lzTepqOtdXb4-W2i...
  • b9e3695 Extend expiry of WebRTC DesktopCapturerImpl metric
  • 5da96fc Roll Boca App from noRVMuTtFTgBoFTXy... to IHVNdh6pum1LGHjvE...
  • 037e401 [Signin][Android] Wait for refresh token when user updates credentials
  • 3cb0537 Roll WebRTC from 84ff19ec2e2c to 8281b933c9f9 (1 revision)
  • fa56cb7 [//cc] Dedupe {Picture, TileDisplay}LayerImpl appending resource quad
  • 118baa7 Expose Option::Selected() and Select::Set[Autofill|Suggested]Option()
  • 64555d9 Roll WebView ARM Orderfile from yLebQIvFyXO2qiStM... to 3IGgdHkXAHR-jnzci...
  • 573282c [iOS] Fix null consent helper crash
  • 4155b1e Roll Chrome Win64 PGO Profile
  • 78ea537 Roll BoringSSL from a6fa010a8eb3 to eedf10c1f4ab (4 revisions)
  • 0fe7cf4 Roll clank/internal/apps from 20304ee0288e to 707c4d527f76 (1 revision)
  • f0bdf88 Roll Chrome Mac Arm PGO Profile
  • 4d7f390 Roll Chrome Win32 PGO Profile
  • b169d41 Build: Convert empty static_libraries to group targets
  • 93e0cfe ASH Refactoring: Remove ":strings_grit" from "//ash/strings" in BUILD.gn
  • 56e8a68 Fix dangling ref, add test for new permissions backend
  • 7d81fb4 [iOS] Invoke Cobalt provider API in WKWebViewConfigurationProvider
  • 25b2aa6 Explicitly allow reentrancy for AudioObserver
  • c34d4ba Roll Chrome Android ARM64 Orderfile from FTMU0RP_j_5E_CU0e... to TCdy8sTQU4HoyftVg...
  • fc6afd5 Roll androidx from uw8FaVpFdPaFx2Y4c... to Hi79Lu6qQ-Fbcjwgf...
  • 66da1c5 [//media] Remove VideoFrameYUVConverter references
  • e123a0d Roll DevTools Frontend from 2ac13c166269 to 0fdb9584cd13 (1 revision)
  • efd9ead actor: Remove GlicEnableAutoLoginDialogs feature flag
  • 12a0b53 system_web_apps: Pass ApplicationLocaleStorage to SystemWebAppManager
  • b328986 login: Pass global singleton objects to PublicSamlUrlFetcher
  • 5401043 [Blink] Add LowLatencyUsageSupportedForWebGL() method
  • 018b9bf [Blink] Add SharedGpuContext::UseOverlaysForWebGL()
  • dfc3c54 [Blink] Decompose `should_use_chromium_image` in DrawingBuffer
  • 4d8d01a Explicitly allow reentrancy for observers
  • 9a1d3b9 login: Pass ComponentManagerAsh to DemoComponents
  • 4fd7746 [//docs] Add info on Android Automotive to supported_platforms.md
  • 3f8ec0b [Blink] Remove no-longer-needed WebGL OffscreenCanvas workaround
  • c7276c0 [WebGL] Eliminate ChromiumImageUsage
  • acf3fb5 Roll WebRTC from 7040fbcb5357 to 84ff19ec2e2c (4 revisions)
  • e8bf47a [Blink] Move check of MaySupportWebGLImage() into DrawingBuffer
  • 293ad37 [Blink] WebGLImageChromiumEnabled() call IsDelegatedCompositingEnabled()
  • feebb7b [Blink] Streamline SharedGpuContext::WebGLImageChromiumEnabled()
  • ba1bc87 Remove kSyncAutofillLoyaltyCard feature flag
  • abfd3d5 Roll BoringSSL from 476f48351860 to a6fa010a8eb3 (1 revision)
  • aeb3055 Roll WebView ARM64 Orderfile from eSE-57zN0tYKOHG8a... to 7RyWNk2LYtNlvgVKi...
  • f6e11d3 Automated Commit: LKGM 16612.0.0-1075871 for chromeos.
  • e2ed963 Revert "Migrate DictationButtonTray to use ImagedTrayIcon"
  • b4aba73 Roll Chrome Win ARM64 PGO Profile
  • 77cb6c6 [AccessibilityAnnotator] Change AccessibilityAnnotationService API
  • eec0cdf Revert "[Perf] Temporary repeat of speedometer3 on mac-m4-mini-perf"
  • c4079f3 Roll Chrome Android ARM32 PGO Profile
  • d2cd5cf Roll Chrome Android ARM64 Orderfile from cQjX8czLr3fMzs8fU... to FTMU0RP_j_5E_CU0e...
  • 51ee624 Roll ANGLE from 405f073968f3 to 41b52b413169 (1 revision)
  • 539f95f Roll DevTools Frontend from 9dd57ac0170d to 2ac13c166269 (1 revision)
  • 9e00121 Roll vulkan-deps from 74d9dddc22b8 to b8c07da19f50 (1 revision)
  • 1ae553b Add iscsi@google.com to OWNERS for osauth and ash/login
  • f814703 gardening: Disable ContinueWhereILeftOffTest.Post* tests on Win
  • 1a5ad70 Roll Skia from 812c2e24f75e to 7537e40bef9e (2 revisions)
  • 8d43dd5 Disable estimate-indexeddb* on MSAN.
  • 5fb6646 Strip Authorization header on cross-origin redirect in KeepAliveURLLoader
  • 1543d77 Roll Chrome Mac Arm PGO Profile
  • e7b2ad8 Roll WebView ARM64 Orderfile from rwEmQxT9DEwvewAXp... to eSE-57zN0tYKOHG8a...
  • 1aef22b Revert "[GlicSettings] Add Java Prefs"
  • 2b3e9be Revalidate prewarm page handle in prewarm requests
  • 3ee80d5 Roll src/third_party/pdfium/ f99c21259..ff5e04acc (2 commits)
  • eabbdd3 Roll gn from d8c2f07d6535 to 129ce6b9af1a
  • 5ac95d2 Update `TestExpectations` with bugs filed for crrev.com/c/7647922
  • e286a8e Roll DevTools Frontend from 669b31929aba to 9dd57ac0170d (3 revisions)
  • 79a5694 History DB: add base::Feature to enable WAL mode
  • a5382ce Roll Chrome Win32 PGO Profile
  • c7bc210 Roll Chrome Win64 PGO Profile
  • fa7ea44 gardening: Disable BookmarkBarTest.*Highlight tests on Win
  • 93086ee Roll WebView ARM64 Orderfile from AnHoOl223KSK4s4y6... to rwEmQxT9DEwvewAXp...
  • fa4a156 [x-plat promos] Update fieldtrial config
  • 5e32adf Initial support of "devtools_page" in extension core platforms.
  • 35cffa0 Set ui/android OWNERS for ui_controls_android.
  • 00c8a29 Roll Chrome Android ARM64 Orderfile from nRk2dgam8PNerR7Y3... to cQjX8czLr3fMzs8fU...
  • 8a032d2 Roll DevTools Frontend from e76724536d8a to 669b31929aba (1 revision)
  • dc7016d Roll Chrome Android ARM32 Orderfile from vD878GJFfFTLN4Wlh... to 6jUILxsSnoUlE3H8s...
  • 4e82d80 Improve DemographicMetricsProviderTest coverage with kSignin consent
  • aa56b87 Migrate DictationButtonTray to use ImagedTrayIcon
  • 303c003 Roll Chrome Mac Arm PGO Profile
  • ba0df21 Replace WebSocket with WebRTC in BackForwardCache feature tests
  • 2f7fee1 Roll WebView ARM64 Orderfile from 6Epu1QIpppTVWVID2... to AnHoOl223KSK4s4y6...
  • dec3758 Site Search: Default newly added search active
  • d8243dd Modularize chrome/browser/manta
  • e203664 [iOS] Add field testing for Gemini availability for ineligible pages
  • 3804013 Roll clank/internal/apps from 733346ddc15d to 20304ee0288e (1 revision)
  • 58c9a80 Site Search: Settings fragment clean up
  • ba88502 Roll eigen from 81550faea475 to 4387e3248109 (1 revision)
  • 9ad005a Replace base::StartsWith with starts_with in Iban
  • 25bc1d3 Waveshaper RenderSizeHint test: update test expectations
  • a0ad012 Reland "Enable network sandbox by default on Windows"
  • 51a413b Migrate MediaTray to use ImagedTrayIcon
  • 2db3b6c Roll ANGLE from 8c9aded1f44e to 405f073968f3 (4 revisions)
  • bfabc41 Roll Chrome Win32 PGO Profile
  • 16bdd11 Roll Chrome Mac PGO Profile
  • d04ca7f Roll Chrome Win64 PGO Profile
  • b2ffaa1 Reland "Migrate WmModeButtonTray to use ImagedTrayIcon"
  • ee73739 Add a test case for instance destruction during invoke.
  • 894dcd0 Roll Chrome Linux PGO Profile
  • bb5fce2 Roll WebView ARM64 Orderfile from eZZSbktg8vC-heBHk... to 6Epu1QIpppTVWVID2...
  • 51a1f3d Extending Bluetooth related flags
  • 99bb75d Roll vulkan-deps from b31cea9d0a94 to 74d9dddc22b8 (1 revision)
  • 6b9019c Roll Chrome Win ARM64 PGO Profile
  • e2bbf10 Revert "Site search: Handle UI state for keyword mode"
  • 5c757c9 Don't attempt to merge metadata on a null VideoFrame
  • 93e22e7 Enable EnableRootNsDnsProxy by default
  • 714fd57 Updating trunk VERSION from 7728.0 to 7729.0
  • 5e70d3b Modularize //chrome/browser/performance_monitor
  • d50d95a Roll Chrome Mac Arm PGO Profile
  • ae43d8d Site search: Handle UI state for keyword mode
  • 20d92ae Site search: Encapsulate keyword text manipulation in AutocompleteInput
  • 017ad3a Roll Chrome Android ARM64 Orderfile from SCOqOph1LzCJ_DXd1... to nRk2dgam8PNerR7Y3...
  • 4fce95d Introduce EnableErrorCodePropagationForPreconnect feature
  • 0576a5a [TreesInViz] Compute checkerboarded_needs_record in renderer process.
  • f229d97 Roll WebView ARM64 Orderfile from U4ePdJh5t6imnKO0G... to eZZSbktg8vC-heBHk...
  • 59ba5be [ios] add new metric for explain with gemini
  • a47ea43 [AF] Create AutofillEnableOmniboxAutofill flag
  • a285c52 Make the tab grid action button not important for accessibility when it's a PIN button
  • 076328c Add SeparateDefaultAndPinPrompt to fieldtrial_testing_config.json
  • b13b5d0 [Perf] Temporary repeat of speedometer3 on mac-m4-mini-perf
  • ad97a90 Refactor: Use a dedicated callback type for preconnect requests.
  • f17354c Roll libunwind from 78884e23fe39 to db838d918570 (1 revision)
  • f7d0665 Pass empty path when writing bookmarks to clipboard on macOS.
  • d759141 Log isInstalled ClassNotFoundException
  • d12bcc8 [Extensions] Handle stale DidInitSWContext during extension reload
  • 2405c3b [Autoplay] Add telemetry for autoplay policy decisions
  • 2ccd7f3 [aim-tools-models] Fix compile error on builders due to deps issue.
  • 941f4e6 [A11y] Update AXPosition and Range to match newlines from content
  • f956917 [finds] Add MES type on the client
  • 6fac5f1 [WMPI] Cancel background video track status updates
  • 9e07db5 Roll optimization-guide from a6e62bf09385 to 3d51aef6760c
  • 345132a [Bookmarks] Fix stale "Open all" UI count in submenus
  • b736f05 Roll ios_internal from 8259e1f78f3a to b172340740be
  • f94de74 Roll Skia from b51dcb26b20b to 812c2e24f75e (2 revisions)
  • 7174185 Roll Chrome Android Desktop x64 PGO Profile
  • 88a7116 [searchbox] Improve multi-line test and add keyboard modifier test
  • eb740c2 Roll src-internal from 2f9a7ad0766b to 4fb23b165b32 (1 revision)
  • 0b4371b [actor] simplify PerformActions API
  • 7991ae8 Move IDS_BRUSCHETTA_* strings from C/B/ to ash/ash_strings.grd
  • 311e421 Revert "Implement WebUILocationBar::GetAnchorOrNull"
  • 4d20ea5 [projects] Update Resumption Rail IPH promo specification (2/6)
  • f0aa8cf Roll clank/internal/apps from 5ccba49bc553 to 733346ddc15d (1 revision)
  • f29f83c mojo: Fix trace event mismatches in mojo sync methods
  • 49c10be Roll Chrome Android ARM32 PGO Profile
  • 3076e5f Revert "Add SSM support to Direct Sockets API (services/network and Blink layers)"
  • f4237a2 [webxr] Fix argument order in XRSystem::CreateViewerSession
  • 0e8ec1e Add media log for webrtc uses of video encoder
  • 2a41a2a Roll WebGPU CTS from 67c7a2fbde3f to 4cafebf94970 (1 revision)
  • b8d3c33 Roll Chrome Mac Arm PGO Profile
  • 1fd46ac [TabData] Tab sets data from TabDataObserver
  • ab7c3f8 No image drag when DropDataProvider is not registered
  • 05ebaf8 [GlowUp] Modify contents area background
  • 8ea4441 [contextual-tasks] Fix playZeroStateAnimations_ crash
  • f8eb340 [AIM] Handle selection of new tools.
  • 8e23498 [AIM] Set defaults and respond to clicks for tool and model props.
  • fd2282a [Contextual Task] Fix Flakey Test
  • f916d0e Roll vulkan-deps from ca1588fb8a99 to b31cea9d0a94 (2 revisions)
  • 1207e7a [Persist] Wire RecordingTabCreator
  • 3eccb73 Roll Chrome Android ARM64 Orderfile from Yr7QfbVyPvyQoTuD8... to SCOqOph1LzCJ_DXd1...
  • eb57c72 [fuzzilli] Add v8:fuzzilli_cov as fuzzilli driver dependency
  • 1886db4 [Signin][Android] SafetyHub: Wait for UI dependencies before initializing sign-in coordinator.
  • 0cd822e [crd host][linux] Permission +rx for parent directories in multi-process script
  • 517b023 media: Add structural H264 parser fuzzer
  • bff6fe8 Roll Chrome Win32 PGO Profile
  • 9f350b9 [finds] Introduce PageLoadMetadata in chromium
  • 255a463 Roll Chrome Win64 PGO Profile
  • 703e4ca Ensure inspector media context is released during WMP shutdown
  • 0098c0a Roll clank/internal/apps from fab422ddb43b to 5ccba49bc553 (1 revision)
  • 0c101f5 Roll WebView ARM64 Orderfile from rg-zRnIEZ5qhkAP_T... to U4ePdJh5t6imnKO0G...
  • 1d691d6 Roll androidx from o4DXbfi661jCyVTmG... to uw8FaVpFdPaFx2Y4c...
  • 09a9a47 [Bundled Security Settings] Fix JS Opt Pref for ESB Migration
  • d3a9d47 Automated Commit: LKGM 16612.0.0-1075865 for chromeos.
  • 92cd2ff Remove empty chrome/browser/web_launch/ directory
  • 144db8f Fix traffic annotation auditor to work on Windows
  • 7985e50 [Persist] Add stop recording functionality
  • bd89b93 autotest: Auto-resolve test files for --run-changed
  • 8f080b0 spellcheck: also remove suggestion markers of Misspelling / Grammar types
  • d18cf51 Ensure suggestions list is not shown when jumping "back" to NTP.
  • a5cf4c3 [Glic] Actor overlay shouldn't show on non browsing layouts
  • b8c9c80 spellcheck: report spelling markers conditionally in spell check requests
  • 6711e6f fjord-oobe: Use default gaia buttons for squid devices
  • fb62701 Reland "[headless] Fix SetZoomedWindowBounds tests"
  • 878f494 Pull data_sharing_ui.h into its own GN target
  • b671c24 Roll DevTools Frontend from d71ff029a14e to e76724536d8a (1 revision)
← Back to all summaries