Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2026-03-18

Overview

This summary covers 577 relevant commits out of 752 total, from (d723889)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((d723889)) to (8758f77)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((8758f77)). The day saw numerous breaking changes to public APIs in core systems, ChromeOS, and graphics, alongside significant behavioral changes to web platform features like URL parsing and pointer events.

Public API & Core Systems

  • ⚠️ BREAKING BREAKING: The base::span two-argument constructor now performs bounds checking by default. This can cause runtime CHECK failures in existing code. To retain the old behavior, callers must be updated to explicitly pass base::unchecked as the first argument. (4aa6967)
  • ⚠️ BREAKING BREAKING: The public virtual method RequestPermissions has been removed from the content::PermissionControllerDelegate interface. Embedders must remove their overrides and use RequestPermissionsFromCurrentDocument instead. (4035ccf)
  • ⚠️ BREAKING BREAKING: The initiator_origin_trial_features argument has been removed from the public API methods ThrottlingURLLoader::CreateLoaderAndStart and ThrottlingURLLoader::Start. Embedders calling these methods will have build failures. (f37f0b8)
  • ⚠️ BREAKING BREAKING: The public virtual method GetHandleId() has been removed from the content::PrerenderHandle interface. Embedders must migrate to using GetPrerenderHostId(). (df805b8)
  • ⚠️ BREAKING BREAKING: The public method pin_infobar_controller() has been removed from the BrowserWindowFeatures class. Client code must now use the static PinInfoBarController::From() method. (6d4a020)
  • ⚠️ BREAKING BREAKING: Several obsolete feature flags, including kShortcutsNotApps, kPushMessagingBackgroundMode, and kRemoveSupervisedUsersOnStartup, have been removed from chrome/common/chrome_features.h. Code referencing these will fail to build. (3151653)
  • The base::ScopedObservation utility has been updated with a new template parameter to help track and fix dangling pointer issues at compile time. (940f2c7) (adc3bcf)

Web Platform & Blink

  • ⚠️ BREAKING BREAKING: IDNA 2008 ContextJ rules are now enabled by default, significantly changing how internationalized domain names (IDNs) are parsed. URLs that were previously valid may now be considered invalid, and vice-versa, potentially impacting security and routing. (3ae9984)
  • ⚠️ BREAKING BREAKING: The SuppressPointerStreamAfterDrag feature is now enabled by default. This alters the standard behavior of pointer events after a drag-and-drop operation, which can break web applications that rely on the previous event stream. (58ccecd)
  • ⚠️ BREAKING BREAKING: The error handling for the stable Web-based Payment Handler API has changed. Promise rejections with an "OperationError" DOMException from PaymentRequestEvent.respondWith are now treated as an internal error, not a user cancellation. This may break existing payment handlers. (c02af0a)
  • The CSS line-clamp property behavior has been changed so that floats no longer increase the container's height, aligning with a new CSSWG resolution. (c7d7b3d)
  • The @revert CSS at-rule is now enabled for stable release, allowing authors to revert cascaded properties to the user-agent stylesheet level. (2263d72)
  • On Android, aria-valuetext for range controls will no longer be mapped to the accessibility node's primary text, correcting a semantic inaccuracy in the accessibility tree. (6bd98e6)
  • The element count for WebNN operands is now limited to INT_MAX to align with implicit backend limits. (0d0cb58)

ChromeOS & Ash

  • ⚠️ BREAKING BREAKING: Numerous ChromeOS-specific preference keys related to End-of-Life (EoL) and device enrollment have been moved from the common header chrome/common/pref_names.h to the Ash-specific ash/constants/ash_pref_names.h. Embedders referencing these from the old location will have their builds broken. (0da2b70) (82aedde)
  • ⚠️ BREAKING BREAKING: The public CROSAPI cros_display_config.mojom interface has been modified. The crosapi::mojom::TouchCalibration type was removed and replaced with an internal type, breaking clients of this stable interface between Ash and Lacros. (69dad59)
  • The dismantling of the cros_display_config.mojom interface continues, with types like DisplayLayoutInfo and DisplayConfigProperties being migrated to internal C++ structs in ash. (72935c2) (7f94944) (bf35cd6)

Graphics & GPU

  • ⚠️ BREAKING BREAKING: Bindings for the ANGLE-specific OpenGL functions glCompressedTexImageRobustANGLE and glDisableExtensionANGLE have been removed from the public ui/gl API. Embedders calling these functions directly will experience build failures. (958237a)
  • ⚠️ BREAKING BREAKING: The recently added SharedGpuContext::CreateAsync method has been removed from the public Blink platform header shared_gpu_context.h. Any code that adopted this asynchronous creation path will be broken. (d73e9cd)
  • To improve performance, checks for multiplanar texture sampling capabilities are now performed lazily in the SharedImageManager. (4326118)

Android

  • ⚠️ BREAKING BREAKING: The Screenshot Monitor feature has been completely removed from Android. This includes the deletion of its public Java interfaces (ScreenshotMonitor.java, ScreenshotMonitorDelegate.java) and all associated implementation. Any code depending on this feature will be broken. (4144a97)
  • The InputConnection thread priority has been increased to THREAD_PRIORITY_URGENT_DISPLAY to improve responsiveness to input events. (2be407e)
  • The ViewAndroidDelegate was updated to use Java WeakRef maps instead of C++ WeakRefs to avoid exhausting the finite pool of global JNI references. (fe77f31)
  • A series of commits moving WebView Navigation APIs out of an experimental state were reverted, restoring the previous API state, including the SupportLibWebViewNavigationClientAdapter. (3e4f021)

Networking

  • ⚠️ BREAKING BREAKING: The public constant kDefaultMaxSocketsPerProxyChain has been removed from the net/socket/client_socket_pool_manager.h header. Any code referencing this constant will now fail to compile. (db73207)
  • The experimental WebTransportSendGroup interface has been added behind a feature flag, allowing for sending a group of streams with a single call. (03ebdaf)
  • A bug in data URL parsing was fixed to correctly preserve base64 decoding even when the URL contains an invalid MIME type. (148ff94)

Security & Privacy

  • A 15-minute throttling window has been introduced for approximate geolocation updates. This mitigates the risk of a site reconstructing a user's precise location from multiple frequent samples. (7d99a69)
  • The dialog shown when an extension overrides the default search provider will now display the search engine's URL instead of its name for non-prepopulated engines, making it harder for malicious extensions to spoof reputable providers. (5a827af)
  • Atomic cookie deletion via the Chrome DevTools Protocol (CDP) has been restored for trusted clients like DevTools and Playwright, while retaining stricter filtering for less trusted clients like extensions. (8c3121e)

Performance & Memory

  • A new feature, kDiscardOnCommitLimit, has been added for Windows. When enabled, it allows proactive tab discarding when the system's available commit memory falls below a threshold, aiming to prevent memory-related crashes. (d0cc6f3)
  • A performance optimization was added to the style recalculation path for pseudo-elements, showing significant gains on several benchmarks. (b629b7f)

Build System & Dependencies

  • The //third_party/lighttpd dependency has been completely removed from the build system. (8fe0e97)
  • The sqlite library was updated to version 3.51.3, which includes fixes for buffer overruns and other issues. (016a5e5)
  • The expat library was rolled forward, incorporating numerous bug fixes and minor feature updates. (703b76e)
All Commits (752)
  • 8758f77 Update packaged rustc to use jemalloc on mac and linux
  • b596a78 disable GlicProfileManagerUiTest
  • fd1dbd5 [AF] Add optimization type for omnibox autofill iframe allowlist
  • 9204eda [searchbox] fix aria error
  • 6f13b19 Automated Commit: LKGM 16620.0.0-1076056 for chromeos.
  • 4b4f769 [bedrock] FindBrowserWithWindow() function call point refactoring
  • e1f7d25 [Reading mode] Fix some redundancy in the OmniboxController
  • a98ff56 Increase renderer process limit
  • e362761 [Vertical Tabs] Fix tab groups tutorial in vertical tabs mode
  • c6947c2 Roll Chromium Variations from jZ476P6-BDn5l54mQ... to EIfkreobUTya7iHPA...
  • 75559ee [Animated pb] M144 bisect cl 4
  • 31b23ad Revert "Upgrade SECURITY_DCHECK() to CHECK() in blink StringView and StringImpl"
  • e39951a Roll R8 (D8 copy) from CQBWQVHNMmNBTkKhq... to 8ZRb6CCpZTU5dSpQy...
  • e4fa6ce Fix UAF in DevTools Network Cookie Handler
  • 2932c93 Fix typo in comment.
  • fc91ea1 extensions: Enable two DebuggerApiTests on desktop Android
  • 0edfb87 [Omnibox] Add regression tests for SearchSuggestionParser crash
  • 85a8bae [Durable Messages] Shrink vector capacity on message completion
  • b4b499c [iOS] Add Autofill AI error Dialog
  • da3747d Fix bookmark sorting unresponsiveness due to GC
  • 0bd1637 Integrate with chrome history service
  • 81e7070 Introduce TabListInterface::DetachWebContents
  • a76aff1 [composebox] (2/4) "Launch" C++ feature parameters and UI flags
  • 02be089 Revert "[Animated Pb] Make bug fix not flag guarded"
  • 26647d6 DomStorage: Add additional value to Recovery histogram enum
  • 8b9e405 DomStorage: Add histogram for commit_error_count_ when it is reset
  • 669c232 [Actor] Cleanup ActorIntentConstants.
  • 4b81c10 Prerender2Fallback: Fix SupervisedUserNavigationThrottleWithPrerenderingTest
  • f34a503 Prerender2Fallback: Fix ContentSettingsWithPrerenderingBrowserTest
  • 2d76f09 Remove DCHECK in ServiceWorkerRegistry beyond Chromium's control
  • 8626c52 Enable kBackForwardCachePauseMicrotasks by default
  • 9c5930a Migrate bubbles SetHighlightedButton -> SetHighlightedElement
  • 8c91d36 [Extensions Cleanup] Simple JS updates in api_test/lazy_background_page
  • c47d08e [Chrome Next] Fix bug in shadow overlay view
  • 28ca2f9 [infra] Add linux-arm64-rel-fyi CI and try builders
  • 6f27c52 Add wrapping for Omnibox suggestions dropdown
  • 462b6ce [PWA/Install UX] Fix DiyInstallFlow test
  • f9eef66 Roll Chrome Win ARM64 PGO Profile
  • e14a10e ash: Centralize tooltip and a11y management in ImagedTrayIcon
  • 26053bb Refactor ImagedTrayIcon to accept string resource IDs.
  • ede34bc ash: migrate ImagedTrayIcon to use accessibility_name in constructor
  • 74aa622 [selection] Preserve glic selection overlay across tab switching
  • 60a89af [Extensions Cleanup] Simple JS updates in api_test/instance_id
  • f4105ac Roll gn from d22fa2d126d8 to 335219e2893b
  • eb6560d Prerender2Fallback: Add a way to disable the feature tests outside //content
  • 82eb6dc Prerender2Fallback: Fix PrerenderingChangePasswordNavigationThrottleBrowserTest
  • ef77db8 Improve prefix resolution in MarkupFormatter
  • d2a8a16 [Autofill] Allow AttributeType::field_type() == std::nullopt
  • 7037c41 Roll V8 from b3dfb26ced65 to c73aaf5864f0 (5 revisions)
  • 8f0c7e8 [Extensions Cleanup] Simple JS updates in api_test/get_views
  • 27621e0 ai-overlay-dialog: Basic API integration
  • 48ab712 WebUI: Add a check for mixed type and value imports
  • 1eff3e2 [MIR] Create MultiInstanceOrchestrator as a singleton to hold business
  • ff3c4f3 [ios][Gardener] Disable flaky test PermissionsTestCase/testPermissionsWithReaderMode
  • 28e3a20 [iOS][Forms AI] Update entity edit mediator and add unit tests
  • 86d28cd [a11y] Modernize typedef and cast in ax_platform_node_win.cc
  • cbb6426 [a11y] Clean up ax_position.h readability
  • 7967b86 [A11y] Clean up ax_node_position_unittest readability
  • bda2216 Roll Catapult from df4f8609244f to a41fdb3aa561 (1 revision)
  • 94b0061 Gracefully handle overlapping driver handle ranges
  • 0b51b75 Roll Chrome Android ARM64 Orderfile from 1Sec3kUhLGKUzrDp0... to aUuZnXZoHCGNOImcf...
  • 74cd6a5 Switch WebUI toolbar to use mojo pipes to handle state
  • d72c1a9 Roll Chrome Mac Arm PGO Profile
  • 7917b34 Handle IqStanza structs in Corp signal strategy
  • 91b7a63 Reland "Add velocity-heuristic for split view DnD entrypoints"
  • fd2cb3f [PWA] Added linux documentation and md formatting
  • 4b88d50 Update CBB autoroll for the builds refs
  • c0bb274 Make FileOpeningJob ref counted.
  • 16d85a1 Remove fragmentation stuff from LayoutAlgorithmParams constructor.
  • 191081b [a11y] Fire state-description changed events for meter controls in Clank
  • a78b2bf [ios][Gardener] Disable flaky test testChangeCompromisedPasswordToSafePassword
  • 71cb3e6 WebUI: Add a skill for migrating files from Polymer to Lit
  • 3a80b79 Roll Chrome Win32 PGO Profile
  • 8812a32 [line-clamp] Ignore `line-clamp` when defined on a multicol container
  • 003b3b2 [TabOrganization] Remove trigger code
  • ff9c037 Roll Skia from 272105391441 to a85f5beff33e (3 revisions)
  • cffbb95 page actions: remove a bunch of redundant static_asserts
  • a9c23d2 [AccessibilityAnnotator] Add entities to autofill::EntityDataManager
  • ddfa194 Roll Chrome Win64 PGO Profile
  • 315d029 Demote "Skipping run_checks for cog" warning to info
  • 5db0d2c [Frameworks roll] Roll to 885711036 piper revision
  • 19b7ab8 Replace always-deferenced DynamicTo<> in core/css
  • 2bffad1 android: Use MockitoRule in components
  • 5540aec [Glic] Fixes ActorTaskAndroid methods to return Android Tab Id
  • 216dcdc Roll eigen from c148dc8fadf4 to 0fd8002b1185 (1 revision)
  • 0e34359 Fix WebMCP cases where no response is sent back to the agent
  • ce91ef9 Revert "[Desktop Android] Port some more tabs API tests"
  • 5534c98 Roll Chrome Mac PGO Profile
  • a627655 Roll Depot Tools from d819b798b712 to 8e07900125ba (1 revision)
  • b7f87db Add IsWebUI method to SecurityPrincipal interface
  • 80c5803 Extend the expiry date for Ash.Peripheral.ConnectivityResults*
  • d119c22 [input-state] Rename `max_instances` to `max_inputs_by_type`
  • a3ed4cb Roll DevTools Frontend from 962e03a77fd8 to 799aca9fbf5b (4 revisions)
  • 4d7daea [<install> Element] Fail early for invalid manifestid attribute
  • 2761bb9 Update CommandStorageBackendTest to use a predefined key and key tag.
  • 323cc8f Add optional Encryptor parameter to CommandStorageBackend.
  • 806dce5 Roll vulkan-deps from de6bd3e64a08 to ea5afb3f56cf (2 revisions)
  • 53faedd Modularize chrome/browser/login_detection
  • 25104b6 Support `TYPE_WINDOW` for GlicWidget on all platforms
  • 70691b1 Modularize chrome/browser/privacy/
  • dc59008 [AIM] Update for request type on begin input.
  • a289b40 Modularize chrome/browser/long_screenshots
  • 3767a90 Roll Updater chrome_mac_universal from 2@147.0.7703.0 to 2@148.0.7730.0
  • e3677a7 Roll R8 from o1h6_6tQfYYay5tJc... to 8ZRb6CCpZTU5dSpQy...
  • a22705c Roll Updater chrome_linux64 from 2@147.0.7703.0 to 2@148.0.7730.0
  • 9a8f65c Fix dangling pointer crash in BackgroundContentsService ReloadExtension
  • e632c6b Roll Updater chrome_win_x86 from 2@147.0.7703.0 to 2@148.0.7730.0
  • 1e4a3be [a11y] Add feature param kPreventWindowContentChangesForNodesNotLikelyInAndroid
  • 1f516a4 Roll Updater chrome_win_arm64 from 2@147.0.7703.0 to 2@148.0.7730.0
  • 2b33388 android: Use MockitoRule in base
  • 3130894 Roll Updater chrome_win_x86_64 from 2@147.0.7703.0 to 2@148.0.7730.0
  • 7cfd086 Add SSM support to network service UDP socket layer
  • 08d7b04 [PinnedTabs] Center tab favicon
  • e9c3750 android: Use MockitoRule in android_webview
  • 933c0ac [Extensions Cleanup] Simple JS updates in search to search -> serial
  • 01c7165 [Extensions Cleanup] Simple JS updates in input APIs
  • 21045a1 Implement typeahead for menu elements
  • 3fb2040 [DCSI]: Enable UseDynamicBackingAllocations in testing config.
  • 73accab Prioritize kCaret PopupAnchorType for accessibility annotator
  • 9805197 Roll Chrome Android Desktop x64 PGO Profile
  • 083f9f3 Migrate OverviewButtonTray to use ImagedTrayIcon
  • e832c68 Use VOPRF crypto in PST browser tests
  • 3a7da49 Create a new field trial testing config for GlicAutoOpenPdfs
  • 7f71d81 Replace hardcoded color with CSS variable in searchbox thumbnail overlay.
  • a371ff5 WebUI: Add content setting icon Mojo definitions
  • 085952c Omnibox: treat .internal as a navigable local suffix
  • f68dec5 [AF] OmniboxAutofillDelegate is created for ChromePaymentsAutofillClient
  • 6eb1be7 [safe_browsing] Optimize V4Store merge and checksum for single prefix-size stores
  • 77be2f8 ASH Refactoring: Remove 4 unused strings of IDS_QUICK_ANSWERS_VIEW_*
  • 6b3e947 [projects] Remove usages of ContextualTasksUiService
  • 749dc89 [glic] Allow client to handel pinning after consent
  • 4939129 BrowserWindowInterface: Add custom_tab browser window type for Android Custom Tabs
  • d56732a Roll ios_internal from 6cad0f06d3c8 to 97a9215a867d
  • 8c98f2f [Linux] Make dbus_xdg::FileTransferPortal asynchronous.
  • 54de066 Roll WebRTC from 133ca9e54b66 to 76018a2ec3a7 (1 revision)
  • b33786a WebUI: Fix a few nits in the Lit migration script
  • d81924b [VerticalTabs][Glic] Fix crash where close_button_ is null.
  • 67c2878 [Extensions Cleanup] Simple JS updates in scripting
  • 13e27e8 [cleanup] Remove LayoutTreeBuilderTraversal::PreviousSiblingLayoutObject
  • aeae289 Roll clank/internal/apps from 35a08f227de5 to 153a4de25299 (1 revision)
  • ef8bc1b Fix Open Glic menu item enablement
  • ffd5e50 [code-health] Clean up `firmware-update-ui-v2` flag
  • 69db5d2 Roll Crossbench from f87f27c994eb to f769e3263d8a (3 revisions)
  • 2294120 Fix crash in FRE show if browser is closed
  • 50ba667 [Glic] Add task in progress toast
  • 72d8a6d Remove ignore_extra_runs from SplitCallback helper
  • a413077 Do not trigger LayerContextImpl::SetNeedsCommitOnImplThread()
  • a24edb7 [SxS] Switch mini toolbar back to the close button
  • 451fc3a [iOS][Composebox] Hide plus button for URL queries
  • 0c9dac7 Cast to unsigned earlier in AppendSE
  • b79c067 Make ContentsWebView a leaf node when IRM is open
  • 9645505 Roll Chrome Mac Arm PGO Profile
  • 88cfe23 Roll Dawn from e2e4b0e7cf1d to 4a3266331c9e (3 revisions)
  • 3844812 Fix memory leak and queue stalling in Extension Telemetry
  • 31289e1 [Extensions Cleanup] Simple JS updates in protocol_handler to sandboxed
  • 5318a07 Add a method to delete permissions by username and origin
  • 084dee7 [//docs] Add details on iOS WebView to supported_platforms.md
  • f88c3df Add unified_device_id to PolicyData proto
  • 12ae731 [glic] Round Corners on WebView after Active/Inactive Container swap
  • e742900 [composebox] Use a single `ComposeboxState` interface
  • 71cfb06 Move weak reference management for DistillablePageUtils to Java
  • e4fbe53 [Desktop Android] Add Reload Page section in extensions menu
  • ba001fe Fix flaky console-xpath.js web test
  • 8deb733 Side Panel: Modularize SidePanelCoordinatorAndroid-related code
  • b3f50e4 Enable AutoPlayBypassForMicCamera
  • 44d6677 [iOS] Add strings for Autofill AI related error messages
  • 454b9cd Revert "webnn: Limit element count to INT_MAX"
  • 1276e9c [projects] Fix separator and no tab groups view layout
  • e135ad5 [ntp] Reorder properties in `app.ts`
  • 46fbf7b Use dedicated methods to focus/blur cr-searchbox input
  • 9f4d994 Extend expiration dates for ChromeOS.Settings.Device.*
  • c343061 [glic] Make non-desktop android default to last active conversation
  • ac88cd0 Don't animate to/from Fusebox DISABLED state, track horizontal pos
  • e137e41 Refactor HoverCardAnchorTarget functions
  • a6688ff Linux: Rename //chrome:xdg_mime target to linux_cros_extra_data
  • eaf3b55 [NTP Customization] Differentiate click events from programmatic color selection
  • b1190e2 Revert "Add velocity-heuristic for split view DnD entrypoints"
  • 2c80aa7 Roll Chrome Android ARM64 Orderfile from w7pNsOipaOGk_Dnc6... to 1Sec3kUhLGKUzrDp0...
  • 4c2fa13 [ios] Fix issue with search engine logo size
  • 479f411 extensions: Add ChromeExtensionHostDelegate tests for CreateTab()
  • 9a4168d [DefaultBrowser] Fix Default Browser Promo Card suppression in Settings
  • 9d0cfb3 More preparation for WebUI pinned toolbar actions
  • 9c9afa4 Roll Skia from f0a13e5efbad to 272105391441 (2 revisions)
  • ef46cba Roll Chrome Win64 PGO Profile
  • b908e01 Add stluong as owners to metrics file
  • d0b9884 Add RetryCreateFileMappingOnCommitLimit to testing config
  • 958237a GL: Remove bindings for glCompressedTexImageRobust and glDisableExtension
  • fcb83e8 fjord-oobe: Use the selected image type to determine OOBE screen flow
  • 93f5d5f Extend expiration of Blink.HTMLParsing.* histograms by a year
  • 3028688 position-visibility-no-overflow-scroll-002.html passes.
  • 52358a4 Roll Catapult from f7a1fb2d8f3d to df4f8609244f (1 revision)
  • a756d51 Revert "JNI Zero: Add a codereview settings file"
  • 39a1c19 Improve iOS simulator wipe and boot reliability in test runners
  • 081f245 [composebox] Fix omnibox AI mode button click logging.
  • b77fc54 [bedrock] Migrate FindBrowserWithUiElementContext usages to BWI*
  • 3d21833 Roll V8 from 5b00155a0286 to b3dfb26ced65 (5 revisions)
  • 6bd98e6 [a11y] Remove text field from range values
  • 9fbfcf9 Remove single-instance glic related code from border view
  • 2f7d5d3 Log OnDeviceModelEligibilityReason at download failure
  • 2113706 o4logtool: Fix detection of crash handlers
  • 23944f8 [projects] Refocus last focused view when closing the panel
  • 9aadb9f [AdDensity] Simplify density tracking with TimeWeightedUnivariateStats
  • 4df7753 Cleanup CBUS request_ start time during cleanup
  • 0e84e9b [bindings] Perform detach check when passing span instead of retaining underlying array buffer
  • 2e603f4 Roll Android Desktop AVDs that are created with explicit gpu_mode
  • b5a0775 Change supported_tasks to use a new SupportedTask message.
  • 28a18f5 Roll Chrome Win32 PGO Profile
  • e760951 Add SessionId to UpsertPrivatePassRequest
  • 9c22990 Fix Windows "Save As" dialog extension bypass
  • 2aec2ba BubbleDialogDelegate: prioritize HL element over anchor button
  • 12626a7 [Gardener] Disable TabCollectionNodeInteractiveUiTest.ValidateViewFocusOrder on Windows.
  • f05a6d0 [CoCE] Fix Blink.*InvalidStyleReason histogram name
  • 16f0715 [Sheriff] Avoid error log spew frequently seen in tests.
  • 306cea2 Ensure whitespace only content is ignored.
  • 232b631 [searchbox] mixin per file owners list
  • e5cac45 [Desktop Android] Port some more tabs API tests
  • 3fe826e actions revamp: Port action draggability to Android
  • 69227e7 Remove obsolete TODOs related to field trial testing config.
  • 5abfdb7 JNI Zero: Add a codereview settings file
  • a8c5a3d Roll Android 16 AVDs that are created with explicit gpu_mode
  • 27b8300 [iOS] Add Gemini rich extraction to field trial testing config
  • b1308c8 [Reader Mode] Strip e-commerce carousels from distillation
  • daefc5b [composebox] Refactor ComposeboxUpload tests into smaller suites.
  • 08848fa [glic] Add feature param to control auto pdf consent flow
  • 82293a8 [Vertical Tabs] Tab Strip Combo Button Animating Out
  • a82e897 WebNN: Cache D3D shared fence handle in D3DImageBacking
  • bcca6a1 Reland "[glic] Add user_input_submitted_while_bound to EmbedderEntry"
  • 7797a70 Update documentation for triggering OnProfileAdded
  • e5f2c6c [finds] Add new scheduler client for Chrome Finds notifications
  • d0e9fa8 [composebox] Adjust padding and margins in Composebox CSS.
  • f86554c [a11y] Expand Event Metadata feature
  • d876759 ASH Refactoring: Remove 4 unused strings of IDS_LOGIN_PASSWORD_CHANGED_RECOVERY_*
  • de6efbc [fedcm] Add translations to the ambient UX strings
  • 4eed86d Add rgod@ as owner of icb/device_reauth
  • d609a75 media: Generate JavaScript Dev Console warnings for PlayReady SL3000
  • bac2172 DevTools: Increase tracing screenshot limit with reducing per-frame resolution
  • e97e411 Revert "Integrate with chrome history service"
  • c02af0a Allow web-based payment handlers to indicate error (1/N)
  • c639585 [iOS]Slightly simplifies sign-out in egtest
  • ce7bb0e Roll ios_internal from 4a44135a96fb to 6cad0f06d3c8
  • 84a7697 DomStorage: Add database destroy operation histograms.
  • 9e83339 Roll DevTools Frontend from 331c616c722a to 962e03a77fd8 (2 revisions)
  • b3e316c [glic] Fix auto-show for side panel coordinator on Android
  • a5a5031 Integrate with chrome history service
  • 2242a53 Roll vulkan-deps from 80af1cbd739b to de6bd3e64a08 (1 revision)
  • 4e602fb [media] Remove ClientNativePixmapFactory from FuchsiaVideoDecoder
  • 8fe0e97 Drop //third_party/lighttpd.
  • 7e12bbd Fix IsCommandLineSwitchEnabled to correctly check switch value
  • f45626e delete TextSelectionChanged user action
  • 3a9b799 Roll WebRTC from 4c8479b30258 to 133ca9e54b66 (2 revisions)
  • 38dc6bd Roll FuzzTest from 3e42dc3c305d to 3874258b07ad (1 revision)
  • 4348dbe Revert "[iOS][PRDBD] Add the feature finch flag to the fieldtrial_testing_config"
  • 3698f30 [iOS] Fix EG Test Tap More Options Button in Activity Sheet
  • 68cd9d9 Mark AuthEventsRecorder scoped observation as dangling
  • 67232e8 Certificate Manager: Migrate provisioning-entry to Lit
  • 51bf350 [Autoplay] Re-enable UKM aggregation for MEI Autoplay Rollout Analysis
  • dcba934 Uprev ChromeScreenAI CIPD to 140.22
  • c107186 Roll Crossbench from 877a1b48c4c4 to f87f27c994eb (1 revision)
  • 62b2995 [RWS] Remove unused histogram and associated code
  • b448bf9 Reland "[bedrock] Migrate BrowserListObserver to BrowserCollectionObserver - part 9/n"
  • 924985b Add frozen gpu list and script to process it
  • 11e8e5a Remove redundant Java-side cleanup in ContentUiEventHandler destructor
  • a210e15 [GHC] Strongly request code reuse in instructions prompt
  • 4326118 [gpu] Check multiplanar texture sampling capability in SIManager
  • b809056 Remove MockBaseWindow
  • c4690a0 Add "BadHistogramArgs-validity" to WebView crash keys.
  • 490d4cf [Desktop Android] Open extension menu URLs in a new tab
  • c8bab3e Reland "[Popular Sites] Add #popular-sites-us-refresh flag with 3 arms"
  • 90e6724 Roll Chrome Mac Arm PGO Profile
  • 6874a26 Revert "[iOS] Fix popover positioning for tools menu on iPad rotation"
  • 30283a7 Add AX ids and matcher for Gemini settings
  • 409eaac Refactor: Split up CommonControllerBuilder::Build()
  • 56bfb92 Add session hunting for extension updater
  • c163548 [media] Add SharedImage CHECK in Android VideoFrameFactoryImpl
  • 2c28799 device/fido: use new AEAD API
  • e641304 [iOS] Convert JSPrintTestCase to use EmbeddedTestServer
  • 547ae84 Roll V8 from a6ea383fe4f5 to 5b00155a0286 (16 revisions)
  • 1d13320 [ios] Add FullscreenCoordinator and Mediator
  • de7c8e6 [zoom] Mark flex-basis as affected by zoom
  • d0cc6f3 Discard pages based on system commit limit on Windows
  • c8a20a0 Update Bug ID
  • 301b067 Add constants for frozen update notifications
  • 6b08065 [iOS][PRDBD] Split the DEPS in clear_browsing_data to the subfolder DEPS
  • ceb72bb [iOS] Add PageToolsFeatureUnavailability feature flag
  • a2b41a3 Extend VideoCapture and RegionCapture/ElementCapture histograms lifetime
  • 95d146a Roll Media App from 5gYtZXHNpSNtYAiZU... to K-Q-Th-kyEbeRmXgk...
  • fe77f31 Use Java WeakRef maps in ViewAndroidDelegate instead of C++ WeakRefs
  • ccb1369 Remove kSavedTabGroups from History Sync promo consideration
  • 77b841e Demote `not_site_per_process_blink_wpt_tests` on `linux-rel` from CQ.
  • b18e522 Support crowdsourcing votes for masked attribute
  • 79a3655 [ios][Gardener] Disable flaky test testEmptyState
  • 7b5e6af Roll clank/internal/apps from c0bccf931baa to 35a08f227de5 (1 revision)
  • 0924c5b spanification of libyuv_scale_fuzzer.cc and advance of RNG state preservation.
  • 677d760 [iOS] Include paid content metadata for Gemini rich extractions
  • 35fc27e [Autofill AI - M4] Display banner to enable wallet sharing data
  • 2266327 [webui] Expose variations source in chrome://version
  • 0d0cb58 webnn: Limit element count to INT_MAX
  • a34214d [Memory Coordinator] Add a browser test
  • aac9471 Add a check to validate that all enums are used.
  • 6d4a020 Migrate PinInfoBarController to UnownedUserData pattern.
  • f79dbe1 [iOS]Update settings if sign-in gets disabled
  • 703b76e Roll src/third_party/expat/src/ 69d6c054c..6154446fc (209 commits)
  • 53c0f7a [IOS][AIM] Remove cobrowse when navigating to ntp
  • a7e9659 Record when a Partitioned non-HttpOnly cookie shadows an HttpOnly one
  • 2abbd0a Revert "[infra] Add infra config for non-experimental CTS"
  • f107e51 Roll ios_internal from 8b20c3ed763c to 4a44135a96fb
  • d73e9cd Revert "Add async creation path to SharedGpuContext"
  • 26bf6a3 Roll Chrome Win32 PGO Profile
  • e198572 Roll DevTools Frontend from 9c408d2de285 to 331c616c722a (3 revisions)
  • 7e7697b Roll Chrome Win64 PGO Profile
  • ee7055a [Signin] Prepare TokenServiceTable for mTLS token binding
  • 6046711 [Snackbar] Delete deprecated and unused ctor
  • 7613057 [glic] Enable skills framework to build on Android
  • 7077506 Roll WebRTC from 6f76a57334e3 to 4c8479b30258 (5 revisions)
  • e494462 Roll Chrome Android ARM64 Orderfile from 0cUIg7oa0gVpRx24f... to w7pNsOipaOGk_Dnc6...
  • 3e4f021 Revert "WebView Navigation APIs: Fix AndroidX build 2"
  • 5942d56 Revert "Restore windows to spaces on a system restart"
  • 4875ff3 [sync] Feature-guard session navigation filtering
  • 176fcef WebUI: Fix mixed type and value imports in ChromeOS code
  • 5a827af Display domain for non-prepopulated search engine overrides
  • 7f98051 [Accessibility Annotator] Add GetAnnotationsByTypes to AASyncBridge
  • 58ccecd Ship SuppressPointerStreamAfterDrag
  • 8261a60 Disable TransientKeepAlivePolicy in PrewarmOmniboxUIBrowserTest
  • 369de3d Define clickjacking protection flag and add it to chrome://flags
  • 7c82d6a Add velocity-heuristic for split view DnD entrypoints
  • 047f409 [iOS] Reset force fullscreen for a new navigation
  • 979c74a Roll Chrome Win ARM64 PGO Profile
  • 2c8ec76 Roll androidx from rz90VPpK87UYOL1GQ... to 6c2939gs3hJpDeyKG...
  • fd08b0f Migrate UpdateEngineClient::Observer to base::CheckedObserver
  • 64f86d3 Roll Chrome Mac PGO Profile
  • 0b161e2 [iOS] Move RequestInfo to base suggestion bottom sheet mediator
  • 633aa0d Enable OriginMatcherNewCopyAssignment by default.
  • 3938016 Roll compiler-rt from 573ea4ab862e to c09cee457725 (1 revision)
  • 9a92377 [iOS][Assistant] Animate bottom corners transition
  • 2b52f6b Declare Cobalt Provider API
  • c169439 Roll Help App from J-8dRz2q050GLGwt2... to _Bk-rdq5PtbNeOjGb...
  • 45bfe18 [ios] Move TabOpening logic out of SceneController
  • 555fa9e [Masonry] Pass GridLayoutSubtree to constraint space for Grid Lanes
  • c705e46 [KP] Automatic update from google3
  • fb94a99 uma: Record calls of SetUpSystemUpdater
  • a14d8c2 [CodeHealth] Add pixel tests to DashboardKombuchaInteractiveUITest
  • 257ff80 Remove TODO in watermark_view_lib target
  • e4ec31d Roll Chrome Mac Arm PGO Profile
  • 86f24ec [iOS][Forms AI] Add entity edit coordinator into Addresses and more
  • d9cd3fa [iOS] Use reauth service in autofill
  • 6104f47 Roll ANGLE from ff64d9b2dbec to add22f6e29b6 (1 revision)
  • 23f74b8 [Fusebox] Invert wiring for text change events
  • ea7fd7a [iOS] Add triggers to Enter/ExitForceFullscreenMode
  • f8fef34 Introduce a helper class for mapping between a character range and an ephemeral range.
  • 016a5e5 Roll src/third_party/sqlite/src/ 727f7c899..508ab21dc (10 commits)
  • 76a2824 Roll WebView ARM Orderfile from MR0Lv5_g8Ga9tC7xE... to o1Rwv-FtVv5nZFXcV...
  • c9f6839 Add interfaces at LocationBar level needed for (webui) omnibox popup.
  • b0fc8b7 Extend expiry of PUMA.RegionalCapabilities.* histograms
  • eba973e [ukm] Close the database backend during shutdown
  • aa5c520 [ios] Move Fullscreen OWNERS to feature root
  • 28ab479 [Gardener] Disable DidStopLoadingIsDebounced test on Windows with ASan/LSan.
  • 9385bed Roll ios_internal from d23db4cceed2 to 8b20c3ed763c
  • 1ea4b48 [HoT][Autofill] - Launch HoT screen in Settings
  • 12b940f Correct type annotation for `attributes` in models.py.
  • d7a2606 Side Panel: Rename SidePanelUIAndroid as SidePanelCoordinatorAndroid
  • 63f9657 [IWA] Fix badly uploaded translations (re sub apps).
  • 30c1392 [iOS][AIM] Coordinate detents with composebox focus
  • 55d7031 Delete devtools_privacy_ui_dict and third_party_cookie_controls_dict
  • c7d7b3d [line-clamp] Don't grow a clamp container's height to contain floats
  • 170733f Roll DevTools Frontend from 7e44aa9932a1 to 9c408d2de285 (1 revision)
  • 615facf Roll llvm-libc from ea38df85bbd4 to 390ab7f3cffa (9 revisions)
  • 0aad82c Prolong PasswordManager.PromoCard.ActionButtonClicked.
  • 928d944 [IA] Adjust location bar status icon visibility logic
  • a5bf108 Roll vulkan-deps from 313687770d81 to 80af1cbd739b (1 revision)
  • e32e1a0 [zoom] Mark column properties as affected by zoom
  • 72553e8 [Encrypt Bookmarks] Update histogram prefix for BookmarkStorage
  • d6b3b2d Fix WebUI Toolbar button spacing when hidden
  • e1dfb5f [iOS]Re-enable testSwitchFromManagedAccount fully on iphone
  • 053c4b0 Don't enable ZSS private AI for users without the CanUseModelExecutionFeatures capability
  • b472c2f [iOS]Stop manage accounts coordinator.
  • 7f168e9 [TabBottomSheet] Native is responsible for CoBrowseViews lifecycle
  • ec83dda [Actor Login M2] Integrate OAuth token fetching into ActorLoginPermissionService
  • d5c872b [iOS][PRDBD] Add the feature finch flag to the fieldtrial_testing_config
  • f4110df [Actor Login M2] Fetch FedCM permissions in GetCredentials
  • 54c0923 [google_apis] Use factory method to create GoogleServiceAuthError
  • 8bf7b82 Updating XTBs based on .GRDs from branch main
  • 4035ccf [CodeHealth] Replace `RequestPermissions` with `RequestPermissionsFromCurrentDocument`
  • 856fc3c [zoom] Mark outline properties as affected by zoom
  • 8238548 [Gardener] Disable failing OverlayPanelEventFilterTest#testDragPanelThenContinuouslyScrollContentView test.
  • 4a961ed Enable ReduceRequirementsForPasswordChange and UseActionablesForImprovedPasswordChange by default
  • 7f0c851 Updating trunk VERSION from 7740.0 to 7741.0
  • 459dbd6 Roll ChromeOS Atom AFDO profile from 147-7680.17-1771827236-benchmark-147.0.7710.0_pre1591974-r1 to 147-7710.0-1773028912-benchmark-148.0.7729.0_pre1597507-r2
  • 4cf6591 Roll src-internal from 4bac053d081d to 779ee1cb871e (1 revision)
  • 009b80c svc/net: use new HKDF API
  • d648519 [Connection-Allowlist] Create origin trial for connection allowlist of
  • fcc50cd [google_apis] Use factory method to create GoogleServiceAuthError
  • 95b1b88 Revert "SelectionPopupController remove global ref"
  • 92a0417 [iOS] Remove FormInputAccessoryAppInterface
  • d92105e Enterprise policies: cloud_only tag enforcement
  • 2d9638e [iOS]Repair testSwitchToManagedAccount on iphone
  • 121d8f6 Fix mypy errors in extract_histograms.py.
  • b3cca69 Revalidate Web App origin associations
  • 5c2114a Roll V8 from f4651ce863a3 to a6ea383fe4f5 (3 revisions)
  • 87a1f96 [STTS] Unify device picker and context capture logic across platforms
  • 2263d72 [revert-rule] Enable for stable
  • 4276994 [Persist] Fix tab duplication on startup
  • ce129ae [zoom] Mark margin properties as affected by zoom
  • 84392ee [zoom] Mark padding properties as affected by zoom
  • 4b132c4 [zoom] Mark border-radius properties as affected by zoom
  • b95d5e5 LPP: Inline `canSubmit_` helper in setup_pin_keyboard
  • 8ed6754 Roll WebView ARM64 Orderfile from CLGYKXfSNATHJIOdr... to I3vmSvP50Wc9BekUR...
  • e9c4419 [iOS] Switch ScanDecisionHandler Parameters order for Callback
  • aaebaa7 LPP: Remove extraneous comment in setup-pin-keyboard
  • 56bbe9a LPP: Reorder class properties in setup_pin_keyboard
  • 27c0e81 Update fuzzing documentation to emphasize FuzzTest for new targets.
  • 9f0d55b LPP: Import aliases for quickUnlockPrivate types in setup_pin_keyboard
  • 31059e8 [iOS] Remove deprecated web::HttpServer exceptions in iOS web model
  • bfe4c12 obfuscation: use new HKDF API
  • dca83bb Roll Chrome Android ARM32 PGO Profile
  • 62dab0e [iOS]Remove openAccountsListFromSettings
  • a2b40dc Roll Chrome Android ARM64 Orderfile from 8kDJP9XYuPe3_yPMN... to 0cUIg7oa0gVpRx24f...
  • c7fdbbc [sync] Extend FakeServer with disk persistence for HTTP errors
  • 0ed14ed [Memory] Destroy ViewResizer properly.
  • 747d6f4 [Document PiP] Resize PiP Window if width not fitting header content
  • 225b1d2 Roll clank/internal/apps from 019b5e52b599 to c0bccf931baa (1 revision)
  • 422ce98 [What's New] Add TimeOnPageHeartbeat metric browser test
  • d526eba [ios] Avoid early GURL usage in TaskRequestForURLContext
  • c30d525 Roll ios_internal from 8d0f1ba2d6e8 to d23db4cceed2
  • f0554f8 Roll Chrome Win64 PGO Profile
  • c05ad2a [iOS] Remove password settings reauth override
  • 706db38 Refactor TrackedElementData to support multiple tracking features
  • 479a267 Automated Commit: LKGM 16619.0.0-1076040 for chromeos.
  • 0c8fd97 Roll DevTools Frontend from 6c557750ef8b to 7e44aa9932a1 (2 revisions)
  • b629b7f Add fast path for skipping generating pseudo-elements.
  • e4e240c Small cleanup in Element::RecalcStyle().
  • a7f7ac9 [Autofill AI - M4] Add enterprise policy message
  • 74959f6 Roll Chrome Mac Arm PGO Profile
  • 1be4d94 Ignore .mypy_cache directories
  • f364428 Positional streaming methods
  • 1bcae57 [Gardener] Disable flaky MessageCardProviderTest#testDismissPriceMessage test
  • 5d45e06 Roll Updater chromium_win_x86_64 from 2@1595014 to 2@1596008
  • 4b80a20 [iOS] Always show origin in download manager
  • 9534c90 Roll clank/internal/apps from af3230c24614 to 019b5e52b599 (1 revision)
  • 7b373ae Add UMA to track sticky activation studies parsed from prefs.
  • e2c24c5 [google_apis] Use factory method to create GoogleServiceAuthError
  • a2545cd Roll Dawn from 18eb229ef5f7 to e2e4b0e7cf1d (4 revisions)
  • 81af91e [IWA] Remove the sub apps install prompt embargo.
  • 1fef78a Roll Perfetto from 9b59f48e11a5 to 08919e34b61c (2 revisions)
  • 7e4c8dd [Encrypt Bookmarks] Delete clear text files
  • 0c9b0e3 Tabs from other devices: Correctly handle middle-click
  • 2ccf092 [iOS][AppBar] Bundle Back and Forward Buttons
  • 9e721d3 Roll Updater chromium_win_x86 from 2@1595025 to 2@1596008
  • e918466 Roll Enterprise Companion chromium_win_x86 from bzV0jg2l2ItcmA67b... to gyH2PlfZGLGJtnQx3...
  • 7eac1c4 Roll Updater chromium_win_arm64 from 2@1595030 to 2@1596008
  • d9aef12 Update meet_effects hash in DEPS file.
  • 597d48a Roll DevTools Frontend from 1d2f428bc654 to 6c557750ef8b (3 revisions)
  • c789fa5 Populate `scripting.executeScript` telemetry signal
  • d797387 Roll Enterprise Companion chromium_win_x86_64 from KgJ-4IWAjRBClgHWc... to lqmFvDEnX9vJAN6rS...
  • aeccb90 Roll ios_internal from 4d6be2e7ab7b to 8d0f1ba2d6e8
  • 72ea598 [base] Simplify WriteJson and JSONWriter callsites
  • 6245db4 [iOS] Add Cobalt coordinator in BrowserCoordinator
  • 8c7a68f Revert "Make field trial shared memory handle mandatory in child processes."
  • 8fc96b6 [Extensions] Histogram for extension action title text length
  • 37d48ca Private passes: Don't use Any proto in Upsert API request
  • 2a04d02 Roll Chrome Win32 PGO Profile
  • 7b437a9 clank-input: do not send "artificial" suggestion span of misspelling
  • c583ecc Add Media.MediaDevices.FindExistingRequestedDevice.NameMatched histogram
  • db1641b Roll V8 from 519d4756f685 to f4651ce863a3 (2 revisions)
  • f6441c3 webnn: Start improving webnn-internals by showing current contexts.
  • 03ebdaf [WebTransport] Add WebTransportSendGroup interface and createSendGroup()
  • a1a72f7 Selection jumps when selecting positioned and non-selectable content
  • 05a4593 Declare Cobalt Origin Filter
  • c01ee80 Roll Chrome Mac Arm PGO Profile
  • 1e11be7 Disable flaky test on Mac tentatively
  • b653d60 Roll Chrome Android ARM64 Orderfile from ezF30E3wY6f1F8-Gl... to 8kDJP9XYuPe3_yPMN...
  • 53b2fb4 Roll DevTools Frontend from df4aee83342e to 1d2f428bc654 (1 revision)
  • 4f6182c Use correct flag name for createParserOptions
  • 4b8fdd3 [Signin] Restrict testIdentityDiscWithNavigation versions of GMS Core
  • 0da2b70 Move ChromeOS EoL related prefs to ash/constants/ash_pref_names.h
  • 4995bd5 Add domain filtering to Multistep Filter.
  • b27ffc1 Remove g_browser_process use in EntrollmentRequisitionManager.
  • 52aca1c Roll Skia from 2fb5fa71eb12 to f0a13e5efbad (2 revisions)
  • 5cbeb72 Roll vulkan-deps from 7c625f80e8cc to 313687770d81 (1 revision)
  • 503321b Fix typo in CSSRayValue::HasRandomFunctions
  • e6c3e7a [iOS]Re-enable testSwitchFromManagedAccountToManagedAccount on iphone
  • d0ed332 [sync] Add Sync.SyncToSigninMigration.StatsTableCleanupStep
  • 4ac0d94 [Signin][Android] Remove testClickSigninButton_SignedIn Settings check
  • 1be6752 Enable Autofill Home and Work by default
  • 3d97c6a Roll Chrome Win64 PGO Profile
  • 0d2f1e3 Integrate FilterExtractor into MultistepFilterService.
  • d789a7f [Signin][Android] FRESignInAlternativeSecondaryButtonText flag cleanup
  • 6bc0603 Add LURS team as OWNERS for os_settings integration tests
  • 7b9fecd ASH Refactoring: Remove 3 unused strings of IDS_NETWORK_CONFIG_*
  • a0bc516 Roll clank/internal/apps from 726cd20140f7 to af3230c24614 (1 revision)
  • cd3d0e4 [SVG] Remove flag SvgAvoidCullingElementsWithTransformOperations
  • 4a31f38 [google_apis] Use factory method to create GoogleServiceAuthError
  • 7a86f4f [ipcz] Compact SequencedQueue storage before reallocation
  • 30c309a Roll ANGLE from f7571cf4c526 to ff64d9b2dbec (1 revision)
  • 44e603f Roll eigen from 1726a929009b to c148dc8fadf4 (1 revision)
  • 8658f16 Avoid registering observer before calling HistoryService::Init(...)
  • d0f395d Roll Chrome Win32 PGO Profile
  • f95f02c Migrate InitializeFileSchemeAccessForExtension to ChildProcessId
  • 71a0d7f Roll DevTools Frontend from 9824f31ecedd to df4aee83342e (1 revision)
  • 60051bf html: Fix <marquee> animation
  • cfcd85d Roll Projector App from YFe4fDYq2-W1q6K6u... to VFym4AAENNmVvjceC...
  • a13dbfc CodeHealth: Clean up stale base::Feature PhoneHubCameraRoll
  • 736191b WTF: Optimize ASCII case conversion for String and AtomicString
  • 3ae9984 Reland "Enable IDNA ContextJ rules by default"
  • cd1adcd [//media] Inline CopyVideoFrameDirectlyToGLTexture() into its callsite
  • d65ce77 [//media] Move CopySharedImageDirectlyToGLTexture() to GLES2Interface
  • 513b03a [//media] Have CopySharedImageDirectlyToGLTexture take in CSI as pointer
  • 2176ef6 Revert "[Gardening] Disable DomainDiversityReporterTest.ScheduleNextDaySuspended"
  • 8f75a25 [//media] Rework param names in CopySharedImageDirectlyToGLTexture()
  • a74afe2 [//gpu] Make param names in GLES2Interface method consistent
  • b986763 WTF: Rename IsASCII() to IsAscii()
  • 148ff94 Preserve base64 decoding for data URLs with invalid MIME types
  • ee21d9d Roll androidx from IxP1FmK52UK5we5ZE... to rz90VPpK87UYOL1GQ...
  • adc3bcf [base] Add an alias to mark a ScopedObservation as dangling
  • 48b5383 Remove UNSAFE_TODOs and modernize style_perftest.cc
  • f7e76a5 Roll Chrome Android ARM64 Orderfile from Gl7r93I8PSYAQYs3A... to ezF30E3wY6f1F8-Gl...
  • a3fb35b Roll Skia from 02ba2eac9d65 to 2fb5fa71eb12 (1 revision)
  • 5c141c4 Removed unittest on multi-channel config parameters
  • 330537b [Signin][Android] Change source of accounts in ChromePickerAdapter
  • 2e0e709 Roll Chrome Mac PGO Profile
  • 338d577 [CoCE]: Add legacy mode support to HTMLUserMediaElement
  • a87e950 Roll Depot Tools from 95d1432b5c50 to d819b798b712 (1 revision)
  • 6c218e7 [CE] Update UA default styles of Capability Elements
  • 7ac1727 [Nigori] Relax CHECK() in GetDataImpl()
  • 940f2c7 [base] Add RawPtrTraits as an parameter of base::ScopedObservation<...>
  • 239b48c net: Add max stream limits pending delay to LoadTimingInternalInfo
  • 4fb5186 Roll Chromium Variations from 5r4cfEtq-PMbyNUpD... to jZ476P6-BDn5l54mQ...
  • 89d54c8 Convert to UNSAFE_TODO in //net
  • ebd242b Add missing public to ConnectivityManagerWrapper to make it actually constructable outside the package :)
  • 6c6ddad Roll V8 from bd829db3f269 to 519d4756f685 (5 revisions)
  • aee6035 Roll Boca App from E8PdxH4wBRt6cscDC... to 07L2MjthLWqkvhmvY...
  • 649ef08 Report origin tree scope id for function rules
  • 367f210 Roll Boca Receiver App from jYMpo5XUVHG4H3pdH... to h9rCodIO91BSGJIs0...
  • 7fd6e9c [SVG] Remove flag SvgNonScalingStrokePrecisionFix
  • d280af8 Roll Chrome Win ARM64 PGO Profile
  • 86e4ad2 Roll Chrome Mac Arm PGO Profile
  • da6798d Autofill: Format address profile with missing fields
  • 467cbbb [Blink] Add DrawingBuffer test
  • 21d9d72 [Blink] Simplify DrawingBuffer code on adding scanout usage
  • ed5ecfd [Blink] Streamline LowLatencyUsageSupportedForCanvas2D()
  • c19b21d Fix dangling pointers in ash/session/fullscreen_notification_bubble_unittest.cc
  • df0700d Preserve source effectAllowed value in drop path
  • 5308e56 Import wpt@11f369dfab7cc1fc3f38fc062d87cffd04dc317b
  • a391378 Roll Chrome Linux PGO Profile
  • 5c21f60 Roll android_deps from bSNUpmo1wIHCZI5w3... to PGgvEOiRpg1Z5fBKS...
  • b30d84f Roll gn from 2941d2a26fa9 to d22fa2d126d8
  • e2dbb40 Add tast control txt file as data of tast_test targets.
  • 121dbba Roll Chrome Win32 PGO Profile
  • 5e4399a Revert "Migrate ChromeOS-exclusive switches from chrome/browser to ash/constants"
  • f78f4c5 [Blink] Remove dead method in CNon2DResourceProviderSI
  • bc68be5 Site Search: Merge common logic into expandable mediator
  • db73207 [Socket Pool] (3) Remove kDefaultMaxSocketsPerProxyChain
  • 0023d4b [Blink] Fork CRPSI::WillDrawInternal()
  • fb80208 [Blink] Fork CRPSI::WritePixels()
  • 02ea82f [//cc] Dedupe {Picture, TileDisplay}LayerImpl damage rect tracking
  • c8d5fee Roll Updater chromium_mac_arm64 from 2@1595001 to 2@1596007
  • 3ca44df Roll eigen from ea13a98decd4 to 1726a929009b (1 revision)
  • 71b0b54 Roll Chrome Android Desktop x64 PGO Profile
  • bf35cd6 ash: Dismantle crosapi's cros_display_config.mojom, part 11
  • 7f94944 ash: Dismantle crosapi's cros_display_config.mojom, part 10
  • 5e4fa88 Revert "Temporarily turn off tast test on CQ"
  • 17f0315 Handle excessive connection error retries gracefully
  • e8d31b2 Roll Chrome Android ARM64 Orderfile from 9wL9YOq3S7GfsL9O8... to Gl7r93I8PSYAQYs3A...
  • 62f7369 [Save to Drive] Move accessibility label to dialog container
  • bb4aad1 Roll Enterprise Companion chromium_mac_arm64 from unnSeeKtbR91zwmPg... to SZhTzCS8Hr8eAeKbO...
  • 19c994a actions revamp: Use new WebContents on WebContents Change
  • 72935c2 ash: Dismantle crosapi's cros_display_config.mojom, part 9
  • f078d69 actions revamp: Implement ShowContextMenuAsFallback() for Android
  • cf0a24f Construct Blink CSS spans with base::unchecked
  • 96f18cf Roll Skia from 06430af765bf to 02ba2eac9d65 (1 revision)
  • bcbadb9 [History] Fix NPE in AppFilterMediator.resetState
  • 068cad9 actions revamp: Implement HideActivePopup() for Android
  • 97511f0 Roll Chrome Mac Arm PGO Profile
  • a7e3d08 actions revamp: Implement canShowTAPopupForAPICall() for Android
  • a252ad4 Make experimental ChromeOS gtests CI only.
  • c2e80fe Fix Crashes by giving ConvertSmsOptRetrievalApiErrorCode a Default Case
  • 149ae0f Roll Chrome Win64 PGO Profile
  • b083f15 Use GPU driver bugs to disable vaapi driver
  • d61a49c Remove redundant tests in fast/dom/inert [2/n]
  • 72e4b3c Roll DevTools Frontend from d143aab826e3 to 9824f31ecedd (1 revision)
  • 2cabdea Checked Span: Allow `base::unchecked` in Blink
  • 4dfd407 Reland "mojo_unittests: Work around Checked Span"
  • 106e5c0 Roll Updater chromium_mac_amd64 from 2@1595004 to 2@1596008
  • 4d9a7df Roll Updater chromium_linux64 from 2@1595001 to 2@1596007
  • 851920e [Gardening] Disable ReadAnythingOmniboxControllerBrowserTest#DidStopLoadingIsDebounced on ChromeOS ASan LSan
  • e232ba1 Roll Enterprise Companion chromium_mac_amd64 from 3gygPVc80uSFzAnfq... to 4ZDsQkj4PhTNaYQwI...
  • e211f4b [Webium] Add BrowserWindow.ShowRequestedToFirstPaint
  • f37f0b8 [DBSC] Remove initiator_origin_trial_features from ThrottlingURLLoader
  • a14605b Roll Enterprise Companion chromium_linux64 from r0_sMmDbAA5fQnqzj... to bfXobrW2w1AKos1jV...
  • 37305ef Roll ANGLE from cbf5fc6ce4d2 to f7571cf4c526 (3 revisions)
  • e2500c6 Roll Chrome Android ARM64 Orderfile from NGlkBpk2Lq3iW3Mix... to 9wL9YOq3S7GfsL9O8...
  • 9f5dad2 [Extensions] Use dialog model for download danger dialog
  • 363ce33 Roll Skia from ae3d36cb9e29 to 06430af765bf (1 revision)
  • 6e26372 a11y: disable WebContentsE2ETest.testDumpTreeWithInitialSelection
  • 9bbccb2 Roll Chrome Win32 PGO Profile
  • f52f47c Roll Dawn from d9aed31faf03 to 18eb229ef5f7 (1 revision)
  • 961fa55 Roll DevTools Frontend from 1ceca4463bd6 to d143aab826e3 (1 revision)
  • 61a6e31 Remove expired and unused SafetyTip histograms
  • ca7fecd [Rust] Emit .rmeta files alongside .rlib for rust_rlib targets
  • 0ca58b3 Update `TestExpectations` with bugs filed for crrev.com/c/7675901
  • 5b31dab [SSLClientSessionCache] Stateful memory pressure behavior behind feature
  • 474869b Revert "Restore hardware decoding in MediaTest"
  • 94ec02d [projects] Gate AIM/Gemini thread display on eligibility
  • 6f37431 Roll src/third_party/wix/ 1cda03778..d0745e3bc (1 commit)
  • 30f107f Roll Chrome Android ARM64 Orderfile from TN3adKQzY9KIzlpuP... to NGlkBpk2Lq3iW3Mix...
  • 85a6dcc Roll Chrome Mac Arm PGO Profile
  • a7d4859 [webaudio] Fix OscillatorHandler NEON implementation
  • 175aedf Set up mojo bindings for content-annotator-internals WebUI.
  • 704e3f3 fix HumanPresenceOrientationControllerTest dangling pointers
  • df805b8 Replace PrerenderHandleId with PrerenderHostId
  • 214a7de fix NightLightCrtcTest and AmbientEQTest dangling pointers
  • 9003238 ASH Refactoring: Move ARC strings from C/A to ash/ash_sterings.grd
  • 4aa6967 Checked Span: Add `span.h` plumbing
  • d758128 Add Prerender2WarmUpCompositorForWebView to field trial/supported flags.
  • 8995f53 Roll src/third_party/libunwindstack/ 0928ad0d2..333fcafb9 (1 commit)
  • 82b8f6a Roll clank/internal/apps from dac50102e920 to 726cd20140f7 (1 revision)
  • 7c2c360 Fix incorrect board name for amd64-generic
  • 64bbd9f Update metadata for gtk and plasma-wayland-protocols in wayland-protocols
  • 82aedde Move ChromeOS enrollment related prefs to ash/constants/ash_pref_names.h
  • 9b9bba9 Roll vulkan-deps from 484867bfefe9 to 7c625f80e8cc (1 revision)
  • 645c034 [composebox] Composebox mixin class [part 1]
  • e0d99c1 Ash: Modernize login C++ idioms
  • 0a3cfcb Roll WebView ARM Orderfile from DF2Cp7QYQs5C6DF1x... to MR0Lv5_g8Ga9tC7xE...
  • 94d3e6e Roll Chrome Mac Arm PGO Profile
  • 9dcfa12 WebNN: Prevent TransposeConv2d col2im temp buffer overflow in TFLite
  • 7d99a69 geolocation: Throttle approximate location updates to 15 minutes
  • 69dad59 ash: Dismantle crosapi's cros_display_config.mojom, part 8
  • efb2617 actions revamp: Implement popping out actions
  • 023729a [UniqueFontSelector] Stateful memory pressure behavior behind feature
  • bdf0b53 Import wpt@c26c0fb5e37d4ea6f42568a3240461a285c54d04
  • 1789090 Roll ANGLE from faadf15393db to cbf5fc6ce4d2 (1 revision)
  • 196d9ad Use focus() in inert-node-is-uneditable test
  • 8d7f4ec spellcheck: force PerformFullContentSpellCheck to request fresh spell check request
  • 16bb220 prefetch: Add the counter of bookmarkbar navigation/hover ratio
  • bd1b354 Roll androidx from cOeVS8IOLGMV68S9v... to IxP1FmK52UK5we5ZE...
  • edca45c ASH Refactoring: Remove 4 unused strings of IDS_SEA_PEN_WALLPAPER_TERMS_*
  • d17b992 Roll Chrome Mac PGO Profile
  • eedbdd5 [layout] Remove LayoutFlexCacheFix flag.
  • a2c0f30 Roll Chrome Win ARM64 PGO Profile
  • 8813127 Start implementing WebUIReadOnlyOmnibox
  • 5e5928b Roll src-internal from 4170be53b444 to 4bac053d081d (1 revision)
  • b7f7f2b Roll Chrome Android ARM64 Orderfile from HNBodnDKouNznw08p... to TN3adKQzY9KIzlpuP...
  • 46a604d Replace UserSessionStateObserver with OnceClosure
  • 3fc3b21 [A11y] Do not enqueue CVox event if no listeners registered
  • d6bcc9a Roll Chrome Mac Arm PGO Profile
  • 0f8d479 Remove media::kLiveTranslate
  • e4fee35 Revert "[Autoplay] Add MEI UMA telemetry for autoplay policy decisions"
  • 6c3ee50 Roll Catapult from 9bc4a2aee936 to f7a1fb2d8f3d (2 revisions)
  • d918cdd extensions: Fix NavigateParams UAF
  • 54666ba Document FlexLayoutAlgorithm::ComputeMinMaxSizes better.
  • 76a255b Roll Chrome Android Desktop x64 PGO Profile
  • d3e39a4 Correctly register inactive callback in WhatsNewFetcher
  • c0e3e70 Roll src/third_party/crossbench-web-tests/ 909ad1733..b19e4e52c (1 commit)
  • ec6919c [iOS] Fix popover positioning for tools menu on iPad rotation
  • 3151653 Remove obsolete chrome/common feature flags
  • ab8075c Updating trunk VERSION from 7739.0 to 7740.0
  • 69cd84d Spanify ui/gfx buffer accesses
  • 2c7aea2 [Reading mode] Fix selecting to read aloud in immersive
  • 98e1845 Added WPTs for background-clip: text
  • bd64eb0 Temporarily turn off tast test on CQ
  • f8da834 [GLIC CEP Paste Support] Add glic paste feature
  • 973249e Roll Depot Tools from 31b7aaa3ee69 to 95d1432b5c50 (1 revision)
  • 087c803 Add: Missing native unit test asset dependency
  • e845457 Roll Perfetto from f0dd8e682d37 to 9b59f48e11a5 (1 revision)
  • 990164e Roll Chrome Win64 PGO Profile
  • d1b85be Roll Chrome Win32 PGO Profile
  • 82929e0 AI Proofreader: Refactor to use AIOnDeviceSession wrapper
  • 94b939b Roll Skia from 16cdf9c43925 to ae3d36cb9e29 (3 revisions)
  • eb5faeb [Extensions Cleanup] Simple JS updates in metrics
  • d3beb65 Prepare for WebUI pinned toolbar actions
  • f8d33b5 [finds] Fix crash in FindsTabHelper for Incognito tabs
  • 9b3e761 [ContextualCueing] Wire up anchored message UIs
  • f2c415a Sync feature protos.
  • 1bc0160 Automated Commit: LKGM 16619.0.0-1076034 for chromeos.
  • 54dd259 ASH Refactoring: Remove 4 unused strings of IDS_EDU_COEXISTENCE_*
  • 4c01713 Roll src/net/third_party/quiche/src/ 99a5e60cd..b91dd3088 (7 commits)
  • aba37cd Reland "Remove D3D KeyedMutex Path in Media Capture patch"
  • 0b61477 Trigger GiC for verification of password change.
  • 6413674 Roll V8 from 8941ded10643 to bd829db3f269 (9 revisions)
  • 6f89c13 Roll Chrome Android ARM32 PGO Profile
  • cb68661 Roll Crossbench from 4b00420261e9 to 877a1b48c4c4 (1 revision)
  • b3cdeb5 Roll android_deps from Iv8_79hT6eno7q3HW... to bSNUpmo1wIHCZI5w3...
  • 4144a97 Remove the Screenshot Monitor
  • d9af9b8 Eliminate UNSAFE_TODOs in audio_buffer_source_handler.cc
  • 87fb9b9 ai-overlay-dialog: Add feature param for API key
  • 756982f [CodeHealth] Cleanup kOpenXrExtendedFeatureSupport
  • d2531e5 [Extensions Cleanup] Simple JS updates in document_scan API
  • 46bc46a media: Fix VpxVideoEncoder memory ownership bug
  • 1233788 Expand ownership for feature-related files in //base.
  • c215f8e Iterate on copy of layout subtree roots during LFV::PerformLayout()
  • 4c26be5 [Extensions] Extend DeclarativeNetRequest.ManifestEnabledRulesCount2
  • a1f1385 Switch off PauseMutedBackgroundAudio on non-Android systems
  • 69da4a0 [Side Panel Infra] Create an Android-specific BUILD.gn file
  • 97aa194 Roll Chrome Mac Arm PGO Profile
  • 62ab7bb [Setup List] Fix accessibility status and long-press for Two-Cell layout.
  • e510348 Roll FuzzTest from 41e160679e3c to 3e42dc3c305d (1 revision)
  • e580f57 [Actor] Added command line flag to enable journal logging
  • b8d0b89 Reland: android-a11y: Update AccessibilityNodeInfo#textSelectable property."
  • 7ef74da [omnibox] Use specific icon size for Search loupe in AIM Button
  • 5fdb672 [GlicInvokeFre] Diverts AutoSubmit requests for Trust-First Arm 1.
  • 5c4eff1 Roll TFLite/LiteRT to Next Green Version
  • de612ca Revert "Migrate VideoCaptureObserver to base::CheckedObserver."
  • df31360 Roll WebView ARM64 Orderfile from fpCx8hSaDjnv8lI_E... to CLGYKXfSNATHJIOdr...
  • 324d839 Disable tast.peripherals.LaunchAppFromLauncher.feedback
  • 6dc8b2c Roll src-internal from c512726ea6af to 4170be53b444 (3 revisions)
  • 7db9ecc Roll Chrome Android ARM64 Orderfile from G_ojdZaOE-LkWdS62... to HNBodnDKouNznw08p...
  • fdc67c9 Roll WebView ARM Orderfile from EjzF3fh3r_f23ZHUU... to DF2Cp7QYQs5C6DF1x...
  • 99c3d09 [SidePanel] Update #onSideUiSpecsChanged to trigger after resize
  • 00c0886 [BNPL][PNPL] Handle issuer selection from Pay Later tab
  • a71a567 [XR] Consolidate XR OWNERS files to use same source of truth.
  • 9365286 Update glic_iph_controller_interactive_uitest for glic MI
  • 1b9a295 Reland "[projects] Support dynamic Resumption Rail IPH strings"
  • fc4f2fe extensions: Add more DeclarativeNetRequestApiTest to desktop Android
  • aa0ffdb Add test and fix metrics for glic FRE
  • 3a8c9d0 Roll cc: 1.2.56 => 1.2.57 in //third_party/rust.
  • 2a36762 Roll clank/internal/apps from 9c4b6e2b49d2 to dac50102e920 (1 revision)
  • bb6beeb Roll Platform Experience Win from d93f2deda504 to eae77b923c7c (1 revision)
  • 3d49948 [Extensions Cleanup] Simple JS updates in declarative_net_request API
  • bb208b5 [BackButton] Creates feature flag for three dot menu back button
  • 6460790 a11y: restrict selection tests to 36.1.
  • 2be407e Make InputConnection thread more important
  • 8c86018 Make FromJniType/ToJniType for UUID map to base::UUID
  • 7b2c093 [Prompt API] Permit empty strings and sequences in prompt builder
  • a43c9c2 [Read aloud] Reload the TTS extension if the engine stalled.
  • 1a99278 [BNPL][PNPL] Filter autofill suggestion by tab index
  • d9e3e5b Extend expiry of Extensions.CookieAPIPartitionKeyWellFormatted
  • 992e7b4 [composebox] Add metrics for composebox typed suggestions navigations.
  • fccaeb9 Ensure AudioRendererMixer holds lock during sink switch
  • 86db2cf JNI Zero: Rename "Constructor" -> "New" for mirror classes
  • a34795a Modularize //c/b/idle
  • 99d2bdb Fix dangling pointers in chrome/renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc
  • 43796ed Roll ANGLE from bf87ec4a0251 to faadf15393db (1 revision)
  • d1dbfb9 [composebox] Decouple tool and model metrics recording from state mutation
  • aebcdd4 Roll Dawn from ff05aac692cb to d9aed31faf03 (2 revisions)
  • a6324f3 [SharedPrefsMigration] Use protobuf when migration flag is enabled
  • 47fd687 [Extensions Cleanup] Simple JS updates in api_test/developer
  • 8c3121e devtools: Restore atomic cookie deletion for trusted CDP clients
  • b269899 [FRE-refresh] Managed User Profile Notice page.
  • 7ef7819 Verify content_settings before miccam check
  • d674bdb [contextual tasks] Compiles ContextualTasksUi and
  • d135526 overscroll: Fix a toggling overscroll snap points CHECK.
  • 9d5fba7 [media] Shard apple/mac/ios BUILD files
  • 99d1b1a Roll optimization-guide from 89bf056f23fe to 53d3b7da1479
  • 5c9b7dc [XR] Update AndroidX XR and Impress dependency versions.
  • bcc4573 [Extensions] Enable ExtensionServiceWorkerVoter in testing config.
  • 05ef169 [Extensions Cleanup] Simple JS updates in offscreen -> passwordsPrivate
  • ef672f4 Settings: Add UI control for enabling Process Isolation
  • 903ac02 [FedCM] Filter out some accounts in IdentityCredentialSourceImpl
  • cba8219 Roll src/third_party/libaom/source/libaom/ 0c15af06a..34f25197c (13 commits)
  • 8118321 Add LURS team as OWNERS for some os_people_page tests
  • 77bcc0d Replace NIK/NAK IsFullyPopulated() with IsEmpty()
  • 045374e Roll Depot Tools from 4e58caf8aa08 to 31b7aaa3ee69 (1 revision)
  • d723889 [Glic] Add core multi-region selection functionality to overlay
← Back to all summaries