Chromium Digest: 2026-01-20
Overview
This digest covers 565 commits on the main branch, with 407 selected as relevant for developers. The changes span from (bfee2f8)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((bfee2f8)) to (6407790)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((6407790)). The day was marked by a large number of breaking changes, particularly in the sign-in, metrics, and Cronet APIs, as part of major refactoring and cleanup efforts.
Breaking Changes
-
⚠️ BREAKING
Major Sign-in API Removal: The legacy
SigninManagerandSigninManagerFactoryclasses have been completely removed as part of the "Uno-d" cleanup. Embedders relying on these for desktop sign-in management must migrate to newer identity APIs. (ef1e523) (a4da4de) -
⚠️ BREAKING
base/metricsAPI Refactor: Thebase::HistogramFlattenerclass has been removed.base::HistogramSnapshotManageris no longerfinaland now requires subclassing to implement the new pure virtual methodRecordDelta. This requires significant updates for embedders who process histogram data. (7cf7b7d) -
⚠️ BREAKING
Cronet Proxy API Changes: The public Cronet API for proxy configuration has been changed. A new method
ProxyOptions.fromProxyList()must be used to specify fail-over behavior, and thegetProxyList()method has been removed from the public API, breaking existing integrations. (e5daad7) (8f1eb9f) -
⚠️ BREAKING
Mojo Java Bindings Error Handling: Public Mojo Java bindings will now throw a checked
BadMessageExceptioninstead of silently swallowing errors. Embedders must update their Java code to catch and handle this new exception. (c04b855) - ⚠️ BREAKING WebView Renderer Lifecycle Change: The renderer process lifecycle for Android WebView has been altered. Renderers are now kept alive for a short duration after the last WebView is destroyed. This is a significant behavioral change that can impact embedders relying on immediate process termination for state management or cleanup. (7f786d9)
-
⚠️ BREAKING
"Fast Checkout" Feature Removed: The entire "Fast Checkout" feature has been deleted from the codebase. All related classes (
FastCheckoutClient, etc.), build targets, and UI components are gone, which will break builds for any embedder that had integrated with it. (52e96c0) -
⚠️ BREAKING
Multiple Public C++ API Removals and Renames: Several public functions and classes were removed or renamed, requiring code updates:
*
media::IsApplicationAudioCaptureSupported()was removed in favor ofmedia::IsApplicationLoopbackCaptureSupported(). *base::MakeClampedNum()was removed; use theClampedNumericconstructor directly. *AutofillManager::FindCachedFormsBySignature()was removed. *DownloadRequestLimiter::GetDownloadStatesignature was changed. *SupervisedUserSettingsServicewas renamed toFamilyLinkSettingsService. *password_manager::features_util::IsAccountStorageEnabled()was renamed toIsAccountStorageActive(). (ae2e3c4) (b2f670f) (666e87b) (e4c421a) (97b35f3) (9a41144) -
⚠️ BREAKING
Platform-Specific API Removals:
* Android: The public Java method
getProfile()was removed from theChromeAndroidTaskinterface. * ChromeOS:Browser::TYPE_CUSTOM_TABand its creation method were removed, breaking ARC++ integrations that used it. (44b1c8a) (18d3528) -
⚠️ BREAKING
IPC and Mojom Interface Removals: Legacy and unused interfaces were removed.
* Legacy IPC traits for
gpu::GLCapabilities,gpu::error::Error, andgpu::error::ContextLostReasonwere removed in favor of Mojom. *GetUpdaterPoliciesandGetAppPoliciesmethods were removed from thechrome.updater.mojom.UpdateServiceinterface. * Thecomponents/sync/mojom/syncer.mojominterface was deleted. (e7bae9e) (9cd9faa) (0bd08e9) -
⚠️ BREAKING
Web API: Direct Sockets Breaking Change: In the Direct Sockets API, the
localAddressandlocalPortmembers of theTCPServerSocketOpenInfodictionary were changed from optional to required. This will break existing JavaScript code that relied on the previous behavior. (3ff917f)
Web Platform & Blink
-
The experimental CSS
color-contrast()function was removed, to be replaced by a futurecontrast-color()implementation, for which parsing support was added. (f0e4493) (31de924) -
The experimental CSS properties
text-growandtext-shrinkwere merged into a singletext-fitproperty. (8a53990) (16ed4d9) -
The
timeline-triggerandtrigger-scopeCSS properties for scroll-triggered animations have been enabled by default. (63f20df) -
A bug has been fixed where
color-gamutmedia queries were not correctly re-evaluated when moving a window between displays with different color capabilities. (e4f8f24)
Core & Internals
-
Code modernization efforts continue, with
DOMSharedArrayBuffer::Createnow usingbase::spaninstead of raw pointers, and many instances ofstd::setbeing replaced by the more performantabsl::flat_hash_set. (9012331) (da1b66d) (576e669) -
As part of a large-scale refactoring, the Java
jlongtype is being replaced with the C++int64_tacross the codebase for improved type safety and consistency. (c113e6d) (96ecfea) -
The "bedrock" project continues to progress, migrating more code away from dependencies on
BrowserListto support a more componentized browser architecture. (a20bdd8) (1fae1bd) -
The
BFCachePolicyclass was removed and its logic was merged directly intoBackForwardCacheImpl, simplifying the implementation. (db0a734)
Autofill & Passwords
-
As part of a performance optimization, the logic for parsing and caching server predictions for form fields was refactored, leading to the removal of the public
AutofillManager::FindCachedFormsBySignature()method. (dbf260e) (2c4fb41) (666e87b) - New Java and C++ classes were added to support entity metadata and instances for the experimental Autofill AI feature. (13e3258) (31d5d42)
UI & Features
- PDF annotation mode now supports eraser tips on pen input devices. (6b6c4e7)
- A security fix was implemented in Picture-in-Picture windows to prevent URL spoofing by enforcing a Left-to-Right text direction in the title. (58a8c05)
- The alignment of top container buttons in the Vertical Tabs UI was adjusted to better match the main toolbar. (5cd3982) (f18ce30)
- The experimental "Contextual Tasks" feature continues development, with UI additions and fixes to prevent the side panel from re-animating if already open. (3a3c061) (f341632)
Feature Flags & Cleanups
-
Numerous feature flags for launched or deprecated features were removed from the codebase. This includes enabling
MojoInlineMessagePayloadsby default, and removing flags such asEnableDrDcVulkan,clear-instance-info-when-closed-intentionally, andPermissionPromiseLifetimeModulation. (6b62321) (1d108eb) (e0ef97d) (ee70d40)
All Commits (565)
- 6407790 Fix onAuthRequired for navigations intercepted by service workers
- 0473620 Prompt API: Support basic audio input resampling in Blink
- e6d2f99 [Connection-Allowlist] Add test for link rel modulepreload
- ff85c92 OopVideoDecoderService: Remove unnecessary dereference
- 7113312 Set SupportedProfileType to MIXED when Desktop-like Incognito is off
- b51deef [focusgroup] Allow directional movement from items with a negative tabindex.
- 3a3c061 [contextual_tasks] Added files section to sources menu
- e647aa7 [focusgroup] Rename focusgroup-entry-priority to focusgroupstart
- a201b43 Roll Depot Tools from fada3b27240b to 486cb1931f14 (1 revision)
- cb55e80 Fix some bugs in remoting's template-processor for Debian packaging.
- 8cc9fe3 Roll androidx from dj_RhoCy27XGnjTlo... to 7mj_vvGaQVEt90e_W...
- 022d808 [Reading Mode] Fix flaky side panel toggle tests
- 8093fd7 Don't use Skia/Ganesh to generate VR ui elements
- 0bfd14b Roll src/third_party/libaom/source/libaom/ e3d6ba6e5..08abf2017 (19 commits)
- a149b47 media: Use VideoFrameConverter in NdkVideoEncodeAccelerator
- ba1155f spellcheck: improve error handling
- 28fd1a3 Roll Open Screen from d364847b924b to de256437f945 (1 revision)
- 656dd12 Roll BoringSSL from 67cc42c49578 to 3af8dba67e57 (1 revision)
- c04b855 [mojo] Change error behaviour for incoming message processing
- e8b8030 Remove deprecated TODO.
- 80cadf8 Remove a never-used field from csd.proto
- 1d5cd59 Roll src/third_party/crabbyavif/src/ cb72c4cc0..7407617e2 (5 commits)
- b1b7fe2 Make global_browser_collection_browsertest.cc compile (but not run) on Android.
- 74ad348 Resolve UNSAFE_TODO in StrokeData::SetLineDash
- 1e6da80 Roll WebGPU CTS from 0ca53dd3c9cd to 01b814e66e73 (1 revision)
- 2f1cb3a [glic-mi-tab-context-menu] Change conversation id to instance id inside ConversationInfo struct.
- 15aa955 [Settings Search] Support single-column settings
- 046e94a Roll Skia from 5339ee64897a to 213bd1d58822 (9 revisions)
- 6b6c4e7 Support eraser tips on pens in PDF annotation mode
- 365a7b4 [Contextual Tasks] Fix Auth race condition
- a334234 [Contextual Tasks] Add testing for URLLoaderFactory
- 9012331 Resolve UNSAFE_TODO in DOMSharedArrayBuffer::Create(const void*, ...)
- ac47138 Roll Chrome Win32 PGO Profile
- da1b66d Replace `std::unordered_set` with `absl::flat_hash_set`.
- 808326b Resolve UNSAFE_TODO in EnumerationBase::ToString()
- 24811c3 [Clank Autocorrect] Add AutocorrectManager
- 5c74512 [contextual-tasks] Overlay should close when primary page changes.
- 8cd9c51 Add UMA metrics to track CAPTCHA frame loads and interactions
- a6ecfff Import wpt@1d7daa67a254903d85f3148b6e71e2c640045ddc
- 58a8c05 Set Pip window title directionality mode to DIRECTIONALITY_AS_URL
- bcb4563 Roll Chrome Mac Arm PGO Profile
- 36baba9 Roll eigen from c09151a2c208 to f46a2c561e6d (1 revision)
- 52e1cd7 [Gap Decorations]: Remove none as value for rule-visibility-items
- c0e96ac [ntp-next] Add/update variants for M145
- a09ed1f Access Code Cast: Migrate passcode-input to Lit
- 37377d9 Remove kUsbDeviceLinuxOpenCrashKey flag
- f7afd4e Revert "Remove PerformFortuitousMemoryBarrierIfNecessary"
- dd2d3e4 [Glic] Add android folder template
- dd67882 Paint dragged vertical tabs to a layer
- b42dfa0 Roll clank/internal/apps from 8900ab283961 to 93e65273edfb (1 revision)
- e9d023d [realbox] Create input state driven context menu entrypoint.
- dcb2c41 Roll ANGLE from 3a32bdf0b668 to a38f4afadd1c (3 revisions)
- 9e08240 [Omnibox] clean up on device head model param "SelectionFix".
- db0a734 Remove BFCachePolicy
- d37ec90 Added browser test to verify script tools works if followed by a navigation.
- c621d3b Improve O(N^2) code in blink::Element::ReadingFlowChildren()
- e8a4f92 [composebox] Add Variables to handle Model Picker and Canvas Visibility.
- 3a361fd [DBSC] Add a toast msg on a delete key err for keys debug page
- 2bb105b [iOS][WelcomeBack] Fix infinite layout loop in WelcomeBackViewController
- 9707f86 [Reading mode] Adjust threshold for calculating lines for line focus
- 8ff3b1d [Connection-Allowlist] Add test for link rel preload
- ae2e3c4 Add IsApplicationLoopbackCaptureSupported helper function.
- 5331189 Roll BoringSSL from fab5bd43e78a to 67cc42c49578 (1 revision)
- 73db3c8 Add myself as owners for skills.
- 6f52563 Roll WebRTC from 65d3d4926c8a to 89809fe426b6 (5 revisions)
- 66aaae2 [contextual_tasks] Underline should respect signals from both backend
- 6492807 Make `use_desktop_widget_override()` no-op for ChromeOS
- 3cff24b [ntp-threads] Match threads rail background color to footer color
- a2234fe extensions: Support tab group update notification on desktop Android
- 8d4872c [A11y] Remove completed todo in ComputeAndroidNameTo
- f9a42ce Add TrackedElement Support to WebUIToolbar
- 120c560 [perf] Use Weak HashMap/HashSet within TextPaintTimingDetector.
- 19fb4ba Add skeleton for StatusTray/StatusIcon implementations for ChromeOS
- e7bae9e [gpu] Move GLCapabilities, Error, ContextLostReason to mojom
- 8bb0fb1 Roll Chrome Mac PGO Profile
- b14d0b5 Small fixes and cleanups to mojolpm.md
- 947d600 Revert "[realbox] Fix input positioning in compact realbox."
- 125bb3d Disable some main menu commands for windows that have attached sheets
- 9cd9faa updater: remove obsolete mojo methods GetUpdaterPolicies/GetAppPolicies
- 008c097 [aim-tools-models] Implement disabling inputs based on input limits
- 26162c5 Cleanup pass on design principles.
- ee9923e Add the request type actor that will be cancelling the intelligent scan
- 9fc159f [Autofill AI - Reauth] Reauth when changing pref value
- e5f9371 Updater UI: Add UpdaterStateCard
- 5f11cce Use string_view instead of string to avoid string copies.
- 154d906 docs: Add a note about Merge-Approval-Bypass footer to cq.md
- 576e669 Replace `std::set` with `absl::flat_hash_set`.
- 868b0cc Fix "pseduo" typos to "pseudo"
- 44b1c8a [BrowserWindow] Remove ChromeAndroidTask#/getProfile
- 02628f9 Roll Chrome Win ARM64 PGO Profile
- efe2eb5 [a11y] Reland: Add ACTION_SET_SELECTION for all nodes with text.
- a6c3703 Roll Chrome Win64 PGO Profile
- 77189d8 Roll Chrome Android ARM64 Orderfile from WZQ24Xg8uQy2LMw5D... to sVbYbxcGMrom-4C6m...
- e0ef97d Remove expired flag `clear-instance-info-when-closed-intentionally`
- 149606f [iOS][mvt-customization] Check historical visits condition
- c32e614 Roll vulkan-deps from 0cacbd480209 to 47a77204a1e3 (2 revisions)
- 2a7ca58 Roll Perfetto from f363c3886bc2 to cf2292571b21 (1 revision)
- 708d32b [ntp-threads] Default enable threads rail and disable logo
- 96ecfea Replace jlong with int64_t (Part 2)
- 0a12969 Roll WebView ARM64 Orderfile from GgdSZM9y__xdgGkWZ... to wt1QdO1W00gZZURpU...
- 3ef5f44 Roll Chrome Mac Arm PGO Profile
- 0be54ea [Gardener] Mark flaky test on Windows
- c4a5c91 webview: handle OverlappingFileLockException.
- 927014d Roll Chrome Linux PGO Profile
- 3a5aeb2 Remove field trial params for APC from GlicZeroStateSUggestionsDogfood
- c8bfa30 [iOS] Extend default-browser-off-cycle-promo about flag
- 9efc3bc Fix content_unittests build error in web_ui_data_source_unittest.cc.
- 272bb67 Assume rustc is nightly if building Chromium
- 5cd3982 [Vertical Tabs] TopContainer Alignment with Toolbar.
- a71b1df Update `TestExpectations` with bugs filed for crrev.com/c/7494153
- 14009ba Revert "[Signin][Android] NTP Seamless Signin Full Flow with Snackbar Test"
- e6a43fb Make sure the async check tracker is alive before transferring.
- 8e2c18e Add a on_ready callback to TranslateKitLanguagePackComponentInstallerPolicy
- 0f6d731 [Reading mode] Pull adjusted offsets logic into utility
- c7cb39a android: Fix NPE in isMultiInstanceApi31Enabled
- bf3a4b3 [PWA] Deflake integration tests by waiting for web app launch
- 501dcb1 [iOS][PRDBD] Moves Quick Delete strings from /chrome/app to /components
- 3f27f58 Correctly populate `outcome` in PageDiscarder::DiscardPageNode
- f682b0e [Vertical tabs] Update group editor bubble anchoring and triggering
- 9bd845b Revert "[SidePanel] Fix side panel scroll reset during bookmark modifications"
- 49cbf1a Clean up some unused structured metrics code.
- 4f05697 Roll BoringSSL from 173bea7b53b1 to fab5bd43e78a (1 revision)
- 6eb2bf7 Tie cached flag's defaultValueInTests with isOfficialBuild
- f1b5ed0 [a11y] Fix cursor blink interval on Clank
- 523b169 Roll Chromium Variations from ae2rr7a9og2qpugR7... to i1ZbeN4ySB9xC6Qv7...
- 6b62321 mojo: Remove kMojoInlineMessagePayloads flag
- dbc8997 [cleanup] Remove ClearOverrideContainingBlockContentSize
- d2370d0 [Theme] Fix Theme Collections daily refresh histograms type.
- aed283b [a11y] Fix the FieldTrialTestConfig for Live Regions
- 3c5f82d Unexpire Net.NeedsHWCAP2Workaround one last time
- 45e89ee Record UMA for time passed between an attempt login and successful submission
- 8855602 android: Use ResettersForTesting for test state
- 04b6344 [Autofill] Add feature flag kAutofillFixIsAutofilled
- a84db58 Clips ripple when switching between tabs in window manager.
- e7187f8 Revert "metrics: Use string_view in variations_seed.proto"
- 756a94e [iOS] Fix Floaty Disappearing When Scrolling Past Top of Page
- 343c27c [PEPC] Override ParseAttribute instead of AttributeChanged
- bfc09e8 Set up cross-platform structure for GlobalBrowserCollection.
- c4fdb3c [iOS][CX] Add metrics for user actions in credential export screen
- c2ea589 [RWM][RecentlyClosed] Fix two Recently Closed entries added to Recent
- 6e9fa39 [Android] Convert testing/buildbot/filters/android.desktop.chrome_public_test_apk_desktop.filter to @DisableIf
- 6eb7d69 [Media Indicator] Set media state in tab strip placeholder
- 6173832 Roll Dawn from 006099b2611c to 036817cd366f (1 revision)
- 9eb25ab [IWA] Add PermissionsPolicyParser::ParseIsolatedAppPermissionsPolicy
- 0cff39a Fix RTL text alignment for TabbedAppMenuItemType.NEW_INCOGNITO
- 40445e9 extensions: Port ExtensionDeveloperModeSettings to desktop Android
- 97dd7cd Register Skills Optimization type
- 35892d8 [base] Provide specific location for WaitableEvent/ConditionVariable trace events.
- 528c265 Automated Commit: LKGM 16561.0.0-1074706 for chromeos.
- 4b9e50e Move PageContextFetcher to //components
- 9286eb8 Android downloads UI: Do not display invalid or non-standard URLs
- 4daaf91 [bedrock] Migrate app_shortcut_shelf_item_controller_browsertest.cc away from BrowserListObserver.
- 514906d [fuchsia] Disable TaskEnvironmentTest.ParallelExecutionFence on Fuchsia
- 7cb6665 [Document PiP] Add support for requesting a pinned windowing layer
- 681d6a7 metrics: Use string_view in variations_seed.proto
- e981224 Fix LeakCanary test for desktop emulator
- 1945fa1 Reland "[aim-tools-models] Add linear scan for allowed items"
- e529bb0 Remove Obsolete Glic.Modal.DeepScanAccessPoint Histogram
- fdc5ffa Roll Chrome Mac Arm PGO Profile
- e4c7992 [WaaP] Split first run from startup metrics
- 41a8915 [CodeHealth] Remove TranslateAutoSnackbars feature flag
- b2f670f Remove base::MakeClampedNum()
- 148de76 Roll Chrome Android Desktop x64 PGO Profile
- b04f9b5 Settings: Update OWNERS list
- c113e6d Replace jlong with int64_t (Part 1)
- 027b1ba [TDR] Remove TODOs linked to issue 40242947
- a614b23 Add metric for bookmarks limit exceeded on signout
- 724eef6 Roll ANGLE from 7933c0274c75 to 3a32bdf0b668 (1 revision)
- 7eae00c Android: Filter some build spam from aapt2 when using preview SDKs
- f341632 [Contextual tasks] Do not reanimate the side panel if already open
- 9d6b918 Introduce histograms for measuring XML parsing times
- d26b2b5 [7/7] Remove all occurrences of isTaskMoveAllowedOnDisplay API
- 2c031fa [AIAE] add translateable=false for merge M145
- 3dac675 Clean up the feature kUseRefreshRateRange and remove SetPreferredIntervalRange()
- e3964ee `GetStrikeDatabase` returns nullptr if web content was destroyed.
- 5be694d Show source location in chrome://policy/logs
- 4a15c58 Add COLUMN_FLAGS support to TestDocumentsProvider
- dae4c01 Import wpt@aa2301a6697949ebfb1c94f18eeaad4b59324ee7
- cb9efe8 Android: Convert ObservableSupplierImpl usages in ChromeActivity
- 946c595 Extend histograms Android.RequestDesktopSite.*
- 513587d pdf: Intersect the highlighted Rect with the plugin bounds
- b060dff Copy internal aim_eligibility_response.proto
- 7198b66 Revert "Support signin errors in the profile picker"
- ec99c03 Roll Chrome Android ARM64 Orderfile from VD1xxcy-KdGm0eVwF... to WZQ24Xg8uQy2LMw5D...
- f2051e8 android: Limit one SensitiveContentTest to PHONE_OR_TABLET
- a84b7d8 [Force Save to Cloud] Update download page string
- 9218669 WebUI: Fix violations of @stylestic/string-quotes check.
- 7cf7b7d Simplify HistogramSnapshotManager API
- 83f1cbe [Vertical Tabs] Log Tabs.TabCount by vertical/horizontal
- 65f68d7 [ntp-composebox] Define new types to support enums for model,
- e4f8f24 Blink: notify media queries on color-gamut change
- 044ee96 Roll ios_internal from da7c139ba801 to 766fc521f3a8
- f702776 Add histogram to measure when we initialize a CTA with restored state
- b2346af [CodeHealth] Clean up stale base::Feature "LauncherPlayStoreSearch"
- 3958a42 Roll WebView ARM64 Orderfile from CxyRTC766GFD2CkOl... to GgdSZM9y__xdgGkWZ...
- 222e3ba Fix nullptr deref in CreateActorTab
- 8036008 Add metrics for Image Remix context menu entry point
- 3b0721e [rust] Support for building `rust-toolchain/bin/cc_bindings_from_rs`.
- 887dfde Update CVC-only save on Bling to use wallet-branded message
- 0cde9ce [TreesInViz] Clip layer damage to the visible layer.
- af652aa [omnibox] binary launch on device tail model i18n on Android/iOS.
- 6115329 [RecentTabs] Save chrome: and about: scheme URLs
- d99621f Remove stale feature kGlicHandoffButtonHiddenClientControl
- fb1829c Replace *STRICTLY_TYPED_ARG macros with base::StrictNumeric
- 9a6d30b Reland "[aim-tools-models] Implement `updateSelectedState` in `InputStateModel`"
- 8b12436 Reduce scrim usage of INVALID_COLOR.
- 375276a Reland "[iOS] Floaty Reappears After Settings Menu Dismisses"
- fa2b94e Roll Depot Tools from 17d371610295 to fada3b27240b (1 revision)
- 37c2a87 [SidePanel] Fix side panel scroll reset during bookmark modifications
- 7bf857d Add test for exiting fullscreen on Mac with focus on omnibox
- ae0ccb6 [iOS] fix the excessive whitespace between credit cards and action buttons in SaveCardBottomSheetViewController
- ef9c054 [iOS] Dynamic colors for lottie db promo on iPad
- 193b27f Fix handing entra SSO
- 3be3c0f Replace printf with LOG() in arc_metrics_service_unittest.cc.
- 7a122f0 Roll clank/internal/apps from 824b98b75cd9 to 8900ab283961 (1 revision)
- 7102480 [BCIV] Move toolbar hairline visibility logic to another flag for tests
- 1d69364 [TabRendererData] Remove tab termination caching and callback
- f11aade Uprev ChromeScreenAI CIPD to 140.18
- 1ae6b29 Add pchodur@google.com to OWNERS of Additional Windowing Controls
- 52eaa3a Make AutocompleteInput represent session state.
- 1200d33 Add SpareRendererUseWarmupConnection to webview flags
- 256208d [Android] Change ViewUtils.waitForView() to use ViewFinder
- 3648991 [Android] Fix BlankCTAInitialStateRule.sActivity leak for LeakCanary
- 9ee9a06 Support cpp_features.proto in protobuf files.
- d9a1733 [Signin] Rename `signin::LaunchSigninHatsSurveyForProfile` symbol
- b7b3da8 [Signin] Refactor `signin::IsFeatureEnabledForSigninHatsTrigger`
- 0b8e141 fake_dmserver: allow extension-install policy fetches
- d76dd5d cryptohome: Extend metrics related to USS perf timing
- 78ab68c [iOS] Update colors for magic stack items based on customization
- d8236f6 [Settings Search] Update dynamic properties of SafetyHubFragment
- b4c6ffd [Code Health] Remove DanglingUntriaged Pointer in FormFetcherImpl, PasswordGenerationManager, PasswordSaveManagerImpl, VotesUploader, LeakDetectionDelegate, PasswordManager, PasswordFormManager
- 3337be9 Delete unused tracking protection banners
- 8d4441f [<install> Element] Always bypass permission
- 695a95c Roll Skia from 320dd956168a to 5339ee64897a (4 revisions)
- e48c823 [glic] Fix initiator origin used in Origin Gating metrics
- 246e7cd Add missing WrenchMenu.TimeToAction entries.
- 664d320 Roll Perfetto from 8f47687e0754 to f363c3886bc2 (2 revisions)
- 7365e82 [Signin][Android] NTP Seamless Signin Full Flow with Snackbar Test
- 7c06902 Roll Chrome Win32 PGO Profile
- 1d108eb [gpu] Remove EnableDrDcVulkan feature flag
- 2489ad7 Remove unnecessary nested statements in ReadAnythingAppModel
- 63f20df Enable timeline-trigger and trigger-scope
- 778bee7 Refactor ReadAnythingAppModel to separate data and distillation control
- 29304f5 [signin] Add "enable_issue_token_fetch" flag to GaiaConfig
- a4a2c71 Replace `std::map` with `absl::flat_hash_map`.
- 16f45c4 Roll compiler-rt from 981281789835 to 388792dba92f (2 revisions)
- 5761b5e Roll clank/internal/apps from 2cfb87251441 to 824b98b75cd9 (1 revision)
- 3d18d08 Avoid using INVALID_COLOR in bottom sheet sign in code.
- e95b0af Update the suggested tab chip if task changes in side panel
- b4fc339 Add FieldClassificationModelCaching to fieldtrial_testing_config
- 92ee120 [Gardener] Disable flaky test
- 933f4db Support base/functional/bind.h with static call operators
- 2f1adf9 Roll ios_internal from c9725acaba34 to da7c139ba801
- 2742ae4 Drop unnecessary ToString() in InlineItemsBuilder
- 8ebdd6a Stop checking for support of PROXY_OPTIONS
- 666e87b Remove AutofillManager::FindCachedFormsBySignature()
- 8f1eb9f Make proxy APIs getters package private
- e5daad7 Define fail-open/fail-closed via a separate argument
- aaf8685 [styleguide] Allow static operators () and []
- 13e3258 [AutofillAi - M4] Read entities instances data to display in the UI
- dbf260e Make ParseServerPredictionsFromQueryResponse take FormData objects
- 2c4fb41 Move cache-mutating logic on loading server predictions to AM
- c8c750d Roll Depot Tools from 1f27506fad60 to 17d371610295 (1 revision)
- 585e5b0 Metrics: Update DevToolsAction enum
- 99af97b Remove PerformFortuitousMemoryBarrierIfNecessary
- eff61f5 Roll DevTools Frontend from 52c709a810c9 to 5a8e2a0ef05a (4 revisions)
- 542afc1 Fix CapturedSitesPasswordManagerBrowserTest.Recipe/*
- 1976aad [Skills] Add skeleton for Skill Saved toast
- 62c14c6 add encoding normalize for ClipboardWin::ReadRTF
- 1febacb Roll V8 from fda5f9a7858e to f7db47c9eda6 (2 revisions)
- f61336d Roll BoringSSL from 693ed5b30497 to 173bea7b53b1 (1 revision)
- 30738e5 Roll WebView ARM64 Orderfile from a7XbQrAzkc8qQ5bTA... to CxyRTC766GFD2CkOl...
- 0ef83a0 Roll Chrome Mac Arm PGO Profile
- fc4ea70 [iOS] Clean up contextual panel flag
- ee5d5b0 Revert "[iOS][AIM] Prefactor mode indicator button creation"
- d9dc54a Fix tracking for maximize state changes from the compositor
- ef58dfe [SyncTests] Modernize SingleClientCommonSyncTest
- 19841ad Roll Chrome Win64 PGO Profile
- 9e8c46f [ios] Do not constrain ComposeInputPlate to bottom Keyboard LayoutGuide
- b669eb0 Update expiration date for Signin.SyncButtons.Shown
- ebf5e0f Revert "[iOS][AIM] Add flag for additional tools in the input plate"
- 9202de0 Set display: block on view transition content elements.
- 6fcade9 Replace sync with signin error message
- d908e1d [realbox] Fix input positioning in compact realbox.
- 38cf40b Roll src-internal from 9849e30dad41 to 7fdce21b897d (1 revision)
- 728a3ad Revert "Roll ios_internal from c9725acaba34 to da7c139ba801"
- f179ad3 [iOS] Create icb/passwords/bottom_sheet
- 52e96c0 Remove Fast Checkout
- 4a9be49 Roll Chrome Android ARM64 Orderfile from XxqTkqU0wvy6gQEk3... to VD1xxcy-KdGm0eVwF...
- a575653 Implement GetUpdaterStates on PageHandler
- f6fb0bd Reduce duplicate tab registrations
- dee18a1 Revert "Enable WebGPUUseSpirv14 by default"
- 7910de3 [PWA/App Migration] Use WebAppFilter for apps surfaced to end users
- d8ed25b Remove use of SkDeserialProcs::fTypefaceProc
- d43dac5 Extend PasswordManager PasswordNotes histograms
- 974d387 [scroll-animations] Last timeline name in tree order wins
- 2cae1ec Revert "[iOS] Floaty Reappears After Settings Menu Dismisses"
- dfa23a4 [iOS] Remove CHECK in update address sheet
- f2722c8 Updating trunk VERSION from 7646.0 to 7647.0
- b0ded52 Roll Perfetto from e4a6b74d4b8d to 8f47687e0754 (3 revisions)
- bb97a06 Roll BoringSSL from a1e646cac361 to 693ed5b30497 (1 revision)
- 5cee7f7 [iOS] Add x-plat promos to PushNotificationClientManager::GetClients()
- 7210221 [iOS] Add PageActionMenuEntryPointCommands to ToolbarCoordinator
- 2aa1d13 [iOS] Remove the need for exit-time destructors in a few tests
- ae5199b [iOS] Remove legacy common API
- c29ed46 Use mojom-shared in ai page content agent unittest
- 3a75699 [iOS Blink] Disable PageSpecificContentSettingsTestWithApproximateLocation.GeolocationWithOptions
- 0bf1745 [Passwords] Extend PasswordManagementBubble.UserAction
- 89730e1 Patch upstream XML crate to include performance improvements
- 8f8c6de Roll Media App from OxQBu7qN8vmZWdykV... to 8RNBq7cffPzN87a8z...
- 3bcea2e [ios][blink] Clear WebState's UserData at the end of the destructor
- 78e5eef [iOS]Check that DefaultBrowserScreenCoordinator is stopped
- 45157dc Extend Sync.SearchEngine.RemoteSearchEngineIsUntouchedAutogenerated*
- cfbe145 Extend cookie histogram expiry dates through H1
- 99fcdf1 [iOS][AIM] Add flag for additional tools in the input plate
- eb3644c Remove file that is not used in the build.
- f18ce30 [Vertical Tabs] Correct caption button height in Win+VTS
- fed051d [Vertical Tabs] Force re-layout when toolbar height changes
- 0ae2a31 [Vertical Tabs] Move tabstrip top corner to floating
- c23308a Roll src-internal from bcd3990718eb to 9849e30dad41 (1 revision)
- a22db5c [Signin][Android] Move sign-in promo related NTP tests into new test
- ba95ef3 [ios] Improve SceneController unittests
- 5430206 Roll androidx from ZSlexod8dSYiSOF9_... to dj_RhoCy27XGnjTlo...
- 74bf353 Roll Chrome Mac PGO Profile
- ec6c246 Roll Help App from Njnw-cUDgKszP66im... to iQRwdDb6O-kFRa_8V...
- 98c510c [glic] Silence logspam from uninteresting mock calls
- 66eec5f Roll V8 from 35ad3a9707b6 to fda5f9a7858e (5 revisions)
- 98136ca kiosk: Remove all apps with the given ID in RemoveConsumerKioskChromeAppForTesting
- 3e753bb ios: Extend Tab.RendererTermination.AliveRenderersCount expiry
- 6286b3e [iOS][PRDBD] Creates the QuickDeleteOtherDataCoordinator
- 44d8797 Roll Skia from 69780e390b46 to 320dd956168a (1 revision)
- 99207a5 [Connection-Allowlist] Add test for link rel prefetch
- 43d7ea2 Roll ios_internal from c9725acaba34 to da7c139ba801
- 10db27e Fix typo in extension telemetry event which doesn't allow off-store extension events to be reported
- b3c520b [iOS][AIM] Prefactor mode indicator button creation
- 1dedb1e [scroll-animations] Keep list of ScrollTimelines in DeferredTimeline
- 04dd661 Roll vulkan-deps from ec2d660b6a45 to 0cacbd480209 (1 revision)
- 7924edb Roll Chrome Mac Arm PGO Profile
- ba3afe1 Remove runtime flag to control permission for external XSL in SVG
- 31d5d42 [AutofillAi - M4] Implement get/update entity on the c++ side
- fe17889 [iOS] Async started cleanup - II
- e04e1ce Roll WebRTC from 643317b44e63 to 65d3d4926c8a (3 revisions)
- 729da50 Roll WebView ARM Orderfile from 4IweHeLxJPXYbpj6a... to oEEf9hwWG2sCjwm7b...
- c2f221f [Android][Signin] Migrate Bookmarks promo to the new sign-in API
- 5fceb09 Roll Perfetto from 471b491d2aff to e4a6b74d4b8d (4 revisions)
- 5f7332f Avoid unnecessary copies in form_fetch_batcher.mm
- aec7532 Roll ANGLE from 5744790b4933 to 7933c0274c75 (1 revision)
- 6f8ba2e Roll DevTools Frontend from e4b13ae3b266 to 52c709a810c9 (4 revisions)
- efe5024 Add metrics for Image Remix IPH
- f674a98 Roll Chromium-BiDi
- 66b655c [iOS] Extend home customization histograms
- b15ac3e Revert "Avoid generating empty GSUs for consumed touch moves"
- 3309e79 Split SessionLengthLimiter.
- d5eb341 Roll ios_internal from 924190168358 to c9725acaba34
- 50e4785 [iOS] Update Last Shown Gemini View State
- 39c5628 legion: Create Connection iface and basic impl
- ef1cad1 [KP] Automatic update from google3
- 958cf47 Support signin errors in the profile picker
- 97205a0 Add retry logic for waiting for the window handles on ChromeOS.
- 3543793 [ios] Make sure startupHadExternalIntent is updated in the same place
- 3db9571 [CT] Automatic update from google3
- 0f09ae7 Webview web performance apis: Add kill switch
- 7b6523b Roll DevTools Frontend from 16d5751647c3 to e4b13ae3b266 (2 revisions)
- 47017f6 Updating XTBs based on .GRDs from branch main
- 725551a Fix CSSValue::Equals pointer comparisons
- c9a0ae8 Revert "[dbsc] Use application tag for unexportable key lookup"
- 31de924 Implement parsing support for CSS contrast-color()
- 310cc05 [Autofill AI - M4] Add Entity Metadata class for Java <-> C++ conversion
- c7fd7a6 Extend WebView navigation related histograms.
- 646cb81 Clean up features for KTN, redress number and national id
- 73318f5 Delete MigrateDefaultProfileStorePref()
- 9081c56 [iOS] Reorder instance variable in TestingApplicationContext
- 5f63db7 Roll Chrome Android Desktop x64 PGO Profile
- e4c421a Make DownloadRequestLimiter APIs const-correct
- 97b35f3 Rename Supervised User settings service and data type to family link.
- d5e96e8 Roll Chrome Android ARM32 PGO Profile
- 4e6c428 Roll clank/internal/apps from 82585e41a545 to 2cfb87251441 (1 revision)
- 4a92f46 Roll ios_internal from 08666f72f19e to 924190168358
- 5c884fc Roll Perfetto from a81863570a23 to 471b491d2aff (4 revisions)
- 56014f3 [Sync] Fix AwaitQuiescence E2E check for parameterized tests
- 86f0a24 Roll vulkan-deps from 842d54cf4892 to ec2d660b6a45 (1 revision)
- 2af6146 [Autofill] Clean up AutofillAiVoteForFormatStringsForAffixes
- 6df2666 Roll Chrome Mac Arm PGO Profile
- a10a9bf webrtc-internals: fix rendering of qualityLimitationDuration
- ee70d40 [Permissions] Remove enabled by default feature flag
- 6a1d88e [iOS]Move executeOnObservers to correct pragma
- f35af08 [Base]Small clean-up
- cbc437b [iOS][AIM] Avoid conflicting constraints in AIM button
- 5452101 [iOS] Update Signin.SSOAuth.GetIdentities.ErrorCode expiration date
- 7f786d9 Keep renderer alive when last WebView is destroyed
- 6541c7b Remove DCHECK in UserLevelMemoryPressureSignalGenerator::Instance
- ae62ae2 Roll ANGLE from 64572c50063d to 5744790b4933 (1 revision)
- c637088 LPP: Disable lockscreen reauth for users without online password
- 3198767 [heap] Clean up V8DelayMemoryReducer
- 4fad75b Roll Chrome Win32 PGO Profile
- 8c3fc24 Roll Dawn from d6596a99bb7a to 006099b2611c (12 revisions)
- 131e910 Revert "Reland "Add LockTopControlsV2 to field trial testing config""
- 7b30c90 [google_apis] Refactor GaiaConfig test overrides
- d10011d Roll DevTools Frontend from 5bed7f46f6c2 to 16d5751647c3 (1 revision)
- e3a0467 Roll V8 from eb872def0938 to 35ad3a9707b6 (2 revisions)
- 8faaa0e Roll Chrome Win64 PGO Profile
- eb61f4a Roll R8 from ANp1-W2IZaMat2k3g... to 5UvXlaJ_QJr1To4A-...
- 68ce69f Roll WebRTC from babd03704b79 to 643317b44e63 (2 revisions)
- f6b5274 [ios] Fix clashing constraints for button in Composebox
- 3e1a023 [ios] Use top input plate theme for ipad
- a20bdd8 [bedrock] Migrate dlp_content_manager away from BrowserListObserver
- 9c79861 [iOS] Add switch to force distillation timeout in Reading Mode EG tests.
- 61c2039 Roll llvm-libc from 2862259f0f6e to 3f8b546bced1 (1 revision)
- 35c0625 Roll Dawn from 94447d0354af to d6596a99bb7a (20 revisions)
- 55b0e80 Roll V8 from 15c7edd0b049 to eb872def0938 (2 revisions)
- e79f3c9 Roll WebView ARM64 Orderfile from RhmnNWOuHFFsy-1Bx... to a7XbQrAzkc8qQ5bTA...
- c81ea25 Roll Projector App from sQ0POtn-n6eM-_Ebx... to ryYTwxzDr2aLkJHGU...
- 6adacbf [dbsc] Use application tag for unexportable key lookup
- 241ee60 Roll Chrome Android ARM64 Orderfile from arB-ngLubFQqGcBUM... to XxqTkqU0wvy6gQEk3...
- 29c1377 Roll DevTools Frontend from be6476e07527 to 5bed7f46f6c2 (3 revisions)
- 832e11e Autofill Event - change content flag to runtime enabled
- c7f84bf Extend shouldInterceptRequest timing histogram
- 7a30499 Extend WebView method cache histograms
- 7cc1ede Roll BoringSSL from 4ac734057e5b to a1e646cac361 (1 revision)
- 5e89bf2 [PWA] Use WebAppFilter for OS integration in tests
- 3e569a3 Roll src-internal from d4bd021fa825 to bcd3990718eb (1 revision)
- 3ff917f Mark localAddress and localPort as required in TCPServerSocketOpenInfo.
- 0f65710 Roll Chrome Mac Arm PGO Profile
- 7ced641 [iOS] Update "Close All" string
- c5a886d [iOS] Add group color tones to GroupGridCell surfaces.
- a6ec6ea Update meet_effects hash in DEPS file.
- 1cad95f [iOS] Constraint toolbar to keyboard when find navigator visible
- 617da0f Roll Boca Receiver App from vaPJXpQk45gu_YupK... to UqnxdBLMUKLXuZi9h...
- c3da443 Close settings when opening bookmark limit help on iOS
- f5e9d70 Record loyalty card usage upon selecting
- 464f864 device_name: Deprecate DeviceHostnameUserConfigurable policy
- 0bd08e9 [Sync] Cleanup mojom directory
- eab5d95 [iOS]Remove some code duplication
- 63abbcf Roll DevTools Frontend from 6b5e43e6fd27 to be6476e07527 (1 revision)
- 398cdf6 Roll ios_internal from 3e1c9f97d689 to 08666f72f19e
- ac9c964 Roll WebView ARM64 Orderfile from jJqhePucvScpNWH9h... to RhmnNWOuHFFsy-1Bx...
- 9b62981 Roll Chrome Android ARM64 Orderfile from 7jKir26CJkIfd3E3a... to arB-ngLubFQqGcBUM...
- ef1e523 [Uno-d clean-up]: Remove SigninManager
- a4da4de [Uno-d clean-up]: Remove failing tests due to SigninManager removal
- 60e7c87 Roll BoringSSL from 16be6c771a4d to 4ac734057e5b (1 revision)
- 26212fa Roll clank/internal/apps from a59e233bd6c8 to 82585e41a545 (1 revision)
- 3f4ac7d Remove triggering CHECK from RevokedPermissionService
- b7b5999 Delay expiry of frequently used histograms.
- cee89f3 WTF: Add starts_with() and substr() to blink::StringView
- 216ae46 [Okta SSO] Extract the test URLSession session
- d91c323 Clean up kAutofillAiIgnoreWhetherUserHasAddressOrPaymentsDataForIph
- 95e4378 Roll Chrome Mac PGO Profile
- f6b1734 Automated Commit: LKGM 16560.0.0-1074696 for chromeos.
- 9309772 Remove unused debug_message parameter in SatisfiesSyncingRequirements
- cbe88ac Roll Chrome Android ARM32 Orderfile from K3qx-HruNsF8fNdAx... to 505tIu2Jit0ZzPBHA...
- c42466c Update expiry of HostCache related metrics
- d9377f2 Roll V8 from 32073fd3b63a to 15c7edd0b049 (3 revisions)
- 1e1acd0 Roll ANGLE from 504e18291936 to 64572c50063d (1 revision)
- f0e4493 Remove experimental color-contrast() implementation
- 0c325ae [Viz] Update GpuMemoryBuffer refs in frame_sink_video_capturer_impl
- 97c330a [Android] Migrate ConditionalProvider to ObservableSupplier
- 4aa3e91 Roll vulkan-deps from 0a57d907cc4f to 842d54cf4892 (1 revision)
- c076570 Roll WebView ARM64 Orderfile from -0hjiC8y3dPriN6Py... to jJqhePucvScpNWH9h...
- 4c036d7 [Frameworks roll] Roll to 858442002 piper revision
- bee1f38 [OTP] Extend apply-clientside-model-predictions-for-otps and apply-clientside-model-predictions-for-password-types flags to M149.
- c824743 Roll Chrome Android ARM64 Orderfile from RW1I_W9BjW-FrrEVk... to 7jKir26CJkIfd3E3a...
- fee36a0 Delay expiry of histograms causing alerts.
- 98affbb Roll Chrome Mac Arm PGO Profile
- 334fb03 Roll WebView ARM Orderfile from -v9ycSMw5hq-x1l9v... to 4IweHeLxJPXYbpj6a...
- 9d62402 Roll Chrome Linux PGO Profile
- 889c6a9 Roll DevTools Frontend from d69ce5551ea4 to 6b5e43e6fd27 (1 revision)
- 2e4022c Roll androidx from fK8ZtZr89ZTr8dEyt... to ZSlexod8dSYiSOF9_...
- 4bca5a8 Cleanup expired password manual fallback about://flag entry
- 8372228 Roll Skia from 0bc1b7d19c43 to 69780e390b46 (1 revision)
- 216bc9f Add option to strip extra headers on 3P redirect.
- 9a41144 Rename `IsAccountStorageEnabled()` to `IsAccountStorageActive()`
- a4c0145 Enable WebGPUUseSpirv14 by default
- 1e41c70 [gardener] Disable ConditionalFocusInteractiveUiTest.FocusBeforeCapture on Linux MSan
- 5d31fc6 Migrate sensitive policies with manually added notices
- 3303fb5 [Blink] Use local recorder in CRP::ClearAtCreation()
- e67e60d [Blink] Remove setting of ivars in CRP::ClearAtCreation()
- ecd080d [Blink] Rename CanvasResourceProvider::Clear() to ClearAtCreation()
- 2569030 [Blink] Remove CRP::ReleaseLockedImages() call in CRP::Clear()
- 9f02793 [Blink] Remove ScopedRasterTimer from CanvasResourceProvider::Clear()
- dd64a54 Roll Chrome Win ARM64 PGO Profile
- a852568 [//media] Rename renderable_gpu_memory_buffer_video_frame_pool*
- 3e3e9ea Roll Chrome Win64 PGO Profile
- 75b27b6 Extend expiration date of SubresourceWebBundles.* histograms
- 79dfcf7 Roll Chrome Android ARM64 Orderfile from _Pcu7a301RSvJ93Ss... to RW1I_W9BjW-FrrEVk...
- 1fae1bd [bedrock] Migrate BrowserList::CloseAllBrowserWithProfile() under chromeos folder
- 3f9b3d1 fix LoginBaseBubbleViewTest dangling pointers
- c3c72fd Roll Chrome Win32 PGO Profile
- ed3e14a Roll WebView ARM64 Orderfile from csc09r7sFQUH4P2fI... to -0hjiC8y3dPriN6Py...
- a122baa spellcheck: supply full spelling marker info, incld. marker type
- 336154c Roll Skia from b1f05f96b5d2 to 0bc1b7d19c43 (2 revisions)
- f33444b Move WebAuthenticationImmediateGet to experimental
- 9e353c0 fix SplitViewDragIndicatorsTest dangling pointer
- 45052f0 fix HoldingSpaceTrayChildBubbbleTestBase dangling pointer
- a2a1f43 fix AudioEffectsControllerTest dangling pointer
- 8ee7658 fix VpnDetailedViewTest dangling pointer
- 0b978cb fix DisplayAlignmentControllerTest dangling pointer
- 4f8f1ec Roll Chrome Android Desktop x64 PGO Profile
- 2fa0bae fix PrivacyScreenControllerTest dangling pointer
- c55be11 fix NetworkTrayViewTest dangling pointer
- bdf5715 Roll Chromium Variations from 8IEKPn4qI-Mr66hR7... to ae2rr7a9og2qpugR7...
- 4e055f0 Webium Product: recover the crashed renderer process
- f24aaa7 Roll Chrome Android ARM32 PGO Profile
- 294ebb2 Roll Chrome Mac Arm PGO Profile
- 1a80d5b Remove debug flag from AndroidSpareRendererCreation_V3 field trial
- 12598a8 Fill load timing info for webui
- 8c7ee35 Roll V8 from 68bac521f897 to 32073fd3b63a (2 revisions)
- 159a439 Remove unused parameters in SatisfiesMiscellaneousRequirements
- 0b1fa34 Webium product: fix NetworkRequestMetricsBrowserTest
- 16d8d53 Webium product: check web UI nav criteria after setting commit_params
- 4640ec9 Roll DevTools Frontend from ed4faf9f63f4 to d69ce5551ea4 (1 revision)
- 94cfb8a Reland "Offload synthetic response cloning to background thread"
- 16ed4d9 FitText: Update the last component of `text-fit` property
- 358fa4f Roll Skia from fb667f465c8b to b1f05f96b5d2 (1 revision)
- fde4aea Roll Chrome Android ARM64 Orderfile from _qv8v5zzESdEUDFRr... to _Pcu7a301RSvJ93Ss...
- 3dd4ec9 Roll WebView ARM64 Orderfile from mTy3r41xDbezXvdQv... to csc09r7sFQUH4P2fI...
- 2d7122f Roll DevTools Frontend from 175a238f98d7 to ed4faf9f63f4 (1 revision)
- 8f57e78 [iOS] Add field trial testing config for Gemini Refactor FRE
- 30a5552 Roll ChromeOS Bigcore AFDO profile from 145-7606.0-1768189518-benchmark-146.0.7639.0_pre1570614-r1 to 146-7618.0-1768797987-benchmark-146.0.7639.0_pre1570614-r1
- b66e567 Roll clank/internal/apps from 1bfc69869468 to a59e233bd6c8 (1 revision)
- 3da8eda [gardener] Disable failing test in contextual_tasks_ui_service_unittest on Linux ASan
- 6e23f50 Make no_vary_search_helper.h PrefetchKey-only
- 18898e0 Roll Chrome Mac Arm PGO Profile
- bf10712 Revamp DVLOGs for prefetch
- 5609523 Roll ChromeOS Atom AFDO profile from 145-7618.0-1768192297-benchmark-146.0.7639.0_pre1570614-r1 to 146-7632.6-1768793377-benchmark-146.0.7639.0_pre1570614-r1
- aa79b83 Spanify NextBreakablePosition()
- 2f0dbf3 Replace `std::unordered_set` with `absl::flat_hash_set`.
- d177853 Add a fieldtrial testing entry for MaintainConnections.
- 05f080b PA: Abort when EarlyMallocZoneRegistration is called twice
- e0a2aab Use span-based file API in process_mitigations_unittest.cc
- 6a32f4f Automated Commit: LKGM 16560.0.0-1074691 for chromeos.
- bf0836b Updating trunk VERSION from 7645.0 to 7646.0
- ac064a2 Add ReportUkm to ProductionSupportedFlagList
- 18d3528 Remove Chrome Custom Tab for ARC++.
- d3897b4 PA: Use system allocator in ASan even when kNoHooks.
- 358c683 [Cleanup] Remove old feature flag from web test browser.
- 86f52cd Roll WebView ARM64 Orderfile from FHK-VoFBRlmC8TMXH... to mTy3r41xDbezXvdQv...
- fb4baa3 Roll Chrome Android ARM64 Orderfile from K_7VibOHlIcYEKv_v... to _qv8v5zzESdEUDFRr...
- 80294c6 Roll Chrome Mac PGO Profile
- fa52b7c url: Deprecate CanonOutputT::data()
- f26682b [garderner] Disable flaky test in InfoBarContainerStandardTest on Win and Mac
- 8ca45bf Prefetch: Remove test param of prefetch key
- 8a53990 FitText: Merge two properties into one
- 1434685 Roll Chrome Win64 PGO Profile
- 17a77ea Roll Chrome Mac Arm PGO Profile
- ef0b60f Roll Chrome Win ARM64 PGO Profile
- ebce0db Roll Perfetto from 26fc4e948c98 to a81863570a23 (1 revision)
- c2a28d6 [Media capture] add missing histogram enum for kUserMediaScreenCapturing
- ca57167 Roll Chrome Win32 PGO Profile
- 79ab674 Roll Chrome Android ARM64 Orderfile from LKTdUUWoEFf2R-uGg... to K_7VibOHlIcYEKv_v...
- 5766f20 Roll WebView ARM64 Orderfile from zVqf0jBfF3pDji0mK... to FHK-VoFBRlmC8TMXH...
- 8273f28 Roll Skia from 6804c35f1470 to fb667f465c8b (1 revision)
- fed563f Roll Chrome Android ARM32 PGO Profile
- 70b2cc5 Roll ANGLE from 55c38e9f9ba3 to 504e18291936 (1 revision)
- abb2e01 Roll Chrome Android Desktop x64 PGO Profile
- e14c5ee Roll clank/internal/apps from db89ab569a7e to 1bfc69869468 (1 revision)
- b88557b Fix inverted horizontal trackpad scrolling on Android
- b83fd63 [TreesInViz] Align GetHasDamageData() in renderer and viz.
- bcaab4d [Media capture] fix origin tab id passed to create notification
- 65678f9 Roll Chrome Mac Arm PGO Profile
- e1437b8 Revert "Add sequence checking to structured metrics' proto manipulation."
- 5b01a50 Roll Chrome Android ARM64 Orderfile from W3VdoRJm3d1PElU6L... to LKTdUUWoEFf2R-uGg...
- ef44df2 Roll WebView ARM64 Orderfile from Of72CndrLNSIVhPIc... to zVqf0jBfF3pDji0mK...
- b774243 [iOS] Fix Floaty Not Showing Sometimes On Scrolling Up
- 29fa56a Remove mahi flag
- bfee2f8 [SetupList] Refactor: Generalize EducationalTipModuleTwoCellBuilder