Chromium Digest: 2025-12-03
Overview
This digest covers 596 commits on the main branch, with 428 deemed relevant to developers. Changes span from December 3rd, 2025, starting with commit
(6c7ffdd) and ending with (d46e733). The day saw numerous breaking changes to core APIs in Media, WebAuthn, and Networking, requiring code updates for many embedders. Notable new features include percentage support for CSS spacing properties and improved frame timing on Wayland with VRR.Command Line & Configuration
-
⚠️ BREAKING
BREAKING: Support for the legacy headless mode via
--headless=oldhas been completely removed. Scripts or applications relying on this argument will now launch the new headless mode instead, which is a significant behavioral change. Theheadless::IsOldHeadlessMode()utility function has also been deleted. (b18a8a9) -
The enterprise policy
UserAgentReduction, which was deprecated in M140, has been removed. Systems relying on this policy to control the User-Agent string will be impacted as the control is no longer available. (64f74a0)
Identity, WebAuthn & Security
-
⚠️ BREAKING
BREAKING: The public
PasskeyModelinterface has been changed. The pure virtual methodGetUnShadowedPasskeys()was removed, and new unifiedGetPasskeysandGetPasskeyfunctions were added. Embedders implementing this interface must remove their implementation of the deleted method to avoid build failures. (c1498b4) (a3f9ac7) (bb19ec2) -
⚠️ BREAKING
BREAKING: Public FIDO/WebAuthn headers have been moved from
device/fido/to a newdevice/fido/public/directory, and the old forwarding headers were removed. Embedders must update their include paths to prevent build failures. (0615b88) -
⚠️ BREAKING
BREAKING: The public field
AccountInfo::hosted_domainhas been made private. Embedders must now use theGetHostedDomain()accessor, which returns anstd::optionalinstead of using a sentinel value. (265e995) -
⚠️ BREAKING
BREAKING: The
should_trigger_reportingparameter has been removed from the public methodSafeBrowsingBlockingPageFactory::CreateSafeBrowsingPageand theSafeBrowsingBlockingPageconstructor. This signature change will break embedders who implement this factory or construct these pages directly. (2757ee1) - A garbage collection mechanism, gated by a feature flag, was added for unexportable keys in the Device-Bound Session Credentials (DBSC) service. (3e65d18)
Media, Graphics & WebGPU
-
⚠️ BREAKING
BREAKING: A major refactoring of the
media::VideoFrameAPI has occurred.VideoFrame::ScopedMappingis no longer a virtual class,STORAGE_GPU_MEMORY_BUFFERwas renamed toSTORAGE_MAPPABLE_SHARED_IMAGE,MapGMBOrSharedImage()was renamed toMapSharedImage(), and theLegacyGpuMemoryBufferForVideoclass was removed. These changes will cause build failures for embedders using these APIs. (715fc38) (42fcda8) (db2f79e) (8ca93f6) -
⚠️ BREAKING
BREAKING: The public HLS media API has been refactored.
VariantStream::GetAudioRenditionGroup()now returns aRenditionGroup::Viewobject instead of ascoped_refptr<RenditionGroup>, breaking code that relies on the previous return type. (b6c4dc4) -
⚠️ BREAKING
BREAKING: The API for providing a caching interface to
DawnContextProvider(WebGPU) has changed. TheDawnCachingInterfaceis being phased out in favor of passingGpuPersistentCachedirectly, affecting embedders integrating with Dawn. (4cc3088) -
⚠️ BREAKING
BREAKING: The
kPlaceholderenum value has been removed from the public mojom interfacemedia.mojom.MediaStreamRequestResult. This is a wire-format breaking change that will impact any client using this mojom interface. (b2c99cd) -
On Wayland, Chromium now uses
wp_presentationv2, which improves smoothness and frame timing when Variable Refresh Rate (VRR) is enabled. (9fc41d8) - The elastic overscroll effect has been extended to support raster-inducing scrollers, allowing the effect to be rendered on the compositor thread without a main-thread roundtrip. (3e8deb5)
Networking
-
⚠️ BREAKING
BREAKING: The default User-Agent string for the Cronet networking library on Android has been changed to start with
"AndroidHttpClient". This is a major behavioral change that can break applications and websites that rely on the previous User-Agent string. An opt-out via a manifest flag is provided. (61057dd) -
Work continues on transparent disk cache encryption. An abstraction layer (
disk_cache::CacheFile) has been introduced, and theOSCryptCacheEncryptionDelegateis now plumbed from the browser process to the network service's disk cache. (cd57155) (f7ba4f3) - A bug causing HTTP 425 "Too Early" responses to be incorrectly retried for all idempotent requests has been fixed. The retry logic now correctly triggers only when TLS early data was actually used. (1a07b4e)
Web Platform & Blink
-
The CSS properties
letter-spacingandword-spacingnow support percentage values, shipping this feature to stable. (8405f8d) -
Basic CSSOM support for the
random()function was implemented, introducingCSSMathRandomto the API surface. (e7da3cd) -
The
focusgroupnavigation logic was updated to follow visual order as influenced by reading direction, improving accessibility and keyboard navigation. (b43c1e0) -
The Find-in-Page feature now correctly handles line feed (
\n) characters, improving multi-line text searches. (80e7c55) - IndexedDB has been improved to reuse bucket sequences across profile restarts, which helps prevent slow shutdowns. (11cb956)
Android
-
A new method,
onLargestContentfulPaint, was added to theAwNavigationListenerinterface for Android WebView to expose web performance metrics to embedders. (5339dca) - Accessibility focus synchronization is now enabled by default, improving the experience for screen reader users. (ba2683b)
-
A base class
PaneBasewas introduced to reduce code duplication across various Hub Pane implementations. (aa9b335)
iOS
- Support was added for sharing images represented by a file path in the iOS share extension. (a967dfa)
-
A logic issue where the "Save Password" bubble could prevent a promo from showing has been fixed by removing a window
IsActivecheck. (a5e33c5) - The internal term "security domain secret" has been renamed to "trusted vault key" across the codebase for clarity. (cbb6bcb)
UI & UX (Desktop)
- A race condition in Chrome Settings search that could cause an infinite spinner and incomplete results has been fixed. (d2926cd)
- A visual bug causing the Omnibox popup to appear at an outdated position after moving the browser window has been fixed. (c067a28)
- The context menu text for vertical tabs now updates dynamically to "Show/Close Tabs Below" to match the orientation. (7576257)
Performance & Code Health
-
A Use-After-Free crash in
base::StackSamplerwas fixed by changingStackUnwindDatato be thread-safe reference counted, ensuring it outlives any pending worker tasks. (4f629fe) - A performance issue in CSS RuleSet invalidation was fixed, improving style recalculation speed in documents with deep DOM trees. (743e0a6)
-
Several launched feature flags have been removed from the codebase, including
ZeroSuggestPrefetching,PrivacySandboxNoticeQueue, andEnableADPFSetThreads. (150a9ac) (f9eb2d3) (c808620)
All Commits (596)
- a004773 Roll Perfetto Trace Processor Win from 7d228702cf3d to 681c9d0824c7
- eb3e51a Roll PDFium from c8a09ecb09c6 to a1229deddf17 (3 revisions)
- d46e733 [Save and Fill] Extend Save and Fill feature flag
- f1fd0b1 Add FeatureList.isNativeInitialized() checks before accessing XPLAT_SYNCED_SETUP.
- a5e33c5 [x-plat promos] Remove window IsActive check for iOS promo trigger
- 4cc2d9b Simplify inspector-protocol-test.html pages used outside of content_shell
- 111e555 Roll DevTools Frontend from 50ae986473ba to a0f298323655 (1 revision)
- ddab614 Fenced frames: Extend BrowserMappedUrnUuidInIframeOrFencedFrame
- 9bc32e1 Roll Catapult from af9d38d6bd77 to eda8d2eec9f0 (1 revision)
- 637f9b5 Fix PageLoad.Clients.GoogleSearch.GWSSession.PageLoadCount typo
- 02c6350 [ntp-realbox] Trap tab focus in the NTP composebox
- 2382e5e Extend PageImageService histograms
- 92a8bfa Roll ios_internal from 594929657049 to db6a9cc3e857
- c0ba584 media: Add H264 prefix NALU builder
- a017b76 Roll ANGLE from 2f231d573555 to 2cae326549da (13 revisions)
- 69fc999 gamepad: Exclude PlayStation gamepads in WgiDataFetcherWin
- b62712c [fedcm] Intercept during redirections too
- c8d4882 Enable kUnlockDuringGpuImageOperations in fieldtrial_testing_config.json
- ad0e026 Add kUnlockDuringGpuImageOperations to WebView flags
- a15a6f0 [iOS] Add strings for the GTS Overflow Menu
- 5076c14 [contextual_tasks] Feature enabling for tab underlines
- adfa29c [glic] Expose ContextualCueing on CrOS
- c1498b4 [WebAuthn] Remove GetUnShadowedPasskeys from passkey model
- 83ea757 Emit ReadAnything lifecycle notifications from ReadAnythingController
- edb89b6 Use loadTimeData for the Contextual Tasks handshake message
- e217e5e Roll src-internal from d00b05cb081c to b5dacad80c37 (2 revisions)
- 8fff0a2 Extend expiry for auto-picture-in-picture-for-video-playback to M150
- 80dd226 Add EnableForceDownloadToCloud field trial testing config
- fce90c5 gardener: add back flaky external/wpt/css/css-content/content-none-select-1.html
- 29e8168 Reland "[GlicMI] Do warming on contents instead of instances"
- fb61e45 Roll Chrome Mac Arm PGO Profile
- c9a1bef Roll BoringSSL from bb17ebe30839 to c953dcc46f15 (1 revision)
- 235c123 Roll WebRTC from a474f376ccb9 to d4f25dba6a5b (1 revision)
- a5c9866 [AIM] Modify tab picker selected text
- b835977 Tidy includes in tab_helpers.cc
- d6cc435 [a11y] Tabpanel role on tabs-mode scroller with column scroll markers
- cf02ba2 [crd host][wayland] Make Portal work in IT2ME
- a25bd69 [iOS] Decouple Views for Magic Stack Send Tab Promo
- 7c158bc Roll glic-test-internal from 5dbeda3a1dd5 to ccecb680f2df (1 revision)
- 9ac2758 [Contextual Tasks] Switch co-browsing navigation to follow omnibox flow.
- ffd5e35 Roll Chrome Android ARM64 Orderfile from JEl7mHOiXAI_gWFxJ... to FexDKeUHtbC8Ezm0Q...
- f5c4078 Roll Chrome Win32 PGO Profile
- bfaea35 Reland "glicmi: Add metrics for first action in daisy-chained Glic panels"
- df92613 Remove special case SxS calculations from BrowserViewLayout.
- f7f398d Roll Perfetto Trace Processor Linux from 7d228702cf3d to 681c9d0824c7
- 5e5bddf Roll Open Screen from 2f501fd6f616 to 99840ea845d0 (1 revision)
- 1a07b4e Fix HTTP 425 retry to only trigger for TLS early data
- 4075020 Roll DevTools Frontend from adcfc6397404 to 50ae986473ba (2 revisions)
- 564dee9 Accessibility: Update mv3 flag expiry milestones
- fa909bf Tagged PDFs: Fix MCID association to process all marked content IDs
- 100ef2e Roll optimization-guide from 380785191a5c to fda0b362c5d9
- 8dd51d4 [iOS] Disable testFilePickerMultipleFileSelectionSuccess on device
- bcab211 [Android] Switch android-x86-rel in CQ to no fieldtrial testing config
- f8455bf [TreesInViz] Update animation tests for TreesInViz Service mode
- 7e33274 [EncapsulateAnimations] Fix flicker on URL focus
- 4fd8619 gardener: disable flaky requestStorageAccess tests
- 134662d Roll Depot Tools from 10902bc85f0f to de2b9aa7a6cd (1 revision)
- a14997c Fix the reviver launchers for test-only builders.
- 3b06e83 [Contextual Tasks] Add submit button + cancel button styling
- ff9df32 scanner: Bump histogram expiry for settings toggle
- aaaca51 Roll Skia from 81a9a0751f00 to a04a1004b08b (2 revisions)
- facb604 Update CBB autoroll for the builds refs
- cbb6bcb [iOS] Rename security domain secret to trusted vault key
- e1e988d Roll Chrome Win64 PGO Profile
- 16b2ffe Roll src-internal from 7bd856a58f6a to d00b05cb081c (1 revision)
- 9f8ffe1 Remove unused includes in policy_container_host.h
- 2e43f9c Clean up warning in xattr.c by using appropriate pointer types.
- db59f81 [BrowserControls] Create top control layer for progress bar
- 8ea097a Roll Chrome Android ARM32 Orderfile from x3CBGTTNoH_SaFVKu... to khLMz0RidiM5mjkBi...
- 39fb3a6 [Fuchsia] Disable size optimization for perf-optimized builder
- 8064c8b [Android][WebAuthn] Emit WebAuthentication.MakeCredential.Result
- 4c3bd88 [Android][WebAuthn] Emit WebAuthentication.GetAssertion.Result histogram
- 9995159 [Frameworks roll] Roll to 839850213 piper revision
- 9d7452e Adjust Loyalty Cards suggestions generation logic.
- 02542c8 [Nearby] Check for MdnsObserver bound state in WifiLAN destructor
- bc0160f Guard against a segfault when flushing the media pipeline.
- a85c2e8 [views-ax] Implement ViewAccessibility::GetNativeObject
- e72113a Suppress WebCodecs tests on ChromeOS VM
- b7cd38a Synchronize HardwareBuffer screenshots
- 77c70d6 Roll V8 from 38fe54018be8 to a978014aea47 (3 revisions)
- ae20760 Roll Chrome Mac PGO Profile
- fd26b48 Roll clank/internal/apps from aaf11624a746 to 4adb6171d3e6 (1 revision)
- 7e7d1de Manual roll android_deps from A-9pzGUkXSm8E7UPg... to 9R8fWVmsKuKcqHXSe...
- bc16d64 [Magic Recall]Pipe sensitivity score to content capture share data.
- 31ae5c3 Migrate ios-catalyt tester to arm64
- c3e52b0 [Magic Recall] Add feature flag for recording scores in Content Capture.
- f64bdc3 Roll Perfetto from 7d228702cf3d to 681c9d0824c7 (1 revision)
- 47c0eb1 Prevent updates Lens Homework page action when the tab is destroying
- 9d3ba38 [fuchsia] Replace PushMessagingServiceImpl/IsPermissionGranted with IsProtectedServiceWorker
- 4253f63 Enable downsampling of ServiceWorkerBehavior Reports
- a5f6096 Roll vulkan-deps from ed5a5aaea53c to c70401ee850b (2 revisions)
- 3b60889 Revert erroneous change in cwd in third_party/node/node.py.
- b0519c6 [ntp] Re-enable Next focus test
- ae206ca [contextual_tasks] Observe context for updating context entry point
- f62e7ea [iOS] Update Default Browser View in Magic Stack
- 7e232d4 Roll Chrome Android ARM64 Orderfile from 2Z8ZBPg8BFETni_lU... to JEl7mHOiXAI_gWFxJ...
- aee702e Roll Perfetto Trace Processor Win from 4316a9516294 to 7d228702cf3d
- 671119c [Zucchini] Fix PatchUtilsTest integer overflow.
- 8fdf2d1 [GlicMI] Make GlicSidePanelCoordinator signal close after entry is fully hidden
- c713daf [RWM][RecentlyClosed] Add RecentlyClosedWindow.java
- e3dddc3 Roll src/third_party/libvpx/source/libvpx/ 9a7674e1a..98a119c2c (3 commits)
- d5818d2 Automated Commit: LKGM 16506.0.0-1073561 for chromeos.
- aa9b335 Android: Add a base class for all Pane implementations
- 868687a Use span-based file API in LocalMediaDataSource
- 04f6f82 [realbox] Update focus outline color for searchbox and composebox.
- 3e8deb5 Extend elastic overscroll effect to support raster inducing scrollers
- 11cb956 IDB: reuse bucket sequences across profile restart
- 1ce9658 Use span-based file API in leveldatabase
- 6e095bf [CSD] Add ImageEmbeddingMatch Trigger
- 881dc4a Notify attachment button used for tab picker
- e8f848d Settings: Fix @typescript-eslint/consistent-type-exports in official build.
- 150a9ac Clean up launched flag ZeroSuggestPrefetching
- 4bc8303 Roll Crossbench from ff683693c87a to 5fb360636de7 (1 revision)
- aa937d0 [Media][Clank] Add logging for MediaSession timestamp drift debugging
- 51be42d Reland "Fix OnDeviceModelForceCpuBackend flag on devices that can run GPU model"
- daaf68a Roll Depot Tools from 115fbc83d32a to 10902bc85f0f (8 revisions)
- 4ce3a37 Roll WebRTC from 353dedc23f41 to a474f376ccb9 (4 revisions)
- 43624e9 [permissions] Add UKM for initial geolocation accuracy selection
- 87f49ac [Extensions] Convert clipboard to WebIDL
- f68a380 Cleaning up expired flags metadata
- 1089c7f [Zoom Indicator] Initialize zoom indicator with current zoom level and post accessibility event.
- ee63f8e [AIM] Move control of enabled for pdf button to mediator.
- 51ea957 Revert "Media Foundation Frame Server Mode Part 4: DX Shared Image Video Frame"
- ccee0c9 [next-ntp] Experimental design for chips
- de60e7a Add class specificity so glic.css styles override fre.css
- 961e7f0 [bedrock] Add BrowserManagerService::AddBrowserForTesting()
- 87a474a [ActorUi] Add TaskListBubble click and row count metrics
- 5651c33 Roll ChromeOS Bigcore AFDO profile from 144-7545.0-1764560377-benchmark-144.0.7558.0_pre1552116-r1 to 144-7545.0-1764560377-benchmark-145.0.7560.0_pre1552648-r2
- 1318b75 Roll Chrome Linux PGO Profile
- bebbef3 [contextual_tasks] Return context and associated tabs correctly
- 332b931 Roll Chrome Android Desktop x64 PGO Profile
- 6423eda [Persist] Remove update sequences from service and move to observer
- cd1c819 Extensions: WAR: Restore verification that the first navigation succeeds
- a96d848 [TDR] Repoint TODOs linked to issue 300419189.
- 8f2cc3d updater: implement IProcessLauncher::LaunchCmdLine
- 0c728c8 Do IWYU for base/functional/callback_helpers.h in //media
- d074a2b [actor] Add feature param check
- 3a4a038 [Persist] Add SaveChildren method to Service and use in Observer
- efe8875 ChromeVox: Ensure pending key events get cleared when disabled
- 91f9b98 Roll Skia from 7fff773b9d26 to 81a9a0751f00 (3 revisions)
- 3050e0c [OpenScreen] [VideoStack] Housekeeping: Add comments for ffmpeg flags
- 576f174 [PSF] Fix translate infobar banner reappearing.
- cd57155 [Cache Encryption] Add CacheFile abstraction layer for transparent encryption
- d0d349c Use span-based file API in Y4mFileParser
- 4be4169 Roll Error Prone from 2NlHzICEPBy3pqjkW... to QcxY40Xfv3er_kuOu...
- 0615b88 [webauthn] Update //device/fido/public includes
- 1ea859c Roll V8 from 7990c7dfe85a to 38fe54018be8 (21 revisions)
- 76d218b [iOS] Mark more ManageSyncSettingsTestCase tests as flaky on Simulator
- 644333f Roll ChromeOS Atom AFDO profile from 144-7545.0-1764562669-benchmark-144.0.7558.0_pre1552116-r1 to 144-7545.0-1764562669-benchmark-145.0.7560.0_pre1552648-r2
- c8edcdd Revert "glicmi: Add metrics for first action in daisy-chained Glic panels"
- d728f89 Roll Arm AFDO from 144.0.7558.0_pre1552116_rc-r1-merged to 145.0.7560.0_pre1552648_rc-r2-merged
- e719117 Gardener: disable flaky FieldTrialCreatorFetchAndLaunchTimeTest.SetUpFieldTrials_ValidSafeSeed_NewBinaryUsesSeed
- a6644a6 [Sheriff] Mark WPT test expected failures:
- f985cc1 Roll Webpagereplay from 052833a44dd2 to 2bfcbbe006bc (1 revision)
- e24adee Roll libunwind from c65639bf7929 to 88fc07ed143a (1 revision)
- 87401a4 [iOS] Disable testCardChipButtonsAreAllVisible on device
- d2c67cc [partition_alloc] Increase amount of spinning in locks on ARM
- 26460bd Roll BoringSSL from 37372772f356 to bb17ebe30839 (1 revision)
- ca5eda6 Show snackbar when trying to add attachment at limit
- cdce160 Fix warnings in makeicns2
- 9ebe311 Roll Chrome Android ARM32 PGO Profile
- 7576257 [Vertical Tabs] Tab Context Menu Text
- 5e2717f [SxS] Handle missing host window in split ntp
- 70cb225 WebUI: Enable @typescript-eslint/consistent-type-exports check.
- 2b7aedd [ntp][realbox] Add contextual entrypoint IPH branded strings
- 6cb8f2e [Blob URL] Make top-level self-fetch WPT not tentative
- a765634 Roll android_deps from b9LVjZwQgZYKN3YpO... to A-9pzGUkXSm8E7UPg...
- 55ece03 [MtbCct] Disallow open-in-browser button in non-default CCT UI types
- 77c29cb Remove TODOs for base::ThreadPool::PostTaskAndReplyWithResult()
- 39217ed Roll Crossbench from 8a78038f7f4e to ff683693c87a (1 revision)
- e921814 Update docs related to storage service.
- 9376d75 Remove redundant Dawn/Mac Intel exp testing
- 9f08d92 Roll DevTools Frontend from a9ef91ff269a to adcfc6397404 (2 revisions)
- 9838296 Roll Chrome Mac Arm PGO Profile
- 696f712 LayoutObject CHECKs in UpdateChildLayoutBoxLocations machinery.
- f9eb2d3 Remove PrivacySandboxNoticeQueue feature flag
- 9fc41d8 Update to wp_presentation v2 to improve VRR experience on Wayland
- 1651d3f [LNA] disable flaky proxy test
- 8cf25dd [Settings containment] Update containment after verifying account
- f730b17 Roll Chrome Android ARM64 Orderfile from w2wXihnYr-3Y-375r... to 2Z8ZBPg8BFETni_lU...
- a166cdc Roll Dawn from fc22c105a6d3 to daa4f5790991 (3 revisions)
- 91f35db Add missed params to HeapProfilerBloomFilter testing config
- 1bfbc37 Roll Perfetto Trace Processor Linux from b1a4d9bcd1b3 to 7d228702cf3d
- c87c61a Add --enable-unsafe-webgpu to flag-never-expire-list.json
- 176e4ed Roll Catapult from ce25f492c190 to af9d38d6bd77 (1 revision)
- 33f5640 [tips] Add a LottieAnimationView for the quick delete feature tip logo
- 26a966b Switch from IwaRuntimeData::Observer to CallbackListSubscription
- a363169 [graphite] Update sample count to use enum
- 9cdd165 [Android] Compose DownloadTestHelper and CtaTestRules with RuleChain
- de93e36 Roll WebRTC from a7f0deb8e66e to 353dedc23f41 (2 revisions)
- b62a6b1 [ios][iOS] Treat Best Features as last screen when Welcome Back is enabled
- bbd0a2b Refactor policy pref names to use inline constexpr
- 26b8ad9 [crd host][KDE] Fix _terminate_kwin_wayland
- 2a5c07a Roll vulkan-deps from 0c1f91ad35b2 to ed5a5aaea53c (3 revisions)
- 194949a [A11y] Stabilize material design tests for sanitized builds.
- b170c79 [gnrt] s/does_contain_unsafe_code/contains_unsafe_code/ in test code.
- ba2683b [A11y] Enable focus synchronization on Android by default
- bc03e2d Extend declutter histograms
- 720de18 Remove unused ObserveWebContentsSidePanelController method.
- d5ff477 WebXR Layers: fix a few issues with cube layer
- 00907ae [Signin] Add meaning attribute to "Sign in to Chrome" translated strings
- 095b486 Roll Crossbench from 11e5da1e630a to 8a78038f7f4e (1 revision)
- a9fdef5 [contextual-tasks] Add deep search and create images
- 90d87a9 [Composebox] Implement aggregate metrics for existing composebox metrics
- aeebcc4 Update flag expiry for web-authentication-immediate-get
- 0a89162 Updating trunk VERSION from 7560.0 to 7561.0
- 9b9ba2a Roll Chromium Variations from V-UWt8xm3Z4yz-PtW... to ShUv8jJO5BU-IpCfp...
- f3e3d66 Extend expiry for autofill-credit-card-scanner-ios
- 12f44c8 Add uninstall button to on-device internals
- cd9573f Roll DevTools Frontend from c08938a6fb5d to a9ef91ff269a (2 revisions)
- 94a3453 [Bundled Security Settings] Fix some styling issues
- 2a5414c [iOS][AIM] Update incognito colors to match the steady state omnibox
- c2cbc9f Roll Perfetto from b1a4d9bcd1b3 to 7d228702cf3d (4 revisions)
- 54f7777 Convert to UNSAFE_TODO in partition_alloc in base_2
- d49a778 [AIM] Current tab input type is not eligible when SRP.
- 68532a2 [gardener] Disable flaky test whenLaunchFromTabSwitcher_autofocusSucceeds_tabletOrDesktopNonAuto
- 3b15a5b Use std::erase_if in components/
- 3d32f1d Add FRE animation
- cfd1227 Roll Perfetto Trace Processor Win from 1aa7f81a800c to 4316a9516294
- 2c9d227 Roll clank/internal/apps from 70b4eed79b3f to aaf11624a746 (1 revision)
- c135169 [omnibox] Remove redundant string from `omnibox_strings.grdp`.
- e39a6fd Update map lookups in synchronous_form_cache.cc
- cdfb752 Polish ManagePasswordsUIControllerTests
- 1c4f254 [actor] Resiliency in executing actions
- c6147ff glicmi: fix hairline around glic side panel
- 8921fb3 Roll BoringSSL from a69a28f40e14 to 37372772f356 (2 revisions)
- e5c31ff [AIM] Fix popup drawable tints.
- c0e582a Show contextual task button when active tab is associated to a task
- 60b643f Add EnableShouldPromotionBanner experiment to finch for enabling feature EnableShouldPromotionBanner.
- 82e795d Roll Perfetto Trace Processor Linux from 4316a9516294 to b1a4d9bcd1b3
- 7ee894e Roll Skia from 83bf8592843e to 7fff773b9d26 (1 revision)
- a53fed8 Roll Chrome Android ARM64 Orderfile from vZIHx75UxGy4y51Uu... to w2wXihnYr-3Y-375r...
- c5e4fc8 fake_dmserver: Add a --port flag
- 43d7014 fake_dmserver: port to Linux
- 7d920f7 Add map to TransformTree for drawn elastic overscroll values, and Mojo serialization
- 7629527 Roll Media App from bwxIayfNBEn39qkhO... to P0MihHUz9BroB6HmH...
- 7a67cf1 blob_generator.py: support more policy types
- 7cf49dc blob_generator.py: make it runnable locally
- 22de367 Roll WebRTC from 832e016d332b to a7f0deb8e66e (9 revisions)
- 1b17ef3 Roll optimization-guide from 104903ba2e03 to 380785191a5c
- 0828faa [Persist] Squash PendingUpdates in the UpdaterBuilder
- 87839b2 Roll Chrome Mac Arm PGO Profile
- 7cf4a41 [IOS][AIM] Add behavioral flags for contextual suggestions
- b14d847 [wptrunner] Fix WPT on iOS
- efe87e2 [iOS][AIM] Allow sending with attachments and empty text
- 50ab45c Android: Replace JavaParamRef -> JavaRef (part 7)
- 4e72cad Add more regression tests for HEv3 incorrectly reusing QUIC sessions.
- 8001161 kiosk: Remove Kiosk.ChromeProcessCount and Kiosk.DiskUsagePercentage
- eaafe14 [iOS] Add presubmit to guard usage of OmniboxText in egtests
- b18a8a9 [headless] Remove console info shown with --headless=old
- b9d3a11 [iOSFidoImportExport] Display favicons in credential export list
- 0dfaef5 Roll ios_internal from a3587cc38b9f to 594929657049
- 4520866 [gnrt] Canonicalize license paths when checking if license files exist.
- 2827fb3 Roll DevTools Frontend from 496796e5c802 to c08938a6fb5d (6 revisions)
- b403c81 Enable Identity HaTS surveys by default
- 9e6b8be Roll Fuchsia Internal Images from 30.20251125.103.1 to 30.20251203.101.1
- a4b82b7 Tentative WPTs for Cookie Store API `maxAge`
- ebabfa9 [iOS][Omnibox] Fix IPH presentation crash
- 95f5191 Enable kWebViewSurfaceControlForTV by default
- 3e0bd5a ContainerTiming: support PaintTimingMixin
- 3b2cc35 [iOS] Refactor Content Suggestions Most Visited Tiles
- 6bb2fdf Roll vulkan-deps from 8ce6f0f99528 to 0c1f91ad35b2 (1 revision)
- 1d6b65f Remove PrefService from AlternativeStateNameMapUpdater as unused.
- a4875b8 Roll Chrome Android ARM32 Orderfile from Gm4X1sH4I4pXylQCR... to x3CBGTTNoH_SaFVKu...
- 40c0445 Roll src-internal from 3f1eb89c9133 to 7bd856a58f6a (1 revision)
- 0571b66 [gardener] Disable PumaBrowserTest.GetCountryId on Linux MSan
- cf84ebb [Growth] Invert Profile Picker footer buttons' position for OpenAllProfilesButton experiment.
- b94043b Cleanup kUseHardwareBufferUsageFlagsFromVulkan kill-switch
- 2f246d1 [Contextual Tasks] Handle redirects in navigation throttle
- cb74d4e Update and re-enable layout tests after crrev.com/c/7216673
- b4d3fe2 Roll Perfetto from 4316a9516294 to b1a4d9bcd1b3 (1 revision)
- dbd0ed1 Deprecate the unused "autofill.states_data_dir" pref.
- 881f5ac Add TokenFetcher implementation for Legion.
- 04761a0 [webauthn] Declare global constants as inline
- f7ba4f3 Plumb the OSCryptCacheEncryptionDelegate from Browser to net/ layer
- 79e977e [Bundled Security Settings] Update bundle selector style.
- 2f04489 Roll CrOS system_api from 5f1ffac5e855 to 5547526a0104 (1 revision)
- 721abe0 [iOS] Add waitForWebStateVisibleURL in chrome_earl_grey
- ebb77bb Roll Help App from PBW18lzlKDBRJqM6e... to qsMvWsrmie94G0NY-...
- 389ce97 Roll Perfetto Trace Processor Linux from 1aa7f81a800c to 4316a9516294
- 40b953a Roll Chrome Android ARM64 Orderfile from ldygiRFzTqM356xOq... to vZIHx75UxGy4y51Uu...
- fbb3bdd Roll Skia from 20829e37dfb8 to 83bf8592843e (3 revisions)
- 5339dca WebView Web Performance Metrics API: Add Largest Contentful Paint
- c347558 JNI Zero: Guard enable_definition_macros with build_with_chromium
- d4e11cc [ios] PolicyUIHandler: add a null check
- fa12d83 [iOS][AIM] Scroll to top when adjusting vertical insets
- 81c5a00 Roll Amd64 AFDO from 144.0.7558.0_pre1552116_rc-r1-merged to 145.0.7560.0_pre1552648_rc-r2-merged
- 7661570 [Contextual Tasks] Allow the SRP to be shown in the WebUI
- ab5d7fe [Omnibox Next] Refactor to use handle instead of controller
- 6207e68 Remove PopulateFrameBinders 3/7
- 1168b98 Replace kSync with kSignin in c/b/metrics
- 644d3b7 Add module scheme to test binaries
- 43b79fc Fix typos in caching zss manager
- 2231c2e Roll WebGPU CTS from e7cad0143f13 to 9f1f32582e19 (1 revision)
- ba02a57 Roll clank/internal/apps from d9f107d1abf0 to 70b4eed79b3f (1 revision)
- 79fdb73 Add module scheme to performance_test_suite
- e261751 Replace kSync with kSignin in c/b/new_tab_page
- 3f8163b Android: Mention siso_failed_commands.sh in the deps suggester failure hint
- 40b8498 android: Add a junit test in build speed benchmark
- 45d81c3 Roll Chrome Mac PGO Profile
- 1b58510 Stop syncing LCs if kAutofillCreditCardEnabled is not enabled.
- c6ca035 [iOS] Refactor Content Suggestions Magic Stack
- 85a328b [iOS][AGC] Fix Ask Gemini Chip Navigation On Tap With PSF Enabled
- 0c3ecb0 Roll DevTools Frontend from 840f70170b00 to 496796e5c802 (3 revisions)
- 5cc4bd8 enums.xml: Add more `FlexInstallMethod`s
- ecf05a0 [A11y] Add Sequential Focus to fieldtrial_testing_config
- 354d6c3 Roll clank/internal/apps from 26c353c7cb79 to d9f107d1abf0 (1 revision)
- 83fee2d WebHistoryService: Use webhistory OAuth2 scope
- b0502b1 [Android][WebAuthn] Set user cancellation from Fido2Api.NOT_ALLOWED_ERR
- f7b0831 Roll Perfetto from 1aa7f81a800c to 4316a9516294 (1 revision)
- ac8e223 Clean up flag metadata for storage-access-api-follows-same-origin-policy
- 34c4375 [iOS] Fix for primary toolbar crash
- cc3ace1 Add ScopedServiceBindingBatch support to navigation
- 47fbb74 Remove Arc B570 testing
- af9e972 Fix the order of view controller containment calls
- a967dfa [iOS] Support the sharing of images represented by a file path
- 2bf2625 Roll Chrome Mac Arm PGO Profile
- 12c299c Roll WebView ARM Orderfile from 6Rx3XSRqsI4PboBxM... to LrwB3kwGrm6HjqhNn...
- 7e4a9b6 Roll V8 from e16bdc5f76a2 to 7990c7dfe85a (4 revisions)
- e72a72b Convert to UNSAFE_TODO in partition_alloc in base_1
- d4197cd auto_fix_missing_java_deps.py: Delete siso output between each build
- e7da3cd Implement basic CSSOM support for random() function
- e89f22f JNI Zero: Mark jni_zero_internal.h as an internal header in GN
- 09b84b6 Fix a nullptr dereference in the MPC.
- 484de93 [iOS] Enforce main thread execution for ReaderModeModel methods.
- 5ca9a6f Remove redundant call to EnableOverlayScrollbars() in test
- abc635b [metrics][compression_dictionary_transport] 5/n - Add IsMetadataReadyOnFirstUse.PreviouslyEvicted* Metrics
- 149d274 Implement dlp integration for GlicShareImage
- 294750a [iOS][autofill] Move getFieldName from gCrWebLegacy
- 0f562a9 Updating XTBs based on .GRDs from branch main
- 36aa1a3 Split views::PropertyEffects to separate header
- 7f7dad7 Roll vulkan-deps from f0c4e97a968d to 8ce6f0f99528 (1 revision)
- fdc08ac Fix unsafe buffer usage in media/base/frame_buffer_pool_unittest.cc
- d034b87 [KP] Automatic update from google3
- 9f181d1 [perfetto stdlib tests] Fix DEPS entry and update README.md
- 5fcc4de Split 2d.canvas.host.initial.reset.2dstate into atomic tests
- b2c99cd Remove placeholder enum value in MediaStreamRequestResult
- 94cc852 [IOS][AIM] Do not display suggestions for multi/image attachment
- d3616f4 Convert to UNSAFE_TODO in partition_alloc in posix
- 99b400a Move a11y ownership from aleventhal to lucasradaelli
- 741efa4 Refactor: Update DevToolsPolicyDialog layout and extract to a separate file
- 5628fcf Roll DevTools Frontend from 48e5b9b0e46a to 840f70170b00 (1 revision)
- c2d5c68 [CT] Automatic update from google3
- b91cbd1 Roll clank/internal/apps from 83992c5fa7bc to 26c353c7cb79 (1 revision)
- f3c657a Revert "Reland "Make test APK the default browser app if it has APP_BROWSER category""
- e9ce8c2 Parametrize FRE interception dialog browsertests
- fbe7793 Roll Chrome Android Desktop x64 PGO Profile
- 1491286 [ios] Switch EG tests to use new Minimal App UI mode
- fb61f72 Add WebAppFilter to Registrar::GetApps()
- 28ea810 Roll src-internal from 51006b5153af to 3f1eb89c9133 (1 revision)
- c400f2a [iOS][Composebox] Match border radius when loading attachments in composebox
- c1f8093 [ios] Extend Session.WebStates.* expiration date
- 9fb0470 [iOS] Add ewannpv to snackbar OWNERS
- 5d2490b Roll ios_internal from f44656035b28 to a3587cc38b9f
- d69f535 [ios] Remove indirections in BrowserViewVisibilityNotifierBrowserAgent
- 42b05ed Roll V8 from 0821d53a5e4e to e16bdc5f76a2 (4 revisions)
- 42c9641 Roll gn from 8450d601b96c to 0eb071f60070
- 9736c88 Roll Perfetto Trace Processor Win from 04f6d7957480 to 1aa7f81a800c
- 4e47af7 [PEPC] Add WPTs for <geolocation> element.
- aaa35d5 Automated Commit: LKGM 16506.0.0-1073553 for chromeos.
- 30f2176 Roll Chrome Android ARM32 PGO Profile
- 30a15fd Roll Chrome Mac Arm PGO Profile
- 96dcfad Fix crash for invalid last active tab index
- 85dc524 Roll DevTools Frontend from 06ad7bea6068 to 48e5b9b0e46a (2 revisions)
- b14ec00 Disable layout tests to land crrev.com/c/7216673
- ef31953 ios_app_bundle: Allow intents_target to work with testonly=true
- 0e8a2ae [gardener] Revert "[GlicMI] Do warming on contents instead of instances"
- ce43291 Move ResumableUploadRequest unit tests to components directory
- c693a69 [TDR] Remove TODOs linked to issue 274690042.
- 8d44e04 [iOS] Support badges in the omnibox for Reading Mode.
- 9e020ef [IWA] Add WebRequest.SecurityInfo in controlled frame
- c249ae5 Roll src-internal from 5fa4156348c4 to 51006b5153af (1 revision)
- 9c9d843 Move iwa_key_distribution_info_provider back to //chrome
- 3f4b14f Roll vulkan-deps from 29d26a280798 to f0c4e97a968d (1 revision)
- cbb8869 [iOS] Refactor TipsPromoViewController to use ButtonStackViewController
- f35d11b Roll Chrome Android ARM32 Orderfile from M8F9vV_9-6l92RO56... to Gm4X1sH4I4pXylQCR...
- 9850eac [TDR] Remove TODOs linked to issue 40758998.
- 951bf77 [Permissions] Add metrics for one-time permission decisions
- ea3f534 Roll V8 from b6b5e295e47b to 0821d53a5e4e (3 revisions)
- 8621599 [TDR] Remove TODOs linked to issue 207068874.
- 1833265 Roll Perfetto Trace Processor Linux from 04f6d7957480 to 1aa7f81a800c
- d4deb9e Roll DevTools Frontend from ff5abc56c56a to 06ad7bea6068 (6 revisions)
- 743e0a6 Fix inadvertent O(n²) in RuleSet invalidation.
- 3b81e12 Rename ImmersiveReadAnythingOverlayView to ReadAnythingImmersiveOverlayView.
- e7e3454 Roll Dawn from ea8527376cd1 to fc22c105a6d3 (8 revisions)
- ba2108f [TDR] Remove TODOs linked to issue 40668830.
- 0a402f3 [TDR] Remove TODOs linked to issue 40601211.
- d2fc0ba [OTP][PhishGuard] Allow sending visual features for OTP requests for eligible users.
- 7470bd3 [iOS] Fix share extension profile switch during chrome cold start
- f0cdd91 Roll abseil_revision b9baf19a19..6baba4dc59
- 3f20560 Move common logic from ResumableUploadRequest to ResumableUploadRequestBase (2)
- d5e029e Roll clank/internal/apps from b49448b82899 to 83992c5fa7bc (1 revision)
- 7f7019a [TDR] Remove TODOs linked to issue 40256381.
- 61057dd Reland "Add to Cronet a manifest option to present legacy User Agent string."
- 7366dd3 [TDR] Remove TODOs linked to issue 41483841.
- becc037 Wait for update complete in threads-a11y-test.js
- d647b24 Use the two-argument SubscribeNetworksChanged function
- c065a37 Reduce duplicated dependency of webrtc feature
- c6a603a [TDR] Remove TODOs linked to issue 403198750.
- 3de6897 [TDR] Remove TODOs linked to issue 41400942.
- eefd092 [TDR] Remove TODOs linked to issue 321007722.
- 6e9522b Roll Chrome Mac Arm PGO Profile
- d31573e Disable ProxiedResourcesAllowed test on Linux dbg
- 915354f [TDR] Remove TODOs linked to issue 40681858.
- c82df88 [TDR] Remove TODOs linked to issue 296440261.
- c808620 Cleanup: remove obsolete EnableADPFSetThreads
- 295fd8f [TDR] Remove TODOs linked to issue 234338704.
- 423140a HistoryDatabase: Remove an invalid DCHECK
- e9fa326 [TDR] Remove TODOs linked to issue 216696664.
- e6de07b Roll Projector App from hiHQeMjEMh2Zk8d9i... to IaSR-m1QQf1XlNVdK...
- c5b7d85 kiosk: Remove Kiosk.WebApp.InstallError histogram
- 8f12a1f [TDR] Remove TODOs linked to issue 296282541.
- 952ce66 Only check GAIA URL for mirror request header
- 6708e78 [TDR] Remove TODOs linked to issue 259352407.
- 2a47954 [TDR] Remove TODOs linked to issue 40775669.
- 3eae3bb Roll Perfetto from 04f6d7957480 to 1aa7f81a800c (1 revision)
- f2115b7 taiyaki: Extend expiry for Taiyaki chrome://flag entry
- d6c7303 [iOS] Rename CustomSpacingAfterImage property
- 60c5d23 [TDR] Remove TODOs linked to issue 409570203.
- 793dc9d [TDR] Remove TODOs linked to issue 40649940.
- 73e671e [TDR] Remove TODOs linked to issue 422767952.
- 4132845 Remove histograms for WebViewConnectToComponentProviderInBackground
- 26f41d1 SWSubresourceLoader: Add CHECK to debug multiple OnReceiveResponse calls
- f355283 [TDR] Remove TODOs linked to issue 284428237.
- fcbcacc rcaps: Extend B&R choice invalidation chrome://flag expiry
- 265e995 [signin] Stop using AccountInfo::hosted_domain
- add7ff2 CodeHealth: Clean up stale base::Feature ProjectorUpdateIndexableText
- e42ee7a Improve robustness of commerce callbacks with weak pointers
- fb683ee Roll DevTools Frontend from 29a25e1a31ae to ff5abc56c56a (4 revisions)
- eb119e8 Use MockitoRule in WebAuthn Fido2CredentialRequestRobolectricTest
- 84ced0f [dbsc] Explicitly specify underlying type for ServiceError enum.
- 8abe0b7 Roll Boca App from pTKBtqveNA8zKL-Nb... to rDSf3aIKjk1RawjHm...
- 6cf28bf iwa: Refactor CreateRandomWebApp to generate bundle IDs and correct Urls
- 3400330 [Code Health] Remove duplicated actions entry
- f651249 kiosk: remove Kiosk.AppService.* histograms
- 833118a Apply blink::StrCat() in renderer/core/p*/
- 00bd698 [Signin][Android] Expiry milestone for "fre-signin-alternative-secondary-button-text" flag extended from 145 to 147.
- e79365f Extend flag expiration milestone for Reading Mode features.
- d48c7c8 Extends lifetime of Media.Audio.RawProcessingSupportedWin UMA
- 3e65d18 [dbsc] Implement garbage collection for unexportable keys in SessionServiceImpl.
- e466723 [SyncTests] Modernize SingleClientSyncInvalidationsTest
- 90b061f glic: Re-enable a GlicActorToctouUiTest on ChromeOS
- f50efe1 [DBSC] Extend OAML flags lifetime
- fc0df8b Roll Chrome Mac PGO Profile
- 3470b21 Roll Skia from d0e5d40f90bf to 20829e37dfb8 (1 revision)
- 715fc38 [//media] Streamline VideoFrame::ScopedMapping
- a7eff6d [//media] Update comment in platform_video_frame_utils.h
- 42fcda8 [//media] Rename VideoFrame::STORAGE_GPU_MEMORY_BUFFER
- cec92a5 [//media] Update comments in video_frame.h
- db2f79e [//media] Rename MapGMBOrSharedImage() to MapSharedImage()
- 0edd9b3 [//media] Remove unreachable code in VideoFrame
- 8ca93f6 [//gpu] Remove LegacyGpuMemoryBufferForVideo
- 99014b9 Roll WebView ARM Orderfile from 7HYY5PmBFQWhMv7ru... to 6Rx3XSRqsI4PboBxM...
- d2926cd Settings: Fix race condition in search tasks
- a1e1987 base: Include utility for std::move
- 153d0be GpuPersistentCache: crash and clear the cache if it cannot be opened.
- 215d2d5 Roll Chrome Mac Arm PGO Profile
- 7105e64 Roll Chrome Linux PGO Profile
- fb2b7d8 Roll DevTools Frontend from 63ecedb1e7cb to 29a25e1a31ae (1 revision)
- a18c6df Roll Chrome Win ARM64 PGO Profile
- 6b4cdd5 [ClapperLoud] Fix the reset permissions button in PageInfo
- 0fd5c71 [iframe] Refactor the `StyleIntrinsicLength` constructor to static methods
- 2179196 shimless: Support customized serial number naming
- 4026a84 [iOS][CX] Handle imported passkeys with matching credential id
- bb19ec2 [WebAuthn] Add universal GetPasskey function in passkey model
- a3f9ac7 [WebAuthn] Add universal GetPasskeys function in passkey model
- 4e68c86 Set up GMSCore in GetMatchingCredentialsDelegateTest
- d6a59b4 Resolve UNSAFE_TODO in experiments_manager.cc
- e5f676e [//cc] Have LTHI GPU raster test set gpu raster in GpuFeatureInfo
- a2dcc03 Roll src-internal from 74c31d3712f3 to 5fa4156348c4 (1 revision)
- 331004c [//cc] Have LayerTreeHost unittest set gpu raster in GpuFeatureInfo
- a7b9bb5 [//cc] Have FakeLayerTreeFrameSink set gpu raster in GpuFeatureInfo
- abd3046 [//cc] Move computation of scaled cull rect into TileBasedLayerImpl
- 764b47d Roll BoringSSL from 9a33641a1269 to a69a28f40e14 (1 revision)
- f21fb64 layout: Stop serializing lines for justification
- 324c28b Roll V8 from 0347a1f9bdac to b6b5e295e47b (5 revisions)
- 80e7c55 FindInPage: Support finding LINE FEED characters
- dd5ad9d Roll Chrome Android Desktop x64 PGO Profile
- e7f5fa9 [Chrome Fuzzing] Document where to find sanitizer suppressions.
- 64f74a0 [User Agent Reduction] Remove Enterprise policy
- 3dc31b1 Roll Chrome Android ARM32 PGO Profile
- d9ff9d5 Don't call SetNeedsCollectInlines if it's atomic inline
- dd4af64 [webauthn] Fix cable tests
- 199f233 Roll Skia from d8eee423d372 to d0e5d40f90bf (4 revisions)
- 5b59d5b [webauthn] Disable publishing prelinking info
- 99e636c [ClapperLoud] Add fieldtrial testing config
- b497080 Roll Chrome Mac Arm PGO Profile
- c531c5e Reland "Reland "Reland "infra: Do not disable use_clang_modules on compie-size builder"""
- ea948e3 Fix some compile issues with clang modules on windows.
- 4917e28 Roll DevTools Frontend from 10817e7d5088 to 63ecedb1e7cb (2 revisions)
- 782eaad Split HttpCacheInitializeDiskCacheBackendEarly flag independently
- faa71db Make CombineNumericChildrenFromNode() and CollectNumericChildrenFromNode() use while-loop.
- 7b34835 Remove stale pixel expectations
- ca233ed Roll ios_internal from 7beeb0ac6c8f to f44656035b28
- 407ba4e Roll optimization-guide from df39333f8efa to 104903ba2e03
- 3a993d2 [SelectionPtr] Change SelectedIndices references to copies.
- 97ad8c5 Roll Skia from 3b339a83959b to d8eee423d372 (2 revisions)
- cfeb502 Remove all tfc suffix in suite name
- f71f44d [PM] Enable CannotDiscardVisibleInSplit on Chrome OS
- 4944d58 Roll DevTools Frontend from e999f20bd331 to 10817e7d5088 (1 revision)
- 6067530 Roll Dawn from fa54d1eaf3f0 to ea8527376cd1 (11 revisions)
- 48a8877 WebNN: move gpu members into gpu sequence
- 0f84196 Prefix disable-diagnostic-validation with -Xclang.
- 26d97c5 [ContextualTask] Don't observe active tab contents if side panel is not open
- f364a8e node.py: print stderr/stdout/exit status, attempt 2.
- ebd4c07 Revert "Roll Chrome Android ARM64 Orderfile from ldygiRFzTqM356xOq... to _fltn5Z8klsUR8c92..."
- c067a28 Synchronize Omnibox popup bounds to its anchor before showing
- b1f4a14 Roll clank/internal/apps from c1c0fa2f7e76 to b49448b82899 (1 revision)
- e9dfa69 Automated Commit: LKGM 16505.0.0-1073544 for chromeos.
- 39e9d08 Disable flaky NoShortcutsCreatedOnSync on Linux TSan.
- 81b0270 Roll Catapult from a202c86635d5 to ce25f492c190 (1 revision)
- 224bcd4 Roll Chrome Mac Arm PGO Profile
- b393bc6 Roll Chromium Variations from fLSSpaTSKyEyNPEXw... to V-UWt8xm3Z4yz-PtW...
- d17d007 Disable ProxiedResourcesAllowed test on Linux ASan
- 5fc79fc [Frameworks roll] Roll to 839367683 piper revision
- 8405f8d Ship CSS letter and word spacing percentage
- 246cd43 Reland "Make test APK the default browser app if it has APP_BROWSER category"
- 2757ee1 Remove obsolete parameter should_trigger_reporting
- 5773457 Remove always-on feature ImeUsEnglishModelUpdate
- e578e4f Roll Skia from eb01fff20df8 to 3b339a83959b (4 revisions)
- 1ad42fa Roll Chrome Android ARM64 Orderfile from ldygiRFzTqM356xOq... to _fltn5Z8klsUR8c92...
- 2f6a6bc text-justify: Refactor ShapeResultSpacing::SetExpansion()
- 4316bb6 layout: Add kBaseShorterRubyMarker
- e64430e Revert "Roll ANGLE from 2f231d573555 to 4f9af4659432 (3 revisions)"
- 4cc3088 Pass GpuPersistentCache directly to Dawn.
- 3d8a240 [User Education] Ship User Education Experience 2.5
- 18dfae0 [Wallet] Support boarding pass allowlist in ingestion controller
- c7b0e5d Roll Chrome Mac PGO Profile
- 4f629fe UAF in base::StackSampler::RecordStackFrames when worker task outlives StackSample
- 837f109 Remove unused includes from base/allocator/partition_alloc_support.h
- 56e0a16 Revert "[MinimalUI_MenuButton] Enable 3 dot by default"
- 2a38702 media: Add tracing for NDK VEA
- 6e5e32d Roll Chrome Win ARM64 PGO Profile
- 1232d77 Roll Perfetto Trace Processor Win from bcbfafd4aa20 to 04f6d7957480
- 3b65049 Roll Chrome Mac Arm PGO Profile
- 4e1f0da Revert "hierarchical: Add tests for keyboard navigation"
- b6c4dc4 [HLS] Wrap RenditionGroup in RenditionGroup::View
- 4bb7099 Roll DevTools Frontend from 761ac3e2d9d9 to e999f20bd331 (1 revision)
- 35e9da3 Do not clamp to the empty bounds when the empty window becomes target
- f049bd3 shimless: Add feature flag of flexible serial number naming
- 86438c4 Revert "[Android] Add the Home button as OptionalViewElement in CtaPageStation"
- 19e20ee url: Use string_view for an argument of IsValidScheme()
- 4456b65 Make MetricsWCO track nav starts using DidStartNavigation instead of WillStartRequest
- 5ff1cf9 [History] Prevent actor visits from MVT and omnibox suggestions
- 50fc89e Move ScopedAnimationDurationScaleMode to ui/gfx : part 5
- beaa7b1 Roll Perfetto Trace Processor Linux from 2e364c01af2c to 04f6d7957480
- c8f32d5 Roll Chrome Android ARM64 Orderfile from bbA6lGDorSoOzZegA... to ldygiRFzTqM356xOq...
- ca02166 History: Extend BrowsingHistoryActorIntegrationM1 flag
- da7db5e Roll Chrome Linux PGO Profile
- 84d3f67 WebUI: Fix @typescript-eslint/consistent-type-exports violations part 2.
- 07e7541 viz: Fix visual artifacts while resizing window with DComp
- ea642a3 [mojo] Don't generate #includes when there are only enums
- f1594b2 viz: Create IsBufferQueueSupportedAndEnabled()
- a8c8e02 Extend the expiry date of two CWP histograms by 1 year.
- c9401b7 Fix window focus issue by deferring windowDidResignKey processing
- e561280 FIXUP: Missing flex weight in views_examples demos.
- e907658 Remove reflect: true from showContextMenu_ property.
- 423704d Fix crash in AutofillCrowdsourcingManagerTest destructor
- e6aeeca Roll Chrome Android Desktop x64 PGO Profile
- b97e200 [WebInstallAPI] Extend expiry for web-app-installation-api to 149
- 441fb4c actions revamp: Introduce ExtensionToolbarContainerViewModel
- e7d3b60 Add TopControlsRefactorV2 into fieldtrial testing config
- 9b6cc3e Roll clank/internal/apps from 9df894bdb4bd to c1c0fa2f7e76 (1 revision)
- 451dcfb Roll vulkan-deps from 4ebe5fdaba4f to 29d26a280798 (6 revisions)
- b170918 Roll src-internal from 258ea5c2dd5c to 74c31d3712f3 (2 revisions)
- 3823465 Roll Perfetto Trace Processor Linux from bcbfafd4aa20 to 2e364c01af2c
- 64653cb Reland "webnn: enable the ORT backend by default"
- c402111 [EncapsulateAnimations] Fix LB position when navigating off NTP
- 7c08122 glicmi: Add metrics for first action in daisy-chained Glic panels
- e4f31c1 Roll Perfetto from 2e364c01af2c to 04f6d7957480 (1 revision)
- b43c1e0 [focusgroup] Follow visual order.
- 41bbcff [EncapsulateAnimations] Prevent toolbar flicker on NTP snapping
- 6091d29 Roll Chrome Mac Arm PGO Profile
- 2240613 Extend verify-qwacs about:flag expiration.
- e11ae52 Revert "updater: speculatively disable mojo UpdateService(Internal) server (win)"
- 2361e35 Delay expiry of power histograms.
- d315b41 Re-enable OpenAllProfilesAfterSimulatingButtonClick
- 7c4338b Roll Skia from 6bd3b06b1e08 to eb01fff20df8 (3 revisions)
- c3dd7d5 Suppress typed suggestion for image generation
- dd6120a [GlicMI] Do warming on contents instead of instances
- 08122f5 [PSF] Disable contextual panel separator when PSF enabled.
- a18be6a [context-input] Set routing info on queued requests if cluster info response is delayed
- 6d9163d Move the "writeProfileType()" logic out of CTA to MIMApi31
- 3c5c25c Add comment explaining wait in `~NamedMojoServerEndpointConnectorWin`
- 28bcb30 Roll SwiftShader from 04fbb7daf5a5 to 518a9f63228d (1 revision)
- 206263a [Read aloud] Prevent text + superscript being read as a single word.
- 4977c8f Roll Chrome Win32 PGO Profile
- c5d59fd Do IWYU for base/functional/callback_helpers.h in various files
- d51fcd2 [Vertical Tabs] Creating VerticalTabStripController for TabContextMenu
- 7d55af8 Roll gn from 6e0b557db44b to 8450d601b96c
- c29996c [ntp-next] Integrate Optimization Guide check for deep dive chips
- 9973663 nearby: use new hmac API for cert verification
- 6cf9537 ChromeAndroidTask: skip restore if task is setting a restored-size bound
- 5387010 [EICP] Step 5 - Add new policy domain POLICY_DOMAIN_EXTENSION_INSTALL
- 63ed850 Roll Perfetto Trace Processor Linux from 7b9744b13600 to bcbfafd4aa20
- 6c7ffdd [SidePanel] Make SidePanelCoordinator use UnownedUserData