Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2026-03-02

Overview

This summary covers 607 commits on the main branch, with 457 identified as relevant to developers. The changes span from (b8d1bad)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((b8d1bad)) to (c3cd25d)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((c3cd25d)). A significant number of breaking changes occurred, primarily focused on migrating synchronous APIs to asynchronous patterns, removing obsolete classes, and decoupling ChromeOS-specific code from common directories.

Breaking Changes

  • ⚠️ BREAKING A major refactoring of ui::Clipboard has removed the synchronous versions of ReadAvailableTypes, ReadText, ReadAsciiText, ReadBookmark, and ReadData. All callers must migrate to the new asynchronous, callback-based versions. (1d23bcd) (34bc314) (c6bd1aa) (a1527fc) (8a2045e)
  • ⚠️ BREAKING As part of an ongoing effort to decouple ChromeOS code, multiple URL constants and app list preference keys have been moved from common headers (e.g., chrome/common/url_constants.h) to Ash-specific headers. Code outside of Ash that relied on these constants will no longer compile. (5622ae9) (7e3ec86)
  • ⚠️ BREAKING The callback signatures for net::FileStream::Seek and storage::FileStreamReader::GetLength have been updated to use base::expected instead of the legacy Int64CompletionOnceCallback, providing improved type safety for error handling. (e6d8aba) (5bea1f0)
  • ⚠️ BREAKING Several public classes have been removed entirely, including BrowserListEnumerator for iterating browser windows and base::MemoryPressureMonitor for querying memory pressure. (eaf9b1a) (1acb6aa)
  • ⚠️ BREAKING Core Blink string APIs were cleaned up: wtf::String::ReverseFind() has been removed in favor of rfind(), and the global function blink::NullURL() has been renamed to blink::NullUrl(). (7e68cf0) (814632c)
  • ⚠️ BREAKING The AppBannerManager class hierarchy was refactored, removing the inheritance relationship between the base class and its platform-specific implementations. This may break embedders who relied on the previous class structure. (f3143ea)
  • ⚠️ BREAKING In the graphics stack, gfx::BufferPlane was removed and the GLOzone::ImportNativePixmap signature was changed, impacting Ozone backend implementers. (2f15cde)
  • ⚠️ BREAKING The virtual method GetAnchorView was removed from the public ToolbarButtonProvider interface. Implementers must migrate to GetBubbleAnchor. (e8f13b0)
  • ⚠️ BREAKING The BookmarkStorage constructor signature was modified to make encrypted_file_path a required parameter instead of an std::optional. (b192e51)
  • ⚠️ BREAKING On iOS, the public SetTextClassifierModelPath provider API and its related files have been removed. (d9b5875)

Blink & Web Platform

  • The window.scroll() and Element.scroll() families of methods now return promises. The Element methods resolve with a ScrollResult dictionary, providing a modern way to handle scroll completion. (9ecb942) (1d33f8f)
  • The PaymentRequest API added a getSecurePaymentConfirmationCapabilities method, allowing sites to query the client's capabilities for Secure Payment Confirmation. (ac957a6)
  • CSS line-clamp property implementation was improved to better handle nested height constraints, and text-overflow: ellipsis is now suppressed in editable elements containing a selection or caret. (e11ddfd) (980b230) (1918cce)
  • The pagehide event is now dispatched for prerendered pages by default, as the kPageHideEventForPrerender2 feature flag has been removed. (2f12716)

UI & UX

  • The 'Send Tab To Self' feature was enhanced to propagate the user's scroll position, allowing the receiving device to automatically scroll to the same location on the opened tab. (54ee74b)
  • On Android, the bookmark manager context menu gained 'Open in new tab/incognito/window' options. On iOS, the New Tab and Tab Grid buttons now have context menus for better tab group management. (024e610) (f05da43) (c888d07)
  • The 'GlowUp' refresh updated tab styles, hiding the close button on tab strips with nine or more tabs to reduce clutter. (a698947)

Android

  • Significant internal refactoring occurred in tab state management with the introduction of PersistentStoreCleaner and TabModelOrchestratorObserver to improve persistence logic. (fea94b4) (f3e0b23) (8cc7716)
  • A large amount of code and UI related to Privacy Sandbox notices and consents (EEA/ROW) was removed, as the flows are no longer used on Android. (c3cd25d) (db9b08b) (478370b) (adce76e)
  • New methods were exposed on the IdentityManager to get account information, as part of an effort to make it the single source of truth for accounts. (55ef0f1)

Networking

  • Support for Source-Specific Multicast (SSM) was added to the UDPSocket layer on POSIX and Windows via new JoinSourceGroup() and LeaveSourceGroup() methods. (c1ccae1)
  • A canary domain check was implemented for DNS-over-HTTPS (DoH) to provide an additional safeguard before falling back from a failed connection to insecure DNS. (ab614c3)

Code Health & Infrastructure

  • Work continues on 'Project Bedrock' to reduce dependencies on Browser and BrowserList. Multiple observers were migrated to the new BrowserCollectionObserver interface. (f71ad48) (cc412cf)
  • The un-shipped ChromeOS userswap feature and the superseded WebAuthn CaBLE v1 implementation have been deleted from the codebase. (5d1f296) (02514ec)
  • The deprecated MemoryPressureListenerTags were removed in favor of a new MemoryConsumer model. Additionally, PartitionAlloc's FreeWithSize feature was enabled by default to improve memory accounting. (fdc36e9) (dad691e) (f32e2dd)
  • Third-party dependencies were updated, including rolls for libvpx and litert, and an update to the siso build tool. (31c8525) (e90126d) (31fb1ef)
All Commits (607)
  • c3cd25d [Privacy Sandbox Clank] Clean up bridge of prompt methods
  • 06e13d8 Roll WebView ARM Orderfile from dU1pCCdhdTxYvgDN7... to FzvetIAI6a0vtkWZm...
  • c61d177 indigo: Trigger page action based on optimization guide
  • 5426baa Roll Perfetto Trace Processor Linux from 6391c1361787 to 11e664539fbe
  • 8a00069 Replace sGlicActorUi -> sGlic
  • 1d23bcd Make Clipboard::ReadAvailableTypes asynchronous
  • 8c43d1d [Link Capturing] Fix log spam while inflating chip
  • c966d46 Roll DevTools Frontend from 98ca78946dd1 to 94e5f1083de3 (3 revisions)
  • c08d0d8 [Linux Packaging] Remove expired 2026-02-14 signing key
  • 34bc314 Make Clipboard::ReadText asynchronous
  • 71c1e9c WebNN: Use raw_ref for WebNNContextImpl in WebNNTensorImpl
  • e11ddfd [line-clamp] Add a state to count the lines of fixed-size boxes
  • 4540a72 Redesign the layout of chrome://browser-switch/internals.
  • 470bf1e [omnibox] (2/3) Move popup-specific events to dedicated Mojo interface.
  • 4c3f123 HttpStreamPool: Fix DCHECK in TcpBasedAttemptSlot::IsSlow
  • fea94b4 [Persist] Add clearState support to PersistentStoreCleaner
  • f3e0b23 [Persist] Add TabModelOrchestratorObserver
  • 1688172 [Glic] TabModel integration and unit tests
  • 8351a48 Roll eigen from 57b1de2330d0 to 661cdb227f2a (1 revision)
  • c6bd1aa Make Clipboard::ReadBookmark asynchronous
  • 4b7897a Revert "Remove WebrtcAcceleratedScaling from testing variations"
  • 8cc7716 [Persist] Clean unavailable stores in TabbedModeTabModelOrchestrator
  • 6e26c2c Recreate returned Reading Mode WebUI if never shown
  • 44e3248 [rust png] Update a stale doc comment in `ui/gfx/codec/png_codec.h`.
  • 5709e8d Use JniType for RepeatingCallback in extensions sessions API
  • fc68ec8 [Tab Search] Prevent flickering when cursor placed between tabs
  • 04001f5 Add browser tests for machine-level extension install policies.
  • 31c8525 Roll src/third_party/libvpx/source/libvpx/ db312f06f..4fcebeabe (8 commits)
  • 85b641d Add androidx.pdf:pdf-ink and customize native library handling.
  • f134f78 [Reading Mode]: Adjust spacing and padding for immersive audio controls.
  • 95c89e8 [CodeHealth] Use spanified ToInterleaved()
  • 439d192 [projects] Support thread resumption via the controller
  • 0f97bf7 [Reading Mode]: Match the content and empty content scroll bars
  • 4811045 [contextual-tasks] Fix disabled submit button for visual selections
  • de3fbdb win: Fix UNSAFE_TODOs in system_fonts_win
  • 0a6652b [gpu] Remove SIFactory::UpdateSharedImage with just mailbox
  • 5331222 display: Prefix Win32 API calls with :: in ui/display/win
  • 7c29827 variations: Change OfferPinToTaskbarInFirstRunExperience experiment to MostlyLaunched
  • b925e37 Add NetworkServiceThreadIncreasedPriority to testing config
  • aa9f8c4 Annual CUP key rotation
  • 18fe2c3 Roll Updater chrome_mac_universal_prod from 2@144.0.7547.0 to 2@147.0.7703.0
  • bffd1c6 Remove Cookie.NumKeys histogram
  • 6375eb0 Add actor_overlay_stub to main_forked_with_secondary_ui_container.xml
  • 413cb01 Broadly disable flaky test font-display.html
  • 7648b2c Remove PdfSaveToDrive from What's New and metrics.
  • 9f60c2a Reapply "IDB: SQLite store - report correct error type after disk full error"
  • 1aad85c [iOS] Exit guided tour when opening from external intent
  • df23f4f c/b/follow: delete
  • 3bba721 [contextual-tasks] Add iconName field to ComposeboxFile.
  • 9563773 Stop setting sha1_local_anchors_enabled in webview.
  • ed34811 Roll Depot Tools from 55659c2bf434 to b4ddd773926e (1 revision)
  • 62884be Enable LaunchCauseScreenOffFix by default
  • 0765880 android-a11y: test initial accessibility events on page load for SDK B+
  • 267302f Fix distillation state mismatch with Readability
  • ad20ee7 Roll WebView ARM64 Orderfile from DTBgMboDM1we6bW8T... to KidRqOQIpa4Hkk-0r...
  • 01f4843 [WebAuthn] Extend expiring histograms
  • 0a166a5 [CodeHealth] Spanify AudioData interleaving
  • a4902b9 Roll Website from ec178524cedc to d19703421dc1 (1 revision)
  • eacd5bb Fixed cached rect for CompositorView
  • 4c64ef4 Use RichAnimationDuration for vertical tab drag start animations
  • 849bcd5 Roll Chrome Win64 PGO Profile
  • 398ef1a [WhatsNew] remove TabGroupSync from whatsnew
  • 2af6413 [webmcp] Don't use blink public types in core.
  • db9b08b [Privacy Sandbox Clank] Remove Restricted Notice
  • 894a8f1 Roll Crossbench from 58b175282c85 to 5597b2226e28 (1 revision)
  • 75ff1b2 Add fieldtrial test config for AutofillDelayApcForPredictions
  • 980b230 [line-clamp] Fix clamping by height with nested height constraints
  • 125fe34 Roll vulkan-deps from 145852941ba8 to 762b6fbf06c4 (2 revisions)
  • c7d115c Replace KURL(...).ProtocolIs... calls with the free function versions
  • 39fa550 Remove color space argument from color-mix() in UA styles
  • ca64543 Replace KURL() with NullUrl() for const KURL& parameters
  • 5a5907f [composebox] Adjust Tool Chips position in compact mode.
  • b0f5acf [composebox] Only send auto active tab updates for page with titles.
  • 88dd1e3 [Masonry] Dense-packing with negative margins
  • 54ea561 [AIAE][Clank] Show error screen when amount extraction fails
  • f27f587 Revert "[zlib] Update to v1.3.2"
  • e9114e1 EventForwarder remove ScopedJavaGlobalWeakRef
  • 783adf0 Roll Dawn from bc602f0c897d to c43a057fa6ae (3 revisions)
  • c79f609 [iOS] Update FET for ImageRemix IPH to block AI hub new badge.
  • 4c15d83 fuzzing: Implement Mojo Fuzzer Profile and Resources
  • 1ad4ebf Update CBB autoroll for the builds refs
  • e90126d Roll src/third_party/litert/src/ 320c13c17..82bf3bef8 (194 commits)
  • e6d8aba Replace Int64CompletionOnceCallback with base::expected for FileStream::Seek
  • 3000068 [DomStorage] Use base::SequenceBound in AsyncDomStorageDatabase
  • 25399f1 Roll FuzzTest from 6a217df9edbe to 2774d423cc62 (2 revisions)
  • 2982f12 Revert "spellcheck: report spelling markers in hot mode"
  • 7c7a1f0 udpater: fix CHECK in UpdaterObserver::QueryResult
  • 0dd936d [Linux Packaging] Add script to update repo signing keyring
  • fedf922 [Android] Force soft keyboard to NOT appear in Android Desktop tests
  • dcd0629 JNI Zero: Update docs for @JniType(OnceCallback)
  • 272cc7a Roll Chrome Mac PGO Profile
  • 2ba57fa [cobrowse] Use chrome://google.com/search display URL by default.
  • 8b6ccb3 Revert "Roll new AVDs for Android 15"
  • 6e94880 Roll Chrome Android ARM32 PGO Profile
  • cabecb0 [CodeHealth] Spanify WebEngineAudioOutputDevice ToInterleaved
  • eaf9b1a [bedrock] Remove BrowserListEnumerator
  • 30f2ad0 Site Search: Update default search engine source
  • 6d9f4b3 Update the expiry and ownership on VisitedLink UMA histograms
  • da266f1 Roll Chrome Win32 PGO Profile
  • c0e7a60 [Connection-Allowlist] Change to HTTPS server for RFHI browser tests.
  • b94c54a ContextMenu remove global ref
  • efee8be ChromeAndroidTask: Enforce destruction order for ChromeAndroidTaskFeature and its deps
  • bb7dec9 [Vertical Tabs] Fixing bugs with group collapsed state
  • 9c249c0 [EnableGlicCleanup] for remaining chrome/browser/ files
  • 9f2861a [SetupList] Fix "See More" sheet reappearing after task completion
  • 12f62d5 Search Engine: Move controller verification logic
  • b21d561 Work around testdriver issue in select-mousedown-slot-mutation
  • 45f57b7 [crd host][linux] Stop screencast stream after PipewireDesktopCapturer is destroyed
  • 7e18f38 Roll Skia from 61c0e71760f5 to 70d17bc6b349 (2 revisions)
  • e33cae1 [ntp][contextual] Remove legacy menu entrypoint element
  • b2458a8 WebUI: Fix Lit event handler naming convention violations, part 7.
  • 66cbee6 Roll Chrome Android Desktop x64 PGO Profile
  • f9c102e Modularize //chrome/browser/direct_sockets
  • c3370dd Revert "[input-state-model] Move `GetInputState` to the `InputStateModel`"
  • 61a82a1 [Android] Null-annotate RootUiCoordinator (part 5)
  • 7d7ce9b [WebGPU] Run 'blink_perf.webgpu_compat' on Android devices in Waterfall.
  • e20721a Extend expiration date for Enterprise.DeviceLocalAccountPolicyRefresh3.
  • 913aa01 [colabutils] Skip presubmit tests on Windows.
  • 507c52e Revert "Harden ChannelLayoutConfig constraints"
  • 8c3b8c1 WebUI: Fix Lit event handler naming convention violations, part 8.
  • 1f4374b Prevent native picker for customizable combobox
  • 1dfa3a4 [CodeHealth] Use spanified ToInterleaved()
  • 4ecd5df [projects] Unify styling between tab groups and threads
  • cf94bfd Add icons to Class Tools Receiver
  • 0d333ea Site Search: Edit dialog in site search section
  • d08846d Prevent left/right arrows from unfocusing in customizable select
  • 4ed2f65 media: Remove !! from callback check for readability
  • 005be5e CaptioningController use UserData
  • 2411cda [Extensions] Add GetActionIndex helper in ExtensionsMenuViewModel
  • 1acb6aa Clean up MemoryPressureMonitor
  • 060635b Roll Chrome Mac Arm PGO Profile
  • 3d582f2 Add a fieldtrial testing entry for BusyLoopLessWhenCompositorGesture.
  • fc79528 Reland "[PromptAPI] Blink layer changes for 'Tool use' - open-loop pattern"
  • ab4291b [Glic] Fix print crash after reload
  • 9ecb942 Promisify scroll: resolves window scroll method promises to ScrollResult
  • 64f18e7 Bump CloseAllTabs histogram
  • b7f5cee Site Search: Add site search menu delegate
  • a698947 [GlowUp] Hide tab close button on 9+ tabs
  • 36e9acd Add language names to LocaleCodeBCP47 enum
  • 381c318 Prerender2Fallback: Fix NoVarySearchPrerenderBrowserTest
  • a8a6e9c [Tab] Fix calling isClosingAllTabs not on UI thread
  • 8915a85 Collocate tests in AutocompleteInputUnitTest.
  • ff61393 Minor clean up in AutocompleteCoordinatorUnitTest.
  • 879529e [EnableGlicCleanup] in chrome/browser/ui/webui
  • 2f9f663 Roll src-internal from 64463e9445c6 to d3df67af9a74 (1 revision)
  • 97d0093 [source-phase-imports] Enable Wasm module streaming for source phase
  • 84fa818 [a11y] Fix titleUIElement on macOS when the label source uses aria-label
  • c0bfe0f [Persist] Helpers to allow for Store instance-less cleaning
  • b8ecb5f Add virtual test suite for SelectedcontentSpec disabled
  • e5c8894 Add AccessibilityAnnotatorDatabase table manager for intent
  • 92f4fbc Treat weakly encrypted hashes as invalid in tracked prefs
  • 3a1c933 [Link Capturing] Close tab after opening in app
  • 87f2721 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/web_apps
  • 11172a2 [EnableGlicCleanup] for remaining c/b/ui/ files
  • 0d0f42d Reduce some includes of widget.h
  • 348b0a1 [Content Analysis Dialog Controller] Ignore a11y input events
  • 08061c1 [CodeHealth] Spanify PulseAudioOutputStream interleaving
  • f85a9f5 Site Search: Activate search engine
  • 54c67d2 Cleanup removed interfaces for accelerated image decoding.
  • c1a0163 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/global_media_controls
  • 58ed0ca Rename MaybeSetHardcodedEntries helper
  • f2bdcd6 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/tabs
  • a1527fc Make Clipboard::ReadData asynchronous
  • daf5971 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/user_education
  • c06d002 [iOS] Fix docking tip notification
  • a1db522 Add Restartability metrics for evaluate restart opportunities
  • 3074c47 Prerender2Fallback: Parametrize *PrerenderBrowserTest
  • 7a35fbd MediaDrm: Parse and store CDM version info from MediaDRM version string
  • e591b5a Roll Perfetto from 6391c1361787 to 11e664539fbe (4 revisions)
  • 40a5d83 [Prompt API] Add a flag to enable LiteRT-LM backend for on-device AI.
  • 79f838f [EnableGlicCleanup] for chrome/browser/glic
  • 9c89c60 Roll DevTools Frontend from 194a8d96af8d to 98ca78946dd1 (2 revisions)
  • a14a11c Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/omnibox
  • d23436c Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in ['chrome/browser/ui/views/send_tab_to_self', 'chrome/browser/ui/views/sharing_hub']
  • cd37160 Roll WebRTC from bfd03d6f2518 to 2f5a2659b28d (1 revision)
  • bd7fd9c Optimize maps and sets in CPUMeasurementMonitor
  • a0fe7d1 Roll Chrome Android ARM64 Orderfile from kmQehJLguK1Uow813... to cVmmRuPJzj6tDPSoA...
  • 9eeaac1 [CodeHealth] Spanify ToInterleavedPartial in AudioEncoder
  • 5d1f296 cros/userswap: delete
  • 8353e8d Reland "Implement AndroidProfileBrowserCollectionService."
  • 071acaf Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/frame
  • ec4edb2 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/media_router
  • d2c27a2 [Profile Views] Ignore a11y input events
  • d6a9743 Disable ReportUkm feature by default.
  • 37a9504 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/page_action
  • 460b915 [Vertical Tabs] Set bounds through a callback
  • bff17f1 Site Search: Add inactive shortcut menu delegate
  • d1ec4fc media: Add UMA to check how often MF Renderer SetOutputRect() fails
  • 232e328 [Linux] Add support for importing from XDG-style firefox config dir
  • 4355708 [tips] Update the histogram variants for V2 tips additions
  • d82ccf5 Roll Perfetto Trace Processor Win from bd72f29183b6 to 6391c1361787
  • a7c6250 [permissions] Extend StatusViewRenderTest tor approximate location
  • 7e43b39 Revert "[NtpSimplification] Remove Feeds from NTP on Android desktop."
  • b381720 Site Search: Inactive shortcut setup
  • 5bea1f0 net: Replace Int64CompletionOnceCallback with base::expected for FileStreamReader::GetLength
  • cb9dfcb Roll Updater chrome_win_x86_64 from 2@147.0.7683.0 to 2@147.0.7703.0
  • f3143ea Remove inheritance relationship in AppBannerManager
  • 01b24fe Roll Updater chrome_win_x86 from 2@147.0.7683.0 to 2@147.0.7703.0
  • f71ad48 [bedrock] Migrate profile_manager.cc away from BrowserListObserver.
  • 2d1d43a [Signin][Android] Extract BadgeConfig from ProfileDataCache
  • 29e302b Roll Updater chrome_linux64 from 2@147.0.7683.0 to 2@147.0.7703.0
  • 8db4a47 Roll Updater chrome_win_arm64 from 2@147.0.7683.0 to 2@147.0.7703.0
  • e9f284f Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/webid
  • b7189b1 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/passwords
  • 05e5926 Roll Updater chrome_mac_universal from 2@147.0.7683.0 to 2@147.0.7703.0
  • 6ca296a [persistent_cache] Resource keys are opaque binary data
  • 4ac3496 Disable SynchronizedScrolling by default on all platforms.
  • 357fc66 Replace WIDGET_OWNS_NATIVE_WIDGET with CLIENT_OWNS_WIDGET in chrome/browser/ui/views/translate
  • 6345b52 Verify shared image pixel size
  • 8eaca29 Update `TestExpectations` with bugs filed for crrev.com/c/7619807
  • 46a9624 Roll WebView ARM64 Orderfile from 6ZHmb8OOPgzAjXokl... to DTBgMboDM1we6bW8T...
  • cc412cf Reland "[bedrock] Migrate BrowserListObserver to BrowserCollectionObserver - part 1/n"
  • f5ed31d [border-shape] border-shape on replaced elements
  • c9098fc Update the field trial config for the DBSC Google experiment
  • 1228638 [Reading Mode]: Fix VoiceOver reading order for toolbar buttons
  • 8a2045e Make Clipboard::ReadAsciiText asynchronous
  • 8ecdfd9 Add a general invoke capability to Glic.
  • 02514ec Reland "[WebAuthn] Remove CaBLE V1"
  • 0687297 Modularize chrome/browser/companion/text_finder
  • 23fff28 Roll Crossbench from 0a6aad6789b9 to 58b175282c85 (1 revision)
  • 867a3b2 Fix fusebox bottom alignment when there are no suggestions
  • a744b15 Explicitly allow reentrancy for observers under components/
  • a8ce144 [input-state-model] Move `GetInputState` to the `InputStateModel`
  • 3353d63 Explicitly allow reentrancy for observers in extensions/
  • 8dfab38 Rename .github/README.md to .github/README-Copilot.md.
  • 25ec762 Remove page-visibility-page-content-annotations from about flags
  • e1f7b5b Process client supplied screenshot collection options
  • 478370b [Privacy Sandbox Clank] Remove Notice ROW
  • 2453ade Cleanup TABSTRIP_TOOLBAR_BELOW_READALOUD LayerType.
  • 23b84cd [Omnibox Next] Update logic to use spark loupe when there is header
  • a7e1b26 Roll FuzzTest from f67a6fe9ca3a to 6a217df9edbe (1 revision)
  • 23774d9 [Search Integrity] Add tests for search integrity
  • aaeacb6 generate_milestone_reports.py: Add M146
  • b192e51 [Encrypt Bookmarks] Make encrypted_file_path non-optional for BookmarkStorage
  • e04905e Bump safe-browsing-local-lists-use-sbv5 expiry milestone
  • 52bfe20 Use element-ID based highlight in AnchorConfiguration.
  • 1d33f8f Promisify scroll: resolve scroll method promises to dictionary
  • fddb539 Fix user_education java OWNERS.
  • c085e1c Roll Chrome Win64 PGO Profile
  • 1984770 [TreesInViz] Add a 1px margin to the Viz damage rect and enhance DCHECK message.
  • b0817d6 Migrate Shared Messages to SafeBrowsingUIHandler
  • 0592c8f Improve location_filters for linux/cast bot
  • 4c75f22 [geo] Fix GeolocationHeaderUnitTest
  • ed612a3 Unify ActivityWindowAndroid constructors.
  • 659514b android: Disable testIdentityDiscWithSwitchToIncognito
  • fa1a522 Fixup: Remove targeted elements from the sys.path list
  • 08bff4e Roll vulkan-deps from 473fd805b316 to 145852941ba8 (1 revision)
  • 9dc4217 Remove an incorrect early return in a dice unit test
  • 23a5895 Cleaned-up study file
  • 4f86af7 [WebMCP] Reflect spec changes into blink
  • c58ef68 Specify semantics of existing credential fields in glic API for federation
  • 6e95e28 Roll Chrome Mac Arm PGO Profile
  • e724ff2 Record intervals at which System Memory Lists are low
  • a76bd8a Remove Android.DragDrop.Image.UriCreatedInterval
  • 2be6122 Add new observers for Client Side Detection
  • 85a6a22 Roll Chrome Win32 PGO Profile
  • 98f5b51 Allowlist AuthX in-session extension for login APIs and permissions
  • 2f15cde [ozone] Remove gfx::BufferPlane and use std::optional<int> plane_index
  • bce0379 Convert to UNSAFE_TODO in media/gpu
  • daa0bb0 Reduce HTTP timeout for embedder.crossbench
  • 206804b [Theme] Clean up logs and polish.
  • bfca87e Uprev ChromeScreenAI CIPD to 140.21
  • 3d6f843 [ios] Support Guided Tour for Next
  • 9b070a3 Update a bunch of things to use cleaner view casts
  • ff5d169 [Vertical Tabs] Fixing an issue with hover over group header
  • 47f9c39 Reland "Reland "[Signin][Android] Display button when SigninLevelUpButton flag enabled""
  • 3384ae8 Improve documentation of ActorFormFillingService
  • 7cab094 [webrtc] Fix build with build_with_tflite_lib=false
  • 7e0fc21 [//cc] Dedupe logic for appending solid-color quad
  • d1adef0 [composebox] Refactor Composebox tests into smaller test suites.
  • d7e5c82 [Vertical Tabs] Remove dangling pointers from drop arrow
  • ab614c3 Implement Canary Domain check to disable DoH fallback.
  • 3be1152 Move @BackgroundStyle annotations to mark their type.
  • adce76e [Privacy Sandbox Clank] Remove Notice EEA
  • 94452bd Roll src-internal from af90ff55ed40 to 64463e9445c6 (1 revision)
  • 7ad2c45 Update WEB_FEATURES.yml for contrast-color
  • 37a7aaa Roll clank/internal/apps from 5ffb4e576301 to 0f6bcbff8115 (1 revision)
  • b7be3a2 Roll DevTools Frontend from 2dbd599b9ff9 to 194a8d96af8d (1 revision)
  • 1f81112 Convert to UNSAFE_TODO in services
  • 97ebf98 Fix API errors in SystemExitReason.Browser
  • ac957a6 Add getSecurePaymentConfirmationCapabilities method to PaymentRequest
  • 7e101c2 build: Improve NoAndroidLog checker and add integration tests
  • 351100c Roll Perfetto Trace Processor Linux from bd72f29183b6 to 6391c1361787
  • 2ecab9d Refactor HomeModulesCardRegistry into platform-specific subclasses
  • b9729d1 android: Disable flaky testRotationToPortrait_WhileOptedIntoE2E
  • d23d992 Add OWNERS file for synced_set_up
  • fc0af00 Remove SadTabView set_owned_by_client
  • c5f995e [EnableGlicCleanup] for c/b/u/views
  • c73a5d0 [CustomizationSync] Add feature flag NewTabPageCustomizationThemeSync.
  • 1a6cb0b Roll clank/internal/apps from 93136002dccd to 5ffb4e576301 (1 revision)
  • ccffdc9 Import wpt@79360a1b02173eee3ec8c7ba69d001a324c5ceb3
  • 64232fc [iOS] Add FullscreenRefactoring feature flag
  • 6416f98 Migrate untrusted_projector_browser_proxy to ts.
  • 47b8cea Add a test case for invoke with empty conversation id.
  • ecd1afb [Privacy Sandbox Clank] Remove Consent EEA
  • b74803f Change skia::ConvertRGBAToOrFromYUVA to ConvertRGBAToYUVA
  • bb0dc8c Add wpt test for ::slotted()::permission-icon
  • 25d4a0b Unfork chrome/installer/util/google_update_settings.h between platforms
  • 1efed6a [ContextualSearch] Change to not use global refs
  • 2057247 [context-input] Make CreateImageUploadRequest take image bytes by value
  • d7876ee Reland "Make versioning of PRESUBMIT cache more robust"
  • 9ad4200 CodeHealth: Clean up stale base::Feature OsSyncConsentRevamp
  • fdc36e9 [MemoryPressureListener] Migration to memory limit threshold helpers
  • dad691e Remove deprecated MemoryPressureListenerTags
  • 3128802 Roll Chromium Variations from _-m72dgwiZn7mQQwH... to Ph6_jM82kadxfsIBJ...
  • aa66ef9 cbui: remove last base::RandInt() usage
  • e794659 [iOS] Position the browser VC with autolayout and not autoresizing
  • 4298304 Add duration metrics for evaluating restart opportunities
  • 3619d51 Roll Chrome Android ARM64 Orderfile from IW6Na8AUwsWPItO2Z... to kmQehJLguK1Uow813...
  • 46e9a6c Update footer notice for save to wallet from settings
  • c8f2aa6 [NtpSimplification] Disable home surface return time on Android desktop.
  • 75be11d [HoT][Signin] Remove unused SigninUtils.openSettingsForAccount method
  • 8349a21 ose-split: Readability improvements to browsertests
  • 2de90f9 Fix typo in "appearance".
  • ed5ff68 Update Incognito NTP Omnibox Autofocus layout histogram summaries.
  • 812bf9e [NtpSimplification] Remove Feeds from NTP on Android desktop.
  • fff709f [iOS] Correctly position the app content when using the app bar
  • 0df98fd ose-split: Fix SearchEngineType unittests todos
  • e45e5b8 Fix typo in "tint" and minor clean up.
  • 2f12f80 [iOS] Relocate Assistant AIM files to cobrowse/
  • 954bc16 [iOS] Create the full screen iOS Price Tracking promo
  • 8668cfe [iOS] Refactor TabGridTransitionHandler initialization
  • 4231993 Site Search: Refine layout
  • 64cab4f [rustmojo] Add safe conversions between Rust/C++ handle types
  • faab630 Update loading state a11y text
  • 389128a Adjust documentation for attr() pseudo-element update
  • a9d7a64 Use FetchPageContext to grab screenshot and APC.
  • badf89d [permissions] Fix geolocation type in LocationCategory
  • b7b2d86 [permissions] Handle GEOLOCATION_WITH_OPTIONS in WebsitePreferenceBridge
  • beaa9ef Roll src-internal from 56aa3238e407 to af90ff55ed40 (1 revision)
  • 6902ca1 [Autofill AI - M4] Add info on whether entities are enabled and writable
  • 912369b Add formatting checks to Cronet PRESUBMIT.
  • 721298e Convert to UNSAFE_TODO in chromecast
  • 63b17ea Roll WebRTC from c1436d3676d2 to bfd03d6f2518 (1 revision)
  • a57cf58 mac: Switch to Xcode 26.3 17C529 (2026-02-26) and SDK 26.2 25C58
  • 4116c37 Fix unsafe buffer usage in haptic_touchpad_handler.cc
  • 8674820 [iOS] Update the toolbar/location bar constants
  • 6284f32 Roll Media App from cGNnqfl0VHHYExgRI... to jLww16BRfBSCL8Ffk...
  • f58a4d2 [iOS][Gardener] Disable flaky tests in SharedTabGroupsTestCase
  • 54ee74b Propagate scroll position in Send Tab To Self
  • d835089 Roll ios_internal from 7ac93a84e3d0 to 695660f3cb58
  • 815c488 Roll vulkan-deps from bd2a0f8993f5 to 473fd805b316 (1 revision)
  • ee197d8 [ios][apcv2] Include annotated role to determine isGenericContainer()
  • a6cd55a Roll Chrome Mac PGO Profile
  • 45e907b Roll Perfetto from bd72f29183b6 to 6391c1361787 (2 revisions)
  • 72be842 [iOS] Show 'Choose from Drive' when signed out
  • e1f972b Roll Perfetto Trace Processor Linux from 7616314b391a to bd72f29183b6
  • 5f37865 Handle account status changes in FeatureTokenManager.
  • 3433548 Fix OverrideContentSecurityPolicy calls in projector.
  • 7a4281f Roll DevTools Frontend from fd423864c163 to 2dbd599b9ff9 (3 revisions)
  • d85d1ea [unsafe-buffers] Fix unsafe buffer usage in //skia
  • 46944d2 @memory: Fix cursor positioning and precise replacement of "@@"
  • 43cff23 Stop observing TabAndroid when removed from TabModel
  • ecc04a2 Roll Chrome Win64 PGO Profile
  • d4d988a Roll Help App from 4Vv5S4_yYaqFupHcN... to pznh1oa1SgCfR2-yE...
  • b5027ad [page_info] Adapt PageInfoDiscoverabilityTest for approximate location
  • 52d150c Only report use counters for non-UA pseudo elements
  • 8050e68 Add branching logic to 'Change Password' button in Password Checkup
  • 575bf62 Fix lifecycle management of TestingProfile in DefaultBrowserManagerTest
  • 42d3e10 Make DOM traversal iterators satisfy std::forward_iterator.
  • f05da43 [iOS][AppBar] Configure New Tab Button Within Tab Groups
  • e4d3a81 [iOS] Add specific initializer for disabled animation in TabGrid
  • 6209c6f Cleanup now redundant UNSAFE_TODO() ash
  • c888d07 [iOS][AppBar] Configure Tab Grid Button
  • 9330c1a Roll androidx from ouJMUlKeLTumklZ_7... to F33f66w1lXogUL7EN...
  • 871815c Roll Perfetto Trace Processor Win from 4490d5b468a6 to bd72f29183b6
  • 70c4532 [AutofillAi - M4] Implement setValue in the DateField.
  • fc506f1 Use correct bucketing for ::slotted()::picker()
  • 96d65cc Updating trunk VERSION from 7714.0 to 7715.0
  • db27647 Roll FreeType from e3a0652b6d70 to bf1f34d75ed4 (12 revisions)
  • 42e75cf Roll Chrome Win32 PGO Profile
  • 4f738c3 [discardable_memory] Split memory-pressure tests and skip on suppression
  • 60ee4ee [contextual-tasks] Fix JS error on plus button and other interactions
  • 2e2714a Roll WebView ARM Orderfile from z6Wf-bIg2eNmd4TwW... to dU1pCCdhdTxYvgDN7...
  • 7e49905 Roll Chrome Mac Arm PGO Profile
  • ce6fe5a [iOS] Add a parallel flow for new tab group colors
  • f3d9c76 [iOS][Assistant] Add animated detent expansion API
  • 15fff25 Fix a DCHECK in WritableStreamDefaultWriter
  • 1d84acc Clean up motion and light sensor related strings.
  • a299003 Fix a WPT test that was originally not test anything
  • 6d78a30 Make FindHelper a WebContentsUserData
  • 5057124 [CoCE]: Add support for usermedia element in Capabality Element
  • a699d99 [base] Allow short busy loops in MessagePumpDefault
  • ee86a00 Revert "Run affected tests on presubmit"
  • a58d48c [permissions] Remove leftover line in TrustedWebActivityPermissionsTest
  • 3ebf387 Roll WebRTC from 556f930bf915 to c1436d3676d2 (1 revision)
  • f287b4c [signin] Remove AccessPoint::kUnknown from ProfileManagementDisclaimerService
  • fff8946 Roll DevTools Frontend from d8a7070cb4d5 to fd423864c163 (1 revision)
  • e8f13b0 Finish GetAnchorView() -> GetBubbleAnchor() migration.
  • 8aa5c0d Font spacing is different mac14 test.
  • 68cfff4 Roll Chrome Linux PGO Profile
  • 10e0dc9 Enable code generation feature
  • 1a5f9be Roll ios_internal from cde7540452d8 to 7ac93a84e3d0
  • 088835e Disable BackgroundTracingManagerBrowserTest on Linux TSAN
  • 7cf6a43 Remove WebrtcAcceleratedScaling from testing variations
  • aa33469 [HoT][Sign-in] Update Sign-in promo launcher Javadoc
  • c519713 Roll Perfetto from 7616314b391a to bd72f29183b6 (3 revisions)
  • 64a7d60 rcaps: Display recorded eligibility in rcaps internals page on iOS
  • 88f6d18 [iOS] Fix ChromeWebClient::RunOpenPanel missing tab helper crash
  • 55c0237 [SEH] Support escapability from the explicit-choice dialog
  • 0bda338 Roll Chrome Android ARM64 Orderfile from brYad3MP8wNVIuuUh... to IW6Na8AUwsWPItO2Z...
  • b52f574 Roll WebView ARM64 Orderfile from ZgLgzwhYjLxEs5ygS... to 6ZHmb8OOPgzAjXokl...
  • cd4df0e [KP] Automatic update from google3
  • a1f2913 Roll src-internal from 9d3fc0b7544b to 56aa3238e407 (1 revision)
  • 27395b8 [CSP] Enhance WPTs for inheritance
  • d292e28 Updating XTBs based on .GRDs from branch main
  • 506b441 [CT] Automatic update from google3
  • 8d25e4b Roll Chrome Win ARM64 PGO Profile
  • 2741025 Build StyleRuleFunction-to-CSSFunctionRule before InspectorGhostRules
  • 55ef0f1 [Signin][Android] Expose method to get accounts from IdentityManager
  • a38dbe9 Roll ANGLE from 8807d22fb5c5 to 425ea1de41aa (3 revisions)
  • 56a0e9b Fix non-member variable naming in base/
  • b3a452c Move @Nullable annotations to type in components/embedder_support.
  • 5e7c098 [iOS][Assistant] Conditionally set the anchor view
  • 852460f Update unit tests for Authorization header in Cloud Content Scanning uploaders.
  • ba7829f Roll WebRTC from ac3d3319930e to 556f930bf915 (4 revisions)
  • 4738f55 Fix navigations in iOS + blink
  • 28c0ce4 [Gardener] Disabling FailsIfInstallFinalizerFails test on Windows
  • aad0ac8 Pass federated login status from FedCM to attempt login tool
  • dbc2293 [base] Ensure WaitableEventTest reset the thread restrictions
  • b7d4654 [components/autofill] Code clean-up with clang-tidy's checks
  • 15e947f Roll Chrome Android ARM32 PGO Profile
  • cda9cd5 Roll Chrome Android Desktop x64 PGO Profile
  • a76221b Roll Perfetto Trace Processor Linux from 4490d5b468a6 to 7616314b391a
  • 2afd580 Reland "Add script for PGO for WebView"
  • 514c5c9 Give permission chips non-test element identifiers
  • 1b84ea9 Roll ios_internal from 8c2ab900bd87 to cde7540452d8
  • 43afb0b Roll src-internal from f2d4f69a2e84 to 9d3fc0b7544b (1 revision)
  • 2bfa338 Fix out-of-bounds read in diff rulesets.
  • bb97a7b Add two new histograms based on gUM request type
  • d872ab5 Introduce AccessibilityAnnotationService to host EntityDataProvider
  • ca8bfa9 [AutofillAi - M4] Remove android:fragment param from autofill_options.
  • dab3b31 [AutofillAi - M4] Rename Autofill options pref to Autofill settings.
  • a5780f9 Roll DevTools Frontend from 8be332e96ff8 to d8a7070cb4d5 (2 revisions)
  • 17c6baf [Signin][Android] Call blockGetAccounts only via test rules
  • 52b0849 [site_settings] Simplify clear data/reset dialogs with compound drawables
  • bed0f1b Roll Chrome Mac Arm PGO Profile
  • d1c7cfb Roll Catapult from 0f9739da7f76 to 27800c3890b2 (1 revision)
  • 072e2da Remove unused OpenNewDevToolsWindow function
  • d46bcc4 [Blink] Rename MaySupportImageChromium()
  • aece5a2 [Blink] Inline check of MaySupportImageChromium() in Canvas2D code
  • 22ad113 [Blink] Inline Canvas2dImageChromiumEnabled in LowLatencyUsageSupported
  • 8f02946 [Android] Add a destroy method in SearchEngineCountryDelegate
  • d594af4 [Blink] Split out "low-latency supported for canvas2D" checks
  • 13c795a [Blink] Inline Canvas2dImageChromiumEnabled in OverlaysSupported()
  • 135b019 [Blink] Streamline NativeMappableSharedImagesSupportedForCanvas2D()
  • acd90e0 [Blink] Add helper to query whether Canvas2D SIs are backed by IOSurface
  • 0c469cd [Blink] Remove MaySupportImageChromium() special-casing for unittests
  • 699849b Roll WebView ARM64 Orderfile from XBxjjWhhjnE0AwjsC... to ZgLgzwhYjLxEs5ygS...
  • fc8a7d9 [CrossDevicePrefTracker] Defer garbage collection until DeviceInfo loads
  • 42a72be Roll Turbine from ymsdRx1sSajlZKbTH... to 0A4lFRLjqycR4-Evo...
  • afb926e [ActorLogin M2] Refactor ActorLoginCredentialsFetcher::Status.
  • e4c5820 Roll Chrome Android ARM64 Orderfile from VohkeEot5TClkXNan... to brYad3MP8wNVIuuUh...
  • a34a6a7 [Document PiP] Use source activity for launching pip instead of context
  • 9ac020d Roll Perfetto from 4490d5b468a6 to 7616314b391a (3 revisions)
  • b2068a3 Migrate ServiceWorkerDevToolsAgentHost to ChildProcessId
  • 9fb04ff Roll src/net/third_party/quiche/src/ 8aa2871c4..d7134e9ca (12 commits)
  • 70e9665 Roll Chrome Win32 PGO Profile
  • 770da72 Roll ios_internal from 49f2274f3c2d to 8c2ab900bd87
  • 928c22a Roll Chrome Win64 PGO Profile
  • 8c895fa net/disk_cache/sql: Avoid copying blobs when binding to SQL statements
  • 848fcf3 Roll DevTools Frontend from bbeebce1f1f0 to 8be332e96ff8 (3 revisions)
  • 4f3b358 Update meet_effects hash in DEPS file.
  • b1b30ac Add ChromeOS to GlicEligibilitySeparateAccountCapability
  • e875938 Make Mojo deserialization of blink::PolicyValue robust.
  • 38171a4 [Signin][Android] Add NullAway annotation to FakeAccountManagerFacade
  • 575ad17 Prerender2Fallback: Fix PrerenderBrowserTest.*Redirection*
  • a942ff7 Roll Crossbench from f90745d8103b to 0a6aad6789b9 (1 revision)
  • 2380af4 Stop setting multi-channel on/off in the Chromium code
  • 2fd6a4f login: Pass local state PrefService to PasswordSyncTokenVerifier
  • 27bc840 Prerender2Fallback: Do not abort prerender if redirect
  • 3d5ad5b Reland "[Extensions] Implement OnActionRemoved in menu for Desktop Android"
  • c1ccae1 Add Source-Specific Multicast (SSM) support to net/socket layer
  • 2bbfd68 Reland "[SVG] Avoid resetting filter quality for SVG background pattern"
  • 7b1b86e Roll eigen from 662d5c21ff84 to 57b1de2330d0 (1 revision)
  • dad1bcc Roll Chrome Mac Arm PGO Profile
  • 105d912 Remove temporary BuildExternalPrivacyContext
  • fd10c96 Roll Projector App from etsB2kflByzewFxu-... to iW4A30gZgjoRTh64g...
  • ecc098b Roll Chrome Android ARM64 Orderfile from Tj1jAUqFUzPK-Y-UU... to VohkeEot5TClkXNan...
  • e44491e Roll WebView ARM64 Orderfile from HevEJN3X7JDykRRYZ... to XBxjjWhhjnE0AwjsC...
  • 36c33e4 Consider system cursor visible when type is kNone
  • afefcae Roll Dawn from 37a53b346d18 to bc602f0c897d (4 revisions)
  • a35fe9d Roll compiler-rt from 36b7ba36ef48 to 64c252741e3d (2 revisions)
  • 750d330 Reland "[sync] Ensure windows are shown in sync integration tests"
  • 422c24f Add Autofill Event usecounter
  • 45febed Revert "[dbsc] Add crash keys for unexportable key creation"
  • 3f28be7 [iOS] Show 'Save to Photos' when signed out
  • 530ead0 Add Vehicle entity type and update existing entity models.
  • 0fa4782 Roll Crossbench from 0f54974dd4f7 to f90745d8103b (1 revision)
  • 523d873 Roll ios_internal from 5ec58f037ea9 to 49f2274f3c2d
  • d8cbe2b Roll Boca App from Qj-psZw0OcT4mephc... to Jv1DuYlWeSo9CC-SM...
  • 6279eb1 Roll DevTools Frontend from aed51900d729 to bbeebce1f1f0 (1 revision)
  • e7836ca Roll clank/internal/apps from ad65abc1af27 to 93136002dccd (1 revision)
  • 24fe0f6 fix FrameSizeButtonTest dangling pointers
  • 0335d3f Eliminate UNSAFE_TODOs in html_perftest.cc
  • d7f7799 Use EqualIgnoringAsciiCase() in core/html/
  • 9cbc928 Roll Boca Receiver App from t-w9JiqDxYjmVqQGp... to V6laLH-HYUs_Q1IIG...
  • b85c792 Explicitly allow reentrancy for PrerenderHost::Observer
  • d9b5875 [ios] Remove unused text_classifier API
  • 32f5c23 [Actor Login M2] Implement credential merging logic.
  • e567fab Run affected tests on presubmit
  • 7e68cf0 WTF: Replace ReverseFind() with rfind()
  • 7276084 Autoshard chromium/src test suites
  • ce9db4b [Blink] Simplify conditional in WebGLRenderingContextBase
  • 8662d45 [Blink] Flip WebGLRenderingContextBase conditional for clarity
  • 8642dde [Blink] Remove CreateSnapshotProviderForVideo()
  • e97d4ac [Blink] Have WebGL create snapshot provider explicitly
  • 64a694b [NTP-Real-Box]: Fix unexpected voice and lens buttons incorrectly reappear.
  • 2a9cd6e Roll Chrome Mac PGO Profile
  • 3369de1 Roll V8 from 8f7e457e19db to 5440e20916d9 (2 revisions)
  • 5e00f83 login: Pass local state PrefService to LoginUIPrefController
  • bf5c1bd login: Pass local state PrefService to KioskAppMenuController
  • 564b8e3 [//media] Clarify PCVR one-copy SI VideoFrame->GL texture flow
  • 18707eb Roll Chrome Android ARM64 Orderfile from hoX_Uvmsj08QnPfu7... to Tj1jAUqFUzPK-Y-UU...
  • 2674859 Consider shorthands when removing equivalent properties from styles
  • 5da45e5 [Frameworks roll] Roll to 877235371 piper revision
  • 956896c Roll WebView ARM64 Orderfile from Eyp1ozMm6WFcVbjve... to HevEJN3X7JDykRRYZ...
  • 6f14dc5 Improve readability of notification ID checks
  • 0dcbff4 Roll Chrome Win32 PGO Profile
  • a6bc171 [Spanify] Add tests for partition alloc
  • cf17e78 Roll Chrome Mac Arm PGO Profile
  • 6994065 Roll Chrome Win ARM64 PGO Profile
  • 05643c6 Roll Chrome Win64 PGO Profile
  • 7b04e6f [Editing] Fix Home key behavior in contenteditable with contenteditable=false edges
  • a140b0b [//media] Clarify PCVR direct texture-to-texture copy flow
  • 6b05137 [//media] Remove orphaned comment in PaintCanvasVideoRenderer
  • f4d6dc3 login: Pass BrowserPolicyConnectorAsh to LoginDisplayHost*
  • 0b8ee53 Roll WebView ARM Orderfile from Qohg2INY4ZCofcw4U... to z6Wf-bIg2eNmd4TwW...
  • 159ea18 OMTPrefetch: Expose kWebViewPrefetchOffTheMainThread to feature map
  • 96e0462 Roll Infra from git_revision:1959c0f345fc4fc01903ce8437d507d9cf94e390 to b9d7d1a77748
  • bf2e3cc Roll DevTools Frontend from feb784f77902 to aed51900d729 (1 revision)
  • 79a91dd Roll androidx from OD2jbM01RuaeYoMBn... to ouJMUlKeLTumklZ_7...
  • ba0ab5c Create a field trial config entry for WebSerialWiredDevicesAndroid.
  • 5622ae9 Remove c/c/url_constants.h from OS settings webui impl.
  • 1918cce [Editing] Control text truncation based on selection
  • 8760730 Mark pointerevent_attributes.optional.html?touch flaky
  • 7e3ec86 Move app_list related prefs from c/c/pref_names to ash_pref_names
  • f1cf161 Move @StyleRes annotations to mark their type.
  • 9449d96 Roll Website from b4083a2f3400 to ec178524cedc (1 revision)
  • dd1dfbf Explicitly allow reentrancy for observers below ui/
  • 9a8527a extensions: Annotate ExtensionToolbarTest as desktop-only
  • 4e14a88 extensions: Remove test extensions between test cases
  • f56dc2d Roll Chrome Android ARM32 PGO Profile
  • e7621d0 Reland "[PA] Add TaskControlledPurge to fieldtrial"
  • ab87b8f Revert "Reland "[WebAppInstallFinalizer_Refactor] Use FinalizeUpdateJob""
  • a0d4216 actions revamp: Use sealed class for action states
  • 5372e56 [dns] Fix DCHECK during HostResolver shutdown
  • 4b35721 Roll Chrome Android Desktop x64 PGO Profile
  • 0cca520 Add @sadym to CDP owners
  • ac94e0d Revert "[CodeHealth] Spanify AudioEncoderOpus"
  • 24a1ea3 Roll Chrome Mac Arm PGO Profile
  • 38248c9 WebNN: Fix activation names to use PascalCase
  • e29ca2f Renmae chrome_url_constants.h to chrome_webui_url_constants.h
  • 9ded8a8 Explicitly allow reentrancy for LoginDataDispatcher::Observer
  • fe214b4 Roll optimization-guide from a7d5c8b51134 to 9cb2e2aba76e
  • 2a91888 Roll Chrome Android ARM64 Orderfile from W0czC73DcJRTJqujX... to hoX_Uvmsj08QnPfu7...
  • 0fe94aa Roll WebView ARM64 Orderfile from UMJjo206_va5VAqVl... to Eyp1ozMm6WFcVbjve...
  • cf2bdba Test //net AbslHashValue() implementations
  • 7a70e65 Roll eigen from c66fc52868a1 to 662d5c21ff84 (1 revision)
  • e4a6f1d Roll PDFium from fcfdf1c3e22e to 0c38b00a3baf (1 revision)
  • 8f6bf26 Roll Chrome Win64 PGO Profile
  • 632e437 Roll Chrome Win32 PGO Profile
  • afdfd39 Roll DevTools Frontend from e27f62c91b96 to feb784f77902 (1 revision)
  • 94ae38c Roll Skia from 4cf3cd27b620 to 61c0e71760f5 (3 revisions)
  • cd63297 [WebSocket/H3] Add byte count accessors to WebSocketQuicStreamAdapter
  • f8de137 [Media Capture] Add logs for launching picker and result callback
  • 5101659 Roll Chrome Mac Arm PGO Profile
  • 36b33cb login: Pass ApplicationLocaleStorage to LoginDisplayHost*
  • ebdefb3 Roll WebView ARM64 Orderfile from GPd3wsGTaVWTKET8f... to UMJjo206_va5VAqVl...
  • e0be084 login: Pass SharedURLLoaderFactory to UserImageLoaderDelegateImpl
  • 2f12716 Prerender: Remove kPageHideEventForPrerender2 feature flag
  • cbed939 Roll Chrome Android ARM64 Orderfile from QMQpX83P0MBYWmzB5... to W0czC73DcJRTJqujX...
  • c86e1d3 Revert "[js_sandbox] Add memory budget tracking to MessagePorts."
  • 16789da [TcpConnectJob] Wire up ConnectTiming.
  • 8abe34f Clean up unused beforeunload test hooks in TestRenderFrameHost
  • 8fe574b Migrate AvoidUnnecessaryBeforeUnloadCheckSync unittest to browsertest
  • 4914022 Updating trunk VERSION from 7713.0 to 7714.0
  • 12fb284 Roll clank/internal/apps from 5ed885ced939 to ad65abc1af27 (1 revision)
  • 305d806 Roll Chrome Mac PGO Profile
  • 9f113c6 Roll Chromium Variations from A58Fk6Mfoywgu8gOd... to _-m72dgwiZn7mQQwH...
  • 9b1e555 Roll vulkan-deps from dd5ab0120a15 to bd2a0f8993f5 (1 revision)
  • 757f1a1 Add tracing and metrics for NoVarySearch cache storage
  • f6eade1 JXL: Match AVIF fuzzer timeout settings
  • 814632c Rename blink::NullURL() to NullUrl()
  • d7c86b6 Roll Chrome Win32 PGO Profile
  • 024e610 Add open in new tab/incognito/window to bookmark item menu
  • 8d6713f Roll Chrome Linux PGO Profile
  • c64abc1 Roll Chrome Android ARM64 Orderfile from gRrUpKopFsToocMEQ... to QMQpX83P0MBYWmzB5...
  • f32e2dd [PA] Roll out FreeWithSize to default-enabled
  • 77f144b [PA] Fix ThreadCache IsInitialized logic
  • 62686e8 IWYU: generated_code_cache_context.(h,cc)
  • 0ce276b Roll Chrome Mac Arm PGO Profile
  • 4ed8242 fix ProjectorSessionImplTest dangling pointer
  • f595412 fix MultiDeviceNotificationPresenterTest dangling pointer
  • 4e135e4 fix FastPairRepositoryImplTest dangling pointer
  • c1b549a fix DeleteOnBlurDelegate dangling pointer
  • d80c0d7 Roll Chrome Win64 PGO Profile
  • 23c4a6c Use float geometry for first text fragment viewport rect
  • 95d35e9 Remove low-priority-async-script-execution virtual test suite
  • c8f41ee Roll Chrome Win ARM64 PGO Profile
  • 073b9d3 Roll Chrome Android Desktop x64 PGO Profile
  • 31fb1ef siso: update to version 1.5.3
  • 575a611 Roll WebView ARM64 Orderfile from NmkdInsslRV812wGn... to GPd3wsGTaVWTKET8f...
  • ce50d30 Roll Chrome Mac Arm PGO Profile
  • b8d1bad Remove tablet mode logic from NonClientTopBorderHeight
  • a0042aa Roll Cros Components from 7ccdbf606066 to 74aa22bce061
  • ab0ad25 Roll Chrome Win32 PGO Profile
← Back to all summaries