Chromium Digest: 2026-01-23
Overview
On January 23, 2026, the Chromium main branch saw 672 commits, with 531 identified as relevant to developers. This day was marked by numerous significant breaking changes, including a codebase-wide refactoring of
base::Value types, major behavioral shifts in the back button and Web Audio API, and the removal of several public APIs in components like crosapi and content. The first relevant commit was (dd4a3fe) and the last was (4b3959a).Core & Services
-
⚠️ BREAKING
A massive, codebase-wide refactoring removed the widely used
base::Value::Dictandbase::Value::Listtype aliases. Embedders must migrate to the newbase::DictValueandbase::ListValueclass names. This change spans hundreds of commits. (8e25bad) (e6bceb5) (2a482c1) (42b022b) -
⚠️ BREAKING
A new pure virtual method,
GetGroupIdForSavedGroup, was added to the publicsessions::LiveTabContextinterface to support restoring the collapsed state of tab groups. Embedders with custom implementations of this interface must implement the new method. (1ae9a24) -
⚠️ BREAKING
The generic
DomStorageSqliteclass and its public headerdom_storage_sqlite.hhave been removed from the storage service. Code must be updated to use the more specificLocalStorageSqliteandSessionStorageSqliteclasses. (62e9513) -
⚠️ BREAKING
The signature of the public method
RenderProcessHost::FastShutdownIfPossibleincontent/public/browser/render_process_host.hhas been changed to support WebView optimizations, breaking direct callers. (a2f4859) -
⚠️ BREAKING
Public headers for split tab functionality,
split_tab_id.handsplit_tab_visual_data.h, have been moved fromcomponents/tabs/public/to a newcomponents/split_tabs/component, which will break builds including the old paths. (fd58fdc)
Blink & Web Platform
-
⚠️ BREAKING
The Web Audio API's
AudioContextnow starts in a "suspended" state and transitions to "running" asynchronously, per the specification. This is a major behavioral change that will break web content expecting the context to be "running" synchronously after creation. (c77f876) -
⚠️ BREAKING
Core Blink APIs in
PermissionsPolicyParserandIFramePolicyhave been updated to passSecurityOriginbyconst&instead ofscoped_refptr, breaking direct usage of these methods. (8c5cd39) -
⚠️ BREAKING
The public mojom method
content::mojom::Renderer::SetIsCrossOriginIsolatedwas removed as part of a refactoring of how Cross-Origin Isolated (COI) status is determined. This will break any client code that was calling this method. (6686a4a) -
⚠️ BREAKING
The public enum member
ContentSettingsType::DURABLE_STORAGEhas been renamed toContentSettingsType::PERSISTENT_STORAGE. Embedder code that references the old enum name will fail to compile. (9ca1f26) -
The
CompensateGestureDetectorTimeoutsfeature, which improves Interaction to Next Paint (INP) and input delay, has been enabled by default on all platforms. (9430875) - The Web Serial API has been implemented for Chrome on Android, bringing serial device communication capabilities to the platform. (3bdfeaf)
UI & UX
-
⚠️ BREAKING
The browser's back button behavior has been significantly altered.
CanGoBack()andGoBack()now incorporate "back-to-opener" logic, which may change navigation behavior for users and break embedder assumptions about the navigation stack. (81bc0fc) -
⚠️ BREAKING
The public method
BrowserAccessibilityAndroid::GetAccessibleNameUTF16has been removed. Callers must update to useGetTextContentUTF16for rendered text orGetString16Attributefor the computed accessible name. (a5cdfa0) -
⚠️ BREAKING
The expired feature flag
wayland-per-window-scalingand its public declarationkWaylandPerSurfaceScalehave been removed, making per-window scaling behavior non-optional on Wayland and removing a configuration point for embedders. (3788f93) - The Tab Search toolbar button has been re-enabled by default. (eeb683f)
-
On Android, the
chrome.tabs.group()API has been ported to desktop, and the "Reopen closed tab" option was added to the tab strip context menu. (4eb8e13) (5c0a16f)
Extensions
-
⚠️ BREAKING
To support asynchronous checks, the
extensions::ManagementPolicy::Provider::UserMayInstallmethod signature was changed to take abase::OnceCallback. Embedders who implement this public provider must update their method signature. (b79a8c6) -
On Android, the
chrome.tabGroups.move()API was ported to desktop, and significant progress was made on the "actions revamp," introducing the ability to pin/unpin extension actions to the toolbar. (192160e) (379d685)
Security & Privacy
-
⚠️ BREAKING
The public API for asynchronous supervised user URL filtering has been migrated from
SupervisedUserURLFiltertoSupervisedUserUrlFilteringService. Callers in thecomponents/supervised_usercomponent must update their code to use the new service. (bd2636d) -
⚠️ BREAKING
The virtual method
GetPasskeyByUserIdhas been removed from the publicPasskeyModelinterface incomponents/webauthn/core/browser/passkey_model.h, breaking any subclasses or direct callers. (1f9a2d6) - Support for Merkle tree certificate revocation has been added to the certificate verification process. (4b3959a)
ChromeOS
GPU & Graphics
-
⚠️ BREAKING
Legacy GPU IPC header files (
gpu_command_buffer_traits.h,gpu_command_buffer_traits_multi.h) have been removed and their functionality migrated to mojom. This is a fundamental change to the GPU command buffer IPC layer that will break embedders who rely on these legacy traits files. (d34682a)
Autofill
-
⚠️ BREAKING
The public
AutofillClientinterface has been changed, removingFormInteractionsFlowIdfrom several method signatures. Embedder implementations of this interface will break. (4d268be) - UI elements for saving IBANs and credit cards have been updated to use Google Wallet branding instead of the GPay logo. (5d12520) (df4ee46)
Infrastructure & Tooling
- The codebase continues to see increased Rust integration, with new Mojo bindings, parser features, and crate dependency rolls. (9bf76ee) (59101b2) (7f24cd5)
-
The DevTools
Target.createTargetprotocol method was updated to support a new optionalfocusparameter, allowing automated tools to create a new tab without bringing the entire browser window to the front. (89de898)
All Commits (672)
- 4b3959a Handle merkle tree certificate revocation
- 139f846 Roll vulkan-deps from 99634ecba27e to c26d5d134054 (2 revisions)
- 4084452 [Reading Mode] Adjust icons and layout of the Reading Mode toolbar
- 3b69bc7 extensions: Add ChromeExtensionFunctionUnitTest to desktop Android
- 4eb8e13 extensions: Port chrome.tabs.group() to desktop Android
- a5cdfa0 android-a11y: remove BrowserAccessibilityAndroid::GetAccessibleNameUTF16
- 4f8156d [Bundled Settings] Hide Secure Dns V2 Row
- 2c693fc [CustomizationV2] Refactor NtpThemeCollectionsAdapter
- 883eee4 Roll Open Screen from de256437f945 to 1f070e8b01b0 (1 revision)
- 85c3b14 Reland "[Vertical Tabs] Simplify browser tests"
- aef083c [Reading mode] Allow links toggle to work with Readability.
- 4bda808 Use SetIgnoreZoomGesture in AppWindow
- 82d5e4b [ntp][composebox] Refactor metricsPrivate checks into utility function
- 3e3051e Clean up kill switches for PDF and sandboxed frame CPSP enforcements
- 9bf76ee [rustmojo] Implement core receiver methods
- 59101b2 [rustmojo] Implement core remote methods
- c6ed4c9 [rustmojo] More work on MessagePipeWatcher
- 093fed3 [Settings Search] Exclude opted out prefs from parsing
- e2eb5ce [VerticalTabs] Removed unused TabStrip/TabSlot Controller functions
- 416c0ab Roll ios_internal from 2c566ee1bf6d to a6154a452353
- 2f50979 [RWM][RecentlyClosed] Flag guard #notifyInstanceClosed
- b79a8c6 Make ExtensionInstallPolicyService a ManagementPolicy::Provider
- f71ca04 [AF] Remove calls to .getAttribute('title') in t/d/webui/settings/
- 52e6507 [Frameworks roll] Roll to 860245172 piper revision
- fd58fdc Create new split_tabs component separate from tabs
- 1408174 Implement the zerostate page in chrome://skills
- 5c29779 Make SVG in open_window_from_svg_user_gesture.xml smaller
- dc6babc [AIM] Create controller through session handle.
- 1f7a6cb Fix metric expiry for upgrade detector
- e4a4b32 Spannify unsafe memcpy in device/gamepad/gamepad_test_helpers.cc.
- 0515109 Add a histograms.xml entry for JsOptimizations PageActionType variant
- bd2636d Migrate asynchronous methods of URL filter to the service.
- 81bc0fc Reland "[Part 2] Hook up back button to back-to-opener functionality"
- bea6e81 [GlicUnderlines] Refactor AnimatedEffectView to not rely on compositor state for IsShowing()
- 9d3410f Add UKM metrics to track CAPTCHA frame loads and interactions
- e088e82 [Gardener] Disable failing test in android-desktop-16-x64-rel-brya-tests
- 58b6ef7 IDB: SQLite store - legacy blob support [2/N]
- a721ede Android: Fix ObservableSuppliers.always*() not dispatching callback from addObserver()
- 0dcf538 Roll compiler-rt from 37593ae0bc25 to 6de43360adee (1 revision)
- e3f17f3 [Vertical Tabs] Add test for switching between modes
- d422806 [Chrome Next] Add SVG resource for "Thinking" context menu item.
- 5d12520 [IBAN] Save bubble uses Wallet logo instead of GPay logo
- 3ecadf7 Roll Skia from e0ef3ec0ae07 to 6d438894c2a8 (1 revision)
- df4ee46 [AF] Use Wallet branding in upstream card success confirmation
- 84c0279 [PWA/App Migration] Add skeleton of manifest migration command
- 09b9366 Advertise Chromium support for AVIF files to macOS
- 3b43ecc Roll Platform Experience Win from 1444ffab4787 to a264446c13ba (1 revision)
- ca527b6 [iOS] Add top-level icb/autofill and icb/passwords owners
- 5d605ca Add boilerplate code for metrics background upload task
- b14f99f Add Tab Groups button to projects panel
- 49b3f3b Add in mojom functionality to Skills Dialog.
- f2b3f19 extensions: Add ExtensionUtilUnittest to desktop Android
- b2852ef [omnibox] Focus location bar before popup hide (screen reader).
- 62e9513 [DomStorage] Implement Open() and Destroy() for SQLite
- a27e157 Add a fieldtrial testing config for AutomaticJsOptimizer
- 8c5cd39 Avoid bumping SecurityOrigin refcount when parsing policies
- 4e20a5f Add GPU Linux GCE mixin
- dbcefc7 Improve instructions for wdotool.py.
- 639b03a Move selected extension policies from future_on to supported_on
- e6bceb5 Use modern names for base::DictValue and base::ListValue
- f468e1f [Vertical Tabs] Add HoverCardAnchorTarget interface for tab classes
- 6b465d2 Update `TestExpectations` with bugs filed for crrev.com/c/7511231
- 156fe2d Use modern names for base::DictValue and base::ListValue
- 530db39 [BrowserWindow] ChromeAndroidTaskFeature track profile destruction
- 2a482c1 Use modern names for base::DictValue and base::ListValue
- 369bdb2 Use modern names for base::DictValue and base::ListValue
- e0e9f10 media: Support AHB-sharedimage video frames in NDK VEA
- 3e6978f Use modern names for base::DictValue and base::ListValue
- 9d928b6 [omnibox][composebox] Add interactive test for voice and text inputs.
- 7c31d06 [soft navs] Clarify comment for InputTiming.interaction_time
- 93825e8 Roll Perfetto from b4b9de6019b5 to 0d3922de1cab (2 revisions)
- 9d45a49 Use modern names for base::DictValue and base::ListValue
- f641004 Remove V3 key feature as this has fully launched
- d72eb82 Fix a typo in supervised_user/OWNERS
- 5e046c9 [tips] Add public transit tests for the opt in tips promo
- e211c48 Replace `std::unordered_set` with `absl::flat_hash_set`.
- 1b75178 Roll src/third_party/libvpx/source/libvpx/ 807c69846..d5f35ac8d (7 commits)
- 9f3ce84 Use modern names for base::DictValue and base::ListValue
- 7b5daba Use modern names for base::DictValue and base::ListValue
- bd1a771 [PDF] Perform navigations from the PDF Viewer more consistently, part 2
- b7b72d7 Handle opaque origins when determining the metadata source title
- c66c93e [Link Capturing] Create Open in App entry point classes
- 31f89f9 [composebox] Use the inputState show the required context menu items.
- 8c9e252 NTP: Fix error preventing custom background images from showing up.
- 7d0a4a6 [Animated PB] Fieldtrial config for 30/60fps without visual update
- 75f6d91 WebUI: Update documentation for recent changes
- 0f76e50 [ntp-next] Throttle chips retrieval to fix jitter on tab switching
- 3d6ab32 Use modern names for base::DictValue and base::ListValue
- c2a7cb3 Avoid duplicate map lookups.
- 9430875 Enable CompensateGestureDetectorTimeouts by default everywhere
- 0323874 Use modern names for base::DictValue and base::ListValue
- 448cc8b Revert "[Contextual Tasks] Add ghost loader for non-AIM navigations."
- ae971c2 Merge AbstractTextureAndroidValidating out
- bd6be2a Roll Chrome Win32 PGO Profile
- 5c0a16f Add "Reopen closed tab" menu option to tab strip context menu
- 21d8b4d Add ServiceStatus enum to java_cpp_enum
- e42bbd8 [iOS] Update the passkey creation bottom sheet UI to match the design
- d521c06 [Contextual Tasks] Add ghost loader for non-AIM navigations.
- d2e7bad Prevent Reload navigations to app specific URLs
- 0e49832 Remove histograms XML related to Net.HttpContentLengthV2.
- 964e712 Roll Chrome Mac PGO Profile
- cc1078d Revert "Reland "[Vertical tabs] Add save tab groups related icons to group header.""
- d933039 Fix a WPT test failure
- d772bfd [aim-tools-models] Propagate InputState changes to UI via mojom.
- 6ec9a91 Use modern names for base::DictValue and base::ListValue
- 26e1c30 Add documentation explaining how WebView handles insets
- 431e084 [iOS][Code Health] Improve HomeBackgroundCustomizationServiceObserving
- c05ccfe Add more to glic_api watchers
- e6dc864 Use modern names for base::DictValue and base::ListValue
- 8ab1573 WaaP: Update the description of InitialWebUI.Toolbar.RenderProcessGone
- 4d1303b Roll clank/internal/apps from 4cc90105b14a to 175c7352ec69 (1 revision)
- f3e585b [glic] Remove raw `new` under chrome/browser/actor
- b8149ec Fix crashing LHZPS when Policy blocks DefaultSearchEngine.
- 9052d11 [iOS] Add DEPS keep-sorted markers
- 164e5fe [lens] Break bridging of preselection bubble on LensOverlayController
- c136f8d Roll Chrome Mac Arm PGO Profile
- 850060e Make LocalHistoryProvider respect SearchSuggestEnabled policy.
- 3069cb8 Enable OfferPinToTaskbarInfoBar by default on ToT
- c5ad824 [SEH] Dialog Part 3: Fetch the extension search engine icon
- 12d3366 Refactor GetMaxUsage to helper function
- 6d3917d Revert "[Vertical Tabs] Simplify browser tests"
- e987e19 Reland "Reland "Create fieldtrial testing config for reading mode omnibox""
- 46a225b [rustmojo] Add support for floats in the mojom parser
- 9275f61 Roll icu_experimental_data: 0.4.0 => 0.4.1 in //third_party/rust.
- 4ba4a7f [Chrome Next] Add SVG resource for "Auto" context menu item.
- db86291 Sets persistent shell on by default and adds flag to turn off
- 162c9d4 Migrate GrShaderCache to support stateful memory pressure signal
- 9b74ac8 Clean up CookieClearOnExitMigrationNotice
- a171255 Roll xml: 1.2.0 => 1.2.1 in //third_party/rust.
- 45bf468 Roll src-internal from 1fca7a7391b7 to a548cdcca215 (1 revision)
- 69dad14 Reland "[Vertical tabs] Add save tab groups related icons to group header."
- 2c60cb1 Roll V8 from f5649e71d553 to 5b16f5c0b5ef (34 revisions)
- 6d01389 [TabBottomSheet] Add Standard Button to 3-dot menu
- 5c596bb Roll ANGLE from b31cdceff350 to c7c3d03ffb7e (1 revision)
- 32dba21 [A11y] Remove settings which cannot be changed in OOBE from copied
- 49d3268 Make VerticalTabStripController::IsCollapsed const
- 862bf34 [RWS] Fix documentation typo
- 58200f7 Deprecating LensCameraAssistedSearchEnabled policy with
- 5f7c258 [Connection-Allowlist] Inherit Connection Allowlist for local navigations
- bc3a7ef [E2E] Fix Android Omnibox Toolbar height incorrect after rotation
- 586874a Fix ODR violation in vfs_wrapper.h
- 2cf5fa3 [Immersive Reading Mode]: Classify Readability distilled images.
- 1865d6f Add metrics for new GeminiSessionDelegate functions
- 60c2acd [Vertical Tabs] Simplify browser tests
- d735f29 Register google-chrome:// URI scheme on Mac
- 129f392 Roll proc-macro2: 1.0.105 => 1.0.106 in //third_party/rust.
- 92ca7f0 Move translation_manager_util to components
- 5ca0684 [Vertical Tabs] Fix crash when dragging from inactive Vertical TabStrip
- 9e6aba3 [remoting] Add mouse-down and mouse-up injection to wdotool.py
- f56a32f Roll Depot Tools from 7504f62b577a to ada67539c365 (1 revision)
- f556e2d [Gardener] Disable Flaking WPT tests
- 65c4775 Roll vulkan-deps from ccaf8a928704 to 99634ecba27e (4 revisions)
- 1699bcf Add chrome://flags, switches and features for configuring glic environment urls
- 71df109 Add a flag to force-enable small on-device model
- 7c7862c [Persist] Disable shadow store for custom tabs
- 21e7d03 Use modern names for base::DictValue and base::ListValue
- 20761cd [viz] Remove BufferFormat utility methods no longer needed
- 2d81b50 [iOS][CX] Add metrics for passkey importer
- b311ea5 Roll Perfetto from fa094368a757 to b4b9de6019b5 (4 revisions)
- f9689d5 LeakCanary: suppress flaky leaks found only on AL devices
- b455f94 Roll clank/internal/apps from b1748bbc8129 to 4cc90105b14a (1 revision)
- dbdccdc Roll Website from 95109e8918bd to f93bba956cd9 (1 revision)
- 497b3da [omnibox-next] Add missing divider back to variant 1.
- e5b75a3 [App Shims] Include variations in app shim crash reports.
- 2552ded Import wpt@8fe62cc37df845dde2dc532e4387fa12bafd1b3d
- 40f6d3e [CADisplayLink] Replace NSDefaultRunLoopMode with NSRunLoopCommonModes in addToRunLoop
- f4d0239 Exit if first run dialog is not accepted.
- 8d528f2 [rust] Change how Rust edition is picked for Crubit-generated code.
- c18a13a Compile enterprise file analysis code on Clank
- b09ccc1 [Eche] Fix dangling pointer in EcheTrayTest
- fcd7d40 Extend script-src-hashes-v1-enabled tests
- 42b022b Use modern names for base::DictValue and base::ListValue
- 0336137 [a11y] Clear extended selection when action has no arguments.
- 1da759b Use modern names for base::DictValue and base::ListValue
- 75098e1 [a11y] Merge two accessibility flags in field trial config.
- ee3ddff [LNA] fix url address space to take into account localhost overrides
- d673b3a Use modern names for base::DictValue and base::ListValue
- 18084c7 Use modern names for base::DictValue and base::ListValue
- 981b8bb [composebox] Contextual action menu test(s)
- 3fa14ef [AIM] Use controller interface when possible in composebox bridge.
- f8bfca8 infra: Remove mac12-arm64-rel-tests from gardening
- 690247c [PWA] Refactor GeneratedIconFixCommand result types
- 9ca1f26 Rename DURABLE_STORAGE to PERSISTENT_STORAGE for consistency
- 78de2bf Roll Chrome Android Desktop x64 PGO Profile
- 6fd9d11 [iOS] Centralize Cross-Window Gemini Dismissal
- d716797 Revert "[LNA] Rename private_network_access_util.h/cc file/methods to use LNA naming"
- f754847 Reduce LocationBarMediator focus-with-text scenarios
- 499246b [Clipboardchange event] Remove from platform-specific webexposed interfaces
- 9f6b7da Roll Chrome Win64 PGO Profile
- 2c60d0e [LNA] Rename private_network_access_util.h/cc file/methods to use LNA naming
- 9f0105f [Settings Search] Fix the flicker in search ui transition
- 5fac96c [SxS] Fix title case description for split strings
- f14bb59 [rust] Make Crubit/Kythe integration configurable via `args.gn`.
- 74da62f [rust] Support using `cc_bindings_from_rs` from `//build/rust/*.gni`.
- ca1207c [PSF] Fix badge separator, Reader Mode visibility, and layout issues.
- bfc8b6e Roll WebRTC from 1031badba72d to 739d2ab9a80d (4 revisions)
- 9b8abeb [Reading mode] Darken the line focus scrim
- 3ab69ef Add embedder logic for fusebox omnibox on tablets
- 7b6b4e4 Roll BoringSSL from 528a808b54c8 to 21bee7a188f3 (1 revision)
- 6129687 Prepare passage_embeddings to be a layered component
- 4396132 Convert some file APIs in ChildProcessSecurityPolicy to ChildProcessId.
- d6e572e Roll src-internal from 02b92cca9110 to 1fca7a7391b7 (1 revision)
- 65eaf4e [Contextual tasks] Remove expired WebContents from cache
- d7ac881 [Hagrid iGA] Enable risk based authentication when Hagrid enabled
- 93f2918 WebNN: fix interop tests when fp16 is unsupported
- 3788f93 Remove expired flag wayland-per-window-scaling
- 09e73ca [ntp-next] Use the title in deep dive when the subtitle is unavailable
- 4f85f52 Use modern names for base::DictValue and base::ListValue
- 7f24cd5 Roll clap_lex: 0.7.6 => 0.7.7 in //third_party/rust.
- 669ff87 Use modern names for base::DictValue and base::ListValue
- c33f2d7 Use modern names for base::DictValue and base::ListValue
- cb44efa Revert "[iOS]HandleForgottenIdentity switch to personal profile"
- 6570af6 Remove reference to tools/metrics/histograms/histograms.xml
- 675fc4a Reland "extensions: Introduce ExtensionToolbarTest"
- 6e29605 [iOS] Refresh page attachment UI on expansion
- 069f1b3 Roll icu_locale_data: 2.1.1 => 2.1.2 in //third_party/rust.
- b09932a artemis: Utilize new ArtemisConfig feature flag
- 391f6d0 artemis: Add ArtemisConfig feature flag
- b2f69fe Use modern names for base::DictValue and base::ListValue
- c637d75 [contextual tasks] Add `getOpenerForTab` to `TabListInterface`.
- e7e3008 Roll Chrome Mac Arm PGO Profile
- 984639a Centralize manifest icon selection in a single place
- 201e658 Merge AbstractTextureAndroidPassthrough to the call-site.
- 82e5a7f Fork AbstractTextureAndroid to validating and passthrough version
- 360c322 Fix unsafe buffer usage in base/metrics/field_trial.cc
- 3d29a17 Roll Depot Tools from 0407d6b1601d to 7504f62b577a (1 revision)
- 9ba4555 avd.py - list internal emulators when present
- 9a28b12 [projects] Add panel open and close animations
- 1f9a2d6 [WebAuthn] Remove GetPasskeyByUserId from passkey model
- 42cb9c5 [PWA internal clean up] Add explicitly type for webapps::ManifestId
- 6442f9d Update DeviceMemory thresholds
- 5a026ec [Settings Search] Hide clear query button for empty query
- d4e9f80 Move most chrome/browser/page_content_annotations files to components
- 9ab5168 [glic] Set the widget web contents before Show
- 7621f6d Roll Skia from db10db8bd55f to e0ef3ec0ae07 (5 revisions)
- 8e25bad Use modern names for base::DictValue and base::ListValue
- b16dacd [headless][mac] Implement headless mode window zoom
- fa6f15a Add an option to switch to a solid GlicButton icon when pressed
- 60c0822 infra: Bump base shard count of browser_tests to 15
- edff412 Include fusebox, allow LocationBar to extend
- 3272574 Roll PDFium from 15de799bec4a to 7cc0a4a9213a (14 revisions)
- d6f6c4d [Reading Mode]: Rely on keyDownOn for key events in Toolbar Settings Menu tests
- b224fc0 [ForceSignin] Cleanup: remove residual code from InlineLoginHandlerImpl
- 0ac4d36 [builtin ai api] support background download in opt_guide.
- 46d496f [PWA] Add support for localized manifest icons
- cd9da43 Remove deprecated ntp-most-relevant-tab-resumption-module flag metadata
- 825578e Roll src/chrome/elevation_service/internal/ 25e8ec5b4..680471964 (1 commit)
- 7e836b3 Cleanup now redundant UNSAFE_TODO() pdf
- b64db8c Add description of Max-Compile-Failures git footer
- b8d50f7 [WebAuthn] Make ambient prototype activation more explicit
- 415fd6c media: Fix null MemoryTypeTracker in VulkanOverlayAdaptorTest
- 04d55d6 Add AppState query methods to //c/b/updater
- f063a42 [glic] Don't defer navigations that are statically blocked
- 73ea68b Record base::File::Error for DataTypeStoreBackend IOErrors
- 6d37b3b [iOS] Add DEPS keep-sorted markers
- 204e906 [Reading mode] Don't trigger line focus with modifier keys
- 78361b7 [History] Add filtering UI
- 2356e91 Android: Convert ObservableSupplierImpl usages in misc places (2/3)
- 5ed7166 Roll ANGLE from 773c20d92e76 to b31cdceff350 (1 revision)
- 3e0b6d8 Set NoSelectionMenuCaching to disabled by default
- 37896ac [iOS] Add DEPS keep-sorted markers
- ef0e740 [iOS] Do not apply Reading Mode translate settings on navigations.
- 7ce5eb9 [tracing] Fix "seek penalty" in trace metadata.
- dc733d7 Roll WebRTC from 71529baeb3a8 to 1031badba72d (1 revision)
- 6ecec9f Increase shards for browser_tests on win-asan
- e559789 Enable kTabstripComboButton inside GlicE2ESmokeTests
- 7760d81 Remove enable_glic_android
- 1f4494a [fedcm] Ignore interception header when on the initial empty document
- 043f072 [performance_scenarios] Fix key press on AL
- f61f6e7 [Settings Search] Remove the index todo for PageInfoAd...Settings
- 1368f2e Fix loading screen showing forever on non http/https pages
- 02df198 Fix passing navigation id from CSD host to SB blocking page
- 0b8a485 [NTP] Clean up desktop-to-mobile NTP promo
- 5cb3fd7 [Signin][Android] Center email in compact layout when no full name available
- 1aac814 [Signin][Android] Remove UnoPhase2FollowUp flag from feed
- 17948cb Annotate tool_tip_base_view.mm's use of unsafe buffer operations
- 6638a7a Contain: v-t --> view-transtion-scope: auto
- d93a8c9 [Theme] Clean up custom background data after reset.
- 2f4227e [Iwa Scope Extensions] Enable manifest parsing of scope extensions
- a2f4859 Reland "Keep renderer alive when last WebView is destroyed"
- 01b53ea Roll clank/internal/apps from 0c30657ac728 to b1748bbc8129 (1 revision)
- cd475d3 Add a flag for WebUI location bar.
- ce27e7b Remove accessibility metrics that were never in histograms.xml.
- 81cee31 [Vertical Tabs] Fixing styling of bottom container buttons
- 5308d14 Small optimization in CalculateTransitionUpdateForPropertyHandle().
- 9c68434 Roll Crossbench from b2e8625cd127 to 5f5051b82f5c (1 revision)
- 0f310f8 Roll Perfetto from a387ec751788 to fa094368a757 (3 revisions)
- e9b6658 [TabBottomSheet] Define Glic Button and Add to 3-dot menu Icon row
- e85a3ef [Gardener] Disable CustomTabActivityTest flaky test
- 16f6dd3 Add a on_ready callback to TranslateKitComponentInstallerPolicy
- 8427378 Roll Chrome Mac Arm PGO Profile
- 23f861c Disable flaky tests in WebRequest.SecurityInfo extension API
- bb84564 Default enable loyalty cards flags for iOS.
- 85a75c3 [XR] Hide Bookmark Bar when entering FSM
- b93fe32 [Persist] Increase the priority of db task runner
- adf1751 Remove hub-slide-animation flag.
- c2a3da3 [gardening] Some WebEmbeddedWorkerImplTests are failing linux/chromeos
- 0ce1c81 [installer] Add support for building deb for riscv64
- 3ae7942 [ForceSignin] Cleanup: Remove HasFromProfilePicker
- a2f4ab0 [ForceSignin] Cleanup: Remove FromProfilePicker from InlineLoginHandlerImpl
- c107de3 [ForceSignin] Cleanup: Remove fromProfilePicker from SigninErrorUi
- d903fed Clean up kAutofillAiIdentityAndTravelPrefs
- 452562e [ForceSignin] Cleanup: Remove FromProfilePicker form DisplayLoginResult
- ca2eb1f Update bookmark limit help URLs to use P-links and remove JNI bridge
- f8ef3c3 Clean up TwoClientExtensionsSyncTest initial-merge tests
- c77f876 AudioContext async state transitions
- 5f2f7ae [iOS] Switch guided tour bubble arrow direction if multiple tabs are open
- 4f72e17 Roll Chromite from 762de39e6778 to c455c2b0b22e (1 revision)
- 43957e4 Roll Chrome Win32 PGO Profile
- c2d8831 Add GlicMediaLinkHelper to android build
- 72302c7 [TDR] Remove TODOs linked to issue 40734659
- af908b6 Remove OWNERs from components/wallet.
- dc9c70d Roll vulkan-deps from e4db0cf3f1dc to ccaf8a928704 (3 revisions)
- 788c63d Roll Dawn from 3b3f70cfdbd9 to b841244ed527 (4 revisions)
- 0ec73af [owners] Remove edcourtney@chromium.org from ash/wm/pip/OWNERS
- f89a163 [owners] Remove edcourtney@chromium.org from ash/wm/collision_detection/OWNERS
- 4f3a306 Add a test case to ActiveInstanceSharingManager covering enablement.
- a5b86da Prolong PasswordGeneration.EditsInGeneratedPassword histograms.
- c357b55 [Uno-d clean-up] Deprecate kExplicitBrowserSignin
- a4b4bb5 Roll DevTools Frontend from 0e56341ef747 to b4a178eeab2a (1 revision)
- 9f1a487 borealis_motd: handle dismiss via mojo page handler
- 8af3624 Allow //components/browser_ui/settings/OWNERS to approve changes for site_settings
- 1afc63f [//media] Rename MockGpuMemoryBufferVideoFramePool
- 7e69fb0 Refactor sync code to use std::make_unique
- 67e4cd2 Roll src-internal from 3ecc9404f176 to 02b92cca9110 (1 revision)
- cfe3c34 [Autofill] Add AutocompleteUnrecognizedBehavior helper enum
- 5406600 [FontDataService] Add histograms for WebSandboxSupportLinux methods
- 0150461 [Android] Refactor icon handling to use resource IDs
- 056bf75 [iOS]HandleForgottenIdentity switch to personal profile
- 5936354 Support cpp_features.proto in protobuf files.
- 4c7c462 Clean up kAutofillAiPreferModelResponseOverHeuristics
- 4d268be Remove FormInteractionsFlowId
- fe53a01 [permissions] Use PermissionPromptDecision in ComputePermissionDecisionResult
- 5f69632 [Gardener] Disable flaky test on android-desktop-16-x64-rel-brya-tests bot
- 85c4ae4 Add feature flag kWebUISplitTabsButton.
- ee72e9b Rename kDownloadModelForPasswordChange feature
- 6ab60ec Roll Perfetto from ed1d8d4f7682 to a387ec751788 (4 revisions)
- 60fbca2 Disable ManualFillingIntegrationTest flaky test
- 53d349a Use SetIgnoreZoomGestures in WebUILoginView
- 9ec6ad6 Add --sort-by-value flag to pinpoint_ci.
- 7ddfb22 [CodeHealth] Add LINT checks for PermissionPromptDispositionReason
- 0d92a6c [iOS]Stop all FRE Agent children
- 8027dab [Skills] Implement SkillsUiTabController for tab-scoped dialogs.
- 1ae9a24 Preserve tab group collapsed state on window restore
- d3abaf7 Move AbstractTextureAndroid creation to representations
- 8ceb321 Roll Chrome Mac PGO Profile
- 38f789d Inline GenAbstractTexture
- 028a135 Remove unused code from AbstractTextureAndroid
- 4f1864d Roll Media App from rEYUpEzYbpwoW8CW8... to 8mQn1DFUIEtjkEcE4...
- d3a7628 Roll Chrome Win64 PGO Profile
- 4aa1777 [Contextual Tasks] Style favicon group according to spec
- 84321a9 [ios] Use NS_SWIFT_UI_ACTOR instead of __attribute__
- 1e371a0 [iOS] Add DEPS keep-sorted markers
- 9d3e240 Roll Help App from 4zW29cty7QjnUx2_b... to Qurys1HdLLdJ2wqGk...
- b7b117c Android: Fix additional_jar_files variable
- 358cd0f Reland "[Vertical Tabs] Improve minimum size calculation for grab handle"
- b9c202f [Startup] Use ApplicationStartInfo to record which Component triggered
- a966b4c [Contextual Tasks] Anchor action menus beneath toolbar
- 84f6e5a Roll Chromium Variations from kaqu-U5bVMlfH6Nz-... to TTpQBD9PN8i8DIQH-...
- 7af1abf [Android] Remove legacy comment about brackets formatting
- cd543a1 Roll DevTools Frontend from 5756f3b0c09e to 0e56341ef747 (3 revisions)
- d889605 Change paint_op_raster_fuzzer to use Mock context
- 49dccb2 [viz] Clean up stale MailboxHolder ref in comment
- 0e63868 [Signin][Al] Add support for the infobar on the webauthflow popup
- a798e9b Roll Chrome Mac Arm PGO Profile
- a4eeb16 gpu: CompoundImageBacking Propagate OnContextLost
- 1b70a1c Add locale check for Identity HaTS surveys
- 99f1bdb [Legion/Phosphor] Update the parameters expected by Phosphor API.
- ae9fc2b [ios] Polish composebox height calculation for input plate size changes
- 3615746 [TabBottomSheet] Unparent component views for reuse
- fffd35b enterprise: Enforce Data Controls for Drag-and-Drop on Mac
- 2304928 [iOS][Composebox] Fix composebox feature flag
- e3c2e23 Roll llvm-libc from 56152c794376 to 4a6eff36ed23 (5 revisions)
- 33d377f [iOS] Extend / revive content-notification-provisional-ignore-conditions
- 12b40d5 Roll WebRTC from a45f76b084e6 to 71529baeb3a8 (1 revision)
- bd3e3ed Implement first half of GlobalBrowserCollection on Android.
- 1c6e734 [gardening] RefreshAllTabMemory test is flaky on win-asan
- c8f99bb [SyncTests] Modernize SingleClientPolicySyncTest
- c1fa8fa [AutofillAi - M4] Remove obsolete TODO.
- 8b4022c [SyncTest] Override GetSetupSyncMode() for SingleClientFeatureToTransp.*
- d6d3aae [iOS]Move fatal release version
- 487a0b0 [crd host][linux] Build DesktopProcessMain
- b53c9aa Roll Perfetto from ae0fe000b82e to ed1d8d4f7682 (1 revision)
- 50c199d Roll vulkan-deps from cf6f449e02cd to e4db0cf3f1dc (1 revision)
- c261d0f [SyncTest] Override GetSetupSyncMode() for SingleClientGetUnsyncedType.*
- 606d183 [permissions] Switch to using NOTIFICATIONS in unittest
- 625a098 [macOS] Do not error when capturing application without audio.
- 8507bf7 Remove V8.DebugPauseToPausedEventMilliSeconds historgram
- d3ccc32 WebXR Layers: Avoid openxr failure due to too many layers
- 44597cd [iOS] Add group color tones to TabGroupView surfaces.
- 8ca07b4 Roll ios_internal from 341b6b3a42f6 to 2c566ee1bf6d
- 7819708 Roll DevTools Frontend from 5ca7637a7b32 to 5756f3b0c09e (1 revision)
- e16a81f [CustomizationV2] Update theme collection bottom sheet title
- 35e9b26 [CT] Automatic update from google3
- 243823e [Theme] Fix crash of displaystyle.UiConfig.removeObserver().
- 3e6b0f5 [iOS] Update BrowserCoordinator stop sequence
- 7b654be spanification: automatically spanify ...hrome_command_line_pref_store_proxy_unittest.cc etc.
- f7a0049 [iOS] Remove Floaty Animation When Entering Tab Grid
- 95120ad [KP] Automatic update from google3
- 3cddf0d gfx::HDRMetadata: Remove skhdr::Agtm use
- 94b749a Roll clank/internal/apps from 8373f77f77a7 to 0c30657ac728 (1 revision)
- 42d9d67 Roll Chrome Android Desktop x64 PGO Profile
- ac43ce5 InputHandlerProxy: Align fling scroll events with VSync
- 9f4c325 Add location_tracking_enabled flag to DisabledState
- 007cd81 Remove the CSS 'mask' property from the high-priority list
- 300fb44 Roll ios_internal from 293d29e92300 to 341b6b3a42f6
- 45df7f6 [ios] Extend Autofill.iOS.FormRemoval.RemovedUnownedFields expiry
- fc69568 Roll Chrome Mac Arm PGO Profile
- 6d29bc5 [SetupList] Update fillColor to transparent
- 2206b29 [iOS] Add DEPS keep-sorted markers
- cb77127 [iOS] Add DEPS keep-sorted markers
- d0b832f Roll clank/internal/apps from 26d90b3268e5 to 8373f77f77a7 (1 revision)
- 2cfe299 [iOS] Allow users to unselect Theme in Reading Mode UI options.
- 01b7bc4 [gardening] VerifyTabSelection test is flaky on mac-64 and linux-win-cross-rel
- f9ef9f4 Roll WebRTC from 434358c1f23f to a45f76b084e6 (1 revision)
- 9eb4711 Let AutofillAi entities be maskable
- 40fe819 [AWC] window.setResizable promise implemented
- 38569a6 [DBSC] Remove TODO from unexportable keys internals mojo
- e2e6fa6 Roll Crossbench from da6c5e20ad10 to b2e8625cd127 (1 revision)
- e01afc7 [ios] Move PasswordCheckupCoordinator to SceneCoordinator
- 95419d1 Roll src-internal from a133a54a5b6e to 3ecc9404f176 (1 revision)
- 795ba53 Roll DevTools Frontend from 27aec292afa0 to 5ca7637a7b32 (1 revision)
- 93ba119 Roll Chrome Win32 PGO Profile
- e351e1b Roll ANGLE from 15e44603379b to 773c20d92e76 (1 revision)
- 0bd5dd7 Roll R8 from 5UvXlaJ_QJr1To4A-... to y-gKj5TCCHcid39xi...
- 6686a4a Check COI status of Agent instead of renderer process
- 239a8e5 Multi-account device metrics: Prepare for recording history opt-in
- 058f840 [//media] Rename GpuMemoryBufferVideoFramePool
- f35966e Roll optimization-guide from 7e2cd78f410f to e47a67826d39
- 0ecb13f Roll src/google_apis/internal/ 02538e204..bedc4db38 (2 commits)
- 3b45953 [base] Only enter the "SetAffinity()" experiment on eligible devices
- 3bdfeaf Implement WebSerial API in Chrome for Android.
- a1d3b57 [Autofill AI - M4] Introduce method to read entity types for magement
- fb45369 Roll src-internal from b97a821a2784 to a133a54a5b6e (1 revision)
- 1374bbb [iOS] Fix toolbar stop sequence
- 92878f3 Roll vulkan-deps from 8789a9ccd2ff to cf6f449e02cd (1 revision)
- 01ad515 Roll DevTools Frontend from 1289b42b7b07 to 27aec292afa0 (1 revision)
- 2effd21 Add tracing to Digital Credentials API create() flow
- fbc583d Do not resolve CSS random() function in resolveValues protocol
- 78dc408 Reland "Roll abseil_revision 647ed70eff..6d8e1a5cf0"
- ff68a71 Roll Skia from 8e516fe6828f to db10db8bd55f (1 revision)
- 2ba5cc9 Auto value of text-emphasis-position in Chinese
- 67b3ab8 Roll Chrome Mac Arm PGO Profile
- da5703f IDB: Fix metadata update during in-session sweeping
- 51b7656 Remove "borderless_url_patterns" from WebApp
- 106e358 Reland "Convert to UNSAFE_TODO in base 6/9-base/profiler"
- d056020 Roll Projector App from 12hLSdn-lPbCMoZoz... to 9yG0xhrcPhUGR4_zX...
- c449c31 [PWA] Fix metadata for notifications by pointing to pwa-dev@
- 711c884 Move PrepareLoadingStateSuggestions into autofill
- c6e490c media: Provide detailed UserAgent string for provisioning
- 6ac0126 [iOS] Remove fragment reference from Reading Mode web state LoadData.
- 70e77e1 Move Autofill AI form filling acceptance to separate method
- 0c72322 WebGPU: Enable transient attachments by default
- 375b4cb Delete PasswordManager.FieldNameCollisionInVotes histogram and prolong another one.
- a6dd386 [webmcp] Expect :tool-form-active on <form> elements
- 732ec09 Roll Chrome Win64 PGO Profile
- 935181f Add code comment for reentrancy of DispatchBeforeUnloadEvent
- b6ee34c [iOS] Add DEPS keep-sorted markers
- d8d0b4e Roll Boca Receiver App from oO1ernnVg-MTs1s1X... to BMSX4W268Em4kLAG3...
- 7c0d0ae [Passwords] Update visibility icon in passwords manager
- d0cb264 Roll Boca App from lBurtOuwyOtjWa_Na... to SdMmYZhtmOCDKcx--...
- 33d824e Roll clank/internal/apps from 20618f0fc4cb to 26d90b3268e5 (1 revision)
- d384989 WTF: Add `size_type` and `npos` to Blink string classes
- 03d0984 Resolve UNSAFE_TODOs in font_cache_skia_win.cc
- 95223bf [iOS] Add DEPS keep-sorted markers
- 75769f1 Roll WebRTC from f9f6afa51f7a to 434358c1f23f (1 revision)
- c4a9adb Roll ANGLE from f1f9ae9d07a4 to 15e44603379b (1 revision)
- 98f83a2 [iOS] Add DEPS keep-sorted markers
- 2b176d7 Simplify unit tests for CacheEncryptionDelegate init
- e5990c5 Roll Dawn from 576e06664ac8 to 3b3f70cfdbd9 (8 revisions)
- 8a36bd3 LPP: SetLocalPasswordInput error message update
- e16e199 [Autofill AI - Reauth] Do not change toggle value if user is ineligible
- c05b6e4 Roll DevTools Frontend from 4208825df40e to 1289b42b7b07 (1 revision)
- b30964e Automatically remove redundant UNSAFE_TODO()
- aa19466 [iOS] Clip tab strip during close animation
- bf55fef Roll Chrome Mac PGO Profile
- a994caa [iOS] Remove todos
- 7464c18 Add detailed traces for omnibox functions when opening selection
- 8559c03 Automated Commit: LKGM 16563.0.0-1074765 for chromeos.
- f10e253 Roll Chrome Mac Arm PGO Profile
- c76265d [DBSC] Extend DBSC-S + OAML browser tests
- 754ff9a Set the loupe+sparkle on verbatim suggestion when in AIM
- 411993b HttpStreamPool: Unify QUIC attempt completion logic
- 29b2b73 Replace `std::unordered_set` with `absl::flat_hash_set`.
- 7e4cf87 fix EcheIconLoadingIndicatorViewTest dangling pointer
- 10c3a09 fix PrivacyHubCameraTestBase dangling pointer
- 29cada7 fix PipPositionerDisplayTest dangling pointer
- c464bf1 fix WallpaperControllerTestBase dangling pointer
- 21bd14b fix UnifiedAudioDetailedViewControllerTest dangling pointer
- 8aaf1fe fix KeyAccessibilityEnablerTest dangling pointer
- 05a42da Switch CWS Banner flag to enabled
- dbc9a96 Roll Skia from e3917bfde61e to 8e516fe6828f (2 revisions)
- 1101220 Roll Chrome Linux PGO Profile
- 0a6a84b Roll Chrome Win32 PGO Profile
- f7b97a3 [enterprise] Fix invariant in WaitUntilCloudPolicyEnrollmentFinished
- 3a861c3 [Blink] Move CRPSI::OverwriteImage() to CRPSINon2D
- b8e8841 [Viz] Make TestContextProvider constructor protected
- 3a76917 Fix unsafe buffer usage in literal_buffer.h
- ddb7ee2 [Viz] Make TestContextProvider constructor private
- 6368111 Migrate "GetFilteringBehavior" to url filtering service.
- 6f04f0a [Blink] Clarify comments on CreateWebGPUImageProvider()
- 619c2cf [Blink] Inline GpuCanvasContext::PaintRenderingResultsToCanvas()
- 15ea9c8 [Blink] Move WebGPU-specific CRPSI methods to CRPSINon2D
- 394b8d8 Pass base::optional_ref<const std::u16string> as form name filter
- 1857ae3 [Viz] Remove unneeded arg from TestContextProvider constructor
- e8ce541 Add kDevToolsGeminiRebranding feature.
- 71e7cd1 [DSE] Remove code reverting the previous DSE permissions
- f96b6c7 Roll Manifest Merger from KwSGMP0ESTSb86A6P... to LS9EZjWzw2n7RuYXA...
- 1ed77fd Roll vulkan-deps from 3e3f3bfba979 to 8789a9ccd2ff (5 revisions)
- c0a470f Set Update Mechanism in README files of third party deps
- b910438 Roll Chrome Android Desktop x64 PGO Profile
- 61ca5d0 Roll Android Lint from kKXCEgWultH2wInyO... to 4MPZFuPDaatdMYFqJ...
- fdafdac [line-clamp] Properly balance a paragraph that clamps at the last line
- daa40f9 Roll Kotlin Stdlib from qsUJaApT56zmlGGJ6... to dLxRYpVuz7LlaDDIp...
- 0f74508 Roll Chrome Mac Arm PGO Profile
- 9ca4c5b Roll Error Prone from I1le-VKG1eHuZsz0L... to jum1S30anLAjV7GCe...
- 042ed80 Roll DevTools Frontend from b06926ae36ed to 4208825df40e (1 revision)
- f8bfe09 Roll Skia from 8eb03bb84902 to e3917bfde61e (1 revision)
- f2a28fb Roll clank/internal/apps from 75e4e55ac744 to 20618f0fc4cb (1 revision)
- 9f3f506 FitText: text-box should work correctly
- 395c697 [blink][xr] Add SharedImageHolder struct
- 4c32799 Roll ANGLE from 66ecfe2e967e to f1f9ae9d07a4 (1 revision)
- 89de898 DevTools: support focus param in Target.createTarget
- 51297e9 AsyncBeforeUnload: Ensure user activation in DidStartNavigationClosesDialog
- 5e53f2e Gardener: disable flaky WPT on mac
- 9578d76 Roll DevTools Frontend from 1af42106db5e to b06926ae36ed (1 revision)
- 5d53b79 Roll clank/internal/apps from 848f6821bdd2 to 75e4e55ac744 (1 revision)
- f97c3b1 [blink][xr] Always return AcceleratedStaticBitmapImage
- 6e1db04 Roll Skia from 3e86f377d300 to 8eb03bb84902 (1 revision)
- 7ee3148 Make sequence checks in PipelineImpl compile-time
- 8efc7b2 actor: Refactor browser-side setup for script tools/webmcp
- 2c8bd66 [blink] Pass ClientSharedImage to ImageToBufferCopier::CopyImage()
- ed18b86 [SetupList] Introduce Sign in and Password related promos
- 9a88c8d Automated Commit: LKGM 16563.0.0-1074759 for chromeos.
- 5cf2e54 Roll Chrome Mac Arm PGO Profile
- be677d6 [Contextual Tasks] Protect frame listener from multiple frames
- f58b141 Extension: Handle file not exist when loading unpacked
- 3850f0e Roll Chrome Win64 PGO Profile
- 9fba2b1 [DevTools] Add unit tests for `SetHostConfig` in DevTools UI bindings
- 446bf8f [composebox] Switch NOTREACHED to mojo::ReportBadMessage.
- 6c16d0d Revert "[EditContext] Convert local frame bounds to root frame coordinate space"
- b822ea3 siso: Set remote_command: "python3" explicitly on mojo/blink rules
- ac783aa [cleanup] Unify LayoutObject::DirtyLinesFromChangedChild calls.
- efd9974 Updating trunk VERSION from 7651.0 to 7652.0
- 087ca7c Roll Chrome Win32 PGO Profile
- 37b0d9b [owners] Remove momohatt@chromium.org from chromeos/ash/experiences/arc/disk_space/OWNERS
- 1d3b800 [owners] Remove momohatt@chromium.org from chromeos/ash/experiences/arc/obb_mounter/OWNERS
- 96f9f44 [owners] Remove momohatt@chromium.org from chrome/browser/ash/arc/fileapi/OWNERS
- 1515897 [owners] Remove momohatt@chromium.org from chrome/browser/ash/arc/file_system_watcher/OWNERS
- df5d39b [owners] Remove momohatt@chromium.org from chromeos/ash/experiences/arc/volume_mounter/OWNERS
- fb00942 [owners] Remove momohatt@chromium.org from chromeos/ash/experiences/arc/appfuse/OWNERS
- 36d1f3d Enable README.chromium validator
- b9f4202 [WebAppInstallFinalizer] Create web_app_install_job for refactor
- 2cd9bde Add Freeze/Resume methods to SharedWorker interface.
- 7d892fb Support Untracking oclcusion
- c4821d2 Roll vulkan-deps from 7efd58a653bd to 3e3f3bfba979 (4 revisions)
- 1191bc1 Roll Dawn from 6aa8aae9c256 to 576e06664ac8 (15 revisions)
- 29228d2 Roll ANGLE from de8a3d352241 to 66ecfe2e967e (1 revision)
- 497f990 Roll Chrome Mac PGO Profile
- d8151ae Remove two shutdown histograms that were never in xml.
- 8872dbe Add fieldtrial testing configs for IncreaseAmplicationFactor and IncreaseCongestionWindow
- 379775a Roll clank/internal/apps from b78dcb4f2f48 to 848f6821bdd2 (1 revision)
- 73e0918 Fix crash in OffscreenCanvas when using sibling-index() in font calc
- 8b5a043 [contextual_tasks] Clear task ID on navigation
- 459acf4 Fix the bookmark search bar incorrect margin
- ff90533 Annotate locks in PipelineImpl::RendererWrapper
- 2d056fe Roll Chrome Win ARM64 PGO Profile
- e1bc735 Roll Depot Tools from 0666e81f1973 to 0407d6b1601d (1 revision)
- 6bb08b1 Roll Chrome Mac Arm PGO Profile
- 205c242 [CodeHealth] Spanify FromInterleaved in WavAudioHandler
- d688f5b [E2E] Fix Location bar with incorrect translationY on Omnibox page
- d052447 ash: Move clipboard history types from crosapi to chromeos/ui
- 6c1337a [CodeHealth] Spanify FromInterleaved in speech tests
- 87f5e56 Reland "WebNN: refactor D3D SharedImage checks into IsSupported"
- b6dc41f [contextual_tasks] Populate context library from service
- b371940 [contextual_tasks] Added unit tests for ContextualTasksPageHandler
- 8cb44db Roll Updater chromium_mac_arm64 from 2@1567006 to 2@1568035
- b59edec Mark Frame <=> Time conversions constexpr
- f10c65f [WaaP] Add metric slicing for new window creation latency
- e3bc694 Roll Skia from d5fd61566238 to 3e86f377d300 (1 revision)
- 9ec25da Roll Enterprise Companion chromium_win_x86_64 from BobMBg1mdDT-4U1Bq... to zMQY7WpAaZnEXlOZt...
- 33f477d Roll WebRTC from 627f88497774 to f9f6afa51f7a (2 revisions)
- 3eac414 Make Incognito Indicator menu size wrap text
- 0d02859 extensions: Port move-related TabGroupsApiBrowserTest to desktop Android
- 192160e extensions: Port chrome.tabGroups.move() to desktop Android, part 4
- 058fc79 [AF] Replace GPay will Wallet icon for card upstream bubble
- 54d9004 Roll src-internal from a85a9d5cc923 to b97a821a2784 (1 revision)
- 7a47c66 [layout] Make ConstraintSpace::RareData::SubgridData a GC'd object.
- 35f214d Roll RE2 from e7aec5985072 to 972a15cedd00 (2 revisions)
- 81ad188 actions revamp: Refresh action properties on WebContents change
- 435c483 Gardener: disable flaky OmniboxWebUiInteractiveTest on mac
- 379d685 actions revamp: Introduce pinning / unpinning actions
- a884997 actions revamp: Replace EActionsBridge with EToolbarBridge
- 68eba46 [owners] Remove mgeorgaklis@google.com from tools/perf/page_sets/companion/OWNERS
- 33c7926 Roll DevTools Frontend from ea2c92b098d6 to 1af42106db5e (1 revision)
- eeb683f Reland "Reland "Revert "Enable the tab search toolbar button on top of tree"""
- f626249 Add web UI owners to views/toolbar/webui_*
- 357df1a Android: Convert ObservableSupplierImpl usages in misc places (1/3)
- cac5b1b WebUI: Turn on the first few CSS lint checks.
- 9c9ac29 ash: Remove obsolete chromeos/crosapi/mojom/remoting.mojom
- 16b0c9c ash: Remove unused chromeos/crosapi/mojom/passkeys.mojom
- b223b40 Revert "Check for breakages during GN2BP import"
- 9173b7c ash: Make KeystoreServiceAsh a regular profile-keyed service
- cb98d7a [A11y] Push back histogram expiry to match other A11y settings histograms
- 13f5d22 Roll Chromium Variations from _SBFUql7ovpsqpbuv... to kaqu-U5bVMlfH6Nz-...
- a601797 Declarative WebMCP: Add blink -> chrome API for cross-document case
- 6fea681 Update README for protobuf-javascript
- 80b8e15 Fix log statement in preloaded_state_generator.cc
- a67f31e extensions: Fix tabStrip.onCreated for incognito on desktop Android
- 0af4cdd Roll Chrome Android Desktop x64 PGO Profile
- 1f16165 ios: Disable BEDeferredContextMenu for Libfuzzer Upload iOS Catalyst Debug
- 93b9e00 Roll clank/internal/apps from 50c63e72af72 to b78dcb4f2f48 (1 revision)
- ea548b0 [Extensions] Move AnyActionHasCurrentSiteAccess() to private method
- 40a357a Roll src-internal from c9ccfdd75ad4 to a85a9d5cc923 (1 revision)
- ef44ac7 Roll Updater chromium_win_x86_64 from 2@1567022 to 2@1568019
- 0458661 Roll Crossbench from 41327cc2441a to da6c5e20ad10 (1 revision)
- 540ef17 Roll Updater chromium_win_x86 from 2@1567016 to 2@1568019
- 0bb64e1 geolocation: Remove DanglingUntriaged from LocationProviderManager
- 7c4a770 [AF] Update Google Wallet branding for CVC-only save
- c94a6f8 Roll Updater chromium_win_arm64 from 2@1567029 to 2@1568018
- 31a8b65 Remove obsolete CreateDecoderFailure.XheAac histogram
- 35963a1 Replace `std::unordered_map` with `absl::flat_hash_map`.
- 5522738 Split WebXRPlaneDetection into its own feature
- 9015ad0 Roll vulkan-deps from 47dc817cd55f to 7efd58a653bd (4 revisions)
- d34682a [gpu] Move gpu legacy IPC traits to mojom
- c96a07b Roll Chrome Mac Arm PGO Profile
- 88b0ab7 [Vertical Tab] Create highlight path generator for vertical tabs.
- 056d5ee Moves logic of autotest.py into a new autotest/ directory.
- 151bba4 [Chrome Next] Add SVG resource for "Canvas" context menu item.
- a834c1e Roll Enterprise Companion chromium_win_x86 from v_1dbGHgLXYcgvkxz... to xySe-3ILaobID5m0L...
- e270cc0 [AF] Remove shouldShowNewFopDisplay_() boolean wrapper
- 67dea46 Roll DevTools Frontend from 73b1aae237be to ea2c92b098d6 (1 revision)
- d37dc29 actions revamp: Let ETB observe ETVM for updates to icons
- cb6bee9 Remove expectations for missing tests in external/wpt/geolocation-API
- 993a731 Roll clank/internal/apps from ffb0cadcbafb to 50c63e72af72 (1 revision)
- 3698cb9 url: Fix an UNSAFE_TODO in url_test_utils.h
- 38b927c [Cache Encryption] Clarify enterprise behavior for exposed custom cache backend flag
- 6bc0177 Add todo for b:477997050
- b044555 Re-format content/browser/preloading
- 047af57 [BNPL] Resize issuer icons on the ToS bottom sheet for Wallet branding
- 73d829c Remove persistent shell from builders
- 80266a7 [Contextual Tasks] Use multi tab context menu
- 2ff0874 Roll thiserror: 2.0.17 => 2.0.18 in //third_party/rust.
- afafb41 WebUI: Leverage the new WebUIDataSourceImpl#SetDefaultResource().
- dddb350 [JXL] Remove redundant InitializeNewFrame calls
- 23b9f19 [ntp-threads] Update URL param to open threads rail after page load
- 0ad2265 [AF] Add Google Wallet icon resource to grdp
- 08d6f6a Reland "ios: Use BEContextMenuConfiguration for context menu"
- 269f5eb Avoid duplicate map lookups.
- 83bc33a Roll zmij: 1.0.13 => 1.0.16 in //third_party/rust.
- 145e9c6 [Gardener] Restrict test to non-Desktop devices
- 1c2bb2d [omnibox][realbox][composebox] Fix several HCM styling issues.
- 659b291 Set up frontend for Skills Dialog.
- 67578c9 [Settings Search] Fix the sluggish scroll in search result
- 0428f6b Fix extension button misalignment
- da29708 Revert "[Signin][Android] Add SignInPromo#shouldCreatePromo logic to Seamless sign-in"
- 859586e Boca: Send max students error to UI
- 509cede Roll BoringSSL from 0d82223ab4fc to 528a808b54c8 (1 revision)
- 89057d9 Roll infra starlark_libs to pick up release gardening fix
- 793cd17 Roll rustc-demangle: 0.1.26 => 0.1.27 in //third_party/rust.
- 6eb2790 Add todo for b:478008740
- 3f43802 Roll ANGLE from 78db4602aecf to de8a3d352241 (3 revisions)
- b789b97 [fedcm] Set the user activation bit when the navigation handle is valid
- e3a8d7b Roll Perfetto from 8ccb48d6f91b to ae0fe000b82e (1 revision)
- 200b225 [Extensions] Fix dangling pointers in disconnected GinPort
- 3215af2 Add additional MediaRecorder logging
- d6b43e2 Update DeprecateUnload field trial test config.
- 7b73bd0 [tips] Update the feature promo integration tests for all features
- cb209c0 [AIM] Add model picker params a new flags entry for it.
- 83b123d Roll Chrome Android ARM64 Orderfile from DSDP985MI0pQqpmcc... to GcgKVAhMWR_EFTrls...
- 0322fa2 Revert "activity_reporter: Add flag to control legacy active definition."
- dd4a3fe Revert "activity_reporter: Report channel and user/system."