Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2026-03-09 on branch 'main'

Chromium Digest: 2026-03-09

Overview

This summary covers 373 relevant commits out of 521 total, from (704c022)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((704c022)) to (71c55fc)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((71c55fc)). The day was marked by an exceptionally high number of breaking changes across core APIs, including V8, Blink, Content, and various utility libraries, requiring significant attention from embedders.

Breaking Changes

  • ⚠️ BREAKING V8 API: Older ...V2 suffixed functions like HolderV2(), GetPrototypeV2(), and SetPrototypeV2() have been removed from the public V8 API. Embedders must migrate to the modern, unsuffixed equivalents. (37e0529)
  • ⚠️ BREAKING Blink WTF & Platform: The core Blink utility library wtf saw several breaking changes. wtf::Vector::AppendRange() was removed in favor of Append(), and wtf::PodRedBlackTree lost its public size() method and Visitor class. Additionally, wtf::PodIntervalSearchAdapter was removed and the signature of PodIntervalTree::AllOverlaps was changed. (4a0293f) (96feb1a) (39a7e93)
  • ⚠️ BREAKING Blink API: The signature of blink::Path::Apply was changed to use base::FunctionRef instead of a C-style function pointer. Separately, blink::WebMenuSourceType was removed and fully replaced by ui::mojom::MenuSourceType. (2e98bc1) (75a48e0)
  • ⚠️ BREAKING Content & Extensions API: The public method content::RenderProcessHost::IsForInitialWebUI() was removed and replaced with IsForTopChromeWebUI(). In the extensions system, the virtual method ExtensionHostDelegate::CreateTab now requires a const GURL& target_url parameter, forcing subclasses to update. (0747310) (3fc5459)
  • ⚠️ BREAKING History Component: A broad refactoring replaced int64_t with the strongly-typed history::ClusterId for cluster IDs across the public components/history API. This is a non-transparent type change requiring migration. (9cb1107)
  • ⚠️ BREAKING Base & Metrics API: The base::Reversed utility now has stricter template constraints which may break some existing usages. In base/metrics, the signatures for DeserializeHistogramInfo() and MergeHistogramDeltaToStatisticsRecorder() were changed to require new parameters. (52254e7) (b51c5e3)
  • ⚠️ BREAKING Graphics (Ozone): The native_pixmap_unique_id field was removed from the public ui::OverlaySurfaceCandidate struct. Embedders with custom Ozone backends must update their implementations. (1523733)
  • ⚠️ BREAKING Networking API: The public struct network::ConnectionAllowlist was changed, converting boolean members like redirection_allowed into a new RedirectBehavior enum. This breaks the API contract for consumers. (9d5b5cf)
  • ⚠️ BREAKING Android & JNI: The public helper jni_zero::Cast() has been removed; code must now use the As() method on ScopedJavaLocalRef. Additionally, a revert to CaptioningController altered its public constructor signature. (64f58c3) (3b7cb50)
  • ⚠️ BREAKING ChromeOS (Ash): The ash::VideoConferenceManagerClient interface was refactored from an asynchronous, callback-based pattern to a synchronous, direct-return pattern, breaking all existing client implementations. (8e40d72)

Blink & Rendering

  • The SoftNavigationContext is now created based on Event Timing interactions, aligning it more closely with the INP (Interaction to Next Paint) metric. (704c022)
  • A new, more efficient subview() method has been added to blink::String and blink::StringView for creating non-copying substrings. (05f5906)
  • SharedImages created by WebGL will now include the RASTER_READ usage flag, allowing them to be read back via the raster interface. The associated feature flag has been removed. (d01041e) (6b1cab2)
  • The public API for ad detection on image resources was refactored, replacing bool IsAdResource() with const std::optional<AdProvenance>& GetAdProvenance(). (f0c4f0a)
  • A bug was fixed to ensure that modifying @supports and @navigation rule conditions via CDP correctly triggers a style recalculation. (af87586)

Networking & Services

  • The CancelPendingCallbacksBeforeFetchRestart feature for ServiceWorker is now enabled by default on all platforms, improving reliability during fetch restarts. (2cdd4c4)
  • Redirect chains are now sanitized when committing error pages, reducing the risk of cross-site information leakage into a renderer process. (4468713)
  • Logic for Secure DNS canary domain probing was refactored to be more precise about when probes are initiated. (9cff51a)

Android & iOS

  • Android: Several features were enabled by default, including ClankDefaultSearchApi, RobustWindowManagement for multi-window handling, and touchpad overscroll gestures for back/forward navigation on phones. (1b34a92) (87f844d) (232064f)
  • Android WebView: The Profile.setSpeculativeLoadingConfig API has been deprecated. (495db07)
  • iOS: Reader Mode translation is now enabled by default. (b53956f)
  • iOS: A large number of components were modernized to replace the deprecated UIWindow init with initWithWindowScene. (a687976) (a0e9bf8) (80af57f)

Features & UI

  • Passwords: A new delegate, PasswordChangeFromCheckupDelegate, was introduced to handle password change flows initiated from the Password Checkup page. (3717b70) (0784373)
  • Cast: The maximum frame size limit for the Cast Receiver was increased from 512KB to 10MB to better support higher-resolution streams. (292c655)
  • ChromeOS: As part of a code isolation effort, file manager preferences have been migrated from common prefs to Ash-specific prefs. (c81108e)
  • Feature flags for several shipped features, including the Navigation API and the Android Photo Picker (READ_MEDIA_* permissions), were removed. (6a4c053) (6c34dea)

Code Health & Infrastructure

  • Developer Experience: The C++ style guide was updated to allow the use of std::ranges::to for more modern and concise container conversions. (df05b07)
  • Performance: The HttpUtil::IsTokenChar function was optimized using a static table lookup, significantly improving its performance in benchmarks. (9a33438)
  • Testing: A new test utility, content::CrashFrameProcess, has been added to browser_test_utils.h to simplify the process of crashing a frame's renderer process in browser tests. (efe7d29)
  • Third-party dependencies were updated, including libpng to v1.6.55, libaom, QUICHE, and several Rust crates. (0c8fd85) (c31a32b) (7da4cf7)
  • A new CDP protocol, WebMCP, was introduced for listing available tools. (18ae39a)
All Commits (521)
  • 71c55fc [Gardener] Add missing expectation caused by wpt import
  • 513a295 Roll WebView ARM Orderfile from azl559IDXRMwgF8S5... to AsslMgKdv8eAeoZeE...
  • 66ee59f Set auto-open folder in DMG rebranding
  • 4c8a42e Roll ios_internal from cc9dc04f4db2 to e8d0dac94ce7
  • 647e642 Roll Chrome Mac PGO Profile
  • aeefdcc Roll Chrome Win64 PGO Profile
  • f419a74 Roll Chrome Win32 PGO Profile
  • 52254e7 Use `std::ranges::{rbegin,rend}` in `base::Reversed()`
  • 30f0d48 Elaborate docs in sql::Database::WalCheckpointImpl
  • bca4b0a [Reland] Fix BookmarkContextMenu paste menu enabled state
  • e4f791b Refactor glic internals to be a separate interface.
  • 9a33438 Optimize HttpUtil::IsTokenChar
  • 1eb0117 Move the AdTracker into its own directory
  • 7e70023 Roll Chrome Mac Arm PGO Profile
  • e6f7ed8 Fix some non-idiomatic uses of base::SequenceBound
  • e6e3ea0 [agents] Fix path to webui_lit_style_guide.md
  • f4473da Don't read out loud non-visible text.
  • 562fea3 Roll clank/internal/apps from adcc81047c46 to 6dee8ce9d0dc (1 revision)
  • 0b6e944 [Settings Search] Basic integration test
  • 5190707 [CCT] Histogram CustomTabs.OpenType
  • 84d06fe [focusgroup] Ensure popup buttons are have their role inferred.
  • 2dc9b3c [iOS] Update params for launch candidate arm of Gemini Image Remix
  • d43b48a Desktop media picker: set text color for labels with non-default bg
  • 292c655 [Cast Receiver] Fix 'Frame size too big' error
  • ec2c8fe Implement Glic selection overlay using the lens selection overlay
  • 0dbd541 Revert "Fix PulseAudio errors following spanification"
  • 06d5fbb [Frameworks roll] Roll to 880960351 piper revision
  • 6a4c053 Remove a bunch of NavivationApi flags for shipped features
  • adca0e9 Ship AvoidDoubleMultiwindowChanges
  • 7f61b94 Roll src-internal from 23abd729d4a8 to b33dbbf8f74d (1 revision)
  • a6dddc7 Modularize //chrome/browser/page_image_service
  • 424bc81 Roll Perfetto from 728eb5626a3b to 02916a1a6b83 (1 revision)
  • 5fbc551 WebUI: Fix CrLitElement class/DOM name pattern violations, part 2.
  • c7c4ed4 [Vertical Tabs] Crash Fix: Adding Checks For Mac View Menu
  • 08272da [Persist] Avoid saving before associating during restore
  • 712beb8 Mark CVE-2022-1664 as mitigated
  • 8aa9842 Roll Chrome Android ARM64 Orderfile from 9LTKl7T2yNXtLGkPf... to WIhFhZn7qnYQXATP_...
  • 0b87af5 [context-input] Set process_image_for_aim when lens usage intent is set
  • 2d78a6c overscroll: Fix vertical button snapping
  • b444e2d [histograms] Fix direction for some memory metrics
  • 805f0ef [contextual-tasks] Increase version to 2.0.
  • bc4917c Increase test coverage in /remoting/signaling - Part 1
  • 8573ad1 Enable soda for Win arm64
  • 32da666 [iOS] Add GeminiPromoViewController to replace deprecated BWG naming
  • 092960c [Desktop Android] Remove unnecessary tab checking code
  • 29625bc [wtf] Remove uninitialized version of PodRedBlackTree
  • 235ec53 Disable SyntheticMouseHoverOverInactivePage Blink runtime Feature
  • b76694a Add IndigoAgent for injecting scripts into an isolated world.
  • b7550dd [iOS] Remove custom reauth checks from FormSuggestionController
  • 93dafb1 Disable flaky text-overflow-ellipsis-editable-div-with-caret test
  • 38efda7 [Vertical Tabs] Accessibility: Reordering Tab Groups
  • 6c34dea Remove use of READ_MEDIA_{IMAGES/VIDEO}
  • 3360c13 [AIM] Add popup UI for tools and models.
  • 3750c9a [Extensions] Update tabs.remove() to check all tab strips
  • 60d6119 Ensure eligibility is re-freshed on every input
  • 2a49d60 Reland "[Desktop Android] Port setting / getting tab opener in tabs API"
  • db1921c Allow extensions in ArcVM kiosk sessions
  • 080f621 Simplify PinnedToolbarActionsModel::IsDefault() using all_of
  • 6cfdb9f Roll BoringSSL from 27bc28d7f03f to a2f9a2474d07 (1 revision)
  • ea41341 Roll Chrome Android Desktop x64 PGO Profile
  • eccd28d [composebox] Fixing color caret after adding context
  • 3541b42 extensions: Clean up ChromeExtensionHostDelegate::CreateTab()
  • ac71c5c Roll clank/internal/apps from 4224324fe793 to adcc81047c46 (1 revision)
  • f2fd8ff [context-input] Add is_implicit_upload bool to request id
  • bec0c3e Roll uuid: 1.21.0 => 1.22.0 in //third_party/rust.
  • 4a4beb0 Password Redaction in APC v2
  • 3fc5459 extensions: Consolidate per-platform ChromeExtensionHostDelegate impls
  • 19049bd Roll quote: 1.0.44 => 1.0.45 in //third_party/rust.
  • a8cd286 Store const AtomicString& event names in BoundaryEventDispatcher
  • f34906a Fix typo in TaskEnvironment comment in single_thread_task_runner.cc
  • 37fee21 Roll minijinja: 2.16.0 => 2.17.1 in //third_party/rust.
  • 1bbaace Roll libc: 0.2.182 => 0.2.183 in //third_party/rust.
  • 879e716 Unexpire align-pdf-default-print-settings-with-html flag
  • 581acde Consolidate FindNode accessibility test helpers
  • 671b45f Roll Chrome Linux PGO Profile
  • 337c359 [code-health] Clean up `https-first-mode-incognito-new-settings` flag
  • 7ef36b1 [Grid] Oilpanify GridLayoutTree and GridLayoutSubtree
  • be6dcbe cc/slim: Use SimpleScheduelr behind feature
  • 0033d64 Roll vulkan-deps from 4a9f2cec3d5e to d418aaacf4ce (3 revisions)
  • 9fac70a [Persist] Rework TabRestorer.resolveTab
  • df05b07 [styleguide] Allow std::ranges::to for container conversion
  • cd0c8f2 [ios] Extend expiry for ChimePreferenceRegistration histogram
  • 7443fcd [InputVizard] Add missing MotionEvent actions OUTSIDE and SCROLL
  • b87a537 [Persist] Dirtiness attributes-related changes
  • 381a7cd Roll Chrome Android ARM32 PGO Profile
  • d6ac6a7 [fuzzing] Replace js_in_process_fuzzer mkdtemp use with ScopedTempDir
  • 8f9d30c WebNN: Use raw_ref for WebNNContextImpl in WebNNGraphImpl
  • 6652c17 [Vertical Tabs] Accessibility: Resizing Tab Strip w/ Keyboard
  • 4d98e6c Reland "[BNPL][PNPL] Add tabbed pane to payments autofill popup if eligible"
  • 96feb1a [wtf] Remove PodRedBlackTree::size() PodRedBlackTree::Visitor
  • 18991a2 WebAudio: Extend expiry: MediaPlaybackWhileNotVisible.InterruptionType
  • 9ff0888 Roll ANGLE from 0d61b30acc76 to f5d25e4e8937 (2 revisions)
  • 1c66c59 Add parameterized browser test to test phishing classification delay
  • 75a48e0 Remove WebMenuSourceType in favor of ui::mojom::MenuSourceType
  • f27e905 Fix android_webview build failed, because of the following gn dependency path:
  • 4e02aec Update third_party/devscripts/METADATA with another not applicable CVE
  • ce01102 Roll Chrome Mac Arm PGO Profile
  • e88a7f5 [NotificationTelemetry] Send CSBRRs On Push Events
  • f6628f3 ScrollAnchor: clear queued_ when adjustment is suppressed during editing
  • 1416d80 [Report-a-scam] Hook up screenshot to dialog 11/X
  • d0261c3 misc: Migrate BASE_FEATURE macros to 2-argument version
  • 1523733 [ozone] Remove native_pixmap_unique_id from OverlaySurfaceCandidate
  • ec5bb18 [selection] Add hotkey support
  • 6acdcbe Remove unneeded use counters
  • b0e40bd summarize this document
  • ba5db79 [cleanup] requestIdleCallback tests are no longer flaky
  • cfdf8f4 UT setting color scheme in ChromeContentBrowserClient
  • 2b16999 Roll DevTools Frontend from 891ccc111386 to e0d71e80d39c (2 revisions)
  • 668bb25 [Link Capturing] Add confirmation to leave incognito
  • 6a35811 Make KeyframeEffect fallback reset status for NPW
  • 47cfb97 Update `TestExpectations` with bugs filed for crrev.com/c/7647515
  • b6dab52 Sync feature protos.
  • fdc8e2c [contextual tasks] double tab deduplication via url
  • b5a443f WebUI Browser: Call DummySurfaceProvider from SurfaceEmbedConnectorImpl
  • 39a7e93 [wtf] Remove PodIntervalSearchAdapter.
  • 835094e [mac] Add UMA histogram for TextInputClient cache hits/misses
  • ce3754a Fix UaF on IOWatcherImpl exposed by MTE crash on IOWatcherFdTest.CancelDuringWrite
  • 3251242 Convert to UNSAFE_TODO in media/fuchsia
  • 65a6119 Roll Skia from 3aa442e0624a to 0ff9b5e1851f (2 revisions)
  • 2230383 Automated Commit: LKGM 16610.0.0-1075832 for chromeos.
  • 6b90a08 Add about flag for disabling Glic safety checks
  • 5d36ae1 Reland "Reland "[bedrock] Migrate BrowserListObserver to BrowserCollectionObserver - part 1/n""
  • e73ffc2 [iOS] Refactor SafetyCheckView to use property for contentViewDelegate
  • 25989b7 Fix gaps in UseCounter tracking for CSS properties
  • 664178a Use aria-expanded in immersive submenus.
  • 88f1baa Roll src-internal from 0251a44669a9 to 23abd729d4a8 (1 revision)
  • 4de3c0a [Vertical Tabs] Ensure proper tab search positioning in horizontal
  • 69fd5ca Make NetErrorAutoReloader less aggressive.
  • 76c3afd Extend expiration dates for several histograms
  • 9463f58 [Viz] Fix performance regression in DirectRenderer
  • 7b8c340 net/disk_cache/sql: Add crash keys in UpdateStoreStatusAndCommitTransaction
  • 241be4a [ScanCard iOS] Add onUpdatedAndAcceptedForSaveAndFill to mutator
  • c31a32b Roll src/third_party/libaom/source/libaom/ 39606bf4b..98ce0d2a6 (33 commits)
  • 9042184 [CrossDevicePrefTracker] Improve VLOG checks and readability
  • f4da7bf [Sheriff] Disable testAccessibilityNodeInfo_textFormatting
  • e4556ca [iOS] Add Public Provider API for Copresence
  • c84b2d8 Reland "[Reading mode] Only show omnibox after IRM is closed by the user"
  • 9198a7f [lensoverlay] Expand CSB from en-US to en-*.
  • d967e81 Fix crash when location bar isn't available when permission chip is.
  • f8a47ce [RWM][RecentlyClosed] Default-enable kRecentlyClosedTabsAndWindows
  • e9825b7 [projects] Add threads IPH strings
  • 9cb1107 Refactor history and history_clusters components to use ClusterId type
  • 47fa8fd Updater-UI: Ensure consistent event width
  • c2df028 [projects] Refactor SavedTabGroupBar to use WeakPtr (1/6)
  • 2ddd5c9 [composebox] Refactor Composebox Autocomplete Tests into Smaller Suites
  • b25cdb8 [proxy main] Enable MainIdleBypassScheduler by default
  • 8f455d1 [Chrome Next] Add pixel tests for toolbar-height side panel
  • 51b584d [blinkpy] Remove `PlatformInfo` cruft
  • 26928b2 [Vertical Tabs] Start adding pixel tests for VTS and related views
  • 26677e8 spanification: automatically spanify sandbox/linux/bpf_dsl/test_trap_registry_unittest.cc etc.
  • 5628a5a [Scan Card IOS] Update SaveCardBottomSheetViewController on branch logic to initialize save-and-fill controller
  • 44e08a7 Prevent app vs browser disambiguation dialog when sending update intent
  • fab7b96 [Extensions] Convert userScripts to WebIDL
  • 0c4c420 Roll Chrome Android ARM64 Orderfile from ZG5eDRr8Hr5WDEXd5... to 9LTKl7T2yNXtLGkPf...
  • c5cbcd2 Respect `pgo_override_filename` in Webview toolchain
  • 2e98bc1 Use base::FunctionRef for Path::Apply()
  • 042ae48 Roll Chrome Win64 PGO Profile
  • f39fc9d De-parameterize ChildProcessSecurityPolicy unit tests.
  • 56a5e5a [Android][Signin] Move Feed sign-in promo tests to dedicated suite
  • 4d19232 [composebox] Add logging for zero state suggestion clicks.
  • 167bdb7 Extend Histogram
  • c035c67 Remove blink from components/on_device_translation
  • 7b178af [CrossDevicePrefTracker] Add logging for pref changes
  • e280be2 [projects] Handle panel focus behavior
  • fcb6b96 [Windows] Refactor integration tests for IPC, LPC, Warmup and Handles.
  • e1a2c16 Roll Chrome Win32 PGO Profile
  • d1214d4 Updater UI: Use new UPDATE event fields
  • e4d78b8 Roll androidx from 7RhZrbbyN_Godvmep... to h3Q-fsuQW0K_KhMuR...
  • 866ebd4 ose-split: Allow migrating sync_guid when reconciling the DSE
  • 3b7cb50 Revert "CaptioningController use UserData"
  • 81ff09d Move payments tests from FDITest to PaymentsFDITest
  • 907c898 [Zoom Indicator] Used adjusted default zoom levels
  • 1f86d8d [Refactor] Rename contextual_search::FileUpload*
  • 3cfdef4 Fix an issue where TabSearch UI shows stale contents
  • b2faee3 Allow ZPS fetch passthrough after serving cache.
  • aed77b2 Update old comment, no longer a TODO
  • f717422 Extend expiration of LandlockState histogram
  • b1daab8 [ios] Make ShortcutItem intent independent from AppStartupParameters
  • ef5de76 Roll Perfetto from c812dd64070a to 728eb5626a3b (2 revisions)
  • 4a0293f Delete no-longer-used `Vector::AppendRange()` method
  • 58fc818 [ntp][composebox] Add UI tests for realbox tool chips
  • edb304b [iOS] Refactor DefaultBrowserInstructionsViewController init and unify centerYOffset in AnimatedPromoViewController
  • ced2af7 [Windows] Refactor sandbox validation tests.
  • 1cf0313 Autofill: Ignore enforced "true" address values for enhanced autofill
  • 495db07 [WebView] Deprecate Profile.setSpeculativeLoadingConfig
  • af98ec1 Add navigation observer for Multistep Filter
  • a687976 [ios] Deprecate UIWindow's init in CredentialExporterTest
  • 5d1122b Autofill: Fix flag check for AI suggestion generator
  • 23d65d5 Capture iOS Simulator launch time metrics.
  • 0784373 Open new tab for password change from Checkup and use it to invoke GiC
  • 785c511 Reland "Clean-up `api_static_checks_unittests.py`"
  • a812059 Roll Catapult from 0f039f70b896 to e0ebf38a0121 (1 revision)
  • e30b055 [iOS][Forms AI] make kAutofillAiReauthRequired available in chrome://flags
  • 23a0062 crashpad_ios: Use a different platform name on tvOS
  • 7079861 Harden renderer check to accommodate for delayed classification start
  • 3b3f1ce Update PAAC field trial testing configs.
  • 7cd3d89 Roll vulkan-deps from 2c3ee6f68c21 to 4a9f2cec3d5e (1 revision)
  • 1382c5a Import wpt@d494a7633c191018d62a6030c57452918012b26a
  • f0c4f0a [AdTracker] Refactor IsAdResource() to GetAdProvenance() in image resources
  • 95de720 [BoB] Update credential bottom sheet to Autofill bottom sheet
  • dde8e1d Roll Chromium Variations from PuD11P8gXFWJh7m0E... to jq999gvgiCqSQolCi...
  • d73ce0f [actor] Plumb action error message to ActionResults.
  • cae1e9f [code-health] Clean up `mahi-debugging` flag
  • 8503560 [GlowUp] Show a contextual sharing tab glow
  • 653297d Autofill: Make enhanced autofill toggle dependent on address policy
  • 64f58c3 JNI Zero: Remove jni_zero::Cast() in favor of As()
  • bbbc0ae Fix an issue that task can no longer be created after reload
  • 4acadeb Add --glic-always-skip-fre
  • 96300aa Observe and sync client `ValuableMetadata` changes to the server
  • 0e7cdbd Autofill: Refactor entries list observers
  • 843d081 Address post-commit feedback
  • 0836b81 Roll Dawn from cdff52f3c777 to b2cbf25a0364 (3 revisions)
  • ed4445f [GlowUp] Increase glass toolbar opacity
  • a39b26f Roll Chrome Mac Arm PGO Profile
  • a68544d Add IndigoScriptLoader to load scripts from network or file.
  • 9f0f397 Respect gemini user alias in the extension install script.
  • 747746f Roll WebView ARM64 Orderfile from FhEFY7EkF1zCAH-wX... to r-TuCuOHIyFze0nKS...
  • 33c672d Update VRP FAQ for report quality
  • 8a99843 Roll compiler-rt from 3cac82da8c68 to 338a5c004c77 (1 revision)
  • 710ba2c [Windows] Refactor integration tests for ZeroAppShim and DLL unloading.
  • 3d3f98f Roll DevTools Frontend from 2aa68f232239 to 891ccc111386 (1 revision)
  • 25b6465 [shape-cache] Refactor IsNGShapeCacheAllowed
  • 020beb4 [WebMCP] Count registration attempts regardless of exceptions
  • fbfa1d8 [html-in-canvas] Support scrollable drawn elements
  • a0e9bf8 [ios] Deprecate UIWindow's init in TipsModuleViewTest
  • ec17664 [projects] Update strings to match mocks
  • 408a4f7 Update browser_command to trigger scan card coordinator
  • 838c9ec [STTS] Add E2E integration logic and tests for form field propagation
  • c9a5924 Add Mojo-based logging for audio device enumeration (part II)
  • 6820fe4 Remove static initializer test from linux-code-coverage
  • cb56791 [iOS] Add accessibility announcement for default browser PiP promo
  • f98eded ose-split: Address modernize-use-emplace clang-tidy nits
  • 30d7353 [arc] Use `ScopedCommandLine` in `chromeos/.../arc_util_unittest.cc`
  • 367553a Fix scoped-VT auto-nesting
  • 130b79f Roll clank/internal/apps from 676441531cd7 to 4224324fe793 (1 revision)
  • 11f687c [testing/variations] Update NetworkServiceIncreasedPriority config
  • 39c860b Roll ios_internal from b560167fb917 to cc9dc04f4db2
  • 88ffc0e Roll ANGLE from 70738f2fe623 to 0d61b30acc76 (1 revision)
  • 599aa9a [Extensions] Combine fetch headers bypass features.
  • a9ef441 [iOS] Fix DanglingPtr crash in GeminiBrowserAgent
  • 9cff51a Move Secure DNS canary domain feature checks into CanaryDomainService.
  • 1b34a92 [Android] Enable ClankDefaultSearchApi by default
  • 8e324ed Roll Chrome Android ARM64 Orderfile from SDAr_2sd0O66CarUT... to ZG5eDRr8Hr5WDEXd5...
  • 21c83b7 [html-in-canvas] Fix crash with raster inducing scroll
  • e29521c Further reduce lines in Pixel_SVGHuge lots-of-lines.svg
  • df6625a Move QueryServerPredictions() into ParseFormsAsync()
  • f1a80f3 Roll Skia from ea4fd0e1472a to 3aa442e0624a (1 revision)
  • 5ec2672 Roll clank/internal/apps from 1d97fe1c6d96 to 676441531cd7 (1 revision)
  • cd5c198 Add study delay time to user population in CSD ping
  • c6908f6 [iOS] Add field trial entry for SyncThemesIos
  • 97f77df Add last turn time to AI/Gemini Threads in ContextualTasksService
  • 87f844d [RWM] Default-enable kRobustWindowManagement
  • 4d5db2b [Autofill AI - M4] Add enterprise feedback to Enhanced Autofill toggle
  • 78d316e [Memory Coordinator] Rename consumer_id param in AsyncMemoryConsumerRegistration constructor
  • 66d9805 Initial commit of SimpleWebView refactor from ChromeOS.
  • dedcfcf [Gardener] Revert "Reland "Enable custom user timing throttling in WebView""
  • 9794925 [Gardener] Disable DesktopMediaPickerViewsBrowserTest.InvokeUi_LongTitle
  • 4ad08f1 grit: Optimize clique dictionary lookups to O(1)
  • 0c8fd85 Update libpng to v1.6.55
  • b8749e3 [soft-navs] Guard against nullptr window_ after context shutdown.
  • a29d5ae grit: Avoid unnecessary regex execution in MessageNode.Translate
  • 5908951 Roll Crossbench from 5f681d6c4a5b to 19cee54825bc (1 revision)
  • 8babc18 Roll WebRTC from aade3867c165 to 5788235ac856 (1 revision)
  • 955208d [iOS] Fix secondary toolbar separator anchor
  • 55db207 [Glass Toolbar] Make bookmarks bar work and splits for GToolbar
  • 35b79ac Roll Media App from sBHw3N9GXOZfkd4V6... to 1MJFCQTDnljKdGOpH...
  • 7a050a1 [iOS Blink] Add //ios/web/common:common dependency to //ios/web/content
  • c5f2375 [AccessibilityAnnotator] Add Friedrich to OWNERS
  • 4f5a593 [Gardener] Revert "[Autofill] Re-enable keyboard accessory tests"
  • b3a221f Disable rich animations in VerticalTabStripLinkDragTest.
  • 5804fbb Roll Help App from H2MdiXt_V4zHCrByw... to -Ctdhb7YalzmXOThl...
  • 3717b70 Add PasswordChangeFromCheckupDelegate
  • 7aa6cc9 [iOS][Assistant] Fix leading trailing anchor in landscape
  • 41a950e [CT] Automatic update from google3
  • 0b91666 [iOS] Replace use of SmoothScrolling flag with the provider
  • 8ae85ac Update TODOs regarding python infrastructure
  • 32c16d6 Prevent possible event-coalescing in pointerevent_attributes* WPTs
  • 4d9efdb Roll Chrome Android ARM32 Orderfile from ss6A8nbBFyG6ZLeLe... to 5XYOpR9nK3ko4Uo8c...
  • c01b101 [AvatarSigninPromo] Add feature param to control delays duration
  • 8be1712 Roll FreeType from aa8ca27f9b48 to 45556a19aab9 (4 revisions)
  • 2272bed [Vertical Tabs] Handle shifting drop arrow with multiple displays
  • 4569da5 [Memory] Add support for company name from the address
  • c3544b0 Migrate LocationBarModelTest to InProcessBrowserTest
  • 9889211 Introduce a feature to force DoH fallback in Automatic mode.
  • dd43185 Roll Chrome Mac PGO Profile
  • cad7be2 [iOS] Remove unused DanglingUntriaged _localState from ContentSuggestionsMediator
  • 4d43280 [NtpRefactor] Polish usages of DseIconView and SearchEngineUtils.
  • ba0eabe [Gardener] Disable flaky blink_web_tests on Linux MSan
  • 02a6d73 Enable++ AutofillEnableFillingPhoneCountryCodesByAddressCountryCodes
  • 51a6e59 [Gardener] Properly disable ChromeAimEligibilityServiceOAuthBrowserTest.OTRRequestIsNotDropped
  • a987e2e [Presubmit] add test for CheckAndroidToastUsage
  • b0c46d2 Fix missing percentages_depend_on_used_value for several properties
  • 2bb0e3b [iOS][Assistant] Add diming view
  • 5256d13 [aim-eligibility] Add `IsFuseboxEligible`
  • e474293 [DC] Update Android external navigation schemes for digital credentials
  • b3b5e43 [IOS][AIM] Guard ask about this page by a feature flag
  • 4c55f28 Use histogram functions instead of macros in ExecutionEngine
  • 9af92ee Roll Chrome Mac Arm PGO Profile
  • 15c42ab [x-plat promos] Fix text size for promos
  • 500dd7e Add view for sign-in promo from Search AI Mode results
  • 34b607a Allow AppId prefix matching in ResolvedFlags.
  • 04dac0f Roll Chrome Win32 PGO Profile
  • edda460 Add kSearchAIModeBubble access point
  • e5897f8 Roll Chrome Win64 PGO Profile
  • 89bd774 WebView save state unit tests
  • 0fd2499 Remove redundant console warning
  • 96f206b SlimWebView: Add TrustedHeaderClient
  • dc429e8 Roll clank/internal/apps from a08b994ca6ad to 1d97fe1c6d96 (1 revision)
  • 80af57f [ios] Deprecate UIWindow's init in MagicStackCollectionViewControllerTest
  • 283685b Roll Perfetto from 4a5b83f9bc04 to c812dd64070a (1 revision)
  • b0e324b PrivateAi: Replace API key with placeholder in webui
  • a5c0d02 [SkillsPage] Management metrics
  • 3950e31 Roll DevTools Frontend from 14b4d5dcc4f5 to 2aa68f232239 (1 revision)
  • 9538a6a Roll vulkan-deps from 9117cef67a60 to 2c3ee6f68c21 (1 revision)
  • f5a2050 [cc/metrics] Use result_id to map EventLatency to ScrollJankV4
  • 97a5c9c Add Autofill.FieldTypeAtSubmission.* metrics
  • f0026e9 Roll WebView ARM Orderfile from JIGC5o0ByCSc7xUwg... to azl559IDXRMwgF8S5...
  • 9d5b5cf [Connection-Allowlist] Convert global behavior flags to enums.
  • b6664d5 Roll WebView ARM64 Orderfile from _cqVQhwo9U_vPuDzW... to FhEFY7EkF1zCAH-wX...
  • 2475597 [AutofillAi - M4] Scroll to the focused field after commit.
  • d1445a5 Roll Chrome Linux PGO Profile
  • 294a814 [ios] Deprecate UIWindow's init in VirtualCardEnrollmentBottomSheetCoordinatorTest
  • c19b31a [Bundled Settings] Add metrics support for the Javascript Optimizer Row
  • b51de6d [KP] Automatic update from google3
  • 4f7bb3e [ios] Deprecate UIWindow's init in SetUpListDefaultBrowserPromoCoordinatorTest
  • d910288 Updating XTBs based on .GRDs from branch main
  • 6734509 [ios] Deprecate UIWindow's init in SafetyCheckViewTest
  • 3774a1e [Permissions] clear embargo when resetting permissions in page info
  • 4112cdd grit: Replace lazy_re with standard Python re module
  • e9d7233 Update example enterprise keyword in site search explainer.
  • cf03e84 Updating trunk VERSION from 7726.0 to 7727.0
  • 81de1e0 [STTS] Re-enable integration test ShouldSendFormFields on Mac
  • 88db0e8 Roll Chrome Win ARM64 PGO Profile
  • 039f07a Fix UKM Presubmit script.
  • f89e92d [CT] Automatic update from google3
  • 4912164 [iOS] Remove DanglingUntriaged from ContextualPanelTabHelper models_
  • 32f9582 Roll ChromeOS Arm AFDO profile from 147-7680.22-1772422923-benchmark-147.0.7719.0_pre1594445-r1 to 147-7710.0-1773022477-benchmark-147.0.7725.0_pre1595991-r1
  • 64e8cb8 Remove obsolete test
  • 0a6fcb1 Roll DevTools Frontend from 11a0bb5ac7d3 to 14b4d5dcc4f5 (3 revisions)
  • a44592c Simplify span construction in single_install_event_log_fuzzer
  • 913dce3 Make DeleteVariationsSeed also clear the cached flags
  • 4719576 Refactor multistep_filter tests to use tabs::MockTabInterface
  • a122678 Roll Chrome Android ARM64 Orderfile from rCashcyObBwZx-sje... to SDAr_2sd0O66CarUT...
  • 0279cbc Roll ios_internal from 8b29e1b3461a to b560167fb917
  • 0f95b64 Roll WebRTC from 1d40b86162d9 to aade3867c165 (3 revisions)
  • f5251ba [Gardener] Disable WebContentsImplBrowserTest.MouseUpInOOPIframeShouldCancelMainFrameAutoscrollSelection
  • 18ae39a Add WebMCP CDP protocol: Listing tools
  • eef66de Roll Chrome Android Desktop x64 PGO Profile
  • f00dd8b [iOS] Do not show the assistant when in tab grid
  • ab59b23 Roll Chrome Android ARM32 PGO Profile
  • 2a370ca cc: Fix ScrollJankV4 trace event duration
  • 595d765 Add a feature flag for client certificate provisioning on iOS to chrome://flags.
  • aecd959 Roll ANGLE from 8288c12816ec to 70738f2fe623 (2 revisions)
  • 55f5a07 [Autofill AI - M4] Reauth when editing entities
  • 3f43421 Roll Chrome Mac Arm PGO Profile
  • edfaaa0 [Gardener] Disable ChromeAimEligibilityServiceOAuthBrowserTest.OTRRequestIsNotDropped
  • 69b6079 [ios] Deprecate UIWindow's init in PaymentsSuggestionBottomSheetCoordinatorTest
  • 9ce6c7e Roll DevTools Frontend from e33027adccae to 11a0bb5ac7d3 (4 revisions)
  • 51835a9 [Private AI] Refactor PrivateAiLogger ownership and usage.
  • b01db7c Roll Chrome Win64 PGO Profile
  • 672ac99 [ios] Deprecate UIWindow's init in SaveCardBottomSheetCoordinatorTest
  • 3376a4f Add WebRTC logging for MediaDevices::enumerateDevices
  • 7a8959d Sync: Improve persistence in PRE_ tests on Android
  • 3fb610d Roll ios_internal from 7ab3162dacd8 to 8b29e1b3461a
  • 2e51bf7 Roll WebView ARM64 Orderfile from roXsZ7ozePwf5twr5... to _cqVQhwo9U_vPuDzW...
  • 41c20d5 [iOS][Assistant] Prevent excessive layout passes
  • 2b21c58 [iOS][Assistant] Implement dynamic layout morphing
  • 7be6872 [iOS] Add Cobalt feature flag
  • 3719158 [AutofillAi - M4] Implement attribute requirements.
  • 8d8ce2a Roll Chrome Win32 PGO Profile
  • fbf38f3 [iOS] Fix ButtonStackViewController bottom padding
  • 4981755 Roll DevTools Frontend from 06cff4ad6ee6 to e33027adccae (1 revision)
  • 12dfd82 Add FilterExtractor
  • 995ace9 iwa: Break down WebAppInternalsIwaInstallationBrowserTest test cases
  • dbf8406 Roll Chrome Android ARM64 Orderfile from 0DPlri2nhtqSxViGU... to rCashcyObBwZx-sje...
  • 3904c7c Add typ stubs to mypy helpers
  • 20419f7 Roll BoringSSL from a218d49e0218 to 27bc28d7f03f (1 revision)
  • 68e54a7 Roll V8 from 4c3b62f35856 to 723547b98d2e (2 revisions)
  • f2bad07 [AutofillAi - M4] Trim whitespaces from editor values.
  • b162551 private_ai: Add private_ai namespace into WebUI
  • 757280d Roll Dawn from 620a520f5029 to cdff52f3c777 (1 revision)
  • 8b8f630 Roll ios_internal from 3528af0bc932 to 7ab3162dacd8
  • e6acb60 Roll WebRTC from 822396392418 to 1d40b86162d9 (1 revision)
  • 93e47ab CHECK token type in ConsumeVariableName
  • 6490bd4 Roll ANGLE from b1b19492e609 to 8288c12816ec (1 revision)
  • 0911060 [permissions] Fix DSE UMA for approximate location
  • d01041e [Blink] Add RASTER_READ to SharedImages WebGL creates in GetImage()
  • 1731726 Hoist Clear() out of SVGTransformList::ParseInternal()
  • 106ae6d Roll WebView ARM64 Orderfile from 0AkcRg_CxN6xpJ7sq... to roXsZ7ozePwf5twr5...
  • b295cd4 [ios] Deprecate initWithFrame in BwgSnapshotUtilsTest
  • cbc195f [ios] Use callback instead of block for C++ methods
  • 5643d2b [ConAcc] Move DiceResponseParams and DiceAction to standalone files
  • 89c5963 Roll Chrome Mac Arm PGO Profile
  • b53956f Enabled RM translate by default
  • ef4a10d Extension: Android file picker intent
  • 9f6f1ea [Autofill] Re-enable keyboard accessory tests
  • 296cb4f [//media] Streamline setting of sync token in CopyVideoFrameTexturesToGL
  • 756862c [//media] Move CanCopyVideoFrameDirectlyToGLTexture() check
  • d70214a [//media] Turn conditional into CHECK
  • 2e2d7f1 Roll DevTools Frontend from b76376f445ef to 06cff4ad6ee6 (1 revision)
  • f9e17ff Clean up ephemeral profile's PWA shortcuts on startup
  • a439f69 Roll BoringSSL from 30cd935189c9 to a218d49e0218 (1 revision)
  • d9a0407 Roll Projector App from DrodRGFbTjqtjZqyM... to GCZzwoQA1Iz-j-JFZ...
  • 05f5906 WTF:: Add subview() to blink::String and blink::StringView
  • b8d337d [//media] Add CanCopyVideoFrameDirectlyToGLTexture() util
  • 6b1cab2 [Blink] Remove WebGLImageChromiumEnabled runtime enabled feature
  • 47ea3c1 Roll Chrome Android ARM64 Orderfile from EW0_kWsVvXDvY8ZWg... to 0DPlri2nhtqSxViGU...
  • ca52c54 [Gardener] Disable two InitialWebUIMetricsDropBrowserTests
  • a7965c0 Provide identity provider brand icon via glic API
  • c799d53 Simplify setup_modules.py
  • ce6c2a0 WTF: Rename ContainsOnlyASCIIOrEmpty() to ContainsOnlyAsciiOrEmpty()
  • a455481 Roll eigen from a3cb1c6591fe to 54458cb39d10 (1 revision)
  • ddce475 Roll WebView ARM64 Orderfile from 6GAHZfSWy-fkb3WgE... to 0AkcRg_CxN6xpJ7sq...
  • 7d34e79 Roll WebRTC from fda4e0da0ccc to 822396392418 (1 revision)
  • bcd10a4 Roll llvm-libc from b3aa5bb702ff to c42ab4598a74 (1 revision)
  • d7697b9 Autoshard chromium/src test suites
  • d1184ae Restart macOS audio process on system capture timeout
  • f5a1bbc [RTCLogging] Use upload list for text log files in chrome://webrtc-logs
  • b18063f Roll Chrome Win64 PGO Profile
  • e65548c ose-split: Deduplicate merging local OSE data with the prepopulated one
  • 558e42f Roll Chrome Mac PGO Profile
  • af87586 Recalc style when @supports and @navigation conditions change.
  • 701b3b3 Roll ChromeOS Bigcore AFDO profile from 147-7680.22-1772424827-benchmark-147.0.7725.0_pre1595991-r1 to 147-7710.0-1773021199-benchmark-147.0.7725.0_pre1595991-r1
  • b14b993 [Blink] Remove DrawingBuffer test dependence on runtime feature
  • 1ea5a16 [WebMCP] Throw TypeError when JSON.stringify(inputSchema) fails
  • 459f2a5 Add documentation for new query option
  • aa6d35f Fix settings of shard_level_retries_on_ctp for critical targets
  • 11cac58 [//media] Add CanCopySharedImageToGLTextureViaTextureCopy() util
  • dd0ab81 Remove redundant tests in fast/dom/inert [1/n]
  • 0c23898 Roll Chrome Win32 PGO Profile
  • 4468713 Sanitize redirect chain when committing error pages.
  • 681da8f Roll DevTools Frontend from 0daf2c4149e8 to b76376f445ef (1 revision)
  • 732ebe1 Roll ios_internal from d121bf165efe to 3528af0bc932
  • b59acf8 Roll Boca App from SX-2hzXkLWDb10_HK... to fXGmqM4VfI7Is0xsy...
  • 749fb04 Roll Chrome Android ARM64 Orderfile from ImoMF_fmJ5AutPklD... to EW0_kWsVvXDvY8ZWg...
  • b900dc8 [Gardening] Mark scriptprocessor-offlineaudiocontext.html as flaky
  • d4121bb Refactor PRESUBMIT.py
  • d8484ab Roll Perfetto from 01b3bcc18ba2 to 4a5b83f9bc04 (1 revision)
  • a2be8f0 Roll Chrome Mac Arm PGO Profile
  • 94592cb Roll Boca Receiver App from DSGQ05qDOzVmPPiJB... to tvFZgxTG6HOBREaRg...
  • 595970a Create SaaS report scheduler only when feature is enabled.
  • aef1007 Roll Skia from 254e44141861 to ea4fd0e1472a (8 revisions)
  • 57988a1 [//media] Pull out PCVR direct VideoFrame->texture copy into util
  • 45dde95 Extend the expiration date of Prerender.Experimental.WaitingForHeadersFinishedReason histogram
  • 37e0529 [v8] Migrate to Get/SetPrototype() and Holder() from ..V2 versions
  • 2cdd0c5 Roll androidx from fjtOaLwXP1ZimKlXu... to 7RhZrbbyN_Godvmep...
  • eafb7f7 Roll Arm AFDO from 147.0.7719.0_pre1594445_rc-r1-merged to 147.0.7725.0_pre1595991_rc-r1-merged
  • 2ce98d2 Roll WebView ARM64 Orderfile from i5nuoZnnAKsHLbzkA... to 6GAHZfSWy-fkb3WgE...
  • fc6f991 [Frameworks roll] Roll to 880686831 piper revision
  • bcd7d7e Rename and move ServiceWorker.SyntheticResponse.IsHeaderConsistent
  • 6cf7d7e Revive Net.QuicSession.PendingStreamsWaitTime
  • 88c4041 Roll Chrome Win ARM64 PGO Profile
  • d84f536 Roll DevTools Frontend from 2c32b42de247 to 0daf2c4149e8 (2 revisions)
  • a7398cf Roll Chrome Android ARM64 Orderfile from N0Ijz3Frek-43xqyl... to ImoMF_fmJ5AutPklD...
  • 040447c Roll WebView ARM64 Orderfile from y4Pz2N1OH9T4NyFvX... to i5nuoZnnAKsHLbzkA...
  • efe7d29 Add CrashFrameProcess to browser_test_utils.
  • 867c27f Roll Chrome Android Desktop x64 PGO Profile
  • cdd0b0e Roll V8 from 12b5b1344d68 to 4c3b62f35856 (2 revisions)
  • 068c877 Bump histogram expiry date
  • c4fd018 Roll Chrome Mac Arm PGO Profile
  • bbcaef4 Add crash keys to ServiceWorkerSyntheticResponseManager.
  • b422174 Roll DevTools Frontend from a429d5a8b2e7 to 2c32b42de247 (1 revision)
  • ef20218 Roll Chrome Android ARM64 Orderfile from nEn9apGWA6BhC2a76... to N0Ijz3Frek-43xqyl...
  • ecc0166 Slice ServiceWorker.SyntheticResponse.IsValidBodyStreamProvided by SyntheticResponseStatus.
  • 91f27c3 Remove unused ARC string (IDS_ARC_*)
  • 781a80f Automated Commit: LKGM 16609.0.0-1075826 for chromeos.
  • f79876a Refactor TransferResponseBody to take both consumer and producer handles.
  • 9cc634c Roll WebView ARM64 Orderfile from HmmCLZxKlfnI15rmw... to y4Pz2N1OH9T4NyFvX...
  • bd4596c Revert "One Atomic window resize for LFF"
  • b51c5e3 [Webium] Implement client-side metric names mapping
  • 90d93f8 Roll ChromeOS Bigcore AFDO profile from 147-7680.22-1772424827-benchmark-147.0.7719.0_pre1594445-r1 to 147-7680.22-1772424827-benchmark-147.0.7725.0_pre1595991-r1
  • 4d02f65 Roll Chrome Win32 PGO Profile
  • 8b3363b Roll V8 from 4e3d453d6ed7 to 12b5b1344d68 (2 revisions)
  • 2af76bd Roll Chrome Android ARM64 Orderfile from _LemE-MH1rx41TBpX... to nEn9apGWA6BhC2a76...
  • 6e54fba [bedrock] Migrate browser_cleanup_handler away from BrowserListObserver
  • 2cdd4c4 Enable CancelPendingCallbacksBeforeFetchRestart by default on Android.
  • 2b6cdfe Roll Chrome Mac Arm PGO Profile
  • 638d667 [Gardening] Add specific test expectations for first-letter-insert-text-node-dynamic.html
  • 7702844 Roll WebView ARM64 Orderfile from vCSgofPHC0MuKy61H... to HmmCLZxKlfnI15rmw...
  • 7da4cf7 Roll src/net/third_party/quiche/src/ f828d7c4f..435c98c0d (3 commits)
  • 0747310 [Webium] Replace `IsForInitialWebUI()` with `IsForTopChromeWebUI()`
  • 8e40d72 Ash: Drop async callbacks from VideoConferenceManagerClient
  • 2df4c21 Roll Chromium Variations from j4Emb8xxXG7Ldi0hb... to PuD11P8gXFWJh7m0E...
  • 2e78a11 Roll Chrome Android ARM64 Orderfile from XhWO4xJuZWamNJqnh... to _LemE-MH1rx41TBpX...
  • 0cb2d31 Roll WebView ARM64 Orderfile from A6XLKoEgRe5WQebex... to vCSgofPHC0MuKy61H...
  • 2592858 Enable dynamic sizing for the default browser modal
  • c81108e Move filemanager related prefs to ash_pref_names.
  • cf35fad Reuse chrome multiple package name
  • 8b472f3 [Gardening] Disable ActorClickToolPDFBrowserTest.Click on Linux
  • a78732f Roll Chrome Mac PGO Profile
  • 5013f6a Roll Chrome Win64 PGO Profile
  • 25d6f18 Revert "Reland "Move AutocompleteController to FuseboxSessionState.""
  • 9224471 Revert "Add undo behavior in chrome://skills delete toast"
  • 3d9ba36 Updating trunk VERSION from 7725.0 to 7726.0
  • d510a02 Roll src/third_party/crossbench-web-tests/ d2424bbd8..909ad1733 (11 commits; 1 trivial rolls)
  • 1aa9dfa Reland "Enable custom user timing throttling in WebView"
  • db8d542 Roll Chrome Win32 PGO Profile
  • b12b7f2 Roll Chrome Mac Arm PGO Profile
  • 6ab1f89 Roll WebView ARM64 Orderfile from nIq2rgkZ9fAI1bfFJ... to A6XLKoEgRe5WQebex...
  • e9a9e8b Revert "[contextual tasks] Hide composebox when offline."
  • af115c1 Roll WebView ARM Orderfile from tsQI2gkU6fWuHmtLI... to JIGC5o0ByCSc7xUwg...
  • 232064f Enable touchpad overscroll to back-fwd navigate by default on phones
  • 2cfe191 [Gardening] Update test expectation for flaky first-letter-insert-text-node-dynamic.html
  • 2ecb9d5 Roll eigen from dd81698aedb2 to a3cb1c6591fe (3 revisions)
  • 6fad912 [Gardening] Disable DomainDiversityReporterTest.ScheduleNextDaySuspended
  • 5bce629 actions revamp: Make animation more robust
  • 86f5c19 Roll Chrome Android ARM64 Orderfile from LQPFgoIQRuYEgRY-b... to XhWO4xJuZWamNJqnh...
  • 6e3f876 extensions: Support selection context menu on extension popup
  • d1bafb1 Prerender2Fallback: Fix PrerenderSpeculationRulesHoldbackBrowserTest
  • 0a2b3dc Prerender2Fallback: Fix PrerenderLowMemoryBrowserTest
  • f3e9ea8 Prerender2Fallback: Fix PrerenderWhenInitiatorInBackground_Queue_Processing
  • 18e2f36 One Atomic window resize for LFF
  • f6c2a3a Roll Chrome Android Desktop x64 PGO Profile
  • 617cf54 siso: update to version 1.5.5
  • 499088b Roll Chrome Android ARM32 PGO Profile
  • 7b4c6f9 Roll Chrome Android ARM64 Orderfile from o5QaeY1BCwBtM46cW... to LQPFgoIQRuYEgRY-b...
  • 64b7cfc Roll Chrome Mac Arm PGO Profile
  • 73b6638 Roll WebView ARM64 Orderfile from b36H7fi_i1dSS-DDM... to nIq2rgkZ9fAI1bfFJ...
  • 422200a Automated Commit: LKGM 16609.0.0-1075820 for chromeos.
  • 0852bc9 Roll ios_internal from fdb778721f43 to d121bf165efe
  • 704c022 [soft-navs] SoftNavigationContext created in terms of Interactions.
← Back to all summaries