Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2025-11-25 on branch 'main'

Chromium Digest: 2025-11-25

Overview

This report covers 675 commits on the main branch, with 525 identified as relevant to developers. The changes span from commit (4447638) to (4917237) and include a significant number of breaking changes to public C++, JavaScript, and Mojo APIs.

Breaking Changes

  • ⚠️ BREAKING The chrome.browsingData API can no longer be used by extensions to delete passwords. Calls to removePasswords or remove with the "passwords" datatype will now be a no-op and log a console warning. This is a significant behavioral change to a stable extension API. (9fb257e)
  • ⚠️ BREAKING The public JavaScript API Origin.from() no longer accepts Location or WorkerLocation objects. Calls such as Origin.from(window.location) will now throw a TypeError. This removes functionality from a stable web API. (54a81e7)
  • ⚠️ BREAKING The permissions policy for cross-origin Autofill has been renamed from "shared-autofill" to "autofill". Websites using allow="shared-autofill" in <iframe> elements must update to the new name. (c2aac71)
  • ⚠️ BREAKING The public field hosted_domain has been removed from the AccountInfo struct in components/signin. Code must be updated to use the GetHostedDomain() accessor method, which has slightly different semantics. (da1dfa4)
  • ⚠️ BREAKING The static singleton accessor StartupLaunchManager::GetInstance() has been removed. Embedders must now use the UserData-based factory pattern, e.g., StartupLaunchManager::From(g_browser_process). (cbd2e8b)
  • ⚠️ BREAKING The deprecated IsValid() method has been removed from the widely used base::win::GenericScopedHandle class. Code must be updated to use the is_valid() method. (a6bff80)
  • ⚠️ BREAKING The virtual method SetEntryInMemoryData has been removed from the public net/disk_cache/disk_cache.h::Backend interface and moved to the Entry interface. Custom Backend implementations will need to be updated. (4eefc94)
  • ⚠️ BREAKING The signature of the public Mojo API WaitSet::Wait has been changed. The signals_states parameter is now a base::span<HandleSignalsState> instead of a raw pointer, breaking existing call sites. (1b74a66)
  • ⚠️ BREAKING The public NetworkPortalDetector class and its related files have been removed from chromeos/ash/components/network. ChromeOS embedders depending on this class will have their builds broken. (7fb1cef) (4f1378e)
  • ⚠️ BREAKING The startup parameters for initializing the web layer on iOS have been changed. WebMainParams and ios_global_state::CreateParams now accept a std::vector<std::string> instead of C-style argc and argv. (d6dc980)
  • ⚠️ BREAKING The is_fixed_or_sticky_position field has been removed from the public Mojo interface blink::mojom::AIPageContentGeometry, breaking clients of the AI page content extraction API. (c3597c8)
  • ⚠️ BREAKING The signature of AddressSuggestionGenerator::GenerateAddressSuggestions in the Autofill component has been changed. The plus_address_email_override parameter is now a const std::optional<std::string>&. (a9f2259)
  • ⚠️ BREAKING Unused prototyping functions CreateRequestBody and CreateResourceRequest have been removed from the public iOS provider API in ios/public/provider/chrome/browser/bwg/bwg_api.h. (7bf2e4f)

Web Platform & APIs

  • The CSS ::search-text pseudo-element for styling find-in-page results has been enabled by default. (cc8be7c)
  • The experimental CSS Masonry layout feature has been renamed to align with spec changes. Internal objects and properties have been changed from masonry-* to grid-lanes-*. (4de93da) (730bf4a) (9f569d7)
  • The WebNN API on Windows will now use the ONNX Runtime (ORT) backend by default, replacing DirectML. (3c0defa)
  • The WindowControlsOverlay API has been enabled by default on Android, allowing PWAs to draw content into the title bar area. (450df2e)
  • The kAIRelaxUserActivationReqs feature flag has been enabled by default, relaxing user activation requirements for Built-In AI APIs. (145c695)
  • A new permissions policy feature, "manual-text", has been introduced to control text-producing events like execCommand('insertText') in cross-origin iframes. (02d1a2f)

Services & Components

  • In Autofill, a new virtual method IsActorTaskActive has been added to AutofillClient to allow suppression of form import/saving when an AI-related task is active. This is non-breaking due to a default implementation. (3299fbf)
  • The network proxy override rules now support an ExcludeDestinationMatchers field, allowing for more granular exceptions to proxy configurations. (82e5020)
  • The SQL disk cache backend now supports in-memory hints, allowing it to identify unusable entries without blocking on disk I/O. (bd2acc8)
  • IndexedDB shutdown reliability has been improved by reusing the main task runner across profile restarts to prevent file lock conflicts and by better handling force-close scenarios. (3fe2d5a) (a4ce7bf) (95aa794)
  • The WebUI component <settings-sync-account-control> now requires an access-point attribute to be explicitly set, improving code safety. (04e2e29)

UI & UX

  • A new observer method, OnTabGroupFocusChanged, has been added to the TabStripModelObserver interface as part of the initial work for a new "TabGroupFocusing" feature. (de85415) (c7b09ea)
  • The experimental "Tab Scrolling" feature and its associated feature flags (kScrollableTabStrip, etc.) have been completely removed from the codebase. (ef29bab)
  • The "Chrome Next" layout, which supports the Toolbar Height Side Panel, has been enabled by default. (838d53b)
  • The infobar system is being updated to support prioritization, allowing infobars to be managed based on Critical, Default, and Low priority levels. (1992bdd)

Platform Specific

  • **Android**: The SideBySideKeyboardShortcut feature has been enabled by default in preparation for launch. (9018414)
  • **Android**: The "Zoom Indicator" feature, which shows when a page's zoom level is not at the default, has been enabled by default. (b57dd6f)
  • **ChromeOS**: A new CachedLocationProvider has been introduced to optimize Geolocation API calls by caching location data. (3a31320)
  • **ChromeOS**: Unused code and UI elements related to "Emoji Suggestions" have been deleted. (e43324e) (0a9746f)

Core, Internals & Refactoring

  • New convenience accessors GetCurrentBestEffort have been added to SequencedTaskRunner and SingleThreadTaskRunner to more easily obtain a best-effort task runner. (223b099)
  • The ScopedAnimationDurationScaleMode class was moved from the ui namespace to the gfx namespace to consolidate animation scaling logic. (a16cf63)
  • A large-scale cleanup removed superfluous includes of base/feature_list.h from many headers, which may require downstream projects to fix their own include paths. (c550253)

Privacy & Security

  • The implementation for the experimental Fingerprinting Protection Filter (components/fingerprinting_protection_filter) has been entirely deleted from the codebase. (b6d76c1)
  • For Device-Bound Session Credentials (DBSC), federated session keys will now be restored on use, improving the reliability of federated registrations. (cab660d)

Media

  • A behavioral change was made to MediaStream video tracks to no longer automatically mute them when frames are not flowing. The previous behavior was against the specification. (aeb1c26)
  • HLS (HTTP Live Streaming) playback has been improved with better resolution filtering that accounts for screen orientation and non-fullscreen windows. (1c9ce70)
All Commits (675)
  • ffcb63d Roll DevTools Frontend from 0562110cc101 to 81e6a23dc9ec (1 revision)
  • 4917237 [Settings containment] Hide dividers in LegalInformationSettings
  • 394564a [actor] Enable Multi-Instance for actor tests.
  • e1df428 Ensure Fusebox monitors for profile changes
  • 9fd0790 Roll vulkan-deps from 0803a732819f to 289320ca0b41 (3 revisions)
  • 0bf40c4 Set BNPL sync flag to enabled by default
  • cbd2e8b Move StartupLaunchManager ownership to GlobalFeatures
  • 957d143 [HSTS] Update bulk entries
  • ef2089b Roll android_deps from 73arGMi7Uqx-xZdMd... to b9LVjZwQgZYKN3YpO...
  • bc9d0d2 [temporal] Uplift: Set YearMonth's day to 1 in calendar space when diffing
  • b401fa4 [omnibox-next] Gate context menu on Google being DSE and AI policy
  • 8814db3 Access page in handlers via the ui_controller to ensure the page is bound when we access it.
  • eb33181 Roll SwiftShader from be8ed1d0e917 to 498a6f760dea (1 revision)
  • a16cf63 Move ScopedAnimationDurationScaleMode to gfx : part 1
  • e143931 [Contextual Tasks] Do not reset task ID if thread ID is missing from URL
  • d81b547 Create controller for the contextual task ephemeral button
  • 05779a3 Plumb Cobrowsing Composebox Suggestions
  • 7278358 [TDR] Remove TODOs linked to issue 238212430.
  • 0478fa8 [EncapsulateAnimations] Restore interpolator
  • 607e32d [AIM] Replaces Long[] with ArrayList<Integer> when filling Intents
  • 1cbb7a6 Write a script to analyze the amount of time spent #including each file.
  • eeb06ef Update Crashpad to 1bb2acfad285f945aa1edf37f5e32bc9b144f29a
  • 145c695 [Built-In APIs] Enable kAIRelaxUserActivationReqs by default.
  • 1252146 PWAs: Don't show install chip if there are controlling apps already
  • 804227c Prerender: Remove unnecessary flags from VirtualTestSuites
  • a15ea01 [discard] Update fieldtrial_testing_config
  • 223b099 Add (Sequenced|SingleThread)TaskRunner::GetCurrentBestEffort
  • 0b6cf2d Add user actions for contextual tasks
  • 96bcc30 Fix SequenceChecker crash on TabResumption
  • d95aded net: Avoid redundant cache entry status update
  • 6481026 [TDR] Remove TODOs linked to issue 206997996.
  • bd2acc8 net/disk_cache/sql: Support hints in SqlPersistentStoreInMemoryIndex
  • d3516e2 [omnibox] Add string for current tab and Lens chips
  • f337914 [WebUITS] Revisions to reparenting logic for tab strip in tablet mode.
  • b60a025 [NTP-Real-Box]: Change tooltip string on hover over AIM button
  • 306eeb9 [PDF Ink Signatures] Hide caret on text multi-click
  • 658115b [Reading mode] Log whether RM is opened after showing the omnibox IPH
  • 1669e8d [Reading mode] Log the distillation status after omnibox click
  • be551b2 net/disk_cache/sql: Rename sql_backend_ids.h to sql_backend_aliases.h
  • 11815d1 [lensoverlay] Accessibility improvements for non-blocking privacy notice.
  • 9161d78 [remoting] Don't clean up the Wayland socket or lock file.
  • 832888e Implement desktop-like incognito window support for pre-API 35
  • c3563d1 [omnibox] Change tooltip string on hover over AIM button
  • 8576a7e Roll Chrome Mac Arm PGO Profile
  • 04e2e29 SignIn: Make access-point obligatory for settings-sync-account-control
  • 4eefc94 net/disk_cache: Move SetEntryInMemoryData from Backend to Entry
  • 4bb89a8 Roll DevTools Frontend from 10522a4c85f8 to 0562110cc101 (1 revision)
  • 0003e91 [TDR] Remove TODOs linked to issue 284800493.
  • e1e1360 [most-visited] Support larger tile title width
  • d4cfd44 Roll androidx from pT7QpyTXlCmXieA-O... to CiMHwWkPeiBo6gUzk...
  • 65d2838 [omnibox] Highlight action button when hovered
  • 25a034b Roll ios_internal from 74d0fb0ceab6 to 565c4a0d5d85
  • 436ceff Add missing copyright to chromecast/cast_core/grpc/test_utils.*
  • f8cc62f [Settings containment] Fix: horizontal padding
  • f5605eb Forward declare SSLInfo in more headers
  • a58caa5 [TDR] Remove TODOs linked to issue 41433110.
  • d9a9cd3 Roll android_deps from 3vmiuhnRbwDHeaR0A... to 73arGMi7Uqx-xZdMd...
  • 73fc0a7 Roll Skia from 156de4c06c27 to 0f7004c495e4 (2 revisions)
  • 206c20e [iframe] Add tests for two-lengths shorthands
  • 2ad4f0d Add flag params that enable site visit, heuristic, and referring app filters.
  • a7295e7 [TDR] Remove TODOs linked to issue 259442843.
  • 8209436 [context-input] Create ClientToAimMessage in Query Controller
  • f85f554 Revert "[WPT] Add tests for User Agent Data on Fuchsia"
  • eabdd82 Extend expiration dates for several Android AssistContent histograms.
  • e666509 [Extensions] Extend DNR histograms
  • c550253 Remove superfluous base/feature_list.h includes from various headers
  • 3f55c55 [TDR] Remove TODOs linked to issue 259442843.
  • 457804b Record LaunchMetrics for TWAs
  • 8931509 cros-geo-caching: Introduce cache eviction options
  • f6f59ca Roll Chrome Android ARM64 Orderfile from fLKpowkTt5Bnw8eOQ... to z9Ysn8WhUQqf6x1sF...
  • 838d53b Reland "[Chrome Next] Enable new layout with THSB support by default"
  • c3597c8 [APC] Remove deprecated is_fixed_or_sticky_position
  • 79632e2 Roll src/chrome/services/speech/internal/ 990f8c2f4..f3196a62e (1 commit)
  • d60a342 RetryOnFailure Pixel_OffscreenCanvasWebGLDefault on Fuchsia emu
  • 4592c84 [IOS][AIM] Record metrics composebox tab picker usage
  • 24215f1 Add VariationsNetworkClock.
  • 1f64c34 media: Report GPU and display info histograms on hardware-context-reset
  • 688f65d spanification: Clean up unneeded parameters in content
  • 9276eba [Composebox] Prevent invalid files from reserving upload slots
  • bbaa349 [Desktop android] Implement MoveGroupTo 1/2
  • be4c4b6 Automated Commit: LKGM 16495.0.0-1073391 for chromeos.
  • 76f9d67 [iOS] add eg_test for data controls copy/paste via context menu.
  • ce6bec2 Roll ANGLE from 306e58a9fb0b to 173b937deb47 (1 revision)
  • f42d17c [GroupFocus] add the browser_tab_strip_controller impl
  • af20550 Do not reset the fulfilment type when adding attachments
  • 9a2295f [TDR] Remove TODOs linked to issue 40715565.
  • 2f674cf Roll Chrome Android ARM32 Orderfile from qYjQMzS7DhD_BvNzs... to NyGKwqUul1XW__6e3...
  • 028cc72 Add flag for OverscrollEffectOnNonRootScrollers in Android WebView
  • 2b68d01 updater: speculatively disable mojo UpdateService(Internal) server (win)
  • 5f09b8b [AIM] Keeps Tabs Visible Until Activity is Finished
  • 7a91751 [omnibox][next] Clear default match when closing empty compose box
  • d734ed9 Roll clank/internal/apps from 2d78f7a949b9 to 8ef6ed3b6b8a (1 revision)
  • e2cdd4d [TDR] Remove TODOs linked to issue 41386990.
  • 33297c6 [TDR] Remove TODOs linked to issue 40106527.
  • fc440df [TDR] Remove TODOs linked to issue 193771095.
  • a39080a [TDR] Remove TODOs linked to issue 306023057.
  • e9b92f4 Reland "[Extensions] Add Chips IPH to field trial testing config."
  • 41778cd mirroring/service/BUILD.gn: rm unused libaom import
  • 3bb13aa [TDR] Remove TODOs linked to issue 326301060.
  • 05780ac Remove EnableVerdictCache field trial testing config
  • 7bf2e4f [iOS] Remove prototyping calls from bwg api
  • c4a915d [NTP-Real-Box]: Update favicon border-radius in recent tab chip.
  • 838dfc6 Roll vulkan-deps from bc49dedd8bfe to 0803a732819f (10 revisions)
  • a112f60 [AIM] Adds/Removes Tabs from Model List After Receiving Result Intent
  • 06dab2f Roll Chrome Mac Arm PGO Profile
  • 9018414 Enable SideBySideKeyboardShortcut by default to prep for 100% launch
  • 85f66d7 Roll Chromium Variations from h6IhLpPJXuzQaYKXY... to VZlrSA6HejroTid9m...
  • f4a966b [Frameworks roll] Roll to 836757944 piper revision
  • 4a717ee [reader mode] Allow users to tap to expand the bottomsheet when peeked
  • 0443a1b Roll Chrome Mac PGO Profile
  • 99e1785 [ntp-next] Add deep dive chips based on a feature parameter
  • bb252a0 Update prompt for class refactoring task.
  • a6bff80 Reland "Reland "Remove GenericScopedHandle:IsValid""
  • 0aa40ed [Zoom Indicator] Make Page Zoom indicator popup focusable.
  • 8f1efe8 Roll clank/internal/apps from 9c33ceed785e to 2d78f7a949b9 (1 revision)
  • a01a22f [glic] Enable ContextSharingBorderViewWithoutHardwareAccelerationUiTest.*
  • 0ad81ca [glic] Enable tests under ContextSharingBorderViewUiTest.* for ChromeOS
  • b82c0c5 Replace DestroySharedImage with UpdateDestructionSyncToken
  • 63412cd Roll WebView ARM Orderfile from bgNEQN1D-ti3EaFkw... to ZKWKc4FHYQzRfD9PM...
  • 82e5020 Add ExcludeDestinationMatchers to proxy override rules
  • 456347f [iOS] Increase Ask Gemini Chip Display Duration
  • 290f598 Mitigate the penalties caused by early-cancellations
  • 3384686 [Chrome Next] Layout fixes for WebUI tabstrip
  • a8fa29c Roll DevTools Frontend from 1d719bf989eb to 10522a4c85f8 (1 revision)
  • 7daa937 Roll Chrome Win ARM64 PGO Profile
  • 210c5ce [Animated PB] Move animation logic to ToolbarProgressBar
  • 10def04 Revert "[Aim][Omnibox] Make sure context_menu is deleted when closed to cleanup state."
  • 4de93da [Masonry] Update LayoutMasonry to LayoutGridLanes
  • 1cb0638 Enable a WebAccessibleResources browser test of desktop Android
  • 6bb2bbe mediarecorder/BUILD.gn: remove unused libaom import
  • e6ef4a8 Migrate webFormElementToFormData function from gCrWebLegacy
  • 4145dcd Add an Android dep on GMS' time library
  • 324a569 Roll BoringSSL from cb6da2b637b8 to 3e8ad4eb8421 (1 revision)
  • 02323a8 [Immersive RM] Move ownership of RM WebUI to the ReadAnythingController
  • 9849f1b Roll Chrome Win64 PGO Profile
  • 1ab4c45 Add key thumbprint mismatch feature param override
  • cc79277 [BrowserControls] Remove offset tags on animation start
  • ba307e1 [Gardener] Mark integration_tests/rendering-starvation.html test as flaky
  • da1dfa4 [signin] Stop using AccountInfo::hosted_domain
  • 1ebfe50 Bridge Lens Omnient Shader V2 flag to chromium
  • de81afd gn2bp: add -U_LIBCPP_HARDENING_MODE to boringssl
  • 14c3389 [DomStorage] Use [[nodiscard]] with DomStorageBatchOperationLevelDB
  • 947c10a [glic] Add feature management flag for Glic
  • 2a4a6a4 Roll Chrome Linux PGO Profile
  • c1c0fe9 Add improvement direction to Omnibox latency histograms.
  • 0413005 [iOS] Correctly support liquid glass on customization menu
  • e7cc844 Roll WebRTC from 4d4a1eefc58b to ff73efd929c8 (1 revision)
  • a09ef0c [Cleanup] Delete ReportVSyncRatioMetric
  • 305c0e3 Roll Chrome Win32 PGO Profile
  • 2a17ef9 [ALPC Extensions]: Hook up parent authentication through warpstar
  • bb61b52 [Read Anything] Don't send unknown tree on active tree change when IRM is enabled
  • 33c5ccb Add a new evaluation for class refactoring.
  • d4f402d [NTP-Real-Box]: Ensure the remove button appear on the inline-end side
  • 8aa9887 Remove unused line
  • 37bf639 Explicitly ignore unused result of make_unique<> in a few places
  • f050761 [New Tab Animation][Theme] Use transparent colour
  • a55f87d Disable boca caption toggle
  • 972f945 Roll DevTools Frontend from 5754fea2c212 to 1d719bf989eb (1 revision)
  • b349200 [WPT] Add tests for User Agent Data on Fuchsia
  • d035101 Drop ResourceFrame before validating mailbox's removal.
  • 0eda25f [TBHSP] Update SidePanelAnimationCoordinator's Observer API
  • 101403c [iOS] Prevent to attach the current tab if the limit is already reached
  • d86a9c7 [iOS] Show snackbar when attachment limit been reached
  • 50169c9 Use WeakPtr for binding Autocomplete and Composebox controllers.
  • 74b01ac Remove empty network_features.h from network_session_configurator
  • 594fd05 Roll optimization-guide from 724de88d56f4 to d0ff238e3fc9
  • d17d58c Roll Chrome Android Desktop x64 PGO Profile
  • 3d2cf43 [AIAE] Check the existence of BNPL suggestion before fetching APC
  • e404387 Android: Better encapsulate TransitiveObservableSupplier and UnwrapObservableSupplier
  • 05fe287 Use new histogram macro in ScrollJankV4HistogramEmitter
  • 39b57e4 ChromeAndroidTask: Consolidate null checks on ActivityWindowAndroid
  • d9ef078 [omnibox][composebox] Make recent tab chip strings translatable.
  • 9bcdef8 [animation-trigger] Set scroll named range to experimental status
  • 5606f80 Update WebUI tab strip field trial config
  • 2c90a95 [SyncTests] Modernize SingleClientValuablesSyncTest
  • 200cde0 Roll Chrome Android ARM32 PGO Profile
  • e516363 Remove workaround for MT_TOOL_PALM missing from system header
  • ac95661 [iOS] Add TableViewTextItem.titleNumberOfLines property
  • 000f807 [AIM] Fix Lens composebox submitQuery flakiness with typed suggestions
  • dd6857b [Histograms] Extend Startup.StartupTabs.IsWelcomePageSkipped
  • cb4eaee [WebInstallAPI] Extend uma expiry
  • d64ff4b Split up pki_metadata_component_installer.cc/.h
  • e2df0e6 Re-enable JavascriptOptimizerOmnibarIconBrowserTest tests.
  • cc8be7c CSS ::search-text enable the feature
  • be071ab [BrowserControls] Allow TabStripTopControlLayer to set offset tags
  • 4f0076b Mac: Reland r1547376 with original frameRect only for child widgets
  • 95a70d0 Sync feature protos.
  • 313967a Add tests for PUMA histograms
  • aee866a [TDR] Remove TODOs linked to issue 40966307.
  • be00de4 [BrowserControls] Add prepForHeightAdjustmentAnimation for layers
  • 6fc4965 third_party/node: Tighten 'npm install' flags to be less permissive.
  • 35a096e [3PC] Clean up obsolete 3PCD infobar
  • ea645b6 [BNPL][Clank] Add BNPL ToS screen outcome user actions
  • 0cb4445 Add required search engine histograms to PUMA
  • 915b89d Extend expiration dates for multiple Enterprise histograms.
  • 92b2f14 Roll Chrome Mac Arm PGO Profile
  • 4a8a3d6 [TDR] Remove TODOs linked to issue 41381060.
  • ac5349c [SyncTests] Modernize SingleClientOfferSyncTest
  • 436605e [SyncTests] Modernize SingleClientExtensionAppsSyncTest
  • 0d41644 Roll WebRTC from e16083c8e777 to 4d4a1eefc58b (1 revision)
  • d88bd09 [SyncTests] Parameterize SingleClientPlusAddressSyncTest
  • c11b2d1 AppShims: Add an integration test where a shim launches chrome
  • 562b15e Roll DevTools Frontend from ef9f27331861 to 5754fea2c212 (1 revision)
  • a38547b [BNPL][Clank] Log user action for ToS shown
  • 601286d Add a fieldtrial testing entry for DevToolsConsoleInsightsTeasers.
  • 7d6522c [TDR] Remove TODOs linked to issue 259179106.
  • 4810674 [BNPL] Update BNPL ToS icon mapping for branded build
  • 6ae8000 Update tab sharing infobar to use flex layout
  • 730bf4a [Masonry] Update MasonryNode to GridLanesNode
  • 7f7992b [gestures] Apply default styles to ::overscroll-*
  • de85415 [GroupFocus] Add an observer method for GroupFocusChanged
  • c7b09ea [GroupFocus] Add the initial functionality of GroupFocusing
  • 75716ac [iOS] Remove SafetyCheckItemIcon
  • 98e68ce Simplify function lookup in network_fetcher_win.cc
  • 1a2237d WebNN: fix export error handling
  • 9bb6a6b [NTP Theme] Add a metric for chrome color clicks.
  • c44e1cd [TDR] Remove TODOs linked to issue 434744665.
  • ad74a70 Use stable Xcode instead of beta on ios-blink-rel-fyi
  • 76da93b [PSF] Add ellipsis symbol for PSF overflow badge.
  • 69a1848 [Theme] Fix optional button tint color.
  • 332b8d1 Add support for shadow DOM in DomScenario FuzzTest tests
  • b052db1 [Bookmarks Bar] Prevent UAFs of scene layer updates on animations
  • 8731547 [signin] Stop using AccountInfo::hosted_domain
  • f60bbe1 [Custom Context Menu Items] Pending Intent to launch from bg Activity
  • 15f1490 [SyncTests] Modernize SingleClientOutgoingPasswordSharingInvitationTest
  • 3ba8067 [ALPC Extensions]: Clean up stubs for JNI interactions
  • ec72ea8 Delayload iphlpapi & dhcpcsvc
  • 63ec505 Replace UNSAFE_TODO in DirectoryImpl::Read with base::span usage
  • f405af7 Take advantage of using statements in browser_user_education_service.cc
  • 4677258 Add Context Input for Cobrowsing
  • ba9f2b9 [iOS][mvt-customization] Add the plus button at the end of the mvt view
  • e815590 Remove wait for disconnect state when stopping presenting student screen
  • 16fd39b Remove feature disable from testIncognitoTabsNotRestoredAfterSwipe()
  • 18ee7f6 Record GpuPersistentCache hit metrics.
  • 6a90d78 [iOS] Cleans PromoStyleViewController scrollView references
  • 1b74a66 spanification: automatically spanify mojo/public/cpp/system/tests/wait_set.cc etc.
  • 45b48fa Prepend to cargo environment instead of appending
  • 80a6fc3 docs: Fix a typo
  • 041414f [TDR] Remove TODOs linked to issue 40564126.
  • d8d6eba spanification: Clean up unneeded parameters in net
  • 8210543 Roll WebRTC from 81920f654b8f to e16083c8e777 (4 revisions)
  • fa7dbdd [Android][Settings] Revert experimental code
  • 70dbae8 [use-counters] Rename WebDX feature for explicit resource management
  • 450df2e Enable WindowControlsOverlay on Android
  • cc9ff5b [SyncTests] Modernize EnableDisableSingleClientTest
  • 975cb80 Update comment about reauth flow in ChromeOS.
  • af16cd6 Clear inputs on composebox submit
  • 0e611a5 Update comments about ChromeOS test disables.
  • 1f50e3b puma: Implement PumaHistogramEncoder
  • 89b34e2 Roll DevTools Frontend from ac6d905c804a to ef9f27331861 (4 revisions)
  • 215aa8f [Uno-D] ManagedAccount to show AvatarButton Greeting/Promo
  • bb5b44f [base] Generalize CHECK_DEREF to work with any pointer-like type.
  • 9902456 Revert "[WebAuthn] Add browser tests for ChangePinControllerImpl"
  • a4ce7bf IDB: fix handling of bad mojo message (DeleteDatabase)
  • 5699cc8 Updated SlimScheduler variant
  • 1ab7d56 Remove metric MPArch.ChildProcessLaunchActivelyInParallel
  • 9ad888c Add OWNERS file to //components/js_injection.
  • 59b8b50 Revert "Actor: Add metrics for ObservationDelayController"
  • 8016261 [Autofill] Notify AutofillAgent when DevTools is connected
  • 9f569d7 [Masonry] Update masonry-direction to grid-lanes-direction
  • 94c3a86 [SyncTests] Modernize SingleClientPasswordSharingPolicyTest
  • 09e934c Rename "resolves" to "resolved" in ProxyOverrideRules DnsProbeCondition
  • dcf94c8 [TDR] Remove TODOs linked to issue 40793934.
  • 54256fe Generalize PrivateMetricsReportingService for PUMA
  • 02d1a2f [Autofill] Add "manual-text" policy-controlled feature
  • e6d515f Roll Skia from cba3ac5c7ab0 to 156de4c06c27 (1 revision)
  • f064208 Permanently disable a few actor policy tests in ChromeOS
  • a83b16c Roll clank/internal/apps from 707d85242b4f to 9c33ceed785e (1 revision)
  • cdcb6fb [TDR] Remove TODOs linked to issue 259182533.
  • d86b495 spanification: Clean up unneeded parameters in ui,ash
  • 32ea233 Start countdown for timeout only after model has been downloaded
  • aa1f10c Add fieldtrial_testing_config for the TS text segmentation flag.
  • fca122d [iOS] Remove NTPCollectionShortcutTypeCount
  • 3ea8ac8 Revert "[Android] Disable some cases in HistoryPaneUnitTest and HistoryUiTest"
  • 2ce146c [Read aloud] Refactor final segmentation tests to TS.
  • 0a3e020 [discard] Add ignore_workers to URGENT ChromeOS discard
  • 17f6d1d [rust png] Remove `lukasza` and `fmalita` from `.../libpng/OWNERS`.
  • 68d6462 [TDR] Remove TODOs linked to issue 422728758.
  • 3fe2d5a IDB: reuse main IDB sequence across profile restart
  • 72fd5c1 Change histogram type from units to enum for PUMA Session.TotalDuration.Recorded
  • 95aa794 IDB: some shutdown improvements and cleanups
  • b8eb443 [TDR] Remove TODOs linked to issue 40133205.
  • a8c702e Enable some page action migrations by default
  • 15f71bd [SyncTests] Modernize SingleClientSharingMessageSyncTest
  • 1992bdd Use InfoBarContainerWithPriority in InfoBarContainerView
  • fd14219 [iOS][mvt-customization] Refactor shortcut item to be reused
  • 5a43302 Add entry for a new study `UseCECEnabledFlag`.
  • 702d879 media: Fix FirstApiLevel check in provisioning
  • 0defcac Roll Chrome Android ARM64 Orderfile from pUoFcAnetS5Y_E80E... to fLKpowkTt5Bnw8eOQ...
  • 4aa4620 [TDR] Remove TODOs linked to issue 302576851.
  • 3a31320 cros-geo-caching: Introduce CachedLocationProvider
  • e1ef94f [TDR] Remove TODOs linked to issue 382573509.
  • 7fb1cef cleanup: Remove chrome-side NetworkPortalDetector
  • 0b68eb9 Automated Commit: LKGM 16495.0.0-1073383 for chromeos.
  • bb3a6c4 Roll Chrome Mac Arm PGO Profile
  • bb1b053 Remove EarlyInitializationObject from child process
  • f365503 [TDR] Remove TODOs linked to issue 40097732.
  • d6dc980 [ios] Pass command-line arguments as std::vector<std::string>
  • 3dcda32 Roll Crossbench from 3e62914554ae to 8a1fc2cc1466 (1 revision)
  • 660aae3 Integrate boca receiver connection info poller with page handler.
  • 0b20671 Updated expiration and ownership of various components
  • 6ccb9a8 [Persist] Remove LoadedTabState and OnTabInterfaceCreation Callback
  • 209e045 Reland "[Android] Show Keyboard Accessory suggestions after scroll handling"
  • 581a7f6 Roll WebRTC from 89e8619bfdac to 81920f654b8f (1 revision)
  • f82f991 [Persist] Initialize Synchronizer & Cleanup TabStateStore
  • f4c7646 [ntp][simplification] Translation strings
  • dc6689f [ntp][composebox] Translation strings
  • 6065190 ios: Enforce EarlyMallocZoneRegistration load order in Chrome
  • 5f7c5f6 [TabGroups]Close tabs when adding to closed saved tab groups
  • f0118e4 [signin] Stop using AccountInfo::hosted_domain
  • 47480f6 spanification: Clean up unneeded parameters in mojo/public/cpp/bindings
  • 300301c Roll Chrome Win32 PGO Profile
  • a5434de Roll compiler-rt from 90d04a8f70c0 to 4ff2d7fc5276 (3 revisions)
  • 6a66e25 [signin] Stop using AccountInfo::hosted_domain
  • 0b93c03 Remove histogram Navigation.GestureTransition.AnimationAbortReason
  • f5b6815 [TDR] Remove TODOs linked to issue 415002299.
  • 11a4e19 [tips] Add magic stack UI for tips notifications card item
  • 13d335e Clean up windows authenticator
  • 1bfa693 [Zoom Indicator] Guard sending accessibility events with AccessibilityManager.isEnabled().
  • 5a91a04 legion: Make crypto code wire agnostic
  • 26874f0 [TDR] Remove TODOs linked to issue 40271852.
  • 41b085e Roll Chrome Win64 PGO Profile
  • 4f1378e cleanup: Remove network_portal_detector refs from chrome/browser/ui
  • 2d65d55 Use image/png content type for pasted image uploads.
  • c56208e Roll Media App from UzYEjE8Ep_weWOBj6... to gBJOnbnhVqR2NtW6_...
  • 5883a6c Roll DevTools Frontend from f15d982497b8 to ac6d905c804a (2 revisions)
  • ced6f98 Add logging for SetVideoType in MediaStreamManager
  • a678375 [signin][test] Verify histograms in SyncSettingsInteractiveTest
  • d3eeeb9 glic: Fix and re-enable TabStripActionContainerTest.* for ChromeOS
  • 4b06f54 [signin] Stop using AccountInfo::hosted_domain
  • 4ef7b7f Add new class for receiver connection info polling.
  • 352bb39 Roll Help App from aFzzGqpXziyLwTWrf... to lpCcjzmNG9EAwBqFn...
  • a3f1bba [Autofill] Use single WeakPtr in AutofillWebDataBackendImpl
  • 1e12688 [iOS] Extend UMA Histogram IOS.PushNotification.LifecycleEvents
  • ae6095c [iOS] Fix crash from nil suggestion params in autofill
  • 1c808e2 Updating trunk VERSION from 7546.0 to 7547.0
  • a921af1 [ntp-realbox] Update color for New Tab Page input placeholders.
  • 6509fd0 Revert "[Autofill] Add shutdown DCHECK to AutofillWebDataBackendImpl"
  • c5a4545 Compute computed value of random() function with percentages
  • a20058b legion: Add OWNERS file for Legion metrics metadata
  • 7ab707c [signin][test] Use embedded server in SyncSettingsInteractiveTest
  • c2aac71 [Autofill] Rename "shared-autofill" to "autofill"
  • 18788f6 Roll V8 from a85dd0944924 to c36ce8d325cf (9 revisions)
  • c071dba WebUI AIM Popup: Cleanup Mojo usage patterns and more.
  • 269bac8 [dbsc] Add proxied Unexportable Key Service
  • 0ce372e glic: Refactor TabStripActionContainerTest
  • bb68a83 [SyncTests] Modernize SingleClientIncomingPasswordSharingInvitationTest
  • d30996e Roll vulkan-deps from c42dd8c6ffc3 to bc49dedd8bfe (1 revision)
  • 9c1b80e [Read aloud] Move AXNodePosition tests
  • f4bf808 glic: Add API plumbing for shallow research
  • a1f11b8 Roll Chrome Android ARM64 Orderfile from bmPamewMLAs1ybpDO... to pUoFcAnetS5Y_E80E...
  • 3b7bfd0 Reland "Add HaTS to Bundled Security Settings page"
  • 5c2c9e7 Roll ios_internal from e941cc1b199d to 74d0fb0ceab6
  • 32d17e4 [Android][Settings] Group the search results by the header
  • bb3692f [iOS] Add egtest for clipboard interactions through Clipboard JS API
  • 82dff32 [SyncTests] Modernize SelectTypeAndMigrateLocalDataItemsWhenActiveTest
  • ef335c8 [signin] Stop using AccountInfo::hosted_domain
  • dee7463 Roll WebRTC from 863fd47b772f to 89e8619bfdac (2 revisions)
  • d00c158 Use UpdateDestructionSyncToken in readback_pixeltest
  • 8810990 Fix proxy settings UI disclaimer
  • 04f1309 Remove myself from a watchlist
  • c3ab912 Remove PopulateFrameBinders 1/7
  • 8131af4 Remove some inactive WATCHLISTS entries
  • 42c4e1a Roll Skia from 04f08a150e24 to cba3ac5c7ab0 (1 revision)
  • e8d2d91 [iOS]Convert bookmark DCHECKs to CHECKs
  • 7ac31d6 [TDR] Remove TODOs linked to issue 344950143.
  • c18fad2 [iOS] Separator Constraint | PSF Background Fix | PSF Icon Size
  • 445c2f3 Roll Chrome Android ARM32 Orderfile from 1LvkmQ_nsKZSFQAge... to qYjQMzS7DhD_BvNzs...
  • 3dcf519 Add feature flag for boca receiver custom polling.
  • 50872b5 [SyncTests] Modernize sync integration test for SingleClientWebApksSyncTest
  • 21c8f92 [SyncTests] Modernize SyncOSCryptAsyncMigrationTest
  • 6e2fdbc [TDR] Remove TODOs linked to issue 259184140.
  • 4b9c64e [signin] Stop using AccountInfo::hosted_domain
  • dd70e4c [SyncTests] Modernize SingleClientUserConsentsSyncTest
  • 1fd3184 Roll Chrome Mac PGO Profile
  • c9522ec Roll DevTools Frontend from b83dd018ab44 to f15d982497b8 (1 revision)
  • 6e76fce Fix unsafe buffer usage in parse_proxy_list_fuzzer
  • 1b58f6f Roll androidx from 9F_0X721Ie6V6GsOB... to pT7QpyTXlCmXieA-O...
  • 5bedcae [Histograms] Extend Profile.Menu.ClickedActionableItem*
  • b3eb163 [Sanitizer] Update config modifier algorithm to match current spec.
  • 7696dd3 Only allow one key restoration at a time
  • 3a01251 Remove stray .get() call
  • f280bab [PSF] Fix permissions text alignment to be left-aligned.
  • 30b17fb Rollback VariationsSmokeTest name change.
  • 626c68e [TDR] Remove TODOs linked to issue 41385872.
  • 2bfd9ab WebXR: Fix a bug in cube layer
  • f374f0b [signin] Stop using AccountInfo::hosted_domain
  • 658ef03 [Tab Switcher E2E] Fix hub bottombar E2E padding issue
  • 482acbb [TDR] Remove TODOs linked to issue 40933120.
  • bd0c353 [TDR] Remove TODOs linked to issue 367922864.
  • bef94e7 Roll Chrome Mac Arm PGO Profile
  • 7b22283 Roll WebView ARM Orderfile from pwHxG6WGMonpG-UfA... to bgNEQN1D-ti3EaFkw...
  • 06adebf [iOS][NTP] Reload NTP modules on AIM availability change
  • baf96dd [persistent_cache] Add support for WAL mode
  • 6a66ccc Roll Dawn from 5f5984923015 to 08991a0b0a6f (4 revisions)
  • 6a030d9 [TDR] Remove TODOs linked to issue 40101272.
  • ea21c83 Use JNI type for onPickTab in MediaCapturePickerManagerBridge
  • 3042666 Enable flag for non-tree-scoped container names
  • eafd4e8 Move CredentialRequestResult enum to a separate header
  • e01a9d6 Subsample histograms issued during SetCanonicalCookie
  • e8e1600 Roll Chrome Win ARM64 PGO Profile
  • 1a70677 [iOS] Create SyncEncryptionTableViewControllerPresentationDelegate
  • 05c50b3 [iOS]Deactivate and then activate
  • 16f023d [TDR] Remove TODOs linked to issue 372873259.
  • 5bdff70 [WebAuthn] Add browser tests for ChangePinControllerImpl
  • 4556bbc ScopedVT: Add scroll and clip tests
  • 367d63b [TDR] Remove TODOs linked to issue 40103988.
  • 429861d Roll WebRTC from a921af0cbb88 to 863fd47b772f (1 revision)
  • 710e9c0 Roll ios_internal from 5dc1e0436e53 to e941cc1b199d
  • b174c65 [TDR] Remove TODOs linked to issue 40839365.
  • b09af56 [SyncTests] Modernize SingleClientExtensionsSyncTest
  • 633ee2a Roll DevTools Frontend from a75ec9a762d9 to b83dd018ab44 (5 revisions)
  • b57dd6f [Zoom Indicator] Enabled by default
  • 61d7209 [Persist] Cleanup structure
  • 59b8f33 [signin] Stop using AccountInfo::hosted_domain
  • 56a15f9 [iOS][WhatsNew] Add new features for M143
  • ad50718 Roll Chrome Linux PGO Profile
  • 099260b Roll ANGLE from 68049323f8bf to 306e58a9fb0b (2 revisions)
  • daa2734 Fix up scope ordering with multiple import maps
  • 04663e7 [CT] Automatic update from google3
  • b8e1891 [iOS] Disable testPullToRefreshIPHShouldDisappearOnEnteringTabGrid
  • 3e9b2c3 Updating XTBs based on .GRDs from branch main
  • 980801c [KP] Automatic update from google3
  • 85fde6d [IOS][AIM] Combine cached APC with on flight approach
  • 87b6d75 [Sanitizer] Update the core sanitization algorithm.
  • 2aec839 [Sanitizer] Update the built-in to handle per-element attributes.
  • 9dac78d [ios] Add script to run EG tests
  • 6df9d44 Roll Chrome Android ARM32 PGO Profile
  • f19e729 Actor: Add metrics for ObservationDelayController
  • c1ed56d iwa: Update IWA Managed Allowlist
  • 11f138e Roll V8 from 06c39132a038 to a85dd0944924 (3 revisions)
  • 2687c5e Fix unsafe buffer usage in blob_builder_from_stream.cc
  • 5b4beba Roll clank/internal/apps from 211eb27e83c4 to 707d85242b4f (1 revision)
  • d59a97d Roll DevTools Frontend from 53eaa9d15524 to a75ec9a762d9 (3 revisions)
  • 12ef40b Roll ios_internal from 8a392c49d60d to 5dc1e0436e53
  • 0e6730f Roll Chrome Android Desktop x64 PGO Profile
  • 43d4b22 Remove SetupUtilTest.GetConsoleSessionStartTime
  • 7bcdbb4 [signin] Stop using AccountInfo::hosted_domain
  • 69c26b0 Fix unsafe buffer usage in v4l2_capture_delegate_gpu_helper_unittest
  • 36f76ae [TDR] Remove TODOs linked to issue 329561631.
  • b5a6a3e Roll WebRTC from 131cd6104aa0 to a921af0cbb88 (4 revisions)
  • ae92149 CodeHealth: Clean up stale base::Feature ExoLinuxDmabufV4
  • 6895759 Fix crash when two identical stylesheets don't produce RuleSets
  • 8eecf22 Create a probe::AsyncTask for pending scripts
  • b73e308 [DevTools] Disable Console Insights Teasers feature by default
  • 23748ba Fix AppCommand end timing
  • 53b9e67 Conditionally style signout confirmation button red
  • e9a168a Roll Chrome Mac Arm PGO Profile
  • 5fe2cde webrtc-internals: fix SDP munging detection
  • c8ad064 Roll Chrome Win32 PGO Profile
  • 8cd50df Do not discard len information in native media file util file read
  • ac68648 Roll DevTools Frontend from bd237917e21a to 53eaa9d15524 (1 revision)
  • 40a8886 [signin] Fix inconsistency in AccountInfo::Builder ctors
  • 52c3872 Add tests for search engine choice eligibility no geo country.
  • 40f5d76 Roll V8 from 47d46194db12 to 06c39132a038 (3 revisions)
  • aeb1c26 [MediaStream] Do not mute video tracks when frames are not flowing
  • 8c25a67 Fixed Browser Test DirectSocketsUDPJoinLeaveMulticastEvents.
  • cb5b465 Roll Chrome Win64 PGO Profile
  • 6a06d7f Disable AppMenuBrowserTest.InvokeUi_main_incognito.
  • a6cfb36 [dbsc] Start Unexportable Key Service Proxy in browser process
  • f92cb73 [Sanitizer] Update the configuration's data model.
  • 0613958 Sync protocol cleanup: Convert managed_user_shared_setting to EmptySpecifics
  • d38888f Roll gn from fb3b73df3c0d to 4619125bd337
  • 2f901e5 [Android][Signin] Prevent crash if SnackbarManager is null
  • 41dd165 [Android][Signin] Implement seamless sign-in for key entry points
  • 3d8a591 [Android][Signin] Introducing new SeamlessSignin MVC
  • 8b7501b [TDR] Remove TODOs linked to issue 40637301.
  • dbdef3b Roll Chrome Android ARM64 Orderfile from _qcgb-X5sw-R0dm1P... to bmPamewMLAs1ybpDO...
  • ec95733 [Gardener] Revert "[Android] Show Keyboard Accessory suggestions after scroll handling"
  • 78bc442 [dbsc] Disallow mojo in unexportable_keys
  • 5994543 Roll DevTools Frontend from 5c7569d6565e to bd237917e21a (5 revisions)
  • 0bead71 [dbsc] Fix MojoLPM errors
  • d1987ba Roll ANGLE from feb258f3e2a9 to 68049323f8bf (1 revision)
  • 255465f [TDR] Remove TODOs linked to issue 382122020.
  • c9e4aa5 Roll ios_internal from 6d862105490c to 8a392c49d60d
  • 218e490 More explicit histogram testing and constants strings in OTP tests
  • 54a81e7 [Origin API] Drop `Location` and `WorkerLocation` conversions.
  • 7d4a803 Roll V8 from 209d7cd983a5 to 47d46194db12 (2 revisions)
  • c89eaab [TDR] Remove TODOs linked to issue 331642736.
  • 586f9ef Roll Projector App from agXmUKkLaAi_yeMPQ... to dTRA6xKwIxChV4qmM...
  • 5d91d8b Roll src/third_party/nasm/ e2c93c349..af5eeeb05 (1 commit)
  • 1de60b3 webnn: restore the OrtRunSync trace
  • 3156fe3 [TDR] Remove TODOs linked to issue 444267914.
  • 1627a85 [TDR] Remove TODOs linked to issue 40562061.
  • 799cdb7 Fix unsafe buffer usage in MediaKeyStatusMap
  • 52cc653 [TDR] Remove TODOs linked to issue 41430413.
  • 0264cfa Reland "Simplify async waits in PasswordManagerUIHandlerUnitTest"
  • b95be6a [TDR] Remove TODOs linked to issue 417272356.
  • c6db446 Roll Chrome Mac Arm PGO Profile
  • 8fba5b2 Roll DevTools Frontend from 653c6a3d75c7 to 5c7569d6565e (4 revisions)
  • e75abb6 [TDR] Remove TODOs linked to issue 207087887.
  • a605faf [WebNN] Support device tensor for WebGPU EP on ORT backend
  • c939e6c [iOSFidoImportExport] Update credential export button string
  • 283986d Add new synonyms for the Manage Sync pedal
  • 7e978df Patch the handling of custom schemes in the isolated_web_app_throttle
  • 1ad5bf2 Align checkbox and the label in chrome://inspect
  • 046b789 Disable layout test to land crrev.com/c/7199382
  • 1553712 Roll Boca App from fbv4T0DsqUIPYLYta... to tDyri9j9BQyjtMsz0...
  • b02f710 Roll Boca Receiver App from E__TD3icMLEsdFUdH... to wgakaDafipGbEy_l1...
  • 1f33f8c [TDR] Remove TODOs linked to issue 404311796.
  • 0ee26f1 [TDR] Remove TODOs linked to issue 292227137.
  • 0b8ab78 [TDR] Remove TODOs linked to issue 40265597.
  • e4be6da Roll Chrome Android ARM64 Orderfile from Vy8hdYxy3zk3eyYr9... to _qcgb-X5sw-R0dm1P...
  • 8802dd1 [Frameworks roll] Roll to 836531273 piper revision
  • b741934 [TDR] Remove TODOs linked to issue 40508978.
  • b43e0bb Update meet_effects hash in DEPS file.
  • 4333ce9 Apply blink::StrCat() in renderer/modules/
  • 38a1f80 [TDR] Remove TODOs linked to issue 323421684.
  • ec9bec0 [TDR] Remove TODOs linked to issue 40677452.
  • ad4477b [Document PiP] Register DocPiP in window manager on Android
  • 99e6994 [TDR] Remove TODOs linked to issue 323585997.
  • b8cb3b0 [TDR] Remove TODOs linked to issue 40201849.
  • 108a95b [TDR] Remove TODOs linked to issue 40118385.
  • 77527e1 [TDR] Remove TODOs linked to issue 276837931.
  • bd9dd40 Delay expiry of frequently used histograms.
  • 71ea2e1 Roll ANGLE from 2abaa52fd032 to feb258f3e2a9 (1 revision)
  • 3a4cc6f Refactor: Use std::u16string for extension load error messages
  • f634c45 [TDR] Remove TODOs linked to issue 335118703.
  • 172a4d4 Delay expiry of histograms causing alerts.
  • 5936724 Roll DevTools Frontend from 1f813ab5ed67 to 653c6a3d75c7 (1 revision)
  • e5c8664 Roll Chrome Win ARM64 PGO Profile
  • 3735d12 Add depedency to xml_ffi from core_hot
  • ce4b064 Use base::ValuesEquivalent for Font object comparisons
  • db14103 Roll R8 from a4fVqbIycCDqs1714... to sjuUu6_BDMGSci_jp...
  • a6821db [TDR] Remove TODOs linked to issue 40780100.
  • 94069a7 Roll Chrome Mac Arm PGO Profile
  • f90290c [TDR] Remove TODOs linked to issue 315188874.
  • d76fbfc [TDR] Remove TODOs linked to issue 333740702.
  • 3a5197c IDB: SQLite store - enable ForceCloseWithBlob browser test
  • b843819 [Gardener] Re: Disable flaky tests in WebAppIntegrationTest
  • 2c255e1 Roll Chrome Win32 PGO Profile
  • 2e3cf08 Roll Chrome Android ARM64 Orderfile from qklCa5ADGvTgN0LR7... to Vy8hdYxy3zk3eyYr9...
  • c57a00c Add dongguoz@ to components/wallet/OWNERS
  • c7198ae [TDR] Remove TODOs linked to issue 319334795.
  • 25bf8e2 [TDR] Remove TODOs linked to issue 237040345.
  • 9e45ee3 Roll Chromium Variations from VkN_rSF-szcyQT6JR... to h6IhLpPJXuzQaYKXY...
  • fcc3646 [TDR] Remove TODOs linked to issue 323585997.
  • fadb9a6 [TDR] Remove TODOs linked to issue 323421684.
  • 1b21ba4 [TDR] Remove TODOs linked to issue 445300633.
  • 3bf09fa Support filtering for policy for media sharing on Android
  • b457902 [TDR] Remove TODOs linked to issue 323421684.
  • fb7aa05 [//media] Eliminate V4L2CaptureDelegate test needing special config
  • 90ef4c9 Roll WebRTC from 920b3b701d21 to 131cd6104aa0 (4 revisions)
  • 7a2b26a Format timestamps in chrome://metrics-internals as dates.
  • 9cf5596 Roll V8 from 892149b3c1b4 to 209d7cd983a5 (3 revisions)
  • 75457d2 Roll Chrome Win64 PGO Profile
  • a0f9e3e Roll androidx from CoKCiziKtOmoa_v9M... to 9F_0X721Ie6V6GsOB...
  • 9fb257e Deprecate password deletion related browsingData api functions
  • 5005fab Roll Arm AFDO from 144.0.7544.0_pre1549076_rc-r1-merged to 144.0.7545.0_pre1549389_rc-r1-merged
  • 2d34e5f Roll Dawn from 80128f92cd70 to 5f5984923015 (1 revision)
  • aaa70eb [Blink] Remove high-entropy tracking from CRPBitmap method
  • 065a145 Roll Skia from 925c311f4b37 to 04f08a150e24 (4 revisions)
  • 1196679 [//cc] Eliminate setting ideal_contents_scale_ in test-only method
  • 29d1ee8 [//cc] Make TileBasedLayerImpl templated on Tiling
  • 2ea342d [//cc] Move Tiling and Tile out of TileDisplayLayerImpl
  • f0499d0 [Blink] Inline image provider creation in CRPBitmap::DoExternalDraw...()
  • a67a73d [Blink] Make CRP::GetOrCreateImageProvider() CRPSI-only
  • a440afb [//media] Eliminate FileVideoCaptureDevice test needing special config
  • a8c46b6 [Blink] Split out creation of SW CanvasImageProvider in CRP
  • 7a3fdab [Blink] Inline GetAlphaType() call in CRPBitmap::DoExternalDraw...()
  • b62465e [Blink] Inline GetSkSurfaceProps() call in CRPBitmap::DoExternalDraw...
  • 39648d7 [//ui] Have FlatlandSysmemBufferManager talk SIFormat in its interface
  • 322c1d4 Fix sorting issue with import map scopes
  • aad27a1 Roll DevTools Frontend from d4a2211a75b8 to 1f813ab5ed67 (1 revision)
  • ef29bab Removing Tab Scrolling feature
  • a9f2259 [RSG] Allow GetPlusAddressEmailOverride to return nullopt
  • 2f42724 Resolve UNSAFE_TODO in SupportedImageTypeValidator
  • d53a8bc Resolve UNSAFE_TODO in native_media_file_util.cc
  • d033b1c cleanup: Remove network_portal_detector refs from chrome/browser/sync/test/integration
  • 22ddfbd Roll Chrome Android Desktop x64 PGO Profile
  • 9a6de87 WebAuthn: Update password last used when selected in immediate mode
  • 33f6f8b Roll vulkan-deps from f1e2e0ed9389 to c42dd8c6ffc3 (1 revision)
  • 6156675 [SVG] Add UseCounter for <use> element width/height attributes
  • 45be9dd Roll Chrome Mac Arm PGO Profile
  • 003daf9 Use span-based base::File API
  • bba9587 Migrate ElevatedRecoveryImpl to use span-based file I/O
  • 3299fbf Add IsActorTaskActive to AutofillClient
  • a89f25b [Contextual tasks] Clean up side panel cache on close
  • 41aaaf7 Extension: Port InspectInactiveServiceWorkerBackground
  • 65f183e [iframe] Parse the fallback length
  • 51c5690 [Gardener] Disable flaky tests in WebAppIntegrationTest
  • 4a93ac8 Revert "Update fieldtrial_testing_config for multi column mode."
  • 81f4c7b Roll clank/internal/apps from 9d7ae83f1c46 to 211eb27e83c4 (1 revision)
  • 3c0defa webnn: enable the ORT backend by default
  • e564fb1 Update Fuchsia FormControlsBrowserTest expectations
  • 226fdc7 Roll SwiftShader from d7bc95730bdd to be8ed1d0e917 (1 revision)
  • 087e8ce Automated Commit: LKGM 16494.0.0-1073371 for chromeos.
  • e01e08e Roll Chrome Mac Arm PGO Profile
  • 985364d [glic] Guard glic inclusion with `enable_glic`
  • b88cb50 Extend expiration for LanguageDetection.TFLiteModel.ClassifyText.HighestConfidenceLanguage.
  • 80ad6cf Roll Search Engines Data Internal from ab395ff6dac9 to d796f6348f95 (1 revision)
  • 8fd4e40 Roll Chrome Win64 PGO Profile
  • e43324e Delete unused Setting::kShowEmojiSuggestions [11/N]
  • 9bfd575 extensions: Use @Nullable for Profile and Tab Suppliers
  • c090f09 [AIM] Add tab filter for tab picker
  • 4fcb663 Updating trunk VERSION from 7545.0 to 7546.0
  • 54828dd Roll Chrome Win32 PGO Profile
  • 25bfff4 fjord-oobe: Update Welcome screen string for Fjord OOBE
  • addbfca Revert "[Extensions] Add Chips IPH to field trial testing config."
  • fb5ad0c Roll Chrome Android ARM64 Orderfile from 9OVoPXlu4DuenwhDC... to qklCa5ADGvTgN0LR7...
  • 0635713 Roll Chrome Android ARM32 Orderfile from Qxk31bSX36q-CyTTz... to 1LvkmQ_nsKZSFQAge...
  • b6d76c1 [FPF] Delete FPF implementation
  • 1c9ce70 [HLS] Improve resolution filter
  • bf2131a spanification: Clean up unneeded parameters in
  • c99b508 [HLS] Minor test improvements
  • 91ba5ed Cleanup UNSAFE_TODO in file_util
  • 7bc3a4e Fix GlicMetricsFeaturesEnabledTest for ChromeOS.
  • c11e4ab [ntp-next] Latency metrics for Action Chips rendering
  • 92c3b76 Roll Chrome Mac PGO Profile
  • 9954b71 Roll vulkan-deps from 885613801104 to f1e2e0ed9389 (1 revision)
  • dac4726 Stabilize GlicSettingsUtil interactive ui tests.
  • 6ed3de2 [OpenScreen] [VideoStack] Update test to properly record laptop screen
  • 16b1df6 Roll WebView ARM Orderfile from G6OSF6tTkDDtZ1XSS... to pwHxG6WGMonpG-UfA...
  • c9c89f4 Sync feature protos.
  • 0a9746f Delete unused AssistiveWindowType::kEmojiSuggestion [10/N]
  • 78c4ff2 Resolve UNSAFE_TODO in web_bundle_parser_factory.cc
  • b41c7c3 Add Power.PowerSupplyMaxVoltageHPBCharger metric
  • 0ead1d7 Roll Chrome Mac Arm PGO Profile
  • c34f2b3 [HLS] Always create an Audio RenditionGroup
  • db6f06f Upgrade DCHECK to CHECK.
  • 72652e1 Resolve UNSAFE_TODO in ReadaheadFileStreamReader
  • 5258fa3 Move BindOkContinuation() out of media::TypedStatus
  • 199cb72 Roll Dawn from bbe5bd623167 to 80128f92cd70 (5 revisions)
  • 7d9208d AMSC: Move the AMSC macro into its own header
  • 6e5ecf7 Update fieldtrial_testing_config for multi column mode.
  • b3e1db9 Roll Chrome Linux PGO Profile
  • 066516b Roll optimization-guide from 6d502ad032dc to 724de88d56f4
  • 3325306 Roll ChromeOS Bigcore AFDO profile from 144-7499.11-1763349143-benchmark-144.0.7538.0_pre1548454-r1 to 144-7531.0-1763956029-benchmark-144.0.7544.0_pre1549076-r1
  • b8b483f glicmi: move service metrics code to a single destination
  • 4a2fdbb Roll ChromeOS Arm AFDO profile from 144-7499.11-1763349616-benchmark-144.0.7538.0_pre1548454-r1 to 144-7531.0-1763955694-benchmark-144.0.7544.0_pre1549076-r1
  • 64dd697 Roll BoringSSL from d1fde5ae275d to cb6da2b637b8 (1 revision)
  • 63e3325 Roll Skia from 426a1aa1bd63 to 925c311f4b37 (1 revision)
  • dd1d005 Roll ChromeOS Atom AFDO profile from 144-7499.11-1763355062-benchmark-144.0.7538.0_pre1548454-r1 to 144-7531.0-1763955623-benchmark-144.0.7544.0_pre1549076-r1
  • d4680cf url: Add MaybeFoo() methods to url::Replacements
  • 0638f81 Roll WebRTC from 7285501e8483 to 920b3b701d21 (1 revision)
  • 27f3643 Roll ANGLE from 04d4e760462b to 2abaa52fd032 (1 revision)
  • 42caedf Revert "[MinimalUi_MenuButton] Remove unnecessary .post call"
  • 0557213 Roll clank/internal/apps from d8c111ec51f7 to 9d7ae83f1c46 (1 revision)
  • bf90e10 Use more standard enumerator names in test files and metrics
  • 8a6d4df Roll Chrome Android Desktop x64 PGO Profile
  • d235617 Do IWYU for base/functional/callback_helpers.h in //chrome
  • 3a1926a Remove includes of callback_forward.h from //chrome .cc files
  • 1287fa1 Roll V8 from a6ea2ed77579 to 892149b3c1b4 (3 revisions)
  • 7ebcda4 Remove includes of callback_forward.h from ash / chromeos .cc files
  • 606769d glic: Re-enable GlicEnabling browser tests on ChromeOS
  • becc741 [DomStorage] Update DomStorageDatabaseLevelDB::GetPrefixed() to return
  • d1e1c41 [contextual-tasks][lens] Upload viewport and context data in StartQueryFlow
  • 7ea5863 Roll Chrome Android ARM32 PGO Profile
  • 0337ee4 [iOS][PSF] Fix Infobar Badge Image Size in incognito mode.
  • 998a8c8 [RWM] Updates max instance info strings for Robust Window Management.
  • 6727d5c Adds jsca@ and renewitt@ as owners of Copybara files in third party.
  • 249f105 Extend expiry for performance controls histograms
  • f10eb19 Revert "Re-enable PageStabilityMetricsTest.Paint on Mac"
  • cdd5c6f Revert "Disable kWebUITabStrip"
  • 5eff574 glicmi: Add metrics for conversation switching
  • 1123585 [contextual-tasks][lens] Route Lens queries to Contextual Tasks when enabled
  • 08c5e44 Revert "Reland "[ios] Add kIOSAutoOpenRemoteTabGroupsSettings to field trial config""
  • 2aa249b Remove unnecessary @NonNull from onAccountAdded
  • 225c173 Roll vulkan-deps from 17fbffbed7f0 to 885613801104 (5 revisions)
  • c4deed7 Roll Chrome Mac Arm PGO Profile
  • 06b176b [AIM] Set limit of number of cached tabs
  • 5ae6d36 [Contextual Tasks] Make Contextual Tasks user agent suffix configurable.
  • 402f68d Roll Chrome Win64 PGO Profile
  • a08bdd7 Roll Skia from d83c30b090f4 to 426a1aa1bd63 (1 revision)
  • cab660d Restore federated session keys on use
  • 5bb3a13 [Theme] Add a complete list of Chrome colors.
  • 509a635 Roll WebRTC from 32a1b8985ed0 to 7285501e8483 (1 revision)
  • 91a2465 CrOS: Migrate c/b/r/chromeos/crostini_installer to TypeScript.
  • b54dba1 Replace heavy include with forward decl variant
  • e65d704 Select the action button view when it is navigated to via keyboard
  • 3e46761 Fix fields in MTC proto that were signed ints to be unsigned.
  • 4668f86 Create a new instance for GlicShareImage
  • 8eae848 Reland "Reland "Take bottom inset into account when calculating vertical scroll range""
  • 12e93eb Reland "Refactor bottom inset code into calculation and getter"
  • 4447638 Minor cleanup for BrowsingInstance::GetBrowserContext().
← Back to all summaries