Chromium Digest: 2026-03-12
Overview
This daily summary for March 12, 2026, covers 692 commits, with 489 identified as relevant to developers. The day was marked by a significant number of breaking API changes across Android, Networking, and core Blink components, requiring embedder attention. Key improvements include performance gains in CSS Grid layout, enhanced security for sandboxed frames, and the stabilization of several features. The first relevant commit was
(156499f) and the last was (115d9a2).Android
-
⚠️ BREAKING
The build configuration
default_target_sdk_versionis no longer a settable GN argument and has been converted to an internal variable. Build scripts overriding this value will break. (c285b9c) -
⚠️ BREAKING
The public Java classes
SyncPromoControllerandSignInPromohave been removed as part of a feature cleanup. Code using these UI components must be updated. (0db58b8) -
⚠️ BREAKING
The public Java class
MetricsRecorderin the Send Tab to Self feature has been renamed toSendTabToSelfMetricsRecorder, requiring import updates. (be5ed24) -
⚠️ BREAKING
The public Java class
SigninManagerImplhas been moved to theorg.chromium.chrome.browser.signin.servicespackage. Embedders will need to update their import paths. (737d3e3) -
⚠️ BREAKING
The public Java interface
ClickWithMetaStateCallbackhas been changed. The methodonClickWithMetanow requires an additionalbuttonStateparameter. (1f83783) -
A new setting,
SetEmbedderSuppliedCacheForwardEntriesAllowed, has been exposed to Android WebView, allowing embedders to disable caching of forward navigation entries to save memory. (e48fb38) -
Guest view
WebContentswill now correctly inherit the color scheme from their hostWebContents, improving support for OS-level dark and light modes. (a2c0314)
iOS
-
⚠️ BREAKING
In the iOS fullscreen controller, the public enum
FullscreenExitReasonhas been removed andFullscreenModeTransitionReasonhas been renamed toFullscreenModeTransitionTrigger. (7cfecc2) -
The
DownloadTaskinterface now includes aGetWeakPtr()method to help consumers prevent use-after-free errors. (4b39016)
Networking
-
⚠️ BREAKING
The public
HttpStreaminterface has been changed. MethodsGetTotalReceivedBytes()andGetTotalSentBytes()now returnbase::ByteSizeinstead ofint64_t, requiring embedders to update their implementations. (5895f46) -
⚠️ BREAKING
The
net::ClientSocketPool::PreconnectCompletionCallbacksignature has changed. It now receives astd::unique_ptr<ClientSocketHandle>upon successful preconnection. (88f44d9) -
A MIME type mapping for Markdown files (
.mdtotext/markdown) has been added. (ade6ca0) -
The
ServiceWorkerAutoPreloadfeature has been enabled by default after a successful experiment. (d500868)
Blink & Rendering
-
⚠️ BREAKING
Core string manipulation methods in Blink's string classes were renamed for consistency (e.g.,
StringView::CodepointAtis nowCodePointAt, andString::CharacterStartingAtis nowCodePointAtOrZero). Low-level string manipulation code will break. (42dbfc5) -
Performance of CSS Grid layout has been significantly improved by migrating key data structures (
GridTrackCollection,GridLayoutData) to Oilpan, reducing data copying during layout. (a1db64d) - The rendering pipeline is now more robust, as invalid browser controls height values sent to Viz are clamped to a valid range instead of causing an error. (d22dd57)
- Web App Manifest localization is now enabled by default. (0c74d0b)
-
A bug where
inputandchangeevents were not fired for declarative Web Model-View-Controller (WebMCP) tool executions has been fixed. (246e55f)
Services & Components
-
⚠️ BREAKING
The public
FormFieldDatastruct and its correspondingautofill_types.mojominterface were modified to includeselected_option_text. This breaks consumers of this data structure. (95b08b3) -
⚠️ BREAKING
Media playback error handling has changed. A hardware context reset that fails to recover will now surface a
PIPELINE_ERROR_HARDWARE_CONTEXT_RESETerror, which may require updates to application-level error handling. (bbfb0b5) -
⚠️ BREAKING
In the tab restore service, the public member
sessions::tab_restore::Window::typehas been renamed towindow_typeto resolve a name shadowing issue. (4b2975c) -
⚠️ BREAKING
The virtual method
IsPossiblySkippableAdEntryForTesting()has been removed from the publiccontent::NavigationEntryinterface as part of a history intervention refactor. (61ed18a) -
⚠️ BREAKING
The static method
bookmarks::BookmarkNodeData::GetBookmarkFormatType()has been removed. The format type should now be accessed viaui::ClipboardFormatType::BookmarkEntriesType(). (dfec277) -
The
google_apiscomponent now provides new factory methods (CreateAccountNotFound,CreateRequestCanceled) onGoogleServiceAuthErrorfor improved error creation. (1286fb1)
Security & Permissions
-
A browser-side validation check has been added to
RunJavaScriptDialog()to enforce theallow-modalssandbox attribute. This prevents a compromised renderer from showingalert,confirm, orpromptdialogs without permission. (7e25766) -
The
kWebPermissionAPIfeature flag has been removed, as the Web Permissions API (navigator.permissions.query()) is now a stable, long-enabled feature. (b62aea4)
Extensions
-
Extension messaging will now correctly throw an error when a script attempts to send a
SharedArrayBuffer, which is unsupported, instead of silently failing or resolving tonull. (7c8c8fb) -
A large number of internal API tests (e.g., for
nativeMessaging,omnibox,printerProvider) have been migrated from Manifest V2 to Manifest V3. (b2f7a35) (868a121) (4e191e7) (70ea9fa) (c1fb238)
Build System & Infrastructure
-
A large number of JNI bindings have been updated to use the
@JniTypeannotation, improving type safety and enabling build-time checks between Java and C++. (59c8330) (7555add) -
Code modularization continues with many components being moved into their own
BUILD.gntargets to improve dependency management and build structure. (9c845fc) (c132b3d) (3401c7c) -
Local debugging on macOS using the native Apple linker is now easier, as certain linker warnings are suppressed when
use_lld=false. (970efbd)
All Commits (692)
- 115d9a2 Remove TabStripIncognitoMigration from testing config
- fd10b07 Import wpt@a2d381831d9ee59cf00ae3c6b53d9f4cc2fed94e
- e078ec2 Replace UNSAFE_TODO in WaveShaperHandler with safe operations
- 2d08bf0 [sts] Add kContextualTasksContextSmartTabSharing feature param
- d3a6876 Revert^3 "[TabData] Tab sets data from TabDataObserver"
- c5582ee Roll ios_internal from 2f6f26fcb674 to dd4728d2e977
- 5f44f72 Roll clank/internal/apps from fccbb02591d9 to 8ee05341a32c (1 revision)
- de506e6 [Extensions] Check start token uniqueness upon SW initialization
- 24bf83c Make tab strip context menus remove windows when they become empty
- bbfb0b5 media: Report hardware-context-reset as an error if not recovered
- 8a31b9e [VerticalTabs][Glic] Implement Glic nudge for toolbar.
- a2b8373 Remove photo picker from manifest comment about permission requests.
- 31c4283 Roll vulkan-deps from 8b5c3f78b144 to ab4e8b222daa (3 revisions)
- 6d6ecc7 Reland "[composebox] Fix infinite loading by adding cluster info retries."
- b3156b8 Roll Chrome Mac Arm PGO Profile
- 4544a92 Roll ANGLE from 7a68f0166454 to fc2e9d6218eb (4 revisions)
- 10acabd [Extensions] Drop more IPC messages from stale service workers
- 1985151 Roll Skia from 255bd243276b to 6b63e69c6038 (3 revisions)
- 48ce7c1 Fix exit-time destructors in blink/common
- 9b002fb [Extensions Cleanup] Simple JS updates in api_test/all_urls
- 9f7e66c Roll goldctl (mac) from kIDVPtxWthlWbUqPM... to Eb9kNshEHEJ20BulB...
- 70ea9fa [Extensions] Update chrome.test API tests to MV3
- b851d8d [aim-eligibility] Add fusebox check to Omnibox AIM Updates
- 441c45a Roll BoringSSL from 1ec43b43bb53 to de8c7af5e7c4 (1 revision)
- c1fb238 [Extensions] Update platformKeys API tests to MV3
- 678d4c9 Roll Chrome Android ARM32 Orderfile from lV1TZ8HKQTioF79gZ... to f4elXrFl7ROboXf2E...
- 9c845fc Modularize chrome/browser/site_isolation/
- e241171 [fedcm] Open the anchored message when the chip is clicked
- d440c7a [iOS] Revert adding sourceURL to JSFeature scripts
- 1d25ccc Roll compiler-rt from e1e57b877616 to c8ee65668814 (3 revisions)
- 5d4a54c [omnibox][next] Fix AI Mode button selection not opening due to mismatch
- 1ed9ed1 Explicitly allow reentrancy for ArcAppListPrefs::Observer
- 39c024b glic: Allow sharing Android Native New Tab Page
- 420f27e [composebox] Close Composebox on query submission or match click.
- 9077a0e [projects] Prevent hover deactivation when hovering over a button icon
- fbeb7b3 [projects] Add scroll bars to tab groups and threads lists
- 3819c65 [contextual tasks] remove excess space
- c8ec0ec [cobrowse] Replace usage of `RunUntilIdle()` in contextual tasks tests.
- bdcb189 Fix DefaultOptimizerSetting invariant enforcement.
- ed535c2 Ensure that onServiceStatusChanged doesn't assume readiness
- 0198c37 Use incognito type when querying for instances
- b64b85b [contextual tasks] Change `ContextualTasksUIConfig` from
- ce6ad59 [RWS] Remove outdated UMA metrics
- 5aa1695 [Vertical Tabs] Allow actor spinner to decorate close button
- b5535a8 Use String::ContainsNoAsciiUpper() when validating URL schemes
- 1e62298 Roll src/third_party/libaom/source/libaom/ 98ce0d2a6..0c15af06a (19 commits)
- f52c39c Replace UNSAFE_TODO in OscillatorHandler and kernels with safe code
- 8000b8a [contextual-tasks] Pass vsrid from injected inputs to file info.
- 6402f82 Revert "[Popular Sites] Add #popular-sites-us-refresh flag with 3 arms"
- 8c44079 Roll src-internal from eca201b7c190 to 3919be3703b5 (4 revisions)
- 9b7091a [TBS] Introduce TabBottomSheetWebUiContainer and TouchHandler
- 95b08b3 Add FormFieldData::selected_option_text_ and fix select filling
- 7531b1a Roll Chrome Android ARM64 Orderfile from hFwmTss07BrxjjdRg... to YkiIHVWpevAA0Elxj...
- 60e5a9a [iOS] Remove launched and unused Gemini flags
- d037758 [iOS][mvt-customization] Move a11y actions retrieval to the mediator
- 7a83492 Convert UNSAFE_TODO in AudioWorkletGlobalScopeTest to safe code
- 66d3188 Android: Add error handling and tests to devil_util_bin
- 572a1aa Update CBB autoroll for the builds refs
- e701f7a Remove bug references from comments in AXMediaAppUntrustedService.
- c3766d1 [SVG] (1) UKM filters applied to embedded content
- b928cb3 Move StackScroller.java to overlays/strip/
- 859ae94 Roll WebView ARM Orderfile from gddXamTLvM-AHVFTW... to BeBDE2e5CQXB9-D_k...
- 7840904 Roll WebView ARM64 Orderfile from UvC1GvOI7rmjCioFZ... to MvjJ_Vt3ssUPqHAdT...
- 5efce49 [Glic] Add MTB feature engagement
- 06c781e Roll Depot Tools from 3de3b74fc6d5 to 27acdb642642 (1 revision)
- 87a7c77 Replace `.count(key) > 0` with C++20 `.contains(key)` for readability.
- 55cf519 LPP: Remove unused string (invalidPin) from chromeos_strings
- 7123ef4 Refactor GlicWidget to use a hit-test callback on ChromeOS
- 47b03c3 Roll Dawn from c4a63a567b25 to 6ec9bf51b095 (3 revisions)
- c821160 [Extensions] Update system.memory API tests to MV3
- 1eb6664 [Clank] Add test for AppTask routing in launchIntentInInstance
- c5d67fe Revert "[TabData] Remove TabData usage from TabStripController"
- af16b2d Roll Chrome Win64 PGO Profile
- bb785b0 [Side Panel Infra] Use TabListInterface and update includes
- 5066b3d Roll Chrome Mac PGO Profile
- 55a5420 Add event logging in Client Side Detection host
- 5a2ee1d Refactor draggable region hit-testing for frameless app windows.
- b1968ce Roll ios_internal from 8a47eaf09adf to 2f6f26fcb674
- 0264fdf [Popular Sites] Add #popular-sites-us-refresh flag with 3 arms
- e149e8d [iOS] Add EG test for Enhanced Autofill toggle
- f2caf3d Fix Tab Strip Empty Space Context Menu Width
- 4631ec4 Roll Chrome Win ARM64 PGO Profile
- 0b65c1e android: Clean up Android.CustomTab.CannotOpenUrlInBrowser.IsPdf
- d7825f2 Sync feature protos.
- 5d8fda4 [page actions] Allow PageActionObservers to observe anchored messages
- 83af091 Remove redundant string creation with GURL construction
- 303a63a [iOS][AppBar] Add Actions to New Tab Button Menu
- 0796c11 Add automotive feature to WebView
- bcaffe0 [PWA]: Add browsertests for getInstalledRelatedApps()
- 0c74d0b [PWA] Enable web app manifest localization by default
- 85e8807 [autotest] --run-changed Test Files Existence Check
- 29090b4 Roll Infra from 4a1223e49952 to 09ad27bb7a42
- 8be3dad [Extensions] Update interactive tabs API tests to MV3
- 2d104b7 [Glic] Refactor window dragging for structural lifetime safety
- 8a9a869 [realbox] Remove TallTopContext variations from NTP Realbox Next.
- 0982092 [Extensions] Update system.display chromeos API tests to MV3
- b6a5742 Roll Chrome Win32 PGO Profile
- 6ff3b9e Decouple WaveOut and WASAPI max channels
- 496e830 [Bundled Settings] Hide bundles when secure DNS is forcibly disabled
- f57f9f1 Roll Skia from 8c67ff183746 to 255bd243276b (1 revision)
- 30a6861 Revert "update guidance for //chrome to not add new build flags"
- 477bcf6 [Extensions] Update system.display API tests to MV3
- 6d36ea4 Roll wpt tooling
- f096f8b Add missing litert_cpu_options to BUILD.gn.
- efeaa0d [Extensions] Remove unused test files from chrome/test/data/extensions
- 3b7e0d9 Remove some redundant map lookups in //base
- 31212e1 Geolocation: Split TimeToFirstPosition for GMS Core on Android
- b4caf6e Roll goldctl (linux) from PPEL_oOkf9-SPuFaV... to 4fnVzSUZyh1p7YXnN...
- 73cc6c6 Roll BoringSSL from 5e289a79529f to 1ec43b43bb53 (5 revisions)
- f8a73b2 [BugFix] Add padding to TGListBottomSheet when there is no bottom inset
- 8758b69 [BottomSheet] Add hasBottomInset() to BottomSheetController
- affeb4a update guidance for //chrome to not add new build flags
- ea891fe Roll Crossbench from 3e5608d60744 to 1ac0ef89e196 (1 revision)
- 538b47c Roll goldctl (win) from shcd-qoULF6dyzMXB... to 4W_tBBIhZtMF1saPn...
- 75bb187 [rust] Initial `cpp_to_rust_cheat_sheet.md` (covering `DCHECK` etc.).
- f9973ce [chromedriver] Increase kImplicitWait for ASAN in commands_unittest
- e41f04a Roll clank/internal/apps from a825d2105de0 to fccbb02591d9 (1 revision)
- f144f59 [iOS] Update guided tour bubble on rotation
- c132b3d Modularize chrome/browser/status_icons/
- 6049295 [x-plat promos] Fix Tab Groups promo presentation logic
- 0eb2ca8 Roll goldctl (mac arm64) from x6cJV0oo5p4lAE4JM... to FIALwDBMkRrBWYrp5...
- 922d32d Add anchored_message_text to CueingResult and kUseAnchoredMessage feature
- f20943a Roll Chrome Android Desktop x64 PGO Profile
- 20ea0b1 [iOS] Update metric expiration date
- 6c20d27 Roll Chrome Linux PGO Profile
- 9eebdcf PrintPreview: Migrate remaining tests to use async/await.
- b80e38b WebUI Browser: Implement SurfaceEmbedHost:AttachConnector
- f5c4ada Harden shared image pixel spans
- 97c0bfc Fix accessibility name for third-party cookies toggle in Page Info
- 5f9b7a2 Roll Chrome Android ARM64 Orderfile from WJBf9dTO5asz_Hiff... to hFwmTss07BrxjjdRg...
- c285b9c Make default_target_sdk_version settable by clank/config.gni
- 1239fb6 [ios] Enable kAutofillPaymentsSheetV3Ios by default
- cff210a Enabled cr_action_menu test for android
- a1d8d86 [TcpConnectJob] Block progress while potentially waiting to be destroyed
- e735020 Roll clank/internal/apps from c3dc2715f48f to a825d2105de0 (1 revision)
- bd07993 WebUI: Update codemod script to use es modules
- 4ea901f [NtpSimplification] Set NTP cards "All cards" toggle default value on Android desktop.
- eb024c8 Add ContentAnnotatorSemanticMatchClassifier.
- 92d1a26 [search aggregator] Set associated_keyword for featured search matches
- 0455136 [Clarity] Allow anchored messages to be updated when model is updated
- 37f475b Fix report_unsafe_site_dialog_views.o DEPS
- 60d8fb7 Fix weird 'RunUntil' replacement for RunUntilIdle
- 1feae2b Roll Perfetto from d798e01b99a0 to a3dfed061e6a (2 revisions)
- 2e78ee8 [iOS][AppBar] Refactor UI Actions for New Tab and Group
- 32e1753 [Read aloud] Log when the engine stalls
- 2519519 Fix extension install invalidation not working
- 1e1cde7 Roll Chrome Android ARM32 PGO Profile
- 253cef9 fuzzilli: Remove unnecessary import
- 5f191ad [iOS] Add ios to OnFileDownloadedEnterpriseConnector policy supported platforms.
- 95e9a8a Revert "[Vertical Tabs] Fix mac immersive mode to not show extra space on switch"
- 6cb42cb [Extensions] Add regression tests for chrome.storage.local corruption
- f5e3522 Roll vulkan-deps from ef1add7e0ab1 to 8b5c3f78b144 (2 revisions)
- bb8bc6b Fix unsafe buffer usage in ImageDecoderImplTest
- 1914bdc [Frameworks roll] Roll to 882613898 piper revision
- 6832021 [grid] Use consistent space for baseline calculation for current phase.
- f3658f3 Revert^2 "[TabData] Tab sets data from TabDataObserver"
- 32ae6a1 Revert "[TabData] Tab sets data from TabDataObserver"
- a308f27 Check IsBox() in IsOverscrollContainer() to prevent cast failure
- f1b9f68 [Side Panel Infra] Remove hard dep on browser from side_panel_ui_base
- 1dea123 Roll Chrome Mac Arm PGO Profile
- 8823b8c Roll glic-test-internal from 3c9b6a28780d to e00ae46c7865 (1 revision)
- f1abda5 Roll src-internal from 3612a10077ff to eca201b7c190 (1 revision)
- c5ee8a8 Roll ANGLE from 69360e45f63e to 7a68f0166454 (1 revision)
- c65d635 [Feed] Reland: Removes feed header related code
- 54cb055 [reland] [contextual tasks] double tab deduplication via url
- 95dead5 [Extensions] Remove unused extension api_test data files
- 2be9b9f [indexeddb] DumpWithoutCrashing when 10k connections accumulate in a renderer.
- 04f4152 [glic] Implement delayed warming for the WebContents pool.
- 097233a Roll Skia from 38761e1803d0 to 8c67ff183746 (2 revisions)
- 0fcd5d4 [iOS] Add GeminiFREWrapperViewController to replace deprecated BWG
- 069455b [carousel] Fix RTL scroll markers arrow keys
- 49305e1 Roll V8 from abd8932922cc to 4edf2e74f052 (7 revisions)
- 231ccad [TabData] Remove TabData usage from TabStripController
- f81c773 Roll WebView ARM64 Orderfile from zDQpaZsndoIw7cK6o... to UvC1GvOI7rmjCioFZ...
- efa1b8c [Setup List] Scroll to beginning on task completion
- b7653d1 Roll DevTools Frontend from aaad4e192069 to 1657ab33c050 (3 revisions)
- 9a7b7ec [Glic] Add GlicToolbarHeightSidePanel to fieldtrial_testing_config.json.
- 98cbcf2 Revert "[AppBanner] Switch to JavaObjectWeakGlobalRef"
- c657aa0 Add @JniType to a batch of files in //components (#6)
- c748d96 [WebGPU] Run 'blink_perf.webgpu' and 'blink_perf.webgl' on linux-perf.
- e202112 Enable UnlockDuringGpuImageOperations by default.
- f5798f8 [iOS] Remove legacy Gemini snapshot logic in tab helper
- 485e446 [DBSC] Alter token_service table to store mtls token binding information
- e8e88e4 jni-type-conversion/SKILL.md: Remove unused using statements.
- 730ebad Roll Chrome Win64 PGO Profile
- a227498 Merge //chrome/browser/engagement:engagement and :impl GN targets
- 964b6c0 [Gap Decorations] Remove dead code
- 81dee9d Remove ClientHintUAHighEntropyValuesPermissionPolicy feature
- f418783 Roll ios_internal from 7f289054b25d to 8a47eaf09adf
- a9eca17 DOM: Fix unchecked menuitem popover dismissal logic
- ab31a1e [Extensions] Update settingsPrivate API tests to MV3
- f55ee8f WebUI Browser: Implement SEConnector::Attach using WebContentsUserData
- 0fa4bed policy_definitions: remove "chrome_frame" future_on/supported_on
- 4150941 [Setup list] Fix Default Browser promo visibility in Setup List single-cell mode
- b6ce062 Roll Crossbench from a42054c128bf to 3e5608d60744 (1 revision)
- ab92725 [WebMIDI/Android] Fix destruction order n MidiManagerAndroid
- 5e68896 Roll Depot Tools from a4e677522da5 to 3de3b74fc6d5 (1 revision)
- e32ccdc [CodeHealth] Remove exipired histograms Renderer.ContentProduction.*
- 932d82e Add sync metrics owners as sharing metrics owners
- b48ccac Enable more tests for devtools on extension_core supported platform.
- 871803a glic: Record ProfileEnablement metrics.
- 6b95909 [Tabs] Disable VerticalTabGroupViewTest.EditorBubbleOpensOnEditorBubbleButtonPress
- 83412ef [GlicSelection] Add glic region selection cursor icon
- 9a0bf9a [ntp-doodles] Create user prefs for Animated Doodles and Murals
- ecab05e Roll Manifest Merger from xT8A6Q_b44_iYKqAM... to KYQSw0Ej8zT_IRNL0...
- b411149 Hide WebAppBlockedMigrationInfoBar for a week after dismissal
- 30e510e [glic] Clear WebContents in Android CoBrowseViews
- 71e1519 Add history/OWNERS to cr_components/history/OWNERS
- 39591ca Roll Android Lint from 1N_9yErKkcZgqyxBg... to UdJPLkDOu5joGtPdw...
- 50d1ae2 Roll R8 from AVViRP05v8_iDI-43... to UMLn7pE7DklTsk-SI...
- 3bdda20 Introduce OptimizedReturnProxy to make returning a union cheaper
- c661475 [ios] Add a provider method to update floaty prompt
- ea19652 Roll WebRTC from 201168a998a4 to 3e0a723522b8 (22 revisions)
- 45784fa Convert UNSAFE_TODO in PeriodicWave to safe operations
- 06aa99f [webnn] Pass ContextImplLiteRt by reference instead of pointer.
- 75bd58d Roll clank/internal/apps from 5e0d5616dc2a to c3dc2715f48f (1 revision)
- d91b81b LPP: Remove dead code (writeUma) from setup_pin_keyboard.ts
- fe419c0 [Cleanup] Incorrect vendor_id format disables GPU blocklist
- 6f335ff Add protected ActuationTool::ResolveTab.
- eb1b025 Roll aapt2 from vUP1cs7krVsNHbUJp... to gsaUgZUqoyD0XG1E9...
- f12258e Roll Perfetto from 99ca8b80a7df to d798e01b99a0 (3 revisions)
- 904a4a0 [style] Fix parsing of CSS will-change.
- b2266f4 Roll Chrome Win32 PGO Profile
- 0d9738b Mark sticky activation pref as non-LOSSY.
- f5fec65 Add tests for SendTabToSelf text fragment sync
- 39d5350 Extend expiration for several Navigation.Timeline histograms
- 98ba321 Remove GlicMultiTab from GlicMultiInstance config
- 3401c7c Componentize chrome/browser/undo/
- 7630d60 [glic] Add user_input_submitted_while_bound to EmbedderEntry
- 1d29e2f ose-split: Cover Android in migration browser tests
- 73b5dd0 Roll Chrome Android ARM64 Orderfile from hApPQSPj4cy56BCso... to WJBf9dTO5asz_Hiff...
- e1c8b76 Add test coverage for the identical randomization of studies.
- 5753be2 [Peripheral] Update cursor on mouse hover when invoked on RenderWidgetHostViewChildFrame view
- f2ffcdf Replace attribution_reporting::ParseError with std::monostate
- 047891f Roll src-internal from b7a7a350531b to 3612a10077ff (1 revision)
- f0ea814 Pull installable_utils.h into its own BUILD.gn
- bd5726c [PDF Ink Signatures] Change return type of StartAdd()/StartRemove()
- b8cda53 [iOS] Move the toolbar tab group entry point
- b34585c [PDF Ink Signatures] Verify increasing IDs in PdfInkUndoRedoModel::Add()
- c2535b5 [PWA] Deflake SSLUITestWithWebApps by waiting for activation
- 3539ba4 Add field trial testing config for OmniboxImprovementsForLff
- a8e5a0f cc: test: Add HTML page link in test output to help diff images
- 429dbd5 initial_margins are the margins *without* auto-margins applied.
- 15e7c2a Clean global state at the end of AppShimControllerTest.* tests
- 337662a Update //third_party/boringssl/OWNERS
- 6912593 Fix tools/jj/setup.sh
- f2b57d2 Roll WebView ARM64 Orderfile from MRtJbbnbykRhIvQzL... to zDQpaZsndoIw7cK6o...
- ade6ca0 Add markdown MIME type mapping
- a2346ae Extend expiration dates for two PageLoad histograms.
- 7553162 [iOS] Update expiration date metric for HostedDomainFetchDuration
- 833b5f8 [iOS] Remove Default Browser Magic Stack card flag metadata
- 0e12612 [Bookmarks Tree View] Ensure drag/add/remove changes are propagated
- 5455371 [webaudio] Temporarily disable buggy NEON code path in OscillatorNode
- a3a9302 [iOS] Update metric expiration date
- a2c0314 [Android] Guest contents inherit color scheme from host contents
- d8c1839 Record Autofill.Actor.AutofillSuggestionsPerDialog metric.
- 3992a1f Add 3pp scripts for mold linker
- f9c77c3 Roll gn from 83c605e5dcc3 to 2941d2a26fa9
- 052979c [<install> Element] Fix renderer crash on <install> use in iframes
- fabd3b2 Update expiration date for Signin.* metrics
- befddd1 Add missing inputs to Skills section
- 5c8fdde [fedcm] Fix small UX bug clicking on the page action for sign-up users
- df14a71 Roll Chrome Mac Arm PGO Profile
- ccc1dd1 Register IOSProfileMetricsServiceFactory in keyed services
- 42a1204 Roll DevTools Frontend from 1d30a6ec3c99 to aaad4e192069 (1 revision)
- a992188 [composebox] Add user action and histogram for voice search queries.
- 8f3b29d [iOS] update expiration date for NewTabPage.LogoShowniOS
- 6ee7f5a Rename browsertest file.
- f450041 [Contextual Tasks] Remove c_ prefix from gemini server IDs if present
- ffd1658 Roll clank/internal/apps from dd007607c0a5 to 5e0d5616dc2a (1 revision)
- 859df51 [iOS][aim-eligibility] Gate iOS fusebox on `IsFuseboxEligible`
- 629fb67 [BottomBar] Define various params
- bc0f0d2 [B4B] Cleanup: Remove kSyncBookmarksBatchUploadSelectedItems kill switch
- ce67d88 Update ForceSigninVerifierTest to support ConsentLevel::kSignin
- df866ba Fix flaky DownloadsFocusTests
- 1e2b192 Modularize chrome/browser/content_language tests
- 25b7c33 Roll Webpagereplay from b53b8b0f65d8 to 3ce1d13459b9 (1 revision)
- 8797d97 [Okta SSO] Enable the feature flag by default
- 6f71ae2 Roll Crossbench from 3e49f5c20f1c to a42054c128bf (1 revision)
- 5aaa009 Add tracing events to debug Webium new-window not reusing process
- 52f5ab8 [Contextual tasks] Add user action for toolbar close tab button
- a0ccdd0 Roll clank/internal/apps from f5e3080c10ab to dd007607c0a5 (1 revision)
- 8a26722 Keeping the chromium implementation names deobfuscated
- dd8c744 [Actor Login M2] implement permission merging for UI
- 5d198ec Roll ios_internal from 1d846f2ce697 to 7f289054b25d
- b62aea4 Cleanup kWebPermissionAPI feature flag
- 556b062 [Actor] Fix flaky tests in context_sharing_border_view
- 8077fe9 Roll vulkan-deps from e27a0b3bd0ea to ef1add7e0ab1 (2 revisions)
- 6ac84ec fjord-oobe: Update squid and cuttlefish enrollment error messages
- 812aab4 [headless][wasm] Fix Wasm trap handler for headless_shell
- 373776d Reland "Implement basic observers for DirectServerEntityProvider"
- 73b55d2 [gap-decorations] Address flex test marked as failing and found by fuzzer
- 21bd525 Reland "Roll src/third_party/boringssl/src/ eedf10c1f..5e289a795 (3 commits)"
- 3fd02d8 Roll FuzzTest from 2145ac8a7576 to 41e160679e3c (1 revision)
- 3b7675a Roll Perfetto from f613b078cd0a to 99ca8b80a7df (1 revision)
- 9f18cdc Roll Skia from 3054ca0ef184 to 38761e1803d0 (1 revision)
- f169d4f [iOS] Update AppBar button appearance based on Fullscreen progress
- 152bfa9 [iOS] Update Startup.IOSColdStartType expiration date
- da32d12 P2 Browser side changes for implementing previewHandwritingGesture
- 5596e05 [media] Update MailboxConverter test to create SI with color space
- ab44baf P1 Blink Side changes for implementing previewHandwritingGesture
- a476637 Roll Chrome Android ARM32 Orderfile from cDOrfG8L66PDDvYfQ... to lV1TZ8HKQTioF79gZ...
- 1a672e0 Roll clank/internal/apps from 32c2ceb5e8ca to f5e3080c10ab (1 revision)
- 5895f46 Convert HttpStream to ByteSize
- 720ad41 Add a flag to ignore RM badge threshold
- 13f2ce9 [SxS] Clean up split view flags
- ed65bab Reland "Allow the Indigo onboarding dialog to resize automatically."
- a7b9590 Revert "[ios] Enable enable_swift_cxx_interop for Canary 148 to run an experiment"
- d0e7500 [CodeHealth] Fix PermissionChip pixel tests
- 5e1d9db a11y: adds dumpWebContentsAccessibilitytree to e2e test framework
- e8eaa42 [DCSI]: Changes for stream based factory selection.
- 4b60c8e [gpu] Remove FormatInfo from AHardwareBufferImageBackingFactory
- 0dafc4f [rust] Remove `.o` item from `rust_indirect_inputs` in `siso/rust.star`.
- 66411fd [Extension] Enable structured clone serialization for messaging.
- 5649cfe Roll Chrome Android ARM64 Orderfile from wh_0f770NBeQz2Jw7... to hApPQSPj4cy56BCso...
- 83b2f0c [Glic] Implements PiP Coordinator and Hooks up to existing Controller
- b09e392 Roll Media App from hlPOLMaiEparZfdNM... to GGwgjd3STstwiKMDc...
- 45db3fc Roll V8 from b3c11715e59e to abd8932922cc (19 revisions)
- 246050f [indexeddb] Add feature to inhibit compaction in cleanup tasks.
- 78cf195 [iOS][Assistant] Minimize container on dimming view tap
- 25e7303 [ios] Enable enable_swift_cxx_interop for Canary 148 to run an experiment
- 507b47d Roll Help App from Efm46F-VpjYXFX-el... to ABhIm9hG-o32jrHc1...
- 145b299 Roll Webpagereplay from c980c3469d86 to b53b8b0f65d8 (1 revision)
- b45c910 Roll android_deps from umaYTBt4Vsa5QZYp5... to 3VYcqPssBf1YI1iK0...
- 21f489c Make SetWebClient in host observable and use it in invoke handler.
- e0491e2 Roll ios_internal from cd9099937714 to 1d846f2ce697
- 8ffa329 Roll Chrome Mac PGO Profile
- 1b46a55 [ios] Use ShowToastWhenOpenInUnexpectedMode in TaskRequestUserActivity
- 45524ac [v8/metrics] Add some GC metrics split by input mode to UMA
- 9cf5978 Re-add several V8 field trial testing configurations.
- 3069c4c Extend the missive storage usage non-uploading histogram
- 6ca1564 Roll Crossbench from 05ca280aa238 to 3e49f5c20f1c (1 revision)
- 7c8c8fb [Extensions] Error on SharedArrayBuffer's in extension messaging
- 4b2975c Rename sessions::tab_restore::Window::type to window_type
- a876493 Roll Chrome Win64 PGO Profile
- d9f2fe3 Roll WebView ARM Orderfile from 3-7D9jCzhIvN_rL2R... to gddXamTLvM-AHVFTW...
- 4effb5e Roll Chrome Win32 PGO Profile
- 0e8d7ef Remove flushing arm from UmaSessionCorrectnessFixed experiment
- 0ae4a06 spanification: automatically spanify base/logging.cc etc.
- f4d0bed [build] Disable vectorizers during Mach-O ThinLTO link step
- cee8bfa Roll Dawn from 5dd4bab0d750 to c4a63a567b25 (6 revisions)
- 1584655 [iOS] Attach input plate to keyboard in cobrowse
- c80a9df Roll Chrome Mac Arm PGO Profile
- 9cf3898 Disable flaky test WebUIToolbarWebViewBrowserTest.ParseFinishedToFirstUpdateMetrics
- 6963be5 Remove DEV_SUFFIX from WebViewBuilder feature constants
- 9f60e90 [accelerators] Fix potential dangling ptr
- 3dbefff [CT] Automatic update from google3
- ee0844f Revert "Add debug dumps for slow background tracing init"
- b1e10fc Roll Skia from b2458cec3e2b to 3054ca0ef184 (1 revision)
- ef6d279 Rust CPSP: Convert pseudo schemes set.
- e37a970 [Persist] Handle existing unmarked Legacy-backed windows
- fd84acd [Persist] Create shadow Legacy stores in the factory
- bf1e3c7 [Persist] Add shadow store support for TabPersistentStoreImpl
- a21f494 [KP] Automatic update from google3
- ad1f962 Respect two-step shutdown of KeyedService in SubresourceFilterProfileContext
- a667239 Respect two-step shutdown of KeyedService in PageContentAnnotationsService
- 61ed18a Implement Back-To-Ad Intervention behind a feature flag
- 7f80333 Add jkarlin@ to heavy_ad_intervention OWNERS.
- 356fd6e [CoCE]: Update UA styles to support system color schemes
- 30daf92 Roll DevTools Frontend from f9dcfeee69bc to 1d30a6ec3c99 (3 revisions)
- cf0c6e5 webauthn: Store opportunistically retrieved keys via state machine
- 0f18310 [Vertical tabs] Prevent recreation of all icons when shared group attention status changes
- e7c2c0f [BugFix] Fix centering on "New Tab Group" row for TGListBottomSheet
- 8f324bc [Encrypt Bookmarks] Fallback to clear text file
- 82e3abb [PerProfileMetrics] Log combined histogram for Profile Index too high
- 4d1694e WebGL: Fix dereference of ctx before null check.
- 34838d7 Updating XTBs based on .GRDs from branch main
- 425cdb6 Switch CSSRandomFunction flag to experimental
- 62c3e7b [AutofillAI - M4] Write render tests for the save/update prompt.
- 056735b Roll vulkan-deps from 3ad5a6d56b25 to e27a0b3bd0ea (1 revision)
- 2751c74 Reland "Implement non-overlay mode for ::overscroll-area-parent"
- 83b1fa8 Cleanup finished finch field trial experiment
- f107a7a Roll Chrome Android ARM64 Orderfile from GL-Yux8cNXImDM7Es... to wh_0f770NBeQz2Jw7...
- 793c050 Roll WebView ARM64 Orderfile from AVpO-SRbUXDGCg5bs... to MRtJbbnbykRhIvQzL...
- 49dc072 Prerender: Fix outdated comments in PrerenderHostRegistry
- 56a998f Add CanSubmitFeedback capability for desktop
- 6f6daff Updating trunk VERSION from 7731.0 to 7732.0
- 94eb372 Roll Catapult from f09a1e32d2fc to b9ddc08533ac (2 revisions)
- 3000352 [iOS] Remove passkey reauth module override
- c5a3820 [FRE Refresh] Fix benefit card font size.
- dffd355 [FRE] Proceed client field trial for before FRE refresh HaTS to Beta
- 64b33ee Roll Chrome Win ARM64 PGO Profile
- 66a39ff Revert "[Settings Search] Let TalkBack announce the entered query"
- 68373b1 Roll Skia from d4a01559efb3 to b2458cec3e2b (1 revision)
- 27350fd [Actor Login M2] Create a skeleton of actor login permissions service
- 4b39016 [iOS][Web]: Add GetWeakPtr() to DownloadTask
- 2ad20a1 Separate character-count metrics for on-device-translation
- 03f245b Handle orphan metadata from ValuableMetadata table in ValuableMetadataSyncBridge
- 1036feb Roll Chrome Android Desktop x64 PGO Profile
- c0f197c Extend GCM.ClientStartDelay histogram
- 84b471e Roll ios_internal from edad5c2b85ea to cd9099937714
- 423dd3a Make CloudBinaryUploadService::OnGetRequestData() more readable
- a4f344b Componentize chrome/browser/user_agent/ test files
- ab6a12e [code-health] Clean up `ntp-view-hierarchy-repair` flag
- 5eac8b9 Roll Chrome Android ARM32 PGO Profile
- c07a3e7 [iOS][Assistant] Refactor animations
- f24ee1d Roll Webpagereplay from cd658a28ca53 to c980c3469d86 (2 revisions)
- c03f687 Reland "Add some accessibility/conformance tests for the reload button"
- ccb35b5 Roll Chromium Variations from yjj5vQuYGnuDDrAQQ... to dp2t3gNlqR5GsPHEF...
- 7c528a5 Implement server-to-client sync for `ValuableMetadata`
- 945c1ae [menu a11y] Give MENULIST an aria role of menu
- 82d0e84 ForeignSessionHandler: Remove "type" field from ForeignSessionTab/Window
- 43ff908 Roll ANGLE from 0aa8c4b8547c to 69360e45f63e (1 revision)
- c2b2a07 Roll Crossbench from c4c8e733b48f to 05ca280aa238 (1 revision)
- b4402d6 Roll Chrome Mac Arm PGO Profile
- 800662f Roll clank/internal/apps from d427f3192236 to 32c2ceb5e8ca (1 revision)
- 5845a4e [iOS][Composebox] Do not initialize contextual service when aim disabled
- 4196a0f Roll DevTools Frontend from 7adb47fd983b to f9dcfeee69bc (1 revision)
- 6d876d7 Roll llvm-libc from 044963a253be to 76c8a4be56ba (7 revisions)
- d9ade36 Refactor CativePortalView to use CLIENT_OWNS_WIDGET model.
- 75e8257 Roll WebView ARM64 Orderfile from eJcVOvDI_LnZwf6F9... to AVpO-SRbUXDGCg5bs...
- 3a69213 Remove TODO entry from Chromium C++ Style guide
- 3583c32 Roll Perfetto from d0941bd18f22 to f613b078cd0a (2 revisions)
- 8914e7b Roll Chrome Android ARM64 Orderfile from Vuq-I9QbjAUat4-nC... to GL-Yux8cNXImDM7Es...
- a7af815 Use distinct values for QueryControllerState enum
- 5ca4c39 Don't sent empty SchemeHostPorts with AddQuicHints
- d5b6f9f Roll DevTools Frontend from 812fba096005 to 7adb47fd983b (4 revisions)
- 88f44d9 Create and initialize a ClientSocketHandle in Preconnect completion.
- 94973d0 Roll src/net/third_party/quiche/src/ 435c98c0d..243b50d55 (2 commits)
- 47de5a8 Roll Catapult from a2f6285fa55a to f09a1e32d2fc (1 revision)
- 142bd01 Roll Webpagereplay from 8bb88234a095 to cd658a28ca53 (2 revisions)
- 313e538 Allowlist InputTransferHandler.TopControlsOffset in traces.
- 1286fb1 [google_apis] Use factory method to create GoogleServiceAuthError
- 04ac77e [B4B] Cleanup: remove client side experiment groups
- 3efe44b Fix CSS mod() for exact multiples to return zero with the step's sign
- fdb10aa Roll Chrome Win32 PGO Profile
- ee6fd15 Roll Crossbench from 62a5d13db201 to c4c8e733b48f (1 revision)
- 87f932b Roll ChromeOS Bigcore AFDO profile from 147-7710.0-1773021199-benchmark-147.0.7726.0_pre1596215-r2 to 147-7710.0-1773021199-benchmark-148.0.7729.0_pre1597507-r2
- 896694d Roll Chrome Win64 PGO Profile
- af98d5d Revert "Simplify the is_isolated branch when resolving effective display mode"
- ba8a66c Autofill @memory: Add Autofill.AtMemory.Funnel.PopupDisplayed metric
- 2b935e4 Fix missing mojo dependency for browser_prefs.o
- 30a579c Disable flaky ContextualTasksLensInteractionBrowserTests on ChromeOS
- be648d9 Ensure we never create an AgentClusterKey with an opaque origin
- 3c40bc2 Roll Perfetto from 3a764e6f6339 to d0941bd18f22 (2 revisions)
- 60ba710 IWA: Implement entitlement enforcement for user-installed apps
- 9ba05d5 Roll WebView ARM64 Orderfile from ZtNabMv0bnt_kb_oP... to eJcVOvDI_LnZwf6F9...
- d5e6554 Roll Chrome Android ARM64 Orderfile from IcjIwP6qZAnw2tW7P... to Vuq-I9QbjAUat4-nC...
- ca692da Site Search: Move and port RequiresDeletionConfirmation to Android
- 3da79fc Roll DevTools Frontend from 1a8777ef30c0 to 812fba096005 (6 revisions)
- 7cfecc2 Reland "[iOS] Remove FullscreenExitReason and rename FullscreenModeTransition{Reason,Trigger}"
- 0db58b8 Reland "[Signin][Android] Remove SyncPromoController and SigninPromo"
- d9a09f6 Roll Chrome Mac Arm PGO Profile
- 8f80f90 Roll src-internal from 926c416205c7 to b7a7a350531b (1 revision)
- 52f3f39 Site Search: Refactors existing mediators to use new base class
- 94379a8 Site Search: Extract common base classes for mediators
- 469e7d9 Remove unused method from `ChangePasswordFormFilllingSubmissionHelper`
- d736b65 Update meet_effects hash in DEPS file.
- 31b162f [Part-2] Add support for a non-client hit-test callback in frame views.
- a227528 ASH Refactoring: Remove 5 unused strings of IDS_OOBE_*
- e58c0f6 Update GeneratedHttpsFirstModePrefTest for ConsentLevel::kSignin
- 3484f09 Some more WPTs for <template for>
- f3a64bc Roll Webpagereplay from 22be07d78094 to 8bb88234a095 (1 revision)
- 29f6ef2 [iOS Blink] Add a dummy ShouldShowLocationPrecisionSelector to MockPermissionPromptDelegate
- 1d7f6eb [PasswordManager] Refactor file size validation in PasswordImporter
- 82db65c [//cc] Move produced_tile_last_append_quads_ to TileBasedLayerImpl
- 3f8ffd0 Reland "Reland "Enable custom user timing throttling in WebView""
- 866eaec Roll Projector App from lzZ85O571Ue0XzA68... to A-8Wxf4tLaGdpo0qa...
- a4e4468 Move patching to own file in html/parser
- eacc543 text-justify: Remove the "JustifyWithoutLineText" runtime flag
- fe3c28a Roll Chrome Android ARM64 Orderfile from ykhdZZ6uHI8iuBg2X... to IcjIwP6qZAnw2tW7P...
- be5ed24 Rename MetricsRecorder to SendTabToSelfMetricsRecorder
- b67baab [//cc] Abstract whether to report tile as missing in PictureLayerImpl
- aacca9b Fix typo in ComposeAvailability
- ad417fa ML residual echo estimation: Verify TF Lite model when loading
- 737d3e3 [Signin][Android] Move SigninManagerImpl to signin.services target
- 8377384 Use SaveAndFillAvailability in CreditCardSuggestionGenerator
- 513d44e LoAF style/layout duration Origin Trial
- d734130 Fix the map-mutation in BAM::OnSuggestionDataFecthed()
- 29ddf29 Separate between HTML streaming and <template for> patching
- 46d9598 Roll Dawn from ad824e2cb346 to 5dd4bab0d750 (3 revisions)
- 23533f3 Roll DevTools Frontend from e0d964cec5f5 to 1a8777ef30c0 (8 revisions)
- bc30c80 Autofill: Increase Your saved info flag milestone
- 952d069 [DC] Fix crash when Bluetooth is disabled during a DC flow
- 724efcc [iOS][Assistant] Implement adaptive layout
- 42dbfc5 WTF: Rename CodepointAt and CharacterStartingAt for consistency
- 4151e38 Roll src/third_party/harfbuzz-ng/src/ fa2908bf1..5d4e96ad8 (627 commits)
- b9765c6 Roll Chrome Mac PGO Profile
- 5a31d42 [iOS][CPE] Revive CPE histograms
- 009fe4b [iOS][CPE] Remove expired and obsolete histograms
- 34999a7 Migrate AutomationEventRouter to ChildProcessId
- d500868 Enable ServiceWorkerAutoPreload by default.
- 26a5f10 Migrate Signin.SyncOptIn and SyncTurnOff to Per Profile Metrics
- ee27564 Roll Chrome Win ARM64 PGO Profile
- 10b74f1 [//cc] Process approximated area in TileBasedLayerImpl
- 2f2e698 [Signin] Prefer GetRefreshTokenForTest() over GetRefreshToken() in tests
- 6f96b41 [//cc] Add metrics for appending of checkboard quad via DidAppendQuad()
- cea490f [//cc] Eliminate PictureLayerImpl checking IsTileReadyToDraw()
- 3d5e912 [//cc] Abstract setting mark_tile_used in PictureLayerImpl
- 6a3743b [//cc] Dedupe {Picture, TileDisplay}LayerImpl appending quad
- 919d0b4 [//cc] Unify how {Picture, TileDisplay}LayerImpl access tile state
- 34446d6 Introduce a flag for Autosuggest nudge.
- 285eae4 Roll Boca Receiver App from 9lzTepqOtdXb4-W2i... to z5eB6n-27VDUw_0_f...
- 6936daa Roll ANGLE from 6935aaed653a to 0aa8c4b8547c (1 revision)
- 8f0e01b Fix unsafe buffer usage in dbus/property_unittest.cc
- 02f970d Add TokenDownloader to obtain tokens
- d223597 [Passwords] Retire PasswordManager.MoveUIDismissalReason* histograms
- dc174f9 Roll Boca App from IHVNdh6pum1LGHjvE... to tdZP2-CsDHtjFXi0G...
- bd70a36 Fix unsafe buffer usage in update_display_configuration_task_unittest.cc
- b344359 Roll Chrome Win32 PGO Profile
- ca07ab3 Roll Chrome Win64 PGO Profile
- 15ddb52 Roll WebView ARM64 Orderfile from jblpwbPUuBMSysrUc... to ZtNabMv0bnt_kb_oP...
- a3495e0 Roll DevTools Frontend from 48f965098f72 to e0d964cec5f5 (1 revision)
- afb4569 Roll Chrome Mac Arm PGO Profile
- da125ea [iOS] Create keyed service for reauth module
- 854317a Roll Chrome Linux PGO Profile
- 402cdd8 [SharedPrefsMigration] Refactor MultiInstancePersistentStore into base and Chrome classes
- e3a937b [media] Shard ChromeOS capture targets into video/chromeos
- 282936a [Blink] Remove LowLatencyUsageSupportedForWebGL()'s Apple-specific case
- 31b97f6 [Blink] Eliminate SharedGpuContext::MaySupportWebGLImageChromium()
- ed474e8 [Blink] Eliminate WebGLImageChromiumEnabled()
- b1bd071 [Blink] Restructure SharedGpuContext::LowLatencyUsageSupportedForWebGL()
- d975242 [Blink] Inline WebGLImageChromiumEnabled() in UseOverlaysForWebGL()
- 42535d5 Remove LaunchResult.instance_ids.
- 5ca41b4 Revert "net: Pass stream request traffic annotation to socket pool"
- fa2814b [Blink] Remove DrawingBufferImageChromiumTest
- f3cff64 [Blink] Split out DrawingBuffer tests for clarity
- 059422d Roll WebView ARM64 Orderfile from x7FnECAPbe9Bv6ni4... to jblpwbPUuBMSysrUc...
- 9a691a8 Use GURL instead of String in isDSEOrigin
- 6af9d6e Roll V8 from 705aa9d3796d to b3c11715e59e (5 revisions)
- 983aaab Roll optimization-guide from 3d51aef6760c to 12422814f8f3
- 8ddd530 Revert "Allow the Indigo onboarding dialog to resize automatically."
- f605bff Roll Chrome Android Desktop x64 PGO Profile
- b446494 [AccessibilityAnnotator] Populate arrival date.
- b764326 [AccessibilityAnnotator] Rename Flight to FlightReservation
- a0c34c2 Roll Skia from 46f41493ebf4 to d4a01559efb3 (3 revisions)
- 51a9c73 Webium product: fix frame id in API test
- fc04063 Migrate ChromeOS-exclusive switches from chrome/browser to ash/constants
- 84abc12 Ash: Use native app structs in VideoConferenceManagerClient
- 6be1399 WebGPU: Use wgpu::TextureBindingViewDimension
- 80f6dfb Roll Chrome Mac Arm PGO Profile
- b4f56ba Roll Updater chromium_win_x86_64 from 2@1592008 to 2@1593019
- e995677 Roll Updater chromium_win_x86 from 2@1592006 to 2@1593011
- 86edebe Roll Chrome Win64 PGO Profile
- 9e2ad50 Skip font-size dependency check for universal syntax custom properties
- a9896ca Roll Updater chromium_mac_amd64 from 2@1592001 to 2@1593016
- 19cd013 Roll eigen from c4eb3c4f4c91 to 2a2456c873d6 (1 revision)
- 1fe45ec Fix exit-time destructors in blink/public/common
- 5f63c2e Roll Chrome Android ARM64 Orderfile from iZZ5g7rt3CmPcalu8... to ykhdZZ6uHI8iuBg2X...
- 25c845a Roll Amd64 AFDO from 147.0.7726.0_pre1596215_rc-r2-merged to 148.0.7729.0_pre1597507_rc-r2-merged
- 65a5ca0 Automated Commit: LKGM 16613.0.0-1075895 for chromeos.
- 4020a82 Roll Updater chromium_win_arm64 from 2@1592009 to 2@1593019
- 689944b Roll WebView ARM64 Orderfile from yHuxsPTwBModHv3mC... to x7FnECAPbe9Bv6ni4...
- 2fcd997 Roll Chrome Win32 PGO Profile
- e824c78 Compensate tablet input with panel orientation
- 970efbd [mac] Support use_lld=false with Apple Linker
- 35ffa32 [iOS Blink] Add dummy Set|GetInternalScrollToTextFragment() methods
- a163179 media: Add UKM metrics for more CDM Metrics
- c4cdf06 [rustmojo] Add support for negative enum discriminants in Rust Mojo bindings.
- c50151a Revert "Roll src/third_party/boringssl/src/ eedf10c1f..5e289a795 (3 commits)"
- ab652e6 Stop depending on //components/data_sharing/* from //chrome/browser:browser
- d77f783 WaaP: Record the renderer process creation time for initial webui
- 4b2877a [components/safe_browsing] Code clean-up with clang-tidy's checks
- 3ea6fdc Roll Skia from 90b1d0b22a61 to 46f41493ebf4 (11 revisions)
- 45b781b Roll Chrome Android ARM64 Orderfile from WCNpuZZ2eeN2tONip... to iZZ5g7rt3CmPcalu8...
- 1258e60 Webium product: add ParseFinishedToFirstUpdate metric to WebUI toolbar
- ab9f842 Roll WebView ARM64 Orderfile from PEed89SNLfsCwXsb5... to yHuxsPTwBModHv3mC...
- e0bc0d8 net: Pass stream request traffic annotation to socket pool
- 9aecfed Roll src/third_party/boringssl/src/ eedf10c1f..5e289a795 (3 commits)
- 631f08b [TcpConnectJob] Make `attempted_addresses_` use base::flat_set.
- 5e12811 [TcpConnectJob] Make IPv4/IPv6 connector logic more strict.
- 01149e9 Fix OWNERS file parsing for some media OWNERS
- dfec277 Migrate the bookmark MIME from BookmarkNodeData to ClipboardFormatType.
- 810dc15 Roll Chrome Mac Arm PGO Profile
- 055b906 Roll clank/internal/apps from 6494aadb8a64 to d427f3192236 (1 revision)
- a9586c0 Roll ChromeOS Arm AFDO profile from 147-7710.0-1773022477-benchmark-147.0.7725.0_pre1595991-r1 to 147-7710.0-1773022477-benchmark-148.0.7729.0_pre1597507-r1
- b75d485 Roll TFLite/LiteRT to Next Green Version
- 49c5d40 Implement missing scroll position metrics on Android
- 333a284 Fix escaping in c/b/a/isolated_web_app/DEPS
- 2c0f959 [Mac] Fix right-click destroying select-all in text fields
- d68f195 [TemplateUrl] Clarify comment for CreatedByDefaultSearchProviderPolicy
- e466932 Roll vulkan-deps from 0fc0d53bf78e to 3ad5a6d56b25 (1 revision)
- 107696a Revert "[composebox] Fix infinite loading by adding cluster info retries."
- 6f4bd6d Delay expiry of power histograms.
- a5f26e4 Roll Chrome Android ARM64 Orderfile from T3S2_ySgYtDyrY8ws... to WCNpuZZ2eeN2tONip...
- 0e3a4b0 Disable ContextualTasksComposeBoxPixelTest.Screenshots.
- a03b1b5 Roll Chrome Win32 PGO Profile
- d9da456 Roll Chrome Win64 PGO Profile
- 7a893eb Cleanup unused ForcingSoftwareIncludes360 flag.
- e9e2b6e Roll gn from 129ce6b9af1a to 83c605e5dcc3
- 0a2fffb Roll clusterfuzz-data from 9f6f3ab4e8e6 to a456f224d422
- 3080817 Roll androidx from A6oLcxGdFmfrPoaAc... to Mn6UxK4fOcnps2oJ1...
- 0a5be55 Roll WebView ARM64 Orderfile from 5QSFarUBfi5vcNoCC... to PEed89SNLfsCwXsb5...
- dc23404 Roll R8 from 6BLixpU9eIdUBP0eg... to AVViRP05v8_iDI-43...
- 4fe1a74 [aim] Disables fusebox eligibility checks performance benchmark
- c6d4227 Roll Dawn from b2cbf25a0364 to ad824e2cb346 (45 revisions)
- 656275f ASH Refactoring: Remove 8 unused strings of IDS_STATUSBAR_NETWORK_*
- 8e1d6a5 ASH Refactoring: Remove 11 unused strings of IDS_EOL_INCENTIVE_*
- 6eee58f ASH Refactoring: Remove 13 unused strings of IDS_FLOATING_WORKSPACE_*
- 60989a8 Roll Chrome Mac Arm PGO Profile
- 090db1f Roll Chrome Mac PGO Profile
- cc346db Roll cpuinfo from 7364b490b5f7 to 7607ca500436 (1 revision)
- 1378742 webnn: Limit fuzzed graph memory usage
- be9c464 [Extensions] Update permissions API tests to MV3
- 90f78e9 Disable WidgetClosedDuringDragDoesNotCrash on Linux.
- f61bea1 [Vertical Tabs] Fix collapsed group expansion during drag
- dfc87a4 Avoid duplicate set lookups.
- 1693de3 Updating old tests to use RunOnceCallback and TestFuture
- 929f32d [Extensions] Update declarativeNetRequest API tests to MV3
- 2bb7ae7 [glic] Fix integer division truncation in GlicMetrics percent overlap
- 046a186 Revert "Disable clang module build on fuzz coverage builder."
- 5d1efce Remove `Security.DataDecoder...` histograms.
- 99a0fd5 Updating trunk VERSION from 7730.0 to 7731.0
- b2419e4 [crd host][linux] Fix logging code that crashes the host
- 39e457d Roll Chrome Android ARM64 Orderfile from RqiXQV1FtPrr3h-a-... to T3S2_ySgYtDyrY8ws...
- 41af4c3 [menu a11y] Make menulist popover get arialabelled-by its opener
- 0f60112 Roll clank/internal/apps from cd6dc9e3c3ef to 6494aadb8a64 (1 revision)
- 61b88fd Revert "[Feed] Removes feed header related code"
- 3497f68 prerendering: Add a HTTP form submission test
- 65d3752 [Vertical Tabs] Shift editor bubble position on Linux
- df343c6 [actor] Speculative fix for win-dbg test failures.
- e1f0f13 Allow the Indigo onboarding dialog to resize automatically.
- 66f5051 Roll vulkan-deps from c29f9df0edc1 to 0fc0d53bf78e (2 revisions)
- 07e68c9 [Setup List] Proactively complete History Sync and ESB promos on sync events
- c2c0050 Roll Updater chromium_mac_arm64 from 2@1592001 to 2@1593007
- 5749767 Add IPAddress::IsMulticast() helper
- 8bf6dce Roll Chrome Win ARM64 PGO Profile
- 70b0bf7 Roll Chrome Android ARM32 PGO Profile
- ac889fb [Contextual Tasks] Fix tooltip z-order
- c4e9785 Spanify FFTConvolver::Process to use base::span
- bb86127 [projects] Factor out VerticalTabStripScrollBar into RoundedScrollBar
- a457d4a [Extensions] Convert app.window to WebIDL
- 11bd1cf Roll Chrome Android Desktop x64 PGO Profile
- e18f4bd [GlowUp] Change dark mode active tab color
- b8ffbf8 [builtin ai] Add a skeleton asset manager and installer policy for
- 2d5c2bb Remove pwa launch success metric
- 2a3fadf Roll strum to 0.28
- 68ba4ea [PWA_Install_Dialog] Create generic install dialog flow
- ba860ab Roll itertools to 0.14
- 48880b9 Roll Enterprise Companion chromium_win_x86_64 from 9cMPlsepjcQD5_7wi... to 9sTESi5emsEA5nTDJ...
- ddd3f0d Roll Chrome Mac Arm PGO Profile
- 7b3cc3e Roll WebView ARM64 Orderfile from MDukuqP9TkUEo6U0E... to 5QSFarUBfi5vcNoCC...
- 7301d83 [NtpRefactor] Rename NtpLayout back to NewTabPageLayout.
- dbc6ce8 [TreesInViz] Add DUMP_WILL_BE_CHECKs for scale factors in VizLayerContext.
- 15d6efa Roll Updater chromium_linux64 from 2@1592001 to 2@1593011
- 6896d73 [composebox] Fix infinite loading by adding cluster info retries.
- e22981f Add: JNI APIs for requesting content restriction classification
- 824890b WebUI: Implement ESlint check to enforce class/DOM name convention.
- b817154 Roll Enterprise Companion chromium_mac_arm64 from H_hSnIcVieZKCu4tW... to nQdNPlrkBvct2Oz-n...
- 86143d8 Roll Enterprise Companion chromium_linux64 from dgdBQfA4t9gSHP-5g... to s2DtB9zKh7jCfWVKX...
- 160a6ba Roll Enterprise Companion chromium_win_x86 from ucyYSu0iSSw6C1FUr... to XGIfEvTTy0qwP3uiX...
- 0ae3fb6 Remove stale chrome/common/pref_names.h in ChromeOS dirs.
- 040e46a [NtpRefactor] Split NewTabPageLayout into NewTabPageCoordinator and
- e2e546f Move child account related prefs to ash_pref_names.h
- 030756d Roll Enterprise Companion chromium_mac_amd64 from sX1BmmBiwsr1e0dhX... to B0tvS8a1PWD8hFE_X...
- cd0e069 [Theme] Fix toolbar is wrong after changing theme.
- a1db64d [Grid] Oilpanify GridTrackCollection and GridLayoutData
- 06dd1d4 [Contextual tasks] remove feature flag kContextualTasksExpandButton
- b2f7a35 [Extensions] Update nativeMessaging API tests to MV3
- e48fb38 Expose BackForwardCache forward entries toggle to WebView
- 98c415a [projects] Add expand/collapse button for threads
- 7e25766 Add browser-side validation for allow-modals sandbox attribute
- a196a2c [contextual tasks] fix context menu
- cb4d36c Fix segfault in PinInfoBarController on startup
- 1f83783 Support middle-click on back/forward button to open in new tab
- 114821d Add geo-level1 support to VariationsService
- 5e11999 Certificate Manager: Migrate certificate-list to Lit
- 3cdb46d [Immersive Reading Mode]: Fix settings menu position.
- 0c88bea [contextual_search] Fix UAF crash in ComposeboxQueryController during profile teardown
- bca3987 Simplify the condition to create MockActivationController
- 39f198c Add timeout expectation to media/media-playback-while-not-visible-permission-policy-cant-play-if-hidden.html
- 246e55f Fire input/change events for declarative WebMCP tool executions
- bfd72cb Roll Arm AFDO from 147.0.7725.0_pre1595991_rc-r1-merged to 148.0.7729.0_pre1597507_rc-r1-merged
- 2d14d11 Roll V8 from 3ec501ccaac5 to 705aa9d3796d (4 revisions)
- 4cd92c0 Roll Chrome Win64 PGO Profile
- 5168d4c Revert "[Vertical tabs] Close tab group editor bubble if tab strip is scrolled."
- d22dd57 [TreesInViz] Clamp browser controls parameters to valid ranges.
- 4259e77 Add kActionGlicContextualCueing action ID and page action registration
- 7a82436 Roll src-internal from 5f3259bc268e to 926c416205c7 (4 revisions)
- 7d7335c [TabData] Update mini toolbar with TabUIHelper
- 6ccda5a remove tab underlines code for glic single instance
- 868a121 [Extensions] Update printerProvider API tests to MV3
- c663d9b ASH Refactoring: Remove 9 unused strings of IDS_PORTAL_DETECTION_NOTIFICATION_*
- 59c8330 Add @JniType to a batch of files in //components (#5)
- 2fe8cbb [omnibox-next] Use shared CSS variable for context container margin-top.
- ef42a7f Roll Chrome Android ARM64 Orderfile from jmCOxHNAPV4mcchol... to RqiXQV1FtPrr3h-a-...
- ccb19a4 [ntp-next]: Add context menu to disable action chips
- 3c40c6b [SetupList] Renames setup list bottom sheet related classes
- 44ed26b Add ability to delete AI/Gemini threads in ContextualTasksService
- 0a47cc8 [composebox] Conditionally render voice search in composebox
- 932234b [AIM] Add chrome://flags to turn off ntp composeplate redirect.
- 7075fb7 [Part-1] Add support for a non-client hit-test callback in frame views.
- 7555add Add @JniType to a batch of files in //components (#4)
- 6cbfc74 Roll Chrome Win32 PGO Profile
- 0778e0e Extend Apps.AppList.GeminiSearchBoxIcon histogram expiration.
- 0e42686 [Vertical Tabs] Update drop arrow icon to be more modern
- 7ba90a9 [NdkVEA] Implement native temporal layer ID retrieval.
- 7927db9 Roll Chrome Android ARM32 Orderfile from 0ZqeWPme_NoWICTn3... to cDOrfG8L66PDDvYfQ...
- 4e191e7 [Extensions] Update omnibox API tests to MV3
- 156499f [ntp-next] Add a string for the undo toast for disabling action chips
- d4415c3 Roll Chromium Variations from 3pIEvnJgjs4yPcLeJ... to yjj5vQuYGnuDDrAQQ...
- 56cc657 Roll Chrome Mac Arm PGO Profile