Chromium Digest: 2026-02-09
Overview
This digest covers 615 commits on the main branch from (bcb84ec)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((bcb84ec)) to (97b3f24)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((97b3f24)), with 451 commits analyzed for developer impact. The day saw an unusually high number of breaking changes across core APIs, including
GURL, ui::Clipboard, Android WebView, and the navigation lifecycle with the enabling of RenderDocument by default.Breaking Changes
-
⚠️ BREAKING
The
RenderDocumentfeature is now enabled for all frames by default. This is a major behavioral change to the navigation and rendering lifecycle that could significantly impact embedders who relied on the previous behavior where it was only active for subframes on some platforms. (b4d0474) -
⚠️ BREAKING
Synchronous methods in
ui::Clipboard, includingExtractCustomPlatformNamesandReadAvailableStandardAndCustomFormatNames, have been converted to an asynchronous, callback-based model. This breaks any code calling the synchronous versions. (63af498) -
⚠️ BREAKING
In the Android WebView API,
AwContents::addDocumentStartJavaScript()has been removed and replaced withaddPersistentJavaScript(). Several other methods for JavaScript injection and web message listeners have had their signatures changed to support isolated worlds. (b9e641f) -
⚠️ BREAKING
A public
GURLconstructor signature has been changed. It now acceptsstd::string_viewinstead ofconst char*andsize_t, breaking any code that uses this specific constructor. (a352421) -
⚠️ BREAKING
Public methods
BrowserList::CloseAllBrowsersWithProfile()andBrowserList::CloseAllBrowsersWithIncognitoProfile()have been removed. Embedders must migrate to alternative ways of managing browser windows. (d29ce19) -
⚠️ BREAKING
The public API for
ui/viewsaccessibility has been changed. The internalOverrideFocusmechanism was replaced, and the public method signature ofViewAccessibility::SetActiveDescendantwas changed from taking aui::AXPlatformNodeIdto aviews::ViewAccessibility&. (30d8cde) -
⚠️ BREAKING
The public virtual method
WindowController::CanClose()has been removed from the Extensions API. Subclasses or callers of this method will break. (6c171b9) -
⚠️ BREAKING
On Android, a new parameter has been added to
LoadUrlParamsin Java and the corresponding nativeNavigationController::LoadUrlmethod, breaking consumers of this public API. (1991b55) -
⚠️ BREAKING
The
AccountInfostruct now uses accessor methods (e.g.,GetFullName()) instead of direct public member access (e.g.,full_name), breaking any code that directly accessed its fields. (c7a4f63) -
⚠️ BREAKING
Core navigation method signatures in
content/classes likeNavigationRequestandRenderFrameHostImplhave been changed by removing apermissions_policyparameter. (2c307fb) -
⚠️ BREAKING
The public methods
String::ToIntStrict()andString::ToUIntStrict()have been removed from the core WTFStringclass. Code must be updated to use the new global functions. (28c4cd0) -
⚠️ BREAKING
The
DnsTransactionFactory::CreateTransactionmethod signature has been changed. Thebool secureparameter is replaced with anAttemptMode attempt_modeenum. (17be678) -
⚠️ BREAKING
The
ResumableUploadercomponent was moved fromchrome/browser/safe_browsingtocomponents/enterprise/connectors/core, and its constructor signature has been changed to remove a dependency on thecontentmodule. (72adb91) -
⚠️ BREAKING
On iOS, the public function
CreateAndPresentPasskeyWelcomeScreenhas been removed from the WebAuthn public API. (d02263d)
Android & WebView
-
⚠️ BREAKING
The
MediaCapturePickerDelegateinterface was modified:getPickedWebContents()was removed,getPickedTab()no longer has a default implementation, and a newcreateScreenCaptureIntent()overload was added. (fa3ab41) -
The Pinned Tabs feature (
e1e6eae032b8) and Tab Highlighting V2 feature (aebe25d61296) are now enabled by default. (e1e6eae) (aebe25d) -
The
DocumentIsolationPolicyfeature, which provides enhanced process isolation, is now enabled by default on Android. (57aef12) -
A new method,
IsClosingAllTabs(), has been added to theTabListInterfaceto track when all tabs are being closed. (b18a960) (3289ed5) -
The
chrome.sessions.getRecentlyClosed()API has been implemented for windows on Android, allowing extensions to retrieve recently closed window information. (e679f92) - Significant work was done on the tab persistence layer, including adding migration logic between store types and tracking state for shadow stores. (cdaa0b2) (9c26140) (c91ba92)
iOS
- Code is being cleaned up to remove version guards for iOS 16, as the minimum deployment target is now iOS 17. (b307cec) (a6a9e77) (1c5d1b1)
-
A new feature flag,
kVariationsExperimentalCorpus, has replaced the command-line switch for variations seed testing to work around limitations on iOS. (c39cc03)
Blink & Web Platform
-
⚠️ BREAKING
Core V8/gin integration constants
kLastGeneratedScriptWrappableTagandgin::kFirstPointerTaghave been updated, which can affect embedders with custom V8/gin integrations. (29fd8a7) -
The
kLaunchQueueStopSendingOnReloadfeature is now enabled by default, preventing launch parameters from being re-sent to a PWA on reload. (8a6dab2) -
The
<menuitem>element now supports the:openpseudo-class, allowing it to be styled when its submenu is open. (144e146) -
Application of the system accent color via
accent-color: autois now scoped to installed web apps only, reducing fingerprinting vectors. (f7e7f5b) -
Experimental support was added for the
named-feature()function in CSS@supportsrules. (6e1dae1) - The logic for determining the web-exposed Largest Contentful Paint (LCP) candidate now uses the largest *painted* image, aligning with spec updates. (c116224)
Security, Privacy, and Networking
-
⚠️ BREAKING
The
UnexportableKeyServiceAPI was changed, removing thepriorityparameter fromDeleteAllKeysandDeleteAllKeysSlowlyAsyncmethods. (efa2d3b) -
WebRTC was updated to request new, more granular permissions (
LOCAL_NETWORKandLOOPBACK_NETWORK) for Local Network Access, replacing a single deprecated permission. (3532471) - For improved privacy, the preference for tracking deleted profiles was changed to store a relative basename instead of an absolute path. (95b8d19)
- A new enterprise policy was added to control the WebRTC diagnostic logging API. (22400f0)
Performance & Memory
- Memory pressure listeners and monitors are now enabled by default on Windows and macOS as part of the PerfCombined2025 initiative, changing the default behavior of memory pressure notifications. (bed11e0)
- The initialization of PartitionAlloc's "MiracleObject" quarantine is now delayed until the first real navigation, reducing its impact on startup performance metrics. (0ead193)
-
WaitableEvent::TimedWait()was updated to useWILL_BLOCKinstead ofMAY_BLOCK, providing a more accurate signal to the thread scheduler to prevent unnecessary thread pool exhaustion. (d677725)
Code Health & Refactoring
-
The
WorkerThreadSequentialShutdownfeature flag was removed, making sequential shutdown for worker threads the permanent behavior. (331d513) -
A large number of commits replaced uses of
std::unordered_map,std::set, andstd::unordered_setwith more performant Abseil or base equivalents likeabsl::flat_hash_map. (ec026ad) (9c0270d) (8aaf60a) (780cc85) (0a239f0) -
Several stale and unused feature flags have been removed, including
kBocaHostAudio,ProjectorManagedUser, andkBtmDualUse. (5223f99) (4713dff) (e08a2f8) - Multiple dependency rolls, most notably for Skia, were reverted due to test failures and build instability. (c58bc32) (9589989) (ce1b7e5)
All Commits (615)
- 97b3f24 webnn: Preload optimization_guide_internal.dll before GPU sandboxing
- 63792be Roll goldctl (mac) from CQxD5gOiwSWT8BsyH... to pfV760o24fdgQHreC...
- 55005f2 Roll goldctl (win) from jiWTOkjhFa2tprYOe... to 608Octuvmyl6pZRwV...
- 226adf7 Roll goldctl (mac arm64) from hVuIUdzKbmoh8bsK3... to wPNH76jhzj9x_oNHf...
- cdaa0b2 [Persist] Add migration logic to PersistentStoreMigrationManagerImpl
- fb78d01 Remove deprecated Redactor functionality.
- 05d7b97 [Symphonia] Add transitive PCM codec dependency
- 3131c10 [Symphonia] Add transitive mp3 codec dependency
- 2b39305 Roll bytes: 1.11.0 => 1.11.1 in //third_party/rust.
- d52d90d [lens] Move background blur into base class
- f34c513 Roll Skia from 150342e26c90 to 81021b53e74c (1 revision)
- 0109ad3 ios: Correct IOSDownloadSanitizeFilename field trial.
- 3c81447 [Vertical Tab] Update root view accessibility name only for active vertical tab.
- ebd634c Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- bf29fc6 Roll src-internal from 9cb5e6ce93ec to 1bae79b03303 (1 revision)
- 700477e WebUI: Fix violations of CrLitElement method definition ordering.
- 2c03858 Don't return $TMPDIR if empty
- 9933252 Speculative fix for crash in SpeechRecognition::StartController
- 03cce2d Roll glic-test-internal from 74a446bfcf19 to 588906f2ff69 (1 revision)
- 1a56681 Roll BoringSSL from e1f8b37bee4d to 2a7ca5404e13 (1 revision)
- 48408b4 Fallback to other embedder when attaching without source tab
- 1cea104 [Frameworks roll] Roll to 867706168 piper revision
- b15116e [realbox] Enable searchbox_test.ts
- d9eb922 [lens] Move tab handling into base class
- 0b330d2 Switch to NSURLQuarantinePropertiesKey
- 0c513b6 [ntp-realbox] Use the correct flag for realbox file carousel spacing
- 278cf1a [webnn] Enable LiteRT as a backend option.
- 57f40eb WebUI: Add a custom eslint rule to prevent extra logic in HTML templates
- 30d8cde [views-ax] Replace OverrideFocus mechanism with ActiveDescendant
- ac00512 Add in Image when a user has no tab groups in Projects Panel
- ffa92ee [EICP]Disable public key and signature validation for extension install policies.
- f656f2e [owners] Remove thanhdng@chromium.org from chrome/browser/ui/webui/ash/launcher_internals/OWNERS
- e860626 Support multiple webrtc log directories in components/webrtc_logging
- a3056f1 [composebox] Focus input after changing Compose model mode.
- 2aef104 Skills UI: add a hover state for emoji picker
- c8558fb [lens] Move reshow overlay into base class
- 5998fc0 Revert "[Media Indicator] Add SHARING media stream"
- 6478c53 Use StringView in SVGSMILElement::ParseCondition()
- 26c8847 Enable FallbackToSWIfGLES3NotSupported on non-Windows
- c0c7d6a Eliminate use of FindIgnoringASCIICase() in ParseHTTPRefresh()
- 0c5642c [iframe] Add backgrounds to some tests
- f5282d7 fend_core: Disable the majority of `FendCoreParamTest`s
- 1a65979 [event-timing] Update INP calculator to support multiple event timings.
- b1c97c2 fend_core: Rewrite timeout test to more easily fail
- 76e444e ui: Fix ClipboardTest for SDK 36
- e6b35f2 [Reading Mode] Test Extension: "Clone" feature: Accept JSON-LD
- 520db28 [lens] Move CloseUI into base class
- 4a8aa1f [Start Chrome with Windows] Add Infobar to chrome://infobar-internals
- 2460e6b Update expiration and owner for GPU.PaintOpReader.DeserializationError.
- 3e2abc8 Roll WebView ARM Orderfile from jdyhn-3UIxO7bpdEO... to xbe5Wtw6JIzteRODt...
- 19d3b99 Create support library glue for worldly JS injection.
- f5b26be Add "Report an unsafe site" app menu item 3/X
- 5e52b5c [reader mode] Add a delay to the RM bottomsheet peek on initial load
- c00721a android: Fix CustomTabIntentDataProviderTest for SDK 36
- 5223f99 [Code Health] Clean up stale base::Feature kBocaHostAudio
- b18a960 [TabListInterface] Add IsClosingAllTabs() method
- bf13717 [Search Integrity] Add search integrity core logic
- 7679848 android: Fix FirstRunIntegrationUnitTest for SDK 36
- 23242a6 android: Fix BaseCustomTabRootUiCoordinatorUnitTest for SDK 36
- 03f5b4a Roll vulkan-deps from 20a8dff8ad91 to 2cb91a73a9fb (5 revisions)
- ec026ad Avoid duplicate map lookups.
- b045c34 [Extensions] Fix flaky ExtensionFunctionCrashKeysTest
- 6e787da [Reading mode] Debounce omnibox checks when tab is foregrounded
- bfb28dc [SettingsSearch] Open default browser settings from search results
- 15dfcab Roll Chrome Android ARM64 Orderfile from 0idXBl2G_wuxMhjUK... to QDSG8MOv1d61sVnQU...
- 4725ec4 [lens] Move common overlay initialization code into InitializeOverlayImpl
- 86fe434 [AIM] Handle crash during JNI destroy.
- 16f994d Add `--data-format` flag to dmg.c for dmg attribute command
- 008dd54 Revert "[ios] Copy MagicStackModule during reconfigures"
- 539dc93 Roll Arm AFDO from 146.0.7676.0_pre1581371_rc-r1-merged to 146.0.7678.0_pre1581483_rc-r1-merged
- 903153f [webauthn] Extend histograms
- 8b4a7fd Update CBB autoroll for the builds refs
- e679f92 Reland: extensions: Sessions API window restore for desktop Android, #1
- fbe42a8 Use string_view instead of string to avoid unnecessary string copies.
- 64d6963 Roll Chrome Mac Arm PGO Profile
- f7e7f5b Scoping system accent color pumping to web apps
- 5fad6bd Disable flaky test testSigninPromoLoadingState on desktop bot
- ad48b67 Upload history log in crash reports
- 073d1b6 Reland "[Vertical Tabs] Log tab group selection changed metrics"
- 494254e [Actor] Fixed tab opening and removed android specific code from glic
- 9c0270d Replace `std::set` with `absl::flat_hash_set`.
- d9c3759 [rust] `build_errors_guide.md`: Cover missing sources and outputs.
- 9f3a97e Roll ANGLE from 18080c42db07 to 44ad07631804 (2 revisions)
- a20a0a6 surface_embed: Add plugin creation support to content_shell
- faad363 Extend expiry of Arc.AppInstall.CacheHit
- b5138ae Revert "Change feature flag to enable new Device Memory API limits"
- de8d98c [ios] Copy MagicStackModule during reconfigures
- c4e8c76 Add source_skill_id and DerivedFromFirstParty enum value to skill struct
- 8aaf60a Replace `std::set` with `absl::flat_hash_set`.
- a6ff5ad Roll Perfetto from 1f512c9800ce to 436a00fb3edb (2 revisions)
- 6c171b9 [Extensions] Remove WindowController::CanClose()
- d39c589 Roll WebView ARM64 Orderfile from SyTQcUHbbzzxYElEg... to pa-pWF5s6xthUpslN...
- c116224 Reland "LCP: Use largest painted image for web-exposed entry"
- cc0ed83 Roll FFmpeg from 9e588ab02e16 to ae11d2ba5c83 (1 revision)
- 61116b3 cros_ml: Extend diagnostic histograms
- 85f2be9 power: Extend diagnostic histogram
- 4f58b77 Roll Perfetto Trace Processor Win from 56b888d6f55d to 1f512c9800ce
- 4616905 Roll Chrome Mac PGO Profile
- 6f91483 [Contextual tasks] Fix crash when APC is not eligible
- 580e9f2 Migrate comments from crbug.com/<crbug ID> to crbug.com/<buganizer ID>
- 1c2e5b5 Roll Perfetto Trace Processor Linux from 2aec57dce626 to 1f512c9800ce
- ef23b52 Remove justincohen and rohitrao as Omnibox OWNERs.
- a30407d Migrate comments from crbug.com/<crbug ID> to crbug.com/<buganizer ID>
- 1b46924 cpu_performance: Improve the default implementation
- 0e13eb2 [ntp-next] Clean up flag options for NtpComposebox and NtpNext
- 61da89e [//media] Add hardware-video-decode-path switch
- 1d9696c Roll WebRTC from a0d5da4e7603 to 6fa537a09ce4 (3 revisions)
- 3d22386 Roll clank/internal/apps from ad360176d628 to c643013919c9 (1 revision)
- dd23914 [User Ed] Add browser feature promo precondition for Agent actuation
- bed11e0 Enable memory suppression features for PerfCombined2025
- 2b9c6b2 Reland "Clean up LocationBar focus and UrlBar management."
- abde519 Disable FallbackToSWIfGLES3NotSupported in Reven
- ecc16f6 Revert (partial) "Fix @Nullable annotation for ChromeContextMenuPopulator's ShareDelegate"
- 144e146 Make <menuitem> support :open pseudo-class.
- f31af53 Show Deleted Skill toast when we receive notification that a skill
- d1616c9 IDB: tweak interaction between Cursor operations and txn commit, try 2
- 520ec68 Roll Chrome Win ARM64 PGO Profile
- ca05b43 Add `PIDForJobIfLoaded` for cases where an unloaded job is not an error.
- d5530bf heap: Remove MinorMS benchmarks variants and feature flag
- 32eae1b IDB: remove some obsolete histograms
- f23f0c2 Inline ObservableSupplier.addObserver() (part 1)
- e1e6eae [PinnedTabs] Enable PinnedTabs on ToT
- 8f76b15 [iOS][mvt-customization] Make title optional in pinned site form
- 89109b8 Roll Chrome Linux PGO Profile
- fb732cb [Android] Convert ContextMenuPictureInPictureAndroid to regular flag
- 3e72516 Update how Composebox placeholder text is provided to WebUI.
- e08a2f8 [BTM] Remove kBtmDualUse base::Feature
- 4374dad Roll Chrome Win64 PGO Profile
- d19e907 Roll src-internal from 9ae8ce9af880 to 9cb5e6ce93ec (1 revision)
- d698205 [AIAE][Clank] Rename next actions in OnDidAcceptBnplSuggestion
- a34c4f3 [Skills] Update toast string
- 7fd8fb8 [installer] Move rather than copy chrome_proxy.exe
- 8638696 infra: Roll starlark libs after resultdb merge fix
- 780cc85 Replace `std::unordered_set` with `absl::flat_hash_set`.
- 613cc20 Roll eDistantObject from 9c4f9da6e0ee to d09cb6380538 (1 revision)
- ce0a976 Roll Dawn from 646e5db33bf3 to a44d7a3d78f2 (9 revisions)
- b0c465e Roll Chrome Win32 PGO Profile
- 63af498 Convert some functions in ui::Clipboard to async
- 0245968 [signin] Introduce function to deserialize access point from integer
- 76927cf Roll Chrome Android Desktop x64 PGO Profile
- 3289ed5 [TabListInterface] Add IsClosingAllTabs() to TabModel
- 1e1ebcf Add QuicEndToEndTest that uses MTCs
- 029ca6a Roll compiler-rt from 4720ec6735b2 to 865870461056 (1 revision)
- 3693d51 Roll Enterprise Companion chromium_mac_arm64 from Kg269KNfuCv-FpUcY... to 5fsd5EnpOiD2mPlEy...
- f464be0 Silence Not implemented reached in SetNeedsCommitOnImplThread
- b02a9dd Updater UI: Add enterprise policy table element
- fe973a4 Roll Chrome Android ARM32 PGO Profile
- 0223ed4 Add TestFutureMode::kQueue for queuing multiple values
- 7e98ee1 [Vertical Tabs] Move tab components to a shared folder
- 1c24f72 Roll Skia from 2321e1ca4c94 to 150342e26c90 (3 revisions)
- 0a239f0 Replace `std::unordered_map/std::set` with `base::fixed_flat_map/set`.
- 4713dff CodeHealth: Clean up stale base::Feature ProjectorManagedUser
- 0b0051e [Immersive Reading Mode]: Remove semicolon from toolbar
- f07a617 [Phone Hub] Fix dangling pointer in PhoneHubNotificationControllerTest
- aa436c8 Roll abseil_revision 0437a6d16a..cd765c9dd1
- ebe4d2e Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 4e1979b Roll Updater chromium_win_x86_64 from 2@1573043 to 2@1576082
- e2cbee4 Replace `std::set` with `base::fixed_flat_set`.
- 40edf97 Add an "Actuation Prototyping" UI in ai_prototyping.
- b6cdb0d Replace `std::unordered_map` with `absl::flat_hash_map`.
- dad61dc Roll Updater chromium_linux64 from 2@1574012 to 2@1576002
- 2d22d20 Actor: Fix null task crash in extension API
- 986245c Roll bytemuck: 1.24.0 => 1.25.0 in //third_party/rust.
- 8ff2bd9 Roll Updater chromium_mac_arm64 from 2@1574012 to 2@1576076
- 8a6dab2 [PWA] Enable kLaunchQueueStopSendingOnReload by default.
- 407dbfc Roll Updater chromium_win_arm64 from 2@1573063 to 2@1576106
- 77f7693 Roll Updater chromium_win_x86 from 2@1573052 to 2@1576020
- d3bfbc1 Roll Kotlin Stdlib from eZzGGvckJ-abo5lKK... to FfVJUc4q9S6JB4uqV...
- 3e40b28 [PWA] Unexpire histograms for March 2026
- 0fd1455 Roll Manifest Merger from YgbGvXYO4RiQ7zH0Q... to xxaa38R0ED95Wxo8P...
- 92508b7 [composebox] Resize the model check icon in the context menu.
- 75a954e Minor improvements to design principles.
- ba4481b Roll Chrome Mac Arm PGO Profile
- 0556e4e Roll Turbine from j49Y1F_PAMGZdDf53... to BMHNhxMhr7uGz1rh_...
- 842adef Avoid duplicate map lookups.
- c74e5f4 Replace `std::unordered_map` with `absl::flat_hash_map`.
- 3923aba Replace `std::set` with `absl::flat_hash_set`.
- 516e170 Roll Updater chromium_mac_amd64 from 2@1573027 to 2@1576108
- 72c1bb8 Roll clank/internal/apps from 3d2df6b13b8c to ad360176d628 (1 revision)
- 83eb2b4 [PWA internal clean up] Add explicitly type for webapps::ManifestId
- 9c26140 [Persist] Add TabStateStore-only ClearWindow operation
- c91ba92 [Persist] Add SharedPrefs for being caught up and wire
- 9653716 [<install> Element] Update invalid/illegal attribute handling in blink
- 3ff369b Enable CHECK_IS_TEST in utility processes for content browser tests
- b6002e0 [iOS] Add support for kFillAutofillAi in AutofillAgent
- 5f853e3 [iOS] Change feature flag controlling EntityDataManager creation
- 3c751a9 [iOS] Create Provider Function For Passing Image Attachments To Floaty
- ba60788 Roll SwiftShader from 3b5edab3497f to b7b7fd22e5f2 (1 revision)
- b6e56ff Glic App Internals: Remove extra function in template file
- a266d6d Roll R8 from kCLXGwoL10sgeyycu... to TozMGRBtGJuZp31wJ...
- 54af167 Avoid duplicate map lookups.
- 794fa89 Disable omnibox during automating tests.
- cedff33 Management UI: Make promotion-banner a proper custom element
- 0f3ceb8 Roll Enterprise Companion chromium_win_x86_64 from ZeRYA34gKuGRtHI1q... to rihKBALRuO8Ez7ZSE...
- 6536a26 fix glic_api watchlist
- 9ebc4f1 Javaless renderers: make stack size match Java
- 16abcde Roll androidx from 6iX8Ty6ecQMrbVCMm... to us_8XGxuKdmIoJEbq...
- 7bffbc4 Replace kSync with kSignin in c/b/e/u/extension_updater_unittest.cc
- da38fa7 Roll Enterprise Companion chromium_linux64 from cJyFZSIajZt23Nbtb... to tXl_kECCEE_B21-su...
- e9d4cc5 Roll Enterprise Companion chromium_win_x86 from QBBFrBVsWwKwHg6RO... to Os5UWO8xsFYZvJqSa...
- a3b9dc6 Roll Kotlin Compiler from f-d0mg_APXr9lbudX... to KZWh3uhuenRgsoGqN...
- 5ab6da8 Roll aapt2 from s6POXpUalcnuPehDs... to vUP1cs7krVsNHbUJp...
- a37e8ba Roll Enterprise Companion chromium_mac_amd64 from rcPshXnZLLdhKhqpG... to tEXCIdDoVlzE8rnaY...
- 34e1d4d [LiteRT-LM] add chrono to third_part/rust.
- d5c5299 Roll Chrome Android ARM64 Orderfile from AE3thdUpJLMUEQ5LK... to 0idXBl2G_wuxMhjUK...
- b928141 [Reland] WebUI: Also apply CSS checks to static CSS files in build_webui().
- 1d60255 Fix min width consumption in toolbar children
- 47275d1 Roll PDFium from efbbd0fc9582 to 089df81ba792 (5 revisions)
- 8c5eae4 [HFM] Don't set underlying pref for APP users
- d29ce19 [bedrock] Remove BrowserList::CloseAllBrowsersWithProfile() and
- 767e4d3 Sync feature protos.
- 5a95575 Add switch for earlier enablement of transcriptions.
- 0b1fb22 Avoid duplicate map lookups.
- 964ae2a [Connection-Allowlist] Add navigation Web Platform Tests
- b046c99 Roll DevTools Frontend from d59296acc029 to 59cd17f0b315 (2 revisions)
- 0e80ac9 [blink] Add IsSharedImageFormatMappable and update DrawingBuffer
- fdfa246 Small UI tweaks to the skills dialog.
- 4f836f7 [gpu] Add disable_mac_swangle_rgbx capability and update DrawingBuffer
- 029e1ef Add more crash keys for dirty layout tree traversal.
- 49efe28 [aim-tools-models] Refresh InputStateModel on AIM eligibility updates.
- b6e5be9 Roll WebView ARM64 Orderfile from iu74gqliJmXkPSifR... to SyTQcUHbbzzxYElEg...
- 80aacc3 [GreenDevFloaty]: Add WebUI for showing DevTools frontend content.
- 64e8802 [Vertical Tabs] Configure VT to use a CustomBackground
- ea36e6c [Settings Search] Update help icon visibility on configuration changes
- b1a0b3f Roll Perfetto from 2aec57dce626 to 1f512c9800ce (4 revisions)
- 1b22bd4 Remove legacy histogram TopLevelFilteringResult
- 5d8e000 Actor: Add journal log for Tool::EnsureTargetInView
- c4c2282 Roll Depot Tools from 06b875921815 to b91fef0eafcd (1 revision)
- 0ba4200 [Media Indicator] Add SHARING media stream
- 7e7e913 Read new attempt login proto fields
- e0dc476 [NtpCustomizationV2] Fix NTP layout when switching navigation modes
- 4bddeec Roll Perfetto Trace Processor Linux from 56b888d6f55d to 2aec57dce626
- 1fafc4c iwa: Update preloaded Key Distribution component version
- 358104d Make save to local bubble strings translateable
- 30f5b31 [SkillsPage] Implement error check for saving invalid skill
- 1b31ffd Validate builtin commands before dispatching command events
- 63be6d2 Fold the tools to push_back in ToRequestList
- 0c405b8 [iOS] Remove std::move statements breaking DeferToRenderer calls
- 95204ce Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 72adb91 [iOS] Move ResumeUploader from chrome to components folder
- 29fd8a7 Bump kLastGeneratedScriptWrappableTag to 2000
- f8b5c81 Revert "Actor: move task removal to after stop"
- 7a2f7b5 Cancel pending requests on new input.
- 46203dd Roll clank/internal/apps from 4c156ef19761 to 3d2df6b13b8c (1 revision)
- 8e48de7 [Skills] Allow updates for all skill sources
- f59753b Fix an action crack in pointerevent_attributes{,.optional}.html?touch
- d5f90f4 [Skills] Keep unknown skills in sync metadata
- 7886c77 [iOS] Remove SendTabPromoView
- 321715d Update Tab.Count.Incognito description
- efa2d3b [dbsc] Invalidate all operations during DeleteAllKeys
- 874e009 Add flags for kModelBasedPageClassification
- 5226204 Roll clank/internal/apps from 66ace3a0cc29 to 4c156ef19761 (1 revision)
- ca2bd4a Mark kSync for removal in components/saved_tab_groups
- b0ff30b [rust] Fix Windows builds of Crubit by adding `zlib.lib` path.
- 15df902 [composebox] Add test for Recent Tab chip respecting allowed input types
- 961d5e6 Refactor WebView javatests to use multiline strings
- e7b5910 Update sync-to-signin migration for History, Tabs and Saved tab groups
- 1029dd7 Roll JetStream main from 6b5b7cc288e0 to ad5e39771904 (1 revision)
- 7214133 Remove cryptography dependency from DBSC WPTs
- 0049f0c [x-plat promos] Update feature check to allow multiple promos enabled
- 2d8f83c Remove 3pcd parameterization in StorageAccessAPIWindowOpenMainFrameTest
- 0421e94 [VerticalTabs][Glic] Implement GlicButton<T>.
- 11693bb [Legion] Integrate privacy proxy
- 86e3148 chromevox: fix live regions in Docs
- 13832c7 Implements OnPageContentAnnotated to store data
- 31737b5 Roll WebRTC from 28987e45d15d to a0d5da4e7603 (2 revisions)
- 80be8dc [Omnibox][AIM] Surface more omnibox metrics into the telemetry test.
- 9c3049b Android: Fix NPE in LinkToTextHelper
- 1ee11f0 Multi-account device metrics: Schedule daily
- 89ba707 [owners] Remove artyomchen@google.com from chromeos/ash/components/policy/REMOTE_MANAGEMENT_OWNERS
- 0375a48 Replace `std::set` with `absl::flat_hash_set`.
- 4fb9657 [iOS][SceneController] Factor InjectNTP into another file
- 1f94daf Roll Perfetto Trace Processor Win from f59a7c6388e2 to 56b888d6f55d
- 62f4f71 Migrate comments from crbug.com/<crbug ID> to crbug.com/<buganizer ID>
- 00af9fa Update Omnibox text from ComposeboxInputPlateCoordinator query
- de47bf6 [Document PiP] Fix crash during launch
- f838db3 Roll src-internal from 05d1aa4d4d4a to 9ae8ce9af880 (1 revision)
- 9080222 Add a test for glic activation propogation in delegating sharing manager
- d677725 Use WILL_BLOCK in WaitableEvent::TimedWait()
- 3efcdcf Update all supervised user live tests to use signin instead of sync
- d0ed31c Revert "Fixes bug in recordWindowingMode() that prevents cycleStartTime from being recorded."
- 836ef9c [Cleanup] Remove duplicate comment
- 03b3fc7 Revert "Update field trial config for RespectUserAgentOverrideInSearchPrefetch"
- 89f30dc Roll BoringSSL from a1e55421c4c9 to e1f8b37bee4d (1 revision)
- e97ef36 [AW] Part 4 Adding Cached Finch Flag.
- f9107fc Updater UI: Change invalid event display
- 96c0c44 Updater UI: Describe common updater errors
- 07351d7 [Signin][Android] Refactor new signin flow to use OneshotSupplier<Profile>
- e8a9b02 [Contextual Tasks] Fix use-after-move issue affecting toolbar
- ba8d19f Add new AccessPoint for Chrome WebView
- 1e3078e [Masonry] Update intrinsic auto repeat heurisitic
- ddf8416 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- b7fe73c [Masonry] Fix grid-lanes-direction Typed OM crash
- aebe25d [Tab Highlighting] Enable by default V2
- 2dc44b4 [iOS] Fix the round corner for incognito tab foregrounding animation.
- 2f7a193 Roll Chrome Mac Arm PGO Profile
- 57aef12 Enable DocumentIsolationPolicy on Android
- 86b252c Guard against non-tab read anything URL navigations
- 2ca5690 [cts][webview] Remove redundant -m flag from hostside test runner
- dedcd7d Roll clank/internal/apps from 73bac1062d2d to 66ace3a0cc29 (1 revision)
- b41d2e2 [iOS][CX] Add alert for all credentials disabled by policy
- 8219ae1 [omnibox][webui] Update BackgroundContentsTagTest
- 3532471 LNA: Use split LNA permissions in PeerConnectionDependencyFactory
- 90ec0cb Make content name a parameter in WebRtcLogUploader
- 9e1dad5 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- d152fcb Add user action and histogram for opening the sources menu
- aa93605 [webauthn] Remove outdated recovery case
- b377564 [iOS] Bug fixes in new tab grid transitions
- 533ee4b Enable ClonedInstallClientIdReset browser tests on Android
- ec5b8a9 Disable failing DataSharingLiveTest
- d963915 Roll Skia from 68dff53238e5 to 2321e1ca4c94 (1 revision)
- 43d2930 Ensure preloaded Tab Search does not respond to TabStripModel updates
- ea284ee Roll vulkan-deps from 2f6156bf1b61 to 20a8dff8ad91 (1 revision)
- 2a030e8 Add DeviceBoundSessionsStandardLaunch to field trial config
- b2aeb16 Add GeminiStartupConfiguration
- b546cf2 Actor: move task removal to after stop
- 22ba213 Actor: ensure performActions returns before stop task state change
- 83a9c3c Roll DevTools Frontend from 1bf048436523 to d59296acc029 (1 revision)
- c12b8df Add Discover skills page missing card for top picks in chrome://skills
- a70c9ca Use AccessPoint::kStartPage in PrimaryAccountMutator::SetPrimaryAccount
- 38f9348 Roll WebView ARM64 Orderfile from mjnMNkmSmfZQpHsll... to iu74gqliJmXkPSifR...
- df8fefe Actor: Build fixes for !enable_glic config
- 7ee1ca3 Roll Perfetto from 56b888d6f55d to 2aec57dce626 (2 revisions)
- 22a9708 Roll ANGLE from b69d4b85bd4f to 18080c42db07 (1 revision)
- 6acccb3 [gfx] Rename IsValidBufferFormat to IsValidDrmFormat
- 471b3ea Instantiate DocumentIsolationPolicy test in no SiteIsolation mode
- 349bddc Delete unneeded 3pcd pref reference from privacy_page.html
- 80358cb Show local save dialog if wallet storage is ineligible
- ad77ebb Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 2ec88e8 blob_generator.py: fix regression with machine-level-user
- b307cec [iOS] Remove iOS 16 version guards
- a6a9e77 [iOS] Remove iOS 16 version guards
- 5be276c Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- a8cc5bc [CustomizationV2] Fix single theme collection bottom sheet height issue on tablets
- 141e7a6 Roll Perfetto Trace Processor Linux from f59a7c6388e2 to 56b888d6f55d
- 295866d [Reader Mode] Readability Test Extension: Fix executeScript() order
- 0ead193 Remove MiracleObject (PA/AC) from startup until first renderer
- 1c5d1b1 [iOS] Remove iOS 16 version guards
- 424c4ff Fix swapped initialization in SubmitInfo constructor.
- 411c1ea Updating trunk VERSION from 7679.0 to 7680.0
- 70c924d Roll Chrome Win32 PGO Profile
- f54b1ec Use different sorting for Autofill AI update prompt
- 17be678 Refactor DnsTransaction boolean secure into a new AttemptType enum
- b9e641f Hook up the worldly framely API to AwContents.
- 9d7363e Roll WebRTC from a6d83994aaba to 28987e45d15d (2 revisions)
- 9e2a821 [a11y] Add has-text test for Canvas Accessibility UKM.
- 71832c4 Fix NPE in RootUiCoordinator
- 1f2a96c [WAConsent] Update enterprise policy logic and add tests
- cc2f91f Make LikelyAugmentedPhoneCountryCode() a util function
- 22400f0 Add policy to control WebRTC diagnostic logging API
- f699b62 Roll Media App from er7QjMwrYh6TlJXxU... to 2u9fg7vP0hXxxWuHJ...
- 21b294c Roll androidx, android_deps, and android_deps autorolled
- 4c8a58d Roll Chrome Android ARM64 Orderfile from cXuqTJ3eRQKwqux0D... to AE3thdUpJLMUEQ5LK...
- 91c5dff [Bundled Settings] Update padding and margins of radio groups/buttons
- dc86dc6 Add a crash trap for FamilyLinkSettingsService shutdown
- 7db0eed Instantiate DocumentIsolationPolicy test in partial SiteIsolation mode
- 7708fb6 Roll BoringSSL from 1b8fd222b463 to a1e55421c4c9 (1 revision)
- cf28b45 Use Abseil containers instead of unordered_(map|set) in Autofill
- 0acfa04 Roll Help App from okOjaQfNkWe-W_sER... to tgyEsGKoOKhROEutR...
- 00f9231 Roll Chrome Mac PGO Profile
- fa3ab41 [Media capture] update delegate interface for real-time tab update
- 6014a28 Roll Skia from 3167229206b5 to 68dff53238e5 (11 revisions)
- 7eb0ed9 Stop parsing DNS responses within PlatformDnsQueryExecutorAndroid
- 87ab81f Roll Chrome Win64 PGO Profile
- 18fdbf0 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 915dbf1 Disable automated password change from new-password field
- 867d554 Make AutofillValuableSyncBridge read-only for private passes
- c39cc03 Replace variations seed corpus switch with Feature flag on iOS.
- a48c0f8 [iOS] Filter sync toggles by registered Sync types
- bd16b22 Manual roll WebView ARM64 Orderfile from K4GNspgZfuR7-a-df... to mjnMNkmSmfZQpHsll...
- adc1685 Roll DevTools Frontend from be86095badd5 to 1bf048436523 (4 revisions)
- 836a706 [a11y] Add UKM to collect data for Canvas accessibility analysis.
- 204d4d1 Add jonross@ to accessibility metrics OWNERS.
- d2c93e6 Roll Chrome Win ARM64 PGO Profile
- 981923f Update field trial config for RespectUserAgentOverrideInSearchPrefetch
- 14484c4 Switch PA's ReconfigureAfterFeatureListInit to use a struct for params
- cd2d76b Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 3641166 [iOS] Add experiment to use UIScrollViewDelegate instead of Broadcaster
- 6e1dae1 Add experimental support for named-feature() function in CSS @supports.
- 9535af2 WebXR: Fix ineffective width check in XRGPUTextureArraySwapChain
- 583379f Put validation logic behind feature flag
- 2466580 Roll Perfetto from f59a7c6388e2 to 56b888d6f55d (1 revision)
- 0be0add Improve testability of google_apis::IsGoogleChromeAPIKeyUsed()
- fbf569a Roll src-internal from 11809a725ff6 to 05d1aa4d4d4a (1 revision)
- f858d85 Roll Chrome Mac Arm PGO Profile
- d9c1af5 Enable DevToolsProtocolTest.AutoAttachToUnloadedTab on non-ChromeOS/non-Mac platforms.
- 4deeba3 Refactor: Pass PasswordForm to IsPasswordChangeSupported
- 436e94a Add WPTs for programmatic scroll promises.
- 831191a Roll WebRTC from 3d19cb9da84a to a6d83994aaba (1 revision)
- 297b31d [iOS] Update seedColors for TabGroupColorPalette
- eb867fc Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- d97e141 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 503b6d9 Add skeleton WalletPassAccessManagerImpl
- 2684a50 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 73a66d8 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 8858052 [Passwords] Show passwords section with multiple only local passwords
- 95b8d19 [profiles] Use relative path in prefs::kProfilesDeleted
- 37de4b8 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- cbc70eb Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 095b4dd Add stub methods for update/migrate failure notifications
- 5df4d52 [KP] Automatic update from google3
- ad6ef44 [SyncTests] Modernize SingleClientValuableMetadataSyncTest
- cc43201 Roll ANGLE from 5ddf700ffee0 to b69d4b85bd4f (2 revisions)
- f1b00c0 Roll DevTools Frontend from eb8074ebef94 to be86095badd5 (2 revisions)
- 520c764 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- f1351f7 Extend expiry of pixel inaccuracy metrics.
- 9c1dae7 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 95e4816 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 48811bb Roll Chrome Android ARM64 Orderfile from __hRYITdF3zM4PoOc... to cXuqTJ3eRQKwqux0D...
- d02263d [iOS][WebAutnh] Clean up unused util function
- d158402 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 9ab3ddd [Blink] Increase canvas OWNERship
- 0e69e87 Remove local entity when migrating a private pass to Wallet
- f2fba19 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- fb72e47 [CT] Automatic update from google3
- cfc02af Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 00d960d Support masked entity storage in EntityTable
- b962708 Do not use unmasked server entities in EntityInstanceCleaner test
- f721806 Updating XTBs based on .GRDs from branch main
- fa8f7d4 Use masked entities in Autofill AI metrics tests
- 14b5e14 Roll Chrome Android Desktop x64 PGO Profile
- 80d9613 Roll WebRTC from 1d1ee4503cef to 3d19cb9da84a (2 revisions)
- 8bf80f9 Mark tracking protection completion privacy guide metric as obsolete
- 157ac42 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 18d73a7 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- be7a176 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- f846c40 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 8d32bf2 Refactor EntityType::SupportsMaskedStorage
- 46098d3 [iOS][WebAuthn] Fix icb/webauthn folder structure
- 60f9208 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 3258f06 Handle empty permission requests in PermissionServiceImpl
- effa566 Temporarily disable test to land a regression-fix
- fca2d13 [iOS] Fixes reduced animation transform
- dc94949 Roll V8 from 99126f5c3ffd to e04c3a1a2543 (4 revisions)
- be3ec28 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
- 76dd42a Remove unused attempt login test helper
- db58680 [iOS]Remove a string not used in prod anymore
- afa0116 [Sync] Replace AwaitQuiescence in integration tests with other checkers
- 472e680 Roll ios_internal from 0ab93d5e1694 to be1d1ac73623
- af6cde3 [iOS] Fix download filter cell Dark Mode and large title display issues
- a1a1421 [iOS] Update the design of the toolbar buttons
- 59daa94 Correct onFailed and onCancel handling around multiple streams.
- 7c6ead4 Move approx <geolocation> test to ApproximateGeolocationTest
- 4d0c7ae Ship NavigateEventAddHandlerOnPrecommit
- bfe67b5 Roll Chrome Android ARM64 Orderfile from tyPK7cNRGhDocagPs... to __hRYITdF3zM4PoOc...
- 2c307fb IWA: Clean up dead code after dynamic feature flags' implementation
- a946ab7 Make signin test observer observe any signin consent level
- cd43153 Roll Chrome Mac Arm PGO Profile
- c148177 [iOS][Passwords] Remove icb/passwords/ui_bundled
- 21b8bf1 [shape-cache] Remove text length check from IsNGShapeCacheAllowed
- 8725b05 Add moveBefore() test where box is blockified after move
- 3ba1bd2 Disable AutoAttachToUnloadedTab for investigation
- 923fe11 Update meet_effects hash in DEPS file.
- 38fecc0 Roll DevTools Frontend from 88d5fc1b3653 to eb8074ebef94 (1 revision)
- 495a665 Handle user intervention in the OPEN_FORM step
- 5e09d4a [IWA] Fix copy of sub apps feature flag.
- ce16d5c Roll Chromium Variations from 4YM5YNARb4SfUOUAi... to wxMq_DF2hMwBhHn6r...
- 7ac973b Enable proto-based reporting by default
- e4d82ac Roll WebRTC from 066cbff203c2 to 1d1ee4503cef (1 revision)
- ca28dfa Handle masked attributes in Autofill AI suggestion generation
- 66869fb Roll Crossbench from 7cee291edeb7 to 274eec196c53 (1 revision)
- 6d55abc IWA: Add browser test for allowlist enforcement in installer
- f32df99 Roll ANGLE from a24add3ffe1f to 5ddf700ffee0 (1 revision)
- 7f5c06b Revert "Roll WebView ARM64 Orderfile from K4GNspgZfuR7-a-df... to vPeBv49_X7XfSNzXx..."
- da0df4d Add AndroidParentalControlsV2 to fieldtrial_testing_config.json.
- e1d28cb Add growth invariant unit test.
- 7194a27 Add moveBefore() invalidation tests for size queries and selectors
- d0603e3 [AW] Fixing Part 3 by guard against no low entropy source case
- ce66f9f [FRE Refresh] Refreshed default browser screen.
- 6b1eea6 Roll Chrome Win32 PGO Profile
- cf06484 Implement GetUnmaskedPassRequest for Wallet API.
- c7a4f63 [signin] Use accessors for AccountInfo fields in components/autofill
- bbdc87d Roll WebView ARM64 Orderfile from K4GNspgZfuR7-a-df... to vPeBv49_X7XfSNzXx...
- 1e7e857 Roll ios_internal from 36f7c536d851 to 0ab93d5e1694
- e5edfaf Roll DevTools Frontend from ac222e6ba70f to 88d5fc1b3653 (2 revisions)
- 457b852 Move accessibility annotator features out of core/public.
- e352c86 Create kRequestSigninFromSync for sync internals
- 32384eb Revert "Passwords: Make AccountChooserDialogView to be a BubbleDialogDelegate"
- 4188d3e Roll clank/internal/apps from 5c3497440d6a to cc1c9f60cf6d (1 revision)
- 4704240 Parametrise tests for supervised user and fix web filtering issue
- 06bc38a [Signin][Android] Properly force-display the fullscreen promo.
- 4cf7242 Roll Crossbench from 4f70d2ca6ca5 to 7cee291edeb7 (1 revision)
- c58bc32 Revert "Roll Skia from 3167229206b5 to 9325111e6ee4 (1 revision)"
- 9589989 Revert "Roll Skia from 9325111e6ee4 to b7db9f35f0f2 (1 revision)"
- bcc19ad [Android] Add horizontal padding to the Keyboard Accessory
- 4d8b5a7 Roll Chrome Mac Arm PGO Profile
- ce1b7e5 Revert "Roll Skia from b7db9f35f0f2 to 4b62db445e00 (1 revision)"
- e0ac4d3 Roll Projector App from -7IyFMTkWO6N4Ex9f... to Mps9CMNiasBmGM05J...
- 7a92eb4 Reland "ADPF: report different actual duration for frames with throttled swaps"
- 979601e [iOS] Update strings for Reading Mode Content Settings section.
- 7053c50 [PA] Add TaskControlledPurge to fieldtrial
- a9deabb Add policy for Live Caption and Live Translate on ChromeOS
- e7e9cb2 [Android] Fix accessory bar positioning for "Suggest strong password"
- 8792681 Gardener: Disable flaky test
- e985bf5 [Blink] Move CRPSI::RasterInterface() to be protected
- 215b736 [//gpu] Update OOP-R reference in capabilities.h
- d40f559 [Blink] Remove CanvasResourceSharedImage::Provider()
- 84cb32c [Blink] Tighten CanvasNon2DResourceProviderSI references
- 2bd9e0f [Blink] Tighten CanvasResourceProviderSharedImage references
- b14105d [Blink] Have GpuCanvasContext call DoExternalDrawAndSnapshot()
- edef813 [Blink] Eliminate FlushReason::kClear
- b301c7b Roll DevTools Frontend from 7b1b6efb0f88 to ac222e6ba70f (1 revision)
- 113762f [Blink] Have GpuCanvasContext not pass FlushReason::kClear
- 1c56f06 [DBSC] Remove unnecessary member from BoundSessionCookieControllerImpl
- 33e8a15 Add histogram definitions for WebRTC PSNR stats, plus QP for AV1/H265.
- 28c4cd0 WTF: Add StringToIntStrict() and StringToUintStrict()
- cc02e35 Update ChangePasswordFormFinder to accept failure callback
- 35b689c Roll ANGLE from fa84c4284943 to a24add3ffe1f (1 revision)
- 84ed2af Roll Boca Receiver App from 4_iVIgcwIyNeXKA8T... to F2VCDq8gYeDvsfnc_...
- ce2f585 [Okta SSO] Fail in URLSessionURLLoader for an invalid request
- 8443400 Apply StringView::SplitSkippingEmpty in modules/ and platform/
- 7caf5d9 [Okta SSO] Verify request initiator for Okta SSO requests
- adcbb32 [Wallet] Fix duplicate enum value in WalletRequestError
- 4417aa8 Roll Chrome Win64 PGO Profile
- 24fbcbf Roll Boca App from lYna40aJfKQ8hugzm... to VdyEDh2_RCyOGCEt7...
- 179149a Roll BoringSSL from 54febbbc070b to 1b8fd222b463 (1 revision)
- e173e3a Revert "Roll Skia from 4b62db445e00 to 71fedaf9f4ab (2 revisions)"
- 6f672ce Remove explicit usage of the webrtc::ArrayView
- be33e99 Autoshard chromium/src test suites
- 8e610cf [ExclusiveAccessManager] Enable feature by default
- 216858a Reland "Force WebContents rendering if DevTools attaches"
- 193db87 Revert "Roll Skia from 71fedaf9f4ab to 5d891cd7fb7f (5 revisions)"
- b9e8e4c Roll Chrome Mac PGO Profile
- 61d08e8 [SyncTests] Re-Modernize BookmarksSyncPerfTest
- b4d0474 Enable RD all-frames & SkipRendererCancellationThrottle by default
- 1f6f470 Roll WebRTC from 4520c7897c8a to 066cbff203c2 (1 revision)
- cc34aa3 [Frameworks roll] Roll to 867435738 piper revision
- 8292e94 Remove expectations for missing tests in lifecycle, mathml, and webvtt
- 55625ab [Document PiP] Calculate header top/bottom paddings
- 284c7a0 Add comment description to UpsertPrivatePassCallback.
- 7e00886 Roll Chrome Mac Arm PGO Profile
- 7557cfe Fix more tests that trigger multiple navigations with window.open
- 1e4e86f Convert to UNSAFE_TODO in media/capture/video/chromeos
- 1991b55 Add removeExtraHeadersOnCrossOriginRedirect to LoadUrlParams.
- 0ccb70f [//cc] Align TileDisplayLayerImpl code with PictureLayerImpl
- 5830538 [Blink] Have CNon2DSnapshotProviderBitmap lazily allocate SkSurface
- 004644f IDB: SQLite - run database close/cleanup on a separate sequence
- e24715f Roll WebView ARM Orderfile from RFVjK4F1EvSC4cReN... to jdyhn-3UIxO7bpdEO...
- c83ec12 win/conflicts: migrate away from base::Pickle::WithUnownedBuffer()
- 2146de5 [exo] Remove outdated GpuMemoryBuffer reference
- 9b60c01 Roll DevTools Frontend from 32c3bac0c686 to 7b1b6efb0f88 (1 revision)
- 140fc2b Roll WebView ARM64 Orderfile from j080OapMdmNnX9XYo... to K4GNspgZfuR7-a-df...
- 26df747 Bump expiration of DisruptiveNotificationRevocation histograms
- 8724363 [exo] Migrate from deprecated base::Pickle::WithUnownedBuffer()
- 3d14db4 Roll Chrome Linux PGO Profile
- 8e76956 Revert "[realbox]: Stop animation when prefers-reduced-motion: reduce"
- 7ad475a [PA/MO] Allow ScopedSchedulerLoopQuarantine* utility use in early init
- bdb844e Roll Chrome Win ARM64 PGO Profile
- 8244128 [net] Code clean-up with clang-tidy's modernize-use-string-view & performance-string-view-conversions
- ee7059f Refine notification order to ensure displayed one is latest
- 0e58b23 Correct the foreground service type on notification destroyed
- 00a5b9c Roll Chrome Android ARM64 Orderfile from VIOYbbBUDMZvyWPeT... to tyPK7cNRGhDocagPs...
- 862f609 Roll Skia from 71fedaf9f4ab to 5d891cd7fb7f (5 revisions)
- 76b60da Revert "[bedrock] Migrate app_shim_manager_mac.h away from BrowserListObserver."
- 0a13f45 [net] Remove obsolete Secure DNS probe-pref migration
- 4533e53 Roll Chrome Android Desktop x64 PGO Profile
- 3ec08ea Revert "[a11y][carousel] Update AX tree on scroll marker tab change"
- 7cd216d Revert "Convert to UNSAFE_TODO in cc"
- d713b7e Roll V8 from 530c26d49613 to 99126f5c3ffd (2 revisions)
- a85daea actions revamp: Introduce ExtensionActionListAnchoredModelList
- 9481a86 Roll DevTools Frontend from 4d17fb09ce97 to 32c3bac0c686 (1 revision)
- 2570ac7 Roll Chrome Win32 PGO Profile
- b843227 text-decoration: Stop TextDecorationInfo to own DecorationGeometry
- 1227871 Roll Chrome Android ARM32 PGO Profile
- 99c5d6b Create save_and_fill_manager to pac if flag is on
- 39be699 Roll Chrome Mac Arm PGO Profile
- d791775 Roll Chrome Android ARM64 Orderfile from PiShRLm0E87wnT5F0... to VIOYbbBUDMZvyWPeT...
- 06151bb actions revamp: Fix native pointer leak in ExtensionActionListMediator
- b87a6d2 Launch MiraclePtr on Renderer for IS_DESKTOP_ANDROID.
- 10db664 Roll WebView ARM64 Orderfile from U8bMgs21yFCoZ6VM8... to j080OapMdmNnX9XYo...
- c6c7e93 Roll Skia from 4b62db445e00 to 71fedaf9f4ab (2 revisions)
- d4d7221 Remove unused ServiceWorkerSyntheticResponseIgnoredHeaders feature param.
- bc65cd2 PartitionAlloc: Improve compatibility with Skia.
- e22862a Revert "Reenable BrowserControlsPTTest"
- 98191c0 Roll V8 from 01d64e2c6beb to 530c26d49613 (2 revisions)
- 2c571c2 Encapsulate synthetic network request initiation.
- 3bd30c2 Disable PerformancePTTest.zeroCompositorFramesWhileScrollingBrowserControls on desktop
- 94cfe54 Revert "LCP: Use largest painted image for web-exposed entry"
- 351ba11 build: Fix undefined variable in assert
- c107bee Roll Chrome Android ARM64 Orderfile from lhmyC_TQuJrUxy3Za... to PiShRLm0E87wnT5F0...
- 498f2de Require URLLoaderUseProvidedResponseBodyStream for synthetic responses
- 529800f Automated Commit: LKGM 16580.0.0-1075175 for chromeos.
- 58e1751 ios: Sanitize filenames to fix ShareSheet crash with NFC Unicode
- 5f8e441 Implement GetSamplingParamsConfig and GetFeatureMetadata on Android
- 8995c42 Help app: Fix failing HelpAppV2BackgroundTaskUpdatesLauncherSearchIndex test.
- 3c5a662 Change FileSystemAccess to use Content-URI rather than VDP
- 16b5c7e Roll WebView ARM64 Orderfile from sWk2GHjg8iNAlPhUw... to U8bMgs21yFCoZ6VM8...
- 1b1e635 Roll Chrome Mac Arm PGO Profile
- 278d5a3 Roll Chrome Win64 PGO Profile
- a352421 url: Apply string_view to a GURL constructor
- faed32d siso: update to version 1.4.31
- 03e9c1a Revert "Enable the NetworkServicePerPriorityTaskQueues feature by default"
- 0f6b2bc [contextual tasks] Compiles `active_task_context_provider_impl.cc` on Android.
- f9a23e7 [PWA internal clean up] Add explicitly type for webapps::ManifestId
- 5bd6a32 Updating trunk VERSION from 7678.0 to 7679.0
- 8f690d2 Revert "Clean up LocationBar focus and UrlBar management."
- 68f7908 Roll Skia from b7db9f35f0f2 to 4b62db445e00 (1 revision)
- 8807f5c Roll Chrome Mac PGO Profile
- 2eb1baa [E2E] Encapsulate TopInsetProvider observer two-step pattern
- 7336ca2 Roll Chrome Win32 PGO Profile
- b68a551 Roll Chrome Mac Arm PGO Profile
- b0efc7f Add field trial config for AdjustPreconnectRetryInterval.
- 74dc6db [webnn] Fix input/output buffers assembling in litert graph.
- 03d422b Build ash_export.h off of its own GN target
- e590864 Roll WebView ARM64 Orderfile from 07W6KRYQl71pSAPnL... to sWk2GHjg8iNAlPhUw...
- 9713ebb Roll Chrome Android ARM64 Orderfile from ZPZ1dqF6h3Zq30V_G... to lhmyC_TQuJrUxy3Za...
- 62da233 Roll Chrome Linux PGO Profile
- 59bdba4 [media capture] screen sharing notification can stop display media only
- 17a7a86 Roll Chrome Android ARM64 Orderfile from xwO4v-AqjPv7tGQot... to ZPZ1dqF6h3Zq30V_G...
- 331d513 Remove kWorkerThreadSequentialShutdown flag
- baba968 Roll WebView ARM64 Orderfile from b7Wk8QoQhQit30lTA... to 07W6KRYQl71pSAPnL...
- 74173b2 Roll Chrome Android Desktop x64 PGO Profile
- 40f3720 Roll Chrome Mac Arm PGO Profile
- e7f2a0a Roll WebRTC from a13738f233ed to 4520c7897c8a (4 revisions)
- bcb84ec Revert "[omnibox][webui] SubframeTaskBrowserTest & SubframeTaskPDFBrowserTest"