Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2025-12-10

Overview

This digest covers 588 commits on the main branch from (a18e50a) to (4b96ecd), with 435 commits identified as relevant to developers. This period includes a large number of breaking changes across the UI, graphics, and component APIs, requiring significant updates for embedders and extension developers. Key themes include API modernization (e.g., std::unique_ptr adoption), refactoring of core services, and continued modularization of the extensions system.

Breaking Changes

  • ⚠️ BREAKING The ownership model for blink::Gradient has changed from scoped_refptr to std::unique_ptr. All factory methods (e.g., CreateLinear, CreateRadial) now return std::unique_ptr<Gradient>, breaking any code that creates or holds references to Gradient objects. (2e59e5c)
  • ⚠️ BREAKING Multiple public function signatures in gfx, media, and ui have been changed by replacing std::optional<gfx::HDRMetadata> with a direct gfx::HDRMetadata parameter. Code calling these core graphics and media APIs must be updated. (d1c1406)
  • ⚠️ BREAKING The pure virtual method TabStripRegionView::GetTabAnchorViewAt now returns views::View* instead of Tab*. Custom implementations of this core UI interface are broken, and callers may need to perform casts. (53de04f)
  • ⚠️ BREAKING The extensions.webRequest API has changed the format of securityInfo.certificates.fingerprint.sha256 from a hex string (AABBCC...) to a colon-separated hex string (AA:BB:CC...) to align with web specifications. Extensions parsing this value will break. (33cf423)
  • ⚠️ BREAKING The public virtual method VariationsServiceClient::IsStickyActivationEnabled() and the member is_sticky_activation_enabled have been removed from the components/variations public API. (a28ddbe)
  • ⚠️ BREAKING The Web MIDI API now throws a NotAllowedError instead of InvalidAccessError when sysex access is denied. Web applications that catch the old exception type will need to be updated. (094a61d)
  • ⚠️ BREAKING The public C++ class ProfileBrowserCollection has removed its default constructor and now requires a Profile* in its only constructor, breaking downstream embedders who instantiate this class. (7a94676)
  • ⚠️ BREAKING The public class base::trace_event::CPUFreqMonitor and its header have been removed. Functionality is now part of the internal SystemMetricsSampler. (9ac235c)
  • ⚠️ BREAKING The legion::Client public API in components/legion/ has been refactored. Methods like SendTextRequest now take a RequestOptions struct instead of separate parameters. (86fc48e)
  • ⚠️ BREAKING The gfx::mojom::BufferUsageAndFormat mojo struct has been removed from the public API. (0aa4fc6)
  • ⚠️ BREAKING The remoting/signaling/messaging_client.h interface has changed the signature of the pure virtual method SendMessage to use new service-agnostic types. (72af65e)
  • ⚠️ BREAKING The chrome://history WebUI API has been refactored. The sign-in-state-changed event is now history-identity-state-changed, and the data payload has changed from an enum to a struct. (e82e386)
  • ⚠️ BREAKING Other C++ API breaks include the removal of LayoutBlockFlow::MoveAllChildrenIncludingFloatsTo and a field rename in the public struct FeatureAccessConfig::SecretKey. (4b96ecd) (5eceb2c)

Web Platform, Graphics, and Rendering

  • The behavior of CSS viewport units (vh, vw, etc.) has been changed to account for the presence of classic scrollbars on the root element, potentially affecting page layouts. This aligns Chrome with a new specification consensus. (83692eb)
  • The WebSerializedScriptValue API was extended with new methods (TakeForSerialization and FromWireData) to improve its usability in IPC contexts. (4cdfcfd) (565b679)
  • On macOS, a new VSync thread has been introduced to support CADisplayLink, aiming to improve rendering smoothness. (75e50bd)
  • The PrefetchScheduler is now enabled by default, which may change network behavior for pages using prefetch speculation rules. (df201ed)
  • The experimental Graphite rendering backend has been disabled on Windows for D3D feature levels 11.1 and below due to stability issues. (ffc0e19)
  • Internal refactoring continues to replace BufferFormat with SharedImageFormat in the graphics stack, particularly in GBM support for X11. (ac940f6) (a6c3d29) (928d27e)

Services and Components

  • A new SetEmail method has been added to the AccountInfo::Builder in the public sign-in identity manager API, allowing for email updates on existing AccountInfo objects. (e050c94)
  • The enterprise connectors' BinaryUploadService was refactored to use a new enterprise_connectors::BinaryUploadRequest struct, cleaning up the interface for file analysis and deep scanning. (f199de0) (9338883) (ba4a5ad)
  • The shutdown process for SessionStorageImpl was refactored to be synchronous and handled in the destructor, simplifying its lifecycle management. (cec69b7)
  • The CloudPolicyManager was updated to support a second CloudPolicyStore, in preparation for storing extension install policies separately from other policies. (5bde894)

Extensions

  • A new webstorePrivate API was added for the Chrome Web Store to determine if a promotion banner should be displayed on an item's page. (c063e88)
  • The messaging system is being updated to support structured cloning. This involved moving serialization logic to common code and adding support for mojo_base::BigBuffer. (69363e6) (88e3bae)
  • Modularization efforts continued by moving LoadErrorReporter from //chrome to //extensions and refactoring UnpackedInstaller to depend on BrowserContext instead of Profile. (a6ad1ac) (07f3a4f)

Platform-Specific

  • Android: A new feature flag, kAndroidZeroCopyVideoCapture, was added to enable capturing camera frames into AHardwareBuffers, avoiding CPU copies for improved performance. (9988fb0)
  • Android: The ToolbarManager.ConstraintsSupplier was converted to an ObservableSupplier, simplifying the observation of toolbar constraint changes in Java. (86102b4)
  • Android: The announceForAccessibility method in PageInfoContainer was replaced with the modern ViewCompat.setAccessibilityPaneTitle for better accessibility integration. (9904e93)
  • iOS: A crash when long-pressing a table view cell during a drag-and-drop interaction was fixed in History and Recent Tabs. (dd022b9)
  • Linux: A bug was fixed to correctly identify the "Virtual core pointer" in X11 as a mouse, restoring scrollbar hover effects in remote desktop sessions. (fe8c48c)

Build and Infrastructure

  • The pure Rust JPEG XL decoder jxl-rs was added as a third-party dependency. (740e9bb)
  • The unused //third_party/android_tools_internal sub-repository was deleted. (dc8611d)
  • A bug preventing the cookie database from opening on Windows when the user profile path contains a '#' character has been fixed. (9c964f5)
All Commits (588)
  • 4b96ecd [cleanup] Remove MoveAllChildrenIncludingFloatsTo
  • 72af65e Update MessagingClient interface to be service agnostic
  • fff0b46 Restrict visibility of `libzip`
  • ff5b9ad fjord-oobe: Add stargate as a sender for FjordOobeService dbus service
  • d653f96 Update `TestExpectations` with bugs filed for crrev.com/c/7247929
  • 0875e52 input: report surrounding text as SpannableString instead of SpannableStringBuilder
  • c04d88e Roll Skia from 7e9f03d0edf1 to 7eecb479ebf0 (1 revision)
  • a94941a Revert "Add structured test id experiment to presubmit ci builders"
  • 4961559 Roll Chrome Win32 PGO Profile
  • c7e99b6 [Contextual Tasks] Remove WGA from user agent
  • 582389d Initialize ChildProcessLauncherHelper in AwBrowserProcess.
  • 0478b99 [Bundled Security Settings] Fix bundle card color in dark mode
  • 1692b65 [Community Contributions] Clean up sAndroidTabDeclutterArchiveAllButActiveTab
  • 9049cc7 Roll Fuchsia Internal Images from 30.20251203.101.1 to 30.20251210.102.1
  • 9866dc8 [PDF] Upgrade DCHECKs to CHECKs in attachment save flow
  • 33f2f19 Add more woff2 owners
  • f875785 Put HeapProfilerBloomFilter control group in field trial testing config
  • 48ac8e1 Roll Chrome Mac Arm PGO Profile
  • e91cec1 actor: Cancel and delete renderer tool for PageTool timeouts
  • f5cb109 [ChromeAndroidTask]: activate task before maximize if task is minimized
  • 1ecb3b2 [Extensions] Move messaging serialization test cases to a separate file
  • 22f6c1e [iOS] Add Metrics for SQLite PersistTabContext Implementation
  • 69363e6 [Extensions] Move GetSerializationFormat() to common code.
  • 6ab71f8 [iOS] Integrate PageContentCache into PersistTabContext
  • 4cdfcfd [Blink] Add IsValid() to WebSerializedScriptValue.
  • b0c59b6 Preserve rationalized types in FormStructure::UpdateFormData()
  • 941d888 Roll vulkan-deps from 50c5f8b4dd57 to 5d087be05b64 (2 revisions)
  • 77d7cc5 [Public Transit] Check if tab group exists in NewTabGroupDialogFacility
  • 02dad65 Fix dup AndroidZeroCopyVideoCapture definition in component builds
  • 565b679 [Blink] Add Create() and WireData() to WebSerializedScriptValue.
  • 64be66d [Settings Search] updateDynamicDynamicPreference for TabsSettings
  • 4eb700d [composebox] Update styling of suggestion activity link.
  • 527b535 [Extensions] Adjust comment format in messaging_util.cc to backticks.
  • 85afdce [3PCD] Remove pref check from IsTrackingProtection3pcdEnabled
  • cec69b7 Improve SessionStorage shutdown
  • 7540159 Forward declare glic enum
  • 5e64f26 [actor] ObservationDelayController restart
  • da8f825 Mojo: Correct some typos in struct_traits.h
  • 1f7918d [SxS] Clean up trivial test uses of kSideBySide flag
  • 97f2b10 Remove FluentScrollbar from PaintTestConfigurations.
  • f712825 [Extensions] Refactor MessageFromV8 and consolidate validation.
  • 6f8f21f Revert "[bedrock] Migrate BrowserList begin/end Part 12."
  • 42406b9 Fix GlicButton spacing alongside actor task nudge
  • d06d3b6 Roll Perfetto from 7ad07b7f69be to c4b692e1896b (3 revisions)
  • 8af36e0 Revert "Enable DSE tampering reset on enterprise when feature is enabled"
  • 88d96b8 Roll ANGLE from 55e02c421a20 to 995dde4bd3c8 (3 revisions)
  • 505beab Expose TabFavicon bitmap to native
  • 86102b4 Convert ToolbarManager.ConstraintsSupplier to a TransitiveObservableSupplier
  • 81d77a2 [Vertical Tabs] Fixes for tab painting
  • ff0f2ee Update CBB autoroll for the builds refs
  • ed232de Roll glic-test-internal from 5f28bf1368f7 to 020ed786a816 (1 revision)
  • 7869a4b [Omnibox Next] Use session handle to count uploaded files
  • ff2cc76 UseSharedImageInOOPVDProcess: ImportSharedImage when decoder destructs
  • 6591828 Explicitly disable the kExtendedReportingRemovePrefDependency on iOS
  • d7c6910 [3PCD] Clean up references to 3PCD pref on Android
  • 2399fd1 Only listen to eligible change causes (navigations and visibility if exp on)
  • 88e3bae [Extensions] Add BigBuffer for structured-clone serialization
  • 43367c7 [contextual_tasks] Add SetUrlResourcesFromServer API
  • fcf847c Roll V8 from 5c1077b2472d to 8c7030b099ef (4 revisions)
  • 38eb816 [Read aloud] Ensure keyboard shortcuts work when RM is focused
  • e14e0ef Roll Dawn from 9e1721615b33 to cc0692ffe136 (4 revisions)
  • a39abc2 Handle lookup failure in VTST::GetViewTransitionClassList.
  • c0ac09e [omnibox-next] Suppress Lens search pedal if "lens search chip" enabled.
  • 1a0ba25 Roll Chrome Mac PGO Profile
  • f5f0ca2 [ntp-next] Update images chip text
  • 42447bf [Autofill] Do not call AM::form_structure() calls in production code
  • c1922e0 [soft-navs] Update Soft Navigation trace events.
  • 0d46b20 Split up TabCollectionNode initialization between node and view
  • d47308f a11y: Reenable clank text formatting test
  • cc3ce62 [clank-q4-fixit] Update bid landscape icon vector drawable
  • 3bd2333 Add Describe() method to ScopedHardwareBufferHandle
  • 054d363 [ntp-simplification] Track user interaction with MVT in customize chrome
  • 95f9f44 [Task Nudge] Fix GlicButton padding post-Task Nudge animation
  • 4fc68e1 Roll clank/internal/apps from 37c05e8893d7 to c74436068f41 (1 revision)
  • 75e6281 [iOS] Prevent attempting to sync credential stores while backgrounded
  • 7c1a9ea Add webstorePrivate API to log when CEC promotion banner was clicked.
  • cf51285 [ntp-next] Chip text spacing parity
  • bcc32da [ntp-next] Updating recent tab chip title and suggestion
  • bbc0b8e [iOS] Replace DumpWithoutCrashing with Check for activeWebState
  • 4226bd5 [ntp-text] Deep search chip text update
  • 3dfb6b9 Roll libyuv from 74ea9ed7c9da to deeb764bb92b (1 revision)
  • 4db0ba9 Roll Chrome Mac Arm PGO Profile
  • 6dcad2d Revert "[CCSG] Change tests to use CCSG instead of p_s_g.cc free functions"
  • b469acb [context-input] Add support for new server-side request id flow using context_id
  • e0c4e87 [ntp-simplification] Add a user preference to track module interactions
  • 3f1de2e [BNPL][Clank] Field trial testing config for BNPL
  • f203c20 Fix / Disable some tests
  • 194bc41 Use OnAfterFocusOnFormField to trigger CREDIT_CARD_FORM CSD pings.
  • c7cd5b3 [Bundled Security Settings] Fix indentation and line wrapping throughout
  • 62b3149 [Masonry] Update MasonryRunningPositions to use GridLanes naming
  • 3358fb0 Roll WebView ARM Orderfile from QjtrehpbcBAPhrmUR... to a2hfI176PIoQErLIz...
  • 008ac0a Roll Skia from 98f1b595caa3 to 7e9f03d0edf1 (2 revisions)
  • 05ac4dc Import wpt@4016865e7f163579d084597a57d2863ed04c480c
  • 04ff3f8 Roll Open Screen from 21e4a1968ad0 to 49566a8bf83e (1 revision)
  • 2b66c13 [ios] Grid Cell Nested Corner Polish
  • 4de456f Roll Chrome Win64 PGO Profile
  • 9271d97 Revert "[iOS] Remove a few unused strings from the CPE"
  • 8f1f8da Roll vulkan-deps from 91b098db2d6b to 50c5f8b4dd57 (2 revisions)
  • ce06225 [Refactor Branded Strings] IDS_NTP_CUSTOMIZATION_PROMO
  • e036c84 Update GPU M1 experimental OS
  • 45937c4 Have Proxy Resolution Service Own Pending DNS Resolution Requests
  • 683ea0c Roll Catapult from e617119e2c9c to ea58ca8d0f72 (1 revision)
  • 1e09d29 [iOS] Validate first responder before reloading its input views
  • 078473a [iOS] Remove view updates when application enters background
  • f38ebf3 Remove CREDIT_CARD_FORM CSD ping trigger on form detection.
  • 6173b49 Add webstorePrivate API to log when CEC promotion banner was displayed.
  • ec5db8f [iOS] Add Ask Gemini Chip EG Tests
  • 34fd4e9 Refactor feature enablement checks in ClientSideDetectionIntelligentScanDelegateAndroid.
  • 348d98e Roll Skia from 8e441f90a263 to 98f1b595caa3 (5 revisions)
  • 9c1fcce Roll androidx from mcHe4tag6-fHpR1za... to nJ29H15TiQabAnFD0...
  • d97d3e0 Roll Chrome Linux PGO Profile
  • 15518dc [wasm] Add two tests for navigating while compiling
  • dffe6ec [Settings Search] Add Download/Developer Settings to the registry
  • a5a558f Roll V8 from 34383a1ccac4 to 5c1077b2472d (10 revisions)
  • 99ef446 Roll ANGLE from 7f980a0be375 to 55e02c421a20 (1 revision)
  • 7b3bc1f Remove unused AsyncHitTestReasons.
  • 171d753 Roll DevTools Frontend from 7c374960df3e to e920d51d4758 (1 revision)
  • c9c2b8f FIXUP: `ui::WinWindow` causes DCHECK failure when calling `KeyEvent::IsRepeated`
  • 8567654 FSA: gate observer API in browser process.
  • 75e50bd [CADisplayLink #1] Add a new VSyncThread in the Browser process to support CADisplayLink on Mac
  • 6cfdc83 [RWM][RecentlyClosed] Include RecentlyClosedWindow items on Recent Tabs
  • 31d5303 [Icons] Update the database icon vector drawable
  • a094d2e [ntp-simplification] Add a pref to track user interaction with shortcuts
  • 1b5f0b5 [Settings Search] Put Privacy settings in the search index
  • 5868211 [Settings Search] Turn off highlighted result
  • f3b3f5b Roll src-internal from 7f5609f4da51 to 94f5de8b652c (1 revision)
  • d5e37bb Roll Chrome Android Desktop x64 PGO Profile
  • a8de982 [Perf] Fix handling of components_perftests results
  • ec4ecdd [iOS] Clean up kAppStoreRating feature
  • 5eceb2c chromeos/ash/components/specialized_features: Upgrade SHA-1 to SHA-256
  • ce496f6 Revert "[Media][Clank] Add logging for MediaSession timestamp drift debugging"
  • 6187f20 [VSyncThreadWin] Source IDXGIOutputs from all adapters
  • 05ffd21 Add bryantchandler as secondary OWNER
  • e4b3db4 [iOS] Remove expired Segmented Default Browser flag
  • d531fe7 [omnibox][next] Disable image generation for off the record profiles.
  • 25d2b40 [TreesInViz] Parameterize LayerTreeHostImplViewportCoveredTest
  • 7f3104e [DBSC] Record session error uma for each std OAML originated session
  • c4c1d0e Roll Chrome Android ARM32 PGO Profile
  • dc6f685 [CustomizationV2] Implement Daily Update Logic (Part 5)
  • 2c71587 Automated Commit: LKGM 16515.0.0-1073722 for chromeos.
  • ce256ce Roll Chrome Mac Arm PGO Profile
  • fe9aace Add user action and histogram when link is clicked on active tab
  • 028b72e Update card icon to new 48x30 with new layout sheet.
  • 8b5917b [TDR] Remove TODOs linked to issue 41433110.
  • c89c575 [lens] Avoid sending empty visual search interaction data.
  • 7d971d9 [iOS] Gemini Onboarding cards in fieldtrial
  • 9ac235c [tracing] Fold CPUFreqMonitor into SystemMetricsSampler
  • 59393e9 Add Daisy chain new tabs to settings page
  • 6df853c [iOS] Remove unused argument `browser`.
  • 3c0a825 [rust] Tweak `rust_bindgen.gni` to avoid `include!(...env!("OUT_DIR")`.
  • 2e59e5c Remove RefCounted from blink::Gradient
  • 53de04f [VerticalTabs] Update GetTabAnchorViewAt to return a View*
  • a2bb1a3 Add module scheme to perf bot size test suites
  • d3c638f [Omnibox][AIM] Reset SurfaceId by removing and resetting the web contents.
  • d5825cd Clean up NestedViewTransition feature.
  • 532bcb7 Roll gn from 5964f4997670 to 4e0818fd86bf
  • aeb2ad7 [iOS] Extend ContentNotifications.* histograms
  • f2b2117 Roll Chrome Win32 PGO Profile
  • cae3977 [Proofreader API] Skip flaky proofreader test.
  • 3313037 [iOS] Make loadStorage more reliable
  • fd0c5ea Roll libc++ from c5dd8ade977a to b4596f1d2b9d (1 revision)
  • 4019bee Migrate viewport dependency handling for LayoutSVGForeignObject
  • 9777069 Roll vulkan-deps from a84468688021 to 91b098db2d6b (4 revisions)
  • 1255c8d Migrate viewport dependency handling for LayoutSVGImage
  • 739a5ab [CustomizationV2] Implement Daily Update Logic (Part 4)
  • 602850a [iOS] Disable all attachement actions if max limit is reached
  • be94a03 Roll Depot Tools from ecbf89e1da46 to cd4db8fd7f03 (1 revision)
  • 6fce923 [3PCD] Clean up Mode B page info UI
  • 6181233 [build] Adjust windows version condition for LPAC ACLs
  • e3a0756 Roll V8 from c667e4243755 to 34383a1ccac4 (2 revisions)
  • fa40186 [viewport units] Housekeeping bits of obeying scrollbars
  • 4aa192f [push messaging] Move PrefValue encoding / decoding to components/
  • 8683524 [FedCM] Add flag for a new experimental FedCM feature
  • 0942287 Add structured test id experiment to presubmit ci builders
  • 88e82d1 [Extensions] Change SiteSettings to use ControlState in menu model
  • 8284471 Clean up Mode B checks in prompt suppression logic
  • 2bf874f [flex] Fix incorrect cache hit.
  • 3e3ab41 [AIM] Adjust sizes, paddings, text of attachments.
  • 39781ba [Vertical Tabs] Adding Basic Tab Interactions
  • e1d8d32 Roll src-internal from bbb3c87f0c87 to 7f5609f4da51 (1 revision)
  • e7c0458 [PWA/Predictable Update]: Deflake and enable some integration tests
  • 4cdeba0 Don't adjust bottom container pos post-detroy
  • fbb3cf0 [Icons] Update refresh icon
  • ec0dfcf WebNN: make ImportTensor sequence safe
  • 71118eb Roll PDFium from e3c8ca8285b2 to e11956eeb406 (8 revisions)
  • 027667c Add GlicUI::From for safe WebUI controller access
  • a28ddbe Remove the is_sticky_activation_enabled flag.
  • 98bfd0a Add a histogram for the number of tabs that are affiliated with a task
  • 4dee9e2 [clank-q4-fixit] Update cookie icon vector drawable
  • d1dac89 Retry `Pixel_Video_Context_Loss_VP9` on Pixel 6, Android 14
  • 058dcd9 Retry `ExpectedColor_MediaRecorderFromVideoElement` on Pixel 6
  • fe8c48c Treat XInput "Virtual core pointer" as a fallback mouse.
  • c28cb9e Eliminate the ScaleAlpha() helper
  • de69492 gamepad: Allowlist hidraw gamepads on Linux/ChromeOS
  • 7c8c678 Introduce AttachmentChangeListener
  • b7ddfab Remove fluent-scrollbars from about:flags.
  • 57e5346 Roll DevTools Frontend from deddd98fd4c3 to 7c374960df3e (4 revisions)
  • 223f4a1 [proxy main] Add trace event category for idle request
  • 094a61d Use NotAllowedError instead of InvalidAccessError in Web MIDI
  • 37a885c [SettingsBundle] Removes duplicates of SecuritySettingsBundleSetting
  • 4697cdf [3PCD] Clean up 3pcd logic in GetMediaDeviceIDSalt
  • d24ea06 [3PCD] Clean up RWS 3PCD logic
  • 1d9e527 [omnibox] Fix AIM page action / bookmark page action visibility on NTP.
  • eb8c32f [wv] Extend expiration date for Android.WebView.Startup.ChromiumInitTime.WallClockTime{StartupMode}.
  • 94d6665 Use long path in ExtensionResourceTest
  • 4281291 Update delayloads_unittests with delayloaded modules
  • 3096e2b Don't use CopyRGBATextureToVideoFrame for NV12 source video
  • 5380654 [OpenScreen] [VideoStack] Remove reliance on v4l2 querying
  • 0b4f05f Remove file-system-observer from about:flags
  • 4f21e8d Roll clank/internal/apps from 88bb07517f64 to 37c05e8893d7 (1 revision)
  • e9f0ae9 Remove RefCounted from blink::Pattern
  • a425c4e [tracing] Move payload to a different table in trace reports
  • 27edfdc Only send pending if there is a new request for contextual suggestions in flight
  • fdb2bf6 Add base check for persistAcrossReboots
  • 2bea263 [HFM] Explicitly mark HttpsOnlyMode policy can be set to recommended
  • 7a94676 [bedrock] Update ProfileBrowserCollection to hold Profile raw_ref
  • 14c84c4 [Omnibox Next]: Add feature flag for voice search & update about_flags
  • 2d8eff0 [clang] Package the armv7-unknown-linux-gnueabihf runtimes
  • 6fa128f Roll abseil_revision 6baba4dc59..5b1e199db4
  • ae39b01 Revert "Roll BoringSSL from 2de47dbd87d9 to 0b3bd177c1cc (2 revisions)"
  • 1351802 Roll ANGLE from 79ad87b2b662 to 7f980a0be375 (2 revisions)
  • 9cf0896 [contextual tasks] Fixed coloring and styling for composebox
  • 10d063c Migrate selected browser tests off skipping allowlist
  • 2042b90 [UW] Extend disable-instance-limit flag expiration
  • 0fd6610 Reuse simctl list to retry listing available runtimes
  • f924728 Roll DevTools Frontend from ef4dcd9e3a5c to deddd98fd4c3 (6 revisions)
  • 7a6f3b4 Propagate DelayLayerTreeViewDeletionOnLocalSwap in ViewTransitionState
  • e360b61 Small fixes to tests and doc comments.
  • 77aaccc Roll Chrome Mac Arm PGO Profile
  • 08e4e5f [wv][exp] Stop browser startup in isMultiProcessEnabled
  • 7710041 [RouteMatching] Avoid recursion.
  • 60a7dd3 [proxy main] rename paused_ to begin_frame_source_paused_
  • cf5e5fd Fix unsafe buffer usage in read_anything_app_controller
  • fa2b794 Ignore synthesized empty default namespace on the first XML event.
  • bc3cebd Remove unused call
  • 77107f8 [iOS] Add Experimental Settings to show catalog items
  • e4f3941 Gate glic deps behind the enable flag
  • f821246 Roll vulkan-deps from d26310fd028a to a84468688021 (1 revision)
  • 5e7daaf Roll Chromium Variations from t_FkaZJZQpSMMxKee... to f4Gn1N441JOsk_94h...
  • c6a8928 Gate enable_java_location_rewrite on build_with_chromium
  • 03c1942 [AIAE] Reduce amount extraction timeout limit
  • a4be74e [Growth] Adapt SigninPromoLimitsExperiment thresholds and histogram name.
  • 7febab0 [iOS] Launch Gemini in Chrome iOS to en-US
  • c2043bf [AIAE][UMA] Add extraction result metric
  • 0efdf4d [Theme] Fix crash of NtpChromeColorsCoordinator.getColorFromHex().
  • 1d1ce42 Roll Perfetto from 1641b6ac3eb8 to 7ad07b7f69be (1 revision)
  • f49f01d Tweak active user detection from URL precedence logic
  • 8875d18 Fix for elastic overscroll effect on Android affected by viewport scale
  • 738ab20 Support AppType::TWA in PwaUniversalInstallBottomSheetCoordinator
  • a5b15d4 Roll V8 from 0a0e78eb54ee to c667e4243755 (6 revisions)
  • 4bc6218 Roll Chrome Win64 PGO Profile
  • e7d81ce Roll Skia from ae30d33ae61f to 8e441f90a263 (4 revisions)
  • d3f7e1c Add field trial testing config for WebRTC-EncoderSpeed experiment.
  • 793d053 Refactor HeadsUpDisplayLayerImpl to use unnormalized coordinates
  • 93b4f8e Updating trunk VERSION from 7573.0 to 7574.0
  • ff1a6e7 Rename bwg_metrics to gemini_metrics
  • d906ae2 [InputVizard] Cleanup expired histogram.
  • 20c881d [iOS] Complementary fix for landing on a grouped NTP after 4+ hours
  • 5ea68ab Cleanup unused IDS_IPH_* strings
  • 1c38fcc Roll DevTools Frontend from a6ec6aa7962d to ef4dcd9e3a5c (3 revisions)
  • 41b1667 [Refactor Branded Strings] IDS_NTP_CUSTOMIZE_TOOLBAR_CATEGORY_YOUR_*
  • 89cabd9 Support generate_allowlist_from_histograms_file in gn2bp
  • b37b489 Revert "[CCSG] Fix stack-after-use issue in a test"
  • 6f5b22a Roll Media App from Hml80J-ZasRrPZGee... to e5_sfYNfAB38oJ82Y...
  • 0d9f7eb [iOS] Add CloseOtherTabs feature flag
  • 9c964f5 Fix opening cookie DB when path contains '#'
  • 1184bd2 [Chrome Next] Layout top container in tail order
  • bef2fe6 [iOS] Remove unused image assets
  • ff92624 Update reference browser tests bug
  • a6ed80f Roll Dawn from 41f514e81a3b to 9e1721615b33 (1 revision)
  • 3d625f0 Update a fieldtrial testing entry for PasskeyUnlockErrorUi.
  • b40237f YourSavedInfo: fix a bug with identity docs and travel toggles
  • c68d4bc [Vertical Tabs] Curve corners of toolbar in some cases
  • 9d11373 [iOS] Clean up user policy notification related code.
  • 937efcc Disable ForegroundActorTaskTab on wayland for flakiness
  • f4a4397 [permissions] Fix PermissionOverrides for kApproximateGeolocationPermission
  • f862623 Roll Help App from lRZscVZmtDmQlxEju... to ifhqjCzoK-9_jEMz5...
  • fd2f2cb Update Toggle call in whats new page to Use GlicKeyedService::ToggleUI
  • 6590724 Roll Chrome Mac PGO Profile
  • 857dbb6 Roll Perfetto from 7483d17f082e to 1641b6ac3eb8 (4 revisions)
  • d1e95bd [iOS Blink] Disable usage of base::mac::MacOSMajorVersion() in persistent_cache_perftest.cc
  • dc67b6c Add test for destroying annotator client before page handler.
  • 16d1b9c [iOS] Fix NTP logo flickering
  • 038cdbf Correcting the handling of preferred number of channels when no such are available
  • 76ad5cf [TDR] Remove TODOs linked to issue 40529753.
  • 33f1303 [TDR] Remove TODOs linked to issue 40335851.
  • ff71788 Refactor ash usage of TextureDrawQuad to use unnormalized coordinates
  • 3c2b6c4 Roll Skia from fa5697e180f6 to ae30d33ae61f (1 revision)
  • ac9462b [iOS][AIM] Refrain from showing the AIM nudge when DSE not Google
  • 71bc9a6 [AX] Remove keyboard accessory suggestion accepted announcements.
  • e6019ee Roll WebView ARM Orderfile from 70CVn3hKf_f5t-9B4... to QjtrehpbcBAPhrmUR...
  • 3eb99f1 Add generate_allowlist_from_histograms_file.pydeps
  • a7a5c86 Roll V8 from 1b762e8b836a to 0a0e78eb54ee (9 revisions)
  • 0f614dd Extend enable-system-cursor-size-for-svg virtual test suite
  • ee710da CompositorView port to ScreenOffBroadcastReceiver
  • a7bf570 [Suggest] Update fieldtrial config for rollout
  • abcfdcd Set up PNG codec for render_text_fuzzer
  • 8dff737 Create a ScreenOffBroadcastReceiver
  • fb350ae Update documentation for IdleDetector
  • 9549a44 Roll DevTools Frontend from 7809f1430421 to a6ec6aa7962d (5 revisions)
  • 5fa0243 [Bundled Settings] Make bundle selectors fully clickable.
  • 0fed5b1 [TDR] Remove TODOs linked to issue 260203451.
  • 33cf423 [IWA] Fix sha256 stringification algorithm according to web spec
  • 85d3f34 YourSavedInfo: modify fieldtrial to not include a Forms AI flag
  • f128c06 Roll Chrome Mac Arm PGO Profile
  • aa62f25 Actor: silently drop iframe subtrees in APC
  • f92d0d0 Remove obsolete about flags.
  • d1d39da [iOS] Remove Duplicate Disable for Price Tracking Promo
  • 7ecd3a5 Roll Chrome Win32 PGO Profile
  • f7b983c Actor: Plumb context fetch errors out through proto
  • 15663dd [CCSG] Fix stack-after-use issue in a test
  • 51ed3fa [TDR] Remove TODOs linked to issue 406136564.
  • 4cfadc1 Roll vulkan-deps from 9f7342ee3761 to d26310fd028a (1 revision)
  • 7e81ded Roll ios_internal from d705508e7ca9 to 3c1d9b105e7c
  • 4079e28 Remove java_script_find_in_page_egtest
  • b7c66a4 [TDR] Remove TODOs linked to issue 40753028.
  • d907348 [iOS] Remove unused experiment flag for Reading mode in the overflow.
  • cc9894f Enable EsbAsASyncedSetting feature by default.
  • 083bcfe [devtools] Remove stylesheet-source-url-comment test
  • 0322f5e [CodeHealth] Remove the unlaunched SupportToolScreenshot feature
  • d6defaa [iOS] Remove unused WebStateList from ReaderModeOptionsMediator.
  • 3fc5bab Roll JetStream main from 515ab50a78a8 to 7f1aff94b8a6 (1 revision)
  • dd022b9 [iOS] Fix crash when long-pressing a cell during a drag interaction
  • 294b6b9 Roll WebRTC from 68ca4f24d650 to 8188e5415cc1 (5 revisions)
  • 417a3fd [CT] Automatic update from google3
  • e1a56e8 Remove feature params allowing thumbprint mismatch and JWT 'aud' field
  • 83bf275 Introduce TokenManager for managing blind-signed auth tokens.
  • e7941f3 Roll libunwind from 88fc07ed143a to ef486348f6aa (1 revision)
  • d19e4c3 Roll clank/internal/apps from ec61b2005a15 to 88bb07517f64 (1 revision)
  • 3256d8f [DBSC] Add info where a session originated from to BoundSessionParams
  • 4e496cd Roll Perfetto from 1cd444117d30 to 7483d17f082e (3 revisions)
  • 2e7ecdd [KP] Automatic update from google3
  • 01e8588 Migrate screen orientation to protocol test
  • 3fce0f6 Remove SHORTCUT_LOCATION_START_MENU_CHROME_DIR_DEPRECATED
  • 05ccf69 Remove AutofillUiUtils#showTooltip() Call to announceForAccessibility()
  • b008ecf Remove AutofillUiUtils#showErrorMessage() Call to announceForAccessibility()
  • 0cb1cd7 Roll DevTools Frontend from 2ff4f639f3df to 7809f1430421 (2 revisions)
  • 8873370 Roll ios_internal from 9e351538c4fb to d705508e7ca9
  • ed35e33 Make the constants in components/soda/pref_names.{h, cc} constexpr
  • 2830c5a Roll Chrome Android Desktop x64 PGO Profile
  • d66b85d Roll Chrome Android ARM32 PGO Profile
  • 7c7a8d1 legion: Record WebSocket close codes in Legion client
  • 62706be legion: Add server error handling and metrics to Websocket Client
  • 9ca5abb Remove old TODO about refactoring metric logging
  • ae05ff4 [ProfilePicker] Fix Stepswitch callback order in ReauthProvider
  • a3b8d79 [CodeHealth] Remove disabled RemoveStalePolicyPinnedAppsFromShelf
  • 74f57ea [CodeHealth] Remove disabled federated strings features
  • 8cf2979 [iOS][CX] Fetch favicons for password views
  • 56b9c06 Handle opaque origins in origin gating user confirmations
  • 087183f Fix back button behavior of "standard/extended preloading" pages
  • bccdbbe Added the feature flag for State and Country misclassification fix.
  • b02002a Roll Crossbench from c6dc52867e28 to afc6a8f3c59c (1 revision)
  • c552087 Refactor permission UKM code to use RFH instead of WebContents
  • dadc349 Roll Chrome Mac Arm PGO Profile
  • 9cc7dac [iOS] Move branded assets logic to shared/ui
  • a9f6fbe Roll V8 from 69e84a4792e7 to 1b762e8b836a (5 revisions)
  • 807bee8 [ios] Migrate some NTPHomeTestCase tests to isolated UI tests
  • 3b94cbf disable testBottomOfAccountSyncSettingsPage
  • e6fdd43 Extend expiration for DevTools.OpenedByAction histogram
  • 63b3715 [iOS] Adding back NotFatalUntil in SearchEngineChoiceCoordinator
  • 27ebb29 Roll DevTools Frontend from 62f548647fb7 to 2ff4f639f3df (4 revisions)
  • eddf3ea [AutofillAi - M4] Add action and dismiss callbacks to the message model.
  • e540795 Revert "[Tooltip] Explicitly parent tooltip view to the browser widget"
  • c360e0e SeparateProfiles tests: Update TODOs to new bug
  • b249285 [iOS] Add bug param to create_feature_flag.py
  • b28b18a Roll Perfetto from efb64d38397a to 1cd444117d30 (1 revision)
  • 3587cae [iOS][AIM] Refresh UI after view did load and all buttons are created
  • 716f0ad Allow list new fields introduced in https://crrev.com/c/7223770
  • 293843a [DevTools] Remove redundant unit tests for `DOMExtension.ts`.
  • b1e55c4 blink: Unify scrollbar thumb length calculation
  • 6aa067b [OTP] Move mock one time token service to its own files.
  • d4886c7 [IOS][AIM] Fix typed suggestions display when attachments are present
  • a1a236a Refactor OmniboxStateProviders
  • b1403b7 [iOS][Omnibox] Fix flashing leading icon
  • 06c4dd0 Roll V8 from 9734121691cc to 69e84a4792e7 (5 revisions)
  • a7b5646 Optimize SkFontGetGlyphWidthForHarfBuzz loop
  • ba4a5ad Migrate PagePrintAnalysisRequest to use BinaryUploadRequest.
  • 2fbfd49 Add a fullscreen activity to the WebView Shell
  • 66184d5 [CodeHealth] Remove disabled PromiseIconsForWebApps
  • 0c4ea54 Roll DevTools Frontend from 51e3a7413f71 to 62f548647fb7 (1 revision)
  • c09af3b [IOS][AIM] Load historical aim suggestions
  • f2267ce [Android] Update psd field keys for signin survey
  • 12c55da Roll Chrome Win64 PGO Profile
  • 288f44d Roll ios_internal from a34df5396676 to 9e351538c4fb
  • 825f847 Roll Skia from b35e8691fdd0 to fa5697e180f6 (2 revisions)
  • 5906b0c Cleanup: delete launched WebViewEnableADPFGpuMain feature
  • 604ed94 Roll Projector App from QzVGU4fWOt0vrHV5-... to vZWTkcl0jY3140StZ...
  • 3db19ca Roll Chrome Mac Arm PGO Profile
  • 9103644 Remove stale pixel expectations
  • 23ae545 [ios] Clean up the logic to store grey snapshots
  • 0eba3d4 [cc] Add a feature for 60/120 on WebView
  • c692f9a [iOS][gardening] Disable GetSuggestionsForCreditCards_NoDomLastFour
  • dd11f2a Graphite: remove older gen9 drivers from blocklist
  • fe719b7 [webauthn] Log PIN refresh enclave result
  • cf75fa4 FIXUP: Task manager doesn't close with Alt+F4
  • c3c63dc Update meet_effects hash in DEPS file.
  • ed7df56 [ios] Update bug reference for cancelling pre-render
  • 3c3efac Roll Dawn from 35d372606625 to 41f514e81a3b (7 revisions)
  • d120e6a Roll compiler-rt from f21b1c4878ca to 72832d4f5e1a (10 revisions)
  • 58d0e76 Roll JetStream main from f88580ef6265 to 515ab50a78a8 (1 revision)
  • 9338883 Use BinaryUploadRequest in FileRequestHandler
  • be2d23f [iOS] Show snapshots if we have it even if we have to reload it
  • 6826c33 Fix crash in ScreenCaptureKitDeviceMac due to null PIPScreenCaptureCoordinator
  • 203a2ed [//infra] Run selected unittests with TreesInViz on linux-rel
  • e9e0b3d Reland "Enable `SyncEnablePasswordsSyncErrorMessageAlternative` by default"
  • 5f3aa26 Roll Chrome Win32 PGO Profile
  • e050c94 [Signin] Add AccountInfo::Builder::SetEmail
  • a82dd8a [WaaP] Optimize WebUI string resource loading via LocalResourceSource
  • b3a9178 Remove elements-treeoutline-copy test from chromium
  • 8c57611 Roll clank/internal/apps from bedf6c8b3c3f to ec61b2005a15 (1 revision)
  • df201ed PrefetchScheduler: Enable by default
  • e767762 Roll Boca App from LbV_By81zHKUy65gH... to 2wKeTY60kieHsXWdJ...
  • 289b2b7 [//infra] Turn down trees-in-viz FYI bot
  • b99c6b3 [iOS] Re-enable Reading Mode unit tests on device.
  • 55f064f [webauthn] Use mojom enums for hints
  • 50aba20 Add UseCounters for SVG filter primitive types
  • 80a270a Fix flakiness in WebRequest SecurityInfo tests
  • f199de0 Use BinaryUploadRequest in BinaryUploadService
  • acaedf0 Roll BoringSSL from 2de47dbd87d9 to 0b3bd177c1cc (2 revisions)
  • 86f95a2 [Signin][Android] Cleanup last seamless signin flow TODO
  • c66a5c0 Roll WebGPU CTS from d3d675e0bdd7 to fcf2a820606f (2 revisions)
  • 0e453d6 [Signin][Android] Confirm seamless signin flag enabled for undo snackbar
  • 3d73f50 Enable ResumeNavigationWithSpeculativeRFHProcessGone in the
  • 1e48d53 [Frameworks roll] Roll to 842573022 piper revision
  • 4770c5b ios: Reset _testServer in ChromeTestCase tearDown.
  • e11db01 Roll Perfetto from 7a1ace2c6939 to efb64d38397a (1 revision)
  • bf970fd Roll Chrome Mac PGO Profile
  • d05dc79 [ios] Update expiry milestone of app-background-refresh-ios
  • 309e399 Refactor VideoResourceUpdater usage of TextureDrawQuad to unnormalized
  • 14ea534 Define enum for CEC promotion banner histogram
  • c063e88 Add API for Promotion Banner on CWS
  • 4db1203 Roll Chrome Mac Arm PGO Profile
  • 9904e93 [A11y] Remove announceForAccessibility for PageInfoContainer
  • 6075702 Roll Chrome Win ARM64 PGO Profile
  • d75a2a4 Automated Commit: LKGM 16514.0.0-1073716 for chromeos.
  • f9d3d3e Roll Skia from dbeaee3f8745 to b35e8691fdd0 (2 revisions)
  • f465056 [Viz] Collapse TestInContextProcessContextProvider raster types
  • e1cc6ad [//gpu] Remove unused RasterInContextProvider constructor param
  • 581f24b [//media] Have video_util.cc map VideoFrame's ClientSI directly
  • 5bde894 [EICP] Step 6 - Add support for a second CloudPolicyStore in CloudPolicyManager
  • d678450 Roll DevTools Frontend from cda880c55250 to 51e3a7413f71 (1 revision)
  • df9a0ec Roll BoringSSL from 1524d7be010c to 2de47dbd87d9 (1 revision)
  • d34c35d Revert "Remove callback_helpers.h include from is_callback.h (try 4)"
  • 63184cc Refactor SharedWorker BFCache IndexedDB tests
  • 1ccbd61 WaaP: move reload button handler to trusted web UI list
  • d64df25 Add more crash key to ValidateResponseSentToClient
  • a6c3d29 [//ui] Port remaining BufferFormat usage in GBMSupportX11
  • 45ee138 [Blink] Remove unneeded call from CRPExternalBitmap
  • ac940f6 [//ui] Port BufferUsageAndFormat to talk SharedImageFormat
  • eddfe56 [//gpu] Remove unused InProcessCommandBuffer::Initialize() param
  • 7b98ba8 [Blink] Rename WebGLRCBase state interacting with CanvasSnapshotProvider
  • 933986a [//gpu] Remove enable_gpu_rasterization param
  • 8258763 Use BroadcastChannel for shared worker BFCache test.
  • e2be952 [//media] Have GMBVideoFrameMapper map VideoFrame's SI directly
  • 928d27e [//ui] Internalize BufferUsageAndFormat to GBMSupportX11
  • b88f954 [//ui] Make gbm_support_x11.cc free function static
  • 0aa4fc6 [//ui] Remove BufferUsageAndFormat mojo type
  • 73db981 Roll Depot Tools from ff6558d2ee19 to ecbf89e1da46 (2 revisions)
  • c5a6957 [glic][onboarding] Update profile picker to handle the new onboarding
  • 924d1d7 Roll Chrome Linux PGO Profile
  • fb9ea01 Roll Error Prone from u3Ysea5yvF7JG-0gn... to kRNnsWXC3hVFeKVr_...
  • 7e35e51 Roll clank/internal/apps from c600588721e3 to bedf6c8b3c3f (1 revision)
  • 084a50c Remove stale WebGL 1 expectations
  • 4654ec3 Remove stale trace_test expectations
  • e93bb24 Return accidentally removed comment for NavigationHandle::NeedsURLLoader
  • ffea780 Reland "Skip NavigationThrottles & CommitDeferringConditions for initial WebUI"
  • 1ac5e97 Roll Chrome Android Desktop x64 PGO Profile
  • 304335c cc::ToneMapUtil: Remove PQish and HLGish support
  • 86fc48e legion: Refactor Legion Client request options into a struct
  • a770f9d [iOS Blink] Fix incomplete type error by moving GPUProcessTransport unique_ptr
  • 71e1d51 Roll Kotlin Stdlib from -F1SnCyzbnHxipraI... to _P_mVICimRoH_KwdF...
  • 48ef4f6 Roll Android Lint from WQwX5xvIym8Yib4Ww... to uQHIYETb_gUqkNty6...
  • a1450f4 Roll Manifest Merger from 9e2lYzfL-ltYnilrR... to Vu2o1jtYofux3WRxM...
  • fd72c33 Roll Skia from ea5678932340 to dbeaee3f8745 (1 revision)
  • 1c12653 Roll DevTools Frontend from 7116806a8572 to cda880c55250 (1 revision)
  • 0d56dab Roll Chrome Win64 PGO Profile
  • 8e2e651 Roll Chrome Mac Arm PGO Profile
  • 1ea5b94 Add features to restrict Link headers on subresource responses
  • 32e0593 Extend milestone of conch flags to M150
  • d1c1406 gfx::HDRMetadata: de-optionalize remains
  • c068624 [TDR] Remove TODOs linked to issue 375306309.
  • 5b29190 Roll Depot Tools from 7c09ebfd12c9 to ff6558d2ee19 (1 revision)
  • b77e697 Remove callback_helpers.h include from is_callback.h (try 4)
  • d0058b6 [TDR] Remove TODOs linked to issue 375306309.
  • ffc0e19 Graphite: disable Graphite on D3D feature level 11.1 and below
  • 4da5536 [iOS Blink] Disable LogAVCaptureDeviceInfo() call in video_capture_device_avfoundation.mm
  • 1f9b905 Roll Crossbench from c0cf68ef7183 to c6dc52867e28 (1 revision)
  • 986b8d2 PA: Upgrade DCHECKs to CHECKs in FreeWithSize, guarded by a Finch flag
  • 4824121 Roll Chrome Win32 PGO Profile
  • dc651f6 [omnibox][next] Present file selector as a modal dialog.
  • 6b23eca [omnibox][next] Preserve AIM context when adding files/images.
  • 8ee46c5 Add FLAG_WIN_SHARE_DELETE to FileURLLoader to avoid file locking
  • 078bafa Roll V8 from e1decdf3c340 to 9734121691cc (3 revisions)
  • 844aa9e [Editing] Deflake caret-display-list-002.html
  • 3c86af3 Roll ANGLE from e7721b9c89b3 to 79ad87b2b662 (3 revisions)
  • e823a95 Roll vulkan-deps from 71f4bd2e216b to 9f7342ee3761 (2 revisions)
  • 7ae152d Add instructions to speed up Git operations on linux.
  • 07f3a4f Replace Profile with BrowserContext in UnpackedInstaller
  • a78fbc9 Roll Dawn from 75461721fdee to 35d372606625 (5 revisions)
  • 6fcb68b [chromecast][cleanup] Remove ON_WEB_CONTENT_STOPPED.
  • bd3f711 Roll Chrome Mac Arm PGO Profile
  • 823cf73 Roll Skia from e61cc6d073fd to ea5678932340 (1 revision)
  • b7e5132 Roll V8 from 2d0ab86518a1 to e1decdf3c340 (4 revisions)
  • 3fdabe5 [PDF Ink Signatures] Handle tool changes during text highlighting
  • 713a942 Automated Commit: LKGM 16514.0.0-1073710 for chromeos.
  • 6bb4446 Add PerformanceMarkCustomUserTimingFromSubframe feature flag
  • 71e22f5 Disable flaky tests: ObservationDelayControllerNavigateTest
  • 3890ce7 Disable flaky tests: SearchEngineChoiceDialogInteractiveUiTest
  • 24f3e74 Roll ios_internal from 5cfcae409eb3 to a34df5396676
  • 60d9bc0 Roll WebRTC from fea4eea02abb to 68ca4f24d650 (2 revisions)
  • 35f7df4 Updating trunk VERSION from 7572.0 to 7573.0
  • a7db2f0 Remove oliviatardjono@google.com from //ui/file_manager/OWNERS.
  • 303c2fa [build] Remove gnu++2a special casing for gcc bots
  • c6d093c [iOS] Update histogram expiry date
  • eefa971 Roll vulkan-deps from 3486579f434a to 71f4bd2e216b (3 revisions)
  • 5c16c55 Roll Chromium Variations from _0-UKLP9RE9ZgLUaV... to t_FkaZJZQpSMMxKee...
  • 8e05b72 Roll Skia from 82fff05cc621 to e61cc6d073fd (4 revisions)
  • 50df237 Roll Chrome Mac PGO Profile
  • 8b0e388 Roll WebGPU CTS from f7d27f914236 to d3d675e0bdd7 (2 revisions)
  • dc8611d Delete unused //third_party/android_tools_internal subrepo
  • 1254fba Roll Chrome Mac Arm PGO Profile
  • dea2871 ash: Remove obsolete Ash.Birch.Ranking histograms
  • 70e3639 Introduce ProtectRecentlyVisibleTab feature to Android.
  • 6d0153b Add structured test id support args to perf bots
  • d5851d3 Roll WebView ARM Orderfile from UeP3VMzc6YVY-2zU4... to 70CVn3hKf_f5t-9B4...
  • 9df7e9c [Card Benefits] Clean up BMO category benefits allowlist flag
  • 1272148 Roll Chrome Win64 PGO Profile
  • e82e386 Refactor HistorySignInState and add isTabsSyncEnabled
  • 8606f4e [Card Benefits] Clean up kAutofillEnableCardBenefitsSourceSync
  • 3047a92 Roll Perfetto from 43be17dba6e5 to 7a1ace2c6939 (2 revisions)
  • 61708d2 Update `TestExpectations` with bugs filed for crrev.com/c/7243097
  • 52fa5c0 Introducing LiteRT in Chromium third_party.
  • 39cce76 Limit LayerTreeHostTestSubmitFrameResources to non-TreesInViz only.
  • b087815 Roll ChromeOS Bigcore AFDO profile from 145-7545.0-1765163579-benchmark-145.0.7569.0_pre1555330-r1 to 145-7545.0-1765163579-benchmark-145.0.7571.0_pre1555968-r1
  • a6ad1ac Move LoadErrorReporter to //extensions
  • aae6477 Roll ANGLE from 78bb5a33a9e9 to e7721b9c89b3 (5 revisions)
  • 9ee3ddb Roll ChromeOS Atom AFDO profile from 145-7559.4-1765166302-benchmark-145.0.7569.0_pre1555330-r1 to 145-7559.4-1765166302-benchmark-145.0.7571.0_pre1555968-r1
  • 8b9ef3d Extend expiration dates for Projector and Speech Recognition histograms.
  • 5343053 Use macOS 26 property for display ID
  • 2e73d76 Roll Chrome Win ARM64 PGO Profile
  • 127095d Add structured test id experiment to presubmit builder groups
  • b271742 actions revamp: Rename ETCVM to ETVM
  • bfc4d47 Update WebUI test tools and tests
  • 146d9d5 Increase interactive_ui_tests shards
  • 47ea7c8 Roll Chrome Win32 PGO Profile
  • 8071f3a Roll Chrome Android Desktop x64 PGO Profile
  • 3ac081f [Extensions WebIDL] Convert usb to WebIDL
  • 065eeb2 Reland "Move primary plane creation inside ProcessForOverlays"
  • 4d423ad Roll cpuinfo from 161a9ec37488 to ff24ffee8340 (1 revision)
  • 36361cc Delayload userenv
  • 45baec6 extensions: Add comment about autoplay browser test and desktop Android
  • 22b0007 ash: Move VpnService configurations out of crosapi code
  • 4295faa [Settings containment] Modularize ContainmentStyling and add minHeight
  • 60cefa6 Roll clank/internal/apps from 696228be97b4 to c600588721e3 (1 revision)
  • c90dc4f [Desktop Android] Move (but don't port) windows.create()
  • 450d53f Launch DiscardPageWithCrashedSubframePolicy feature
  • 4c46647 Roll Skia from 07dc97655915 to 82fff05cc621 (1 revision)
  • aa538c1 [Extensions] Refactor and expand incognito chrome url override tests
  • f44dbe5 Import wpt@d85c751820365a5988033dccd1b38de891b4b25e
  • 8caf1bd Enable MeetEffects tests on Win/NVIDIA
  • bcc5189 Roll Chrome Android ARM32 PGO Profile
  • fb614ac Make omnibox focusable upon "focus omnibox" shortcut in immersive mode
  • d7e9999 Prepare TearDown to delete profile in parent's TearDown part 1/n
  • 0a0fccb [MIR] Rename instance state pref closedByUser to markedForDeletion
  • e057038 siso: update to version 1.4.21
  • 214ed5c Roll Chrome Mac Arm PGO Profile
  • e900795 [TreesInViz] Fix two CommitToPendingTreeLayerTreeHostImplTest.
  • 722b2b9 Reland "[Community Contributions] Clean up sTabArchivalDragDropAndroid"
  • b88f51d Add Navigation.OnBeforeUnloadOverheadTime.BeforeUnloadHandlerRegistered
  • 7e024a1 [iOS] Clean up flag kSetUpListShortenedDuration
  • 08955b3 [BrowserControls] ToolbarProgressBarLayer update anchor views
  • ce158c9 [Settings containment] Update MainSettings on sign-in/out allowance changes
  • 83692eb [viewport units] Enable SmallerViewportUnits by default
  • 9988fb0 media: Implement zero-copy video capture on Android (1 of N)
  • 4a5df0d [contextual_search] Add FileInfo support to session handle
  • 1bb0fd8 [search] Eliminate some ParseJsonIsolated usages
  • 7a1209a browser/updater: Squashed revert of d4d03c and 72414e
  • 5b935d4 Roll BoringSSL from 9788a2d73090 to 1524d7be010c (1 revision)
  • 740e9bb Add jxl-rs pure Rust JPEG XL decoder to third_party
  • f7ae0e0 Roll Depot Tools from 0861b0e55cc9 to 7c09ebfd12c9 (1 revision)
  • 2b5def5 [Contextual Tasks] Pass session handle to Contextual Tasks UI
  • 34378b3 [AF] Rephrase comment to remove ambiguity
  • ca57055 spellcheck: switch to use static_cast<int> instead of int(*)
  • b81a852 [Vertical Tabs] Render border around pinned tabs
  • 8367cb7 [Extensions] Add andreaorru@ to webRequest OWNERS
  • 73a426b [Extensions] Add andreaorru@ to //extensions OWNERS
  • 2ca37b6 [css-lists] Fix style builder to set IsReversed even if no counter value
  • a18e50a [Auto-PiP] Close Doc PiP window on 'Don't Allow' for Auto-PiP prompt
← Back to all summaries