Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2025-12-19 on branch 'main'

Chromium Digest: 2025-12-19

Overview

This digest covers 535 commits from the main branch on December 19th, 2025, with 382 deemed relevant to developers. The changes span from significant API breakages in accessibility and media codecs to new feature enablement and ongoing code modernization. The first relevant commit was (32fc2ca) and the last was (adef7a7).

Breaking Changes

  • ⚠️ BREAKING Virtual methods on the public ui::accessibility::BrowserAccessibilityManager class have been renamed (e.g., OnBlinkEvent is now OnSourceEvent). Embedders who subclass this manager must update their overrides. (65e8554)
  • ⚠️ BREAKING The WebCodecs AudioEncoder API now has a fixed limit on the number of concurrent encodes. This behavioral change to a stable API may break applications that queue a large number of encoding tasks. (4448cc9)
  • ⚠️ BREAKING A 256MB size limit is now imposed for reading text, HTML, and PNG data from the system clipboard on Windows. This new restriction on a stable platform feature may cause failures for applications handling large clipboard data. (600a5b3)
  • ⚠️ BREAKING The public method GetPictureInPictureWindowBounds in content::PictureInPictureWindowController has been renamed to GetPictureInPictureWindowBoundsInScreen. Embedders using this API must update their calls. (03aeeb0)
  • ⚠️ BREAKING In the GoogleServiceAuthError::State public enum, USER_NOT_SIGNED_UP has been renamed to ACCOUNT_NOT_FOUND. Code that checks for this specific authentication error state will break. (86fce5b)
  • ⚠️ BREAKING Support for the CloudPrintProxyEnabled enterprise policy has been removed. Enterprise configurations that still use this deprecated policy will be affected. (8dd15b8)
  • ⚠️ BREAKING Build configurations for libvpx and libaom on ARMv7 platforms without NEON support have been removed. Builds targeting this older hardware will fail as NEON is now a requirement. (9178bee) (5d71603)
  • ⚠️ BREAKING The components/js_injection mojom API has been refactored, renaming DocumentStartJavaScript to PersistentJavaScript. C++ consumers of this interface, such as Android WebView embedders, will need to update their code. (eba9b8d)
  • ⚠️ BREAKING Forward declarations for the removed GpuMemoryBufferManager have been deleted from several public headers, including services/viz/public/cpp/gpu/context_provider_command_buffer.h. This will cause build failures for any code still referring to this type. (b46f3c5)
  • ⚠️ BREAKING The public header base/types/cxx23_is_scoped_enum.h has been deleted in preparation for C++23. Embedder code directly including this utility will fail to compile. (acec7de)

Core & APIs

  • ⚠️ BREAKING BREAKING: Virtual methods on the public ui::accessibility::BrowserAccessibilityManager class have been renamed (e.g., OnBlinkEvent is now OnSourceEvent). Embedders who subclass this manager must update their overrides. (65e8554)
  • ⚠️ BREAKING BREAKING: The components/js_injection mojom API has been refactored, renaming DocumentStartJavaScript to PersistentJavaScript. C++ consumers of this interface, such as Android WebView embedders, will need to update their code. (eba9b8d)
  • ⚠️ BREAKING BREAKING: In the GoogleServiceAuthError::State public enum, USER_NOT_SIGNED_UP has been renamed to ACCOUNT_NOT_FOUND. Code that checks for this specific authentication error state will break. (86fce5b)
  • A new SysInfo::AmountOfTotalPhysicalMemory() method returning a type-safe ByteSize has been added. The older AmountOfPhysicalMemory() method is now deprecated. (4f269ef)
  • Support for base::SequencedTaskRunner and scoped_refptr has been added to the Rust-Mojo bridge, allowing Rust code to post tasks to C++ task runners. (9e288f6)
  • A new SQLite backend for DOM Storage has been introduced behind the kDomStorageUseSqlite feature flag as part of an ongoing migration away from LevelDB. (72cd734) (10d1f2f)

Blink & Web Platform

  • ⚠️ BREAKING BREAKING: The WebCodecs AudioEncoder API now has a fixed limit on the number of concurrent encodes. This behavioral change to a stable API may break applications that queue a large number of encoding tasks. (4448cc9)
  • ⚠️ BREAKING BREAKING: A 256MB size limit is now imposed for reading text, HTML, and PNG data from the system clipboard on Windows. This new restriction on a stable platform feature may cause failures for applications handling large clipboard data. (600a5b3)
  • The PerformanceNavigationTiming API now exposes confidence levels for timing data by default, aligning with new web standards. (6ba554f)
  • The navigation.transition.to property has shipped, exposing the destination NavigationHistoryEntry of a navigation during a transition. (3d8faaf)
  • Elastic overscroll effects are now enabled by default for non-root scrollers on supported platforms, changing the default scrolling behavior. (403b52a) (3d44b6a)
  • On Android, the accessible name for controls like <input> and <select> now maps hintText to supplementalDescription, reserving hintText for actual placeholder text and improving semantic correctness. (baf3669)
  • An element's title attribute will no longer override an explicitly empty alt attribute (e.g., alt="") on <img> and <area> elements, aligning with specifications. (a08e280)
  • The experimental <install> element feature was updated, adding a new InstallFromElement() method to its mojom interface to allow installation prompts without a permission dialog. (1fd86f3)

UI & UX

  • ⚠️ BREAKING BREAKING: The public method GetPictureInPictureWindowBounds in content::PictureInPictureWindowController has been renamed to GetPictureInPictureWindowBoundsInScreen. Embedders using this API must update their calls. (03aeeb0)
  • The Picture-in-Picture window ID is now exposed for screen capture exclusion, preventing a PiP window from being captured by the same frame that opened it. (6cf22fc)
  • The TabDragDelegate interface was renamed to TabDragTarget and moved to a separate build target, allowing other components to implement it without a direct dependency on //chrome/browser/ui. (8ed9e83)
  • On Linux, the XDG Print Portal (kLinuxXdgPrintPortal) has been enabled by default, and out-of-process printing support has been implemented. (eb227d2)
  • The ChromeOS Camera App's CameraAppHelper mojo interface was updated, renaming SendNewCaptureBroadcast() to ProcessCapturedFile() to better support cloud storage destinations. (9feda0c) (3d3d01d)
  • The pre-Chrome-2023-refresh layout manager (browser_view_layout_impl_old.cc) has been removed as part of a larger cleanup. (0660eaa)

Policy & Enterprise

  • ⚠️ BREAKING BREAKING: Support for the CloudPrintProxyEnabled enterprise policy has been removed. Enterprise configurations that still use this deprecated policy will be affected. (8dd15b8)
  • Several Lens-related policies are being deprecated in favor of a single SearchContentSharing policy, managed by a new SearchContentSharingPolicyHandler. (818b9a9)
  • The chrome://policy UI will now display a "Restart required" status for policies that have been changed but do not support dynamic refresh. (9435502)

Build System & Dependencies

  • ⚠️ BREAKING BREAKING: Build configurations for libvpx and libaom on ARMv7 platforms without NEON support have been removed. Builds targeting this older hardware will fail as NEON is now a requirement. (9178bee) (5d71603)
  • ⚠️ BREAKING BREAKING: Forward declarations for the removed GpuMemoryBufferManager have been deleted from several public headers. This will cause build failures for any code still referring to this type. (b46f3c5)
  • ⚠️ BREAKING BREAKING: The public header base/types/cxx23_is_scoped_enum.h has been deleted in preparation for C++23. Embedder code directly including this utility will fail to compile. (acec7de)
  • Third-party media libraries libaom and libvpx were rolled forward, incorporating upstream optimizations and fixes. (158678d) (71e9c7b)
All Commits (535)
  • adef7a7 [omnibox][next] Observe eligibility changes for webUI add context button
  • 5ecd020 [GlicMI] Add a static bypass_enablement_checks_for_testing variable to glic_enabling.
  • b2d90c3 [ContextualTasks] Restrict search URLs that can load in the side panel
  • 78e9f88 Hide Glic nudge when contextual tasks side panel gets opened
  • 72cd734 [DomStorage] Add feature flag and DomStorageDatabase for SQLite
  • c0e3cfb Roll androidx from 5eqTKGKTZnClAFIXw... to uaBEwFaI4-rwzlxfh...
  • 4e02b82 Roll Chrome Win32 PGO Profile
  • fa2eead [Desktop Android] Partially port tabs.update()
  • 2230677 Roll llvm-libc from d23de8f3c5f6 to 7ef6dec88865 (2 revisions)
  • acdb0cd add glic_zero_state_suggestions_manager to android build
  • ecaaa16 Fix unsafe buffer usage in motion_event_generic.cc
  • 8ab2dd4 [Code Health] Remove DanglingUntriaged Pointer in ios/chrome/browser/overlays/model/overlay_request_impl.h
  • 51fc324 [Code Health] Remove DanglingUntriaged Pointer in components/proxy_config/pref_proxy_config_tracker_impl.h
  • c2a5fe2 [tracing] Migrate legacy flow macros in gpu/command_buffer
  • 4fe563f [reader mode] Update the font family histogram
  • 4c79dce Use extended hit regions for always-on-top container by default
  • 54f025f [omnibox][next] Flip ready flag value defaults to true.
  • 623e39d [a11y] Add cursor tracking for contenteditable elements
  • 0a943bf [glic] Return early when attempting to reactivate closed floaty
  • 41cf9bb [Drag and Drop] Add unit tests for the row body onTouchListener
  • b9d6c26 Extend active USB metrics through 2026
  • 3f9e638 [Drag and Drop] Add onTouchListener for ImprovedBookmarkRow body
  • 8415a59 [Contextual Tasks] Unknown mime type should send image value.
  • 2a00b72 Roll Depot Tools from 2b5f71d194c1 to 522a0d7bc338 (1 revision)
  • 5a807b8 [AIAE][UKM] Log if AI amount extracted is in the selected issuer's range
  • 6f357c0 Updater UI: Fix app matching in event list item
  • 158678d Roll src/third_party/libaom/source/libaom/ d0b1bd0d1..9f39edc5c (15 commits)
  • 71e9c7b Roll src/third_party/libvpx/source/libvpx/ 53cb0b403..d5399cdd6 (3 commits)
  • 3c59448 Remove TODOs about migrating StoragePolicyObserver to use StorageKey
  • b97cffe Fix crash in ExtensionTabUtil::GetWindowIdOfGroup
  • f5ae63f [Desktop Android] Remove custom profile matching in tabs.query()
  • 9fd7dad [Contextual Tasks] Correctly detach onBefore* callbacks from thread frame
  • 27cacfc [Contextual Tasks] Plumb initial upload response to overlay
  • 5edfbf3 Roll libc++ from 6b58037bab22 to 486c1c4c4b49 (4 revisions)
  • 65f056b Extend histogram deadline: Enteprise.DeviceRemoteCommand.Crd.*.*.Result
  • 428118a Roll Crossbench from cf20a8db4eaa to 5ffb110557f3 (1 revision)
  • e7bc933 Flag guard the invocation of MultiWindowUtils.isMultiInstanceApi31Enabled
  • 10d1f2f [DomStorage] Use DB_RETURN_IF_ERROR more and additional cleanup
  • 65e8554 [views-ax] Rename Blink events to Source events
  • 4d447f0 Use CertPathBuilderResultPath.trust_anchor instead of last_cert_trust.
  • 6deaaa2 Roll Chrome Mac Arm PGO Profile
  • f3c5e6b Roll Skia from b34a1d28aa3c to b01ad49ea807 (3 revisions)
  • 4448cc9 Impose a maximum concurrent encoding limit for AudioEncoders
  • 9ba3f87 Record Browser-Initiated AutoPip dry run UKM
  • 1b35e55 [SetupList] Introduce Address placement bar promo
  • 1510268 [ipcz] Fix Mojo ArraySerializer fast path for POD types
  • f950b91 [headless] Improve command line switch handling in test meta info
  • 5714fd0 [lensoverlay] Mark updated strings for non-blocking privacy notice non-translateable.
  • b0905f3 Fix window visibility check in GlicAnnotationManager
  • a25757b [Extensions] Add browsertest_util::ExecuteUserScript* utility functions
  • 8f98196 Roll ios_internal from 3babe77810b0 to b72c403d1829
  • ee7f673 [BrowserControls] Make LockTopControls V2 work with TWA
  • 46b25ec Add host_metrics and glic_sharing_manager_provider to android build
  • 4c7f3ba Dark Mode Fixes
  • 6bfc4c4 Overscroll: speculative fix for removing a container.
  • f145017 [Android] Fix testOpenTypeDelete_fromIncognitoNtp
  • 15c3c4b Remove incorrect CHECK in SessionServiceImpl
  • 09e90d5 [Android] Re-enable testOpenTypeDelete_fromNtp in Android 12L
  • a9a3f09 Roll WebView ARM64 Orderfile from 46pljNMs4FD3VCwyW... to QMUQM7vJ_fm40RLPW...
  • 967a6be [TreesInViz] Remove tiling removal from AppendQuads.
  • c2a3021 Roll vulkan-deps from a2a7d39ca45c to 686b39ce6344 (13 revisions)
  • 4ff637a Roll WebRTC from eb95c1e249b1 to 7379b40231e0 (2 revisions)
  • d5e7d25 [iOS] Remove ios/chrome/browser/popup_menu/ui_bundled
  • dfb1479 [TreesInViz] Change tiling removal behavior.
  • e9a87f8 update glic_metrics for android build
  • d319b2e Ensure TabSlotShimView mimics its parent's bounds
  • e9a7d53 [NtpCustomizationV2] Adds padding to the top and bottom of the preview dialog
  • d2833c2 [GlicMI] Guard Glic tab context menu behind a flag
  • da8dc4c [HLS] Replace track op functions with helper class
  • 26d7db4 hid: Centralize privileged FIDO extension IDs
  • ae55321 libwebp/BUILD.gn: remove -frename-registers w/gcc
  • a9b89ba Roll compiler-rt from 4c41cbd9e3c0 to 83b066d39015 (2 revisions)
  • 03cc869 Increase the read_anything size to 80
  • 4fdc9ad [glic] Move a bunch of stuff to the desktop only section
  • 403b52a Enable elastic overscroll for non-root scrollers by default
  • 348820b [Bookmarks Bar] Add tooltip texts for items in the bookmark bar
  • 3d44b6a Defer ScrollEnd during elastic overscroll
  • 713b2f8 Revert "Remove Glic close context menu item"
  • 21e321c [hub] Apply disabled alpha programmatically
  • 40752ba Add enum val: DISABLE_BLOCKED_BY_CLOUD_POLICY_CHECK
  • 87ec8fc [AIAE][UKM] Log APC fetch result
  • f3ba226 [Glic] Stub GlicActorTaskManager for Android
  • 4074a26 Roll clank/internal/apps from 7526cfd90172 to dc6ca4edd8e9 (1 revision)
  • 217f4ca Plumb TabListInterface::ContainsTabGroup through JNI on Android
  • fa33e89 Roll BoringSSL from c452c71ebd5b to f30c73389b6c (1 revision)
  • 652a6b8 Make include guards for actor stuff on Android actually work
  • a353058 Gurl: Update spelling randomly in one location in gurl.h
  • a6c909a Roll Chrome Win64 PGO Profile
  • 43e6793 Hook up Merkle Tree Certificate verification
  • b6368b6 [Frameworks roll] Roll to 846815299 piper revision
  • ff9a307 Update how we figure out whether gn2bp is running in CQ or CI
  • 4f137ed Roll Chrome Mac PGO Profile
  • 38c4c80 [iOS] Start adding error handling to the passkey parsing code
  • 5413ed5 [tracing] Migrate legacy flow macros in components/viz
  • 43da1ad [Extensions] ExtensionFunction* -> ExtensionFunction& in OpenTabHelper
  • b46f3c5 [Cleanup] Remove remaining GpuMemoryBufferManager residues
  • ddd6f5f Reland "spanification: automatically spanify .../broker_simple_message_unittest.cc etc."
  • 0f8b4f0 [Actor] Record debug data for screenshot encoding
  • 9b41392 Add glic_user_status to android build
  • edc9b09 Roll Amd64 AFDO from 145.0.7585.0_pre1560402_rc-r1-merged to 145.0.7587.0_pre1561029_rc-r1-merged
  • a44148d Roll ANGLE from 1690645c0d0b to 780ff4be5787 (1 revision)
  • b2b212a Roll WebView ARM Orderfile from I2sl1qTAtDErAh8UF... to ICG5pQ03Mml9TTa0X...
  • 33707da Extending flag expiration for enable-touchscreen-mapping
  • 1a94c8b [renderer] Remove unused calls to Isolate::Freeze
  • d068d95 Roll Skia from ae5dd72b3591 to b34a1d28aa3c (4 revisions)
  • db5f2fa [ContextualTasks] Fix zero state on Lens
  • 1de7092 [Vertical Tabs] Allow resizing the tab strip to collapse
  • b84c361 [ntp-next] Do no backfill chips and allow one chip in Row UI
  • 6012983 [ntp-next] Add client-side sensitivity filter for recent tab chip
  • 14ce7b9 [FedCM] Allow the permission context service in ash-internals
  • 0443f30 Revert "Roll V8 from e7c326e785ba to 909132ef1cbc (27 revisions)"
  • 3f6be71 [omnibox][next] Notify keyword mode changes from OnPopupDataChanged
  • a7ceb6c Revert "Roll V8 from 909132ef1cbc to fe32fd232758 (7 revisions)"
  • 2549580 Roll Chrome Mac Arm PGO Profile
  • 889ade9 [TreesInViz] Remove browser tests filters.
  • e9e0d27 Disable BackForwardCachePauseMicrotasks per release TPM request
  • d74c3c0 ukm_api.md doc update on metric name time unit
  • eba9b8d Change DocumentStartJavaScript to PersistentJavaScript.
  • f547837 Automated Commit: LKGM 16527.0.0-1073940 for chromeos.
  • 0cfd2e3 [iOS] Field trial testing config for enabling WelcomeBack
  • 01bb478 Webium: Handle prerender frames when embedded WebContents attach/detach
  • 0935ecd [Crash Fix] Fix crash due to dangling pointer in identity manager
  • 7769ee0 Add ability to tell whether we are visiting NTP directly after FRE
  • db88e01 Fix a typo
  • ba9e027 Roll V8 from 909132ef1cbc to fe32fd232758 (7 revisions)
  • e738d3e Roll Crossbench from 3877e2cb7a54 to cf20a8db4eaa (1 revision)
  • 1051ae5 [Actor Overlay] Add test coverage to ActorOverlayUI controller
  • 8f066cc [Url Override] Add force get URL methods to UrlConstantResolver
  • 68a1152 [CADisplayLink] Add a new histogram Viz.ExternalBeginFrameSourceMac.DisplayLink.Create
  • 98bb44b Roll BoringSSL from 2ce5dbc237c9 to c452c71ebd5b (1 revision)
  • 86b038d JNI Zero: Switch from android_library -> java_library
  • 669901c [webaudio-testharness] Migrate cancel-values-crash-913217.html
  • f617840 [Code Health] Remove DanglingUntriaged Pointer in ApiAccessTokenFetcher and FetchProcess
  • 30234d4 [tracing] Migrate legacy flow macros in services/audio
  • 0f10bca [contextual_tasks] Update OnTaskChanged to support tab-based UI
  • 77afb5f [AIM] Decrease focused omnibox bg by 1dp.
  • 9031a80 Roll clank/internal/apps from bafaeef8ab00 to 7526cfd90172 (1 revision)
  • 701bc97 Roll src/media/cdm/api/ a4cbc4325..9920660ea (1 commit)
  • dca7c8d [signin] Stop using AccountInfo::picture_url
  • 927db5b Modernize chrome://device-log
  • 512ab3d Reland "Fix GlicLocaleFiltering"
  • a8c01c8 [Extensions] Add braces to if statements in test_custom_bindings.js
  • b4ceb27 [Extensions] Improve chrome.test.assert(Eq|Ne) equality checking
  • ab3be0d Roll Depot Tools from d76f3b043dd8 to 2b5f71d194c1 (1 revision)
  • 54b7944 [iOS] Replace listGroupedCellConfiguration with listCellConfiguration
  • c86c86b Roll Dawn from 921a75dc4aa2 to 08d8fc519929 (3 revisions)
  • 2e8f2b8 Revert cflags/ldflags allowlist changes
  • 0bc835c [omnibox-next] Fix bug in feature param helper function.
  • 0a96d61 NTP: Fix regression where background image would not show some times.
  • 5fb2d58 Overscroll: handle DOM mutations like insertions and removals
  • c538333 [tracing] Migrate legacy flow macros in base
  • 8925d38 [Persist] Rework Synchronizer tracking state management
  • a5fa1ba Roll FuzzTest from 41c8a0fa9cd1 to 6e4dee441d2b (1 revision)
  • 350104c [tracing] Migrate legacy flow macros in ui/gfx
  • 0cb641d [Persist] FullSave and Start Tracking after loading tabs
  • 15dce48 [SetupList] Implement Android Setup List using Educational Tips framework
  • 8104f97 Add glic_tab_data to android BUILD
  • 02042f5 [iOS] Add new utility function stringify
  • f51fe56 Reapply "Reapply "Redact passwords from screenshots using APC""
  • 1f45552 [iOS] Merge default_promo/ into default_browser/
  • 08db350 Reland "Update icon in history page."
  • a13103b [CSD] Track Viewport Sizes
  • 81a74ae [tracing] Migrate legacy flow macros in ['extensions/browser', 'mojo/core']
  • fd6b834 Create an experiment for the `AAPMBlocksWebGPU` feature.
  • 9261552 [AIAE] Greyout bnpl chip if a timeout happens during this page load
  • 46f4b3b infra: Add cronet's codesearch builder to the cronet rotation console
  • 36e32d1 Roll Chrome Android ARM32 PGO Profile
  • 968c2ce [ntp-next] Do not retrieve non-contextual suggestions when sync off
  • d06a5d1 [Theme] Remove animation shown on daily refresh toggle.
  • 0395aa2 Roll Chrome Android Desktop x64 PGO Profile
  • 898587a Roll ANGLE from 69ac0775b7c5 to 1690645c0d0b (1 revision)
  • ebc3fea Update range-mouse-event-after-node-removal.js to use META for disabling a feature
  • 6f02fc9 [iOS] Refactor default_promo/ui_bundled
  • 6825bc4 Update EventHistory library to handle base::Time
  • 693465a Remove redundant tooltip logic from ReloadButtonWebView
  • d31af18 Roll BoringSSL from 416c97a30065 to 2ce5dbc237c9 (1 revision)
  • 5504c9d Roll Chromium Variations from CeBbNOVCy6OjNsqw7... to ehcNn2c15aMAvM5_A...
  • 96549ae Roll clank/internal/apps from b54e7e93e4b3 to bafaeef8ab00 (1 revision)
  • 8482756 Roll Chrome Mac Arm PGO Profile
  • 7d048a7 [iOS] Update Bookmarks Home Buttons
  • 600a5b3 [Windows] Limit clipboard read size to 256MB
  • 6ba554f Enable PerformanceNavigationTiming confidence by default
  • 30b266d Roll Depot Tools from 24755bc6ee4f to d76f3b043dd8 (1 revision)
  • 8a910e8 Printing: Extend PrintPreview.NumberOfPrinters histogram
  • 3b2b9e0 Android: Fix chrome://internals pages not loading for system image apks
  • fdcd889 [SLAMS] Enable SLAMS based on the single ClientSideDetectionServerModelForScamDetectionAndroid flag.
  • f54b218 [iOS] refactor ui_bundled from ios/chrome/browser/popup_menu/
  • 7ebc92e [glic] Add Android stubs for GlicUiEmbedders
  • bc9cc2f [glic] Add GlicInstanceHelper to TabFeatures on Android
  • 4f9c2a2 Roll clank/internal/apps from 958df4edecd2 to b54e7e93e4b3 (1 revision)
  • b554939 [glic] Add glic_ui_embedder and glic_ui_types to common target
  • 33dcaec DOM: Fix aria-expanded state for menu items
  • 08eaeb9 [Code Health] Remove DanglingUntriaged Pointer in components/translate/core/browser/translate_manager.h
  • b166aa0 Roll Perfetto from 22b068b2637e to fd5496e443e0 (5 revisions)
  • ed9dcff Roll Chrome Win32 PGO Profile
  • 03aeeb0 Update PiP window manager to return the outer window bounds
  • 9435502 Indicate when policies require a restart on chrome://policy
  • 8d7efd2 [SLAMS] Add a chrome flag for ClientSideDetectionServerModelForScamDetectionAndroid.
  • 2ff93ff [tips] Improve contrast of tips step number text
  • 73ea1fa Reland "[GlicMI] Create initial GlicTabSubMenuModel for sharing tabs
  • 7ed2568 [Android] Make onViewWaiting() an alias for ViewFinder#waitForView()
  • 7894c69 Roll WebRTC from a7f27313b6fa to eb95c1e249b1 (1 revision)
  • e1322b2 Enable ImmersiveMode header to close Immersive Reading Mode.
  • be6dea8 [Mac][Omnibox WebUI] Create configurable tooltips acceptance
  • f09a6ea spanification: spanified and manually checked url_canon_ip.cc
  • bf0634f Add MtcLogBuilder to cert_builder
  • 52c9a0d [Contextual Tasks] Push task info to webui when updated
  • 6d08a70 Avoid option MutationObserver in unnecessary cases
  • c19fb42 spanification: automatically spanify base/files/dir_reader_linux.h etc.
  • 893736c spanification: automatically spanify ui/events/ozone/evdev/event_device_util.h etc.
  • 65b159e Remove unnecessary DEPS exceptions
  • f923e67 Roll DevTools Frontend from 0cea597366df to 82f83364881c (1 revision)
  • 60e88d9 Roll clank/internal/apps from b033e5b7729f to 958df4edecd2 (1 revision)
  • c04092a Modify the implementation of ScreenMac::IsWindowUnderCursor.
  • 93b8aaf Remove references to ui/toasts for glic android
  • 0660eaa [Chrome Next] Remove pre-side-by-side layout now that it's launched
  • ff118b9 [Cleanup] Removing no longer valid TODO.
  • e3dc6d5 [HiC] webgpu support for source rect parameter
  • 726851f [ntp-simplification] Add UMA logging for NTP shortcuts auto-removal.
  • 499b4b3 Disable MemorySaverChipInteractiveTest.ChipCollapseRemainCollapse
  • 818b9a9 [ContextualTask] adding SearchContentSharingPolicyHandler to deprecate several lens policy with SearchContentSharing policy
  • 8864f3c Roll Skia from fe2be289c9fe to ae5dd72b3591 (1 revision)
  • f57a40a [layout] Reinsert LayoutObjects which undergo a in-flow state change.
  • 98dba56 waap: Add pixel test for ReloadButtonWebView.
  • 8f3e0f3 Roll V8 from e7c326e785ba to 909132ef1cbc (27 revisions)
  • 2fad3cf Add better error support for CopyFromSurface method
  • 9c134e2 [context-input] Dont clear session handle files upon query submission
  • 2430c11 Remove uses of std::unique_ptr<base::Value> for SPDY session state.
  • a89db9a Roll Chromite from 54c65cc92eb5 to afdcc7bf3b18 (1 revision)
  • 5fb4cf1 Roll Chrome Win64 PGO Profile
  • 86fce5b [Signin] Rename GoogleServiceAuthError::USER_NOT_SIGNED_UP to ACCOUNT_NOT_FOUND
  • b9922f9 [iOS] Fix TabGridTransition when selected cell is not visible
  • 76e229a Remove stale comments in navigator.idl
  • 6a0bd7f Roll Perfetto from d3d31a9215aa to 22b068b2637e (2 revisions)
  • 95a45e9 Reanchor bubbles when entering full screen in immersive mode on mac os
  • fa1b8c9 Roll clank/internal/apps from 830538e686d3 to b033e5b7729f (1 revision)
  • d67add7 Roll WebRTC from 459e9dffeae8 to a7f27313b6fa (1 revision)
  • 91d896c Fix some IWYU issues for base/types/cxx23_to_underlying.h
  • 6e36fe7 [Task Indicator] Add feature flag for M145 icon/nudge work
  • 31cdae4 Wait for signin buttons to appear in flaky live test
  • 0e3a27a Use SimpleURLLoader::DownloadHeadersOnly in components/metrics
  • c01d570 Forward declare SingleThreadTaskRunner and SequencedTaskRunner
  • 7d206c7 Add more files to glic android build
  • a08e280 Reland "[a11y] Prevent tooltip from overriding empty alt on img/area"
  • bff674a Roll DevTools Frontend from 5c64d772fab3 to 0cea597366df (1 revision)
  • 6e1cb1d Add alexilin@ to net histograms OWNERS
  • fc7c35c Remove initial (now obsolete) patching prototype
  • 710f2c6 [webaudio-testharness] Migrate autoplay-explicit-suspension.html
  • 2e32c8a Roll Chrome Mac Arm PGO Profile
  • baf3669 [A11y] Map name to supplementalDescription instead of hintText
  • b570351 [Permissions] Fix PermissionType and PermissionSourceUI enum desyncs
  • bae4a0a [LNA] updated android icons for loopback-network permissions
  • 6bb2b40 Roll captured_sites/autofill from 91e3138e1730 to 92cd35bb4bc4 (1 revision)
  • f58d470 [iOS] Remove IOS.DefaultBrowserFullscreenPromo histogram
  • 5d851fd [iOS] Finish refactoring first_run directory to remove ui_bundled
  • 3d8faaf Ship navigation.transition.to
  • 41aa2cf [webaudio-testharness] Migrate audiocontext-gc.html
  • c57eee5 [iOS][gCrWeb] Remove unnecessary gCrWeb global definition
  • 99e9bc5 Overscroll: handle multiple elements with the same id.
  • 6a1c8c9 [Composebox] Disable chip with input for composebox
  • 3a21dd7 Reland "[iOS] Only remove Translate infobar when transitioning to Reader mode"
  • 8b3262c download_browsertest: reenable DownloadTest_PercentComplete
  • 3057a9f [Chrome Next] Correctly update bubbles after state change
  • 63d6aba [AutofillAi - M4] Show update strings in the save/update message.
  • 83cf319 Refine omnibox popup row URL visibility matcher
  • eed92f3 [webaudio-testharness] Migrate realtimeanalyser-zero.html
  • 89674f6 Fix unsafe buffers warnings in orderfile_instrumentation.cc
  • 845e3ac Roll src/third_party/anonymous_tokens/src/ 50e04fb27..6405dbca3 (6 commits)
  • bcd25f9 [iOS] Create the RequestInfo object while parsing the passkey data
  • c91e1a0 Roll Media App from BBMUZUJyqxQoj9syR... to TnnbNXjvH5vODrvUt...
  • d2173e4 Merge BiquadDSPKernel into BiquadProcessor
  • 2bd833a Convert remaining base/ API's to ByteSize
  • 861b8cd Update metrics protos with proto_export
  • 5508a44 lzma: Simplify neon toggle in GN file
  • 96acd94 [iOS][Composebox] Gate fusebox with SearchContentSharingSettings
  • 70ea1fd [iOS] Disable testActivityLabel on iPad device
  • 4f52f27 [x-plat promos] Split MobilePromoOnDesktop into two flags
  • ce7e4c2 Updating trunk VERSION from 7587.0 to 7588.0
  • 5f49b00 Revert "Roll clang+rust llvmorg-22-init-17020-gbd1bd178-2 : llvmorg-22-init-18230-ge7892d70"
  • efa63e0 [tracing] Migrate legacy async macros in various folders
  • b2df03b Disable flaky CaptureHandleBrowserTest.SelfCaptureSanityWhenPermitted on msan
  • 7658e19 Roll Perfetto from 2e6bba1b57eb to d3d31a9215aa (1 revision)
  • aa45560 [LNA] Update desktop icons for loopback-network permissions.
  • 7655a98 Roll Help App from BCnNHJ7m2zMz7WKKu... to gsdlZg9WPsgMxczj_...
  • 06075d9 [WV] Remove privacy sandbox related README.
  • 5315d08 Construct overscroll-area-parents as indexed pseudos.
  • b80da56 [CodeHealth] Fix UNSAFE_TODO in gles2_cmd_copy_texture_chromium.cc
  • df35f67 Roll androidx from VqqX9_9kLdNErLpu0... to 5eqTKGKTZnClAFIXw...
  • 31cbb39 [webgpu] Make DawnWireServices optionally thread-safe.
  • 57be972 Updater UI: Rename filter settings fields
  • 06d1e79 [Android] Clarify message when a View exists but displayed < requirement
  • 4c356cd Roll DevTools Frontend from 3c1afb4e2d56 to 5c64d772fab3 (2 revisions)
  • 401fbaf Roll Chrome Mac PGO Profile
  • e4dd4e2 Restore harness line in wpt/css/css-typed-om/historical-expected.txt
  • f0d79aa Roll captured_sites/autofill from b0e728f524b9 to 91e3138e1730 (1 revision)
  • f72660b Add ToggleImmersiveUI to ReadAnythingController
  • 789ba2c [iOS] Add EG Test Coverage for PrintingEnable Policy
  • 13fece3 Add guide to mojo include files for C++ bindings
  • 901b807 Roll Chrome Mac Arm PGO Profile
  • f10cc5d [WATCHLISTS] grt watches various SQLite-related directories
  • 0772e7b [iOS] Option to add logging tag and description to BlingPrototyping
  • acec7de Delete unused base/types/cxx23_is_scoped_enum.h
  • f309e1c Revert "[iOS Blink] Add a dummy NeedsBeginFrameWithId()"
  • aaa9cc6 [views-ax] Expose Webview in platform accessibility tree
  • 81711db Update puma egtests to check for the location view
  • 5cbc613 [iOS] Add check in signout in managed profile
  • b8640f3 Roll BoringSSL from 5a484f88f7dc to 416c97a30065 (1 revision)
  • 8228728 Optimize scroll-target-group using OrderedScopeTree
  • 4b14edb [iOS] Add field trial entry for Tab Group entry points
  • fe4b3bb Improve TestListInstrumentationRunListener error handling
  • 2fbf80e Roll Perfetto from 0aa5d699a04d to 2e6bba1b57eb (3 revisions)
  • b806b79 [iOS][mvt-customization] Declare PinnedSiteFormVC and connect to model
  • 210e540 Replace GetRuntimeDataProvider() with mixin initialization
  • 80dfb22 Fix crash in WelcomeBackScreenProfileAgent due to nil sessionEndTime
  • d0e14b7 Roll Chrome Linux PGO Profile
  • b9912c6 Roll DevTools Frontend from 69ddeac9f207 to 3c1afb4e2d56 (3 revisions)
  • a15d7ae [CRS] Automatic update from google3
  • 360ffef Roll Chrome Win32 PGO Profile
  • ea11c4f Instantiate Rust parser in non-frame situations
  • 35f98db Pass correct property value index for CSS random() function
  • cd92746 Remove Net.DNS.DnsTask.AdditionalHttps.Unsolicited
  • 1cc74f6 [IOS][AIM] Use accurate page classification for composebox
  • 66ce7fc Fix building with safe_browsing_mode=0 (6/14)
  • 6b45624 [Permissions] Add missing PermissionRequestType enums
  • 7699a0c Updating XTBs based on .GRDs from branch main
  • 07e629b [ios] Change the Logo & Doodle margins to reduce NTP load jank
  • 6524fa3 [DNS] Randomize bootstrap IP addresses
  • 8ed9e83 Rename TabDragDelegate to TabDragTarget and create separate BUILD target
  • 2e87504 [dbsc] Delay Device Bound Session garbage collection and add metrics.
  • a40a0db [CT] Automatic update from google3
  • e042535 Move 3PCD pref histogram alongside other PS metrics
  • 56666af Roll src-internal from 7a7be53ea98e to 2d074c928ad7 (1 revision)
  • a5f1e2e [Actor Overlay] Add test coverage to the ActorOverlayWebView
  • 26534df [enterprise] Add warning logs before forced profile deletion
  • 167d229 Roll clank/internal/apps from 374bbe547fb5 to 830538e686d3 (1 revision)
  • e0d5894 Roll DevTools Frontend from 59412147f4c2 to 69ddeac9f207 (3 revisions)
  • 62d54aa Roll Chrome Win ARM64 PGO Profile
  • 5768745 [Permissions] Extract PermissionStatusHandler from StatusMediator
  • eed56ec Roll ChromeOS Bigcore AFDO profile from 145-7559.17-1765773901-benchmark-145.0.7583.0_pre1559802-r1 to 145-7559.17-1765773901-benchmark-145.0.7585.0_pre1560402-r1
  • 34c01e5 Cleanup unused code in data protection clipboard utils
  • 8e27bbf Roll Dawn from e78ae5f04508 to 921a75dc4aa2 (5 revisions)
  • 70d25af Roll Chrome Mac Arm PGO Profile
  • bf18ace Roll ios_internal from 364f485fa6a8 to 3babe77810b0
  • e3b833d Roll Updater chromium_win_x86 from 2@1555021 to 2@1556018
  • e79f07f [Signin][Android] Delay inflation of SigninPromo view for New Tab Page
  • 5526e7f Roll Updater chromium_win_x86_64 from 2@1555028 to 2@1556011
  • 8911d8e Roll Updater chromium_mac_amd64 from 2@1555017 to 2@1556008
  • 85fe915 Roll Chrome Android Desktop x64 PGO Profile
  • 509da9d Roll Updater chromium_linux64 from 2@1555009 to 2@1556006
  • 5cf671e Roll clang+rust llvmorg-22-init-17020-gbd1bd178-2 : llvmorg-22-init-18230-ge7892d70
  • 2ec201a [Direct Sockets] Mark members of OpenInfo dictionaries as required.
  • 66d6bd6 Roll src-internal from 37bb1434f0dc to 7a7be53ea98e (1 revision)
  • fb78041 [IOS][AIM] Enable Fetch image contextual suggestions by default
  • e384af2 Roll Enterprise Companion chromium_win_x86_64 from eFbIsoMx8ogcUZ4Mk... to NWftowioOFFcWCZLZ...
  • 1981957 Roll Updater chromium_win_arm64 from 2@1555007 to 2@1556019
  • b21efcc [TDR] Remove TODOs linked to issue 323421684.
  • 3f1fb13 Roll Enterprise Companion chromium_linux64 from Tg9NNFJUaG4fBpCSP... to BlVamxaNEb8bzB26s...
  • 86cc05e [Signin][Al] Close the webAuth popup upon flow completion
  • 7f6dfcd Roll DevTools Frontend from ab322aff7049 to 59412147f4c2 (2 revisions)
  • f58eb3e Roll Updater chromium_mac_arm64 from 2@1555013 to 2@1556013
  • c512622 Roll Chrome Win64 PGO Profile
  • a5fdcd8 Roll R8 from 0mA4BTPZQ1tLroeSl... to 78qCRqSjX4klKvuw9...
  • 01946d7 Roll Enterprise Companion chromium_mac_arm64 from wEdsNCGpal4-m9GDe... to PhzwhaYbKd8k3gAmz...
  • 71b7a4b Roll Enterprise Companion chromium_win_x86 from iUHNN0aA_jlgEdQ1U... to pgrjU1KCZBaGtCNb0...
  • 940c654 Ignore conflicting metadata for synced Wallet valuables.
  • 9b1446a Automated Commit: LKGM 16527.0.0-1073933 for chromeos.
  • b524d52 Roll Enterprise Companion chromium_mac_amd64 from nAUxBk1NA9uiKY9bT... to XThNtV4eQWY2EHF0T...
  • 142ca60 [iOS]Remove unused IsSubjectToParentalControls
  • fee4699 [Code Health] Remove DanglingUntriaged Pointer in ios/chrome/browser/location_bar/model/test_web_location_bar.h
  • bab8e0c [Code Health] Remove DanglingUntriaged Pointer in ios/web/navigation/navigation_manager_impl.h
  • c7121fb Use RAR obfuscated analyzer in case if file is obfuscated
  • df9382e Roll DevTools Frontend from f81c2ad1ca7a to ab322aff7049 (1 revision)
  • a124143 [signin] Re-enable InlineLoginHelperBrowserTest.InvokeUi_default
  • e6cad24 Compile more code with C++23
  • 9976c3d Update meet_effects hash in DEPS file.
  • d49136b Rename ImeKeyboard::SetCurrentKeyboardLayoutByNameImpl().
  • 8dd15b8 Remove the support for CloudPrintProxyEnabled policy
  • 8b9df94 [css-lists] Rename to InvalidateItemValues
  • 7a95695 Roll Chrome Mac Arm PGO Profile
  • dc72ec7 Cap number of times onboarding tooltip can be shown and dismissed
  • 74cd33c Roll Chrome Win32 PGO Profile
  • 729ff9b Roll Projector App from frx7rS-xgdYR2n289... to HPnaM1QUfC56Lovda...
  • e5bac90 [UNO-FF] History page promo: align the button
  • 8c9ead3 Roll BoringSSL from c8b71f817ffc to 5a484f88f7dc (4 revisions)
  • fe4e5cf Renew Audio-related histograms
  • 03c035e Roll ios_internal from 668292464057 to 364f485fa6a8
  • 3e94d77 Roll Skia from d32710009f88 to fe2be289c9fe (1 revision)
  • 1dffe96 [Code Health] Remove DanglingUntriaged Pointer in ios/chrome/browser/authentication/ui_bundled/signin/add_account_signin/add_account_signin_manager.mm
  • bc7f5c5 Extend expiry of Media.ScreenCaptureKit.SCContentSharingPicker2
  • 6cf22fc Expose PiP window ID for screen capture exclusion
  • 35401fb Roll Boca Receiver App from Ium-Ar_1FvanndPVL... to C09oxT9KlwYfmTlPr...
  • f810962 Roll Boca App from 0LIqZ_wRjxJD4_PHt... to QZAIbttxr3cabwT11...
  • a31d14a Resolve UNSAFE_TODOs in platform/wtf/text/
  • 19d529a IDB: Expand seed corpus (4/N)
  • e5befe4 Roll DevTools Frontend from f02881d306e8 to f81c2ad1ca7a (1 revision)
  • 34d4cf4 WTF: Remove fprintf() call in text_encoding_registry.cc
  • fca510d Roll WebRTC from b3a60534d8fa to 459e9dffeae8 (1 revision)
  • eb5bcb8 Roll BoringSSL from d88f29202f61 to c8b71f817ffc (1 revision)
  • 829eed3 [IOS][AIM] Disable history suggestions when composebox has attachments
  • 2e818d9 Roll ANGLE from 110aa16f60f8 to 69ac0775b7c5 (1 revision)
  • 927c17a Roll Chrome Mac PGO Profile
  • 79e3a5c [Frameworks roll] Roll to 846593805 piper revision
  • f163672 Revert "blink: Update scrollbar existence after pinch-zoom"
  • 2ecaf45 Extend expiry of PEPC histograms
  • 7142980 Roll Amd64 AFDO from 145.0.7583.0_pre1559802_rc-r1-merged to 145.0.7585.0_pre1560402_rc-r1-merged
  • 646bd44 Reland "Separate check failure message parts more clearly."
  • 24ef914 Roll Perfetto from 9c3fb84dd834 to 0aa5d699a04d (1 revision)
  • c809a58 Roll Chrome Mac Arm PGO Profile
  • b9d7460 Roll DevTools Frontend from 8611a125b7bd to f02881d306e8 (1 revision)
  • cbf6091 Abstract-ify ImeKeyboard::SetCurrentKeyboardLayoutByName().
  • bfaecd1 Roll androidx from 5AeBF_1MICf9fjSj7... to VqqX9_9kLdNErLpu0...
  • ffa498b Automated Commit: LKGM 16526.0.0-1073927 for chromeos.
  • ecefae6 Roll Chrome Win ARM64 PGO Profile
  • 728c3d0 Roll Chrome Linux PGO Profile
  • 1a34c56 Roll DevTools Frontend from 839818d54602 to 8611a125b7bd (1 revision)
  • 2af29de Revert "Add UMA metrics for user interaction to navigation duration"
  • 303619a Roll Skia from ebd15e2be7e6 to d32710009f88 (2 revisions)
  • 3216dac Roll Chrome Android Desktop x64 PGO Profile
  • 13b5f4c Roll Chrome Android ARM32 PGO Profile
  • 0b1fbc8 [Masonry] Don't update auto-placement cursor after dense-packing an
  • 8dea243 Roll Chrome Win64 PGO Profile
  • 4cf3f0b Roll Chrome Mac Arm PGO Profile
  • de47983 Revert "Reapply "Redact passwords from screenshots using APC""
  • ccceca9 Revert "Enable flag for password redaction in screenshots"
  • 49d9100 Roll Chrome Win32 PGO Profile
  • 758ee96 [iOS] Fix popover arrow glitch on iPad
  • f6bb41b Roll Chromium Variations from rR76XFaSlVxu1eFVA... to CeBbNOVCy6OjNsqw7...
  • c9c93bf Roll DevTools Frontend from c5b246a97902 to 839818d54602 (3 revisions)
  • 52ffb28 Roll clank/internal/apps from 02bd8ba01e12 to 374bbe547fb5 (1 revision)
  • e442875 Roll Dawn from 9720e168ff21 to e78ae5f04508 (3 revisions)
  • 055287f webium: fix null BrowserView in ContextualTasksUiService
  • 9feda0c CCA: CameraAppHelper ProcessCapturedFile() mojo API and frontend impl
  • 3d3d01d CCA: Introduce CameraSaveHandler to pass writable root and relative path
  • 4f269ef Add SysInfo::AmountOfTotalPhysicalMemory()
  • 3997031 Roll Chrome Mac Arm PGO Profile
  • d6e7323 Roll ANGLE from 5a9859805e5a to 110aa16f60f8 (1 revision)
  • 24cb6a3 Roll DevTools Frontend from 27f9ac6ec156 to c5b246a97902 (1 revision)
  • 8848478 ash: Fix shelf browser shortcut in guest session
  • 41f2346 ash: Move two VpnService-related observers out of crosapi
  • c24a3ee webnn: add metrics for WinAppRuntime installation
  • 25d75c1 Updating trunk VERSION from 7586.0 to 7587.0
  • a9cd34a actions revamp: Move TAM::Observer from ETCVC to ETVM
  • 8e45871 Disable clank media capture by default on desktop
  • f0679a2 [Extensions] Change EMViewPlatformDelegateViews to EMDelegateDesktop
  • 9e288f6 [rustmojo] Represent sequences in rust
  • cbbbe3a extensions: Merge back DeveloperPrivateFunctions
  • 1e7d95d Roll Chrome Mac PGO Profile
  • 9178bee libvpx: remove arm & arm-neon-cpu-detect config
  • 7a97084 remove field trial config for kResetTamperedDefaultSearchEngine feature
  • edec534 blink: Update scrollbar existence after pinch-zoom
  • 70c77d2 [Wallet] Add Event Pass and Transit Ticket allowlists
  • 2caa108 WebNN: enable multi-threaded ORT backend interop
  • 81a4654 [Contextual Tasks] Don't attempt to postMessage when targetOrigin_ is not populated.
  • d6996d1 [contextual-search] Fix ContextualSearchSessionHandle ownership for Lens
  • 667866d Revert "Update icon in history page."
  • bcff3d1 Roll Chrome Mac Arm PGO Profile
  • 4c6521b [Gardener] Disable Web Bluetooth WPT
  • 68b6ace Refactoring: Remove base::BindRepeating usage in log_trace_event_and_uma()
  • cba2844 [AF] Change VCN enrollment mgr's payments_network_interface_ to raw_ref
  • a10ffde Revert "[soft navs] Refactor pending ICP entry buffering"
  • b6b4bf1 [contextual_tasks] Fix UAF crash on tab re-association
  • 5184216 Reland "[CADisplayLink #7] Enable CADisplayLinkInBrowser in fieldtrial_testing_config"
  • 133ef7c enable kResetTamperedDefaultSearchEngine feature by default
  • 2f258af Release capture when start showing the multitask menu.
  • c0444ba [Contextual Tasks] Update background and composebox colors on SRP
  • 08b1171 Updater UI: Add event history list element
  • 0f6bd1d Roll Catapult from 9d25569e8616 to a4432a77891c (1 revision)
  • dceb028 Roll Chrome Linux PGO Profile
  • b124afe [Cleanup] Getters in searchbox should be const
  • 507fa2e Roll Chrome Win32 PGO Profile
  • 3198d2a [CodeHealth] Remove feature kDeleteExpiredDownloads
  • c88e8a6 [CodeHealth] Remove feature kRefreshExpirationDate
  • 460d4ad Roll Chrome Win64 PGO Profile
  • e4d33e7 Enable flag for password redaction in screenshots
  • 99d8634 Enable GlicApiTest on CrOS
  • 2ca17ac [Reading mode] Recalculate line focus when the window is resized
  • 16f2f27 Revert "cdm: Add UKM metrics for decoder check1 results"
  • c86c951 Roll Skia from ea1753816f42 to ebd15e2be7e6 (1 revision)
  • 0ee29b6 Roll Chrome Android Desktop x64 PGO Profile
  • ee377b0 [Vertical Tabs] Simplification in vertical tab view
  • 1fd86f3 [<install> Element] Do not show the permission prompt
  • f8e2c3e [AIAE][UMA] Log invalid response reason
  • 02eef97 [ContextualTasks] Remove app menu entry point
  • cf82766 Add fuzzy matching for web test fast/replaced/border-radius-clip.html
  • 5d71603 libaom: remove arm & arm-neon-cpu-detect config
  • 5fd3417 Roll BoringSSL from 9d9b184ed9e7 to d88f29202f61 (1 revision)
  • 22d3889 Disable DumpAccessibilityEventsTest.AccessibilityEventsAriaComboBoxCollapse
  • 37d68ff [Code Health] Remove DanglingUntriaged Pointer in ios/web/public/session/session_certificate_policy_cache.h
  • af23fef Roll clank/internal/apps from 872093b0ffec to 02bd8ba01e12 (1 revision)
  • 292f216 Add debug log for best/worst similarity for contextual tasks context
  • 219827b Add GetTokenizerParamsV2
  • 83e78f3 Disable PasswordBubbleInteractiveUiTest.ClosesBubbleOnNavigationToPasswordDetailsSubpage
  • c657d7a Automated Commit: LKGM 16526.0.0-1073919 for chromeos.
  • 27cd171 [ios] Fix testMagicStack
  • 9d6c2ed Changing Traffic Annotation CHECK back to DCHECK
  • d8ecf76 [headless] Add --enable|disable-features handling META for tests
  • 24d24b4 [DomStorage] Implement and use DomStorageDatabase::UpdateMaps()
  • 18e6bb8 Roll DevTools Frontend from 5bf0d9b8fd41 to 27f9ac6ec156 (1 revision)
  • b83c8ea Roll Depot Tools from 49e90f2d01a6 to 24755bc6ee4f (1 revision)
  • eb227d2 Implement OOP printing support for PrintDialogLinuxPortal
  • e8c2082 Roll Chrome Mac Arm PGO Profile
  • 94d0493 Extend CRAS noise cancellation metric
  • a65e351 Tell IWYU that mojom-shared.h exports mojom-data-view.h
  • fcc7601 Add a ClientCacheKey type
  • d3f9c9f Organize store pref logic under a ledger object.
  • 1f0b188 EmbeddedTestServer: add config option to specify a cert & key to use
  • 81c543c [Contextual Tasks] Append Lens params to contextual tasks requests
  • 0d97f7c Disable PageContextExtractorJavaScriptFeatureTest.ExtractPageContextWithAnchors
  • b28884e [TDR] Remove TODOs linked to issue 40840434.
  • 3624ad9 [TDR] Remove TODOs linked to issue 40777590.
  • a73806a [reader mode] Implement new distiller scaling rules
  • ba070d6 Roll clank/internal/apps from ff58f32ef295 to 872093b0ffec (1 revision)
  • 8cdb3ae webapp::test::CreateWebApp() should optionally take a scope
  • e3b5d8e [contextual tasks] Zero state
  • 29b3490 [VerticalTabs] Remove unused include
  • 5c8ec01 [Desktop Android] Remove unnecessary setup in tabs tests
  • 843f5a2 [Extensions] Remove obsolete comment
  • 326d45f Add UMA metrics for user interaction to navigation duration
  • 325ad55 Refactoring: Use per-scope HistogramTester for InputEventsForFormSubmission test
  • 97f6079 Roll eigen from 748e0a651713 to 9164d3f16ad2 (1 revision)
  • 682d87a [ContextualTasks] Add tooltip to toolbar button
  • d310ab4 [TDR] Remove TODOs linked to issue 40158714.
  • 946eec3 [Media] Add more metrics for Symphonia experiment
  • 987f7c1 [Desktop Android] Port tabs.create()
  • 1edaa91 Remove all use of 1-arg WebApp constructor outside of database serialization
  • 02765b6 [Code Health] Remove DanglingUntriaged Pointer in components/password_manager/ios/password_controller_driver_helper.mm
  • 2662a7f [TDR] Remove TODOs linked to issue 41451079.
  • 1573739 Add a feature flag to use the Rust Pix QR code validator
  • 3d1969b [Files] Add file type support for Google Drive Project
  • 35daf08 [TDR] Remove TODOs linked to issue 40172532.
  • de447ff [TDR] Remove TODOs linked to issue 197354832.
  • edbf208 Roll vulkan-deps from 2903a94bef15 to a2a7d39ca45c (1 revision)
  • 7d9854d Roll Skia from 2001d51c9b6a to ea1753816f42 (3 revisions)
  • 1a2cf00 Roll Android Lint from ptbrqsMNfskjrjTPE... to PDlCRP8QgjVQWOq0s...
  • 32fc2ca [TDR] Remove TODOs linked to issue 388788969.
← Back to all summaries