Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2026-03-06

Overview

This daily summary covers 741 commits, with 565 deemed relevant to developers. The changes span from the first commit ((2b3bc52)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((2b3bc52))) to the last ((485e8be)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((485e8be))). The day was marked by a large number of breaking changes to public C++, Mojo, and command-line APIs, requiring significant updates for embedders and implementers of various Chromium interfaces.

Breaking Changes: Core & C++ Interfaces

  • ⚠️ BREAKING base::File I/O methods are now private and require base::span. The public, non-spanified base::File::Read and base::File::Write overloads that take a raw char* have been made private. Embedders must migrate to the public overloads that use base::span, which also feature a different return type (std::optional<size_t> instead of int). (2f6529b)
  • ⚠️ BREAKING Multiple interfaces now require implementation of new pure virtual methods. Implementers of blink::WebMediaPlayer must add Shutdown(), NotificationSchedulerClient must add OnShowNotification(), and DomStorageDatabase must rename RewriteDB() to CleanUpStaleData(). Builds will fail without these updates. (2f6df87) (6a1607a) (6f9a1f4)
  • ⚠️ BREAKING ui::ElementIdentifier and related types are now strongly-typed. ui::ElementIdentifier, ui::CustomElementEventType, and TypedIdentifierOld have been migrated to a new UniqueIdentifier system. Code that relied on the previous void* or alias definitions will break and must be updated to use the new strongly-typed identifiers. (3ac974d) (fe6930d) (ed4367a)
  • ⚠️ BREAKING The public class TabRendererData has been removed. Clients are now required to use the tabs::TabData struct instead to represent a tab's visual state. This is a public API removal that will break any code depending on TabRendererData. (af1897a) (bf0fd12)
  • ⚠️ BREAKING The remoting::SignalStrategy public interface has been refactored. FTL-specific methods have been moved out of the base class and into a new, dedicated FtlSignalStrategy class. Embedders of the remoting component using FTL methods directly from SignalStrategy must update their code. (f154eb3)
  • ⚠️ BREAKING The DataTypeController::GetPreconditionState() method signature has changed. This pure virtual method in the sync component now requires a new context parameter, breaking all existing subclass implementations. (37a2d3f)

Breaking Changes: Web & Feature APIs

  • ⚠️ BREAKING The caBLE v1 extension has been removed from the WebAuthn public API. This includes its removal from AuthenticationExtensionsClientInputs in Blink and the authenticator.mojom interface. Web applications or embedders using this v1-specific extension will break. (8b50d0e)
  • ⚠️ BREAKING The PageLoadMetricsObserver::OnSoftNavigationUpdated method has been removed. It is replaced by OnSoftNavigation(), which no longer passes mojom::SoftNavigationMetrics as an argument. Observers must now retrieve this data via the PageLoadMetricsObserverDelegate, breaking existing implementations. (a431cb8)
  • ⚠️ BREAKING The Audits.checkContrast command has been removed from the DevTools protocol. Any automation or tooling that relies on this command for programmatic accessibility contrast checks will break. (f0f700c)
  • ⚠️ BREAKING The callback type for FederatedEmbedderLoginRequest has changed. The callback in content/public/browser/webid/federated_embedder_login_request.h is now a base::OnceCallback instead of base::RepeatingCallback, requiring updates for FedCM embedders. (2d27c87)
  • ⚠️ BREAKING Several public utility methods and command-line switches have been removed. This includes ExtensionTabUtil::OpenOptionsPageFromAPI, the --launch-isolated switch (replaced by registry settings on Windows), and the --disable-webgl-image-chromium switch. (1567ebe) (03a70ad) (8854092)

Breaking Changes: Platform Specific

  • ⚠️ BREAKING The media_message_center::NotificationTheme struct and SetColorTheme method have been removed from Ash. Embedders relying on this method to theme media notifications must migrate to the MediaColorTheme system. (3037e41)
  • ⚠️ BREAKING The crosapi::mojom::SearchResultConsumer interface has been removed. This breaks the public API contract between Chrome and ChromeOS for clients that used this Mojo interface for asynchronous favicon updates in launcher search results. (6e0cbba)
  • ⚠️ BREAKING The public contentView method has been removed from ios/web/public/web_state.h. This is a public API removal for iOS embedders, who must find an alternative way to access the web content view. (b7e91a5)
  • ⚠️ BREAKING The Mirroring Service and cast_unittests are no longer built for Android. This is a significant change for any Android build configurations that depended on these components. Note: This change was temporarily reverted due to build failures. (f041e4f) (c2bb3f3)

Web Platform & Media

  • The border-shape CSS property is now enabled by default, allowing developers to create non-rectangular borders on elements. (e8744fa)
  • A new job type was added to allow WebSocket connections to reuse existing QUIC sessions, enabling WebSocket over HTTP/3 and improving connection performance. (9c623b4)
  • Support for iterationComposite: accumulate has been implemented for CSS transforms, allowing animations to build upon each other. (d72cf81)
  • Static <video controls> elements are now treated as replaced normal-flow stacking elements to fix painting order issues with surrounding content. (86b497d)
  • Logic has been added to generate origins from nonces for sandboxed iframes in both the browser and renderer processes. (8fcb4c3) (4b16c54)

UI & UX

  • The Vertical Tabs feature received several improvements, including better accessibility for reordering, preventing scrollbars during animations, and enabling tab activation on link drag hover. (fa9ee99) (b37372c) (22d54ca)
  • The cr-searchbox Polymer component was refactored to extract the input field into a new <cr-searchbox-input> LitElement, improving modularity in WebUI. (aa79bce)
  • The bookmarks overflow menu will now remain open after an item is deleted, improving user workflow. (a324040)
  • The WebUI for the deprecated Auto Tab Groups (ATG) feature has been removed. (549edd6)

Platform Specific

  • Android: Autoplay logic was updated to better align with desktop by supporting AutoplayAllowlist and AutoplayAllowed enterprise policies, gated by new feature flags. (1aef470)
  • Android: The PDF viewer toolbar received new zoom controls and other layout updates. (fe18251) (4c45a93)
  • Android: The SyncPromoController and SigninPromo components were removed following the UNO phase 2 launch. (d8ff434)
  • iOS: A significant effort was made to deprecate the use of initWithFrame in tests in favor of initWithWindowScene to align with modern iOS SDKs. (2ed8655) (a53b8e0) (39f02fa)
  • iOS: Network error translation was improved to correctly handle nested errors introduced in recent iOS versions. (4a62a8c)

Code Health & Infrastructure

  • An initial Rust implementation of ChildProcessSecurityPolicy was introduced. It will run in parallel with or replace the C++ version, controlled by a feature flag, as part of a memory safety initiative. (5440cf2)
  • A new embedder API was added to the Back-Forward Cache to allow disabling the caching of forward navigation entries. (e2a6aae)
  • The DiceResponseParams structure was refactored to support multiple accounts, in preparation for the upcoming Connected Accounts flow. (740a888) (2f4419c)
  • A potential out-of-memory crash in the History Embeddings component was fixed by adding a size check before decompressing gzip data. (3dcee0a)
  • Scaffolding and infrastructure were added for new AI-powered features, including a new AI Taxonomy API and the "Finds" project, which will use an LLM API. (4f13048) (0fb9b77)
All Commits (741)
  • 380f7d3 Roll android_deps from gOFPZuLmUt7S4rnhu... to umaYTBt4Vsa5QZYp5...
  • 485e8be Revert "[wpt-exporter] Implement Force-WPT-Export tag"
  • 9215cce Roll androidx from G93sLsFQ30pYjUz4k... to 3dAa4mA5oa8NtSgJT...
  • 98a65b0 [Extensions] Deduplicate rule identifiers in RemoveRules
  • 813d2a9 [crd host][linux] Terminate remote sessions in dev script
  • 4ed2be7 [contextual_tasks] Add mojom plumbing for Reopen Tabs
  • aae23b9 Roll clank/internal/apps from 584df42886ce to ad6682a29a0f (1 revision)
  • ed4367a [Core] Finish TypedIdentifier migration.
  • 0e53947 Add undo behavior in chrome://skills delete toast
  • fc80afd [iOS] Add field trials for Docking Promo 2.0
  • 8bf2b94 [Extensions] Update ExtensionTabUtil::IsTabStripEditable()
  • b4b488e Revert "[Extensions] Add DumpWithoutCrash in RendererDidInitializeSWContext"
  • 3ff9fc1 Roll WebView ARM64 Orderfile from AhVm08USOhHQ8hYLb... to pepZXarjpFCoi-85z...
  • 3f7b201 Roll Chrome Android ARM64 Orderfile from WP-XdGPMD3aAsWVzZ... to cXexxYdOXSHESSTtl...
  • e345b15 WebUI: Refactor webui_eslint_plugin.js to separate files per rule.
  • e9a5694 Roll clank/internal/apps from 823ea96e527a to 584df42886ce (1 revision)
  • 19735fd [GlicSettings] Add Java Prefs
  • baeae7e [NtpRefactor] Refactor MostVisitedMediatorUnitTest.
  • eb85301 [content] Refactor network service thread priority boosting
  • f08fb55 Record updateStates and result instead of outcome
  • 75b21f6 WebNN: allow WebNN tasks to be directly scheduled
  • 5995871 [iOS] Fix dangling raw_ptr in browser_coordinator and settings_table_view_controller
  • 1baceb0 [Test Automation] Add ability to defer certain test failures
  • f4a2813 Roll Chrome Mac Arm PGO Profile
  • 9d9dc0d [iOS] Add metric for Gemini page eligibility
  • 19b3c56 [projects] Add user action metrics for the panel
  • ade2a41 [AutoPlay] Enable Media Engagement bypass and preload for Android Desktop
  • 319f753 [Core] Migrate StateObserver to new TypedIdentifier
  • 4f6b51b [html-in-canvas] Ensure canvas children create a cc::Layer
  • ae7feea Roll BoringSSL from 5bf54f4ac7f7 to 30cd935189c9 (1 revision)
  • 8b4624f Add UseCounter for OpaqueRange
  • e809869 [Extensions] Add filled style to button in install dialog on android
  • 44b76e2 [Core] Migrate FrameworkSpecificImplementation to UniqueIdentifier
  • 289c54a [iOS] Add Gemini to ineligible pages
  • 62a31d2 chrome://skills ui tweaks
  • 164d114 [Core] Migrate Product Messaging to UniqueIdentifier
  • 4f23abf Roll ANGLE from 2ec1a01ba6b2 to 56c952c65e74 (4 revisions)
  • 25b61d1 [dbsc] Migrate signing quota tracking to base::Time
  • d06c938 Reland "Move on-device-translation CLI logic to the installer"
  • 2134ac1 [a11y] Improve metrics for FakeAndroidCache
  • 2d6f077 [WMP-MS] Ensure timers are stopped during Shutdown.
  • fa9ee99 [Vertical Tabs] Accessibility: Reordering Tabs
  • e8e8ac6 [Core] Migrate Unowned User Data to New Typed Identifier
  • 67b2379 [NtpRefactor] Move usages of MVTilesLayout to MostVisitedTilesCoordinator.
  • 84dcc00 Roll Catapult from d903007eb778 to b332606dfdf4 (1 revision)
  • 2d2c89c Use macro for spanified inputs in //base fuzzers where applicable
  • 94f20c7 [//cc] Update comment around checkerboarded_needs_raster
  • 2935045 [memory] Add 'kFill' for contenteditable fields
  • d84710f Roll compiler-rt from 568f6a925307 to f285bd77250d (2 revisions)
  • 33af578 Roll eigen from d8c8ee6fb2cf to 5bacb5be9a68 (1 revision)
  • 382d8c3 [crd host][linux] Script to start dev multi-process host
  • 93953d2 [context-input] Fix task creation due to reordered url params
  • 0dc1b29 [FedCM] Skip granting sharing permission in embedder initiated login
  • 351b7a0 Fix dangling pointer crash in ReceiverSessionClient
  • 66a918f Roll optimization-guide from df2ce4573d0b to 8ba4667f0e12
  • 5ed885e Add a json export button to safe browsing deep scan
  • 03a70ad Move isolation config to registry
  • 0ca0ff3 Roll Chrome Win64 PGO Profile
  • f301e4a Fix WebGL conformance/uniforms/gl-get-uniform-location-errors.html test
  • b6ec3b4 Remove BrowserActivator
  • 86b497d Treat static video controls as replaced normal-flow stacking
  • defc6ee Add metrics for debugging metrics loss
  • 75fca58 DomStorage: Add DomStorageSqliteInMemory to fieldtrial_testing_config
  • 3037e41 Remove NotificationTheme
  • fa05216 [Core] Migrate FeaturePromoPrecondition to new TypedIdentifier
  • a431cb8 Reland "[soft navigations] Improved browser-side soft navigations tracking"
  • 633f5ba [Frameworks roll] Roll to 879743629 piper revision
  • 38f557c Register Content Annotation model execution feature to log default UMA metrics.
  • 6f9a1f4 [DomStorage] Rename RewriteDB() to CleanUpStaleData()
  • c2bb3f3 Revert "[Code Health] Ensure MirroringService isn't built on Android"
  • ed3affb Roll src-internal from 7cea0ccd37de to 9c8640cc2edf (1 revision)
  • 950b524 Revert "[Reading mode] Only show omnibox after IRM is closed by the user"
  • ef3672f fuzzing: Replace fuzzing mailing list with individual names
  • 7e60ef1 Update CBB autoroll for the builds refs
  • f041e4f [Code Health] Ensure MirroringService isn't built on Android
  • d149c98 Site search: Introduce and plumb SiteSearchData class
  • 1ce4a77 [Core] Temporarily alias TypedIdentifier
  • 0db0e19 [Tab Strip Glic Button] Fixes expanded button from overlapping NTB
  • d73d453 remove waffles from extensions policy yaml
  • 40bbcc6 Disable incognito window feature on small tablets
  • 87dd542 [Report-unsafe-site] Don't add report-unsafe-site menuitem in incognito.
  • d2cd780 Roll Perfetto from 7d3fdf89c361 to 01b3bcc18ba2 (3 revisions)
  • c22ce43 Composebox: Fix incorrect bindings in Lit templates
  • 6c0cb64 Update `TestExpectations` with bugs filed for crrev.com/c/7639762
  • a32ce05 Revert "Null-check GetSettings() for text-scale meta"
  • bc6a962 Roll WebView ARM64 Orderfile from P9P6NVKJK5EwJqmMo... to AhVm08USOhHQ8hYLb...
  • 5d6170b [glic] Add initial invocation source histogram
  • 5a5277b Add a kill switch for dark-mode explicit outline-color focus rings
  • 6a1607a [finds] Refactor notification scheduler client with onShowNotification
  • aa79bce [searchbox] Extract searchbox input into a new component
  • cb9898d [code-health] Clean up `ntp-realbox-contextual-and-trending-suggestions`
  • 89d7794 overscroll: Remove scroll container dependency from overscrollcontainer
  • 0c765f7 Support launching gemini.ps1 on Windows
  • 19c7f5e [gap-decorations] Suppress full effective gaps for flex containers
  • e034b49 [AIM] Add histograms entry for AttachmentsPopupButtonClickedInSession.
  • c2be0a6 [tips] Update the logo images for some v2 features
  • 1a48f36 Disable hang watcher on call to quarantine file
  • 9c9fb8f Roll Chrome Win32 PGO Profile
  • 5ada4f3 Roll Chrome Mac PGO Profile
  • da4ef6c [PDF Ink Signatures] Enable Ink text highlighting by default
  • 9765775 Roll Chrome Mac Arm PGO Profile
  • af2f418 [FontDataService] Add fieldtrial config for FontDataServiceChromeOS
  • 31db085 Roll clank/internal/apps from 06d80b87b6f0 to 823ea96e527a (1 revision)
  • b1386e0 [aim] Downstream `is_fusebox_eligible`
  • ac7ebbf [Bundled Security Settings] Fix Generated Pref Wiring for Safe Browsing
  • 77cca17 [Vertical Tabs] Hard-Coding Move Tabs to the Side for Views Menu
  • 3f67ccd Roll eDistantObject from d09cb6380538 to 9710c4ee1846 (1 revision)
  • a1f12e9 [HSTS] Update bulk entries
  • 22d54ca [Vertical Tabs] Switch active tab on link drag hover
  • 2dfbed1 media: Report UMAs for MediaFoundation codec package installation
  • 99533ac Add battre@ to accessibility_annotator/OWNERS.
  • 1567ebe [Desktop Android] Move ExtensionTabUtil::OpenOptionsPageFromAPI()
  • 5f03588 [iOS] Remove toolbar highlight when exiting in-progress Guided Tour
  • 8d185b5 Migrate annotator comm factory to typescript.
  • 9183f65 Migrate annotator browser proxy to typescript.
  • b37372c [Vertical tabs] Don't show scrollbars when expanding/collapsing tab strip
  • bd013d4 Add selection-overlay-base lit version
  • 60d0331 Update No Tab Groups image in Projects Panel
  • 89bb8c8 Add a generic `RetryStrategy` and `RetryableTask` interface and use them
  • 0fc9bfe update tab_menu_model_browsertest for GlicMultiInstance
  • 549edd6 [TabOrganization] Remove ATG WebUI code
  • 7e9ee26 [rust] Fix Clippy warnings: //content/browser/...
  • 435ddb0 [projects] Auto-scroll tab groups as a dragged item is held near an edge
  • b457156 Cleanup IsReducePPMsEnabled experiment code
  • 618426d Revert "Remove D3D KeyedMutex Path in Media Capture patch"
  • 8b50d0e [WebAuthn] Remove CaBLE extension and plumbing
  • df27344 Revert "Clarify ObserverListReentrancyPolicy"
  • e8744fa Flip the flag for border-shape
  • 7b9f8a7 [WebOTP] Extend histograms
  • a3bc81d Add Failure expectation to WaveShaper test
  • 35f10c5 [builtin-ai] Disable immediate download after registration
  • 5ed3060 [Vertical Tabs] Update strings for launch
  • 7749da0 Report correct taskbar pinning channel for new default browser prompts
  • 3a11591 [Readability] Update title vs. headline heuristic.
  • 293558b [FedCM] Extend some histograms
  • eeddd33 [contextual tasks] new-flakey fix
  • 8827132 Extend client hints metric expired date
  • 21573da Fix InputStateModel transfer from Omnibox to Cobrowse when there is no task_id.
  • d5d6a08 Clarify ObserverListReentrancyPolicy
  • e8f27e5 [Drag and Drop] Enable BookmarkBarFastFollow by default
  • d4fc818 Revert "[headless] Fix SetZoomedWindowBounds tests"
  • 7c631d2 [Task Nudge] Add MenuButtonController to task icon for bubble toggling
  • 8a8bad8 [CIPA] Fix some thumbnail spinner bugs
  • e9ed721 Put back enum array, to keep Le Petit Bistro in business
  • 6263231 DomStorage: Also set kDomStorageSqliteInMemory in parameterized tests
  • a8b57d7 Add Autofill.Actor.PerfectFilling.{Address|CreditCard}
  • c72ba83 Introduce class to take screenshot for report-unsafe-site 10/X
  • 570b8c0 Fix headless build with headless_use_embedded_resources
  • daca22d Wrap libfuzzer_base_wrappers under use_fuzztest_wrapper
  • cc2eb98 Split SignalStrategy::SendMessage into SendMessage and SendReply
  • 34722dd PWA/TWA Re-exposed to BrowserWindowInterface behind Flag Guard
  • 272d83f Feature Flag for BWI Exposure to Custom Tab Activity
  • 1aef470 [AutoPlay] Support Autoplay enterprise policies and user preferences on Android
  • fb13c7a [html-in-canvas] Add a test for onpaint firing due to iframe changes
  • 71cb48b IDB: SQLite store - check task queue before running idle tasks
  • e491774 Anchor highlighting support for WebUI elements
  • 0e85105 remove waffles from Android task_ids
  • 01d0799 [glic] Add Glic startup preferences metrics
  • 84ee1fd Add more actions and enums for cross-device setting import
  • fe805c1 [Contextual Tasks] Fix clip-rect height not updating on side panel open
  • 1ceca64 Tests to verify opaque origin generation for sandboxed frames
  • 59fe5a9 [iOS] Remove Deprecated Feature Flag In Gemini Configuration
  • 3a856e7 Roll src-internal from 97508b50b529 to 7cea0ccd37de (1 revision)
  • 4c72808 [WMPI] Ensure stats reporters and timers stop before destruction
  • 41319ae Also consider session assigned country for Glic enabling
  • 7a89b0c [Segmentation] Fix unsafe buffer usage in HomeModulesCardRegistry
  • de137a3 [Segmentation] Split HomeModulesCardRegistry tests by platform
  • 1df7eeb Fix android owners in components/contextual_search/OWNERS.
  • 6955170 Roll ios_internal from cfe2d6dbf7c0 to 3d2ddfc35ee9
  • c1c8dbe Update PartitionAllocLockTuneSpin testing config.
  • 5dd40e6 [Extensions] Refactor RequestFileSourceResponse to use ErrorFileSource
  • 5717193 Add AnnotationReducerOnePResolverLoggingData to ModelQualityLogEntry.
  • 4b16c54 Generate origins from nonces for sandboxed frames in render process
  • 8fcb4c3 Generate origins from nonces for sandboxed frames in browser process
  • fdf4e53 Roll Chrome Android Desktop x64 PGO Profile
  • 6fbd31f [TableView] Enable Mouse Hovering on Win/Linux/ChromeOS by Default
  • 8181651 Enable TextInputClientNestedLoop feature in fieldtrial_testing_config
  • a502b78 [MIR] Move static methods from MIMApi31 to MultiWIndowUtils
  • ea61264 [contextual-tasks] Do not use client file hint if auto tab is only file.
  • efecb16 Swallow ActivityNotFoundException when printing
  • b200aae Roll WebView ARM64 Orderfile from Rh7dH9O59JH2N8a_b... to P9P6NVKJK5EwJqmMo...
  • 4f13048 Create renderer side code for ai taxonomy API
  • 021ceac Roll Perfetto from 0571a62b8381 to 7d3fdf89c361 (2 revisions)
  • 3fca961 Kill promptfoo process group
  • 4f3827a Treat inactive incognito window as not restorable
  • e3fa5c8 Add initial base appearance UA-styles for textarea
  • ad16b65 Roll Chrome Android ARM32 PGO Profile
  • d7cbd75 [Web Modal] Remove a11y arg from IgnoreInputEvents
  • 32ebb88 [ffx][flash] Update the fastboot.flash.min_timeout_secs to 600
  • 9aa4800 Roll DevTools Frontend from ae921e728b8f to 0c19a5d3042a (3 revisions)
  • 5872547 Roll Skia from c2038c607c38 to 2ec1e11faad0 (18 revisions)
  • bfde384 [Vertical Tabs] Accessibility: Tab Group Header Menu
  • db853a4 [Gardener] Update test expectations for flaky tests
  • 8711246 [code-health] Clean up `enable-...-google-tts-high-quality-voices` flag
  • 20e5c11 Roll WebRTC from 924dd2ecf8f8 to fb5a86aecea0 (1 revision)
  • 0fb9b77 [finds] Add service/factory scaffolding
  • 7013d90 Complete contextual_tasks_panel_host Desktop implementation.
  • 10a6258 [Settings Search] Make the title breadcrumb scrollable
  • 3cb6a8e [Extensions] Behavior preserving formatting changes
  • 00c48ef [ScrollPredictor]: Make max resample time configurable
  • 11aa0f9 Update timeout to 4 hours for win and linux webium product builders
  • 9f303f4 Add a new chrome://content-annotator-internals WebUI page.
  • 6b26bd1 [projects] Add "Open in Gemini/AI Mode" tooltip to threads
  • fe18251 Add zoom controls to the PDF toolbar.
  • 83daa83 Reland "Add WebUI backwards and forwards buttons."
  • d8afb10 [iOS] Prevent reverting theme when Theme Sync is toggled off
  • 97aaace [iOS] Update Default Browser Promo Instruction Videos
  • ddd120f [next] Fix potential infinite loop of failing network requests.
  • c4d8151 [iOS] Create the Tab Groups iOS Fullscreen Promo
  • a563830 [omnibox] Add interactive tests for context menu entrypoint.
  • 7439300 [Extensions] Fix crash in OpenTabHelper
  • 03f9d31 [Settings Search] Remove flicker when detail pane slides in
  • 0427123 [FedCM] Filter cross-origin third-party requests in SelectAccount
  • 6ae28bc [iOS][Assistant] Refactor detents architecture and pan gesture
  • 16a0ebd Add feature flag for WebUI pinned toolbar actions.
  • 57f8280 media: Remove pepper MediaContentType
  • bf0fd12 Reland "[TabRendererData] Move clients to use TabData"
  • b63b1ba Extend SafeBrowsing.V4GetHash.CacheFullyHit
  • 4919db9 Do not hibernate showing Glic instances on memory pressure
  • 906eae3 [Segmentation] Extract TestHomeModulesCardRegistry into its own file
  • d3b93b4 Split memory dump provider histograms by level of detail
  • f1b8376 Roll FreeType from d262bd978c3e to aa8ca27f9b48 (4 revisions)
  • 04b99d6 Roll Chrome Mac Arm PGO Profile
  • 74c92b9 [webmcp] Add histograms for script tool execution.
  • 2ec2c50 Make LimitedLayerEntropyCostTracker time-aware.
  • b012c12 [ntp-simplification] Add Shortcuts Stable Experiment
  • 054fad1 Automated Commit: LKGM 16606.0.0-1075756 for chromeos.
  • f4553b1 Add guidou as owners of chrome://webrtc-logs implementation
  • ff6491d Edit the group hover card strings for unnamed groups.
  • 8b7a500 [ntp] Get InputState logic cleanup
  • 1ea36d8 Update CanaryDomainResult enum values.
  • 5df1935 [gap-decorations] Fix crash found by fuzzer in flex gap decorations
  • e29b2d4 Do not return a union from HTMLElement::innerText()
  • 2458198 [rustmojo] Enable rustmojo tests on all non-CFI configurations
  • 794f4c4 Null-check GetSettings() for text-scale meta
  • 400426e Update autofill_agent to support showing and selecting scan card type
  • 24176f5 [Actor] Implement manager for ActorForegroundService.
  • c084a63 remove waffles from flag-metadata
  • 1d25b0e [Settings Search] No fullscreen EditText in landscape mode
  • 6d814a9 [Reading Mode] Update color tokens for immersive toolbar.
  • 0bab27e IDB: SQLite store - release cursor statements when idle.
  • c2b3058 Revert "Fix unsafe buffer usage in gamepad_pad_state_provider.cc."
  • 10d706e [Linux] Update docs to use new nssdb path
  • b92dec4 [iOS] Disable app bar buttons when they should not be enabled
  • 6ef34e6 Remove direct usage of webrtc::ArrayView in remoting/
  • 2f6529b Make non-spanified base::File::Read/Write overloads private
  • 8887f83 Prevent crashes in InProcessBrowserTest::RunScheduledLayouts when widgets are destroyed during layout.
  • 8efe7a6 Roll Chrome Win64 PGO Profile
  • 1489aa2 Import wpt@cf7b57022b34993c72946aee497c545f368e1267
  • 0aa3e6a [iOS] Implement SafeBrowsingIOSUIHandler class
  • 02f7207 [Reading mode] Only show omnibox after IRM is closed by the user
  • 1d33e94 Refactor ActorKeyMetricsRecorder to handle multiple products per form.
  • 9119844 [Windows] Update sandbox policy rule fuzzer to use wstring_view.
  • 4c48c2a [DoH] Re-add manual browser tests for DoH providers
  • 1a34b1d Enforce Data Controls policies for custom clipboard formats
  • 12cc161 Speculative fix for GetTextContent crash.
  • 174bb3a [Glic android] Fixed background new tabs opening on foreground
  • f5010bb Roll ANGLE from b2be60fe4ec8 to 2ec1a01ba6b2 (1 revision)
  • bf6c98e Replace fwrite with file operations in base to fix unsafe buffer usage.
  • 7faba5c Roll src-internal from 40955542aeb7 to 97508b50b529 (1 revision)
  • dab722e [iOS] Use autoresizing mask for AppBar
  • 9531a2b Roll Chrome Mac Arm PGO Profile
  • 65476c5 Extend expiration date for EnableSchemeBoundCookies virtual tests.
  • e76b92a Move FileInfo to components/
  • faf69cd [Omnibox Next] Special case contextual tasks url to show recent tab chip
  • 8f28c4c Have glic test client show account picture for federated credentials
  • 22eda40 [v8] Fix blink::ToBlinkString(..) to avoid double copying
  • 757aee4 [Privacy Sandbox] Cleanup strings
  • 8006fac Clear SVGLengthList/SVGNumberList on parse error
  • f4d3e93 Fix GTK4 window control hover and pressed state rendering
  • 673e701 Create AutoPip Happiness Tracking Survey (HaTS) service and factory
  • 09b32a4 Fetch contextual version of CanUseModelExecutionFeatures on iOS
  • 6041aea [AIM] Remove @VisibleForTesting on xForTesting methods.
  • ef65910 [iOS] Add incognito lock state to IncognitoState
  • 26d7a63 [TreesInViz] Pass LatencyInfo from renderer to viz.
  • af31c88 Make (BrowserContext|PrefetchService)::IsPrefetchDuplicate s' arguments const
  • ba1190c Roll Chrome Win32 PGO Profile
  • 0bfdc39 [code-health] Clean up `arc-rt-vcpu-dual-core` flag
  • e1bafe1 [Clarity] Add support for additional options on anchored messages
  • 4b0a6e2 Revert "Re-enable flaky cookie controls interactive UI tests"
  • ea8adc7 Roll Perfetto from 289efe0fd004 to 0571a62b8381 (2 revisions)
  • 17e803d [Glic] Added actor task status observer to Android handler
  • 1513230 [iOS] Add GeminiConsentViewController to replace deprecate BWG naming
  • 144c842 Fix bug with sensitivity check
  • d303fe4 [TabBottomSheet] Use state changed instead on onSheetClosed
  • 1b99434 Roll Dawn from 59b748e08b4f to 4772f72b86e1 (2 revisions)
  • 9f742dc [Reading Mode]: Fix menu flickering
  • 4bc993a Add a default prompt context part for text selections.
  • 4c45a93 Update PDF toolbar layout and styling.
  • f6a626c [headless] Fix SetZoomedWindowBounds tests
  • 3786cfb [Metrics] Extend Protego and TailoredSecurity histograms
  • f0f700c Remove Audits.checkContrast DevTools protocol command
  • 4abd208 [MultiColumn] Fix the disabled backpress in Language
  • 9d2ea5b Sync feature protos.
  • fcdbb77 [ComboButton] Fix icon pixelation
  • 7bac303 Update some tests in preparation for removing glic single-instance
  • 04437e2 Add data models for AccessibilityAnnotator intent
  • 0ddf8e6 [dbsc] Prevent prefix collisions in profile path application tags
  • d9ca452 Revert "[iOS] Add tests to ensure that fullscreen metrics are correctly recorded"
  • 39aeedd prefetch: Move parts of devtools UA override
  • 4ce0457 Extend expiration date for EnablePortBoundCookies virtual suite.
  • 45b2a33 [Metrics] Extend SafeBrowsing.EsbDisabled.TimesDisabledLast28Days
  • bcb9cca Add local code coverage guide for fuzz tests
  • 0ff4d6b [Vertical Tabs] Allow dropping links below the new tab button
  • b52961a [rust] Update `bindgen` to version 0.72.1
  • b00909d [contextual tasks] Fix subsequent queries opening in side panel.
  • 5e65c7c Mock PrefersReducedMotion for ShouldShowBlurTransition unittests
  • c36e09c Revert "Implement basic observers for DirectServerEntityProvider"
  • db16a3f Revert "[iOS] Remove FullscreenExitReason and rename FullscreenModeTransition{Reason,Trigger}"
  • 845b67c Revert "[Signin][Android] Remove SyncPromoController and SigninPromo"
  • 2316708 Reland "[Reading Mode] Fix infinite spinner for pages without readable content"
  • 84c707b [User Education] Allow non-timeout toasts behind an allowlist
  • cdf972d [ios] Fix testToolbarVisibilityWhileBlockedRightAfterColdLaunch
  • d4e2612 [iOS Blink] Disable kIsBbkHardwareSupportedHistogramName constant
  • e10c845 Reland "a11y: Add performActionOnNode AIDL and focus test"
  • 44ab614 Roll DevTools Frontend from 78e999c51401 to ae921e728b8f (1 revision)
  • bd8d0df Implement basic observers for DirectServerEntityProvider
  • 1e16ea8 Roll Chromium Variations from IY5yPUt0dIbnJPKOZ... to 68shtakpLYaY-OnKD...
  • 808ffc3 [reland] [contextual tasks] delay url creation
  • 35eab4a Add Autofill.Actor.KeyMetrics.FillingCorrectness.{Address|CreditCard}
  • 9d2afce Start Cronet threads after initializing base::Feature
  • 0d22bbe Roll WebRTC from ecde302f3f4e to 924dd2ecf8f8 (1 revision)
  • 51a16df HistoryDataTypeController: Use account_managed_status from context
  • 755237b Migrate ServiceWorkerMainResourceLoaderInterceptor to ChildProcessId
  • 83f275d Apply correct highlight color to items in the profile menu
  • 95f0165 Roll ios_internal from 660e53bce1ad to cfe2d6dbf7c0
  • 854c592 Add logic for SQL migration
  • d3c620a Adds logging of AudioManager create/restart
  • d27db8d [Masonry] Store grid axis start offset on grid lanes algo
  • adac05a [Side Panel Infra] Start Android specific impls for some methods
  • ef4ddc3 WebContentsObserverProxy remove global ref
  • ff66565 Fix null WebContents issue in SelectionPopupController
  • ac2d1ab [WebContents] Fix invalid destroy sequence in WebContentsImpl
  • 8fc88bd [owners] Remove shibalik@chromium.org from chrome/browser/ui/views/tabs/OWNERS
  • 01dcb65 Roll V8 from a6fb0d1b16ae to f8125901e444 (12 revisions)
  • 1663727 Sync: Populate PreconditionContext with account managed status
  • 6300a75 [Search] Move `OrderByManagedAndAlphabetically` to utils
  • 84e21bd Fix WalletHttpClientImpl content type
  • 3d139c1 build: Use is_a_target_toolchain to determine if building for target
  • 8729d52 [CSS] Add revert-rule to will-change-invalid.html WPT
  • b0636db Add strings for the tab group header hovercard.
  • e272212 Optimize ConvertUtf16ToUtf8 using simdutf
  • 47934a9 [Setup List] Introduce parameters for AndroidSetupList study
  • 6f531e8 [iOS] Fix broken bubble calculations for guided tour
  • 66bd917 Roll Chrome Win32 PGO Profile
  • 99b4ed3 [//media] Streamline PCVR waiting on token
  • eb760a9 Roll Media App from fqoM2Di1GrPFVktvY... to 92cymZkTpcrxMsZ1B...
  • d23ab77 Add command-line (--translate-target-language) to auto translate page.
  • 07a7b5c Respect explicit outline-color for focus rings in dark mode
  • 84ce61a @memory: Feed search results with Accessibility Query Service
  • 521064a Roll WebView ARM64 Orderfile from dqUmF8rVk3x1ZdRJo... to Rh7dH9O59JH2N8a_b...
  • e4dce1d remove waffles from histogram definitions
  • 2ed8655 [ios] Deprecate UIWindow's init in TwoScreensSigninCoordinatorTest
  • d8ff434 [Signin][Android] Remove SyncPromoController and SigninPromo
  • f0d34ef [ScrollPredictor] Fix scheduler stall for deferred scroll events
  • 70f0488 Introduce CoreAudioUtil class with LogCallback
  • 8b2dd58 Legion: Add field trial testing config
  • 1623635 Roll Chrome Mac PGO Profile
  • 1f0aec1 Roll Chrome Android ARM32 Orderfile from ORq-sxaE9eeZDevmj... to 0wCmtVeV-HAg6G_fE...
  • f71caa9 [iOS] Add tests to ensure that fullscreen metrics are correctly recorded
  • 208d2f3 [iOS] Remove FullscreenExitReason and rename FullscreenModeTransition{Reason,Trigger}
  • 1265dc7 [Blink] Add wrapper around RuntimeEnabledFeatures::WebGLImageChromium
  • e327feb [//content] Move switches::kEnableWebGLImageChromium to Blink
  • 4c562b3 Roll src-internal from a0bd5ab10abf to 40955542aeb7 (1 revision)
  • d692101 [iOS][Forms AI] Move AutofillEditTableViewController into its right place
  • 2a3c498 Re-enable VT drag tests on Wayland
  • 38849a8 Roll Help App from U2SxDniYkvWEMotXj... to YnPm7FWzq9zNdUJ84...
  • 136612f Roll WebRTC from 7f5a8b656cf6 to ecde302f3f4e (1 revision)
  • 37a2d3f Sync: Add PreconditionContext param to GetPreconditionState()
  • d889226 Roll DevTools Frontend from 72b9023c252f to 78e999c51401 (5 revisions)
  • 0311f74 [Core] Migrate Side Panel Animations to UniqueIdentifier
  • fe6930d [Core] Migrate CustomElementEventType to UniqueIdentifier
  • 3ac974d [Core] Add UniqueIdentifier, Migrate ElementIdentifier
  • 7685b88 Add Autofill.Actor.KeyMetrics.FillingReadiness.{Address|CreditCard}
  • f5d82e7 JNI Zero: Add JavaRef::As<> for nicer casting syntax.
  • 38c464f Add new managed screen type for FRE
  • 7d74bd0 [a11y] Metrics for feature
  • 31915b2 Remove Svg2Cascade runtime flags
  • 655c5e0 Roll androidx from 5aawRZLIARSa4KLcF... to G93sLsFQ30pYjUz4k...
  • 221cfe7 [STTS] Simplify integration tests about form field extraction
  • 14fefda [HoT][Android][Address] Update the Address settings title
  • 5ce9e00 [HoT][Android][Payments] Update the Payments Settings title
  • 4c7bdf4 Roll Chrome Mac Arm PGO Profile
  • 755fa6f Preemptively add https://crrev.com/c/7206222 as a Cronet blocker
  • 66e1ac6 [Permissions Views] Remove a11y arg from IgnoreInputEvents
  • b7e91a5 [iOS] Move the CRWContentView to private
  • facf4b9 Roll Chrome Win ARM64 PGO Profile
  • 03b45df Updating trunk VERSION from 7722.0 to 7723.0
  • a53b8e0 [ios] Deprecate initWithFrame in NamedGuideTest
  • 5fc55ac Roll ios_internal from ad90547f7d30 to 660e53bce1ad
  • bb3e46a Roll WebView ARM Orderfile from uQIMWNSOWcUS2Xh2I... to K_KzEc6JbJW_oddLt...
  • ce41cf4 Add a test case for invoke timeouts.
  • 6bc1c4e [FedCM] Add Actor.Login.DeduplicationOccurred UMA/UKM metric.
  • 08d22a1 [Media Capture] highlight selected tab with primary color
  • 3fc0e69 Remove obsolete password import metrics
  • 2d27c87 [FedCM] Set the embedder login request callback to OnceCallback
  • f66a6a2 Roll Chrome Android ARM64 Orderfile from 4hyjFNuWlZ7JWuhbW... to WP-XdGPMD3aAsWVzZ...
  • cbc56cb Autofill: Add policy/extension controlled indicators
  • 39f02fa [ios] Deprecate initWithFrame in AlertCoordinatorTest
  • 8b5cf2c [iOS] Update displayTabGridInMode to support Tab Groups
  • 3bd0215 Call SVGElement::WillRecalcStyle() with Svg2Cascade enabled
  • 9b55af1 [ios] Deprecate initWithFrame in LensOverlayFakeWebState
  • 688a6fc Roll Perfetto from 37ae4b40c87f to 289efe0fd004 (2 revisions)
  • e3be70d [CrOS] Add kill switch for ethernet static IP logic changes
  • 5150661 ScrollPredictor: Support hybrid resampling and relative delta continuity
  • 2ef53bc Roll WebView ARM64 Orderfile from uk04kp4NtL-zx3hPs... to dqUmF8rVk3x1ZdRJo...
  • 5b0577a [ios] Deprecate initWithFrame in BrowserViewControllerTest
  • 363ea8c Roll BoringSSL from 50c3ac87fcdd to 5bf54f4ac7f7 (1 revision)
  • 6d596ef Add a new safe mode action for testing safe mode efficacy
  • bceb554 [Autofill AI - M4] Translate missing strings
  • f6b3a76 [TreesInViz] Bypass unnecessary computing in CalculateRenderPasses.
  • 3362194 Roll Chrome Linux PGO Profile
  • e630fe3 Triage border-radius bugs in TestExpectations
  • 935e44b Roll DevTools Frontend from 1f515ec840bc to 72b9023c252f (1 revision)
  • 2bd473f [chrometto] Submit a missing data file
  • 89fe70e [CT] Automatic update from google3
  • a7884c4 [KP] Automatic update from google3
  • 0808f26 Roll federated_compute to 271aa00
  • 4de8bc8 Triage scroll-padding zoom bugs in TestExpectations
  • 2ab11fa Triage attr namespace bugs in TestExpectations
  • e3e1c94 Roll WebRTC from 0bcd472228e6 to 7f5a8b656cf6 (2 revisions)
  • c0179eb [iOS] Fix dangling raw_ptr in BWG model classes
  • 5484dc0 Roll clank/internal/apps from 16c161471ef4 to 06d80b87b6f0 (1 revision)
  • 6664e2a [ios] Deprecate initWithFrame in AssistantContainerViewControllerTest
  • ed40e7a @memory: Resolve component dependencies via Query Service
  • 10dbc7c Revert "Refactor TabbedNavigationBarColorController tests for edge-to-edge"
  • feb9ffc Roll Chrome Android ARM64 Orderfile from RYAPegCberAEt2vk1... to 4hyjFNuWlZ7JWuhbW...
  • d75b1fe Update `TestExpectations` with bugs filed for crrev.com/c/7638200
  • 516c933 [iOS][Composebox] Enable EG Tests for iPad
  • 8313cec Roll Chrome Android Desktop x64 PGO Profile
  • 122ae75 Revert "Ash: Disable obsolete ArcAdbSideloadingFeature (CL 1/N)"
  • 25edd85 Revert "Ash: Remove obsolete ArcAdbSideloading UI and Mojom (CL 2/N)"
  • 414adc7 Roll ios_internal from c0ca9525746b to ad90547f7d30
  • f972b75 [CrossDevicePrefTracker] Add logging statements for early exits
  • 3d22ab2 Roll BoringSSL from afa6f3d420e8 to 50c3ac87fcdd (1 revision)
  • 097baf1 Revert "[ios] Make ShortcutItem intent independent from AppStartupParameters"
  • 8de448c PrivateAi: Add mojo handler to browser_exposed_mojom_targets
  • e94627f Roll DevTools Frontend from 67982016dcdc to 1f515ec840bc (2 revisions)
  • ea6e338 [Private AI] Fix AnonymousTokenRequest token representation.
  • 480b1a0 Roll Chrome Android ARM32 PGO Profile
  • 82446ff Roll WebView ARM64 Orderfile from J8mj9Aug18jNSIylb... to uk04kp4NtL-zx3hPs...
  • dce0974 [iOS] Prepare to move crw_web_view_content_view.h to new location
  • 68d5680 Roll Chrome Mac Arm PGO Profile
  • 840136c [Blink] Reuse no-store images on same-src reassignment
  • dff61fd Fix CSSOM wrapper desync on setScopeText().
  • ca4536b Roll Perfetto from 04410d4bfbe0 to 37ae4b40c87f (1 revision)
  • d6e760c Roll WebRTC from ce5c7eff7373 to 0bcd472228e6 (2 revisions)
  • 2a87c00 Roll Chrome Win32 PGO Profile
  • 775f70c Revert "Clean-up `api_static_checks_unittests.py`"
  • 549b8be [ios] Fix toolbar layout on fullscreen progress update
  • bafd7d2 spanification: automatically spanify device/fido/cable/v2_handshake.cc etc.
  • 397e20c Consolidate device naming logic into sync_device_info
  • 19adbbe Roll R8 from CQBWQVHNMmNBTkKhq... to CoaQUbD7pDX3OuETi...
  • c61d40b Support contrast-color() in ComputeRegisteredPropertyValue
  • 56b46db [ios] Add util function to return an UIWindowScene
  • f535202 [Autofill AI - M4] Only render reauth toggle if feature is on
  • 7a8c383 @memory: Orchestrate search flow in the popup
  • 074b47e Roll Chrome Win64 PGO Profile
  • dfc3333 Import wpt@124aee539a5f94e136b1a3da8482e76336216d8e
  • 5b932f3 Add Filter UI controller
  • 740a888 [ConAcc] Refactor SigninInfo to support multiple accounts
  • 2f4419c [ConAcc] Refactor DiceResponseParams validation
  • 1c18de3 Roll DevTools Frontend from 3f54f674488a to 67982016dcdc (1 revision)
  • aee3780 Add MultistepFilterService as a KeyedService
  • 3ded0f7 Roll Chrome Android ARM64 Orderfile from bspb07SY9IdSSugar... to RYAPegCberAEt2vk1...
  • a88d098 [gardener] Disable flaky test on linux-chromeos-dbg
  • 476f0f5 Remove <svg:animateMotion> from svg navigating attribute list.
  • 36b6a4e Roll Perfetto from 2027beb2d454 to 04410d4bfbe0 (2 revisions)
  • 6f8ef79 Roll WebRTC from 6d1746c82694 to ce5c7eff7373 (1 revision)
  • 66daf15 Revert "Move AutocompleteController to FuseboxSessionState."
  • b820883 Ensure invalid URLs get an empty site-keyed AgentClusterKey
  • 176a847 Roll Dawn from 5e1594bc4130 to 59b748e08b4f (7 revisions)
  • e9dfb36 CCA: Create progress notification after progress update is received
  • eb03e58 [Blink] Remove GrDirectContext inclusions
  • 7ff43c7 Roll Chrome Mac Arm PGO Profile
  • 435adba Missing HasRandomFunctions() for contrast-color()
  • 948b6aa Roll WebView ARM64 Orderfile from WAtMWff5oxFtWhuSV... to J8mj9Aug18jNSIylb...
  • 30be3e5 [AutofillAi - M4] Implement basic focus for date fields.
  • 0ec4192 Use StringView in Element::MapLanguageAttributeToLocale
  • b8cfdb5 [ios] Make ShortcutItem intent independent from AppStartupParameters
  • e2a6aae Add embedder API to disable caching forward entries
  • f680bbb Adds device names to AOC and AIC WebRTC logs.
  • c2f2df9 Roll DevTools Frontend from 995909e2faeb to 3f54f674488a (2 revisions)
  • bbdb9c6 CommonDecoder::Bucket::GetAsStrings error on negative length strings
  • 02192b7 Roll Chrome Android ARM64 Orderfile from p7rS19xB0ulisaOfq... to bspb07SY9IdSSugar...
  • d732c07 Roll Perfetto from e56fa07aede1 to 2027beb2d454 (3 revisions)
  • be69b81 Roll Projector App from LqoD4uz_vwGVuGJp-... to vyftxTnE9w1soTL0U...
  • 99698ac Roll Chrome Win32 PGO Profile
  • 4a62a8c [ios] Improve NSError translation by scanning the error chain
  • 6e27cf4 Disable element-img-tooltip test to unblock crrev.com/c/7639450
  • c9541a5 Add TODO for random() in ViewTimeline API
  • 6ef5224 Roll WebRTC from 2b891540c116 to 6d1746c82694 (1 revision)
  • 3ace6b7 Add debug dumps for slow background tracing init
  • bfb278b Roll Boca Receiver App from IMXlx3wEKqgkJL_N9... to 34eMg-EoS8x3chlj6...
  • 3f88b1d WTF: Unify string splitting implementation
  • eac9024 WTF: Rename IsLowerASCII() to ContainsNoAsciiUpper()
  • 2aba954 [AvatarSigninPromo] Add delay time between subsequent promo showing
  • cb9e918 Roll ios_internal from 695d198e9a95 to c0ca9525746b
  • 0d0c1b4 Roll WebView ARM64 Orderfile from TT1mdJDCQSZ9fKR8A... to WAtMWff5oxFtWhuSV...
  • a370660 [FRE] Add refresh sign-in promo variations
  • fc8e6e5 Roll DevTools Frontend from 54ec9b4ee3b5 to 995909e2faeb (1 revision)
  • a848c45 Multi-account device metrics: Add histograms for request outcome
  • 4ce9847 PA: Introduce `SlotAddressAndSize::From()`
  • 2a2ee01 [//media] Clarify param name in CopyVideoFrameToSharedImage()
  • 150e57d [//media] Call CopyVideoFrameToSI from CopyVideoFrameTexturesToGLTexture
  • 0d39ca6 [//media] Rework "copy to cached SI" case in PCVR VideoFrame->GL flow
  • 9c90bb1 [//media] Move ConvertYuvVideoFrameToRgbSharedImage into PCVR
  • e6a394c [//media] Move IsPixelFormatSupportedForYuvConversion() into PCVR
  • d72cf81 Implement iteration composite accumulation for CSS transforms
  • 09af46a Roll Boca App from XReaM9QTAvE2IC_UU... to 10gWvhd0eMcMmL2uE...
  • 3cf7293 Fix link to cookie store API docs
  • 707abbd Roll ANGLE from 2b6e1f017676 to b2be60fe4ec8 (1 revision)
  • 4b4862b Disable Synthetic Response for guest StoragePartitions.
  • 70e4291 Temporarily disable two DevTools web tests for collapsed style rules
  • ee2ca14 Add UMA histograms to track duplicate navigation checks on target origins
  • 91fb19d Roll Chrome Mac PGO Profile
  • acbf14d Fix another emulation layout test
  • cf162c6 Roll Chrome Win64 PGO Profile
  • 623ce7a [Search] Add strings for search settings page
  • 020d023 Inspector: include writing-mode root for vertical-lr grids
  • 6b80086 [AvatarSigninPromo] Enable fieltrial testing config
  • d91b2d8 [Uno-D] Fix ProfilePicker card menu delete warning string
  • bdc52d2 Roll WebRTC from 4a795bb4aedb to 2b891540c116 (2 revisions)
  • 542edba Roll WebView ARM Orderfile from vVLHPaxmzW0Qz55p4... to uQIMWNSOWcUS2Xh2I...
  • 8616060 [Frameworks roll] Roll to 879462098 piper revision
  • 7bb7235 [Extensions] Remove expired Devtools.UserIsInDeveloperMode histogram
  • 7c8c786 Add a no-op feature for debugging the Sync-to-Signin migration.
  • 29eb2e4 Roll Chrome Android ARM64 Orderfile from -RB7-5Xja83ThiH4D... to p7rS19xB0ulisaOfq...
  • 8cf635c Record the number of URLLoaderFactory interceptors for ServiceWorker main resource requests.
  • 7bc9c73 Allow SchedulerLoopQuarantine::Configure to run while paused.
  • 7a5857c Roll Chrome Win32 PGO Profile
  • 8398eeb Roll Chrome Mac Arm PGO Profile
  • 4660498 Roll WebView ARM64 Orderfile from tINdEn21z6pcjbDME... to TT1mdJDCQSZ9fKR8A...
  • 6aa9239 [zlib] Define EWOULDBLOCK if not defined already
  • 82ae1f5 Roll Chrome Linux PGO Profile
  • 0e76405 [//content] Don't check kDisableGpu to set WebGLImageChromiumEnabled
  • 8854092 [//content] Remove kDisableWebGLImageChromium
  • b8499d5 Roll androidx from NZ6PATK71c-CgRVcJ... to 5aawRZLIARSa4KLcF...
  • b7fccbe Import wpt@6d107415f34011b5496c229390199793345a2b21
  • d71c1b4 [FRE] Add logic for arm 2
  • fc98fc5 [//content] Remove usage of kDisableWebGLImageChromium in pixeltests
  • fe467af Roll Chrome Android ARM64 Orderfile from ccZ-mI-bohvrQmzF8... to -RB7-5Xja83ThiH4D...
  • 1cb7888 Roll src-internal from 3d782ab263d3 to a0bd5ab10abf (1 revision)
  • 5958ecd IDB: Move variant suffix computation to BucketContext
  • b31ae81 Site Search: Replace add dialog
  • 0bd6ba5 Site Search: Replace edit dialog
  • 55ac2b4 Site Search: Coordinator Implementation
  • 78cf5a1 Site Search: Dialog Mediator
  • 0d5c4eb Roll Chrome Win ARM64 PGO Profile
  • de09f3d Roll ANGLE from 1c59e3032588 to 2b6e1f017676 (1 revision)
  • 4367c33 Move AutocompleteController to FuseboxSessionState.
  • e77bf3a [wpt-exporter] Implement Force-WPT-Export tag
  • 4aa5e0e gardener: Disable TwoTabsWithBubbleSwitch on Mac
  • b548e71 gardener: Disable PreloadingTriggeringOutcomeForPendingPrerender
  • 1abf175 Roll WebView ARM64 Orderfile from xGYgpce2iu3LD-Gyq... to tINdEn21z6pcjbDME...
  • 4d8e5fc Roll Chrome Android ARM32 PGO Profile
  • 9854fe5 login: Pass global singleton objects to DemoSession
  • 49fe4ba Roll Chrome Android Desktop x64 PGO Profile
  • d80bbff Miscellaneous cleanup for unit test fixtures
  • e94c2a6 Site Search: Dialog init
  • 8dfc558 gardener: Disable ProfilePrefsAreRegisteredCorrectly on Linux
  • 003bd25 Roll Chrome Android ARM64 Orderfile from IA6gSiTDN6kzQWivT... to ccZ-mI-bohvrQmzF8...
  • 3139f04 Roll Updater chromium_linux64 from 2@1589002 to 2@1590001
  • c90473a Reland "[Transforms] Hide scrollbars in 3d-point-mapping-deep test"
  • fb2851b Roll DevTools Frontend from 33803e846f7b to 54ec9b4ee3b5 (1 revision)
  • 2d4a0c8 Roll Updater chromium_win_x86 from 2@1589019 to 2@1590022
  • 5050e77 Roll Updater chromium_mac_arm64 from 2@1589009 to 2@1590005
  • 8debf26 Roll Chrome Mac Arm PGO Profile
  • 6706037 Roll Updater chromium_win_x86_64 from 2@1589020 to 2@1590034
  • d4ebd33 Roll Enterprise Companion chromium_mac_amd64 from H5fzeM0A0fz6CuwZ4... to MKI8kYny3mg-PE6Yf...
  • 7171faf Roll llvm-libc from e490aa627ee4 to 4e2524f6aeca (6 revisions)
  • 5b9ec89 Roll Updater chromium_win_arm64 from 2@1589044 to 2@1590022
  • 858059a Roll Enterprise Companion chromium_mac_arm64 from dXnyVHYBBgysK_ZzW... to dGIvxKZXrzsNAqcCO...
  • a994a2e Roll Enterprise Companion chromium_win_x86 from LOVACndsGHfQJMPOl... to l6_g5WG8-tD46iXcf...
  • 9ed6d41 Roll Chrome Win64 PGO Profile
  • 9d5dd75 Roll Enterprise Companion chromium_win_x86_64 from YiwFYvBHVBrZqsE6j... to yCN7cQgSC668srDSE...
  • 3d3e965 Roll WebView ARM64 Orderfile from GVM9L5TtqQUsGs7CT... to xGYgpce2iu3LD-Gyq...
  • 4004eb6 Add histograms for socket brokering
  • c2b7363 Roll Updater chromium_mac_amd64 from 2@1589006 to 2@1590011
  • 39abee0 Revert "Ash: Close dialog on PrintPreviewDone & restore lifecycle test coverage"
  • 06012aa [RTCLogging] Enable WebRtcDiagnosticLogCollectionAllowedForOrigins enterprise policy
  • 8c2a78c Roll Enterprise Companion chromium_linux64 from 0hCOtVQniotwV79YN... to 3SPCJwt-2z2iwsKlu...
  • dd93b26 Roll V8 from c0ede6e4417e to a6fb0d1b16ae (13 revisions)
  • b2feb87 Forms: Remove Arabic comma from date-time format for RTL locales
  • f9fa606 Fix hover icon color reset in ColorTrackingVectorImageButton
  • 580180f Refactor the guard logic in HTTP cache backend creation
  • 31c11f1 extensions: Add TabCaptureApiTest for incognito to desktop Android
  • 743b1eb Revert "[TabRendererData] Move clients to use TabData"
  • 31c971b Revert "Roll Platform Experience Win from be3a78cb0f01 to a18ede0cfe4e (1 revision)"
  • 30a1d55 Roll Chrome Android ARM64 Orderfile from Fuy_65_cb4UoRWnI_... to IA6gSiTDN6kzQWivT...
  • ca1d21f Roll WebView ARM64 Orderfile from J2G4cRTt7ws0kU32c... to GVM9L5TtqQUsGs7CT...
  • 6d53015 gardener: Disable flaky ComprehensiveEligibilityTest
  • 6e0cbba ash: Remove crosapi::mojom::SearchResultConsumer receiver
  • 8f82b59 Roll DevTools Frontend from a84e80cf91f3 to 33803e846f7b (1 revision)
  • ee82df8 [bedrock] Fix memory leak in guest holding space test
  • bd92f42 [bedrock] Migrate BrowserListObserver in browser tests
  • e53c384 Revert "ash: Dismantle crosapi's cros_display_config.mojom, part 1"
  • 22dbeed [Animated pb] M144 bisect cl 1
  • 0641f65 Refactor pervasive resource script for style and dependencies
  • 7d2b4e2 Modularize chrome/browser/invalidation
  • eb976af histograms: Update tabs latency and smoothness metrics expiration
  • 7f62a94 Add crash key for PrerenderHandleImpl::OnHeadersReceived state mismatch
  • f082e24 gardener: Disable OTRRequestIsNotDropped on Mac
  • 6dab391 Replace UNSAFE_TODO in ConstantSourceHandler with safe operations
  • 18e173c Roll Chrome Mac Arm PGO Profile
  • f10389d gardener: Disable FullscreenAndRestoreWindowWithApi on Mac
  • 90c6baf [iOS] Enable terser source maps and add sourceURL to feature scripts
  • 8b25dd1 Import wpt@05fdf811f9ca0a3d95f0eb54cb9a0680c58104ec
  • e86a0cd [Vertical Tabs] Fixing bugs in scroll to active tab feature
  • 62d1ed0 Roll WebRTC from b605b809e718 to 4a795bb4aedb (1 revision)
  • 5fb30a3 Roll eigen from 265496e862d8 to d8c8ee6fb2cf (1 revision)
  • 8f5f42b WaaP: Skip extension initialization for per-navigation
  • e1a176a gardener: Disable flaky ContextualTasksBrowserTest.Composebox_MiscInputs
  • 9ec301a Roll Chrome Android ARM64 Orderfile from HKoGAI7B4s39PVEyH... to Fuy_65_cb4UoRWnI_...
  • fc2ca1e Roll WebGPU CTS from d213d4b8dba5 to 54441b8d176b (1 revision)
  • 5b51a23 Roll WebView ARM64 Orderfile from wFdzB_PcUE5GCXOv2... to J2G4cRTt7ws0kU32c...
  • f7d42e4 [rust] Remove `.rs` item from `rust_indirect_inputs` in `siso/rust.star`
  • 816f29b [rust] Remove `.h` entry from `rust_indirect_inputs` in `siso/rust.star`
  • 6f7b90f Prerender2Fallback: Reenable web tests http/tests/inspector-protocol/prerender
  • ecf6b3b Roll ios_internal from 0b19e79c6243 to 695d198e9a95
  • 07c0bfa [ios blink] Update extendedTextInputTraits using TextInputState
  • a0748d0 Change ClientSideDetectionHost::ReportUnsafeSite() to take SkBitmap 9/X
  • 8d8f738 SidePanel: Use a ThinWebView in SidePanelDevFeature
  • 864946d SidePanel: Add SidePanelDevFeature
  • 982672d SidePanel: Add feature flag EnableAndroidSidePanelDevFeature
  • 7ed08ce Roll BoringSSL from bf6bb3239780 to afa6f3d420e8 (1 revision)
  • af96534 Roll ChromeOS Bigcore AFDO profile from 147-7680.22-1772424827-benchmark-147.0.7715.0_pre1592720-r1 to 147-7680.22-1772424827-benchmark-147.0.7719.0_pre1594445-r1
  • 5ae1c3c Updating trunk VERSION from 7721.0 to 7722.0
  • 9f50d8f Roll Chrome Win64 PGO Profile
  • a5ecb38 Use ContainingBlock to find PseudoElement container
  • 09b3bbd Update Contextual Queueing Nudge to support editing updating text.
  • 1cb8ede Revert "ash: Dismantle crosapi's cros_display_config.mojom, part 2"
  • e2b8d69 Refactor accessibility annotator unit tests into sub-targets
  • 9c623b4 [Websocket/h3] Add WS_OVER_H3 job type for session reuse
  • d631944 [Extensions] Add DumpWithoutCrash in RendererDidInitializeSWContext
  • 42fee37 [Extensions] Remove expired Debugger.UserIsInDeveloperMode histogram
  • ddadc8e Replace UNSAFE_TODO in RealtimeAnalyser with safe operations
  • 08d8c71 Roll Chromium Variations from MjsPnGwvB9gsmcMis... to IY5yPUt0dIbnJPKOZ...
  • a3a67e6 Roll Chrome Mac Arm PGO Profile
  • d20dab0 Roll Chrome Mac PGO Profile
  • eff819a Move accessibility_annotator/annotation_reducer to accessibility_annotator/core/annotation_reducer.
  • ab293f5 Fix search box icon baseline focus outline disappearing on hover
  • ee1071b ui: Delete two unused icons
  • 48bd706 [next] Disable flakey tests on ChromeOS dbg
  • 23727a3 Remove unused ARC input overlay strings
  • 8efec61 Fix Net.SharedDictionaryManagerOnDisk.CacheMaxSize UMA recording
  • 97b8206 Provide federated account picture via glic API
  • 85bc926 Fix command buffer's code generators' clang-format style.
  • fde501d Add remove thread observer in GeminiThreadSyncBridge
  • 88d4a31 Updating some signaling method names
  • f154eb3 Move FTL specific methods out of SignalStrategy
  • 1c36c5b Prompt API: Align measureContextUsage() with append, not prompt
  • 5440cf2 Introduce Rust ChildProcessSecurityPolicy
  • 0185c80 [Segmentation] Migrate Android TipsNotificationsPromo to lifecycle hooks
  • 7df1d82 [Segmentation] Migrate Android HistorySyncPromo to lifecycle hooks
  • d3eb488 [Segmentation] Migrate Android AuxiliarySearchPromo to lifecycle hooks
  • f1ea579 [LNA] add service worker tests
  • 162e685 [crd host][linux] Fix multiple RemoteDisplays
  • 8c56b4a [LNA] add shared worker WPTs
  • 4fb7bfc [LNA] add websocket and webtransport tests w/ dedicated workers
  • 0afdc7f [LNA] refactor sourceResolveOptions() to add permission info
  • 4c8809f [glic] Avoid invalid UTF-8 when truncating media transcripts
  • d5e2675 Roll Chrome Win ARM64 PGO Profile
  • 3dcee0a Fix OOM in PassagesBlobToProto due to corrupted gzip footer
  • 33473fc [ComboButton] Tweak outside corner radius
  • 1fb3470 Convert Qualcomm device id in gpu tests
  • af1897a [TabRendererData] Move clients to use TabData
  • a324040 [bookmarks] Keep overflow menu open after delete
  • ea52301 [projects] Add Gemini and AI Mode activity menu to panel
  • ea69902 Roll vulkan-deps from d0c69467e1d7 to 0e3bcd414637 (2 revisions)
  • 1f25c85 Revert "[Transforms] Hide scrollbars in 3d-point-mapping-deep test"
  • 3c3568e Roll Chrome Android Desktop x64 PGO Profile
  • 6fc4872 Update `TestExpectations` with bugs filed for crrev.com/c/7639355
  • 9c2aa95 Roll Dawn from 79dba80f5cd9 to 5e1594bc4130 (14 revisions)
  • 813ce4d Roll src-internal from ddc03ba0dd6b to 3d782ab263d3 (1 revision)
  • 0aa11ee [Extensions] Enable StructuredCloningForMessaging in testing config.
  • 2396e70 Roll WebRTC from 59486f6d13a9 to b605b809e718 (2 revisions)
  • cf64a51 [Contextual Tasks] Add logging to trace flakey issue
  • 364af9f Roll ANGLE from c0472e97708a to 1c59e3032588 (5 revisions)
  • d4031b5 Roll Chrome Android ARM64 Orderfile from lvZDW8fbUPiVco2rr... to HKoGAI7B4s39PVEyH...
  • a020651 Refine blur transition animation for generic navigations
  • 7e5ccf2 Also update SharedPreferences with background media capturing enabled
  • f56d9db Roll WebView ARM64 Orderfile from 0CAPMa0uvZuiD_q9Y... to wFdzB_PcUE5GCXOv2...
  • 7aa1c79 [NtpRefactor] Refactor NewTabPageLayout#onMeasure().
  • 7394f46 [Contextual tasks] Add tooltip string to toolbar close button
  • ec0c516 Gardening: Disable two tests in ActiveTabCacheTest due to CI failures
  • cf411ba [Default Browser] Reland crrev.com/c/7639289
  • 9c5f8ea Roll ios_internal from 0b19713c78f0 to 0b19e79c6243
  • 4907fb6 [GlowUp] Change kDesktopGlowUp flag name
  • 77accf8 Remove style specification in TabListGroupMenuCoordinator
  • dd392a4 Roll clank/internal/apps from 996e5c4f5a51 to 16c161471ef4 (1 revision)
  • 1f6de4e Roll Chrome Mac Arm PGO Profile
  • 2aac863 WebNN: Record the first selected EP and device histograms for ORT
  • d2cfad4 [SidePanel] Add secondary_ui_container
  • 88e05ed [projects] Place tab groups without positions at the top of the panel
  • 688f10d [Actor] ActorOverlay hooks with ActorUiTabController.
  • 8a9a02d [Gardener] Disable tast.camera.EncodeAccelJPEG
  • 22b2b07 Roll Catapult from 2f0ed3a88ed9 to d903007eb778 (1 revision)
  • cf380f8 Move PageEmbeddingsService into page_content_annotations
  • 55c9e1e Roll Cros Components from 74aa22bce061 to ddb611c60142
  • 4f0d7a7 [Transforms] Hide scrollbars in 3d-point-mapping-deep test
  • a6b61ba Roll Depot Tools from aceafdaa59d7 to 4ce8ba39a348 (1 revision)
  • 2af6bd6 [Extensions] Convert scriptsInternal to WebIDL
  • 94bd385 Improve crash reports processing script output
  • 6771c34 Refactor TabbedNavigationBarColorController tests for edge-to-edge
  • cc9fc98 Check flag before triggering width reallocation
  • acb031b Fix rounded list item focus outline disappearing on hover
  • 0bc0d9a Remove D3D KeyedMutex Path in Media Capture patch
  • 7ab3e5c Return a dummy value from TextInputClientMac on reentry
  • 5255804 WebUI: Fix some incorrect bindings
  • 9719e86 Roll Amd64 AFDO from 147.0.7717.0_pre1593501_rc-r1-merged to 147.0.7719.0_pre1594445_rc-r1-merged
  • a0c8f2e [Desktop Android] Update modal dialog OK button to prominent style
  • 156eadf [gardener] Skip flaky SafetyHubHandlerTest on Ozone Wayland platform
  • 2164f2d [Contextual Tasks]: Add regression test for bug b:477118938: Cannot submit query with no autocomplete matches and no files in context.
  • e0a4804 Preserve source location in worklet exceptions
  • 8d3e02a [PWA Migration] Feature-guard the sync side of migration support.
  • 1aee76d remove waffles from the OWNERS files
  • 88dded2 [lens] ESC key should close, not hide Lens overlay.
  • d5e40ab Set an auto-open folder in libdmg-hfsplus
  • 54a1301 [Contextual tasks] Use kCloseIcon to match spec
  • ff728ac [Durable Messages] Account for eviction based on actual bytes
  • 11f5937 [tips] Update the offline scheduling logic to be a reschedule
  • 0a10ff9 [Scrim] Respect top / bottom margin updates when anchor view is defined.
  • 922ec7b Roll androidx from cbyKZsfMFZDYX5M7c... to NZ6PATK71c-CgRVcJ...
  • 2c361f8 [SidePanel] Offset WebContents according to SideUiSpecs
  • ab907d1 Update JingleSession to use JingleMessage Rvalues
  • ba9ecc4 Roll BoringSSL from b2478d6da284 to bf6bb3239780 (1 revision)
  • f900ca8 [Contextual Tasks] Fix bugs with clip-rect not updating
  • 2f6df87 Always post destruction of WebMediaPlayer instances
  • ef3f8dd Allow all tooltip pointer events
  • 7fee13a Adds UMA counters for captions LiveTranslate result
  • ee4d8df [composebox] Remove unnecessary tool mode updates for image generation
  • 58b6dd4 [Vertical Tabs] Removing Intermediary Animation when Left-aligned Caption Buttons are not Present
  • 5b5ebca [Reland] WebUI: Add ESLint check to enforce consistent Lit event handler names.
  • 7b466c7 Roll Chrome Android ARM32 Orderfile from qp-cL4HT20NXkG-Dw... to ORq-sxaE9eeZDevmj...
  • f928922 [glic] Fix Glic InputModesUsed metric calculation logic
  • 82692c0 [glic] Fix missing return in GlicSidePanelUi::CaptureScreenshot
  • 3522501 [Extensions Metrics] Remove some process manager histograms
  • c308f1f [Agent] update owner and improve chromium-docs skill
  • 78c4442 [glic] Fix stale comment in glic_actor_popup_interactive_uitest.cc
  • 2b3bc52 Ash: Close dialog on PrintPreviewDone & restore lifecycle test coverage
← Back to all summaries