Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2026-01-09 on branch 'main'

Chromium Digest: 2026-01-09

Overview

A significant day on the main branch with 662 commits, of which 501 were deemed relevant for this summary. The day was marked by an unusually high number of breaking changes affecting a wide range of public APIs, from Android WebView and the DevTools protocol to core networking and graphics interfaces. Developers and embedders should pay close attention to the breaking changes section. Notable feature work includes the introduction of a new text scaling mechanism in Android WebView, progress on Rust bindings for Mojo, and the reland (and subsequent revert) of a JPEG XL decoder. First commit: (5941f3d), Last commit: (d2ab9b6).

Breaking Changes

  • ⚠️ BREAKING Android WebView: The WebMessageListener API in AwContents is now world-aware, breaking the signatures of AddWebMessageListener and RemoveWebMessageListener by adding a world_id parameter. (27e7c6f)
  • ⚠️ BREAKING Android WebView: A new <meta name="text-scale"> tag has been introduced, which fundamentally changes text scaling behavior. It disables global text scaling and text autosizing, potentially altering the rendering of existing WebView content. (b29d632)
  • ⚠️ BREAKING Android Payments: A major refactoring of the Payments API hierarchy breaks the public Java API. PaymentRequestService now uses a new PaymentAppServiceDelegate interface instead of PaymentAppFactoryDelegate and PaymentAppFactoryInterface. (ac47931) (5774306)
  • ⚠️ BREAKING Networking: The pure virtual method net::BidirectionalStream::Delegate::OnHeadersReceived signature has changed to include const net::ProxyInfo&, requiring implementors to update. (4b432f4)
  • ⚠️ BREAKING Networking: The signature of the virtual method net::disk_cache::Backend::GetEntryCount has been changed to use base::expected instead of a callback, breaking implementations and callers. (6148cfd)
  • ⚠️ BREAKING Media: The public mojom enum media_stream.mojom.MediaStreamRequestResult has been significantly altered, with general error values removed and more specific ones added. (3160759)
  • ⚠️ BREAKING Media: The public method media::VideoFrame::HasNativeGpuMemoryBuffer() has been renamed to HasNativeMappableSharedImage(). (a1be13f)
  • ⚠️ BREAKING Media: A dependency roll for libvpx includes an ABI version bump, which can break embedders who link against it. (8fe47fa)
  • ⚠️ BREAKING GPU & Graphics: The public class gpu::MailboxHolder has been removed from gpu/command_buffer/common/. Embedders must find an alternative for texture sharing. (8a1e786)
  • ⚠️ BREAKING GPU & Graphics: The public method signature in SurfaceFactoryOzone was reverted from bool IsFormatSupportedForTexturing(...) back to std::vector<gfx::BufferFormat> GetSupportedFormatsForTexturing(), breaking custom Ozone platform implementations. (dd37b25)
  • ⚠️ BREAKING Blink: The public method LayoutBox::NoOverflowRect has been removed from Blink's core layout engine. (a57a9d9)
  • ⚠️ BREAKING Prerendering: The virtual method PrerenderHost::Observer::OnHostReused() has been removed from the public observer interface. (854fa14)
  • ⚠️ BREAKING UI: The public method BrowserView::ShouldDrawStrokes has been renamed to ShouldDrawTabStrokes, breaking subclasses and callers. (b26a5e1)
  • ⚠️ BREAKING UI: The public browser() accessor has been removed from the TabStripController interface. Code should be updated to use GetBrowserWindowInterface(). (2caf7a2)
  • ⚠️ BREAKING DevTools: The CookieIssueInsight type has been removed from the DevTools protocol as part of the removal of the CookieReadinessListComponent. (32fa523)
  • ⚠️ BREAKING Build System: The GN build target //ui/gfx:native_widget_types has been renamed to //ui/gfx:native_ui_types, which will break external build systems with a dependency on the old target. (0935a2b)
  • ⚠️ BREAKING ChromeOS: Several public CUPS (printing) related methods have been removed from the DebugDaemonClient D-Bus interface. (fd70efe)
  • ⚠️ BREAKING ChromeOS: The public VpnProvidersObserver class and its associated component have been removed from chromeos/ash/components/network. (4c76de9)
  • ⚠️ BREAKING Enterprise: The ExtensionForceInstallWithNonMalwareViolationsEnabled enterprise policy has been removed. Force-installed extensions with certain violations will now be disabled. (6fe88fb)
  • ⚠️ BREAKING Components: Synchronous public methods like GetRecentURLFromClipboard have been removed from the ClipboardRecentContent base class. All clipboard access on iOS is now asynchronous. (d5641b7)
  • ⚠️ BREAKING Security: The virtual method CopyKeyFromOtherService was removed from the public unexportable_keys::UnexportableKeyService interface. (c7e1bf4)

Blink & Web Platform

  • A new JPEG XL image decoder (jxl-rs) was relanded, but later reverted due to an ASAN issue. (f9f7212) (abc19ec)
  • The SeparateDeferModuleScriptTasks feature was enabled by default to improve performance by changing how deferred module scripts are handled. (e7e02f3)
  • The LowPriorityAsyncScriptExecution feature is now enabled by default on Android to improve responsiveness. (81d8ad3)
  • The Local-Network-Access feature is now enabled to use split permissions by default, following an "Intent to Ship". (8996cf8)
  • The experimental <menuitem> element can now act as an "interest invoker" by supporting the interestfor attribute. (bb695aa)
  • The Web Audio BiquadFilterHandler was refactored to remove its dependency on a hardcoded render quantum size, in preparation for variable-sized rendering. (1b816a2)
  • The GPUTexture.textureBindingViewDimension attribute has been exposed as part of the WebGPU compatibility mode implementation. (bcc10af)
  • The experimental TimelineTrigger API was refactored to support multiple timelines by accepting a sequence in its constructor. (ac19e43)
  • A clipping issue with scrollbar-gutter: stable both on macOS was fixed by updating how ScrollPaintPropertyNode handles content offsets. (a64bc65)

Android

  • The WebViewBuilder now supports applying configurations to existing WebViews via the new WebViewBuilder.applyTo method, offering more flexibility. (c87e8c2)
  • A new Tab Bottom Sheet feature was added behind a feature flag. (8b15078)
  • TalkBack announcements for tabs were fixed to correctly report position and count by updating accessibility node properties. (dabc56a)
  • The MediaCapturePickerDelegate interface was updated to return a Tab object instead of WebContents to better handle unloaded tabs. default methods were added for backward compatibility. (a0c047f)
  • The z-order of the bottom container was fixed to prevent it from being obscured by other UI elements like omnibox results. (834b7ec)
  • ChromeTabbedActivity now declares support for persistableMode, enabling state restoration across reboots and app updates when the feature is enabled. (e80e482)

Services & Infrastructure

  • ⚠️ BREAKING A major refactor standardized how memory pressure notifications are sent to child processes, unifying multiple platform-specific mechanisms. This resulted in the removal of the Chromecast-specific chromecast::mojom::MemoryPressureController interface. (8c9906b)
  • Significant progress was made on experimental Rust bindings for Mojo (rustmojo), including code generation for interfaces and skeleton implementations for Remote and Receiver types. (1faffa0) (f4012f3) (bd47705)
  • StackTrace was updated to allow probing for dbghelp.dll on Windows, enabling symbolization in some sandboxed processes where it was previously unavailable. (ab08680)
  • The SQL definition for input.scrolling was removed from Perfetto's standard library as the event is no longer emitted. (ef262d9)
  • The "Open Cookie Database" component updater was removed as the associated UI is being deprecated. (3feb92d)
  • The legacy SK_SUPPORT_LEGACY_UNSPANNED_GRADIENTS flag was removed, committing to new span-based gradient APIs in Skia. (4448cf7)

UI & Features

  • A system notification was added to alert the user when Chrome is no longer the default browser. (e9e4fc3)
  • Numerous fixes were made to Reading Mode, including preventing the header from scrolling, fixing menu z-indexing, and resolving a crash in split-screen view. (a85bef0) (51c35bc) (9d08c5f) (a53112f)
  • On macOS, Picture-in-Picture (PiP) windows are now excluded from thumbnails in the getDisplayMedia picker. (29abcca)
  • The tooltip for the vertical tabs collapse button now correctly shows "Expand Vertical Tabs" when the panel is collapsed. (e19a89d)
  • The instructions on the chrome://dino page are now dynamically updated based on device capabilities (e.g., touch vs. keyboard). (a64c783)

iOS

  • A race condition was fixed in PasskeyTabHelper where WebAuthn requests could be dropped if they arrived before the corresponding WebFrame was available. (c9da0d3)
  • Snackbar strings for "Synced Set Up" were updated. (1274210)
All Commits (662)
  • feb6831 Roll FuzzTest from b6e1af9dba44 to a72f099a943c (2 revisions)
  • b012b28 Roll vulkan-deps from ab85a50cd08a to 25dc33c623c9 (4 revisions)
  • d2ab9b6 Fix navigation menu's shadow out of bound issue
  • 4433d35 Remove dependency of chrome/browser/profiles/profile.h
  • c8715d6 [Immersive] Fix loading artifacts when showing immersive.
  • b11967f [Theme] Close the preview dialog in destroy().
  • a48daca Roll Chrome Android ARM32 Orderfile from Nzhsry8Qukq4l4HAN... to kV3SjvfhbU-Ixn0Uv...
  • 4e28d81 Separate Concerns in the BookmarkBar BrowserTests
  • bb0a6dd Roll androidx from op01e0Dbufs--PGZZ... to d5WD6eqVYTKskinrX...
  • ebefe0b Roll compiler-rt from a410df4c0371 to 2a9f44874fa9 (3 revisions)
  • 62f76b5 Roll WebGPU CTS from 8105443d0216 to cf6c5cd8e96d (2 revisions)
  • 1274210 [iOS] Update Synced Set Up snackbar strings
  • a57a9d9 [cleanup] Remove LayoutBox::NoOverflowRect
  • 8fe47fa Roll src/third_party/libvpx/source/libvpx/ d5399cdd6..b0be221b6 (4 commits)
  • c7aab89 Updater UI: Increase app column width
  • dcb1dab Remove gbeaty from OWNERS
  • 543a21e Centralize BookmarkFolderButton Creation in the BookmarkBarView
  • d8c70a8 Improve customizable combobox dismissal prevention
  • 7c1dd3a [Gardener] Disable OmniboxContextMenuControllerBrowserTest.ExecuteCommand broadly
  • 938e934 Update dragged vertical tabs transformations on container bounds changes
  • c10093a [soft navs] Emit trace event for Soft LCP more consistently.
  • dc46a8a [composebox] Add the tooltip text to the submit button.
  • 1bc2808 [DCSI] Enable CompoundImageBacking as default.
  • b601ea6 Add tests for maxAge being 0
  • 462b646 Revert "[gpu] Add explicit NV12/P010 allocation texturing bools on FeatureInfo"
  • 6ef3158 Roll Chrome Mac Arm PGO Profile
  • 5ebfdb2 Reapply "IDB: DCHECK->CHECK in EncodeVarInt"
  • 21e5825 [tracing] Replace TRACE_EVENT_CATEGORY_GROUP_ENABLED with TRACE_EVENT_CATEGORY_ENABLED in blink
  • dd37b25 Revert "[ozone] Refactor GetSupportedFormatsForTexturing"
  • 8f6dc9f Roll Chrome Win32 PGO Profile
  • ac0faf5 [omnibox][next] Optimize ContextualSearchboxHandler::GetRecentTabs
  • af1ec9c Revert "[gpu] Remove supported_buffer_formats_for_allocation_and_texturing"
  • 4703768 Roll WebRTC from 2504c70fffcf to 92db68165cf5 (4 revisions)
  • b0f6bc7 Reland "Add persistableMode to ChromeTabbedActivity for desktop"
  • 01c4fe5 [TabBottomSheet] Add A11y strings for bottom sheet
  • 085cc66 [Reader Mode] Fix Readability Test Extension README.md.
  • 6574d77 [TabListBridge] Implement MoveTabGroupToWindow
  • 03b1b11 [gpu] Remove supported_buffer_formats_for_allocation_and_texturing
  • 3160759 Update histograms to use the updated MediaStreamRequestResult enum
  • 9d11297 Roll V8 from 0eaed7bc4372 to 0e596e39bb51 (3 revisions)
  • cb9795d [Wayland] Fix tests that were flaking due to Token Request Timeout
  • 27e7c6f Enable JSBinding for WebMessageListener to be world-aware.
  • b370660 [Android] Disable SettingsMultiColumn again in PasswordsPreferenceTest
  • ef262d9 Remove input.scrolling SQL
  • 994b645 Roll earl_grey2 from 9ba5162df2ee to ecd723e95e36 (1 revision)
  • e9e4fc3 Show notification on default browser change
  • 0334a80 [DNR] Remove ActionTracker destructor DCHECK
  • bbe82bf Deflake playing-the-media-resource#fragmented-mp4-end.html
  • b54a641 Fix crash in KeyboardControllerImpl::TransferGestureEventToShelf
  • a1f2a1b Roll Chrome Android ARM64 Orderfile from U6kh6PseISjNxrM0F... to psY0kFk0ez8z4rPoJ...
  • bde1018 Enable GlicActorUiGlobalTaskIndicator by default in unit tests
  • 2d4be9c [omnibox-next] Fix missing divider in variant 1.
  • 09fdb96 Add adelm@ to customtabs related OWNERS
  • c1cf0f1 [iOS] Handle Gemini View State Expansion via Callback
  • b3bed80 [VideoToolbox] Flag first SEI recovery packet to reset decoder
  • 2979c6d Roll src/third_party/libaom/source/libaom/ 6269d4011..e3d6ba6e5 (10 commits)
  • fe829a2 Revert "Webium Product: defer browser test until the reload button is painted"
  • a9c7c38 Roll clank/internal/apps from 075a4b1935c1 to 29818f17ce37 (2 revisions)
  • 6353154 Roll Skia from 7386219151e6 to b2b109f0e980 (1 revision)
  • 87df9ec Roll WebView ARM64 Orderfile from -8KbcG9Rpo4ScsqSh... to 8mHVrCHmQl59_oPvd...
  • 0ac4fe2 [ntp-next] Adding flag for dismissal UI
  • 9f60ef9 Add actor/OWNERS as owners in actor histograms
  • bb241a6 [PWA/App Migration] Suggested apps do not launch or do OS integration
  • 3fc3c36 Roll src-internal from a26e600286f0 to 7255f2b12721 (1 revision)
  • 2caf7a2 [VerticalTabs] Remove browser() accessor from TabStripController
  • ea27162 Update CBB autoroll for the builds refs
  • e3c5967 Add null check for Profile in PinnedTabStripMediator
  • 10459bd [Settings Search] Index dynamic prefs of HttpsFirst..Fragment
  • af6388e [proxy main] MainIdleBypassScheduler field trial config
  • d75123b [proxy main] Update in-place idle logic
  • 8105bf8 [Actor Overlay] Disable Find in Page when overlay is visible
  • 641644a [Frameworks roll] Roll to 854285604 piper revision
  • f9f7212 Reland "Add JXL image decoder using jxl-rs"
  • a7d871d Roll FuzzTest from 725b15d92b9a to b6e1af9dba44 (1 revision)
  • d6c5575 Add log file when extension Schema is not valid
  • 2706ede Roll WebView ARM Orderfile from 1ZnfT5UkdyuRduZLZ... to zENBQdVx-zX5nibbW...
  • dabc56a [a11y] Fix TalkBack index/count announcements for tabs
  • 447fedb Roll PDFium from cfe5f8056aa2 to e685011cc747 (22 revisions)
  • 2fb610f Add a signout confirmation prompt for unsynced bookmarks
  • 04381e4 web_app: Expose and serialize display override url_patterns in WebApp
  • 062af90 [Modularization] Create a target for //chrome/browser/gcm:unit_tests
  • 1e56692 [FedCM] Automatically select account when actor is enabled
  • 780c9f4 Add a fieldtrial testing entry for VariationsStickyPersistence.
  • 0935a2b Migrate "gfx::native_widget_types*" target to "gfx::native_ui_types*"
  • 407114a [Desktop Android] Monitor pinned state changes in TabsEventRouter
  • b29d632 [meta text-scale] Support for WebView
  • 4ea5cbc Roll Help App from jil9sx9GXJB-xs36C... to PlunMbCG8zv5oK1tL...
  • 62f7c85 Explicitly disable kBlockV8OptimizerOnUnfamiliarSitesSetting in tests
  • db5e90a Roll Chrome Linux PGO Profile
  • 8689258 Fix IWYU for RAW_PTR_EXCLUSION
  • ad8ee4c Roll Chrome Mac PGO Profile
  • e7e02f3 Enable SeparateDeferModuleScriptTasks by default
  • 0bce120 ML Residual Echo Estimation: Add OptimizationTarget histogram variant
  • ae66950 [Persist] Clean Unused Nodes for Model
  • 98afe58 Create an interface for GlicPinnedTabManager.
  • ffca793 [Omnibox WebUI] Fix crash loading popup in non-browser windows.
  • ae82581 [searchbox] Fix vertical positioning of the input in searchbox.
  • ee1637b Call Shutdown on Host and Recreate WebContents on Glic reload
  • de429aa spanification: automatically spanify ui/base/l10n/l10n_util.cc etc.
  • bcf81e6 [tracing] Migrate legacy flow macros in ['gpu', 'ui/gl']
  • 0bf7fcf Roll Chrome Mac Arm PGO Profile
  • 43a8af3 [spc] Create a new UX view for SPC
  • 2ad237a [Theme] Don't check selected icon after pressing back.
  • b36550c [context-input] Send invocation source param for non-contextual first turn AIM queries.
  • 43790ae [iOSFidoImportExport] Display favicons for synced users in CX
  • 82d475a Reland "Make <menuitem> automatically be an interest invoker"
  • 885892f [ozone] Refactor GetSupportedFormatsForTexturing
  • e96241f [Settings Search] Create parent/child relationships for runtime prefs
  • 8b15078 [TabBottomSheet] Add basics for the bottom sheet.
  • 500947f Put UNSAFE_TODO around newly flagged printf-style function calls
  • c40d946 Roll Dawn from 16508f36995f to 54f1b5f806a4 (5 revisions)
  • 450d610 [Immersive] Hide the color menu when forced colors are active.
  • bd7be25 [bedrock] Migrate download_toolbar_ui_controller.cc away from BrowserListObserver.
  • 4f77e3a Remove non-emitted InputMethod.Assistive metrics
  • b56af4c [webnn] Implement litert graph.
  • 4a74c70 [WebAuthn] Avoid null dereference in GetCredential
  • db488b0 [carousel] Ensure default style for ::scroll-marker-group without rule
  • 0233328 Retrieve SupportedProfileType when restoring from persistent/saved state
  • b263685 Log taskids for BackgroundTaskJobService.
  • 211447c Roll BoringSSL from 803832d57e89 to a0a089e60c13 (5 revisions)
  • 353c597 [Read aloud] Don't draw the highlight if speech never started
  • 477c487 Roll clank/internal/apps from be30e64ae1e8 to 075a4b1935c1 (1 revision)
  • 8731138 Use span-based file API in single_log_file_log_source.cc
  • 9efce2d [omnibox-next] Add high contrast text color to context menu.
  • 18e3b06 Roll Chrome Android ARM64 Orderfile from wHnUqS9LdH5kZq02w... to U6kh6PseISjNxrM0F...
  • 5623418 [BrowserWindow] Compile browser_window on all android
  • da6f458 Add a new OptimizationType for Chrome Skills to show/recommend on the current page.
  • 505351a Roll eigen from 5d9beb81ab81 to 7aea350ba117 (1 revision)
  • 4e71adf [BrowserControls] Create TabStripTransitionCoordinator earlier
  • 2d70b7e [Contextual Tasks] Record OAuth error for WebUI
  • 7fc0811 [Vertical Tabs] SelectTab works for vertical tabs
  • 223a09a Automated Commit: LKGM 16549.0.0-1074443 for chromeos.
  • 6c76275 CCA: Upload Error notification
  • 4d87378 Roll clank/internal/apps from ac1e0cbdf1b2 to be30e64ae1e8 (1 revision)
  • 30b82ec Use span-based file API in experiments_fetcher.cc
  • dddead5 Roll src/components/resources/default_200_percent/google_chrome/ eb8ad4395..7f4bd06d6 (1 commit)
  • bbaea18 Clicking "Don't ask again" now toggles checkbox.
  • b1bb17f Use span-based file API in user_policies_manager.cc
  • 1cbc170 Roll Chrome Win ARM64 PGO Profile
  • ea52a27 [Icons] Update offline_pin vector drawable
  • 8d0a73a [Drag and Drop] Add unit tests for the drag handle onTouchListener
  • 047dd21 Roll WebView ARM64 Orderfile from 4qvfrw1G5B-W6Ugoe... to -8KbcG9Rpo4ScsqSh...
  • 2cf5ee2 [Settings Search] Highlights a pref built dynamically
  • d3954c6 Roll src/components/resources/default_100_percent/google_chrome/ e83eb3a68..cf26224e8 (1 commit)
  • c09e3a6 Roll src/components/resources/default_300_percent/google_chrome/ 58ffc3d13..ef542e9d7 (1 commit)
  • 13c0da5 image-decoder: Remove crabby prefix from avif decoder
  • 4f71b74 [glic] Inline ExecutionEngine::ShouldGateNavigationInternal
  • 6050c6d Roll V8 from 2b9ab40b8943 to 0eaed7bc4372 (11 revisions)
  • 232bca6 [PDF] Refactor PDFiumEngine::SearchUsingICU()
  • d4b03b5 [contextual-tasks] Add smart compose to contextual tasks UI.
  • 8846826 Fieldtrial for RemoveGraphicsUKMs
  • 485e5aa [iOS] Add image remix feature strings
  • 7e62532 [iOS] Create icb/autofill/authentication
  • 13eb4d9 Nudge shows task done text
  • cd9b868 [OIDC Enrollment] Allow OIDC profiles to recover policies removed by GAIA
  • 6385a89 Mark Tablet and Desktop as important for PublicTransitLeakTest
  • bac245d [glic] Rework ShouldBlockNavigationUrlForOriginGating function
  • 8132ee9 Support latching policies and used shared memory in WV cookie manager
  • d843cc2 Creates unit test for NativePageNavigationDelegateImpl
  • ef28bbf DeviceStatusIcon: Add menu overflow metrics
  • 100095f [gpu] Add explicit NV12/P010 allocation texturing bools on FeatureInfo
  • e344ef1 [VerticalTabs] Remove extra params from TabSearchContainer
  • c002a5b Roll ANGLE from c94680666088 to abc874034d85 (1 revision)
  • 4f88cce Reinstate a "this should not happen" check.
  • ab08680 Allow StackTrace to probe for dbghelp on Windows
  • 0cff37d [RWM][RecentlyClosed] Remove least recently used entries from storage
  • a915616 [viz] Make PendingCopyOutputRequest not movable
  • 74492bc Roll Chrome Android Desktop x64 PGO Profile
  • 34a84fb [ntp-threads] Add a feature parameter for AIM ntp threads
  • c9da0d3 [iOS] Handle pending WebFrames in PasskeyTabHelper
  • 5071e4a Sync feature protos.
  • 3feb92d Remove Open Cookie Database component
  • a85bef0 [Reading mode] Ensure voice menu is above line focus
  • a624e74 Pass prompt suggestion to the side panel on open
  • d07104a [TabStrip] Ensure previously selected tab gets deselected
  • 9a768dc Roll Chrome Android ARM32 PGO Profile
  • b6cea1d Roll ios_internal from 67e4cbfb6948 to b57a304965d6
  • 2431acb [Tagged PDF] Add kNonStruct to PDF Tag to Blink role map
  • 3e450eb Allow for dynamic private_key generation
  • ca0778b [Page Info] Make icon non-interactable in new tab page
  • 49964f9 Revert "[HLS] Expose HLS renditions & variants as MediaTracks"
  • 88ec695 Improve Memory.DumpProvider.* histograms
  • 4bd19f5 [Desktop Android] Monitor recently audible changes in TabsEventRouter
  • 33cf61f Add support for parsing JSON to base::test::IsSupersetOfValue
  • 1e5174c Roll Chromite from 38eaa65b7819 to 3ae75a515634 (1 revision)
  • 49a3b05 [VerticalTabs] Delete TabStripController::GetFrameColor()
  • 9612fd4 Roll src-internal from 4314f8e6902e to a26e600286f0 (1 revision)
  • a64bc65 [scrollbar-gutter] Fix "scrollbar-gutter: stable both" clipping on macOS
  • 834b7ec Change z order of bottom_container
  • 7d84f40 [omnibox][next] Fix classic omnibox not closing when input is deleted
  • 5ffbaaf Add debug logs for instance activation changes
  • 5efd3f2 [iOS][AIM] Add composebox debugger floating entrypoint
  • abcf3e7 [WebNFC] Fix iOS NDEF record field mapping
  • 17176e4 [spc][ux] New vector icons for SPC UX Refresh Dialog
  • 3a096f0 Fix comment about AppController calls to frontend.
  • 5aa2233 [pm] Add feature to force foreground priority for all frames/workers.
  • bec59e2 Consolidate GPU location filters
  • 310677a [omnibox][next] Set the correct PDF chip icon color.
  • 07f94e2 Roll vulkan-deps from 7ff4e5c55aa6 to ab85a50cd08a (3 revisions)
  • 6a90474 Remove ScrollJankUkmReporter trace event and associated test.
  • a51fc17 [EICP] Add more browser tests and fix inverted request type and job mapping for policy fetches
  • beedda8 Add CancelPerformActions API
  • 54eef9a Add adelm@ to Chrome Android settings OWNERS
  • f859c0c [BNPL][Clank] Update Field trial testing config for BNPL
  • d1eef72 [Vertical Tabs] Add flags page feature
  • d9f1a25 ChromeAndroidTask: add missing conditions to canSetBounds() - SDK & Role
  • ecf6c3c Android: remove unused monochrome targets
  • 2053c42 Roll Chrome Mac Arm PGO Profile
  • c610510 [ios blink] Implement CJK input
  • 0af8628 Roll WebRTC from 5f1aeff4440d to 2504c70fffcf (2 revisions)
  • 88602cb Enable Dawn tests on Snapdragon X Elite
  • c407f88 [Reading mode] Recreate WebUI if app controller is unresponsive on close
  • b057ca9 Enforce settings dialog for simple override extensions
  • b12b193 [PWA] Gate localized manifest parsing behind feature flag
  • 081c1e7 Automatically add GPU Mac ARM64 optional trybot
  • e3069d8 Send unpin trigger for tab navigation events.
  • 1bf25e4 Roll Chrome Win64 PGO Profile
  • b26a5e1 Rename BrowserView::ShouldDrawStrokes to ShouldDrawTabStrokes
  • f9d844c Split out Activity recreation in LaunchCauseMetrics
  • e7b1b8c [ntp][realbox] Enabled fieltrial testing for IPH
  • a8ef539 [iOS][safari-data-import] Remove CHECK from `-resetToInitialImportStage`
  • cec3405 Roll Skia from 42fc911da58e to 7386219151e6 (1 revision)
  • 3d9b4bc Roll DevTools Frontend from 942169dcea57 to 9156f38c3710 (5 revisions)
  • dbcf6f6 Adds a comment: Why the migration attempt pref should be checked first
  • f1cd5e8 refactor some parts of root_store_tool in preparation for MTC anchors
  • d78f0f5 [Desktop Android] Wire up platform-agnostic post install dialog
  • 8c54e1f [Extensions] Fix crash when cleanup runs during context invalidation.
  • a190cc3 Update TabStrip preferred size during drag animations
  • 68e7a59 Avoid duplicate map lookups.
  • 08a1878 [spc] Update payment strings for SPC UX Refresh
  • bd22794 [PEPC]: Move CachedPermissionStatus to ExecutionContext
  • 4144215 [aim-tools-and-models] Add strings for Canvas, Thinking Pro, and Auto
  • 072f08e [Android] Make FragmentElement's Conditions recursive
  • a7060c4 startup: Record whether the Session Restore bubble was shown
  • 8919bb0 Use DoNothingWithBoundArgs in DefaultBrowserInfoBarManager
  • abe37cd [dragonbox] Mark update mechanism as autoroll
  • 6fe88fb Remove the ExtensionForceInstallWithNonMalwareViolationsEnabled policy
  • 22fcea0 Roll WebView ARM64 Orderfile from lvqCVbkDAC5O-G4Nt... to 4qvfrw1G5B-W6Ugoe...
  • 9be97ce Roll Open Screen from 20a76c1b607a to 2f7bcb51f043 (1 revision)
  • 845e73a [Extensions] Clarify return description for StorageArea.get()
  • 99d79f7 [NtpCustomization] Fix crash SettingsIntentUtil.isStandaloneFragment(SettingsIntentUtil.java).
  • 3c86536 Roll glic-test-internal from a6d9b325fc89 to fede314dfa63 (1 revision)
  • f0bc7b6 [Extensions] Create a separate GN target for gcm API
  • f4a3c60 Fix null deref in ApplyIterationAccumulation
  • e5f79b8 extensions: Add SharedTabGroupExtensionsBrowserTest to desktop Android
  • 85006b8 Send unpin trigger for tab close events.
  • ac2e7f5 Reorder members of HTMLSelectElement
  • e172a73 Fix: “Open in Reading mode” is displayed twice in the context menu for text boxes
  • ac19e43 [animation-trigger] Make TimelineTrigger support multiple timelines
  • fcca881 Enable badge configuration setup for kProactiveSuggestionsFramework.
  • 0e76450 Roll Chrome Win32 PGO Profile
  • 4abdcf9 LPP: Expose GetLocalAuthFactorsComplexity on AuthFactorConfig
  • 50a3939 Make Ctrl Shift N open new Incognito window instead of tab
  • 0ce236a Fix up several XSLT tests
  • 8a1e786 [gpu] Remove gpu::MailboxHolder
  • f7473a9 Use span-based file API in puffin's file_stream.cc
  • 2e5d8fe [Contextual Tasks] Allow history drawer to be opened via URL param
  • e43efa9 [Okta SSO] Use ExtensibleEnterpriseSSOPrefs handler
  • 651128d Revert "[a11y] Add clickable attribute to interesting check"
  • 217c282 [ipcz] Optimize buffer growth strategy in MojoMessage::AppendData
  • d735eca Record outcome in Update
  • d78ee72 Revert "Refactor ShouldHonorPolicies to use standard sensitive policy mechanism"
  • c98c9be [Okta SSO] Sync Extensible SSO configured hosts from macOS preferences
  • f19758b [Cleanup] Remove SafeBrowsingCrxAllowlistShowWarnings flag
  • 272905a [SetupList] Adjust active window start time
  • 53226c0 LCP: Add null guard for MediaTiming in image trace data
  • a6b9718 Add a fieldtrial testing entry for DBSCMacUKSInBrowserProcess.
  • 0cf02ab Fix Task Manager crash in GetRowsGroupRange
  • b8ea8cd [SLAMS] Set LlamaForcedTriggerCapability in RTLookupRequest.
  • ac47931 Reland "Refactor PaymentAppService and PaymentRequestService class hierarchy"
  • bf9bb2b Update GPU x64 Mac optional branches
  • 8dd4c43 Enable features that make KeepDefaultSearchEngineAlive and PrewarmDSE compatible.
  • bc88de7 Port over active tab pieces of AIM query proto
  • 4fe7445 Roll WebRTC from 14e19b2f6ce0 to 5f1aeff4440d (3 revisions)
  • cae0cd0 [iOS] Remove kSafetyCheckNotifications feature flag
  • d9cbf08 [Suggest] Gracefully handle not enabling group suggestion service
  • 911ed20 Fold ListMarker::IsMarkerImage
  • 29abcca Exclude PiP from getDisplayMedia picker thumbnails
  • 8996cf8 [LNA] Turn on LNA split permissions by default.
  • f9d03e5 Roll DevTools Frontend from d93e41907e55 to 942169dcea57 (1 revision)
  • fe0bc59 Use span-based file API in mock_bytes_provider.cc
  • 005ef13 Add gemini policies on android
  • c9a4709 IDB: handle errors cases in Cursor::ResetPrefetch
  • 7ff3da4 [WebAuthn] Record the reason why passkey metadata cache is unused
  • 2c58eba Remove reference to empty GNI list
  • 2cf7b47 Roll ANGLE from af77b0748997 to c94680666088 (1 revision)
  • 28bb9dc [Masonry] Remove CHECK of `grid_layout_data`
  • b66ec32 Rename block_third_party_incognito_with_aux
  • 53f8d7d [Reader Mode] Get git only ignore the src/ subdir under //third_party/readability.
  • c68ca4f Updater UI: Make event type chips constant width
  • cb1e976 Updater UI: Condense event list items
  • 11d1c23 [CodeHealth] Rename `Closing` to `Dismiss`
  • 42d4418 Remove SWAP_NON_SIMPLE_OVERLAYS_FAILED
  • 929d40a ios: Remove Stability.IOS.Experimental.Counts2 histogram
  • f746363 Roll clank/internal/apps from dc36e7e9f10e to ac1e0cbdf1b2 (1 revision)
  • b11d988 Roll Chrome Android ARM64 Orderfile from kyUl43oD4zZXUChkJ... to wHnUqS9LdH5kZq02w...
  • 3b5589c [Public Transit] Reduce flakes for TabSwitcherCardContextMenuTest
  • a448b82 Use span-based file API in leveldb files
  • e933080 Roll Chrome Mac Arm PGO Profile
  • d54026b Attach NTP Cards Coordinator as Home Modules listener
  • 0f58291 [Theme] Update the Chrome Colors selected item border color.
  • 7cc1a29 Roll V8 from 209c44ab4251 to 2b9ab40b8943 (19 revisions)
  • 41deb0e Roll vulkan-deps from 6a0031fd6e79 to 7ff4e5c55aa6 (1 revision)
  • 9fe82f4 Remove redundant headers
  • 70b3f63 Refactor SessionEvent notifications to reduce duplicated code
  • ecd7b95 [iOS][mvt-customization] Enable feature in fieldtrial testing
  • 4da7e89 [Android] Remove ApplicationStatus check from ViewElement Conditions
  • fd70efe Remove CUPS support from debugd client
  • 98935f9 [Extensions] Skip command-line extension metrics tests in Chrome branded builds
  • d2c84f1 Revert "Bundle Chromium's jarjar'ed version of protobuf"
  • 601a4c2 Roll WebView ARM64 Orderfile from yJUZolVTKsD1AiH0k... to lvqCVbkDAC5O-G4Nt...
  • e7e0eb6 [rustmojo] Add cxx imports for creating message headers
  • 2a9bdef [Force Save to Cloud] Add FailState::LOCAL_DOWNLOAD_BLOCKED
  • 1d2a717 Roll Chromium Variations from rvd7I-cUKYF_23yLT... to 3e2NQVTKO2f-6BPN-...
  • 29c0dfd histograms: Update Chrome.Tabs.AnimationSmoothness.TabLoading expiration
  • 97b6566 Use span-based file API in zlib's zip_writer.cc
  • c87e8c2 [webview] Implement WebViewBuilder.applyTo
  • f023c6b [glic] Rename method to match semantics; fix header comment
  • 83d08d1 Rollout /form-parsing/
  • 4a1346c Fix Minimize operation on Wayland
  • 9a9b259 Add metrics for Gemini dynamic settings
  • d3dd79e Updating trunk VERSION from 7625.0 to 7626.0
  • 02bf2dd [ntp-threads] Add translation strings for AIM history buttons
  • 95e4d90 [ActorTaskBubble] Add new subtitle for task with removed tab
  • 5117375 Roll WebRTC from 3b85fe40c2bd to 14e19b2f6ce0 (2 revisions)
  • 793209f [HandoffButton] Translate strings for "Take over task".
  • 9e23b65 Roll Media App from gT81CeE_MNLcr1y-K... to pTiWhn82iSRzvGDw-...
  • c7e1bf4 [dbsc] Remove CopyKeyFromOtherService from UnexportableKeyService
  • 25039dd [Composebox] Let VoiceOver describe image attachments
  • f48b1da CCA: Upload Done notification
  • 4317688 Use span-based file API in io_benchmark.cc
  • 5d1861d [omnibox] Prevent autocomplete suggestions for voice search results.
  • 508a510 Migrate more base::Contains() to .Contains() in blink
  • 5cfd85c Use span-based file API in seven_zip_reader.cc
  • 5fdfc7d Enable DropMetricsFromNonProducedFramesOnlyIfTheyHadNoDamage by default
  • 2e797b3 Roll androidx from 16uqoB7PDTzuWiRgk... to op01e0Dbufs--PGZZ...
  • eb1c84e Add domfc and myself as owners of components/proxy_config
  • 6148cfd Remove Int32CompletionOnceCallback
  • 4448cf7 Commit to new span-based gradient APIs
  • 4d3ed59 Roll Skia from a14ced7449cf to 42fc911da58e (1 revision)
  • 0bc223f Prebuild the list of AudioInputBuffer pointers in InputSyncWriter
  • a6c114b [dbsc] Log Secure Enclave key deletion errors
  • fcc2f71 Roll Chrome Android ARM64 Orderfile from gbhAe8zfPeWD6JVBW... to kyUl43oD4zZXUChkJ...
  • 3a27459 Roll Platform Experience Win from da4156964f87 to bd9f6ccc3ab1 (1 revision)
  • 6d08c60 Roll DevTools Frontend from 2c3925e6eb50 to d93e41907e55 (6 revisions)
  • 4eb5655 [RWM][RecentlyClosed] Avoid saving closed tabs from a permanent window
  • fa91281 [RWM][RecentlyClosed] Notify all RecentlyClosedEntriesManager instances
  • e31fca6 [iOS] Fix bookmark and history search scrim top anchor
  • 46bf28e [Theme] Fix shadow being cut on search box and composeplate buttons.
  • d750cce [Theme] Polish logic to apply a white background on search box.
  • 711bef9 Roll Chrome Mac PGO Profile
  • 31edf16 Handle the case when signout confirmation text is long
  • 6c2eee8 [ClapperLoud] Fix broken timeout logic
  • f5ae85e Add Chrome Updater to Support Tool
  • a1c9be8 [media] Introduce ColorSpace check for VideoFrame with WrapSharedImage
  • 2a08692 Updates StartQuery to use `FormData`
  • 68fdb3d Replace `std::unordered_map` with `absl::flat_hash_map`.
  • 18a4d28 Roll Chrome Mac Arm PGO Profile
  • d05da03 Roll Crossbench from 90e0a76476e6 to f1a00ad443d0 (2 revisions)
  • feeed9c [Composebox] Update images a11y label
  • 92c6743 [iOS] Add ComposeboxAIMDisabled feature flag
  • f9033b1 Move some TabStripController dragging logic into TabDragController
  • b3dc06e Roll Chrome Win ARM64 PGO Profile
  • 29b79b7 Remove duplicate map lookups.
  • 30679d2 [KP] Automatic update from google3
  • a0c047f MediaCapturePickerDelegate gets picked tab and be notified on finish
  • dc0c883 Extend expiry milestone for permissions-android-clapper-loud
  • f227456 Move WellKnownChangePasswordTabHelper out of password_manager
  • 163f334 AIM Eligibility observe local eligibility changes
  • 9ae3a7c [viz] Update WrapMappableSharedImage tests to pass proper color space
  • 94a1955 Automated Commit: LKGM 16549.0.0-1074437 for chromeos.
  • cb71e9b [iOS] Do not modify location bar badge state on same-page navigations.
  • 1eb5c68 [ios, composebox] Properly layout close button in narrow iPad layout
  • 7762403 [CT] Automatic update from google3
  • 9a5a393 Roll to Android SDK 36.1
  • 0fbd82a Reland "[Zoom Indicator] Fix the mismatch between indicator tooltip and actual zoom level when chrome is reloaded"
  • 4b4d276 [LNA] change loopback-network display strings
  • de11954 [ClapperQuiet] Show Notifications permission while it is being requested
  • 0d34b5a [ClapperQuiet] Fix embargo threshold for Quiet Clapper prompts on Android
  • 515d959 Add about flag entry for AutofillEnableNonAffiliatedLoyaltyCardsFilling.
  • 5714206 Independent inheritance flag fix for IsCSSInert
  • 0b7ce5b Revert "Graphite: disable Dawn's lazy clears"
  • 4714c68 Roll ios_internal from f4263c03520b to 67e4cbfb6948
  • 89d9fce Updating XTBs based on .GRDs from branch main
  • 472e450 Roll Dawn from 2b48aa96c50c to 16508f36995f (6 revisions)
  • f5c5d0a Roll Chrome Win32 PGO Profile
  • e3a0bc7 Add a link to docs about the MCP server to chrome://inspect
  • 4b4f29e Roll Chrome Win64 PGO Profile
  • a612b19 Roll BoringSSL from ddcd21ec15ea to 803832d57e89 (1 revision)
  • 0032e05 [Signin][Android] Fixed conversion of Java AccountInfo to native object
  • fc4d31f Actor: defer ExecutionEngine::FinishedToolInvoke while interrupted
  • 72c57de Roll Chrome Android Desktop x64 PGO Profile
  • 6a93f13 Consider PasswordFormClassification for loyalty card suggestions.
  • 466e546 Remove kSegmentationPlatformTipsEphemeralCard feature flag
  • 664406d [iOS] Remove Tips Tips Ephemeral Card flag from ios/chrome/browser
  • fb5d1ca Remove Tips Ephemeral Card feature flag from home_modules
  • 7ccf5a4 Reland "[ios] Implement containerization of composebox for iPad"
  • 6d61ec0 Roll Crossbench from e5596abe4ad6 to 90e0a76476e6 (1 revision)
  • 4ff2869 Happy Eyeballs v3: Separate out alt-service and non-alt-service attempts
  • a6e09a5 Roll Chrome Mac Arm PGO Profile
  • 3352f67 [Autofill AI] Clean up obsolete feature
  • 5d162ce [Android] Use SigninSurveyClient to show survey
  • 41a5f3c Roll R8 from t5yDKEhQrTH2WsWjR... to TXlzDJEcatuD9PYDo...
  • 21b1889 Migrate off of the `cgi` module.
  • 608b7ea [Clipboard] Fix crash in clipboard with malformed text
  • 2e949c6 Revert "[AutofillAi] Permissions conditionally check new syncing pref"
  • 64bb2bc Graphite: disable Dawn's lazy clears
  • a90599a Roll ios_internal from a787d9827b54 to f4263c03520b
  • eefdb68 HttpStreamPool: Handle fatal TLS failures in Attempt
  • 6919488 Roll WebRTC from 3d8ce2fa7d82 to 3b85fe40c2bd (2 revisions)
  • 4bc6b0a [permissions] Use switch statement to ensure handling all permissions
  • 0fa6b2d Disable flaky DevToolsExtensionFileAccessTest for CFI bot.
  • ff33cb6 Roll src-internal from 982c16d6cb7f to 4314f8e6902e (1 revision)
  • f80dd35 Roll WebView ARM64 Orderfile from O9qmBrYKlwm3oAtwe... to yJUZolVTKsD1AiH0k...
  • 4b432f4 Fix proxy reporting for CronetBidirectionalStream
  • b75d10f Revert "[wv][startuptasksexperiment] enable phase 3 by default"
  • c1978e5 Add a test for selectlist
  • f3e8220 [carousel] Special handle originating element for ::scroll-marker focus
  • d3e6eb0 Update meet_effects hash in DEPS file.
  • 9c429f5 [CCSG-2] Add implementations to CCSG methods
  • 1f2a961 [TDR] Remove TODOs linked to issue 41391957.
  • e702bb6 Roll Chrome Android ARM64 Orderfile from aWJ36Dt5r8hbyZaPA... to gbhAe8zfPeWD6JVBW...
  • 6f460c3 Use base::TimeDelta consistently
  • bcdd8fd [TDR] Remove TODOs linked to issue 40685224.
  • de8ff8a Roll Projector App from veoKKB1_0p6iBFw2D... to q1jCYxEx6B7TISWP9...
  • 18ff187 Roll DevTools Frontend from 56aa76177b82 to 2c3925e6eb50 (1 revision)
  • b55377b [ClapperLoud] Clean up outdated Android logic
  • 2c0bb64 [TDR] Remove TODOs linked to issue 40913716.
  • b320166 Roll Skia from 7cd4b52e3e3c to a14ced7449cf (1 revision)
  • 5a0e8e1 Roll vulkan-deps from 29042ba96b75 to 6a0031fd6e79 (1 revision)
  • dac6954 Roll V8 from 52742a6643bd to 209c44ab4251 (3 revisions)
  • 4966b5c Roll Chrome Mac Arm PGO Profile
  • c619430 Rely on WPT expectations for bidi/input/perform_actions/pointer_mouse
  • dcf3ad5 [iOS] Remove omnibox logging at FRE
  • 6e37444 Roll WebView ARM64 Orderfile from Gfif_-ZLgUWKbcU9g... to O9qmBrYKlwm3oAtwe...
  • a22ba7d Roll ANGLE from 12a206e9a552 to af77b0748997 (1 revision)
  • ab7d32b Removing DisplayEdgeToEdgeFullscreen field trial
  • 50a50d8 [ClapperLoud] Added missing test file
  • 7da5401 Replace some base::Contains() in //extensions
  • 08ea8d2 [ClapperQuiet] Add new android permission prompt
  • 753ab43 Roll Chrome Android ARM64 Orderfile from zll32FGuY4FR81dtm... to aWJ36Dt5r8hbyZaPA...
  • c89157f [Autofill AI] Add flag to make Autofill AI available by default
  • 32fa523 Remove Cookie Readiness List component
  • ba867ac [Trusted Types / CSP] Make 'allow-duplicate' parsing case-insensitive.
  • a036f35 Update Expiry for DesktopCapture histograms still useful for debugging
  • eb76a1f Perform cursor dimension validation after size is fully determined
  • 8791ac9 Multi-account device metrics: DeviceStatisticsTracker, part 3
  • f1eb012 Roll DevTools Frontend from acfae0caeb3a to 56aa76177b82 (2 revisions)
  • a043216 Roll Boca App from j_vTwsMmtSl4WJHfl... to QiyxgwOTK64Gy4C7f...
  • 85f1b6e Roll WebGPU CTS from acb7d7902a1d to 8105443d0216 (1 revision)
  • 772d7a4 [Signin][Al] Migrate WebAuthFlowBrowserTest to PlatformBrowserTest
  • fd9d8fd ash: Refactor VpnService::OwnsActiveConfiguration
  • 4c76de9 ash: Final cleanup of VpnService
  • 5c12bc8 siso: enable googlechrome only for Google RBE
  • 6f1714a PA: Consistently pass BucketSizeDetails to free/quarantine functions.
  • 287ebc8 Roll V8 from 4f7b157b5209 to 52742a6643bd (2 revisions)
  • c858d12 PA: Optimize FreeWithSizeAndAlignment in simple path
  • c017553 WTF: Add StringView::find(UChar)
  • 233086d actions revamp: Generate Java enums for TAM::InvocationSource
  • eb6003c actions revamp: Implement ExtensionsContainer in ETVM
  • f4c5f7e Use symbolic consts for Prefs keys of CrOS Pinyin IME settings.
  • a7cbc4a Move SkillsServiceFactory to chrome/browser/skills (new folder)
  • 095c8db actions revamp: Decouple EContainerViews from EContainer
  • 06b0e92 Add base implementation of SkillSyncBridge
  • e2a7af1 Roll Chrome Mac PGO Profile
  • b5263eb Migrate various base::Contains() to contains() in //ios
  • 0e84f03 [Frameworks roll] Roll to 854056527 piper revision
  • 21a8dce Roll WebView ARM64 Orderfile from Bnsd0eZ9zGbrfCXn5... to Gfif_-ZLgUWKbcU9g...
  • 18e37c9 Roll Chrome Win32 PGO Profile
  • 8739d86 Roll androidx from euL8rM6j-aR9yFYmF... to 16uqoB7PDTzuWiRgk...
  • 58b1a82 Fix UNSAFE_TODO in password_manager_util_win
  • 9d035d1 [Signin][Android] Remove kHistoryOptInEducationalTip flag
  • ce8ef2d [iOS] Do not trigger contextual panel updates on same-document navs.
  • c45f8c4 Remove empty check from Vp9RawBitsReader
  • 6131405 Enable EnableReaderModeTranslationWithInfobar in fieldtrial test config.
  • 8fe14e7 Revive LevelDBEnv.SyncResult metric.
  • f0c123c Disable DevToolsExtensionFileAccessTest that time out on SAN bots
  • a0a3fd6 Avoid duplicate map lookups.
  • 224c39e Reduce g_browser_process usages in c/b/ash/customization
  • f1dfa8a Roll Chrome Mac Arm PGO Profile
  • abc19ec Revert "Add JXL image decoder using jxl-rs"
  • 5121e80 [DBSC] Record origin for `components/unexportable_keys` tasks
  • 34d474a Automated Commit: LKGM 16548.0.0-1074431 for chromeos.
  • 644a5b4 Roll Chrome Android ARM64 Orderfile from SLlZK0wtyiZC3Qdbp... to zll32FGuY4FR81dtm...
  • 14ea373 Use symbolic consts for Prefs keys of CrOS Zhuyin IME settings.
  • 737376a Revert "Intercept navigation when trying to use an unconfirmed protocol handler"
  • f99f69d [//media] Clean up VideoFrame::HasNativeMappableSI()
  • c0d5b05 Use span-based file API in SessionFileReader
  • 6b762db [Bookmarks] Fix null context menu crash
  • a1be13f [//media] Rename VideoFrame::HasNativeGpuMemoryBuffer()
  • 0b39f04 Revert "[//gpu] Eliminate clone of handle in ClientSharedImage"
  • f61f5f5 Add FetchStartTime metric for GWSPLMO
  • 2f124ab Roll Skia from 4b695fe58eb4 to 7cd4b52e3e3c (4 revisions)
  • 1cfc0e3 Pass is_initial_webui info in CommitNavigationParams
  • 7a0990e [//gpu] Eliminate clone of handle in ClientSharedImage
  • adb0151 Prerender: Remove dead GetPrerenderedMainFrameHost decl
  • 5fb6e21 Rename variables to distinguish prewarm and prerender
  • 27e06c3 Roll Chrome Win64 PGO Profile
  • 23a9bad Revert "Make <menuitem> automatically be an interest invoker"
  • 3e440f5 HttpStreamPool: Handle ServiceEndpointRequest updates in Attempt
  • 917e675 Revert "Deflake DevToolsExtensionFileAccessTest tests"
  • c438632 Roll Chrome Win ARM64 PGO Profile
  • 2d32f85 [Blink] Remove CRPSI::ContextProviderWrapper()
  • ef497bb [Blink] Move CRP::context_provider_wrapper_ to be in CRPSI
  • 8051f33 [Blink] Move access to context_provider_wrapper_ to be within CRPSI
  • e425c29 [Blink] Move CanvasResourceProvider::ContextProviderWrapper() CRPSI-only
  • 69f2fb9 [//ui] Move ClientNativePixmapDmabuf impl away from BufferFormat
  • 7b4895f [//ui] Remove BufferFormat from ClientNativePixmapDmabuf interface
  • 48daa33 Limit g_browser_process usage for c/b/ash/arc/* subdirectories
  • 22394d6 Eliminate OnWidgetClosing from CandidateWindowControllerImpl
  • 84f897f Roll V8 from 71dc14f1b408 to 4f7b157b5209 (2 revisions)
  • 1a72e6d Roll ChromeOS Arm AFDO profile from 145-7606.0-1767584678-benchmark-145.0.7621.0_pre1565493-r1 to 145-7606.0-1767584678-benchmark-145.0.7623.0_pre1566281-r1
  • 947aa8e Replace `std::unordered_map` with `absl::flat_hash_map`.
  • e672696 Use symbolic consts for Prefs keys of CrOS Korean IME settings.
  • 16f2f23 raw_ptr: Introduce Oilpan skip gate
  • ccdb66c Roll Chrome Android Desktop x64 PGO Profile
  • ce7cac1 raw_ptr: Introduce function for manual ignores
  • 46fa55f Roll clank/internal/apps from c53dcd786d3e to dc36e7e9f10e (1 revision)
  • 8f4270a Avoid duplicate map lookups.
  • abd639b Exclude prewarm page from synthetic response target
  • 2440f13 raw_ptr: Remove `manual-paths-to-ignore.txt`
  • 146af84 gardener: inspect-pointer-events-none.js fails
  • 3489365 [Autofill] Use ToVector() in ParseFormsAsync() calls
  • 1d22dda [Autofill] Clean up AutofillSynchronousAfterParsing
  • cf4e084 Roll Chrome Mac Arm PGO Profile
  • e9c9595 Roll ANGLE from 735741134c36 to 12a206e9a552 (2 revisions)
  • 9200472 Remove unnecessary headers from screen_ai_service* files.
  • a64c783 Update chrome://dino page instruction based on device capabilities
  • e2e33e8 [Views] Avoid unnecessary re-ordering in SublevelManager
  • c824f0c Roll Chrome Android ARM64 Orderfile from r5hKAcp2Mxc35IGbo... to SLlZK0wtyiZC3Qdbp...
  • ed1698e Use symbolic consts for Prefs keys of CrOS Vietnamese IME settings.
  • dd8ba74 [E2E] Fix top inset consumption when omnibox is active on bottom toolbar
  • dfbd5cd [devtools] Disable 2 web tests to unblock live edit disabling
  • 622f056 Roll DevTools Frontend from 78ac9e28eab5 to acfae0caeb3a (1 revision)
  • 71c5b22 [perf] Avoid heap allocation within SkFontGetGlyphWidthForHarfBuzz
  • 2291f6d Update file API calls to use span-based versions in pa_tcache_inspect
  • bf43649 Roll Dawn from 0ebdba5df421 to 2b48aa96c50c (5 revisions)
  • cacc43d [text-indent] Support the keywords in `LineBreaker`
  • cd70a0c Fix mismatched delete in Freeifaddrs()
  • ca956a4 Webium Product: defer browser test until the reload button is painted
  • c186764 Roll Depot Tools from 45facd4b8bb3 to 7c837b993aba (1 revision)
  • ff3779a Roll Chrome Mac Arm PGO Profile
  • 2f9eb8c Remove the "TextareaMultipleIfcs" runtime flag
  • 6c44d0a [Vertical Tabs] Support animating TabCollection View removal
  • 2d8522e Support serializing QuotaExceededError
  • 26a773f [views] Fix empty contents bounds ScrollView::Layout computation
  • 6ac24ac Roll Chrome Android ARM64 Orderfile from 655HRQoXnNoisKe0a... to r5hKAcp2Mxc35IGbo...
  • 1134d56 [Cleanup] Remove unused GetExtensionsToolbarContainer()
  • 160d0f6 Roll ANGLE from 55a52a762306 to 735741134c36 (2 revisions)
  • d1dd618 Revert "[glic] Refactor GlicPinnedTabManager to use GlicTabObserver"
  • 06efaf2 Revert "Add persistableMode to ChromeTabbedActivity for desktop"
  • f6cfe46 Fix the CHECK assertion triggered when invalid bookmark data is pasted.
  • cee83ee Fix data races in HeadlessBrowserUAHeaderTests
  • 6a27ea6 Fix data races in GamepadServiceSimulationTests
  • 1b64733 Roll WebView ARM64 Orderfile from Ajnpcr_kBM7Uwfsaz... to Bnsd0eZ9zGbrfCXn5...
  • 6d96cef Roll src-internal from 0805c600ae84 to 982c16d6cb7f (2 revisions)
  • 4e31b6b Roll Chrome Win32 PGO Profile
  • 6903e1e Roll Chrome Android ARM32 Orderfile from Cgp46aJv1xOSFpU_H... to Nzhsry8Qukq4l4HAN...
  • 2147661 Roll BoringSSL from d5514bd02e48 to ddcd21ec15ea (1 revision)
  • aad0f3c Updating trunk VERSION from 7624.0 to 7625.0
  • 81d8ad3 Enable LowPriorityAsyncScriptExecution feature by default on Android
  • ab9e2b6 [Actor Overlay] Make magic cursor glow theme adaptive
  • 8c9906b Standardize how memory pressure is sent to child processes
  • d0122df Roll V8 from ce8c1a51ccaf to 71dc14f1b408 (36 revisions)
  • f5744e0 Record performance metrics using PDH
  • fa3ea23 Roll WebGPU CTS from f1aca41cb916 to acb7d7902a1d (1 revision)
  • c8927ca Make some common glic actor fiiles to build on Android
  • c9a22ed Roll vulkan-deps from 5f81074a8d30 to 29042ba96b75 (3 revisions)
  • d5641b7 Clean up ios clipboard async flag
  • 3dfaf5a Roll Chrome Mac PGO Profile
  • 6021fe7 Revert "Remove PaymentAppService.addFactory"
  • 4753aca Roll Skia from ea4230d62a22 to 4b695fe58eb4 (4 revisions)
  • a77a324 Roll WebView ARM Orderfile from p8aLg-6LCRvMZR9cK... to 1ZnfT5UkdyuRduZLZ...
  • c675e7e Prevents "Move tab to new window" from showing unexpectedly.
  • 8899678 Roll WebView ARM64 Orderfile from HqKD-Ok53LXckolKm... to Ajnpcr_kBM7Uwfsaz...
  • 63449d0 Roll Chrome Linux PGO Profile
  • 8373c4a [Android] Fix extensions crash caused by render process reuse
  • b19f805 Roll Chrome Mac Arm PGO Profile
  • cfa8ec9 [contextual tasks] Zero State Tests
  • 71718cd Stabilize AshNotificationViewPixelTest.ExpandButtonFocusRing
  • 108a656 Roll Arm AFDO from 145.0.7621.0_pre1565493_rc-r1-merged to 145.0.7623.0_pre1566281_rc-r1-merged
  • bf45b8c Roll Chrome Win64 PGO Profile
  • 25d2133 Stabilize AshNotificationViewPixelTest.CloseButtonFocused
  • b9b6321 Roll androidx from JI2hdxn7_q3WHubYR... to euL8rM6j-aR9yFYmF...
  • bc0bd27 siso: Introduce googlechrome config to enable remote executions for non clang compile actions
  • b44d005 Roll Open Screen from 255319a1bab9 to 20a76c1b607a (1 revision)
  • 70efa91 Migrate UniqueFontSelector to support stateful memory pressure signal
  • 967b33d [glic][Part-2] Remove `setWindowDraggableAreas` from glic API
  • a6ec044 url: Remove FindAndCompareScheme(const char*,int,...)
  • b84780b Focus first popup element for a11y.
  • cdab806 Roll Chromium Variations from 9Ek9phRleQWAs_20D... to rvd7I-cUKYF_23yLT...
  • 03f5c1e Revert "Refactor PaymentAppService and PaymentRequestService class hierarchy"
  • c8d5c5b Revert "fjord-oobe: Create FjordOobeStateManager to track OOBE state"
  • aadce08 [Clank] Use moveTaskToFront for bring-to-front intents in ChromeLauncherActivity
  • ad87490 Roll WebRTC from 5fca03c904aa to 3d8ce2fa7d82 (12 revisions)
  • 106ba08 Make <menuitem> automatically be an interest invoker
  • 855173d Add fieldtrial config for BNPL blocklists
  • 760a053 Rebaseline results for video-resize test.
  • 18476f0 Make dom_node_geometry to build on Android
  • 97d8248 Roll Chrome Android ARM64 Orderfile from Xltvi_bO5nTHWPZ9C... to 655HRQoXnNoisKe0a...
  • 72d4fc4 Clean up menuitem-activate WPT a bit
  • bb695aa Allow <menuitem> to be an interest invoker
  • 24a170e [searchbox] Fix context button appearing above error scrim.
  • 78fe878 [Reading mode] Remove console logs that were accidentally submitted
  • 1faffa0 [rustmojo] Switch to using rust strings instead of MojomString
  • f4012f3 [rustmojo] Add types for representing mojom messages in rust
  • bd47705 [rustmojo] Rework mojom parser to move messages into bindings
  • 7f9def2 [rustmojo] Write code generation for mojom interfaces
  • af660c5 Remove forced origin tainting for HLS fallback
  • 5a3bfae [rustmojo] Add skeleton for Mojom bindings user interface
  • 6db5af6 [rustmojo] Implement MessagePipeWatcher class
  • 6d6c0f6 [EICP] Add tests for ExtensionInstallPolicyService
  • fc41bfd [APC] Wait for APC or screenshot encoding even if screenshot timeout fires
  • 3f1aabf test_driver.bless() hangs locally with some language-model-*.js tests
  • 834ae1e GlicButtonPressedState [1/2]: update container background
  • 8b64f14 [lensoverlay] Enable optimization filter by default.
  • 1c8ff8f Roll Chrome Android Desktop x64 PGO Profile
  • 854fa14 Prerender: Remove the host reused notification
  • 25ed633 [omnibox][next] AIM entry visibility for migrated page actions
  • e80e482 Add persistableMode to ChromeTabbedActivity for desktop
  • 1eb7c04 [lens] Fix Lens button hitting NOTREACHED.
  • 710bb7e Roll unrar to v7.20.3
  • 24264ee Fix vaapi jpeg fuzzer
  • b3a3e50 Update AutocompleteInputUnitTest to handle Fusebox page classes
  • 0c3ef8b Roll WebView ARM64 Orderfile from wgjyLdyr5DMgvc_ca... to HqKD-Ok53LXckolKm...
  • c378dbf [Vertical Tabs] Remove TabStrip calls BrowserView::GetAccessibleTabLabel
  • f06744d Roll Depot Tools from 941462732860 to 45facd4b8bb3 (1 revision)
  • 51c35bc [Immersive] Prevent header from scrolling out of view.
  • fc883b3 Roll Chrome Android ARM32 PGO Profile
  • 26a708a Remove histogram entries for non-emitted metrics
  • a391dfd [Settings Search] Update dynamic properties of Appearance settings
  • b80a482 Roll src/third_party/libgav1/src/ c05bf9be6..40f58ed32 (8 commits)
  • e921c30 Roll BoringSSL from c5e90e2f3826 to d5514bd02e48 (1 revision)
  • 6bd5a80 inputs: bulk bump histogram expiry dates
  • 15af306 Roll Chrome Mac Arm PGO Profile
  • e19a89d [Vertical Tabs] Adding Expand Vertical Tabs Text to Collapse Button
  • e1fcd10 [GlicUnderlines] Add adaptive color support for custom themes
  • 81106bb [Settings Search] Index dynamic prefs for NonCardPaymentMethods Pref
  • a53112f Fix crash in Immersive Reading Mode during split view transitions
  • 5774306 Refactor PaymentAppService and PaymentRequestService class hierarchy
  • bd4217c [ios] extend metrics and remove expired ones
  • 228bd0a [searchbox] Fix the drag/drop overlay to cover whole searchbox.
  • e6c18a4 a11y: partial revert of AXPosition sentence suppport
  • c7a089a [omnibox-next] Add chrome://flags flag for disabling composebox animation.
  • 2ac746b Roll DevTools Frontend from 64070c68a17f to 78ac9e28eab5 (1 revision)
  • 925c99c Roll Chrome Android ARM64 Orderfile from 8caMkY6MT386F2uln... to Xltvi_bO5nTHWPZ9C...
  • 54e5f12 Non-special leading slash handling
  • 94efb34 [h264] Ignore reserved NAL units in AVC::AnalyzeAnnexB()
  • b4f1f8a Roll Dawn from 03fac78a7b3f to 0ebdba5df421 (4 revisions)
  • 1b816a2 Remove hardcoded render quantum size from BiquadFilterHandler
  • d7ee3d4 Roll src-internal from 3435edb7093b to 0805c600ae84 (2 revisions)
  • 0d6d178 Roll Skia from e9b3264ade0c to ea4230d62a22 (1 revision)
  • 433371f Roll ios_internal from 826c27eacdf6 to a787d9827b54
  • 2ebc7d4 Notify on actor task stopped when TaskIndicator feature disabled
  • b4669d5 Avoid memset() over raw_ptrs in Emf::EnumerationContext.
  • 70041cf [Omnibox Next] Align mic and submit button in Variant 1
  • 870aace Roll Website from 5ec884234857 to f1b904cd83ea (1 revision)
  • 9d08c5f [Reading mode] Ensure IRM toolbar menus are above the line focus element
  • 182df1f Add three Webium Product owners
  • bcc10af Expose GPUTexture.textureBindingViewDimension
  • 5987f34 [GlicMI] Combine CloseAllEmbedders(ForTesting)
  • 5941f3d [Fuchsia] Avoid attempting to close bad handles in ProcessUtilTest
← Back to all summaries