Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2026-03-23

Overview

This digest covers 578 commits from March 23, 2026, with 438 deemed relevant to developers. This was a day of significant API refactoring, with numerous breaking changes across core, UI, and ChromeOS components. The first relevant commit was (12284ce) and the last was (db815f5).

Breaking Changes

  • ⚠️ BREAKING The crosapi::mojom::cros_display_config interface was removed entirely. The public C++ API ash::CrosDisplayConfig was also changed to use int64_t for display identifiers instead of std::string, breaking all clients of the display configuration API on ChromeOS. (13cedb9) (f8e02af)
  • ⚠️ BREAKING The core ui::Clipboard API has been changed. Methods WriteBookmark and ReadBookmark have been renamed to WriteURL and ReadURL respectively, and their signatures now use the ClipboardUrlInfo struct. (624e217)
  • ⚠️ BREAKING The 2-parameter overload of content::WebContents::IgnoreInputEvents has been removed. Callers must update to the single-argument version. (05268bd)
  • ⚠️ BREAKING Account settings logic has been moved from components/autofill to a new components/account_settings component. This changes header paths and namespaces from autofill:: to account_settings:: for classes like AccountSettingService. (a1b05c5)
  • ⚠️ BREAKING The network::mojom::NetworkContext::CreateWebSocket mojo method signature has changed, adding a network_restrictions_id parameter. Implementations of this service must be updated. (0f1662a)
  • ⚠️ BREAKING The public TabStripApiObserver::OnTabsClosed method and OnTabsClosedEvent have been renamed to OnNodesClosed and OnNodesClosedEvent. (73c9765)
  • ⚠️ BREAKING The blink::mojom::Frame::BeforeUnload mojom interface signature has changed, adding a force_to_proceed boolean parameter to support asynchronous execution. (2cb8be8)
  • ⚠️ BREAKING The core Blink utility method AtomicString::FromUTF8() has been renamed to FromUtf8() to conform to style guides. (bd3411c)
  • ⚠️ BREAKING The public virtual method GetOnDeviceCapabilities() has been removed from the OnDeviceCapability interface as part of a refactor. Callers should use ModelBrokerClient instead. (6e00555)
  • ⚠️ BREAKING Several public methods (e.g., GetIssuerCommonName, GetTimes) have been removed from X509CertificateModel as part of its refactoring into the new components/certificate_model component. (35ed0b5)
  • ⚠️ BREAKING On Android, the public method addDestructionObserver has been removed from the SuggestionsUiDelegate Java interface. (5a70b48)
  • ⚠️ BREAKING The TrackedElementRects struct has been moved from the cc namespace to the viz namespace. Embedders accessing this via RenderFrameMetadata must update include paths and type names. (2242c67)
  • ⚠️ BREAKING The exported C++ switch blink::switches::kEnableWebGLImageChromium has been renamed to kEnableOverlaysAndLowLatencyUsageForWebGL. (1d5f025)
  • ⚠️ BREAKING The public API for CrosAppsApiRegistry on ChromeOS now uses content::BrowserContext* instead of Profile*, requiring updates for embedders using this registry. (18b7586)

API & Architecture

  • Several feature flags for launched features were removed, making their behavior permanent. This includes kQueueNavigationsWhileWaitingForCommit, kContentVerifyJobUseJobVersionForHashing, and kFilesConflictDialog (ChromeOS). (369b2d9) (d49106f) (ae18657)
  • As part of Project Bedrock, profile_manager.cc was migrated away from using BrowserListObserver to reduce dependencies on the Browser object. (7427fd2)
  • A new LocationIconInterface was extracted to decouple the location bar icon's logic from the native Views framework, paving the way for a WebUI implementation. (8222d0b)
  • The JSONParser class references were removed following its replacement by a Rust-based implementation. (7e81108)

Blink & Web Platform

  • WebTransport connections will now be closed when a page enters the BackForwardCache, rather than blocking the page from being cached. (3b1c1a8)
  • An experimental implementation of ML-DSA (a post-quantum signature algorithm) is being added to the WebCrypto API, gated by the WebCryptoPQC feature flag. (2da14fd)
  • A new method, WebFormControlElement::GetTextInfo(), was added to retrieve font and glyph information from form elements, intended for use by PDF text annotations. (67421ea)
  • The experimental marker attribute, related to declarative shadow DOM, has been completely removed from Element and ShadowRoot. (f2a2c34)

UI & UX

  • Android: A reusable TabBottomSheet JNI bridge was introduced to simplify native integrations with the Android bottom sheet. (c2d14de)
  • Android: WebView behavior was aligned with the Android ecosystem by removing a custom select_action_menu_paste resource ID in favor of the standard android.R.id.paste. (0bceff6)
  • macOS: A crash in the tabstrip that occurred when switching to vertical tabs has been fixed. (703c279)
  • iOS: Logic was added to correctly handle the tab count button in the app bar when there are zero tabs. (6fb8703)

Networking & Security

  • Android: Initial support was added to check for network connections blocked by the new Local Network Protection (LNP) permission, introducing a new ERR_LOCAL_NETWORK_PERMISSION_MISSING error code. (7c1ae43) (19434ee)
  • The Brotli library was updated to fix a decoding hang on certain inputs. (224140d)
  • To defend against a potential clickjacking vector, logic was added to traverse local parent frames when checking for SVG filters applied to cross-origin content. (032145b)

Performance & Media

  • The performance of generating stack traces with line numbers on Linux was significantly improved by optimizing how the .debug_aranges section is parsed. (bd3bd31)
  • Support was added for parsing and attaching Dolby Vision RPU (dynamic metadata) to H.265 video, improving HDR video playback capabilities. (3e77dae)
  • A large number of UKM (URL-Keyed Metrics) reporters were removed from the compositor (cc/metrics), simplifying the metrics pipeline. (43be1f5)
  • The ui::gfx::Tween::CalculateValue method was optimized by making cubic bezier instances static, avoiding reconstruction on every call. (938e146)

Build & Infrastructure

  • The ENABLE_EXTENSIONS build flag was updated to ENABLE_EXTENSIONS_CORE in several places to correctly support extensions on desktop Android. (e673bb6) (da00c0f)
  • The siso build tool was updated to version 1.5.7. (32939b2)
  • Initial GEMINI.md files were added to several subdirectories to improve the effectiveness of AI-assisted coding tools. (15c8983) (a138750)
All Commits (578)
  • db815f5 AppBannerManagerAndroid remove ScopedJavaGlobalWeakRef
  • be850dc Fix DOMTimer use-after-free when Stop() is called with null action_
  • 67421ea [PDF Ink Signatures] Add WebFormControlElement::GetTextInfo()
  • 5e04ff6 [finds] Open finds notification URL when the notification is clicked
  • 51ccb22 Add GetMetaTagNamesAffectingEligibility to PageContextEligibilityAPI.
  • 71244c5 Sync state from C++ WebUIReadOnlyOmnibox to .js/.html
  • 1cf671d Remove obsolete build dependencies on crosapi
  • 3e77dae Part 3 - Parse and attach Dolby Vision dynamic metadata to pictures
  • 25ed499 Fix comment in TransportClientSocketPool.
  • 10d296b [Glic] Cleans up Pip UI
  • c91be46 Revert "[Signin][Android] Update ProfileDataCache usage in IdentityDiscController"
  • e89a8d0 Reland "Clean up AppBannerManagerBrowserTest"
  • 96f563c Roll ios_internal from fe74f06d6366 to fdc0440312c1
  • 032145b [SVG] (2) Traverse local parent frames
  • 961e217 Initialize WebContentsModalDialogManager for Signed-out flows
  • 1796eac Migrate AnnotationTray to use ImagedTrayIcon
  • 080e1e9 Roll FuzzTest from 9600119eaa46 to 3f730151eede (1 revision)
  • ea687e5 Speculative Flake Improvement in ExtensionTabsTest::DiscardWithInvalidId
  • a35610e [Windowing APIs] Enable CCT in Test Extension
  • 0a752d7 Roll Chrome Mac Arm PGO Profile
  • ebe5c87 Remove already-disabled SH_GLSL_COMPATIBILITY_OUTPUT test
  • 5d9dd66 [Vertical Tabs] Retain Focus After Leaving/Entering Group on Non-Mac
  • d6e9620 Move contextual_cueing sources to chrome/browser/glic
  • 9fea254 [lensoverlay] Reference searchbox visible instead of searchbox enabled in CSS.
  • bef4a64 Show Force save to cloud diaglog for large files
  • 09abf27 Connect `window.indigo.startImageReplacement`.
  • 48cf588 [next] Adding missing histograms.xml info for eligibility service.
  • 7fc945e Removing some dead code
  • 9cf6f7f [crd host][linux][multi-process] Introduce new systemd service
  • 83cba68 [Settings Search] Reset the value of `sNeedsIndexing` on #reset
  • 6d37543 [BackButton] Adds gesture user education feature engagement
  • faabb4a [builtin-ai]: Add a feedback listener for the on-device-ai setting
  • ab10553 [composebox] Modify composebox_input* files to match the latest specs
  • 944bc84 Roll WebView ARM64 Orderfile from Go-swiTz11DJL4FmK... to qAuO3vK9IKek6Cb9A...
  • f32354e [xr][3d] Setup feature flag for immersive player feature for Android XR devices.
  • db64996 [finds] Schedule a notification with the finds proto response
  • d81097d Attempt to fix omnibox crash
  • ecdfea9 [glic] Add kGlicActorEnableScriptTools feature flag
  • 7d7f4c0 [Contextual Tasks] Implement Android Panel Host
  • 24f1874 Make PI target parse as lower case, and matched as preserve-case
  • b8dd095 Roll WebView ARM Orderfile from E2ZQSK4k1QEV4ly0P... to 50yzhUW69hCTejSKM...
  • 7ec571d Roll clank/internal/apps from c1df174062f0 to 0a242b73af79 (1 revision)
  • f2a2c34 Obliterate the marker attribute
  • 0142c14 ai-overlay-dialog: Recreate APISession on new page
  • 136148c Avoid double lower-casing in GetContentClassification()
  • c74cb8b Replace Left() and Substring()/substr() with subview()
  • f423f86 Roll Chromium Variations from T_dvhXY3yp5Dt6czH... to uq0SfCE7I-RCTdN5F...
  • 5f0c560 Roll src-internal from 6df007815858 to 6e7f2bc40e19 (6 revisions)
  • b5e3462 Roll Chrome Android ARM64 Orderfile from zGAtynZnRLc6NlHFt... to WkmKaaBC4fbH8QVqT...
  • 4a7f34f [GlicInvokeFre] Add an fre override to notifyPanelWillOpen.
  • 7d26fc1 Revert "Reland "[a11y] Add cursor tracking for contenteditable elements""
  • 3817a81 [GlicSettings] Add Native Pref
  • 97a68ba [Socket Pool] (8) Experiment with raising kDefaultMaxSocketsPerProxyChain
  • 454f6bc Roll llvm-libc from a20a87a7eb92 to 65d4df5c8e93 (3 revisions)
  • 6a78194 extensions menu: Add layout for pinning the menu icon
  • f417da5 flyout: Use application window as root view for ListMenuHost
  • 5b5bc1c [iOS] Enable NTP custom color slider by default
  • 79b7766 [DCSI]: Make WrappedGraphiteTextureBacking's Dawn access dynamic.
  • c82d86e Roll DevTools Frontend from 756fa3310a89 to f5c61848df27 (1 revision)
  • 35a1545 [DCSI]: Make WrappedGraphiteTextureBacking's GL access dynamic.
  • 044101d Reland "SlimWebview: Add more browser tests"
  • e673bb6 Update ENABLE_EXTENSIONS build flag in ChromePermissionsClient
  • 15a6396 [Vertical Tabs] Fix drop arrow positioning logic
  • c6e40cc [APC] Add ARIA toggle and selectable clickability reasons
  • 25f8ace Add a fieldtrial testing entry for ClankDefaultSearchApi.
  • 9df9600 [Privacy Sandbox] Clear Ad API prefs on startup if feature enabled
  • 9300992 Update CBB autoroll for the builds refs
  • f2a0ad7 [Setup list] Maintain session-consistent module classification
  • 21b607b [iOS] Add workaround in components/webauthn/ to unblock TS v6 upgrade.
  • cadc602 Revert "Remove lens string dependency in SearchboxHandler"
  • 4e173e0 Don't range-check PlainYearMonth ISO dates for full date range
  • 19af8f2 Roll Perfetto from bba888dab987 to 5d32182175cc (2 revisions)
  • 4d9222c Apply modernize-use-ranges clang-tidy fixes in //base
  • d29f083 [SidePanel] Resize native pages and custom views
  • 34150df [ntp-next] Use server-side text for action chip tooltips
  • 9a8bf1d Roll Chrome Mac Arm PGO Profile
  • 4ab32ce Add a fieldtrial testing entry for DesktopAndroidLinkCapturing.
  • 9bedfab Roll Chrome Win ARM64 PGO Profile
  • 725dc4d Fix dangling pointers in ash/quick_pair/keyed_service/battery_update_message_handler_unittest.cc
  • 069e718 Remove unused argument on NeedsHTTPOrigin
  • 202feb3 [finds] Guard opt-in from being shown to certain platforms
  • 753ceae Automated Commit: LKGM 16625.0.0-1076161 for chromeos.
  • 2488f85 [iOS] Add system event observing to FullscreenMediator
  • bc67c73 nearby: use new HKDF API
  • bc5ef06 Move cc::PictureLayerImpl tracking into OwnedLayerImplList
  • d177a62 [Link Capturing] Add keyboard focus outline to chip
  • 2da14fd [WebCrypto]: Implement ML-DSA (Post-Quantum Signatures)
  • a6d64fe Linux: Remove bundling-related code in shell_integration_linux.cc
  • c255198 updater: add WebView2 to DEPS, add .gitignore for CIPD downloaded files
  • af20469 [ContextualTasks] Polish internals UI
  • 88b472b Roll Android 12L AVDs that are created with explicit gpu_mode
  • 0e10150 Adding markdown docs for /remoting/host
  • 60ba0ae Updating GEMINI.md in /remoting/protocol
  • fdc2601 Add GEMINI.md file for /remoting/client
  • 7b7cd49 Updating GEMINI.md in /remoting/codec
  • 65d6219 [iOS] Hook up the download manager with DLP download content scanning.
  • 88461fa Roll Chrome Mac PGO Profile
  • c2d14de Introduce reusable TabBottomSheet JNI bridge
  • 925c85b Roll Chrome Win32 PGO Profile
  • 8cac3fe Roll Chrome Win64 PGO Profile
  • 1915763 Update ClientSideDetectionCreditCardForm testing config.
  • 3780acf Add UNSAFE_TODOs to make all VAAPI code compile with unsafe_buffer_usage
  • b668bdc Avoid duplicate map lookups.
  • 1fa21d1 [Reading mode] Fix flakiness of UpdatePageActionVisibility tests
  • b65cb17 [SkillsDialog] Ui tweaks
  • 187c583 [iOS][Forms AI] Add a builder class for EntityInstance
  • 66f23fe Resolve accessibility annotations of query
  • b778278 Roll ios_internal from b2d2a34009e9 to fe74f06d6366
  • beb8f99 [Frameworks roll] Roll to 888210471 piper revision
  • 73eb501 Update Bug ID
  • d8fb7d9 [aim-eligibility] Use config in `IsToolAllowed` and `IsInputTypeAllowed`
  • 801ff78 Roll Skia from a81bf411a5cb to c2b58922e37d (3 revisions)
  • 7d04f66 [Autotest] --run-related Flag
  • 0ee936d [Autotest] Simplify GetTestFilesFromChanges()
  • 0e55757 [aim-tools-models] Use `max_inputs_by_type` value for recent tabs.
  • df2610b [Autotest] Resolve Presubmit Upload Check Warnings
  • 6ae8d50 Remove DefaultANGLEVulkan from fieldtrial variations
  • d4ef3ac [Bookmarks Bar] Extend expiration dates for histograms
  • 6d934cc Roll Chrome Android ARM32 PGO Profile
  • b7106b6 Add a new feature flag kVSyncAlignedPresentation on Mac
  • c7da65c Updating the GEMINI markdown doc in /remoting/base
  • 8312dbf Update /signalng GEMINI.md for Corp and src-internal warning
  • 45a34c1 infra: Remove linux-afl-asan-rel builder.
  • 445b6c8 Roll clank/internal/apps from 970a6e2e3e12 to c1df174062f0 (1 revision)
  • cb2d72f [Cross Device] Unify and update the expiry of histograms
  • f6e603f Revert "Fix histogram definition and enable check for unused enums."
  • abdec07 Roll Chrome Android Desktop x64 PGO Profile
  • ca0e48c [ios] Update UMA histogram extension terminology
  • c6e2568 [GMA][WebView] Add WPR archive for Crossbench GMA WV test app embedder benchmark
  • 1f1b911 Test the origin conversion for the attempt form filling tool.
  • 21465fd updater: Fix bug reference in bundle installer documentation.
  • f3285bb Add sync owners to c/account_capabilities bridges.
  • 885030e [Vertical tabs] Allow region view to expand on hover
  • 910fb5c Roll clank/internal/apps from 07627998fdb6 to 970a6e2e3e12 (1 revision)
  • e12d7f9 Roll Chrome Mac Arm PGO Profile
  • 31679b9 Roll DevTools Frontend from d115f4c311eb to 756fa3310a89 (3 revisions)
  • c5265f5 Remove glic single-instance test cases from attempt_login_tool...
  • 34e6c3a [ozone/wayland] Check for null target in WaylandEventSource::OnHoldEvent
  • 7614979 Use optional macros in test helper
  • eb7346b Add existing navigation history to SendTabToSelfSpecifics
  • a8e675e [GHC] Forbid Copilot from amending Git commits
  • 9614a8b [realbox] Refactor searchbox HTML structure for Realbox Next.
  • 16240e7 [Glic] Diagnostic metrics for YT Ask button detection.
  • 6e73f6e Asynchronously call BackgroundLoaderOffliner::ResetState
  • 9d246cd Roll src-internal from de4f99857459 to 6df007815858 (1 revision)
  • d308c60 Roll Crossbench from b243eaa4985d to 322b3dd1bd2b (1 revision)
  • 05268bd [content] Remove 2-parameter IgnoreInputEvents method
  • b06aa61 Disable GlicAnnotationManagerUiTest on ChromeOS ASAN
  • 2e7c0fb [PDF Ink Signatures] Extend expiry for PDF.LoadedWithV2InkAnnotations2
  • dc6cacd Side Panel: Add SidePanelUIProvider to provide SidePanelUI for all OSes
  • da00c0f Update ENABLE_EXTENSIONS flag in chrome content browser binder policies
  • da9ef10 [Glic] Multi-Region Selection: Only show resizing corners on active region
  • 11e000f [Code Health] Remove Welcome Experience feature flag and clean up tests
  • 7e81108 [base] Remove stray JSONParser references
  • 945ab07 ai-overlay-dialog: Fix dropped initial context
  • ad80295 [Reading mode] Remove some interactive tests in favor of browser tests
  • 6d519a6 Initialize WebContentsModalDialogManager for Profile Picker main view
  • fbb7682 Revert "[Android] Enable ClankDefaultSearchApi by default"
  • 5e2effd Add CTRequirementsStatus value for CT requirement overridden by delegate
  • 35ac743 Roll V8 from f3ae371fb86f to 7212ef18010b (6 revisions)
  • 5c52b75 [line-clamp] Fix test expectations
  • 10be16c Adds DumpWithoutCrashing to ContentAnnotationValidator::Create()
  • 489293e Extend expiration date for ChromeOS.Settings.Device.Touchpad*
  • ecbd7fd Digital Credentials: Fix "Network Error" on Android cancellation.
  • 214ff30 [Memory] Destroy HomeModulesCoordinator properly.
  • 53a7403 Remove "Uninstall" option for crostini apps from right-click menu
  • 55fb858 Roll Media App from FTbuX88GwRr9-eLtb... to nprR6I9_QQYxBLHRF...
  • 703c279 [Mac] Fix crash in TabStrip::IsRectInWindowCaption with null tab_container_
  • 8a497e7 Roll Perfetto from a7ef8f55866d to bba888dab987 (2 revisions)
  • 23e0420 Add a check for `service_controllers_.max_size`
  • 7b0c6c8 ai-overlay-dialog: Improve logging
  • d59e342 Roll Chrome Win64 PGO Profile
  • 29b9c21 Update ENABLE_EXTENSIONS build flag in ChromeFaviconClient
  • 55af03d [iOS][apcv2] Add ARIA label extraction in the iOS APC TreeWalker
  • de083fb [iOS] Add TabGroupPalette colors to the CreateTabGroup view
  • 45e8374 Reland "[FRE] Add 8 render tests for DefaultBrowserPromoFre"
  • 4003022 [Animated pb] M144 bisect cl 7
  • 9631730 LPP: Fix logic when determining whether online password is allowed
  • efb258c [sync] Encapsulate kReplaceSyncPromosWithSigninPromos (//components)
  • 73344e9 [Vertical Tabs] Fix flaky test AlertIndicatorDecorateOnCollapse
  • 2ce7598 Reland "Request focus on the immersive web view when shown."
  • 4a6eeb3 Fix shape() interpolation control point X/Y coordinate swap
  • b511948 Replace UNSAFE_TODO in IIRFilter with safe operations
  • fd9acfb Roll gn from 3007f57168db to c91f7e867276
  • 589d412 [Gardener] Disable DisplayGpuCrashBrowserTest.CrashInUnified
  • b75153c [GroupFocus] Add param for close on unfocus
  • 1eb9be7 Roll optimization-guide from 9264aaae6bcc to e2f93bf8f459
  • fbeb4f5 Avoid duplicate map lookups.
  • ac79556 a11y: Replace expensive string crash key with DirtyReason in AXObject
  • 98cb127 Contextual Tasks: Rename ContextualTasksPanelHostDesktop{Impl,}
  • 73c9765 [TabStrip API] Rename OnTabsClosed to OnNodesClosed
  • a5c0aef Fix histogram definition and enable check for unused enums.
  • 578f785 [iOS] Add metrics for actions taken on NTP
  • 90aa907 Roll Chromite from ad1081b2a823 to b6147da610a9 (1 revision)
  • 98cebd4 [sts] Add AI Mode Search settings page with STS every thread pref
  • bd3bd31 Improve performance of stack traces with line numbers on Linux
  • ea05622 Roll Chrome Win32 PGO Profile
  • 01eb653 LPP: During auth factor configured check fix missing return
  • 6c8ed5c Roll compiler-rt from 0a638b1a5e41 to 28c233d2e119 (1 revision)
  • bdeeef5 Adds support for parsing and upload test results
  • 5c162c5 [account_settings] Move factories to separate directories
  • daa2405 [iOS] Record timestamp for handled identities
  • b969c0f Add ClearAllWindowsExcept methods to PersistencePolicy
  • 764412e [Persist] Flag for Schedule Window Cleaning
  • 08685fb [a11y] a11y sets sort direction directly.
  • aaefea8 [Link Capturing] Associate fetched resolve infos with specific delegate
  • 9d3d5dd overscroll: Ensure to keep the same parent when we don't need an update
  • 8f36dd8 Modularize //chrome/browser/preloading/new_tab_page_preload
  • c1f53f4 Modularize //chrome/browser/preloading/bookmarkbar_preload
  • 8222d0b [WebUI LLBC] Extract LocationIconInterface for WebUI migration
  • 9da4b00 Roll glic-test-internal from e00ae46c7865 to cbce6834ceb4 (1 revision)
  • 43be1f5 cc: Remove CC UKMs
  • d7e6875 Suppress -Wexit-time-destructors in
  • 3529bce [TCP Socket Pool] Fix flaky test
  • 52739cd privacy sandbox: Disable deprecated notice features
  • 5ba8be8 [TCP Socket Pool] Add Feature Control for Backup Jobs
  • 9e53749 Roll DevTools Frontend from bf67339c19e6 to d115f4c311eb (3 revisions)
  • 6991c2d [gardening] Temporary disable a flaky test
  • 41e9409 Attempt to deflake http/tests/persistent-origin-trials tests
  • 63e3301 [iOS][PRDBD] Extend Settings.ClearBrowsingData.OpenMyActivity histogram
  • 15c8983 Add initial GEMINI.md files to our larger subdirectories
  • a138750 Updating /remoting GEMINI.md to improve its effectiveness
  • 61e4419 Add jihadghanna@ as OWNER for c/account_capabilities.
  • 5a70b48 [NtpRefactor] Remove SuggestionsUiDelegate#addDestructionObserver.
  • b4a2fed [iOS] Cache dyld before pre-booting simulators
  • c783069 Modularize //chrome/browser/preloading/prerender
  • bb48272 Roll Chrome Mac Arm PGO Profile
  • ba11964 Roll ios_internal from 4cc86c1f8908 to b2d2a34009e9
  • 7427fd2 [bedrock] Migrate profile_manager.cc away from BrowserListObserver.
  • c3f1c20 Skip transition if scope does not have a layout box.
  • 3c2af6c rcaps: Enable retroactive invalidation on iOS by default
  • bca3b11 rcaps: Set is_retroactive state explicitly for B&R invalidation tests
  • e61e530 [input-state] Refactor `mockInputState` to reduce code duplication
  • d19f309 LPP: Add methods to check password factor existence to cryptohome mixin
  • 1d38e39 LPP: Remove dependency on PrefService when removing a PIN
  • a4722f9 Roll Crossbench from 5130f5d73f78 to b243eaa4985d (1 revision)
  • 0750024 [Gardener] Disable testButtonsInitiallyDisabled on large screen devices
  • d49106f [Extensions] Clean up kContentVerifyJobUseJobVersionForHashing feature flag
  • d10632e [AIM] Update Omnibox.FocusResultedInNavigation* for new tools.
  • f071a2c Use append_range() in browsing_data_remover_browsertest.cc
  • 34693ad Ensure getSkillPreviews sorts skills by update time
  • 9000d03 [iOS] Add OpenEditGroupViewByTappingTitle feature flag
  • 69d0cb9 Roll Perfetto from ac6282fcb29d to a7ef8f55866d (2 revisions)
  • d003dd9 Mark SingleAxisScrollContainers as experimental
  • 369b2d9 Clean up code for the launched navigation queueing feature
  • bef3f00 Fix OffscreenCanvas::PushFrame damage rect
  • 503b6df [glic] Rename UIDelegate to UiDelegate
  • 77b73c6 Use std::optional::transform in android_tab_model_url_visit_data_fetcher
  • d943805 [mojo] Update docs for new EnumTraits::FromMojom signatures
  • 300a64b [ios] Remove deprecated HttpServer DEPS in device_sharing
  • 62e09d8 Roll V8 from fae4ee282933 to f3ae371fb86f (15 revisions)
  • de39146 [iOS][Composebox] Map composebox entrypoint to contextual search source
  • 123a7a7 Updater UI: Deflake UpdaterAppTest (again)
  • 67c9f3b [glic] Make tab underline view controller platform agnostic
  • dd649e9 Rewrite test for crbug.com/40095159 to work with navigation queueing
  • c0265ad Fix jj sync on Windows resolving gclient.bat
  • acd01d8 Format tools/jj/setup.py to conform with other scripts
  • a9a0354 [Signin][Android] Update ProfileDataCache usage in IdentityDiscController
  • aca0688 [iOS] Update expiration date for MobileSignInPromo.*
  • 8067fea Roll clank/internal/apps from d5a51067dace to 07627998fdb6 (1 revision)
  • 6049d50 [iOS][Forms AI] Enable the new add menu for Addresses and more
  • 241c8e4 [iOS] Safety Checks To Avoid Gemini Calls After SceneDidDisconnect
  • 96bf142 [iOS] Clean up Reading List EG tests and DEPS
  • ad8960f [iOS] Add hide cobrowse when navigating to NTP test
  • 4174472 Add DataUrlMimeTypeParameterPreservation to WebView flag list
  • d633da0 Roll androidx from ShH1Nbh7Gg9-IGjDd... to auHen2c3yuyBQK158...
  • d4a9654 [iOS] Remove stale web::HttpServer DEPS from sad_tab tests
  • c6dd683 Make ClickTool support targeting by document and element ids.
  • edf3774 Revert "[PageInfo] Extract shared certificate model utilities to components/certificate_model"
  • e8015f8 [Connection-Allowlist] Add tests for token that matches multiple
  • 51ee8e1 Revert "[iOS][PageInfo] Add iOS certificate model for certificate viewer"
  • 7dce111 [iOS] Prevent future voiceover interactions on the lens promo
  • 850d77f Adopt append_range() in credential_provider_extension/passkey_util.mm
  • bd5e850 Respect two-step shutdown of KeyedService in AccessibilityAnnotatorBackend
  • e4cc4cd Reland "LPP: Add remove local auth factors screen"
  • 51d56b5 Roll BoringSSL from 031e739fceef to 8f1f63604804 (1 revision)
  • 92ce213 Check ThinWebView CompositorView and WindowAndroid lifetime
  • ac24953 [Autologin] Unset the federated login request when the user takes over
  • 81d22a5 [File Download Access Prevention] Always append empty obfuscated chunk on completion
  • 6fb8703 [ios] support 0 tabs in AppBar TabGrid button
  • c367e70 Roll Help App from ln-oa-RymGtcA6l9E... to 2_Dp9zolevnboHbBt...
  • 1360caf Add proto conversion logic
  • 3211518 Roll DevTools Frontend from 3bd559ca06e3 to bf67339c19e6 (2 revisions)
  • 186b6f5 Listen to changing errors in Password Settings
  • d7f6483 Add cases for Update Skill
  • e1f8f8c Roll Chrome Win32 PGO Profile
  • 9a10d4a [iOS] Hide assistant when navigating to a search URL
  • 2dc9c75 [CT] Automatic update from google3
  • bc71b1a sync: Remove kSyncMakeAutofillValuableNonEncryptable flag
  • 89d3c32 [iOS][Gardener] Disable flaky test testRepostFormCancellingAfterRedirect
  • 849d3ca [sync] Encapsulate kReplaceSyncPromosWithSignInPromos (WebUI)
  • 364b6e4 Introduce and use WebActuationTool base class
  • c595ea5 Add a new ActuationTargetJavaScriptFeature.
  • ae18657 Files App: Revert Conflict Dialog and restore auto-rename behavior
  • 79a165b [Signin][Android] Add field trial config for SigninLevelUpButton
  • a1b05c5 [account_settings] Move account_settings to its own component
  • 4bfac1d Roll Chrome Win64 PGO Profile
  • 0e1bfdc Remove stale expectation.
  • f20899f [spanify] Use gnconfigs.py for GN arguments
  • c76c94b [Digital Credentials] Add regression test for error mapping consistency
  • cd7d847 Fix traversal during VT tag discovery
  • 2615145 [iOS][PAM] Add kPageActionMenuAuthFlow feature flag.
  • 9fe24a8 [WebMCP] Move wpt_internal/script_tools to external/wpt/webmcp
  • f9007c4 ai-overlay-dialog: Connect state to UI
  • 6d06008 Policy generator read uses_machine_and_user_values from features
  • 1a3191b [sync] Encapsulate kReplaceSyncPromosWithSignInPromos
  • b23187e Roll Chrome Mac PGO Profile
  • 269da93 Roll ios_internal from 51a3682ef557 to 4cc86c1f8908
  • fd25cb5 Extends Android.WebView.CachedFlag* histograms by a year
  • a46d347 [multistep-filter] Refine FilterNavigationObserver logic for suggestions
  • 3a1e2f7 Roll Crossbench from 5cc1d0077d41 to 5130f5d73f78 (1 revision)
  • df1b8cc Allow reentrancy for observer list in
  • 2a1d28e [ActorLoginM2]Add method checking if a permission matches a credential
  • 52f5602 Modularize //c/b/tpcd, //c/b/net/storage_test_utils
  • e0ecab3 [fuzzing] Add script for running Fuzzilli and generating coverage report
  • 529a521 Configure Gemini only if a user is signed in
  • 5359832 Enable PurgeGpuImageDecodeCache
  • 9fc2a53 Roll Perfetto from cfced880877a to ac6282fcb29d (2 revisions)
  • 5c7ad81 [Cleanup][Startup] Remove LegacyTabStartupMetricsTracker
  • 5cb2aa3 Fix type casting in xml_utils.py.
  • f44bb52 Add specific OWNERS for the git worktree tool
  • abce54a [Persist] Add an observer method for when all tab state is loaded
  • b6d6fd4 [Persist] Add TabContentManager#deleteAllExceptForIds()
  • 2ff10de [Persist] Add JpegThumbnailHelper::DeleteAllExceptForIds
  • ff7b732 Roll Chrome Mac Arm PGO Profile
  • 079f1cd [gardening] Temporary disable AsanServiceTest.ShouldAbort on Mac-ASan
  • e0cb182 Roll Chrome Linux PGO Profile
  • 270327e Add fieldtrial testing config for SaasUsageReporting
  • 687421d Add aggregation to IOS.ModelPageClassification
  • 0154e8d [KP] Automatic update from google3
  • 577ddeb [Persist] Add Etc1ThumbnailHelper::DeleteAllExceptForIds
  • 1a4a903 Remove iOS bot 10m readline timeout
  • c6c4a07 Add logging for queued UserMediaRequests in UserMediaClient
  • d405d44 Pref: Add kInputKrispNoiseCancellationEnabled
  • 0c0f0f0 LPP: Safely retrieve local auth factors complexity
  • d29d41d Enable link capturing in IWA by default
  • 4086b28 [iOS][Download] AutoDeletionService API Redesign
  • 1452025 [iOS] Save a unique cobrowse context in the browser agent
  • feb4b20 [Frameworks roll] Roll to 888055061 piper revision
  • b681a8c [iOS] Update the testOtpInputDialogCancel from OtpInputDialogEgtest
  • 33a891d [Blink] Don't pass SkImageInfo separately to UploadToBackingSI()
  • 2242c67 Move TrackedElementRects definition from cc to viz.
  • 48b4511 Roll DevTools Frontend from afb8535baf27 to 3bd559ca06e3 (5 revisions)
  • a70cce1 Allow reentrancy for observer list in hrome/browser/ash/app_mode
  • 4ab0ba3 Add UseCounters for <foreignObject> in images and canvas
  • a0ad454 Roll BoringSSL from 6453bd80a9fe to 031e739fceef (2 revisions)
  • 086c374 Remove manual reimplementation of std::optional::transform
  • 18b7586 Replace Profile with BrowserContext in chrome/browser/chromeos/cros_apps
  • 916e1f3 Updating XTBs based on .GRDs from branch main
  • 8891b44 [a11y][ffr] Add kAccessibilityAnnotatorFirstRun feature
  • e705c9a Wallet API: Feature guard uploading a session ID
  • 129fdc5 Handle unknown SSL connection version in GetEncryptionProtocol.
  • 0f1662a [Connection-Allowlist] Plumb network_restrictions_id through CreateWebSocket
  • 0bceff6 Use android.R.id.paste for the paste action menu item.
  • c2b9b6f [Encrypt Bookmarks] Move encrypted file for sync to sign in migration
  • 0d9796b [iOS][Cobrowse] Don't skip responder delegate call in cobrowse
  • 1072e58 [iOS] CloseEntityImportBubble should close the entity import bottomsheet
  • 938e146 [ui/gfx] Make cubic bezier instances static in Tween::CalculateValue
  • 2430b72 Roll Chrome Android ARM64 Orderfile from ZGvLfqKQGCJej4VHD... to zGAtynZnRLc6NlHFt...
  • d154938 Revert "[Build] Migrate Log usage." for Cronet
  • 9d04697 [Contextual Tasks] Copy params from WebUI URL to thread URL
  • 6531cc4 [iOS][PageInfo] Add iOS certificate model for certificate viewer
  • 08f299e Updating trunk VERSION from 7750.0 to 7751.0
  • 9848a1f [ChromeOS] Consolidate ChromeOS-exclusive features from chrome/common to ash/constants
  • 9638903 [gardening] Disable a flaky wpt test
  • 6b7477f [Payment Handler] Respect dev-tools auto-open setting
  • c8d81d9 Reland "Add a CDM certificate as a new entry in google_apis."
  • 1aa94c1 Migrate ChromeOS-exclusive vector icons from chrome/app to ash/resources
  • 7b67cea [Theme] Fix text of the save button on the preview dialog.
  • 511cc3d [iOS] Show loading state when saving private pass to wallet
  • b6abf75 Add an integration test for AttemptFormFillingTool's happy path.
  • 4565215 Roll Crossbench from 8793f65cab96 to 5cc1d0077d41 (2 revisions)
  • 967427d Remove static initializer in ios/
  • 9789d55 Roll ios_internal from fa8590bc73da to 51a3682ef557
  • 0cbb2f5 Roll clank/internal/apps from 63aa575f10cf to d5a51067dace (1 revision)
  • 651bec3 [account_settings] Add account_settings component owners and readme
  • 4c4c8e9 Store encrypted session files in a different folder.
  • e83a8d1 Roll DevTools Frontend from 9bdacf240bc2 to afb8535baf27 (1 revision)
  • de5757e Roll src-internal from 89babc15c161 to de4f99857459 (1 revision)
  • 61edb56 Roll Chrome Android Desktop x64 PGO Profile
  • 14b0b94 Allow reentrancy for observer list in content/browser
  • b9b994e [Signin][Android] Improve ProfileDataCache rendering tests
  • d1fc862 Set up fake log-in user session for Profiles in SyncTest.
  • 57ba1aa [DC] Map kErrorNoCredential to kErrorUserDeclined
  • 11b4a4b [dbsc] Add SSO feature flag and support aik_required parameter
  • 0f329ef Observe sign-in and load the AIM search in new tab
  • d4623cf Roll Chrome Android ARM64 Orderfile from rbU0GvgjOGtRdVqwN... to ZGvLfqKQGCJej4VHD...
  • 2bda710 [webaudio] Add a non-regression test for NEON OscillatorNode
  • e386f30 [permissions] Remove using statements from header file
  • 84ec295 Update meet_effects hash in DEPS file.
  • 18881a9 Roll Perfetto from d8212fcc1d4a to cfced880877a (4 revisions)
  • b66b2a4 Roll Crossbench from 396a209ddc7c to 8793f65cab96 (2 revisions)
  • fd036d2 Roll Chrome Mac Arm PGO Profile
  • ba8d1cd Roll clank/internal/apps from 586f5357a30a to 63aa575f10cf (1 revision)
  • b36d95a Roll ios_internal from afe391e6a9f5 to fa8590bc73da
  • ad25f9c [Android] Add probability param to signin survey fieldtrial
  • 505fae0 [Webium] Fix Window Deferral Logic in InitialWebUIManager
  • 3fe4b76 Report JavaScript WebMCP tool call exceptions on CPD
  • 4c6fc54 Roll Chrome Win64 PGO Profile
  • 1c530cb [Socket Pool] (7) Add an enterprise policy to control the websocket proxy limit
  • 386d73e [wpt][wasm] Disable global.get/set test cases
  • 302cae2 [iOS] Exit force fullscreen mode when tapping on the collapsed toolbar
  • 762341a Roll DevTools Frontend from 218e4bbc4387 to 9bdacf240bc2 (3 revisions)
  • 93a2f7c [gardening] Disable a flaky test on win-asan
  • bf97cd0 Roll WebRTC from 4f39d459159a to 5adc7ad292d8 (1 revision)
  • 440b876 [Signin][Android] Avoid SigninButton crash if SyncService is null
  • e194ccc Roll V8 from ece0ab653d18 to fae4ee282933 (8 revisions)
  • 619cab4 [iOS] Replace Bug ID For TODOs Related to Ask Gemini Chip
  • 1eb7293 [iOS]Regression test for missing names in identities.
  • 84f565f Move navigation-related protos to tab_navigation.proto
  • 4144031 iwa: Introduce the enable-chromeos-isolated-web-app-set-shape flag
  • 508f6c1 Roll Chrome Win32 PGO Profile
  • 936c10f Roll Chrome Android ARM64 Orderfile from KWhOWLrrTItP7-qXc... to rbU0GvgjOGtRdVqwN...
  • 93dc137 Support ::backdrop in CSSPseudoElement
  • bcddb66 Roll ios_internal from c971f5d013c0 to afe391e6a9f5
  • 9582699 [Sync] Allow reentrancy in Sync service and prefs observers
  • de92163 [gardening] Disable failing UpdaterAppTest.AppTest tests
  • 03d7666 Roll Crossbench from d9c5ce65781b to 396a209ddc7c (1 revision)
  • 5f57c43 [iOS] Re-enable PermissionsTestCase/testPermissionsWithReaderMode
  • 5b2609e Temporarily allow reentrancy for observer list in
  • d5277fd Fix null deref in BrowserViewLayoutDelegateImpl::GetBrowserLayoutParams
  • 741b470 iwa: Add OWNERS file to chromeos/ash/experiences/isolated_web_app
  • 35ed0b5 [PageInfo] Extract shared certificate model utilities to components/certificate_model
  • 162c301 build: Explain why gperf_exe can't be included in sources for iOS builds
  • ad27b7b [FRE] Refactor First Run tests to use a SyncService mixin
  • 4b0dfb3 [HoT][Android] Add a new referrer for password manager.
  • 517525d Prepare fieldtrial for Grouped affiliations experiment
  • 2ec008c Extend expiration for `ProfilePicker.SignInProviderStep` histogram
  • 7120cf7 Explicitly allow reentrancy
  • f775759 Roll Chrome Android ARM64 Orderfile from 1eE0e40V5iY3UWG1p... to KWhOWLrrTItP7-qXc...
  • 4fcceb0 Roll src-internal from c4bd3991c24c to 89babc15c161 (1 revision)
  • d99b0ea Roll V8 from a0bdb939948f to ece0ab653d18 (7 revisions)
  • 7940b79 Roll WebRTC from 47fddff46625 to 4f39d459159a (1 revision)
  • a20cd43 Roll Chrome Mac Arm PGO Profile
  • 96ea189 [components/sync] Code clean-up with clang-tidy's checks
  • 74dc059 Move cws_item_service.proto to //extensions.
  • 0624d91 [Blink] Have BeginExternalWrite() take in is_overwrite param
  • 1d5f025 [Blink] Rename kEnableWebGLImageChromium switch for clarity
  • 76c0edf [Blink] Have CopyToBackingSI() pass is_overwrite=true
  • bc67342 Add chrome://flags for SelectiveClipboardFormatRead
  • 48d1a59 [Blink] Have UploadToBackingSI() pass is_overwrite=true
  • b2085be Add visual cue when Cobrowse GWS URL is custom
  • 71616ff [Blink] Add is_overwrite param to CNon2DRPSI::WillDrawInternal()
  • 5e574d2 [Blink] Mark resource as cleared in CNon2DRPSI::CopyToBackingSI()
  • 7f7fd2e [Blink] Reorder code in CNon2DRPSI::WillDrawInternal() for clarity
  • d2d146a [Blink] Remove src_sub_rectangle param from CopyToPlatformSI()
  • 6b966d6 Use the Vector/HeapVector projection constructor.
  • f16fc5a [HoT][Bling] Add feature flag for Your Saved Info on iOS
  • 71303a0 [Signin][Android] Cover legacy profile data creation logic with flag
  • 12e6e55 [Blink] Remove unneeded param from DrawingBuffer::CopyToPlatformSI()
  • 7218aeb [spanify] Add partition_alloc namespace resolution tests
  • 214b624 [FRE] Enable `FirstRunDesktopRefresh` in field trial testing config
  • 7bb1a5d [iOS][cobrowse] Expand input plate on focus, compact of defocus
  • 270067f Roll DevTools Frontend from a71b5a64b2d1 to 218e4bbc4387 (2 revisions)
  • c178f6a Add new UMA histogram timer in AddressRewriter::Rewrite
  • bd3411c WTF: Rename AtomicString::FromUTF8() to FromUtf8()
  • a1d71cc Remove #pragma allow_unsafe_buffers and add PA_UNSAFE_TODO annotations.
  • 1370600 Prerender: ignore ect header when activation headers match
  • 56e6e6a [Blink] Merge features controlling low-latency for Canvas2D & WebGL
  • 6467979 Avoid registering observer before calling HistoryService::Init(...)
  • 3bf272e WTF: Remove unnecessary String::FromUTF8() calls
  • de2136a [Autofill] Add test for kAllEntityTypesSharedWithAccessibilityAnnotator
  • 85f6b21 Add tentative @container/stuck test for post-layout snapshot
  • 68af268 Roll clank/internal/apps from fcb4b6a0e495 to 586f5357a30a (1 revision)
  • 7cd8b1e [perf] Delete legacy bot platform python config code
  • 1d35bf8 Extend validity of a few login-related histograms.
  • 40893b0 Roll Chrome Android ARM64 Orderfile from 5PdzB00xpUwcsmavQ... to 1eE0e40V5iY3UWG1p...
  • e4b00c5 Roll WebRTC from 304ad08c63e2 to 47fddff46625 (11 revisions)
  • ade8731 Roll Projector App from r111fbsvmG6QNg36M... to xLNhc30F6IzGqvMJA...
  • 34d875a Roll Chrome Win64 PGO Profile
  • 19434ee [Android] Follow-up Local Network Protection check integration
  • 4d25ed9 Rename `form_structure` to `form` in ActorKeyMetricsRecorder.
  • 4899033 [Blink] Make CanvasResourceProvider::last_recording_ Canvas2D-specific
  • 7b80afd Roll Chrome Win32 PGO Profile
  • 3bb5318 LPP: Expose GetPinFactorEditor in in_process_instances
  • d0b2b95 ui/gfx: remove UNSAFE_TODO() from Matrix3x3 element comparison
  • c2a83c8 Roll Boca App from 5T0MCJYwSiJpF4Dp3... to lyoTCJ0pJtGJ_t85I...
  • 63a3ed9 Roll Chrome Mac PGO Profile
  • ce23e26 Roll DevTools Frontend from 890e102b2846 to a71b5a64b2d1 (1 revision)
  • 13a4a29 assert_not_reached() -> assert_unreached() in wpt
  • 140daa6 Private passes: Require a ConsentAuditor::SessionId for saves
  • 24b0b2a Roll Boca Receiver App from dBqQ0N2D3OdBXojL4... to luME9KkItLzXghhZw...
  • 6817068 [ios blink] Ignore failed tests
  • 6b216d6 Roll androidx from I-JV8Vc6vHLlWayn7... to ShH1Nbh7Gg9-IGjDd...
  • 104b825 Roll Chrome Mac Arm PGO Profile
  • 63d005b infra: Add new bot: LibFuzzer Upload Linux Asan for AsanBackupRefPtrV2.
  • 45e90f4 [ToolbarManager] Add finishing check in dispatchOnInflationComplete to fix ToolbarManager NPE crash on initialized progress.
  • 0f5ece7 Roll Chromium Variations from GOL3ZT5eZsfLjI6LL... to T_dvhXY3yp5Dt6czH...
  • c922361 ash: Remove obsolete class crosapi::PrimaryProfileCreationWaiter
  • f500b75 Roll Skia from 94a03fa99a84 to a81bf411a5cb (1 revision)
  • dbebaa6 Log renderer-side WebMCP tool calls to CDP
  • 8fc5658 [google_apis] Use factory method to create GoogleServiceAuthError.
  • a50334d Add test for file open when mime type is inappropriate
  • 85b7c39 [context-input] Move recontextualization code to a shared component
  • 56c0544 Roll Chrome Android ARM64 Orderfile from UKy_fyiuh0GhXc2xD... to 5PdzB00xpUwcsmavQ...
  • dc18066 Use binary literals for kBreakAllLineBreakClassTable
  • f333e77 ash: Remove a TODO in RecommendAppsFetcherImpl
  • f8e02af ash: Dismantle crosapi's cros_display_config.mojom, part 14
  • 13cedb9 ash: Dismantle crosapi's cros_display_config.mojom, part 13
  • ce61842 Add chrome://flags entry for OptimizeWebRequestProxy
  • 7b22751 [blink][xr] Separate camera texture processing from OnFrameEnd()
  • 35d96fd Fix potential Cursor leak in DownloadManagerBridge.queryDownloadResult
  • c294607 Roll Chrome Linux PGO Profile
  • 2cb8be8 AsyncBeforeUnload: Run beforeunload handlers asynchronously if possible
  • 16b56ed ash: Remove obsolete class crosapi::FilesAppLauncher
  • f536cb3 login: Pass network::NetworkContextGetter to SigninPartitionManager
  • 879b102 login: Move SigninPartitionManager::Factory to a dedicated file
  • 76a9ba0 Roll Chrome Win ARM64 PGO Profile
  • 6b8209b Record AFT end time histogram only for non-prerendered or activated prerendered navigations.
  • 7666fd1 Roll eigen from 843ffcec8b19 to f574cb9b18a3 (1 revision)
  • a21f892 [4/4] Make it possible to enable AsanRawPtrServiceV2
  • 9711b07 Remove stale crosapi build dependencies
  • 4570396 Roll Skia from 42a6eb1dc5c9 to 94a03fa99a84 (2 revisions)
  • ae39234 Roll Chrome Android ARM64 Orderfile from xuRKBnZiZ2C-ysyqg... to UKy_fyiuh0GhXc2xD...
  • 48ecf9a Roll Chrome Android Desktop x64 PGO Profile
  • 14ee99d [bedrock] Migrate Browser parameters to BrowserWindowInterface Part 1
  • efa095f Format some lines from FSA permission context file
  • 4deae0e Roll Chrome Mac Arm PGO Profile
  • 7c1ae43 [Android] Integrate Local Network Protection check
  • 3c99c80 ash: Remove obsolete TestCrosapiEnvironment
  • 97e72ab Remove stale crosapi build dependencies
  • a937a4d fix DemoSessionMetricsRecorderTest dangling pointer
  • 98cf961 fix TrayBackgroundViewTest dangling pointers
  • 57d52ed fix GeolocationControllerTest dangling pointer
  • 6e2ec6a fix WindowDelationWaiter dangling pointer
  • 2c4f314 Site search: Enter and exit keyword mode during list navigation
  • 40bd482 Remove stale crosapi build dependencies
  • 829ef5e Roll Chrome Android ARM64 Orderfile from U7rbSKNNRYdl164Mk... to xuRKBnZiZ2C-ysyqg...
  • 88b181a Clean includes in auxiliary_search_donation_* files
  • d8b8dc4 Roll DevTools Frontend from 7475e9f6f530 to 890e102b2846 (1 revision)
  • 928840f Fix `video_capture_observer_` leaks of ash::CrasAudoHandlerTest.
  • 04cbe96 Fix testNQEWithQuic flakiness.
  • 222a032 Roll Chrome Win32 PGO Profile
  • c07cc43 Roll PDFium from 9ae6cb74027c to ed07065f4475 (1 revision)
  • 125047a Roll Skia from 964c3b33fd73 to 42a6eb1dc5c9 (1 revision)
  • b89a289 [PSF][PAM] Fix infinite layout loop in Page Action Menu sheet.
  • 81032c8 Verify that form submit in prerendered page is not allowed
  • aa3720d Roll Chrome Android ARM64 Orderfile from sl1sBr6-aevkOOpcL... to U7rbSKNNRYdl164Mk...
  • f37fa5e Roll Chrome Mac Arm PGO Profile
  • 7a7b40f Allow a fix for prerendered form in InsecureFormNavigationThrottle by default
  • 624e217 Rename the bookmark-related interfaces of the Clipboard class to URL.
  • 10026e6 Roll clank/internal/apps from 820649e5e2fb to fcb4b6a0e495 (1 revision)
  • ceb3bb2 Reland "Enable NetworkQualityEstimatorAsyncNotifyStartTransaction by default"
  • 335595b Roll Chrome Android ARM32 Orderfile from rAHafQrq24wecjnzc... to C5-Pe8_sRgrc1MWBw...
  • 8c78397 [iOS][PageInfo] Relocate certificate IDS strings to components for cross-platform reuse
  • f84d088 Roll Chrome Android ARM64 Orderfile from oEV93LI9WLanDKrcI... to sl1sBr6-aevkOOpcL...
  • 35ef7d1 Roll WebView ARM Orderfile from rsfygtrmxn0RiukkJ... to E2ZQSK4k1QEV4ly0P...
  • 3b1c1a8 Allow WebTransport to enter BackForwardCache
  • 3cd79d5 Roll Chrome Win32 PGO Profile
  • f760231 Roll Chrome Win64 PGO Profile
  • 224140d Roll Brotli to the latest version
  • 0ab819b Roll Chrome Mac PGO Profile
  • 7c1fb68 Roll WebView ARM64 Orderfile from oFoR8cdWfxOTsSAJo... to Go-swiTz11DJL4FmK...
  • 9734fd3 login: Pass SharedURLLoaderFactory to OAuth2TokenInitializer
  • 4e906a9 [bedrock] FindBrowserWithID() function call point refactoring
  • c795499 Updating trunk VERSION from 7749.0 to 7750.0
  • 6298bee ash: Destroy OnboardingUserActivityCounter earlier on process shutdown
  • 8843e1e ASH Refactoring: Remove 3 unused strings of IDS_3G_DATASAVER_*
  • b3b82d0 Roll Chrome Mac Arm PGO Profile
  • f165f27 Roll Chrome Android ARM64 Orderfile from ERETZ_IFLR-v_600r... to oEV93LI9WLanDKrcI...
  • 2c4a110 [Page Action] Remove legacy page action code for Collaboration Messaging
  • 18ffab2 Roll clank/internal/apps from 89c9d726d09a to 820649e5e2fb (1 revision)
  • 6e00555 Remove GetOnDeviceCapabilities interface from OnDeviceCapability
  • 6bbc18e Roll Chrome Win ARM64 PGO Profile
  • 471420f Roll Chrome Android ARM32 PGO Profile
  • ade5a1d Roll Chrome Linux PGO Profile
  • f0ef36f Add more WPTs for SharedWorker extendedLifetime
  • 32939b2 siso: update to version 1.5.7
  • fcfa86a ASH Refactoring: Move IDS_STATUSBAR_NETWORK_DEVICE_ETHERNET to ash/
  • 1f8d06e Support middle-click on bookmarks bar to open in new tab
  • a6b5ac4 Roll Chrome Android ARM64 Orderfile from CLT8wXUC95Qxfc7Mz... to ERETZ_IFLR-v_600r...
  • 66c576a ASH Refactoring: Remove 4 unused strings of IDS_INPUT_OVERLAY_*
  • 429e9de Roll Chrome Android Desktop x64 PGO Profile
  • 18623db Automated Commit: LKGM 16624.0.0-1076152 for chromeos.
  • 505ebd5 [x-plat promos] Add granular promo_receiving_types to DeviceInfo
  • 9eb971d Roll Chrome Mac Arm PGO Profile
  • a977814 Roll Chrome Android ARM64 Orderfile from h-GQ6-F9NNbWY3v9k... to CLT8wXUC95Qxfc7Mz...
  • 12284ce [Vertical Tabs] Avoid move animation during groups reopen
← Back to all summaries