Chromium Daily Digest Logo

Chromium Changes Summarizer

Summary for 2026-02-25 on branch 'main'

Chromium Digest: 2026-02-25

Overview

This digest covers 719 commits on the main branch, with 521 identified as relevant to developers. The changes span from (a4822bc) to (8692434) and include a significant number of breaking changes across C++, Web, and Android APIs.

Breaking Changes

  • ⚠️ BREAKING The public method ui::ColorVariant::IsSemantic() has been renamed to ui::ColorVariant::IsLogical(). Embedders using this UI toolkit API must update their code. (42552d9)
  • ⚠️ BREAKING The public header base/win/wincrypt_shim.h has been removed. Embedders must now include <windows.h> and <wincrypt.h> directly. (44a2896)
  • ⚠️ BREAKING The remoting component's public API has been refactored. Method signatures for JingleSession and SignalStrategy have changed, removing dependencies on jingle_xmpp::XmlElement and requiring client code updates. (39a36d8) (8e18de6)
  • ⚠️ BREAKING The sessions::CommandStorageManager::SessionType enum has been converted to an enum class. Client code must be updated to use the new scoped syntax (e.g., SessionType::kSessionRestore). (6d609a2)
  • ⚠️ BREAKING The public MemoryConsumerRegistration API now uses std::optional<MemoryConsumerTraits>, changing its constructor signature and requiring updates for embedders using the memory coordinator. (fad4543)
  • ⚠️ BREAKING The stable feature flag SelectMobileDesktopParity has been removed, enforcing a unified rendering behavior for <select> elements. Embedders can no longer opt-out of this behavior. (dbace03)
  • ⚠️ BREAKING On Android, support for Trusted Web Activities (TWA) and Progressive Web Apps (PWA) has been temporarily disabled on desktop mode due to crashes. This is a major behavioral change for apps relying on this functionality. (0ad6047)
  • ⚠️ BREAKING The public Android WebView API getDefaultUserAgent no longer blocks waiting for Chromium to initialize. Embedders relying on the previous synchronous startup behavior may be impacted. (077ae35)
  • ⚠️ BREAKING On ChromeOS, the public mojom interface auth_factor_config.mojom has been modified, removing several values from the PasswordComplexity enum. Embedders using this interface will experience build failures. (fb0c014)
  • ⚠️ BREAKING The promise returned by the JavaScript methods element.scroll() and element.scrollTo() now resolves at the end of a smooth scroll animation, not immediately. This may break web applications that rely on the previous immediate-resolution behavior. (52379f7)
  • ⚠️ BREAKING In the CSS Typed OM API, the public method CSSUnparsedValue::ToUnparsedString() has been removed. Web developers must now use toString() instead. (05e4b54)
  • ⚠️ BREAKING The public C++ interface IdentityRequestDialogController::ShowFailureDialog has a new filtered_accounts parameter, breaking embedder implementations of this FedCM dialog controller. (d842a6e)
  • ⚠️ BREAKING The legacy OfferNotificationIconView class has been removed. Any embedder code still referencing this class will break. (c83d0bf)

Web Platform & Blink

  • New synchronous HTML insertion methods (beforeHTMLUnsafe, afterHTMLUnsafe, etc.) have been implemented, providing more ways to manipulate the DOM. (9eda719)
  • The Web Audio API's decodeAudioData method will now gracefully handle out-of-memory situations by rejecting its promise instead of crashing the renderer process. (8ca8695)
  • In the experimental AI Language Model API, events and methods like onquotaoverflow have been renamed to oncontextoverflow to more accurately reflect that the limit is related to the context window size. (6b82beb)
  • Several bug fixes were landed for CSS Fonts, ensuring that font-palette-values are respected and that FontFace objects correctly update when font-related descriptors are modified. (7873ebf) (1ffa7f8) (d3eedc0)
  • IndexedDB will now automatically clean up empty, partially deleted databases that may be left behind after a browser crash, improving storage reliability. (c9c6d95)

Android & WebView

  • A significant bug in multi-window mode has been fixed. Tapping a notification will now correctly bring the associated Chrome window to the front, rather than an arbitrary one. (856a347)
  • The chrome.sessions.restore extension API can now accept an optional session ID, allowing extensions to restore a specific window. (bba745e)
  • Support for accelerator keys has been added to WindowAndroid, allowing keyboard shortcuts to be processed natively. (33e98ca)
  • A bug was fixed where Ctrl++/- keyboard shortcuts were incorrectly triggering visual zoom instead of page zoom on devices with physical keyboards. (68575cc)
  • Support for legacy session file paths (pre-Chrome 85) has been removed, simplifying session management code. (c6f736a)

iOS

  • New public APIs have been added to iOS WebView to support fetching full details for virtual credit cards, enhancing payment autofill capabilities for embedders. (45f2eff)
  • The "Assistant Sheet" feature has undergone a major internal refactoring to become a more generic, command-driven "Assistant Container", paving the way for more flexible future integrations. (86ad12a) (d7c4e1b)
  • Support for profile-level managed client certificate provisioning has been implemented, improving enterprise device management capabilities. (06109c9)

Features & APIs

  • A new preference, autofill.other_datatypes_enabled, and a corresponding extension API have been added to give users and extensions more granular control over different autofill data types. (a64e731) (0de8cdc)
  • A new method, GetAllTabsForProfile, was added to the TabStripExperimentService. This allows clients like Tab Search to access the tab hierarchy across all windows for a given profile. (14274bc)
  • The Emulation.setDeviceMetricsOverride DevTools protocol command was extended with a scrollbarType parameter, allowing developers to force overlay scrollbars without emulating a full mobile device. (4471a6c)
  • A new utility function overload has been added to url::DecodeUrlEscapeSequences() that returns a decoded UTF-8 string directly, simplifying common URL parsing tasks. (f3aa498)

Security & Performance

  • The Chrome Root Store now supports validity constraints based on a certificate's notBefore timestamp, providing more granular control over certificate trust over time. (15ed35d)
  • A new feature, ThrottleFrameSinksOnInteraction, was added to throttle non-interactive frame sinks, helping to prioritize user-facing tasks and improve responsiveness. (84dbcb6)
  • The PrerenderHostRegistry has been migrated away from the global MemoryPressureMonitor, part of an ongoing effort towards more granular, component-level memory management. (17fa283)
  • Unsafe buffer usage in the remoting protocol has been replaced with bounds-checked base::span and base::HeapArray to improve memory safety. (6338506)

Build System & Infrastructure

  • The enable_glic build flag was made unconditionally true and the corresponding mojo feature was removed, simplifying the build configuration. (fdcb1bb) (f289e63)
  • The disable_unknown_warning_option build flag was removed, as it is no longer needed for modern Clang versions. (9ba319a)
  • Test infrastructure was updated with new Android Virtual Device (AVD) configurations for the upcoming Android 15 and 16 releases. (0f88ade) (606228f)
All Commits (719)
  • 8692434 [soft navs] Expose ContentfulPaint{TimingInfo}::Clear()
  • 9c69e00 Refactor predictors GN targets and clean up LCPP unittest params
  • a67403c media: Add range extended validation for H.264 and H265 parsers
  • 8c393ec Roll vulkan-deps from 9d9fbe06e88d to d3db3d114ff7 (1 revision)
  • f4dfa37 [Extensions] Restore webRequest listeners via EventRouter (under flag)
  • 124f47d Avoid duplicate map lookups.
  • 4e09c78 Disable flaky GaiaLoginIntegrationTest.GaiaLogin test.
  • 60f7924 [Bundled Settings] Fix minor styling on JavaScript Guardrails Row
  • ea7eaf1 [Reading mode] Don't log toggle presentation for EntryPointAfterOmnibox
  • ab4cbde github: automatically close PRs with links to documentation
  • 0ec3c7e Update event handling logic to keep InnerNode invariant valid
  • 0c2f70f Revert "[context-input] Dont delete query controller files if they are submitted context"
  • 03ab363 [focusgroup] support writing direction
  • ec6ec3c Replaces argparse with Click for cleaner argument parsing
  • a1896b8 [omnibox][composebox] Adjust Omnibox Composebox input height
  • 672d867 Remove unnecessary LOG(ERROR) from AddEventListener.
  • e9f81eb Migrate Phone Hub components to use ScopedObservation.
  • 2486d7a [Docs]: fix typos in .github/README.md
  • 8a381e9 Remove history browser test dependency on concrete observers
  • 7b561c3 [Clank] Fix AppTask.startActivity crash on older Android versions
  • e507e55 WebUI: Enable orphan Mocha tests check in build_webui_tests by default.
  • c301f65 Refactor Phone Hub observers to use ScopedObservation
  • f289e63 Remove enable_glic mojo feature
  • 04f98c3 [CSS Modules] Reserve vector in AppendAdoptedStyleSheets
  • 2518fba [CVC storage iOS] Remove fieldtrial_testing_config for AutofillEnableCvcStorage
  • e0dac4e [CodeHealth] Rename variables to use samples/frames correctly
  • 3107880 Roll Chrome Mac Arm PGO Profile
  • ba996d3 Make it more explicit that CSP preloading won't happen if the trial feature isn't enabled.
  • 5007d3c Use base::ScopedObservation in ash/components/phonehub
  • 39a36d8 No more XmlElement in /protocol
  • 8c6ee6c Use `std::move` to avoid a vector copy.
  • 17fa283 Migrate PrerenderHostRegistry off MemoryPressureMonitor
  • ac41b87 Fix crash in ExtensionBrowserWindowHelper on desktop Android
  • 33e98ca Add Accelerator support on WindowAndroid.
  • e5557d8 Fix H264 recovery point parsing
  • c63cf22 Revert "Legion: Clear disconnect handler on destroy"
  • a1e1500 [Gemini CLI]: Sync CL description prompt with template
  • 43607c3 [PDF] CHECK the bitmap format after rendering
  • da563f5 [Doodle] Cache Doodle in Java layer to prevent animation and save network
  • 368df36 [CodeHealth] Spanify remoting/codec/audio_encoder_opus.cc (1 of n)
  • 3dfced9 Roll WebGPU CTS from b043a4eaef1e to 21ecca5d71d4 (1 revision)
  • 5f290da Roll Perfetto from ea8d0aaeb1e2 to c9609d1e65bc (1 revision)
  • afc4e76 Roll Depot Tools from ea315efb63f0 to 044f01ae0351 (1 revision)
  • d0fc3f4 [bedrock] Activate Browser directly in event manager unit tests
  • 569ca32 Rename struct/methods; remove type alias
  • 16d90c5 [contextual tasks] Fix crash in InputStateModel due to dangling session handle
  • a8985ec Fix broken md link
  • 2e1812f [PWA Migration] Add integration tests for forced migration and policy installs
  • b5ca243 Roll TFLite to Next Green Version
  • 1c0c358 Roll Infra from 487410e9bb0d to f769e04338c2
  • 1bb52fa CrOS WebUI: Enable orphan Mocha test checks in remaining folders.
  • 31c2ca8 Reland "Roll WebGL c01b768..8fc2a0d"
  • dbace03 Remove SelectMobileDesktopParity flag
  • b74609e Roll BoringSSL from d8179925ca52 to 626a2578ac3e (1 revision)
  • ca3babe [field trial] Config for ThrottleFrameSinksOnInteraction
  • 93b326e [StringTranslations] Translate toast strings
  • b81e315 [Reading Mode] Track RM opening in side panel due to empty distillation
  • ace5f38 Use an anonymous namespace inside html_text_area_element.cc
  • 2b93825 Roll new AVDs for Android 15
  • d583930 Roll DevTools Frontend from eaafd23651c4 to a718fd59205c (1 revision)
  • 74ee74e [NtpMvc] Add feature flag NtpMvcRefactor.
  • 4ffcacd Revert "Animating to display:none should not remove the pseudo-element"
  • 7328ddf Roll V8 from e662db5e6621 to 018afda931c6 (5 revisions)
  • 1aee7a9 [Extensions] Rename on click listener in Desktop Androidextensions menu
  • 136c788 [Masonry] Simplify subgrid wpt tests
  • 9ba319a Remove disable_unknown_warning_option
  • beb4d5e [NTP-Real-Box]: Replace icon with Material icon.
  • 43853ba Roll Chrome Android ARM64 Orderfile from 0DW5XAWuFsG9Hh3Nq... to t3WOzTiHuLGI18PRc...
  • 94d9545 Introduce ClickToolJavaScriptFeature and click_tool.ts.
  • 450dc8e Roll WebView ARM64 Orderfile from y25lCTYImnc6jdFpR... to ChSEiXIT87IWuWMsa...
  • 5897630 Update CBB autoroll for the builds refs
  • 1e76dac Roll Chrome Win32 PGO Profile
  • 912e33a Roll goldctl (win) from zR-xLwMicOxKme84I... to iJxKsZ-rNAW1iNpEZ...
  • df33d7f [bedrock] Eliminate BrowserWindowInterface deps from BrowserList
  • 42552d9 Rename ui::ColorVariant::IsSemantic() to IsLogical()
  • ac82530 Roll goldctl (linux) from 7VtXoKLR2gQzBX1OO... to TEbyFSosIawFAQ0Gw...
  • b3c06f3 Suppress `...browsers/windows/nested-browsing-contexts/window-top.html`
  • 99798d1 [bedrock] Introduce TestingBrowserProcessDeathTestMixin
  • 360ea1b Roll goldctl (mac arm64) from xD54rz_TXvJfUXFb6... to OitcbHP6RwQc0Jesm...
  • f49713b NavigationAPI: Extract NavigationType conversion utils into its own file
  • 72cf713 Roll Chrome Win64 PGO Profile
  • 84dbcb6 [//viz] Throttle non-interactive FrameSinks during interaction
  • 29dfe39 [//viz] CFSS can throttle non-interacting
  • 3ceb5be Roll eigen from c4c704e5ddca to d0d70a952766 (1 revision)
  • 1fb5173 Extend expiry for Blink.FedCm.LifecycleStateFailureReason.
  • f72d76a [Tab Dialog Manager] Ignore a11y input events
  • 0963b9e Roll goldctl (mac) from ekPxFfonWAPuyfvAa... to 7eneeRHPfLnTAuPNW...
  • 4d90d96 Add OWNERS files to various web_tests/ subdirectories.
  • 56c5512 [Navigation Transitions] Ignore a11y input events
  • d64ca09 Add new InvocationSource for PDF and HostCapability for PDF_ZERO_STATE.
  • 6b82beb [Prompt API] Rename "quota overflow" to "context overflow" in AI Language Model API.
  • 814de74 Roll Chrome Mac PGO Profile
  • 5c1d334 Revert "glic: [5/N] Implement a stub WebUI"
  • e58665d [TabContentManager] Support background tab capture
  • b772c99 [ios][apcv2] Basic form control data - excludes redaction
  • 6803e3e Reland "Plumb Profile to FuseboxSessionState."
  • 9eda719 Implement {before|after|append|prepend|replaceWith}HTML{Unsafe}
  • fad4543 [Memory Coordinator] Make traits optional on MemoryConsumerRegistration
  • ac8aedb [soft navs] Enable SoftNavigationEagerIcpEntryEmission by default
  • 5513c0f private_ai: Add FORMS_AI feature name
  • 23fee89 Remove MemoryPressureListener from GpuImageDecodeCache
  • fe76275 Revert "Legion: Fetch tokens asynchronously during construction"
  • 8189004 [SidePanel] Pass the X-offset through Viz
  • 49db290 Remove unneeded WebUIBrowserInterfaceBrokerRegistry::ForWebUI() call
  • 0e09555 WebNN: Remove WeakPtrFactory from WebNNTensorImpl
  • f9b7acb Revert "Add system flag for Lens unified flag menu."
  • 4d82d50 Allow reentrancy for PlatformEventSource observers and dispatchers
  • f581a1d Fire UiaRaiseChangesEvent for added text markers
  • 4fd890d [omnibox][next] Make context entrypoint button screen reader accessible
  • 1dbc4b3 [Cleanup] Fix typo in system_notification_helper.h
  • 65f15e4 Roll Chrome Mac Arm PGO Profile
  • 684454b [Vertical Tabs] Fix collapse button contrast with custom themes
  • ee71357 Tidy Blink Text Painter class headers
  • 4297fc0 safe_browsing_use_unrar: add include guards
  • 0a775f4 Make JNI Callbacks work with raw JavaRef<> params
  • 7ad6b30 Roll clank/internal/apps from c7083043ef6b to 1826169221c2 (1 revision)
  • 1a03ae2 [iOS] Prevent reporting uninteresting JS errors
  • cf9d2ca Roll Chrome Win ARM64 PGO Profile
  • aaeb984 Roll Dawn from d21eb9f4c686 to 67a0164c434f (8 revisions)
  • ac17681 Refactor dialog to using cr-dialog and update user info to match new chin UI mocks.
  • 0297de7 Remove SecureNotValidated SuccessTime and FailureTime metrics
  • ae703f6 Roll ios_internal from b0d169050dec to 69ec8e8ce45a
  • f8e63ee [EnableGlicCleanup] Add presubmit check to prevent new usage of buildflag
  • 1c7b101 [NTP][Realbox] Add UI tests for contextual entrypoint in realbox
  • 7b5abf9 Add kaklilu@ as an OWNER of i/c/b/i/actuation
  • 989d355 Remove some unsafe buffers from mojo/public
  • e2f3cf9 Remove unused block
  • 580b87f Sync feature protos.
  • 42ecd4b Roll clank/internal/apps from 6ee72ff5ecc3 to c7083043ef6b (1 revision)
  • f7d131a [iOS] Show Zero State When A New Tab Is Created For Copresence Arm
  • 2b7ab5a [PageActions] Defer reentrant model notifications in PageActionModel
  • 287e2d0 [Search Integrity] IWYU
  • 1f13c15 [Connection-Allowlist] Enforce connection allowlist for link rel
  • ddb36dd [Devtools Protocol Input Handler] Ignore a11y input events
  • 91feb92 [Extensions] Update `tabs.sendMessage` documentation for MV3
  • 0ebcab5 Roll DevTools Frontend from cf4128082e46 to eaafd23651c4 (1 revision)
  • bce5645 [ScanCard IOS] Add SaveCardActionType enum for save_card_bottom_sheet_mediator to branch for save-and-fill
  • 092ca59 [Masonry] Move GridSizingTree methods to grid_layout_utils
  • d84b0fe Roll vulkan-deps from 911e009961ed to 9d9fbe06e88d (1 revision)
  • 5f22d6e Add browser test for UI DevTools connection
  • 4d7b6ec Roll optimization-guide from 4d901f59798c to b969c7f54f35
  • 26b290f Roll Chrome Android Desktop x64 PGO Profile
  • 6d609a2 Change CommandStorageManager::SessionType to be a scoped enum (`enum class`).
  • b77d765 Draw the selection as dashed rectangle.
  • a42395f Roll Chrome Android ARM64 Orderfile from TwrLw1Z-0Tq1f9EnA... to 0DW5XAWuFsG9Hh3Nq...
  • aa4472b Roll WebView ARM64 Orderfile from W36qMiAp0kSgCH5Ek... to y25lCTYImnc6jdFpR...
  • b6ec526 [simplification] create a separate component for composebox file inputs
  • 0ddc2e2 [AIM] Dismiss popup when input ends.
  • fbcb2e3 Extensions: Cleanup: Prefer curly braces after parentheses
  • cc130ce Mark updating-the-finished-state.html as flaky
  • d80f3e1 feat: Remove last usage of BWGPageContextAttachmentState
  • 42631da glic: [6/N] Hide host view for glic selection overlay
  • 28b682e [Extensions] Add a test for filtered / unfiltered event interaction
  • 4fc120a [AIM] Disable clipboard when full on attachments.
  • 5483350 [AIM] Adjust mediator ChromeItemPicker usage.
  • d45a679 [gfx] Fix data race in DisplayICCProfiles
  • 8eccd44 [Default Browser] Add flag to set prompt surface
  • deefde5 Explicitly allow reentrancy for observers that are currently reentrant
  • 389366e Update prompt eval model
  • f4a2af4 Initialize ICU to load ICU data file for fuzzing
  • 18cb917 [NtpCustomizationV2] Fix bottom padding of buttons in preview dialog
  • 7936d21 Roll ANGLE from 4e623053ea80 to d5f67f17ee48 (4 revisions)
  • 38e23a2 [iOS][mvt-customization] Fix `testMostVisitedPinEightSites` on device
  • 840c418 [animation-trigger] Sync blink and cc trigger state
  • 77879dc glic: [5/N] Implement a stub WebUI
  • 7d5f5d4 glic: [4/N] Move glic region capture feature flag to chrome/common
  • e4f4df9 glic: [3/N] Add untrusted ui on C++ side
  • b92aa8f Add PasswordEchoSplitSettingDelegate interface
  • 9f739bd Roll Depot Tools from 8aad2863865f to ea315efb63f0 (1 revision)
  • 0a3365f Disable `force_sync_hash_computation` for single download scans.
  • fdcb1bb [EnableGlicCleanup] Set buildflag to be unconditionally true
  • 429815f Extensions: Cleanup: Prefer curly braces after parentheses
  • 8ca8695 [WebAudio] Handle OOM in AudioArray and decodeAudioData
  • 10a7017 Roll Chrome Mac Arm PGO Profile
  • 7d37880 Distill text fields in PDFs as divs.
  • 18b67b9 vpx_video_decoder: Support VP9 alpha with 422 and 444
  • 3bee288 Add integer value extended attribute support to the IDLParser
  • e2cf661 [DCSI]: Fix memory attribution for single-element CompoundImageBacking.
  • 4f2f965 Android: Add a ClipboardImpl method that allows passing in mime type
  • 2f9c524 CodeHealth: Clean up base::Feature InternalServerSideSpeechRecognition
  • 5684a2b GlicChromeStatusIcon: update the status bar icon for Mac
  • a2a337a [Android] Use @DisableIf for MultiWindowAppMenuTest flaky test
  • 694dbbc Separate 'clear' and 'edit' actions for cr-shortcut-input
  • 3bb6c60 Ignore migrate_from if the manifest doesn't specify an id
  • a2a4734 [CodeHealth] Spanify FromInterleaved in blink/.../webrtc
  • c6f736a Remove support for legacy session paths
  • a71c6a6 Implement stream{Append}HTML
  • 1b5a77c [composebox] Fix multiple ContextAdded metrics for omnibox.
  • 2e3f1ff Avoid duplicate map lookups.
  • f16d6ea Enable custom elements when streaming
  • 62f3caa Refactor fragment parser calls to reduce repetitions
  • ab03c01 Replace metricsPrivate with histograms in composebox and searchbox
  • 11f9635 Migrates actor_overlay to build on Android. Separates actor_overlay_web_view into a non-Android target.
  • 5ba3797 Fix position of marker in `file_with_incomplete_command`
  • ceb3dfa Roll optimization-guide from 946192c2badf to 4d901f59798c
  • 9ddc7f4 [ComboButton] Fix MacOS 26+ layout
  • 49387bb Roll Catapult from 9fdb1d4c9d0f to 1ec586469aed (1 revision)
  • 9149213 [code-health] Clean up expired `nearby-mdns` flag
  • d2d35f0 [TcpConnectJob] Add support for second Connector.
  • f4c3960 Roll V8 from b8acdbdf77d8 to e662db5e6621 (21 revisions)
  • 886af45 android: Support Trichrome in bisect-builds.py
  • e9ddbc5 Roll BoringSSL from 7d88bb1bf337 to d8179925ca52 (2 revisions)
  • 94da684 Roll Chrome Win64 PGO Profile
  • 7c8cf29 Roll Ink Stroke Modeler from eb42ec75e79e to 3fa5129ed1ae (1 revision)
  • ddb22f5 Remove anchor attribute prototype
  • e5d5853 Adjust fusebox-related margins when window width changes
  • 0ad6047 Disable TWA and PWA on Android Desktop
  • b7f9da5 Modularize //chrome/browser/install_verification
  • 2260127 [Vertical tabs] Update custom scrollbar styling
  • 4b22872 [projects] Fade vertical tabs background as panel is animating
  • 2af0e71 Acquire AI Threads from ContextualTasksService for Projects Panel
  • b023839 Roll Chrome Win32 PGO Profile
  • ee93f4a Fix windows-link build by adding readme.md to inputs
  • a9edcbd Add cross-device setting import Snackbar UMAs to enums.xml
  • 197dc24 Roll ios_internal from 923701b6eb85 to b0d169050dec
  • 4ee6fb6 [x-plat promos] Trigger the new Price Tracking x-platform promo
  • be90276 [context-input] Migrate android query controller bridge to use session handle for suggest and search url generation
  • 97b7963 Roll Enterprise Companion chromium_win_x86_64 from sdWqTkd1M4bPCqg4M... to -_OujuAWhp99JrQVo...
  • c81c4dd android: Refactor tests to use MockitoJUnit.rule()
  • c9d9e7c Update the ActuationErrorCode to have more extensive error codes.
  • 9c8c0cd [Extensions] Remove SkipResetServiceWorkerURLLoaderFactories flag
  • c7bf5b9 Roll Updater chromium_win_x86_64 from 2@1584030 to 2@1585005
  • 7976791 [media] Add VideoFrame::set_color_space DumpWillBeCheck
  • 850d46f Roll Updater chromium_win_arm64 from 2@1584005 to 2@1585011
  • 645fd7d Roll Perfetto Trace Processor Win from c82fb577c5b0 to ea8d0aaeb1e2
  • bc7e885 Implement list unpacked extensions CDP command
  • ff5ade7 Fix bug where link dropped after last tab of group was included in group
  • d2eedb0 Roll clank/internal/apps from 05f20f8eedd5 to 6ee72ff5ecc3 (1 revision)
  • 9db7e3a [Tab Strip Glic Button] Plumb click handler to toggle Glic UI
  • 0698485 Add glic settings page owners
  • 65932de Reland "a11y: use AIDL to wire up communication from test to service"
  • 10cb2f6 Roll src-internal from 360e866c7467 to 7ad4826d2f34 (2 revisions)
  • 3aa28c8 Roll DevTools Frontend from 3b0f17f2dd09 to cf4128082e46 (1 revision)
  • def39b3 Fix some crashes from dragging full groups in the VT strip
  • 08c2d54 Avoid duplicate map lookups.
  • 30e9525 Re-enable four tests on Mac
  • 105d955 Revert "Roll WebGL c01b768..8fc2a0d"
  • bcc81a9 Roll SwiftShader from b7b7fd22e5f2 to 242a8121f8ea (1 revision)
  • 14d8d12 [Eche] Fix dangling pointer in EcheTrayStreamStatusObserverTest
  • 1fc7f15 Roll clank/internal/apps from 43f0249db9e5 to 05f20f8eedd5 (1 revision)
  • 1f28b72 Fix type error of `GetHandwritingStrokeIdForPointer`
  • 87aff91 Fix nested Document role in PDF accessibility structure builder
  • 1006877 Remove expired resource attribution memory metrics
  • 8830c82 WebUI: Run basic tests on more WebUI URLs
  • a1621a2 Enable profile-level SaaS usage reporting on Desktop.
  • 589cc72 Avoid duplicate map lookups.
  • dc4083e [AutofillAi - M4] Create date fields in the EntityEditor.
  • 5319ab6 Revert "Move image filters and backdrop filters to RPDQ"
  • b11ef27 [EnableGlicCleanup] for c/b/skills
  • d3be010 Roll Ink Stroke Modeler from 278aacc769cd to eb42ec75e79e (1 revision)
  • 6d40bcb Clean up HistogramTester usage
  • 22b0d10 [context-input] Fix context_id mismatch between search url and file upload vsrids
  • 92e0565 [AutofillAi - M4] Implement date field skeleton.
  • f296f6d [context-input] Dont delete query controller files if they are submitted context
  • 1d357e7 Move image filters and backdrop filters to RPDQ
  • d65e627 Remove ShadowPostTask in favor of the default PausedExecutor (part 3)
  • 124bad8 Roll WebGPU CTS from 0ea9bce4c425 to b043a4eaef1e (1 revision)
  • 66a43e7 Remove expired histogram entries for Omnibox.AnswerActions
  • 6eebc21 Roll ios_internal from add54d5f45aa to 923701b6eb85
  • 236f4f5 [omnibox][next] Fix keyword and AIM selection for *SelectionControl
  • 51c77ae Fix crash when saving new entity in FakeWalletPassAccessManager
  • f726887 Roll Chrome Mac Arm PGO Profile
  • 787944b [ios][apcv2] Extract video and canvas data
  • 99aca85 Use `url0` key to match url keys used by other iOS crash reports.
  • 9f6324d Roll vulkan-deps from b73fd5ddcde4 to 911e009961ed (1 revision)
  • 250d106 [Build] Move NoAndroidLog diagnostics to usage site
  • d30b0e7 [HoT][Android] Remove unused Settings dependencies
  • 5fc5d8f Roll src-internal from b5a4dbef8ede to 360e866c7467 (2 revisions)
  • a8ee74b Remove expired performance scenario histograms
  • 51c61b8 Remove expired ChildPerformanceCoordinator histograms
  • f1cd2a5 Rework how AwContents tracks owning context.
  • 850f5bd webrtc-internals: add cpuPerformance to dump
  • fb3d4e7 [DCSI] Backing's type in SharedImageBacking::ReadbackToMemory().
  • d842a6e [FedCM] Pass filtered accounts to ShowFailureDialog
  • 2f9b128 Roll DevTools Frontend from 90c46528140d to 3b0f17f2dd09 (3 revisions)
  • 82deffd private_ai: Do not use base::Unretained
  • 609f032 [x-plat promos] Add accessibility label to promo QR code
  • 77c2e66 Listen for tab close in invocation handler.
  • cabaaad [IOS] Add an "ask about this page" chip in the composebox
  • b2027a2 Roll llvm-libc from 5a08c449f7cf to f4940a069bf7 (11 revisions)
  • b015710 Reland "Roll clang+rust llvmorg-23-init-3706-gfc648683-1 : llvmorg-23-init-4965-g686acf63-1 / 7dc2e92b83be02dc07f87be7e94266d6e48e5ca5-1 : c78a29473a68f07012904af11c92ecffa68fcc75-1"
  • 515d95e [AIM] Remove reanchorViewsForCompactFusebox calls from other props.
  • 6c06b82 Roll Chrome Android ARM32 Orderfile from Bdx54xhtvrgS59rpc... to SJahBdSRUxLDxpYa-...
  • b695eff [dbsc] Add crash keys for unexportable key creation
  • ff7d855 Add shared css for WebUI toolbar buttons.
  • 243f7c0 [composebox] Remove `resetModes` when canvas is selected on submission
  • 54a35cf Roll Perfetto Trace Processor Linux from c82fb577c5b0 to ea8d0aaeb1e2
  • ab99370 Roll Chrome Win64 PGO Profile
  • 72d044f Roll ANGLE from ae2c4700d4c4 to 4e623053ea80 (2 revisions)
  • a250d23 build: automatically set manifest=NONE for Robolectric tests
  • 8b9e32d [iOS] Fix background issue on topToolbar buttons iOS 17-18
  • b45211d Clean up some storage OWNERS
  • 419b005 IDB: remove failing CHECK
  • bc55c46 [sequence_manager] Fix crash when canceling tasks during unregistration
  • 52379f7 Resolve element.scrollTo promises at scroll end.
  • 27f8001 Roll Chrome Win32 PGO Profile
  • 0800d6e Roll Chromium Variations from G2Efnk-j3n-VapnZf... to q7zVbuVh1wZMuMy-e...
  • 6b2d6f5 SlimWebView: Support permissionrequest event for media
  • 0aa612c Disable failing test SkipsSamlConfirmPasswordScreenOnPolicySet.
  • c8643fe Extend Sync.Throttled[All|Some]DataTypes histograms
  • d8e47e2 SlimWebView: bind GuestViewContainer destruction to GC
  • 60b6a03 [rustmojo] Add ability to create self-owned receivers.
  • a8a3450 [iOS][AIM] Allow reverting the tool to regular search in composebox
  • 2312dc1 [installer] Increase the failure sampling rate
  • d0061f1 [persistent_cache] Add a DIR_METADATA file for the component
  • 28ac290 Remove unsafe buffers from sql/fuzzers/recovery_lpm_fuzzer.cc
  • 6e2f655 Remove obsolete timing histograms
  • c1bb60b [ios] Remove support for migrating list of discarded sessions
  • 1c9d7c1 Rename CreateFallbackImageResult::kFailedTextureExternal
  • 36a01db Roll Chrome Win ARM64 PGO Profile
  • 085a5f2 Roll Breakpad from 79099fdf668a to 9f26d631e406 (1 revision)
  • 174b870 Roll Media App from 5a8A1enGgJ0yrPw3G... to sS8xN2zTuF8yKu607...
  • 564eac5 [tips] Add the UI and button testing for customize MVT tip notif
  • 2a9c0b6 Bridge for AAPM status in Webview
  • 627579a [iOS] Fix Clipboard Context Variable Name
  • ef3e15b Legion: Fetch tokens asynchronously during construction
  • a84cd00 Roll src-internal from 107d2e947c39 to b5a4dbef8ede (1 revision)
  • 6762cc0 Remove const in FontFeatureValuesMap iteration source
  • a05183d Legion: Clear disconnect handler on destroy
  • 1a1138f feat: Add GeminiPageContextAttachmentState to replace deprecated naming
  • 3edebba Roll Chrome Mac PGO Profile
  • 3c18022 Remove @LooperMode(LEGACY) usage from //chromecast
  • dc4c099 [iOS][JS Error Reports] Redact stack before uploading
  • fb0c014 LPP: Simplify PasswordComplexity enum in auth_factor_config mojom
  • 013b136 Spanify StreamPacketProcessor
  • 9ec6fae [iOS][Feedback] Remove unused code
  • c240939 [Signin][Android] Remove helper method in Signin FRE tests
  • c0975fa Remove @LooperMode(LEGACY) usage from //base, //components, //content, //ui
  • f304cfd Displaying a location tracking message on the device disabled screen.
  • 8d6111f [Signin][Android] Remove deprecated methods in FakeAccountManagerFacade
  • 7109251 [Signin][Android] Migrate History Educational Tip to activity-less flow
  • 158d2fc Roll Help App from da9L0PQVy-Wq1C-mw... to ZjOACqCl94CzvmR1U...
  • e1063b8 Roll DevTools Frontend from a638b8c9274d to 90c46528140d (1 revision)
  • 2fc154c Roll androidx from xPOOM_O7RM7zSKvQL... to xaK45BLOgiQ39L2Uk...
  • e1b2e67 [iOS] Hide Ask Gemini Chip Badge After Tapped
  • 2437f68 Roll WebView ARM Orderfile from a1BVyfZOheuXbrqpo... to Gdkaokq_cUe9aCO9A...
  • 6836f45 [TabContentManager] Modernize JNI
  • 99192db [iOS][Assistant] Add AssistantContainerDetent and update protocols
  • 86ad12a [iOS][Assistant] Rename Assistant Sheet to Assistant Container
  • d7c4e1b [iOS][Assistant] Refactor Assistant Sheet to Command-Driven Container
  • cbdf625 Implement ActorFormFillingServiceImpl::ClearFormPreview()
  • 45478e1 Roll V8 from 99d2bf95c84e to b8acdbdf77d8 (6 revisions)
  • d12213a [CodeHealth] Update a flag description.
  • 45f2eff Add support for fetching virtual card details
  • 8795c05 Roll WebView ARM64 Orderfile from WZN7ndevs8GQBO-6m... to W36qMiAp0kSgCH5Ek...
  • ea14fbe [rustmojo] Add support for older header versions
  • aa6d692 Roll wpt tooling
  • d40b027 Make base/.../AconfigFlaggedApiDelegate.java have OWNERS=*
  • f9845a2 Register ACCESSIBILITY_ANNOTATION in sync
  • fc97296 [iOS] Gate PageContext extraction eligibility at the wrapper level.
  • dea37ca Updating trunk VERSION from 7704.0 to 7705.0
  • 6af6fcc Roll Perfetto from c82fb577c5b0 to ea8d0aaeb1e2 (2 revisions)
  • 2d15e2a [iOS] Invoke floaty when gemini from edit menu is clicked
  • decfb5f updater_tests: reshard to 2 shards on win ASAN
  • f3855b1 [Persist] Integrate batching in TabRestorer
  • ba2b286 Fix CJK corner case in IsNormalizedNameVariantOf optimization
  • 6f53bf9 [Persist] Save divergent nodes during Restore Orchestration
  • 59fdcc7 [Persist] Fix StorageLoadedData & Restoration lifecycle issues
  • 7c68e46 Revoke the ability to call Web Printing API in Chrome Apps
  • afac534 Roll Chrome Android ARM64 Orderfile from Fhyo9wJ7i0RbuoEFS... to TwrLw1Z-0Tq1f9EnA...
  • 405e151 [KP] Automatic update from google3
  • 3ae3790 Remove field trial config for Chrome Identity HaTS Extended Surveys
  • 79a72ef Roll Perfetto Trace Processor Win from 11ee74e8de23 to c82fb577c5b0
  • e2985e1 [iOS] Hook up Gemini PageContext extraction to rich extraction flag
  • 257ecec Roll Chrome Mac Arm PGO Profile
  • b57b939 Fix touch mode for WebUI reload button
  • 35eb1c2 [EnableGlicCleanup] in chrome/browser/sync
  • c002acf Rename representative_fields to trigger_fields in autofill tool code
  • abdbc65 Roll Chrome Linux PGO Profile
  • dd30412 [IOS] Start the StoreKitCoordinator with clearPresentedState regardless
  • 09ccf91 Remove AutomaticJsOptimizer field trial test config.
  • 968a72c Add delivery_date to AccessibilityAnnotation::Shipment
  • 132f4eb [iOS][PRDBD] Implement QuickDeleteOtherDataViewController
  • 533979b Roll ICU to catch up on cosmetic fixes
  • 13c6957 [ios] Cleanup WebStateImpl::AddWebStateImplMarker()
  • 5651905 iwa: Remove unused pending_read_responses_ in SignedWebBundleReaderImpl
  • 5efc7a0 Validate CSSUnparsedValues upon assignment
  • bf46509 Add empty sync bridge for AccessibilityAnnotations
  • 3afc6e6 [HoT][Android] Remove unused Autofill dependencies
  • 43d98b2 [Bundled Settings] Reduce space above first section title
  • 8376e8f Roll ios_internal from 87d91cccac4b to add54d5f45aa
  • c71b4c0 Check DevToolsEmbedderMessageDispatcher argument lengths up front
  • 6128543 Multi-account device metrics: Make recording period configurable
  • 282db63 Roll DevTools Frontend from ec7a9ff12b0a to a638b8c9274d (1 revision)
  • 4684c5b [CT] Automatic update from google3
  • c83d0bf Remove legacy OfferNotificationIconView and associated migration code
  • 25a5bc7 [ios] Remove the dependency to base/ in observer.h
  • 45570c4 Roll ANGLE from f187d4338681 to ae2c4700d4c4 (3 revisions)
  • 9333490 Roll src-internal from 3bba5286b185 to 107d2e947c39 (1 revision)
  • 8e56878 [Encrypt Bookmarks] Use JSONStringValueDeserializer to load bookmarks.
  • be9f215 Updating XTBs based on .GRDs from branch main
  • 432a509 Mark input-element-pseudo-open.optional.html as timing out under MSan
  • 231263f [SVG] Fix negation in StrokeDashArray cache check
  • 57e5495 Roll Chrome Android ARM32 PGO Profile
  • 7232e6f Roll WebView ARM64 Orderfile from mRq4AaGYOwceIOIvH... to WZN7ndevs8GQBO-6m...
  • bfc2c30 Roll Chrome Android Desktop x64 PGO Profile
  • 8d1a929 IWA: disable web app internals tests for Windows
  • f3c3326 Re-enable flaky cookie controls interactive UI tests
  • aa6430e [ios] SceneCoordinator SceneCommands cleanup
  • daf90f5 Roll Chrome Mac Arm PGO Profile
  • ed4dbab Roll Crossbench from b82fbffceba0 to 0078e33dafe0 (1 revision)
  • ba41be7 Roll Dawn from 0751fb7b7aa8 to d21eb9f4c686 (7 revisions)
  • f85dba5 Roll ios_internal from c367c4458e44 to 87d91cccac4b
  • cc5cb4d Extend expiration dates for RegionalCapabilities debug histograms.
  • d3eedc0 [Fonts] Apply font-feature-settings and font-variation-settings after modifying FontFace object
  • 7d7c214 [ios] Remove the dependency to base/ files in closure.h
  • c2e3327 Roll DevTools Frontend from ec4ec382e962 to ec7a9ff12b0a (3 revisions)
  • c27f0b2 Create new flag `SearchSettingsUpdate`
  • 2ea6436 Roll Chrome Android ARM64 Orderfile from bJqv1YS8BQK-liQKg... to Fhyo9wJ7i0RbuoEFS...
  • a93dd0a Roll Perfetto Trace Processor Linux from 11ee74e8de23 to c82fb577c5b0
  • 153509c use std::to_underlying for BrowserColorScheme enum
  • 23efde4 Revert "[STTS] Add temporary test to debug flakiness"
  • 6e66c12 Revert "a11y: use AIDL to wire up communication from test to service"
  • ef25b2f Dont set wgpu::SharedTextureMemoryAHardwareBufferDescriptor::useExternalFormat
  • df38a44 Roll BoringSSL from d8e4bc570893 to 7d88bb1bf337 (2 revisions)
  • 077ae35 [WV] Make getDefaultUserAgent faster by not blocking on startup.
  • e52160b [iOS][Feedback] Remove unused code
  • d31252e Roll src-internal from 23f2491e084f to 3bba5286b185 (2 revisions)
  • 2f6172f Roll Enterprise Companion chromium_win_x86 from z3koeMSymJBTw3Tgz... to rfv6YvKlY5-SiyxdL...
  • d790328 Revert "[Signin][Android] Display button when SigninLevelUpButton flag enabled"
  • d398780 Roll Enterprise Companion chromium_win_x86_64 from oBkBfmfsoJQGZBpYJ... to sdWqTkd1M4bPCqg4M...
  • 4435986 Roll Updater chromium_win_x86 from 2@1584040 to 2@1585007
  • 2d0a10f Roll Enterprise Companion chromium_mac_amd64 from 4XPUGW9AguDd0Fyh4... to hmC2S_eZ0FUCcRTut...
  • ad52fdc Roll Updater chromium_linux64 from 2@1584006 to 2@1585006
  • b68324c Roll Updater chromium_mac_arm64 from 2@1584019 to 2@1585011
  • ee47261 Roll Updater chromium_mac_amd64 from 2@1584025 to 2@1585004
  • 76adffe Roll Enterprise Companion chromium_mac_arm64 from qASJgJi-_J4sfl65B... to IJvxm7HWC2V614xrG...
  • 2c4a70b Roll WebView ARM64 Orderfile from 4zCYEOVOJLJFsWzZ1... to mRq4AaGYOwceIOIvH...
  • 4b1c05f [signin] Refactor token loading in MutablePO2TSDelegate
  • ade8d3f Roll Enterprise Companion chromium_linux64 from Znw-dHi_xF-AAp8t8... to TInCDWz59ZGqeOwgQ...
  • cdfb0a0 Roll DevTools Frontend from 990adc230bae to ec4ec382e962 (3 revisions)
  • 5debc4c Update BnplFormEvent::kSuggestionsShown to be more descriptive
  • 62c21f1 Add support for detecting internal dependencies
  • 9f8e6c8 Roll abseil_revision 43a941465c..4a9a571e98
  • f63bc37 Roll Perfetto from 11ee74e8de23 to c82fb577c5b0 (2 revisions)
  • 527519e Roll Chrome Android ARM64 Orderfile from ucsd-DXJXhinC4_nw... to bJqv1YS8BQK-liQKg...
  • 3582b31 [iOS][AIM] Extract server-side strings from the input state in mediator
  • 4928786 [iOS] Add a static getter for TabGroupColorPalette's common color
  • 88db552 [Gardener] Disable TipsNotificationsOptInPromoTest on Desktop
  • 86f4e54 [Android][Test] Post child status on UI thread
  • 56c9643 Ensure selection status is up to date after moveBfore
  • 7b13661 Extend expiration dates for DevTools experiment histograms.
  • 06109c9 [ios] Implement profile-level client certificate provisioning
  • 687b200 Roll Chrome Win32 PGO Profile
  • 0e955fc Roll Chrome Win64 PGO Profile
  • 05e4b54 Stringify CSSUnparsedValues via toString, as normal
  • 45c5a70 Describe a vector of segments as "segments", not "tokens"
  • ab9ea77 Roll BoringSSL from 19453ec71ae9 to d8e4bc570893 (1 revision)
  • 5b18640 login: Pass local state to UserOnlineSigninNotifier
  • 8fb7de0 Roll V8 from 3bed0fc0bd30 to 99d2bf95c84e (4 revisions)
  • b14ecb4 [Gardener] Disable failing tab search and archived tab tests
  • ce38fff Extend histograms
  • 793d085 Roll DevTools Frontend from 012b498a7f73 to 990adc230bae (2 revisions)
  • 713cf2b Roll Chrome Mac Arm PGO Profile
  • 09f9766 Disallow random() in at-rule descriptors
  • e474538 Update meet_effects hash in DEPS file.
  • 9d69a6a [Clipboard] Clear Java native ptr on ClipboardAndroid destruction
  • 63e4f88 Roll Projector App from lejCiYUoDkMlm3fva... to LWlC4WhSzV8fJN4Ux...
  • 1ba567c Roll clank/internal/apps from 25e6d77a5284 to 43f0249db9e5 (1 revision)
  • 8cec886 Avoid re-allocating memory in set_info
  • ee43fcd Roll Chrome Android ARM64 Orderfile from xVCZWXi7TrwLZYQn6... to ucsd-DXJXhinC4_nw...
  • 38b9a6d private_ai: Rename WebUI files
  • 2df0721 Fix duplication in StyleResolver::ApplyBaseStyleNoCache().
  • ebb642e Roll WebView ARM64 Orderfile from c-kwXF_BNO4ry4bYn... to 4zCYEOVOJLJFsWzZ1...
  • f0fe506 LPP: Move SAML confirm password screen to after login
  • 0d826d9 Update SchedulerLoopQuarantineWebContentBrowser to exclude navigations
  • 76b1b7c Roll clank/internal/apps from 8f07c6649c35 to 25e6d77a5284 (1 revision)
  • d3b80e1 Revert "Remove #audio-flexible-loopback-for-system-loopback"
  • a7bf4a7 Avoid nullptr dereference on failed processing instruction creation
  • 006e35e Roll WebGPU CTS from e9eab3d1cec9 to 0ea9bce4c425 (1 revision)
  • f4d26f2 webrtc: fix L4S / ECN send on Windows
  • cdd1f63 Roll ANGLE from a8b99447d3bd to f187d4338681 (1 revision)
  • 1c0489a Roll DevTools Frontend from 8304bd3148f2 to 012b498a7f73 (1 revision)
  • a6c07e8 Fix typos for invalidate
  • e68b4f4 Roll Boca App from rpfyLF4jaXmICfmpP... to GaRVYpeGAUsNm5KKl...
  • 33cc993 Roll Skia from e1a54c4814d2 to d308059d6bfb (1 revision)
  • b0ab60f Add SaasUsageReportScheduler to ChromeBrowserCloudManagementController
  • f5a7297 Roll BoringSSL from 20cb834920f4 to 19453ec71ae9 (1 revision)
  • 0b3e432 Enable test FromOutsideHostedApp on cros-on-linux.
  • fe3ca8a Roll Boca Receiver App from V8XS--3jnMh2f5-m6... to nZIoVyFty5NRdlP62...
  • cc729f3 Reland "Reland "LayoutObject::DecoratedName() to tag relayout roots.""
  • 8f5a31d [STTS] Add temporary test to debug flakiness
  • f5fcc6f IDB: SQLite - vacuum on close
  • d931f20 [Signin] Make SetAccountInfoFromUserInfo AccountInfo param non-optional
  • e9a3ea7 [FRE-refresh] History Sync Opt-in page.
  • 5f315eb Roll Chrome Mac PGO Profile
  • 3adf6ad Roll WebRTC from a95fc3fa2c38 to 7a52ff95be59 (1 revision)
  • 713f837 [Signin][Android] Display button when SigninLevelUpButton flag enabled
  • 4471a6c Extend `Emulation.setDeviceMetricsOverride` with `scrollbarType` param
  • 0fdf8ab Roll Chrome Win32 PGO Profile
  • 2c7ed9a Roll Chrome Win64 PGO Profile
  • 1e43342 login: Pass local state to helper functions for session metrics
  • 3236148 Explicitly allow reentrancy for observers that are currently reentrant
  • 3e1f898 [Android][Signin] Improve new sign-in API documentation
  • 5b567a4 WTF: Add rfind(StringView, size_type) to WTF string classes
  • 9b003b7 Roll clank/internal/apps from 8d94dd92b79b to 8f07c6649c35 (1 revision)
  • 0068704 [Contextual tasks] Redirect from contextual tasks URL to aim URL
  • 3084144 WTF: Rename String::EndsWith() to ends_with()
  • 0775a03 [EnableGlicCleanup] for c/b/signin
  • 8897947 Roll federated_compute to 4a2b7d9
  • 062514a Roll DevTools Frontend from 2f621de57b3e to 8304bd3148f2 (1 revision)
  • 23f124a [turbolev] Disable the experiment by default
  • 36bae6c Roll Chrome Mac Arm PGO Profile
  • fca9967 Roll Chrome Linux PGO Profile
  • c6b6e89 [Blink] Simplify VideoFrameImageUtil test
  • 567b52a Split and tidy-up AndroidParentalControlsV2 field trial config.
  • 21f1a8d Remove unused crash key
  • f80b22a IWYU - fake_footprints_fetcher.h
  • e2aee58 Reland "Reland "[heap] Add V8EnforceGlobalHeapLimit in testing config""
  • bb60cec [Blink] Flip ImageCaptureFrameGrabber conditional for clarity
  • 30f84ce [Blink] Eliminate ImageCaptureFrameGrabber creating bitmap provider
  • 4807d4e [Blink] Move in ImageCapturFrameGrabber check on `snapshot_provider_`
  • 6a4ad6f [Blink] Have ImageCaptureFrameGrabber cache info used for draws
  • 68fbe31 [Blink] Undo inadvertent HTMLVideoElement behavioral change
  • 9575d50 Roll androidx from e5B9W62m5wEvdFsme... to xPOOM_O7RM7zSKvQL...
  • 46a317d [//docs] Restrict owners of supported_platforms.md
  • 11ba56a gardener: Accept timeout for pointerevent_attributes WPTs on win11
  • 59f5ff1 Prolong the expiry milestone for enable-webrtc-pipewire-camera
  • f7b1d32 Roll optimization-guide from eae26dbf15b0 to 946192c2badf
  • a99b7bf Roll eigen from 34092d278812 to c4c704e5ddca (2 revisions)
  • 2a933e2 Roll Perfetto Trace Processor Win from 00b4babb9866 to 11ee74e8de23
  • 557141f login: Pass local state to IsFullManagementDisclosureNeeded
  • 6ea9bb1 [Blink] Dedupe Canvas2D CRPSI creation for CPU and GPU raster
  • 9d67d93 [Blink] Rename `use_gpu` variable in CanvasRC2D for clarity
  • 65cd2b7 Roll Chrome Win ARM64 PGO Profile
  • 5b5767e [Blink] ImageCaptureFrameGrabber pass SW draw info to create snapshot
  • bc119af [Blink] Add inadvertently-dropped null check to WebGLRCBase
  • 38da8d4 Roll src/third_party/libsrtp/ a52756acb..e8383771a (4 commits)
  • 2b81f04 Roll Dawn from 307f5dce0dd5 to 0751fb7b7aa8 (13 revisions)
  • cac7f7c stylus-handwriting: Use MockitoJUnit.rule() instead of initMocks()
  • 9d2998c Roll Skia from 7d2bc92f5f92 to e1a54c4814d2 (1 revision)
  • 61f68be Move caching_zero_state_suggestions_manager to glic/suggestions
  • 6c1fc50 Roll WebView ARM64 Orderfile from t6jKZNIvV3ANjHaEz... to c-kwXF_BNO4ry4bYn...
  • d00657a Allow reentrancy for DisplayObserver and AnimationObserver
  • 8640817 Roll Perfetto Trace Processor Linux from 00b4babb9866 to 11ee74e8de23
  • a809c2c [Community Contributions] Clean up readAloudAudioOverviewsSkipDisclaimerWhenPossible flag
  • 4d01b23 Roll Chrome Android ARM64 Orderfile from 920xErfWFROmMchHx... to xVCZWXi7TrwLZYQn6...
  • 3cbc65a Revert "Reland "[heap] Add V8EnforceGlobalHeapLimit in testing config""
  • 791e073 [Bluefin] Observe media transcripts in PageContentMetadataObserver 3
  • c302d86 [dawn] Implements Dawn's PostWorkerJob API in Chromium.
  • 74c49d9 Revert "actions revamp: Prevent overlapping popups and context menus"
  • 1ae6bbd [iOS]Fix Shortcuts tile title misalignment with larger text sizes
  • 13860a2 Revert "actions revamp: mbsa: Action is "pressed" when popup is open"
  • bb7c30e Roll Chrome Mac Arm PGO Profile
  • 2877c3d Revert "Add DumpWithoutCrashing code for beforeunload investigation [2]"
  • 7ae5e02 Update ScriptProcessor assertions
  • 7873ebf [Fonts] Fix relative colors in @font-palette-values override-colors
  • 711993e Prerender: Remove redundant PrerenderHost lookup before calling CancelHost()
  • bc09df0 Site Search: Init inactive shortcut preferences
  • 7e6ed5f Roll Perfetto from 00b4babb9866 to 11ee74e8de23 (1 revision)
  • 3d82fbd Roll Chrome Win64 PGO Profile
  • 0022668 Roll Chrome Android ARM64 Orderfile from MwG0hUpuOG1fWsP4H... to 920xErfWFROmMchHx...
  • 057b26c Roll Chrome Win32 PGO Profile
  • 224fd88 Roll Skia from d12836ea4ebd to 7d2bc92f5f92 (1 revision)
  • 920c244 Roll ANGLE from 5fb347a4cffc to a8b99447d3bd (5 revisions)
  • 5e15acc Revert "Acquire AI Threads from ContextualTasksService for Projects Panel"
  • c5396ac Roll WebView ARM64 Orderfile from KfP7mzo-zUKaISRIE... to t6jKZNIvV3ANjHaEz...
  • 14274bc Introduce GetAllTabsForProfile in TabStripExperimentService
  • ea6200a Avoid duplicate map lookups.
  • 5a0c398 Modularize fenced_frame_viewport_observer_interactive_uitest.cc
  • 03546f3 Don't share transcripts if not final chunks in glic_media_context
  • 3d50575 [webmcp] Add OWNERS for script_tools
  • cb828eb Automated Commit: LKGM 16597.0.0-1075540 for chromeos.
  • 1ffa7f8 [Fonts] Fix Font matching after font-style & font-stretch updates
  • 0dccb95 Add disk check to early HTTP cache initialization
  • fad3589 gardener: Disable StorageServiceRestartBrowserTest.LocalStorageRecovery
  • 42db1da [Contextual tasks] Remove aria-hidden for zero state
  • c711e48 Deprecate some lens policies as previously planned
  • 32ed646 [CrashFix] Fix null dereference crash in ClipboardChangeEventController
  • 304d4b7 Roll eigen from 2cd9bb7380b2 to 34092d278812 (4 revisions)
  • 2023fc3 [Actor] Add a glowing border background to the actor overlay.
  • 378de45 Roll Chrome Android ARM64 Orderfile from KIyseAUhGgVRLVivS... to MwG0hUpuOG1fWsP4H...
  • 90c1728 gardener: Allow new-window.https.window.html to pass on Mac
  • a0c014a gardener: Disable UpdaterAppTest.EventListTest on Mac
  • 51558c8 Fix infobar close button icon invisible on hover with custom themes
  • bd12e06 Roll DevTools Frontend from 414070fefa92 to 2f621de57b3e (1 revision)
  • 67b1017 Roll WebView ARM64 Orderfile from 0bXSYyOLKd2-U_Ygm... to KfP7mzo-zUKaISRIE...
  • 74f1a5b Roll ChromeOS Bigcore AFDO profile from 147-7667.0-1771212097-benchmark-147.0.7690.0_pre1585256-r1 to 147-7680.5-1771823086-benchmark-147.0.7697.0_pre1587393-r1
  • cb31b0b Roll ChromeOS Atom AFDO profile from 147-7680.5-1771214485-benchmark-147.0.7690.0_pre1585256-r1 to 147-7680.17-1771827236-benchmark-147.0.7697.0_pre1587393-r1
  • ca5c874 Roll Chrome Mac Arm PGO Profile
  • 6b9e03b Optimize Process() in BiquadFilterNode
  • 596be25 Roll clank/internal/apps from 30a8322ba9b9 to 8d94dd92b79b (1 revision)
  • 90b7519 Roll FuzzTest from 7636e7cbf828 to 362a279f0ad0 (1 revision)
  • 3be941b Revert "Reland "MockActivationController class to emulate widget activation in test.""
  • 0bc602b Refactor Histogram::InspectConstructionArguments to return an enum.
  • 89677e0 v8_context_snapshot: Adjust span size
  • a33d617 Trivial: format `v8_context_snapshot_impl`
  • febe1a9 [context-input] Fix signposting for CSB queries
  • 3a5d12c Explicitly allow Reentrancy for ObserverList under ash/system/
  • 33143cb [cobrowse] Allow empty query while DeepSearch is enabled and the query is a followup.
  • 5a3d521 IWYU - cookie_controls_interactive_uitest.cc
  • 6bdb2ce Updating trunk VERSION from 7703.0 to 7704.0
  • b139779 Clean includes in trace_log
  • 8c1ba8c Revert "Roll clang+rust llvmorg-23-init-3706-gfc648683-1 : llvmorg-23-init-4965-g686acf63-1 / 7dc2e92b83be02dc07f87be7e94266d6e48e5ca5-1 : c78a29473a68f07012904af11c92ecffa68fcc75-1"
  • b53e341 Roll vulkan-deps from f2f9653c35c3 to b73fd5ddcde4 (6 revisions)
  • 6f1bdce Site Search: Refactor to use common Properties
  • ff24949 Site Search: Refactor to extract reusable Properties
  • 11e8598 Site Search: Refactor to use common preferences
  • 7447c9e Roll compiler-rt from f0b7ec7780a7 to efa78c10673c (4 revisions)
  • b347164 Roll WebView ARM64 Orderfile from f4lv1xkrsadqayCwM... to 0bXSYyOLKd2-U_Ygm...
  • a9ed8a0 [css-color] Map deprecated ActiveCaption to Canvas
  • cb0ca58 Roll Chrome Android ARM64 Orderfile from dje65uTZ9u94kYjUM... to KIyseAUhGgVRLVivS...
  • bb23ecb [searchbox-componentization] Move NewTabPage Realbox tests
  • 89862d0 Roll PDFium from 4d0eb4d4c4df to 7ca77b11a965 (8 revisions)
  • d676900 Roll js-sys: 0.3.85 => 0.3.89 in //third_party/rust.
  • deae679 Roll llguidance: 1.5.1 => 1.6.1 in //third_party/rust.
  • d376965 Roll clap: 4.5.59 => 4.5.60 in //third_party/rust.
  • e91a60f Fix webview listeners accidentally being cleaned up
  • eee324c Roll toktrie: 1.5.1 => 1.6.1 in //third_party/rust.
  • 1b54aa4 Roll syn: 2.0.116 => 2.0.117 in //third_party/rust.
  • 5e94c2d [contextual-tasks] Add feature param for basic mode.
  • 677b24d IWYU - feature_access_checker_unittest.cc
  • 4bae84a IWYU - chromeos/ash/experiences/system_web_apps/types/system_web_app_delegate.h
  • ed7966a [line-clamp] Refactor computation of the line-clamp container's height
  • dfa965a Use ChannelLayoutConfig::Guess()
  • 5b0af20 [TabStrip] Move Close all tabs option to strip tab context menu
  • 3865879 Roll Chrome Mac PGO Profile
  • 25b98c4 IWYU - ash/style/harmonized_colors.cc
  • 119c592 Roll optimization-guide from eadd79b65868 to eae26dbf15b0
  • d5ec1d7 Roll Chrome Win64 PGO Profile
  • bf85ea4 Roll eigen from 00cc497d320b to 2cd9bb7380b2 (1 revision)
  • 1b552a2 Roll Chromium Variations from xk-JlLf74VBhMeA7p... to G2Efnk-j3n-VapnZf...
  • 52382e1 Distill inputs as divs.
  • 21d11f7 borealis_motd: add the uninstall functionality
  • 6cd7469 [composebox] Display error messages for file upload failures.
  • 66aadcc Acquire AI Threads from ContextualTasksService for Projects Panel
  • 99af3ac Roll Chrome Win32 PGO Profile
  • e0e3758 Fix double-click word selection on adjacent contenteditable spans
  • f4ad949 Roll Chrome Mac Arm PGO Profile
  • 289f0b5 [omnibox] Add GM2 mixer definition for `kColorOmniboxForegroundDisabled`
  • 588a381 Roll ANGLE from 732db73ead8e to 5fb347a4cffc (3 revisions)
  • bbf2049 extensions: Clean up disabled ExtensionSessionsTests on desktop Android
  • 6f68646 gardener: Disable DistilledPageJsTest.ImageClassifierTest on CrOS sanitizer
  • 9406105 Roll Chrome Linux PGO Profile
  • 5f21b7a Typo fix: the -> them
  • 0af42cb Roll Crossbench from ab1f74e66b73 to b82fbffceba0 (1 revision)
  • 8a2462b Reland "MockActivationController class to emulate widget activation in test."
  • 1647fe4 [crd host] Allow calling SetRequiredUsername() with the same username
  • b0c4c4c Remove text scaling factor adjustments in GnomeDesktopResizer.
  • c7e6603 Roll Chrome Win ARM64 PGO Profile
  • c92ca32 actions revamp: mbsa: Action is "pressed" when popup is open
  • 287ae1f Add Blink trace signal for meta charset disposition
  • a560df2 [Theme] Update Toolbar tint color after customize background changes.
  • 08525d0 [Theme] Move NtpThemeStateProvider into a separate build target.
  • 695fec1 Remove XmlElement from /remoting/host
  • 94165e3 Roll Amd64 AFDO from 147.0.7690.0_pre1585256_rc-r1-merged to 147.0.7697.0_pre1587393_rc-r1-merged
  • 0bb9502 actions revamp: Prevent overlapping popups and context menus
  • 699032a Replace label_name with cc_module_name.
  • 3edbd39 Revert "Reland "LayoutObject::DecoratedName() to tag relayout roots.""
  • 2a0130e builtin-ai: add a new policy for optimization guide on device classifier
  • ec49c14 Roll Chrome Android Desktop x64 PGO Profile
  • 535d0fb Roll Chrome Android ARM64 Orderfile from 6OtgtCPcU6Z8le1c5... to dje65uTZ9u94kYjUM...
  • 44a2896 Unwind wincrypt_shim.h
  • bba745e Reland: extensions: Sessions API window restore for desktop Android, #6
  • 6338506 Fix unsafe buffer usage in remoting/protocol
  • 10cc2be Fix window display name in tab context menu submenu instance list
  • 71ca65b Roll regex-syntax: 0.8.9 => 0.8.10 in //third_party/rust.
  • 079b19d Roll WebView ARM64 Orderfile from v4lVL1qQWfNItmSbW... to f4lv1xkrsadqayCwM...
  • e0aa54d [Desktop Android] Add E2E tests for extensions menu state
  • 0b747c0 Roll minijinja: 2.15.1 => 2.16.0 in //third_party/rust.
  • caa1769 Remove unused PageLoad.Clients.PerformanceManager metrics
  • efa9032 [BNPL][Clank] Removing Klarna flag in Field trial testing config
  • 0658e73 Revert "Fix DCHECK failure with very short transition retarget"
  • 8f7ea0c Roll chrono: 0.4.43 => 0.4.44 in //third_party/rust.
  • e13950e Roll Chrome Mac Arm PGO Profile
  • b08b940 Fix and re-enable failing GLiC tests
  • 58e4477 Quiche roll
  • 6684a0e Roll WebRTC from 89561f13f6c5 to a95fc3fa2c38 (1 revision)
  • 68575cc Fix Ctrl +/- triggering visual zoom instead of page zoom
  • 7be7fb7 [contextual tasks] fix basic mode
  • 274dc2d [EnableGlicCleanup] for c/b/profiles
  • 0f88ade Roll new AVDs for Android 16
  • c93b6e0 More strict state check in PrefetchContainer::GetNonRedirect*()
  • 3b93411 [EnableGlicCleanup] for c/b/renderer_context_menu
  • f3aa498 url: Add an overload of DecodeUrlEscapeSequences()
  • a239b6d [Reading mode] Remove Readability flag guard for pdf frame check
  • e3ae124 Roll BoringSSL from 5e15537e658f to 20cb834920f4 (1 revision)
  • 8254527 Roll Dawn from a2fca16ebf9f to 307f5dce0dd5 (7 revisions)
  • 923c678 Stop tree closure emails to Chrome Build Gardener.
  • 6858a65 Roll V8 from a16ca4d5875b to 3bed0fc0bd30 (2 revisions)
  • 606228f Roll new AVDs for Android 15 Desktop
  • 856a347 [Clank] Fix Android multi-window intent routing from notifications
  • ed21042 Roll WebGPU CTS from 3a8f51b73623 to e9eab3d1cec9 (1 revision)
  • f413a5a [Chrome Next] Turn on flyover animation by default
  • 7c34d01 Add use counter for windowclient.navigate
  • 0dbef6e Reland "[views-ax] Flush pending WidgetAXManager updates in tests"
  • 0ed4a7c [Extensions] Make extension icon property nullable in Desktop Android
  • 56b9e9f Add base/trace_event as OWNERS of base/test/test_trace_*
  • c9c6d95 IndexedDB: clean up empty databases after crash.
  • 457379c Move crd.md to remoting/GEMINI.md
  • d182777 [chromeperf] fixed missing merge script for linux-r350-processor-perf
  • 5bb221e [ComboButton] Fix tab search toolbar button bug
  • 9535469 [projects] Update localized strings for Resumption Rail IPH
  • 4dba39f Autofill: Add extension API for AutofillOtherDatatypesEnabled preference
  • 0de8cdc Autofill: Add "autofill.other_datatypes_enabled" preference
  • a64e731 Autofill: Introduce 'AddAutofillOtherDatatypesPref' flag
  • 14c6eee Fix DCHECK failure with very short transition retarget
  • c9a467d [EnableGlicCleanup] for chrome/browser/sessions
  • a8dd643 Roll bumpalo: 3.20.0 => 3.20.2 in //third_party/rust.
  • 7fb7758 Roll androidx from mUJx7MFzYAuhvBhff... to e5B9W62m5wEvdFsme...
  • 1c7f7d9 [crd host][linux] Ignore empty display layout
  • 740e73a [Glic] Creates Baseline peek view content layout
  • 8e18de6 Remove XmlElement-based SendStanza method in SignalStrategy
  • e1f5f7d [AIM] Remove FuseboxAttachmentProperties from FuseboxMediatorUnitTest.
  • c83bd53 [rustmojo] Remove printing from unit tests
  • 8af4fa9 [contextual-tasks] Fix queries with tab and visual context
  • 26f08e4 Roll Chrome Win64 PGO Profile
  • cbb9162 Explicitly allow Reentrancy for ObserverList under components/
  • b6c779c [AIM] Remove FuseboxAttachmentProperties usage from FuseboxMediator.
  • 50da8ab [Settings Search] Set the query UI bg right
  • 89832af [Reading mode] Add regression test for crbug.com/487308693
  • 3db70a1 [AIM] Remove sort block that does not work.
  • 6e06228 WebUI: Disable all sanity tests on *san, chrome://a11y on dbg
  • 15ed35d Add validity constraints based on the certificate notBefore
  • 065cff8 Roll Chrome Win32 PGO Profile
  • 260afd9 Roll Crossbench from dce56666224b to ab1f74e66b73 (1 revision)
  • de6cac9 indigo: Implement legacy "alpha" RPC protocol and call from page action
  • ab1c0a2 Updated image thumbnail displayed in sources menu and favicon stack
  • a4822bc [Link Capturing] Prevent chip from always showing when first placed
← Back to all summaries