Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2026-01-21 on branch 'main'

Chromium Digest: 2026-01-21

Overview

This daily summary covers 678 commits on the main branch, with 523 identified as relevant to developers. Key changes include numerous breaking API updates across core content, UI, GPU, and Android components, the shipping of the text-indent CSS property, and significant internal performance improvements. The changes span from commit (6365ba5) to (40d0a11).

Breaking Changes

  • ⚠️ BREAKING The default return value of the public API ContentBrowserClient::ShouldReuseAnyExistingProcessForNewMainFrameSiteInstance has changed from true to false. Embedders must now override this method to retain the previous process reuse behavior for main frames. (c6d23fb)
  • ⚠️ BREAKING In the public gpu::Capabilities struct, the gpu_memory_buffer_formats member has been replaced with mappable_formats. This changes the member name and its type from gfx::GpuMemoryBufferFormatSet to base::flat_set<viz::SharedImageFormat>, breaking any code that accesses it. (984d81f)
  • ⚠️ BREAKING Numerous public JNI function signatures, such as in AwContents, have been changed to use standard C++ types (e.g., float, int8_t) instead of JNI-specific types (e.g., jfloat, jbyte). This is a significant signature change affecting embedders using these JNI interfaces. (f59cf80)
  • ⚠️ BREAKING On Android, default implementations for onFirstContentfulPaintMillis, onLargestContentfulPaintMillis, and onPerformanceMarkMillis have been removed from the WebViewNavigationListenerBoundaryInterface. Embedders must now provide their own implementations for these methods. (6d8aa66)
  • ⚠️ BREAKING The public API for the persistent_cache component has been modified. The constructor and key methods in BackendStorage and PersistentCache now require a Client enum parameter to split metrics, breaking existing integrations. (9e230f8) (7d88083)
  • ⚠️ BREAKING A new virtual method, SetIgnoreZoomGestures, has been added to the core public interface content::WebContents. Embedders who provide their own implementations of the WebContents interface must now implement this new method. (c571237)
  • ⚠️ BREAKING The public header app_launch_params.h has been moved from chrome/browser/apps/app_service/ to components/services/app_service/public/cpp/, which will break builds that include the header from its old location. (d8ff397)
  • ⚠️ BREAKING The signature of MenuItemView::GetSubmenu() const in ui/views now returns a const SubmenuView* instead of a SubmenuView*. This enforces const-correctness and will break code that expected a mutable pointer from a const object. (6c291a6)
  • ⚠️ BREAKING The VulkanImageRepresentation inheritance contract has been changed. BeginScopedAccess is now non-virtual, and new public virtual methods BeginAccess and EndAccess have been introduced, breaking custom subclasses. (b67d410)
  • ⚠️ BREAKING The public API for components/contextual_search has changed. The methods AddFileContext and AddTabContext have been removed in favor of a new flow requiring CreateContextToken() followed by a Start...UploadFlow() call. (a15ff63)
  • ⚠️ BREAKING The public utility function signin::IsImplicitBrowserSigninOrExplicitDisabled has been removed from components/signin/public/identity_manager/identity_utils.h. (17497e8)
  • ⚠️ BREAKING The public method AutofillManager::FindCachedFormsBySignature has been removed from components/autofill/core/browser/foundations/autofill_manager.h. (680a5a0)
  • ⚠️ BREAKING The net::HttpNoVarySearchData public API was changed; the affected_params() method was replaced by GetAffectedParams(), which returns a std::vector by value instead of a const reference. (2edd293)
  • ⚠️ BREAKING The public DeviceNamePolicyHandler interface and its Observer class have been removed, breaking consumers of this policy API. (85d89da) (cf35a90)
  • ⚠️ BREAKING The default input pixel format in VideoEncodeAcceleratorAdapter has changed to PIXEL_FORMAT_NV12 from PIXEL_FORMAT_I420 on most platforms. This behavioral change may require updates to video frame production pipelines that rely on the default format. (e2835bd)
  • ⚠️ BREAKING The DevTools protocol command Target.getTargets will no longer return initial chrome:// WebUI targets, which is a behavioral breaking change for clients that relied on discovering them. (a0ab633)

Web Platform & Blink

  • The text-indent CSS property is now enabled for stable release, adding support for the hanging and each-line keywords. (5d273a0)
  • The AutofillEvent web API has been aligned with the specification, changing autofillValues from a method to a readonly attribute. (d194934)
  • The getDisplayMedia API will now fall back to system audio capture on platforms where window audio capture is unsupported (e.g., Linux), improving user experience. (2659da4)
  • The PreloadingEagerViewportHeuristics feature has been enabled by default to improve speculation rules performance by preloading resources that are likely to enter the viewport. (aae0a39)
  • The Web Locks API has been refactored to bind LockManager through DedicatedWorkerHost and SharedWorkerHost, improving bfcache eviction management. (5096b9e) (f5f21b8)
  • IndexedDB usage calculation is now delegated to the backing store, which improves size measurement accuracy for SQLite backends and enables future optimizations. (ce2ec2e)
  • The public Blink platform function LengthOfGraphemeCluster now takes a StringView instead of a String, which may require code updates. (5c7ca12)

Core, Performance, & Internals

  • String operations like StringImpl::CopyChars and EqualIgnoringASCIICase have been vectorized using the Highway SIMD library, yielding significant performance improvements. (da83dff)
  • The compositor's tree synchronization algorithm was optimized by replacing std::unordered_map with base::flat_map, reducing heap allocations. (569b8ae)
  • New trace events and UMA metrics have been added to track the duration of beforeunload dialogs, helping to distinguish between JS execution time and user wait time. (31a547d)
  • The DisableBoostPriority feature experiment has been redesigned with new policies to control process priority boosting at startup for different process combinations. (fce6df9) (e9e27b6) (4df3df3)
  • The view-source: URL handling has been fixed to correctly apply developer tools policies to the inner URL being viewed. (8aafc52)

Android & WebView

  • A new accessibility API has been added to WebContentsAccessibility to allow browser UI to notify web content of occluding rectangles. (1d51cbd)
  • Web App manifest handling was updated to migrate usages of borderless_url_patterns to the more general display_override with url_patterns. (5b83a14)
  • A crash when using guest_view on Android has been fixed. (181487e)
  • The behavior of AndroidBrowserWindow::OpenURL() has been updated to block popups in some cases, mirroring desktop behavior. (8469505)

UI & Views

  • The TextfieldController and TextfieldModel APIs have been updated to support enhanced clipboard data for enterprise features. This includes a new virtual method CreateClipboardWriter and signature changes to Cut and Copy. (1655ce7)
  • The observer API for VerticalTabStripStateController has been refactored, replacing RegisterOnStateChanged with more specific RegisterOnCollapseChanged and RegisterOnModeChanged methods. (c45cc50)
  • Support has been added for dragging multiple selected vertical tabs. (c453a74)
  • A top-level package.json was added to the WebUI directory to prepare for a transition to ES modules. (677b9a0)

Autofill & Payments

  • The AutofillClient::GetDeviceAuthenticator method is now overloaded to accept an optional histogram name, allowing for more detailed re-authentication metrics. The original signature is preserved for backward compatibility. (b713f02)
  • Google Pay branding has been updated to Google Wallet branding across various UI surfaces for saving cards and IBANs. (5685440) (ee3f7be) (c64a472) (dcfb782)

Enterprise

  • A new enterprise policy, LocalNetworkAccessIPAddressSpaceOverrides, was added to allow administrators to re-map IP address space ranges for Local Network Access controls. (f8127c5)

Feature Removals & Cleanup

  • The Third-Party Cookie Deprecation (TPCD) Metadata component updater has been entirely removed from the build. (0e57cab)
  • The StrictPowerfulFeatureRestriction command-line flag and its logic have been removed, as the features it controlled are now governed by the [SecureContext] attribute. (f3fea6c)
  • The stable feature flag kReduceUserAgentAndroidVersionDeviceModel was removed, making its behavior (reducing device model and Android version in the UA string) permanent. (c53edcc)
  • Numerous feature flags for launched features were removed, including those related to the Mahi project (kMahi, kMahiManaged, kMediaAppPdfMahi) and PasswordManualFallbackAvailable. (e030ebb) (198ec09) (30b4c27) (56f0672)
All Commits (678)
  • 40d0a11 [Mac] Fix Cmd+W not working in PWA when bubble/overlay is focused
  • 74ee445 [ppm] Add trace event in PrintRenderFrameHelper::ScriptedPrint.
  • 8af8553 Extend expiry for UMA histograms
  • 036c45c Automated Commit: LKGM 16562.0.0-1074727 for chromeos.
  • 106c75c Add missing feature to field trial config for CSB expansion.
  • e8ef1e6 updaterutil: use `GetPoliciesJson` instead of using server logic
  • 330f077 [context-input] Extend UMA histogram expiry for contextualSearch logs
  • 2eca17c Enable chrome.histograms API in WebUIToolbarUI
  • 143b6b7 Roll Chromium Variations from juWnRK94QJZyLejes... to Cx9u-EazXKiGNe5Pa...
  • 9628f96 [iOS] Fix Gemini Floaty Visibility on Keyboard Appearance
  • ae7c972 [context-input] Fix delayed tabs not being cleared by clearFiles
  • ece2f9a [NtpCustomizationV2] Fix the drifting of ntp background image
  • 81e8094 Roll Chrome Mac Arm PGO Profile
  • 4bf480a blink: fix OffsetInAnchor typo
  • e82f5a0 feat: Use appropriate computation state in the browser agent
  • 6ee757c use MtcLogBuilder::FillMtcMetadataAnchorProto helper in EndToEnd test
  • 7894a2e [BrowserControls] Fix DOMUtils.clickNode when top controls has minHeight
  • 5ed3cff Use HTCAPTION for pinch-to-zoom resize
  • 91a080b [realbox] Fix the position of the composebox in RTL mode.
  • f8690aa metrics: Update expiry for Ash.Birch.Chip ("Welcome Recap") metrics
  • 7311635 [Vertical Tabs] Removing fixed bug from state controller
  • 1655ce7 Add TextfieldController::CreateClipboardWriter
  • 477497c [Reading mode] Pad for static line focus so everything is reachable
  • ddf344e WebNN: refactor D3D SharedImage checks into IsSupported
  • 276d8b2 Add skeleton implementation for ImagedTrayIcon
  • 2c8655a Import wpt@e669c543534ccc284f7c4dcaa506c98141fdc8b8
  • e9992b6 Drop some unnecessary StringView::ToString()
  • b67a901 [iOS] Extend ios-tips-notifications-string-alternatives
  • e693dad Remove calls to base::android::GetClass() #8
  • 0e48d2f Roll androidx from MITAmSVEEZzxDo7nq... to kSaH_8VkwR5iiMUNZ...
  • 1d51cbd [a11y] Browser's UI occlusion handling through NodeInfoProvider
  • 50d0c73 Roll ANGLE from 6d38deec8bbb to 0bfc0513a34d (4 revisions)
  • f2fa34d Replace some String::EndsWith() with StringView::ends_with()
  • 5c7ca12 Make LengthOfGraphemeCluster take a StringView
  • de99af0 Replace some String::StartsWith() with StringView::starts_with()
  • 684f727 Inject the FetchPageContext function to avoid chrome dependence
  • 6c1936d Revert "[glic] Fix foreground daisy chaining and add more tests"
  • 2259fd6 [Start Chrome with Windows] Add switch and metric for Foreground Launch
  • adc96b6 Avoid duplicate map lookups.
  • 9f28477 ModalDialog Gets Spacing At Bottom When No Buttons
  • 93a8e35 [aim-tools-models] Fix dangling ptr in InputStateModel on task switch
  • a4a88c4 [crd host] GdmRemoteDisplayManager
  • 8a6312f [HIC] Create composited layers for canvas descendants
  • f4b178b VT: Ensure that waitUntil is resilient when View disappears.
  • 55aa154 [ntp-threads] Update history button focus ring to match theme color
  • 2edf703 Roll glic-test-internal from fede314dfa63 to 3aa991eb5daf (1 revision)
  • 75789b6 Update GlicButton tooltip when glic panel opens and closes
  • 83f6154 Roll Chrome Win ARM64 PGO Profile
  • 1e2f3d9 [contextual_tasks] Fixed a crash by invalidating weak ptrs
  • 0a9a5c6 Revert "[AF][Clank] Replace GPay with Wallet branding for card upstream prompt"
  • a960586 Add logic to checking dangling untriaged so that the check does not fail when files are moved.
  • da1d116 infra: Shard Android JUnit tests
  • 245595c Roll Skia from 213bd1d58822 to e6ac8e51a13d (22 revisions)
  • a8d67d6 artemis: Log enqueue failures to the syslog temporarily
  • 9d81d0b base: add RandIntInclusive alias for RandInt
  • 87b7b37 Avoid duplicate map lookups.
  • b712c7d Roll Depot Tools from 45aedc0ee53a to f09d6283fcff (1 revision)
  • 24896f3 Remove SurfaceInputForAndroidVEA from the test config
  • 43deffd Update CBB autoroll for the builds refs
  • 7bc0405 Pass AVChannelLayout to ChannelLayoutToChromeChannelLayout
  • 51bfb0c feat: Adds gemini eligibility within the tab helper
  • 97f01de Unparcel file descriptors for incoming intents on Android B+
  • 90fc8d6 Roll Perfetto from 90d4350053b3 to f6f616808fa8 (3 revisions)
  • b987300 Add JXL image density (BPP) histogram metrics
  • 22b27d8 [iOSFidoImportExport] Fix CSV export after dismissing share sheet
  • b25089b Cleanup of DTCKeyRotationUploadedBySharedAPIEnabled
  • 3b5c82a [rust] Bump `RUST_SUB_REVISION` to refresh `cc_bindings_from_rs`.
  • d4ca72d logger: Modernize ReportQueueConfiguration usage
  • b95be1e Support single-axis scroll containers in StyleAdjuster
  • 6767bef [viz] Use SharedImageFormat in TestRasterInterface
  • 5e4042a Implement side panel in chrome://skills
  • 214d964 Roll BoringSSL from 599a3d54c093 to f998a843abd4 (1 revision)
  • 65f6338 Remove manual ref counting in webstore_private_api.cc
  • 2b08503 Remove EnabledDSEKeepAlive group from KeepDefaultSearchEngineAlive
  • 99c6446 Roll Chrome Mac PGO Profile
  • 442cc50 [Persist] Init PersistentStoreMigrationManager
  • a8cd1a7 [ios] Polish corner radius and margin of ipad composebox
  • 40dbd0b Add defensive checks for overflow in image resizing
  • e51a791 [ppm] Emit the AudioOutputDevice::GetOutputDeviceInfo trace event in "latency" category.
  • fe9177c android: Group JUnit tests for external sharding
  • 0428016 Revert "[IBAN][Clank] Replace GPay with Wallet logo in upstream bottom sheet"
  • 08551cd Roll WebView ARM64 Orderfile from hskCQD1EbjEQHijzy... to 40RAFfl9Cb20yiyVI...
  • b67d410 [DCSI] Add ProduceVulkan support to CompoundImageBacking.
  • 87898de IDB: SQLite store - add support for blobs that are stored as files.
  • b08f97e Revert "Roll V8 from 35f125545ff3 to cb3cabf51f62 (8 revisions)"
  • bf6d175 Consolidate where -fexperimental-relative-c++-abi-vtables is set
  • e0f47ed Roll vulkan-deps from 4b6d07130301 to 4bea67a1eed9 (3 revisions)
  • f59cf80 Replace jfloat, jdouble, jbyte, jchar, jshort with C++ types
  • 913a25a Roll optimization-guide from ef139db7fe60 to ffbc0cf8002b
  • f0167a2 [GlicUnderlines] Clean up obsolete debug logs for missing underlines bugs
  • 984d81f [gpu] Port format list in Capabilities to SharedImageFormat
  • 33f9ddb [Vertical Tabs] Fixing Collapse/Expand Icon in RTL
  • ee9cbb1 Roll clank/internal/apps from c67af814c2b5 to 157cc6430163 (1 revision)
  • 677b9a0 WebUI: Add top-level package.json file specifying `"type": "module"`.
  • dc78e92 [Autofill] Clarify descriptions of *EditedAutofilledFieldAtSubmission2*
  • 9727e84 Break out SessionUsage enum further
  • 902bfd8 Roll Chrome Mac Arm PGO Profile
  • 724cdf0 [TDR] Remove TODOs linked to issue 40092527
  • f518763 Roll Amd64 AFDO from 146.0.7639.0_pre1570614_rc-r1-merged to 146.0.7648.0_pre1572142_rc-r1-merged
  • 18d2556 Remove harringtond from feed owners
  • 8682fff Add ThemeServiceFactory::GetForProfileIfExists
  • 51e4e57 Roll Platform Experience Win from bd9f6ccc3ab1 to 1444ffab4787 (1 revision)
  • 7bc4cfc [SEH] Dialog part 1: Add optional choices to extensions dialog params
  • b2fbc0d Roll DevTools Frontend from 103ee7d0e76a to ca807fbd06a2 (1 revision)
  • 4937247 Roll Chrome Android ARM64 Orderfile from lRd2gob58unkd5_sK... to H8O1VV6RHI8LhGfPZ...
  • 3109115 Use SetIgnoreZoomGestures in dev tool windows
  • f68f83c Revert "[Vertical tabs] Add save tab groups related icons to group header."
  • 95a6e06 [ntp] Context tools - add canvas icon
  • cec9308 Break AnnotatedPageContentRequest dependency on //chrome/browser
  • 8b68603 [VL] Add field trial testing config for kVisitedLinksOn404
  • 095b85d [glic] Fix foreground daisy chaining and add more tests
  • 8aafc52 Fix view-source URL policy checking
  • e9f65dc Fix crash in frame_serializer.cc
  • 9b5048b Nuke some dead code.
  • 2e74370 Deobfuscate LeakCanary reports
  • 44f30df [Reading mode] Center line focus around read aloud position
  • 16d0f8f [PWA internal clean up] Add explicitly type for webapps::ManifestId
  • 9a58587 Roll Chrome Linux PGO Profile
  • 4e81a81 Extend GPU.FenceSyncRelease metrics
  • e47b9ba Add Memory.DumpProvider.PostTaskTime
  • 1cc713c Remove autofill controller workaround
  • e959b9e [ppm] Add trace events around waits in PeerConnectionDependencyFactory::CreatePeerConnectionFactory.
  • c53edcc Remove "kReduceUserAgentAndroidVersionDeviceModel" feature
  • 4756e73 Roll Chrome Win64 PGO Profile
  • b2126f4 Make mac_util_unittest.mm buffer-safe
  • 7152fce [NTP-Real_Box]: Remove feature param but keep the behavior as default
  • 4e5a440 Allow TopChromeWebUIController to use chrome.histograms
  • f74775a Pass correct unthrottled interval in ExternalBeginFrameSourceAndroid
  • f8127c5 [LNA] Add IP address space override enterprise policy
  • 2402584 [ntp-next] Add histograms for Action Chips and refactor metrics logic
  • 77d5893 Update `TestExpectations` with bugs filed for crrev.com/c/7499716
  • da67f9d Sync feature protos.
  • bf2e333 [Zucchini] For ELF files, skip NOBITS sections that have offset = 0.
  • b01973a Remove akihiroota from OWNERS files
  • e206dc0 Replace `std::unordered_set` with `absl::flat_hash_set`.
  • 63c1604 Roll Chrome Android Desktop x64 PGO Profile
  • e508055 [actor] Metrics
  • f6a1d55 Increase shards of browser_tests on win11-rel
  • 8b53420 [contextual tasks] Drag and drop regression fixed
  • dcb3cee Remove fast checkout expectation from translation expectations
  • 10d426a Roll FuzzTest from 5a702743bbf2 to 82c54580e33c (1 revision)
  • 5d398cc Roll Chrome Win32 PGO Profile
  • cf1445a Revert "Revert "Enable the tab search toolbar button on top of tree""
  • 852db83 [Vertical Tabs] Refactoring UpdateButtonStyles function
  • aa3361c [Android NTP] Limit the number of MVT tiles to 8.
  • 5c01304 [contextual-tasks] Skip tab recontextualization when Lens Overlay is visible
  • 4564c4c Roll src/third_party/libvpx/source/libvpx/ b0be221b6..807c69846 (12 commits)
  • 5754dce Remove set_act_on_web_for_testing
  • ae141ee [Wayland] Allow non-square icons for xdg-toplevel-icon
  • be126eb sinc resampler fix for conversion from pointer comparison to span comparison
  • 92b8191 Roll WebRTC from 557272892da3 to 1f6d2c2ce63f (2 revisions)
  • f0e88d8 Add logs for byte sizes to hsts generator
  • 013b661 WebUI: Turn on @stylistic/eol-last ESLint presubmit check for TS.
  • c6d23fb Updates ContentBrowserClient::ShouldReuseAnyExistingProcessForNewMainFrameSiteInstance
  • 3bd02a9 Roll Perfetto from 474f8bc8ebfc to 90d4350053b3 (4 revisions)
  • 53168e7 ElementTiming/ContainerTiming: report paints of images in pseudo element contents
  • abe59a6 [NtpCustomizationV2] Add background to logo and search box in preview
  • 9110ccd WebXR Layers: Add a wpt test for createCubeLayer
  • 88d5602 [Vertical Tabs] Merge split pinned tab background
  • 4b3f4d8 BrowserWindowAndroidBrowserTestBase Class to Avoid Repetition
  • 36f259d Add support for Skills MES feature in client-side
  • dffee6b Fix some origin inconsistencies in unit tests
  • a6dd11b [ios][apcv2] Graft xorigin frames
  • f629d34 [iOS] Add a conditional login credential bottom sheet test
  • 61e2d0a Roll scenecore/runtime to alpha08, add arcore-openxr and arcore-arcore
  • 7e22448 Roll Chrome Mac Arm PGO Profile
  • fdf7dc8 [Bundled Security Settings] Move Page Preferences Initialization to Setup Function
  • b6c324a [projects] Add recent threads list view
  • 1102b34 Roll compiler-rt from 388792dba92f to 14ecee12d7a7 (3 revisions)
  • 53d40e1 [Views] Touch selection bubbles should be a floating element.
  • 08863f6 [viz] Clean up Use90HzSwapChainCountFor72fps feature
  • 86485f2 [viz] Remove features that are just declared
  • bd89b56 [iOS] Rename empty-string variant in iOS save prompt histograms
  • 1491700 Add chrome flag for webgpu interop enablement
  • e02c18d Remove calls to base::android::GetClass() #7
  • ab0c1e7 ExhaustedIntervalSampler: Only tally consecutive empty intervals
  • a455607 gfx::ColorTransform: Remove tone mapping
  • bb7dab0 viz: Add kVizWithIoMessagePump for upcoming experiment
  • 9554951 Add `has_media_transcript` MetaTag
  • 95e7991 Replace `std::unordered_set` with `absl::flat_hash_set`.
  • 3ab300a [Tagged PDF] Fix selection bug when displaying tagged PDFs
  • 5b50f06 Roll clank/internal/apps from 6339b5267817 to c67af814c2b5 (1 revision)
  • 098cccb WebUI: Add @stylistic/stylelint-plugin to the toolchain.
  • 4186f54 [Skills] Add entrypoint for Skill deleted toast
  • f7d2679 [PDF Ink Signatures] Rename "pageNumber" to "pageIndex"
  • ffb5a30 [Gardener] Disable SingleClientContactInfoPassphraseSyncTest.Passphrase on all ASan builds.
  • 7b27e74 Remove SkiaSurfaceProvider
  • 569b8ae [TreesInViz][cc] Optimize tree sync in TreeSynchronizer and DoUpdateDisplayTree
  • 0e57cab Remove TPCD Metadata Component Updater integration.
  • e9310bb [realbox] Fix scrim behavior for Lens upload dialog on NTP
  • ee3f7be [IBAN][Clank] Replace GPay with Wallet logo in upstream bottom sheet
  • 7b42b24 Use SetIgnoreZoomGestures in WebUIContentsWrapper
  • 51ad843 [Extensions] Reattempt fix for UserScriptsUITest via message filtering
  • 60bb1c6 Notify about webdialoghost destruction
  • a562f1f Reland "android: Use ResettersForTesting for test state"
  • 47d53ff [iOS][Composebox] Introduce Tab Drag and Drop
  • a556ab7 Import wpt@9bd4d659822e4f1b71ad4b039786cfbadbd3dd44
  • 99cdd20 [downloads] Add histograms for size of "url chain".
  • 8469505 Popups may be blocked by AndroidBrowserWindow::OpenURL()
  • 9746147 [BCIV] Cleanup, enable for ReaderModeTest
  • 4022261 android: Pin play-services-identity-credentials to 16.0.0-alpha08
  • b8e9798 Improve GPU Websocket logging
  • 1a100e1 Add descriptive ARIA labels for glic settings shortcut links
  • f6dbbfa [SAA] Remove unused FedCM autogrant metric
  • 780d1cf Revert "Enable the tab search toolbar button on top of tree"
  • 514c815 Roll DevTools Frontend from 56c886291f16 to 103ee7d0e76a (1 revision)
  • 1781463 Do not reset the page data for ZSS if nothing meaningful has changed
  • 4d0d2e0 Expand InProcessFuzzer error message for clarity
  • b318833 [TDR] Remove TODOs linked to issue 41371792
  • 81883e8 Add mschillaci as owner to Java accessibility code
  • 1a6c06f Use string_view instead of string to avoid string copies.
  • 016eb12 Prompt dialog to confirm protocol handlers registered by extensions
  • 527a6fc [cleanup] Remove duplicate DestroyLeftoverChildren
  • a76b8bf GlicE2ETest: explicitly set test account label
  • 5685440 [AF][Clank] Replace GPay with Wallet branding for card upstream prompt
  • 143f64e Revert "[DBSC] Extend DBSC-S + OAML browser tests"
  • 253fd29 Add more detailed tracing to Android video capture
  • 2192e71 Remove drubery@ from owners of OnFileDownloadedEnterpriseConnector
  • 5b6c94a Roll Crossbench from 79adb24451e4 to 41327cc2441a (1 revision)
  • b9c354c ClientSharedImage: don't always use termporary thread for CopyGMBtoShMem
  • f60328f [TDR] Remove TODOs linked to issue 40548841
  • acce247 Deprecate multi-container entry points
  • 88d3bd4 Webium product: fix BrowserSwitcherServiceTest
  • c6c597d Roll ios_internal from a4a3a4f84e6d to 5879ef874027
  • 181487e Fix crash using guest_view on android
  • bb2ed7b [PWA] Refactor FetchInstallInfoFromInstallUrlCommand result types
  • ed0963b Remove some watchlists for rmcelrath
  • ae5823a Roll Perfetto from df093cf8cb1a to 474f8bc8ebfc (2 revisions)
  • 8106bab Roll clank/internal/apps from cf7054d9974c to 6339b5267817 (1 revision)
  • e813883 Avoid using INVALID_COLOR in tab strip overlay code.
  • 8a153d8 Roll Chrome Android ARM64 Orderfile from zTVyv4L2ZMGVO3dIe... to lRd2gob58unkd5_sK...
  • 2a5ded6 Roll WebView ARM64 Orderfile from ye4AoyIIRsv7FcS49... to hskCQD1EbjEQHijzy...
  • cc182fd [Bundled Security Settings] Adjust SB disc and description margins
  • e5daf7d Roll Chromite from a8ff7138f3c6 to 762de39e6778 (1 revision)
  • 3a1cbd2 [memory_details] use version_info::GetProductName() for ProcessData::name
  • da83dff Vectorize StringImpl::CopyChars and EqualIgnoringASCIICase using Highway.
  • 7cf3321 Add guest_view to android_desktop build
  • 4e64b9b Roll Depot Tools from 74ac621e4dc5 to 45aedc0ee53a (1 revision)
  • dc1bec4 Revert "Reland "Reland "Webium Product: add interactive UI test for reload button web view"""
  • 9f3cefe Roll androidx from xlWrFhWFgKE3JlXGu... to MITAmSVEEZzxDo7nq...
  • 33cd60f FIXUP: Fix paste lag in bookmark Name field (follow-up)
  • e16ca08 Use ntdll.lib to link ntdll functions in updater
  • d3e0907 Drop NO_THREAD_SAFETY_ANALYSIS from GetDeltas
  • 57638fd [EICP] Add validation for ExtensionInstall policies in the policy stores
  • 47d93fe Roll Chrome Mac Arm PGO Profile
  • 60e9f71 [AutofillAi - M4] Implement local source notice.
  • 19c5efa [iOS]Checks scene and browser are properly stopped.
  • 33d9ca8 [TDR] Remove TODOs linked to issue 333445540
  • c95b1a3 [AutofillAi - M4] Handle multiple save/update flow invocations.
  • 2a2ecf1 Freshen android_isolated_splits.md to mention newer splits
  • 515b6d4 [AutofillAi - M4] Implement the update prompt title.
  • 6089a1a Android: Convert ObservableSupplierImpl usages in tab_management
  • 2beef03 Add custom icon load test for PWAs that enforce a strict CSP
  • c0224f4 [Uno-d clean-up]: Update `GetChromeCounterTextFromResult`
  • 376a517 Remove unused dependency on tabs component
  • f362aa3 Fix "No inactive windows" placement on phones
  • 2a24686 Keep extensions pinned when uninstalled by policy
  • 481b636 Roll DevTools Frontend from 608b00745ec4 to 56c886291f16 (2 revisions)
  • 25a2c7a [A11y] Make LIVE_REGION_CHANGED comments more descriptive
  • 4b1acaa Use SkPathBuilder with FillPathWithPaint.
  • f50ad21 Actor: Add test for userConfirmationDialogRequest ordering
  • 5682117 Roll ANGLE from b8f65c8c6799 to 6d38deec8bbb (4 revisions)
  • a04ce05 Revert "[a11y] Fix cursor blink interval on Clank"
  • 5478c32 [RSG] Implement prioritization of data sources
  • 688280b Revert "[a11y] Make Chrome respect live cursor blink rate settings changes"
  • fd772b4 [Theme] Add testing config for NewTabPageCustomizationV2.
  • b471f0f Add targets to watchlist for accessibility
  • 94d866e [Bugfix] Open TabListInterface-created tabs in foreground
  • 4309045 Discard postMessage if the channel is null.
  • a15ff63 [context-input] Refactor session handle context token generation
  • caf080c Legion: Cleanup PrivateAIService headers
  • cd40da2 Remove elainechien from the BrowserLabsEnabled Enteprise Policy
  • db1fbe6 Add missing params to FT entry for ClientSideDetectionCreditCardForm.
  • a5de14e [Vertical tabs] Add save tab groups related icons to group header.
  • ece5e83 Remove GPU.ANGLE.Buffer11CPUMemoryMB
  • 0242a0f Roll WebView ARM64 Orderfile from _Qks_ko3gqXBorwDu... to ye4AoyIIRsv7FcS49...
  • b713f02 [Autofill AI - Reauth] Log reauth on filling metrics
  • 054b6fd [TreesInViz] Add CopyFromPreservingNodes and optimize TransformNode diffing
  • 91a344b Roll vulkan-deps from 936e1500f667 to 4b6d07130301 (1 revision)
  • 31a547d Record beforeunload dialog duration in traces and metrics
  • dd27a0b Convert to UNSAFE_TODO in media/gpu
  • 782e736 Enable MQLS upload during automated page context extraction
  • 72d97f0 spanification: automatically spanify .../media_router/common/providers/cast/certificate/cast_crl.cc etc.
  • b23c27a [gpu] Do not dump factory not found crashes for ChromeOS Reven
  • 56acdc3 Roll Chrome Android ARM64 Orderfile from xCb-EJwJ7XMs4OoXa... to zTVyv4L2ZMGVO3dIe...
  • 6866147 Roll ios_internal from 8d0ed95d373f to a4a3a4f84e6d
  • e132a40 Extend performance/tabs histogram expiry
  • 4df3df3 Implement PriorityBoostGpuBrowserNetworkPolicy
  • c453349 [Gardener] Disable a TabCollectionNodeBrowserTest on Mac
  • e9e27b6 Implement PriorityBoostBrowserNetworkPolicy
  • 39b94b8 Roll Media App from 8RNBq7cffPzN87a8z... to x78tA1qb8jSpZ0GV_...
  • fce6df9 Remove implementation for DisableBoostPriority feature
  • 04c1ce3 Roll PDFium from ad9ae06e7490 to ab124d69bdf3 (3 revisions)
  • 772b268 Updating trunk VERSION from 7648.0 to 7649.0
  • 7deb6a9 [iOS] Extend Contextual Panel and Overflow Menu customization histograms
  • 5312fb4 Remove calls to base::android::GetClass() #6
  • 760fb05 Face control: Observe display rotation changes
  • c16a4d9 Add feature flag to control SaaS usage reporting
  • 7b144c6 [Vertical Tabs] Tab Group Button Visible in Guest/Incognito Mode
  • 2c63851 [webaudio-testharness] Migrate audiobuffersource-duration-loop.html
  • 46dd406 Register PNG decoding for blink fuzzers
  • de7f6eb Prevent browser crash due to TabDiscard while ActorUi is active.
  • fef0be4 Reland "Support signin errors in the profile picker"
  • f565a78 Roll Chrome Win64 PGO Profile
  • 3b5c515 [AutofillAi - M4] Display updated attributes.
  • 65340e1 [webaudio-testharness] Migrate audioworkletprocessor-param-getter
  • f4a642e Update metrics protos with proto_export
  • 4f1f59c [webaudio-testharness] Migrate biquad-829349.html
  • ef560d2 Revert "Keep renderer alive when last WebView is destroyed"
  • 5b34d8e Roll Chrome Win ARM64 PGO Profile
  • 2aa2f5f [cleanup] Remove LayoutBox::PageBoundaryRule
  • 5a8d366 Remove unused dependency on tabs component
  • fefe583 [LNA] Add a netlog event for LNA permission requests.
  • a245e39 Record UMA from time from attempt login to filling
  • 346b2f6 Roll Chrome Mac PGO Profile
  • 6f084d9 Show the actuation settings toggle if the pref is user-modified
  • 088b751 [iOS] Remove the dispatcher from VoiceSearch
  • d6fcecf [TDR] Remove TODOs linked to issue 441231848
  • 0f8a47f Roll Help App from iQRwdDb6O-kFRa_8V... to qLkn1-rvDlCPaHe2E...
  • 990d968 Delay expiry of Attribution Reporting histograms
  • d205b02 [iOS] Add regression test for instantiation of InfobarBadgeTabHelper.
  • 849afc5 spanification: automatically spanify base/strings/utf_string_conversion_utils.cc etc.
  • f2ea92e spanification: automatically spanify .../common/partial_circular_buffer.cc etc.
  • b30d345 [VL] Add 404 unit test to expire_history_backend_unittest
  • 8f14a43 Revert "Support cpp_features.proto in protobuf files."
  • b47be63 [DBSC] Extend DBSC-S + OAML browser tests
  • 99da267 Remove -msse4.2 from fuzztest BUILD.gn
  • a1fefcf Improve validation UI in Autofill AI edit dialog
  • 24b337f Implement required field validation for Autofill AI
  • 2d45078 Revert "[iOS] Add field trial config for IOSReaderModeTriggerHeuristic."
  • c4a8678 Roll V8 from 35f125545ff3 to cb3cabf51f62 (8 revisions)
  • 7fa8d30 Roll WebView ARM Orderfile from eroBqcec0_9NXI4-E... to dCDz8A2rC3zBJSjsT...
  • f09bd4a Roll Chrome Mac Arm PGO Profile
  • 097f756 Roll WebRTC from b1861559b10a to 557272892da3 (1 revision)
  • c17442e Enforce fast-path parsing for CSS "keyword" properties
  • 8b3d939 Remove usage of base::ScopedMultiSourceObservation<...>::sources()
  • 3b7927e Remove "IsBlockedUrl" which is redundant.
  • b2084dc Add credit card art to actor form filling service.
  • bbdfb48 Remove CHECKing same number of server suggestions as cached fields
  • 6ebd3c4 [TDR] Remove TODOs linked to issue 40215894
  • 6c88397 Roll Perfetto from a075be2f5185 to df093cf8cb1a (1 revision)
  • 8d7814b ProfileManager::RemoveKeepAlive: don't crashdump on Stable
  • a2575bd Add unthrottled_interval to BeginFrameArgs
  • df4d039 Roll Chrome Win32 PGO Profile
  • 14a78a2 [TDR] Remove TODOs linked to issue 332193789
  • 6eae97c Reland "[dbsc] Use application tag for unexportable key lookup"
  • 8e06e8e [Autofill AI - Reauth] Always obfuscate suggestions main text
  • cccbd54 Roll src-internal from cd267be316c1 to 10ab5c2e01a0 (1 revision)
  • b9e4166 Roll Dawn from c30843e52d7c to e15f71ed8211 (4 revisions)
  • a4b5e98 [iOS] Youtube Incognito cleanup - II
  • c52f4a5 [Settings Search] Index SignInPreference
  • 87666f3 [a11y] Make Chrome respect live cursor blink rate settings changes
  • e4ccf87 Roll ios_internal from 191e61ba592a to 8d0ed95d373f
  • 3db3e6a [Document PiP] Add Initial Header UI
  • fc66263 Roll DevTools Frontend from 2497099a4a69 to 608b00745ec4 (1 revision)
  • 9e230f8 [sqlite_vfs] Split metrics by client
  • 93166e3 [Vertical tabs] Add early return if collection node doesn't exist.
  • fba80fe [Vertical Tabs] Paint tabstrip to layer
  • f23b3a8 [Android] Allow for Spans in ConfirmationDialog
  • 12f6fa1 Extend ChromeOS.Settings.Device.Keyboard.BrightnessSliderAdjusted
  • d152eff [KP] Automatic update from google3
  • 78b718d [histograms] Extend V8 compile/turbofan histograms
  • 6f0f279 Roll ANGLE from 8f825e9e94cb to b8f65c8c6799 (1 revision)
  • f21c5f1 [a11y][Passwords] Request focus in credential leak dialog
  • bcee964 [CT] Automatic update from google3
  • 02378e6 Roll WebRTC from 0f8af7ca58e5 to b1861559b10a (1 revision)
  • 6d8aa66 Webview web performance apis: Remove default boundary method implementation
  • 68989fb Embed survey probabilities for Identity HaTS surveys
  • f3fea6c Remove the `StrictPowerfulFeatureRestriction` flag.
  • 2659da4 gDM: Fallback to system audio when window audio is unsupported
  • 20fe25e [permissions] Pass correct ContentSettingsType to IWA:DecidePermission
  • 8641068 Parse column-span in keyword fast path
  • 10fc99e Roll clank/internal/apps from bd26e67601bf to cf7054d9974c (1 revision)
  • 0d9dbe9 Parse content-visibility in the keyword fast-path
  • 2feaa68 WebAuthn: Rename GetGpmPasskeys and remove unused variable
  • 208e921 Roll BoringSSL from 5e46f3cee51b to 599a3d54c093 (2 revisions)
  • 3d374b7 Replace `std::unordered_set` with `absl::flat_hash_set`.
  • 31f4ec3 [ios] Use iPad popover presentation for iOS26 narrow size classes
  • eab7ec7 Border-style longhands are parsed in the keyword fast-path
  • 9a3ba6c Roll Chrome Android Desktop x64 PGO Profile
  • 6321b7f Specify improvement direction for histograms
  • b6614de Reland "[iOS][AIM] Add flag for additional tools in the input plate"
  • d1c87c8 Roll ios_internal from 766fc521f3a8 to 191e61ba592a
  • 6e57aab Roll Chrome Android ARM32 PGO Profile
  • bc70c0b Disable failing SaveCardInfobarEGTest tests
  • 9d15495 [ios] Fix ThreadPool crash in SceneControllerTest when running locally
  • 39e08d6 Update /autofill/heuristics-json/
  • 66d8e69 [ios] Disable flaky unittests in ios/*
  • e75ae6d Roll DevTools Frontend from 19294f5e7f50 to 2497099a4a69 (1 revision)
  • 7fd2acf Update and reenable layout tests after crrev.com/c/7472072
  • 9ce6a23 Roll vulkan-deps from c159d041dce0 to 936e1500f667 (1 revision)
  • a5b584e [iOS] Remove deprecated omnibox metrics and move remaining ones
  • a5914c8 Extend expiry of Private Metrics histograms
  • 2bac1c1 Roll WebView ARM64 Orderfile from s8kjmg2hJXErdWTun... to _Qks_ko3gqXBorwDu...
  • cd76b2b Roll Chrome Mac Arm PGO Profile
  • 50e6316 Roll Chrome Android ARM64 Orderfile from fT9dBIkoxRTDEDi37... to xCb-EJwJ7XMs4OoXa...
  • 7d88083 [persistent_cache] Split PersistentCache and SQL metrics by client
  • 2c6a3d8 Migrate net_http_security_headers_hsts_fuzzer to FUZZ_TEST.
  • 12523b7 [tracing] Skip v8 categories if perfetto is disabled in v8
  • cbf1ee1 [Autofill] Fix overridden virtual function calls in SimpleStrikeDatabase
  • ae5cb62 Update some web tests for a devtools change
  • fd0f882 Roll llvm-libc from 3f8b546bced1 to 5015187a42d6 (5 revisions)
  • a5cff08 [iOS] Add field trial config for IOSReaderModeTriggerHeuristic.
  • 333b524 LPP: Add new error messages for SetLocalPasswordInput
  • c0a13d4 Replace `std::unordered_set` with `absl::flat_hash_set`.
  • 2ba9f42 Roll Perfetto from cf2292571b21 to a075be2f5185 (1 revision)
  • 74ba125 Revert "extensions: Introduce ExtensionToolbarTest"
  • be295de Revert "android: Use ResettersForTesting for test state"
  • 4ae223c Roll WebRTC from c31e0ce62812 to 0f8af7ca58e5 (1 revision)
  • 4f7dbc6 Revert "Add experiment flags for WebView Perfetto init"
  • 282c28f Roll WebGPU CTS from 01b814e66e73 to 936d5ee4de19 (1 revision)
  • c4e22ac [DevTools] Add unit tests for `GetHostConfig()`
  • e030ebb Remove ash::features::kMediaAppPdfMahi
  • 563698e Remove flag media-app-pdf-mahi
  • b8a92e7 [iOS][AIM][Reland] Prefactor mode indicator button creation
  • 198ec09 Remove chromeos::features::kMahiManaged
  • 30b4c27 Remove chromeos::features::kMahi
  • 379bc03 [iOS] Add a LoadURLFromOmnibox to URLLoading agent
  • b0528dd Disable TLS13EarlyDataPolicyTest.EnableWithRestart on Android
  • c33ddf7 Improve IncognitoNtpOmniboxAutofocusManager tests readability.
  • 3da0cdf Fix the counter of opened NTPs in IncognitoNtpOmniboxAutofocusManager.
  • 766296b Roll DevTools Frontend from c579359b0ffc to 19294f5e7f50 (3 revisions)
  • ac6f67d Update criteria for PIN keyboard digit detection
  • d26ac5e Roll Chrome Win64 PGO Profile
  • a33d08e [iOS] Youtube Incognito cleanup - I
  • d6b5a00 [TDR] Remove TODOs linked to issue 40876285
  • 12ead8c Roll BoringSSL from 0728071e071a to 5e46f3cee51b (1 revision)
  • baa6ddb Less special-code for ::backdrop creation.
  • f92f44f [TDR] Remove TODOs linked to issue 40156088
  • c412bc4 [IWA] Add sub apps filters in web app registry.
  • d59bf83 [Android] Migrate to Supplier in KeyboardAccessoryData.Tab icon
  • 242936c Roll Projector App from ryYTwxzDr2aLkJHGU... to 5L_I2M8YX1LnW8aRi...
  • 7ddfc07 [TDR] Remove TODOs linked to issue 40117157
  • 125a8a9 [Refactor Legion] Follow up on CL https://chromium-review.googlesource.com/c/chromium/src/+/7488016
  • 38cbb53 [ios][apc] Use href in the right format for svg anchors
  • 2b421f3 Replace `std::set` with `absl::flat_hash_set`.
  • b47479a Roll clank/internal/apps from 0f35e3c7cdfb to bd26e67601bf (1 revision)
  • 550254d [TDR] Remove TODOs linked to issue 40704763
  • 44c30af [Okta SSO] Parametrize Okta SSO request URL pattern
  • 3d47b97 Roll Chrome Mac Arm PGO Profile
  • 58375fe [TDR] Remove TODOs linked to issue 40244221
  • 9254538 [Autofill AI] Remove obsolete strings
  • 6f8ba6b Resolve UNSAFE_TODOs for AudioHandler::node_count_
  • b3ba0cb Roll src-internal from 7fdce21b897d to cd267be316c1 (1 revision)
  • 5d73425 Roll Chrome Android ARM64 Orderfile from CrjFnYLaCnjA_2_8h... to fT9dBIkoxRTDEDi37...
  • 93580dc Roll WebView ARM64 Orderfile from swhn5IgmJPkiOr4ri... to s8kjmg2hJXErdWTun...
  • d8f3dc1 Extend DLP histograms
  • e09daa2 [iOS] Use BrowserCoordinator instead of Omnibox Commands
  • ee20270 Replace `std::unordered_set` with `absl::flat_hash_set`.
  • d979179 [TDR] Remove TODOs linked to issue 40870833
  • f97147d [TDR] Remove TODOs linked to issue 40243127
  • 5afb6ef [TDR] Remove TODOs linked to issue 41460959
  • 58673df Roll ANGLE from 79314d8b7b7f to 8f825e9e94cb (1 revision)
  • 6d116ea [TDR] Remove TODOs linked to issue 276035404
  • 904c25e [context-input] Set iOS composebox query controller to use the same request id for viewport and context
  • 12785dd [TDR] Remove TODOs linked to issue 259490845.
  • 75d0d2f [TDR] Remove TODOs linked to issue 412683254
  • a79d2b1 [GAPs] Create service and factory for running server-side Gemini
  • 84efab1 Roll DevTools Frontend from 0a8d0ec421e0 to c579359b0ffc (1 revision)
  • 41805a1 [iOS] Move TabGroupColorPalette to browser/shared/ui/util/color_palette
  • 470ae66 [testing/variations] Align testing config with experiment
  • 6aaaaa7 Replace `std::unordered_set` with `base::flat_set`.
  • 8473e01 [iOS] Fix TabGroupColorPalette seed color theme
  • cd2fb13 [PasskeyUnlockErrorUI] Track the outcome of solving Magic Arch challenge
  • 3c0436f [TDR] Remove TODOs linked to issue 340952100
  • 5e7f705 [TDR] Remove TODOs linked to issue 172223014
  • 46d10a2 [Signin][Al] Compile WebAuthFlow browser tests on Android Desktop.
  • e6e10eb Optimize ServiceWorker synthetic response body handling
  • b83927a [Signin][Android] Change strings in Recent Tabs history sync opt-in promo for seamless sign-in
  • 5b83a14 Migrate usages of borderless_url_patterns to display_override url_patterns
  • f4b7309 Roll Boca App from ma-8Bc7C4wLxOLi_p... to lBurtOuwyOtjWa_Na...
  • 8c62417 [WebMCP] Report exception in DevTools when tool execution fails
  • f7cce98 Roll clank/internal/apps from 43c046b11d82 to 0f35e3c7cdfb (1 revision)
  • e4be0f3 Roll Chromium Variations from i1ZbeN4ySB9xC6Qv7... to juWnRK94QJZyLejes...
  • 78346ea [ios] Tentative fix for crash in sandboxExtensionForFile
  • 148bf9a Reland "Reland "Webium Product: add interactive UI test for reload button web view""
  • bb75a1f Roll Boca Receiver App from UqnxdBLMUKLXuZi9h... to UB7lY80gm-3JS2qu8...
  • b558203 Roll WebRTC from 89809fe426b6 to c31e0ce62812 (1 revision)
  • 880caa4 [Android] Fix Keyboard Accessory positioning for password fields
  • 7da29f8 Roll BoringSSL from 3af8dba67e57 to 0728071e071a (1 revision)
  • 0ecefb0 [Signin][Android] Remove UnoPhase2FollowUp flag from bookmarks
  • 2ad2c1d Roll Chrome Mac PGO Profile
  • d9bc853 WaaP: Restart unresponsive WebUI toolbar renderer
  • 9bbc915 WTF: Add StringView::ends_with()
  • 08dc6d7 [Uno-d clean-up]: Update Dice Account reconcilor delegate
  • 17497e8 [Uno-d clean-up]: Remove `IsImplicitBrowserSigninOrExplicitDisabled`
  • fa93011 Roll Chrome Win32 PGO Profile
  • 86580ec Roll Dawn from 609ad4a73f62 to c30843e52d7c (2 revisions)
  • 098526c Roll DevTools Frontend from 5563496226fd to 0a8d0ec421e0 (1 revision)
  • 8a7ff6f DataplanUsageTableViewController: Cleanup C++ refs on settings close
  • d779ec8 Roll androidx from 7mj_vvGaQVEt90e_W... to xlWrFhWFgKE3JlXGu...
  • 17ca531 [CodeHealth] Refactor permission unittests
  • 27eed35 Roll WebView ARM Orderfile from oEEf9hwWG2sCjwm7b... to eroBqcec0_9NXI4-E...
  • dea9e77 Make default ParseSingleValue() NOTREACHED()
  • dc7df23 Roll Chrome Mac Arm PGO Profile
  • 401d92b Roll Chrome Android ARM64 Orderfile from Of8mf9WW84xgwqb2c... to CrjFnYLaCnjA_2_8h...
  • 5096b9e [WebLocks] Bind LockManager for workers via Dedicated/SharedWorkerHost.
  • dac6fca [AI Assistance] Add a new base feature for DevTools AI Assistance V2
  • f5f21b8 [WebLocks] Pass a client ID when connecting to LockManager
  • aea0c48 Roll WebView ARM64 Orderfile from hRnoMGGUqbdUGQ3bk... to swhn5IgmJPkiOr4ri...
  • ea3a966 [Viz] Rename FrameSinkVideoCapturerImpl method
  • 19b99c9 Replace `std::unordered_set` with `absl::flat_hash_set`.
  • 5565843 [build] Add sanitizer coverage ignorelist
  • af9e5e9 Avoid duplicate map lookups.
  • 8c25e24 Calculate widths for both vertical and horizontal modes in input.ime
  • cb8dd3a [5/7] Add unit tests for ReparentingTask
  • c0fa06b Roll cmdline-tools from MBN8q3yvrcy7BPYKT... to nClDjKPpactQ8aQZF...
  • 813fc2e [//cc] Have GpuImageDecodeCache test use test raster interface
  • 02b31da [//cc] Remove custom GetIntegerv() impl in GpuImageDecodeCache test
  • c34a03c [//ui] Have relevant //ui files trigger a Linux Cast bot
  • af7b81a [//cc] Remove custom GetString() impl in GpuImageDecodeCache test
  • 00d7040 FitText: Update test names for the current syntax
  • 49f6a3f [//cc] Remove reference to GPUImageDecodeTestMockContextProvider
  • ce2d330 Prepare configurable render quantum for Origin Trial
  • 98a2a9e [Viz] Rename GpuMemoryBufferVideoFramePool
  • 69924d9 [//media] Update GpuMemoryBuffer reference in v4l2_queue.cc
  • 3a747f6 [Entry Point] Add menu items to app menu and settings
  • 4103b0c Replace `std::unordered_map` with `absl::flat_hash_map`.
  • 2d72c14 Remove ExtractFormDataOrFailure
  • 56f0672 Cleanup PasswordManualFallbackAvailable feature flag
  • 8f26032 Roll Chrome Android Desktop x64 PGO Profile
  • 75535f6 Use span-based file API in download_browsertest.cc
  • 697c7e4 Roll Updater chromium_win_x86 from 2@1566006 to 2@1567016
  • 2e07cfb Remove stale trace_test expectations
  • b32e963 Roll Chrome Android ARM32 PGO Profile
  • aae0a39 Enable PreloadingEagerViewportHeuristics by default
  • 59a64ad Add Olivia and Vinny as autofill payments UI OWNERs
  • ce2ec2e IDB: Delegate measurement of on-disk usage to the backing store
  • 250a1d5 Use span-based file API in //remoting tests
  • 56d1ed4 Roll Updater chromium_win_x86_64 from 2@1566022 to 2@1567022
  • 12781b6 Roll Updater chromium_linux64 from 2@1566006 to 2@1567012
  • 50d2f5a Remove stale pixel expectations
  • ad50100 Roll Updater chromium_win_arm64 from 2@1566016 to 2@1567029
  • e5101f1 Restore directive part of wasm-eval error message
  • 680a5a0 Remove AutofillManager::FindCachedFormsBySignature used in FastCheckout
  • 0e36dd2 Avoid copying HashMap in GetRawDirectiveForMessage()
  • a1a59ff Remove stale expected_color expectations
  • 1566654 Roll Chrome Mac Arm PGO Profile
  • 93d7cdf Fix buildflag_header template to support invoker's public_deps
  • 534338e [Autofill AI] Use reauth to update pref method
  • 5c1c295 actions revamp: Rename EAVM's observers to icon observers
  • c4b946f Add UMA to track search prefetch resource response availability
  • 021b6be Roll Updater chromium_mac_amd64 from 2@1566005 to 2@1567027
  • 2f14add Roll Enterprise Companion chromium_win_x86_64 from 3tq6h0yIwMZTPAqyT... to BobMBg1mdDT-4U1Bq...
  • d7c6213 Roll Chrome Win64 PGO Profile
  • 5d273a0 [text-indent] Enable for the stable
  • 29ce07c Roll DevTools Frontend from 92f6ef8e6da1 to 5563496226fd (1 revision)
  • a8e3aa9 Roll Updater chromium_mac_arm64 from 2@1566015 to 2@1567006
  • ed658fb Roll Enterprise Companion chromium_mac_arm64 from CaFW-2LmK7U0bc1Qr... to p1iz4SWZYK-D2aQiz...
  • a067c95 url: Mark ParsePort(const char*,...) unsafe
  • 9cecdca Roll Enterprise Companion chromium_linux64 from 7Fihzd8DYwfeYSdtH... to L6Cg_6hqd96hXsDQN...
  • bdf72de Roll Enterprise Companion chromium_win_x86 from fXRQ_XooA2WSyFGv4... to v_1dbGHgLXYcgvkxz...
  • ad949cd Roll Enterprise Companion chromium_mac_amd64 from Lsso4IsS-WsWKqSUm... to sJWhe9PXgdPmhzj8F...
  • 2c5a7b9 Remove unnecessary manual checks for callback methods within Bluetooth Blink
  • a2c61bf actions revamp: Add icon getter to ETBridge
  • 4e9dd28 Automated Commit: LKGM 16561.0.0-1074712 for chromeos.
  • 5bbf550 actions revamp: Add getter methods to ETBridge
  • 6f8e1cc Roll Chrome Android ARM64 Orderfile from 9QYX6QbGK8fG4JjTE... to Of8mf9WW84xgwqb2c...
  • f9f5ad5 Update test to have space between function name and url
  • 0f938ad actions revamp: Open popup via ETB and ExtensionActionDelegate
  • d194934 Autofill - change autofillValues to be a FrozenArray attribute
  • d711242 Roll WebView ARM64 Orderfile from C-8OiuvFN_P56JG6O... to hRnoMGGUqbdUGQ3bk...
  • 021ace0 [CADisplayLink] Fix a Mac crash - [Hang watcher] viz::ExternalBeginFrameSourceMac::GetSupportedFrameIntervals
  • 1ae952b actions revamp: Move tab and WebContents observers from EAVM to ETVM
  • 2edd293 net: Replace affected_params() with GetAffectedParams()
  • 5537c01 Roll DevTools Frontend from 5a8e2a0ef05a to 92f6ef8e6da1 (1 revision)
  • 5be5943 Roll clank/internal/apps from a35f2e5552d1 to 43c046b11d82 (1 revision)
  • 6da37ac [Vertical Tabs] Allow targeting vertical tabs region for context menu
  • e90ef42 actions revamp: Add browsertest for ETVM
  • bd28a7e Remove redundant test: user-select-none-in-editable.html
  • b34fcb8 Cache frequently used ThemeService in BrowserWidget.
  • 5d2ab5c Roll Chrome Mac Arm PGO Profile
  • 3c496bb [bedrock] Migrate BrowserListObserver to BrowserCollectionObserver - part 2/n
  • cdb92a1 [context menu] long press to trigger context menu with desktop UA only
  • e36d64a extensions: Introduce ExtensionToolbarTest
  • 8ee90b4 Roll ANGLE from ede694714972 to 79314d8b7b7f (5 revisions)
  • b70c4ad Fixes for TLS13EarlyDataEnabled policy
  • cf41c8a Roll Chrome Win32 PGO Profile
  • 92053bd Updating trunk VERSION from 7647.0 to 7648.0
  • 01d19e6 Extensions toolbar button: use a fixed height
  • 6e89ebd Roll src/net/third_party/quiche/src/ a92707751..c51b02196 (12 commits)
  • dcf30f8 [Mac] Fix undocked DevTools focus returning to wrong window for PWAs
  • 55a651f [Persist] Move up shadow store to TabModelOrchestrator
  • 37f53bd Roll Chrome Win ARM64 PGO Profile
  • a825c3e Roll V8 from f7db47c9eda6 to 35f125545ff3 (20 revisions)
  • eb14d88 Roll WebView ARM64 Orderfile from MnX__zLnT3lybcaVo... to C-8OiuvFN_P56JG6O...
  • e13d626 Reland "Reland "infra/config: Enable local profile for build perf builders""
  • 3e56683 Roll Chrome Mac PGO Profile
  • 6f19cef Restore integrated search bar UI for History/Downloads
  • ff49712 FitText: Implement `per-line` behavior
  • 0cf1e5b Stop Unicode case-insensitive matching for font weight/stretch suffixes
  • 10d9733 extensions: Generate Java ExtensionsFeatures
  • 082a856 extensions: Introduce ExtensionTestUtils
  • d169c08 extensions: Make LoadUnpackedExtensionAsync support Android
  • 55f0b12 Roll PDFium from c1cb9dec3406 to ad9ae06e7490 (11 revisions)
  • a7bb4c3 [D3D12, Enc] Use shared fence for D3D11/D3D12 interop scenarios sync
  • e7d3874 HttpStreamPool: Add NetLog events in the new Attempt class
  • 2d0f4c1 Disable ToggleToolbarHeightSidePanel test on Mac
  • d8ff397 Move AppLaunchParams to components.
  • 5b2f95e Roll Chrome Android ARM64 Orderfile from aTEI_x7eyPdXymeHf... to 9QYX6QbGK8fG4JjTE...
  • 7a6d916 Load updated regex for Clank without testing flag
  • 4c1d970 [contextual tasks] zero state spacing fix
  • 1eaa7f8 Roll Dawn from 036817cd366f to 609ad4a73f62 (7 revisions)
  • c402d79 Roll Chrome Mac Arm PGO Profile
  • 88c99d1 Roll ANGLE from a38f4afadd1c to ede694714972 (3 revisions)
  • f0298a6 Revert "Reland "Webium Product: add interactive UI test for reload button web view""
  • 2dca1a6 Fix ScrollView dispatched PreferredSizeChanged() too early
  • 3d5f4bd Roll Catapult from 00664c71d895 to fecea936ae27 (1 revision)
  • 2f53e41 [context-input] Support sending bool indicating Lens intent for non-LensOverlay context uploads
  • 293493c Roll Depot Tools from 39fa855acf46 to 74ac621e4dc5 (1 revision)
  • 1dd9bf1 Revert "spanification: spanify Vp9Parser."
  • 5a4e778 FIXUP: Fix paste lag issue in editing bookmarks URL field
  • 7680d8f Roll Chrome Win64 PGO Profile
  • 6c291a6 FIXUP(views): Add non-const overload for MenuItemView::GetSubmenu
  • e53f230 Remove redundant tests in fast/shapes/shape-outside-floats/
  • 85440f7 [Fixit] Center single-character tab group titles
  • d623cd6 Revert "MF Frame Server Mode: Part 5: Promotion Hint Service"
  • fb69c73 device_name: Rename DeviceNamePolicyHandlerImpl
  • 85d89da device_name: Remove DeviceNamePolicyHandler
  • 6654b9c device_name: Move DeviceNamePolicy to DeviceNamePolicyHandlerImpl
  • f947281 device_name: Remove kPolicyHostnameConfigurableByManagedUser
  • 6b5233e [Settings Search] Address TODO in ChosenObjectSettings
  • 212fccc device_name: Clean up unit tests for DeviceNamePolicyHandlerImpl
  • cf35a90 device_name: Remove DeviceNamePolicyHandler::Observer
  • d8ee4b3 [Reading mode] Remove full container bounds from text lines
  • 26a32c8 [TabStrip] Default enable close button refactor
  • a69f8b2 [TabStrip] Fix refactored flow getTabAt invalid index
  • 71f0be1 [infra][wpt] Document and claim ownership of iOS wpt.fyi builder
  • b162147 Roll Chrome Android Desktop x64 PGO Profile
  • 991ab6d doc: tools/utr: Fix link to internal design doc
  • 6b49e78 device_name: Remove the obsolete feature flag kEnableHostnameSetting
  • 9a028d1 [gpu] Add put_offset to CommandBufferService::PutChanged trace events
  • 2f07779 siso: update to version 1.4.25
  • b4afb79 Roll clank/internal/apps from 93e65273edfb to a35f2e5552d1 (1 revision)
  • 8dfd090 Add google_wallet symbol
  • a2831a4 [IBAN] Replace GPay with Wallet text in upstream failure
  • 8fd0416 [BrowserControls] Add isDesktop check for LockTopControlsV2
  • 1856642 [Sheriff] Disable
  • a487b1f Roll vulkan-deps from 47a77204a1e3 to c159d041dce0 (1 revision)
  • ce4dc2e Roll Chrome Android ARM32 PGO Profile
  • e71f4c3 Use string::contains(), not ranges::contains_subranges() in a test
  • d7ae186 [blink] Remove stale Linux expectation for MathML WPT
  • 2ef337c Enable kWasapiInputUseDeviceSampleFormat by default
  • ba65f92 WebUI: Fix @stylistic/eol-last TS violations.
  • 56703ec geolocation: Remove DanglingUntriaged from PublicIpAddressGeolocator::notifier_
  • c453a74 Support dragging multiple vertical tabs
  • 05a9641 Roll Depot Tools from 486cb1931f14 to 39fa855acf46 (1 revision)
  • 0acf9ba [contextual-tasks] Updates fieldtrial testing configs
  • c45cc50 [Vertical Tabs] Separate Mode changes and Collapse Changes for Observers
  • 6dc59a3 Fixes for safe_browsing_use_unrar=false
  • 15da486 bluetooth: Use raw_ptr for PairingDelegate in BluetoothAdapter
  • b3ee547 Roll Chrome Mac Arm PGO Profile
  • b87c8a8 Prerender: Remove redundant frame tree node ID from PrerenderInfo
  • e2835bd media: Default to NV12 in VideoEncodeAcceleratorAdapter
  • 14e7a31 Roll WebView ARM64 Orderfile from wt1QdO1W00gZZURpU... to MnX__zLnT3lybcaVo...
  • 062f6a6 Deprecate the fullscreen trigger for CSD
  • eb33986 [IWA] Dynamic feature flags for Isolated Web Apps
  • 99faa56 [iOS] Extend home customization histograms and price insights
  • 7ec111e Fix typo in metric being emitted
  • acf85d5 [Fixit] Remove title case from IPH titles
  • a0ab633 Webium product: skip initial WebUI URLs from the devtools target
  • cef5dec Resolve UNSAFE_TODO in FileSystemAccessIncognitoFileDelegate::Read
  • 569ea4d Roll Chrome Android ARM64 Orderfile from sVbYbxcGMrom-4C6m... to aTEI_x7eyPdXymeHf...
  • 173f710 Webium product: update reload button click triggers from FindBarViewsUiTest
  • 72cc805 Reland "Webium Product: add interactive UI test for reload button web view"
  • 955d331 [Signin] Fix theme flicker for signout confirmation dialog
  • c571237 Add `SetIgnoreZoomGestures` to WebContents
  • 19b218c [aim-eligibility] Adds SearchboxConfig demo link to the debug page.
  • 447f4d3 PA: Remove thread_local in parition_alloc_base PlatformThread::CurrentId
  • c64a472 [AF] Do not show Wallet logo for VCN enrollment
  • 5778292 Reland "Intercept navigation when trying to use an unconfirmed protocol handler"
  • 3c7fb11 [remoting] Force UTC timezone for Debian changelog date
  • 31c88f9 [ReadAnything] Record URL schemes for Reading Mode distillation attempts
  • fde6107 gamepad: Remove DCHECK_EQ for XInput in GamepadPlatformDataFetcherMac
  • dcfb782 [AF] Do not show GPay/Wallet logo for local save fallback
  • f82b01e Fix unsafe memset in ui/gfx/canvas.cc.
  • ea20f37 WebUI: Fix @stylestic/no-missing-end-of-source-newline CSS violations.
  • 6365ba5 Update enterprise e2e tests to use latest celab windows release
← Back to all summaries