Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2025-12-08

Overview

This daily summary covers 556 commits on the main branch, with 396 identified as relevant to developers. The changes span from (a20a7bb)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((a20a7bb)) to (d48dfb6)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((d48dfb6)). A significant number of breaking changes were landed, requiring action from embedders across UI, sign-in, and platform-specific APIs.

Breaking Changes

  • ⚠️ BREAKING C++ API: The EnterpriseIdentityService and its factory have been completely removed. Embedders must migrate to alternative services for managed account identity or OAuth token fetching. (5d6bd7b)
  • ⚠️ BREAKING C++ API: The autofill::AutofillClient interface no longer has the GetPopupScreenLocation() virtual method or the PopupScreenLocation struct. Embedders with custom Autofill UIs must remove their implementations. (80af047)
  • ⚠️ BREAKING C++ API: The TabStripModel::selection_model() method's return type has changed from const ui::ListSelectionModel& to const TabStripModelSelectionAdapter&. Code directly using the old return type will no longer compile. (58e491f)
  • ⚠️ BREAKING C++ API: A new pure virtual method, GetOAuthConsumerForGlicUserStatus(), was added to the public signin::OAuthConsumerRegistry class. Subclasses must now provide an implementation. (01e5c4c)
  • ⚠️ BREAKING C++ API: The //chrome/browser/updater component's public API was refactored. Embedders must now include the new central header updater.h as previous headers are now internal. (d4d03c1)
  • ⚠️ BREAKING Android Java API: The AwBackForwardCacheSettings class and AwSettings.setBackForwardCacheSettings() method have been removed from the WebView API. Embedders must now use setBackForwardCacheSettingsTimeout(int) and setBackForwardCacheSettingsMaxPagesInCache(int) directly. (b8c03f6)
  • ⚠️ BREAKING Android Java API: ActivityTabProvider no longer inherits from ObservableSupplierImpl. Embedders must now call activityTabProvider.asObservable() to access the supplier for observation. (01f1868)
  • ⚠️ BREAKING Android Java API: The parameterless getInstanceInfo() method has been removed from MultiInstanceManager. Callers must now use the overloaded getInstanceInfo(@PersistedInstanceType int type) and explicitly pass PersistedInstanceType.ANY to replicate the old behavior. (814d968)
  • ⚠️ BREAKING Mojom API: The bool_attributes map field has been removed from the public ax.mojom.AXNodeData interface. Consumers must migrate to using the bool_attributes_data field, which uses AXBitset. (75d9332)
  • ⚠️ BREAKING Linux API: The public header ui/shell_dialogs/shell_dialog_linux.h has been removed. Additionally, the signature of dbus_xdg::RequestXdgDesktopPortal has changed; its callback now receives a uint32_t version instead of a bool success. (a3e06bf)
  • ⚠️ BREAKING WebAuthn API: PasskeyModel::GetPasskeyByCredentialId has been removed. Embedders should migrate to the new GetPasskey method, which requires an additional ShadowedCredentials parameter. (c7b48fb)
  • ⚠️ BREAKING UI API: The observer interface for Picture-in-Picture screen capture (PipScreenCaptureCoordinator...::Observer) was refactored. OnPipWindowIdChanged and OnCapturesChanged were replaced by a single OnStateChanged method. (d12602b)
  • ⚠️ BREAKING Remoting API: The remoting::SignalStrategy interface was refactored, changing the method signatures for OnSignalStrategyIncomingMessage and SendMessage to use service-agnostic types (SignalingAddress and SignalingMessage). (e2d0a51)
  • ⚠️ BREAKING Content API: The signature of content::RenderProcessHost::FastShutdownIfPossible() has been changed to include a new optional parameter, use_outermost_main_frame_check. This is an ABI-breaking change. (4b90c98)
  • ⚠️ BREAKING UI API: The public virtual method CreateNewTabWithLocation has been removed from the TabStripController interface. (0d6273a)

Android

  • The TabResumption and TabResumptionImages feature flags have been removed as the feature is now enabled by default. (7e8699d)
  • A new flow has been added to wait for cookies and tokens to be ready before redirecting a user after an account is added via the ADD_SESSION header. (4706b08)
  • The kUseAndroidNDKFontAPI feature has been disabled by default to prevent crashes when font files cannot be read. (ce86935)
  • A bug causing media playback position to jump forward after a device wakes from sleep has been fixed by correcting the clock source used for timestamps. (49c39a4)
  • The desktop-like Incognito window feature for tablets has been re-enabled for field trials. (aae5c76)
  • The FindExtendedAccountInfoByAccountId method was plumbed through JNI to Java for more direct account info fetching. (fd630fc)

iOS

  • Numerous internal APIs for the "Browse with Gemini" feature were renamed from BWG to Gemini to align with product branding. (06be1c8) (c921f25)
  • Autocomplete services were moved from being profile-keyed to browser-keyed to better support multi-window scenarios. (4b71c4e)
  • Fixed a crash related to the "Managed profile required" interstitial page and another when editing profiles from the manual fill menu. (cf01491) (655cc7a)
  • The logic for deleting the Off-the-Record profile was moved to a ProfileStateAgent to better handle multi-scene scenarios. (6bf330e)

Desktop & UI

  • Foundational support for resizing the vertical tab strip has been added, though it currently has hardcoded limits and no collapsed state. (b8898fc)
  • The Out-of-Process iframe (OOPIF) for the PDF viewer is now enabled by default on Windows, macOS, and Linux, improving security and stability. (30caec7)
  • Several bugs in the Read Aloud feature were fixed, including one that prevented autoscrolling for offscreen words and another that caused duplicate spoken text. (f8e3a03) (3626ac5)
  • A divide-by-zero crash in the PWA installation dialog has been fixed by adding checks for empty screenshot sizes. (ff926d5)
  • A lag issue when pasting large amounts of text into a views::Textfield was addressed by adding a pre-processing hook. (81aebdb)

Security & Privacy

  • The temporary IsExtendedReportingEnabledBypassDeprecationFlag function has been removed. Clients must now use the standard IsExtendedReportingEnabled function for Safe Browsing checks. (ecb76a9)
  • A garbage collection mechanism was implemented to delete orphaned token binding keys from the UnexportableKeyService, improving hygiene for Bound Session Credentials (DBSC). (262fa98)
  • The PrivacySandboxIpProtectionEnabled enterprise policy has been deprecated, as the associated IP Protection feature was canceled before launch. (1bfc15d)
  • A change to enable the network sandbox by default on Windows was reverted due to regressions. (e1e1886)

Blink, Rendering & Web Platform

  • The HarfBuzz text shaping engine was updated, bringing significant performance improvements for AAT (Apple Advanced Typography) shaping. (59545f1)
  • The ShadowContourFollowsBorder rendering feature is now enabled in stable, improving shadow and outline rendering for elements with rounded corners. (af83ae8)
  • CSS Masonry layout now supports container baselines in the stacking axis, aligning its behavior with multi-column layout. (fc656e7)
  • The kDevToolsAcceptDebuggingConnections feature was enabled by default, and several obsolete DevTools web tests were removed in favor of frontend unit tests. (80003e3) (629f144)

Internals & Infrastructure

  • The deprecated BrowserList API continues to be phased out in favor of BrowserCollection, with multiple clients migrated away from BrowserList::empty(). (4303175) (a1fc270)
  • The FontConfig dependency was updated to build without FreeType, removing FreeType-related APIs like FcFreeTypeQuery and simplifying Linux dependencies. (94a6cd7) (eee60fc)
  • The EstablishGpuChannelAsync and EarlyEstablishGpuChannel feature flags have been removed, as the functionality is now stable and enabled by default. (95c2208) (fd13e48)
  • The re-entrancy guard handling_memory_pressure_notification_ has been removed from UrgentPageDiscardingPolicy, as discards are now synchronous within the memory pressure event handler. (5778078)
  • The WebGPU feature has been removed from the fieldtrial_testing_config.json file now that it has launched, unblocking further Finch experiments. (3337612)
All Commits (556)
  • b06d56b Roll ChromeOS Arm AFDO profile from 144-7545.0-1764558928-benchmark-145.0.7564.0_pre1554652-r1 to 145-7559.4-1765165096-benchmark-145.0.7568.0_pre1555211-r1
  • d48dfb6 [WebInstallAPI] installed_by follow up change and update test site
  • d87fdce Import wpt@3c708b0173679f5e9ccebb8712e95e5b6dd8f38f
  • c3f0646 [TDR] Remove TODOs linked to issue 339455254.
  • 14451e1 Refactor: Use TabSlotView* instead of Tab* in TabDragContext and TabSlotController interfaces.
  • 1874cab Roll Skia from a60a0a62865c to c1b1f62133c7 (3 revisions)
  • d3b82d4 Add android_webview_unittests to android-14-arm64-rel CQ builder.
  • 028b49f Roll glic-test-internal from 3915b91dade4 to 3d21be67df49 (1 revision)
  • 52d29b9 [Android] Fix OmniboxPTTest in Android 12L
  • f38f9b8 Remove use count when calling toJson.
  • c865b82 Add a fieldtrial testing entry for ConnectionKeepAliveForHttp2.
  • 71caee9 Remove expired flag for "ack-on-surface-activation-when-interactive".
  • c0b4cff Prevent adding duplicate observers to ConnectionChangeNotifier.
  • 16a8078 Use WeakPtr for `ConnectionManagementConfig.connection_change_observer`
  • cc8bb3f Roll Catapult from 0e07ae47d5e6 to e617119e2c9c (1 revision)
  • 31e0524 [AIM] Make Composebox Dropdown support max # of suggestions
  • 5d4344a Roll src-internal from 0fc93b9473e6 to b9ac38796210 (4 revisions)
  • cbf35bf webauthn: React to enclave state changes in GPM Enclave Controller
  • b7f2973 Roll Chrome Win64 PGO Profile
  • 11a5644 Use GlicSidePanelCoordinator::GetForTab to retrieve coordinator
  • 05a9e33 Roll Chrome Win32 PGO Profile
  • ff926d5 [PWA] Divide by zero crash fix for empty screenshot sizes in dialog
  • bd8a0e9 Add a filter bar component
  • 2ae6303 Remove 95pctPercentDroppedFrames_1sWindow
  • d0a2347 [testing/variations] Add PartitionAllocLockTuneSpin experiment
  • 6a237bd Roll optimization-guide from 9b1c10e791ad to b8ccce3600d4
  • 62eee64 [FFmpeg] Migrate Robosushi from Google Docs
  • 30caec7 [OOPIF PDF] Enable OOPIF PDF by default on Windows/macOS/Linux
  • 5f6cc8d Roll Chrome Mac Arm PGO Profile
  • d457851 Add actor auto browse spinner resource and feature flag
  • 62ba92a [BNPL] Send signal for clank ToS retrieval
  • 3a1da29 Roll Chrome Android ARM64 Orderfile from jIS5bI5_1bVZG1UMT... to H9UrMwW7pUvMemieA...
  • 0d6273a Remove unused CreateNewTabWithLocation
  • a4f73a3 Disable flaky test on Linux
  • 0ab860c [Reading mode] Ensure next/previous don't show with immersive disabled
  • 535fa7f Roll Dawn from 6a6f6d3d7fd7 to 0a127ac889bf (5 revisions)
  • 8ed288d Fix env var name in captured_sites_commands.py
  • f8e3a03 [Read aloud] Fix bug where autoscroll didn't scroll for offscreen words.
  • 5045f9d [PWA] Extend histograms expiring in Jan 26
  • c37907e [DCSI] Refine cleared rect management in CompoundImageBacking.
  • e790972 [Community Contributions] Clean up sTabGroupEntryPointsAndroid
  • 64c1743 Roll V8 from 94279f3c4d56 to 8aced2530883 (10 revisions)
  • ce86935 Disable kUseAndroidNDKFontAPI by default
  • febfed4 ChromeVox: Add test for "show tables" command
  • d87a7f8 Revert "[tips] Add integration test setup and initial tests for ESB promo"
  • da92dac [TDR] Remove TODOs linked to issue 342315479.
  • 1694378 [TDR] Remove TODOs linked to issue 317137739.
  • f013f3c [TDR] Remove TODOs linked to issue 40203095.
  • 0a1ce9e [TDR] Remove TODOs linked to issue 40128586.
  • 8446693 [TDR] Remove TODOs linked to issue 311592341.
  • 9ceb999 [TDR] Remove TODOs linked to issue 315709613.
  • 6c35661 [TDR] Remove TODOs linked to issue 317137739.
  • a2caf85 Bump the auth factor backing store metric date.
  • d6d325e Remove superfluous connection_group.h includes from mojo headers
  • 9a430a4 [Contextual Tasks] Gate URL interception on feature eligibility
  • a32ae95 Roll DevTools Frontend from d9898d318d10 to 8c5cbfdfe3e9 (2 revisions)
  • 2c39112 Roll FuzzTest from fb86a0293b00 to 893f793594a6 (1 revision)
  • 94eb6ad Correct anchor link reference
  • b86586e [contextual-tasks] Implement Image and File Upload in Composebox
  • aae5c76 Reland "Enable Desktop-like Incognito Windows for field trial on tablets"
  • 75b6ff1 [Prompt API] Remove the "ai_relax_user_activation" virtual test suite.
  • 2836073 [Extensions] Correct setPopup comment and add regression test
  • c75e079 Kombucha: Pull WebUI wait-then-scroll verb into common code
  • 814d968 Unify #getInstanceInfo() APIs
  • 2f7a408 Use TryAcquire for ScopedProfileKeepAlive instead of constructor
  • 29e1e3e [GlicMI] Add seperate flag for unpin on unbind
  • ae487bd Migrate net::test_server::HttpConnection to std::string_view.
  • febbe7c Update `TestExpectations` with bugs filed for crrev.com/c/7233274
  • 507a769 [iOSImportPasswordsSafari] Grey out data types blocked by policy
  • e2d0a51 Refactor SignalStrategy to use service-agnostic params
  • 3337612 Remove `WebGPU` from `fieldtrial_testing_config.json`.
  • b8f7aaf Roll BoringSSL from 21113ed83b2c to 5f4f26f59c36 (1 revision)
  • de11c8d [Cleanup] Update single-instance cleanup todos
  • 2cc3c5b Resolve WaylandWpColorManager::Observer UAF
  • dafe839 [iOS][CX] Add passkey to conflict resolution screen
  • 8b5786a Roll src-internal from 61d477a28f77 to 0fc93b9473e6 (3 revisions)
  • 981b641 Roll Perfetto from 891c948b58ba to cd3df3212bcd (1 revision)
  • 2625254 Consolidate --glic and --glic-side-panel
  • c4a8b36 Automated Commit: LKGM 16513.0.0-1073670 for chromeos.
  • b45186e Roll Chrome Android ARM32 Orderfile from dmVPO_W27wruNBXSh... to y5VNfN7hYyjlATZ22...
  • d483998 Move Glic active check to GlicSidePanelCoordinator
  • 130083d [3PCD] Clean up 3pcd check for fenced storage
  • 4accc7b [Extensions] Reintroduce DumpWithoutCrash in LoadPersistedLazyListeners
  • 1f04fbb [ntp-feature-optimization] Create new string for module removal
  • 6694c3b [DCSI] Implement CompoundImageBacking::ProduceDawnBuffer().
  • b08a13a ChromeVox: Fix "show tables" command
  • 5f210d6 Show custom UI for blocked sensitive download on home
  • 63be7a8 [Glic] Add additional glic button strings
  • 7de07b6 [NtpCustomizationV2] Cache window size to reduce validateMatrix invocations
  • aa5bce4 [iOS] Extend metrics
  • 5cec3f2 Centralize TabStripModel validation in OnChange
  • 758285e Roll glic-test-internal from fb28a5116677 to 3915b91dade4 (1 revision)
  • 24b7f38 [Clank][BrowsingDataModel] Extend the expiry of BDM histogram
  • ab3b3c7 Extend RequestedInputFramesPerBuffer metric
  • 006b44c [Predictable Updates] Update web apps documentation
  • 0c37eab Roll Amd64 AFDO from 145.0.7566.0_pre1555085_rc-r1-merged to 145.0.7569.0_pre1555330_rc-r1-merged
  • 57eac96 Add user action and histogram for when active tab suggestion chip has been deleted
  • ee20ad9 Revert "[webauthn] Split authenticator mojo sources"
  • cbf38c2 Roll Chrome Mac PGO Profile
  • 842b0da Add new arrow icon and use in the Task List Bubble
  • 51b64b8 Roll Depot Tools from ac1b095b090e to 4c6437f269f1 (1 revision)
  • 3bc35d1 [NtpCustomizationV2] Add orientation and window size to BackgroundImageInfo
  • 57f4ac1 [webauthn] Split authenticator mojo sources
  • 23f3f68 Roll clank/internal/apps from 67e6fd873fde to 8e8ca58be4f2 (1 revision)
  • 1e07238 Roll Chrome Win ARM64 PGO Profile
  • 16d8851 Replace unsafe operations with safer alternatives in PersistentHistogramAllocatorTest.
  • fdd83a7 FaceGaze: Ensure top bar UI is centered for RTL languages
  • 61bddd8 Roll DevTools Frontend from f73b60ccc989 to d9898d318d10 (1 revision)
  • 68d901d Roll FuzzTest from 056722f64bcc to fb86a0293b00 (1 revision)
  • 531984a Reland "[inspector] Use std::shared_ptr for V8InspectorSession"
  • b8898fc [Vertical Tabs] Support resizing the vertical tab strip region
  • a89f5cd Roll Chrome Mac Arm PGO Profile
  • 17f1191 Extend use-shared-image-in-oop-vd to M147
  • e3c8a62 [Composebox]Support wildcard MIME types (image/*) in NTP composebox
  • 0acaab2 [Contextual Tasks] Don't intercept if URL is for different account
  • 01f1868 Android: Make ActivityTabProvider not extend ObservableSupplierImpl
  • 1333ffa [Contextual Tasks] Refresh OAuth token before expiration
  • 273799e Update sample rate range in audiocontextoptions.html
  • c7b48fb [WebAuthn] Remove GetPasskeyByCredentialId from passkey model
  • f67c530 [contextual-tasks] Add resize event observer debouncer
  • 6b68cc2 [WebAuthn] Log resident key values for credential creation requests
  • 1fe1b30 [iOS WebView] Fix UAF in password async handler after WebState destruction
  • 49c39a4 [Media] Correct media playback position after deep sleep
  • 1093e87 Migrate WebGPU Unexpected Pass Finder to support Chrome structured test IDs
  • 4faf35c Roll Perfetto from cd2f84b10e71 to 891c948b58ba (1 revision)
  • 8ff47e2 [ntp-feature-optimization] Setup flags/params for NTP simplification
  • 1957c03 Use cache for tabs that aren't currently selected
  • a854121 Bind the tab of CreateActorTab to the task
  • 24ab1cc Roll BoringSSL from 8f2c220dc31b to 21113ed83b2c (3 revisions)
  • 57f8443 [Signin][Android] Add missing histogram coverage for Seamless Signin
  • b02e914 Fail fast D3D11 QueryInterface calls
  • 55c4d3c [Binder] Add Binder scrolling metrics & total Binder count metrics
  • ae4cf43 DOMStorage: reuse DB sequence across profile restart.
  • 20fdfb3 [RWS] Extend histogram expirations
  • fd630fc [Signin][Android] Plumb FindExtendedAccountInfoByAccountId through JNI
  • 52dfa91 Roll SwiftShader from 42f6e0594168 to ff4435d3f92d (1 revision)
  • 136053d Add default browser check validation using registry lookup
  • 2582dd7 [bling-fixit] Remove dynamic refresh for IncognitoModeAvailability
  • 6c14d7c Roll Chrome Linux PGO Profile
  • 2424b7e [Settings Search] Index dynamic settings config for DeveloperSettings
  • 15ddfad [Extensions] Several fixes to persisted webRequest listeners
  • e715ec9 [Signin][Android] Decouple confirm management cancel button from back press handler
  • 3b61eb2 [glic] Enable policy for ChromeOS
  • fa86690 [contextual-tasks] Update Tab Favicon
  • df1f116 Fix corner shape interpolation neutral value
  • ec62dd2 [contextual_tasks] Underline associated tabs
  • f65da16 media: Unify NDK VEA surface input check and add GL error codes
  • e34d0ff JNI Zero: Emit a warning when DEFINE_JNI(ClassName) is forgotten.
  • 7aa2347 [omnibox] Fix RTL styling for composebox variant 3.
  • 70558c2 Roll Chrome Android ARM64 Orderfile from XM5l1L8qqqxrcTPxO... to jIS5bI5_1bVZG1UMT...
  • d242fab Reland "[Vertical Tabs] Move feature enablement to test mixin"
  • a518842 Remove obsolete TODO comment.
  • 59b9bb6 [ntp][realbox][next] Mark strings translatable
  • a409c05 [Extensions] Migrate to class-style values of enum Manifest::LaunchType
  • 7f506bc Roll src-internal from db9078963f6c to 61d477a28f77 (1 revision)
  • 7acfcab Extend expiration date for ThirdPartyCookieBlockingEnabled virtual test suite.
  • 942f2e4 Remove a superfluous include from crypto/process_bound_string.h
  • 9705d34 Roll DevTools Frontend from 310cbb749fbe to f73b60ccc989 (1 revision)
  • c5e2a7b [PhishGuard] Extend Histograms
  • 243d054 Remove chrome::mojom::PluginStatus::kPlayImportantContent
  • 80af047 [Autofill] Delete AutofillClient::PopupScreenLocation
  • 5485d9c [iOS][SafetyCheck] Handle signed-out state for Password checks
  • d38a496 [UIA-MathML] Add feature flag.
  • d5d7538 Remove UseFrameIntervalDeciderAdaptiveFrameRate config
  • ba62f2f [AIAE] Add reset() function for amount extraction
  • 806ac0a Slightly simplify PluginInfoHostImpl::Context::DecidePluginStatus()
  • 0216fcd Roll Chrome Android Desktop x64 PGO Profile
  • b1dbdab Roll Arm AFDO from 145.0.7564.0_pre1554652_rc-r1-merged to 145.0.7568.0_pre1555211_rc-r1-merged
  • c959c8e Enable LensVideoCitations by default.
  • 6c0ac4f [Toast] Change toast string
  • 3626ac5 [Read aloud] Fix regression with duplicate text spoken.
  • 472459f Remove obsolete tag from enum definitions.
  • 8668d5a Roll Chrome Win32 PGO Profile
  • 75ad5e8 glicmi: Disable WNP on M144+
  • 86ae49a Roll Chrome Android ARM32 PGO Profile
  • 44bbce1 rcaps: Add load time eligibility to the internal debug page
  • b7cbb1e Code cleanup for TabContextMenuController
  • 5778078 [PM] Remove UrgentPageDiscardingPolicy::handling_memory_pressure_notification_.
  • 7a7f1d8 [HiC] Add a test for SVG use cross origin references
  • e762f3c [scoped-VT] Escape scroll-translation on scoped element
  • 4ce6d10 WebUI: Fix violations of 'default-case' ESLint check, part 4.
  • 8f99784 Remove SafeBrowsing.NavigationObserver.RedirectForTelScheme
  • b493a23 [Privacy Sandbox] Explicitly enable Related Website Sets in tests
  • 1045f71 [Password Manager] Add SafetyCheckNotification to PasswordCheckReferrer
  • 974f544 [iOS][SafetyCheck] Add unit tests for Safety Check utils
  • 66b6976 Roll Chrome Mac Arm PGO Profile
  • 6dcf1c5 Add tests for interrupt state during acting
  • e76c454 Roll vulkan-deps from 8b33d336e1ab to feed35a1156c (1 revision)
  • 3abc22e [AIM] Update lens server proto from upstream
  • 69294df Gate daisy chain feature with user pref
  • bd9610d Import wpt@80ed8d69998715745747a35cb5f90eada9adacfd
  • 88ba864 Extend expiration dates for enterprise interstitial histograms
  • af83ae8 Enable ShadowContourFollowsBorder in stable
  • 2ee4d5f [Signin][Android] Rename ambiguous dismiss button name
  • 0c29818 [AIM] Adjust request type chip to use 18dp drawables.
  • 4e8e9f0 [Signin][Android] Log SIGNIN_ABORTED event if seamless signin abandoned
  • cff9c2c Android: Roll NullAway 0.12.12 -> 0.12.14
  • 8e98f3d [Extensions] WebRequest security info for persisted listeners
  • 2a2d17b Roll Perfetto from 46644e5dfbad to cd2f84b10e71 (2 revisions)
  • 7c108d9 Capture AIM Session abandonments and fix pgcl misattribution.
  • ce6cf51 Wrap up FinishRequestNewLayerTreeFrameSink params in a struct
  • 3fd1ba6 [omnibox][next] Disable test `TabStripModelObserverIsNotAddedWithNullSession`
  • 8322aed Sync feature protos.
  • fc87b76 Prevent use-after-free in ChallengeResponseAuthKeysLoader
  • b6fc17a Unit tests for caption utility functions.
  • ee7c496 Roll ANGLE from 5ac8def8003e to 477a88df97eb (3 revisions)
  • 05a125b CrOS PasswordChange: Leverage build_webui() GN rule.
  • 32940c0 Javaless renderer: update to latest Android impl
  • 1812a73 [bedrock] Fix flakes in TestHangInBeforeUnloadMultipleWindows
  • 76cf5a8 Roll BoringSSL from 7f448d35a3d7 to 8f2c220dc31b (1 revision)
  • f969d8a Fix for crash in returnFromTargetScreenIfNeeded
  • c6cd54a [iOS] Add CSV Export Button to Credential Export UI
  • de829d8 [iOS][Composebox] Switch UI string from literal to l10n_util
  • 87e0d73 Update cookie metrics expiration
  • 3676674 [RWS] Remove expired histogram
  • cf77e78 [bedrock] Add default order param to BrowserCollection::ForEach
  • 9b65200 Roll Chrome Android ARM64 Orderfile from 0PEwB7IiCdtg-tOJo... to XM5l1L8qqqxrcTPxO...
  • f19f29c [GlicMI] Enable Multi-Instance for GlicActorDragDSFTest.Events test.
  • af645a4 media: Add omitted histogram ActiveGpuDisplayInfo for PlaybackError
  • 3cbd672 [wpt] Restore `cookiestore/{OWNERS,DIR_METADATA}`
  • 51082af CSS Custom Highlights AX: Support spelling and custom highlights on Mac
  • d884e76 Roll V8 from 6e0661d6b0f9 to 94279f3c4d56 (14 revisions)
  • fc656e7 [Masonry] Apply container baselines in the stacking axis
  • 6087808 Roll Skia from 767c4ce9e29c to a60a0a62865c (2 revisions)
  • d4d03c1 Reland "chrome/browser/updater: Create a cleaner public interface"
  • 4c26188 Mark scroll updates synthesized by ScrollPredictor as "synthetic"
  • def7eaa Add user actions and histograms for actions that affect panel state when a user changes the active tab
  • 320aa31 [Extensions] Add OptionalSection enum to extensions menu model
  • 6f9a357 Roll DevTools Frontend from dbb61cf4b27a to 310cbb749fbe (2 revisions)
  • 1bfc15d [IPP] Deprecate enterprise policy
  • 058b9f6 Roll WebRTC from 7442f8c253a7 to 147009850209 (1 revision)
  • 886f896 [Android][3P] Clean up expired flag for disabled settings
  • bf9a59b [iOS]Avoid having two add account flow from account picker
  • e1e1886 Revert "Enable network sandbox by default on Windows"
  • 1ea1f77 Add form factor restriction to tests that run with Incognito windows 2
  • f676905 Add cc::ScrollEventMetrics::dispatch_args() property
  • 3f23d57 Update comment for WebAuthnAndroidCredManRequestExtraBundle
  • ecb76a9 [SBER Deprecation] Remove obsolete CSBRR bypass function
  • a887b76 Roll Chrome Win64 PGO Profile
  • 28f7a0a [CSS Modules] Only import sheets with matching ConstructorDocument's
  • 8223e47 [3PCD] Clean up OnEnterpriseControlForPrefsChanged
  • af60b61 Increasing num of shards for Linux MSan Tests
  • 9d43915 Roll src-internal from b1e2057843d4 to db9078963f6c (1 revision)
  • 4303175 [bedrock] Transition clients away from BrowserList::empty() P2
  • 87161b5 Reland "[Bundled Security Settings] Add "Secure connections" feature row"
  • fd56c03 webium: Adjust heights and styling for browser UI elements.
  • 58aec54 [HybridInAutofill] Extend flag
  • 5bec0c6 [contextual-tasks] Update Tab Title
  • 0909be4 Optimize --verify-range by testing the bad first and parallelizing good download.
  • 4abd469 Roll llvm-libc from a351f26463da to 03f822d2a88c (1 revision)
  • fd13e48 Clean up EarlyEstablishGpuChannel feature, which has launched
  • a1fc270 [bedrock] Transition clients away from BrowserList::empty() P1
  • b407dc6 [Chrome Next] Actually fix positioning bug on Linux
  • 0a4adcb Use ToRoundedRect for CLS attribution trace data
  • fb3b99c Organize imports in PromotionEligibility space
  • 89b8f11 [TSTC] Add ability to change DTC threshold through feature param
  • 9760202 Rename SidePanelControllerObserver to ReadAnythingLifecycleObserver in tests
  • 8375fe2 Add module scheme to performance test suites
  • 88c1a9f Roll clank/internal/apps from fe18f1532fab to 67e6fd873fde (1 revision)
  • 0e1436a Legion: Add prototype implementation for ZSS requests
  • c921f25 [iOS] Rename startBWGFlowWithImageAttachment
  • f1fcc11 [iOS] Check eligibility service to enable/disable actions
  • fedc080 [Settings Search] Fix a crash when creating menu
  • c0e50e3 Use count Cookie Store API `maxAge`
  • 95c2208 Remove EstablishGpuChannelAsync feature which has launched
  • 8c7c0f3 webium: null check BrowserView in DiceWebSigninInterceptionBubbleView
  • 1710f8c Roll Chrome Mac Arm PGO Profile
  • 2552386 [bedrock] Update TabSharingUIViews to use GlobalBrowserCollection
  • b8c03f6 [Reland] Change the API shape for BackForwardCacheSettings
  • b7504f3 Remove old Tile Reclamaition Configs
  • 4706b08 Reland "[Signin][Android] Redirect accounts once added via ADD_SESSION header"
  • d1e1b63 build: Introduce cros_target_cpu_arch GN arg
  • 986277f [iOS] Re-enable testMoveItemThenRefreshSignIn for Reading List.
  • 06be1c8 [iOS] Rename startBWGFlowWithEntryPoint
  • d1880c5 Remove Linux kernel 4.4.0 workaround for persistent histograms.
  • d83b6d9 Roll DevTools Frontend from 3dfda9d0ea97 to dbb61cf4b27a (5 revisions)
  • 33209aa [iOS] Take FET Feature Into Account for Gemini Navigation Promo Feature
  • ae524ce Support "debug_redact" in ToValue
  • c41c9e5 Roll WebRTC from 83dd270c1862 to 7442f8c253a7 (3 revisions)
  • b4e59b4 Add can_use_model_execution_features check to actuation eligibility
  • 251649e Roll Perfetto from 120ad001388d to 46644e5dfbad (3 revisions)
  • 6f66c81 Roll Skia from b1936c760645 to 767c4ce9e29c (1 revision)
  • d244fb0 Revert "[Chrome Next] Fix incorrect computation in opaque browser frame"
  • 4bc0c0a Revert "Mac: Force rasterization of window icons for WebRTC picker"
  • 92b4609 [AIAE] Fetch APC on amount extraction
  • 817ed01 [HybridInAutofill] Fix field trial platform
  • 901e41a Roll Chromite from eec00b35328a to 48222691c960 (1 revision)
  • 21cd5ed pwas: use new hmac api for app shim registry
  • 1c04b37 Reland #2 "[Android] Add the Home button as OptionalViewElement in CtaPageStation"
  • a803309 [Theme] Fix logo color in dark mode.
  • 9fb625b Fix formatting of device_management_backend.proto.
  • 837842c Remove obsolete TODO
  • 625dfdb [gestures] Make ::overscroll-area-parent siblings to scrolled content.
  • 1325c20 [A11yPerformance] Testing config for ProgressiveAccessibility phase 2
  • addc690 Roll ANGLE from ee7ca062b0c5 to 5ac8def8003e (1 revision)
  • 75d9332 [A11y] Deprecate bool_attributes in AXNodeData mojom
  • 59545f1 Roll src/third_party/harfbuzz-ng/src/ 7d936359a..31695252e (262 commits)
  • bc825d7 Populate all fields EncryptedPrivateMetricReport
  • 1727235 Add PipScreenCaptureCoordinatorProxy::WindowsToExclude()
  • 8b23cab [Persist] Fix Empty View margins for smaller screens
  • dd44cc9 [Android][WebAuthn] Add logging for passkey source for FIDO2 requests
  • b40f028 [Signin][Android] Remove android:visibility="gone" from ViewStub in new_tab_page_layout.xml
  • 8900751 Add element for viewing raw event details
  • 5d1fa47 Roll libc++ from 07572e7b1692 to c03062d6c938 (6 revisions)
  • dd598e3 [iOS][AIM] Fix input plate compact to expanded animation glitch
  • 4ebfe34 Re-enable IncognitoNtpOmniboxAutofocusManagerTest and add render tests .
  • 4c8c04f [Archival] Don't remove archived message card on closing all tabs
  • 8a34232 Clean up IDS_NTP_CUSTOM_BG_CHROME_WALLPAPERS strings
  • 8b3e2af Mac: Force rasterization of window icons for WebRTC picker
  • f0bb626 Use Chrome context menu on Sad Tab
  • 0429d66 Roll Perfetto from 2c25db2ed646 to 120ad001388d (5 revisions)
  • a132b57 Updating trunk VERSION from 7569.0 to 7570.0
  • 39eaf5d Roll WebRTC from c1cfecee5248 to 83dd270c1862 (1 revision)
  • 8e30a67 Roll Chrome Android ARM64 Orderfile from J7SFcZoSyOymt3L-I... to 0PEwB7IiCdtg-tOJo...
  • cb36e04 Wait some time before capturing ChromeOS screenshot.
  • 33066e0 Roll SwiftShader from 518a9f63228d to 42f6e0594168 (1 revision)
  • ac7187b Roll src-internal from 96d567763cde to b1e2057843d4 (1 revision)
  • e14c9b5 [Persist] Introduce CombinedTabRestorer
  • 9f0f845 Speculation Rules - fix `<details>` descendant link CHECK
  • 47ecd6d Use span-based file API in dump_process.cc
  • cf01491 Crash fix - Hide "Managed profile required" interstitial link on iOS.
  • cf1eb72 Roll Media App from q-cz8ZklqFZn8e0ch... to GTbV-XYywBlbLYAP7...
  • 346aebc Update policy egtests to use `waitForWebStateVisibleURL`
  • 262fa98 [dbsc] Implement garbage collection token binding keys.
  • 3786940 Fix some web tests disabled during button migration
  • c96d7f2 [Actor] Centralize metrics logging in c/b/actor/
  • e526a19 [Privacy Sandbox] Explicitly enable Related Website Sets in tests
  • 7003729 Skip failing angle_unittests on ChromeOS
  • 92ccb8b Roll Help App from d1V1uSQKXBnmAmF6m... to RwR_Hp7QUH1iqzD5-...
  • fda2651 Roll DevTools Frontend from 032bfee04c2f to 3dfda9d0ea97 (6 revisions)
  • d23b2a0 Prefetch: Trace pipeline using Perfetto flow and track events
  • 44229fb [Android][WebAuthn] Add logging for passkey source in CredMan
  • 1d57b3a [tips] Add integration test setup and initial tests for ESB promo
  • c283b27 Remove idle_callback tests
  • 581be86 Roll Chrome Win32 PGO Profile
  • 9eadce0 Roll Chrome Mac PGO Profile
  • 7e2bf60 [iOS] Update DriveFilePickerTestCase to use programmatic sign-in.
  • c351cc0 Fix LanguageSettings test
  • aea17f2 Roll ios_internal from fd52a146a601 to 99015ee32eea
  • b8b80e6 [KP] Automatic update from google3
  • 599856a [iOS][AIM] Update horizontal padding inside the input plate
  • f7ff9b7 [UNO] Extend Sync.BookmarkAccountStorageMoveDialog.* histograms
  • bccb4fc [3PC] Enable Mode B rollback by default
  • 823f4e9 Roll vulkan-deps from 53bfad22ed15 to 8b33d336e1ab (1 revision)
  • 73c5e07 Roll Dawn from d07825efa003 to 6a6f6d3d7fd7 (4 revisions)
  • 714d7d7 [devtools] Remove redundent prefetch test
  • d4780b9 Roll Chrome Mac Arm PGO Profile
  • 72442bd legion: Handle Mojo sandbox crash for Encrypt/Decrypt
  • fa36b94 Add nulltpr check for step value in CSSMathRandom::ToCalcExpressionNode
  • 94c0699 Roll Perfetto from ec42dd387c2a to 2c25db2ed646 (6 revisions)
  • 43199d8 [iOS] Extend intents-on-measurements
  • 84f541f Refactor BinaryUploadService::Request into a base class BinaryUploadRequest in components and enterprise
  • c0c67b3 [v8] Remove last usages of v8::PropertyCallbackInfo<T>::This()
  • c868368 Roll Skia from d5a6b6af6d12 to b1936c760645 (11 revisions)
  • 2255a7a [OTP]Propagate error codes to OneTimeTokenService subscribers
  • 6fc71d5 Remove function *ResultToString and instead use automated mojo strings
  • c36cdf5 Add new specific errors based on where they are triggered
  • 67f449a Add error for when capture is not enabled
  • 0992e9a [iOS]Avoid having two add account flow from account menu
  • ced9766 Roll Chrome Android ARM64 Orderfile from IhWwwYw-VCiROoqjo... to J7SFcZoSyOymt3L-I...
  • d767170 Roll DevTools Frontend from 9d9a7262df8a to 032bfee04c2f (2 revisions)
  • dfe014a Updating XTBs based on .GRDs from branch main
  • 5ebceca Roll ANGLE from 1724ab3641c8 to ee7ca062b0c5 (1 revision)
  • eed6ee9 [AdTracker] Only scan the v8 stack once per request
  • 6b8214b Roll WebRTC from bfe531707560 to c1cfecee5248 (1 revision)
  • 2d898ae Add pip_owner_render_frame_host_id to PipScreenCaptureCoordinatorImpl
  • cea2e43 [signin] Update DESKTOP_OWNERS to use a review alias.
  • 655cc7a [iOS] Fix crash for editing name/email profile from manual fallback menu
  • e431add Prerender2Fallback: Emit named trigger for prefetch ahead of prerender
  • 5a96226 [signin] Re-enable a few ProfileMenuClickTest on Win and Mac
  • 8a9992c [Socket Pool Limit Randomization] (10) Cleanup release state changes
  • ba59fa2 [identifiability] Remove leftover perfetto categories and proto message
  • d5a8f71 Roll Chrome Linux PGO Profile
  • 19a997c [CT] Automatic update from google3
  • 1cedc7b Delete prefs deprecated in 12/2024
  • bf4cd08 Disable tests for DevTools roll
  • 76da410 Roll clank/internal/apps from a6247fb9819b to fe18f1532fab (1 revision)
  • 8ecb6b8 [devtools] Remove migrated 'inline values' web tests
  • 608e9ee Roll Chrome Android Desktop x64 PGO Profile
  • 8724ec0 Refactor IdentityManager clients to use OAuthConsumerId
  • 7e8699d Remove TabResumption and TabResumptionImages flags
  • 4f93c3e Roll ios_internal from 350db37e79a4 to fd52a146a601
  • e9a2048 [AutofillAi - M4] Move MockAutofillMessageController to a separate file.
  • 6bf330e [ios] Move OTR profile deletion logic to a ProfileStateAgent
  • 28d3903 [AutofillAi - M4] Create the AutofillMessageControllerImpl.
  • bd03b77 Update visibility of FreeType component
  • 1b87554 Fix blob creation in StyleElement::AddImportMapEntry
  • 24fc221 [Immersive Reading Mode]: Stop speech when Side Panel closes
  • fea5c9d Roll WebRTC from 735591f4e6ad to bfe531707560 (1 revision)
  • ed0e4ed Roll Chrome Android ARM64 Orderfile from lMZ7aHsb0v867WwLi... to IhWwwYw-VCiROoqjo...
  • 83e95e8 Roll Perfetto from 6edbe7a2e519 to ec42dd387c2a (1 revision)
  • 540ad26 Roll Chrome Android ARM32 PGO Profile
  • 2c4443c Roll Chrome Mac Arm PGO Profile
  • 2929262 Roll src-internal from cac0eda4f931 to 96d567763cde (1 revision)
  • c105aba Roll DevTools Frontend from 475eb7ae0a91 to 9d9a7262df8a (4 revisions)
  • 01e5c4c Refactor AuthService clients to use OAuthConsumerId - 5
  • c34244f Roll Chromium Variations from SXedGGUJh-QzWbgR9... to mDYe4CwlW_ojJ4hA2...
  • f33e770 [DevTools] Remove obsolete `widget-events.js` test.
  • 7ddac2a Roll R8 from Fq2es0-0bCkqirMbd... to aQiRizhSSPFGfHGuo...
  • 41b6145 [PA] Narrow down locked section
  • 80e71fe Roll Turbine from DV_E8eKAtXx3kTD4a... to Fr97aXogWofWM2OLP...
  • 61abf9b Roll V8 from 54df9a2e6ec0 to 6e0661d6b0f9 (26 revisions)
  • 6177f5c [iOS] Fix shutdown crash due to tab dependency management UAF access.
  • 517c26f [Unsafe Buffers] Fix incorrect UNSAFE_TODO(...) scoping ranges
  • 629f144 [devtools] Remove obsolete live edit web test
  • b5e00d9 Roll ANGLE from 953f3d5f5c0e to 1724ab3641c8 (1 revision)
  • ffb2394 Roll WebRTC from d80cfa2a3d24 to 735591f4e6ad (4 revisions)
  • 3457eca [iOS][CX] Add credential conflict item identifier
  • 95283ef Roll Chrome Android ARM64 Orderfile from pBZIIktEgQ-gDgFqY... to lMZ7aHsb0v867WwLi...
  • b0e0805 Roll ios_internal from 48f16fe5759a to 350db37e79a4
  • 9512334 [iOS] Relocate input item management from mediator to a dedicated class
  • e00d1ed [Settings Search] Destroy BatchUploadCard MVC at Preference destruction
  • 8ad7f02 Disable failing test testActivityThemeColorIsDefault
  • 4b4c2ee Roll Perfetto from 226f10a6939f to 6edbe7a2e519 (1 revision)
  • 4ad79a6 [ios] Extract IncognitoSessionTracker::Observer
  • 5d6bd7b Deprecate and remove EnterpriseIdentityService
  • dfefb57 Roll DevTools Frontend from 6ce8b80f195c to 475eb7ae0a91 (2 revisions)
  • 9a1c853 [devtools] Remove migrated web test
  • eee60fc Sync build configuration enable_freetype with PDF
  • 0614d2e Render corner-shape with system focus rings
  • 09bc6b2 Roll Projector App from gs2z8aUF2clQ-2deJ... to nLAi6FBQrimREDydi...
  • 2b7d92d Roll Chrome Win32 PGO Profile
  • d12602b Make PipScreenCaptureCoordinatorImpl::Observer use OnStateChanged
  • 64b7bf9 [TDR] Remove TODOs linked to issue 40758998.
  • b75a5cf Use ZIP obfuscated analyzer in case if file is obfuscated
  • f73adbe Roll Chrome Mac Arm PGO Profile
  • 4b71c4e [iOS][Autocomplete] Move autocomplete to browser agent
  • 386ef8c [Android] Delete "dismiss" for dynamically positioned keyboard accessory
  • 4cc3568 Fix an incorrect OmniboxPopupPresenterDelegate call
  • febd2d0 Roll ios_internal from b751aaeca79d to 48f16fe5759a
  • e18cc7c [Sanitizer] Mark SanitizerAPI as experimental. Remove virtual suite.
  • d2c1615 [Autofill] Rename "refill" to "automatic refill"
  • ccebb3d [ios] Add tests for TimeDelta with Swift/C++ interop
  • cc03f39 Roll Chrome Android ARM32 Orderfile from dZYQu3DP9aaWlHq0F... to dmVPO_W27wruNBXSh...
  • 94a6cd7 Roll FontConfig 23b3fc6e5..d62c2ab26 and build without FreeType
  • 9d00bda [TDR] Remove TODOs linked to issue 331214986.
  • e07c9b0 Roll DevTools Frontend from 6852343fc0a1 to 6ce8b80f195c (3 revisions)
  • 0b4999d [ios] Fix tab presentation transition with empty thumbnail
  • c999cb2 Remove empty ios/chrome/browser/browser_state directory.
  • bc830dc Roll Chrome Win64 PGO Profile
  • 1c37aad Roll clank/internal/apps from 78c4f1290f49 to a6247fb9819b (1 revision)
  • 64c587d [Blink] Rename HTMLVideoElement::resource_provider_
  • 9b356c1 [Wallet] Remove leading zeros from boarding pass flight number
  • cd14994 [inspector] Don't access disposed V8 session in paused tool
  • a99d914 rcaps: Add Android specific info to the chrome internals page
  • 41b6765 [remoting] Make Debian package reproducible (legacy dch compat)
  • effa2ef Disable kComposeboxIOS feature for QR scanner egtest
  • d360723 Roll Perfetto from 8ab293da46a3 to 226f10a6939f (3 revisions)
  • 65f207c Roll ANGLE from 0c0d10c4914a to 953f3d5f5c0e (1 revision)
  • e761667 [iOS] Fix manage sync settings error reload
  • 7bc3a11 webrtc: unmute tracks until a packet arrives after a receptiveness change
  • 7006399 [dbsc] Add TokenServiceTable::GetAllWrappedBindingKeys
  • 136d07c [Fuzzing] Garden libfuzzer and centipede tester bots.
  • db2a25f Autoshard chromium/src test suites
  • 3fdff17 Roll Dawn from 23f08c798e68 to d07825efa003 (1 revision)
  • 4a9030f [TDR] Remove TODOs linked to issue 41367902.
  • 06de59a [devtools] Re-enable call stack sidebar web tests
  • 7a31e2b [//media] Rename VideoFrameSharedImageData::is_mappable_si_enabled_
  • e06acd7 [Blink] Rename CreateResourceProviderForVideoFrame()
  • 49a6849 [//media] Remove stale code in video_frame_mojom_traits.cc
  • ebfd0f5 Graphite: Block list old Intel drivers and gen < 9
  • 4566edc [Frameworks roll] Roll to 841621880 piper revision
  • a4c4470 Fix "pinned" variable to be a bool
  • 389ea33 Update meet_effects hash in DEPS file.
  • f0581bc Roll Chrome Mac PGO Profile
  • 52b408e [DevTools] Remove obsolete `object-events.js` unit tests.
  • dcc3454 Roll DevTools Frontend from 60b8977eb329 to 6852343fc0a1 (1 revision)
  • 3e89af9 Blink: Have CreateResourceProviderForVideoFrame return snapshot provider
  • 704f2fa Put the font comparison performance fix behind a feature flag
  • aea3448 [//components] Port CameraVideoFrameHandler from checking gpu_raster cap
  • a3e06bf Refactor SelectFileDialogLinuxPortal to request XDG portal on demand
  • a6e2296 [//cc] Change test code to check LTHI for gpu raster
  • 5e245df [Blink] Remove CHECK from WebMediaPlayerImpl
  • df22c01 [Blink] Remove CHECK from VideoFrameImageUtil
  • 80003e3 Enable kDevToolsAcceptDebuggingConnections by default
  • a51f2e7 [//media] Remove CHECK from VideoFrameYUVConverter
  • 3c62b58 Roll WebView ARM Orderfile from Z7dxpqy_1i64GDrZg... to UeP3VMzc6YVY-2zU4...
  • 953c5d3 Roll Chrome Mac Arm PGO Profile
  • f82bed2 [Blink] Have VideoFrameImageUtil test operate on CanvasSnapshotProvider
  • b39226d [Blink] Have HTMLVideoElement hold CanvasSnapshotProvider
  • 89ddf00 [//content] Remove CHECK from WebGraphicsContext3DProviderImpl
  • e904ef9 Roll Chrome Android ARM64 Orderfile from qWD78zCgbRcktfbDN... to pBZIIktEgQ-gDgFqY...
  • 0eeedaf [iOS]Account menu is always correctly resized
  • b52d4c8 Roll Chrome Win ARM64 PGO Profile
  • 16ce5e8 Roll Chrome Linux PGO Profile
  • 5cb69ad Roll Website from 105a46915f47 to 1e6b9080b485 (1 revision)
  • 8ad6d4d Prerender: Remove obsolete TODO comment
  • cdc78b6 Roll Chrome Android Desktop x64 PGO Profile
  • fbaa872 Roll Chrome Android ARM32 PGO Profile
  • c97a05c Roll compiler-rt from cbcf6df2aa09 to a9fde25409cf (1 revision)
  • e455aa4 Roll ANGLE from 4ccd968c8edc to 0c0d10c4914a (1 revision)
  • 2d89102 Use IncognitoUtils function instead of feature flag in SplitCompatApp
  • efc103d Reland "Add TokenFetcher implementation for Legion."
  • d78d89f Roll Chrome Mac Arm PGO Profile
  • 0c1ca61 Roll src-internal from 7f9deb7a05df to cac0eda4f931 (1 revision)
  • a732284 Roll DevTools Frontend from 114838bca20c to 60b8977eb329 (1 revision)
  • 1edd4e1 Add mklw to histograms OWNERS
  • f1ff005 Roll BoringSSL from 4abd625c6afd to 7f448d35a3d7 (1 revision)
  • c05ffd4 Roll Chrome Android ARM64 Orderfile from 67Izrt44qdMsAZZIt... to qWD78zCgbRcktfbDN...
  • a8c5aee ash: Remove a browser_list.h dependency
  • 8846683 Roll Depot Tools from f8cc59a94be9 to ac1b095b090e (1 revision)
  • 89e15c7 Revert "Roll Skia from d5a6b6af6d12 to 4830855b6f84 (1 revision)"
  • 6c7e6bc [iOS] Refactor common page context logic for AI prototyping
  • 2309c58 Revert "Roll Skia from 4830855b6f84 to 3c5f9e0c9269 (1 revision)"
  • 2551d22 Use VariationsNetworkClock for Chrome's VariationsIdsProvider.
  • d0b6d90 Revert "Roll Skia from 3c5f9e0c9269 to 0c016e4aefd5 (1 revision)"
  • bbb64a6 infra: Fix missing GN config errors on build perf builders
  • 90d3aae Roll Crossbench from 0a1b5242248f to ec6e1793aecd (1 revision)
  • 9e885ad Move the libcxx_module config to the libcxx_module target.
  • e405c84 PA: Support sized-delete for blink::String's buffer partition
  • c0e4536 Migrate TabUIHelper feature to UnownedUserData
  • f432841 Roll DevTools Frontend from 7a8b3837e18a to 114838bca20c (1 revision)
  • 773a380 Roll clank/internal/apps from fd0874391732 to 78c4f1290f49 (1 revision)
  • d1c3260 Roll BoringSSL from e127aec9f1f4 to 4abd625c6afd (2 revisions)
  • 81aebdb Fix the paste lag issue in views::Textfield.
  • 41ba024 Roll Chrome Mac Arm PGO Profile
  • 5ca9e76 Roll Chrome Win64 PGO Profile
  • e48df2c Roll Chrome Android ARM64 Orderfile from fiT2guUDFc-sf_vuU... to 67Izrt44qdMsAZZIt...
  • fa4af1a Roll Chrome Win32 PGO Profile
  • 018696e ash: Remove a browser_(finder|list).h dependency
  • 4a652a2 Updating trunk VERSION from 7568.0 to 7569.0
  • 0592780 [SelectionPtr] Add TabIterator constructor that takes a tab pointer
  • 97f1800 Rerun modularize.py --os=windows
  • 4b90c98 Reland "Revert "Update FastShutdownIfPossible to optionally test outermost frame counts""
  • a9b0fdc Revert "[discard] Set single_outermost_main_frame for WebContentsDiscard"
  • cb009d3 [bedrock] Add IsEmpty() and GetSize() to BrowserCollection
  • 5cd6441 Roll Chrome Android ARM64 Orderfile from xf_badXqSkDpzdRVm... to fiT2guUDFc-sf_vuU...
  • 58e491f [SelectionPtr]Change return type of selection_model
  • abecaa9 Reapply "Convert to UNSAFE_TODO in partition_alloc in mac_linux_pkey_asm"
  • d888d66 Exit Settings on back if the settings sub page is opened directly.
  • 5197426 Add minap@ to ai_prototyping OWNER
  • 1cf35cd Roll Chrome Mac PGO Profile
  • 9da0109 Roll ios_internal from 84e7b24b7a68 to b751aaeca79d
  • d9c3d3d Revert "Revert "Update FastShutdownIfPossible to optionally test outermost frame counts""
  • 1385ae7 Revert "Update FastShutdownIfPossible to optionally test outermost frame counts"
  • 6dac353 Roll BoringSSL from 20b18aef7c1a to e127aec9f1f4 (5 revisions)
  • ff1b289 Revert "Apply blink::StrCat() in core/editing/"
  • 7be728a Roll Chrome Mac Arm PGO Profile
  • bc2ac85 [iOS Blink] Include video_capture_metrics_mac.h in video_capture_device_avfoundation.mm
  • a3ace4b Roll Skia from 3c5f9e0c9269 to 0c016e4aefd5 (1 revision)
  • 064dbc5 [omnibox] Fixes OmniboxPopupWebUIContent::ShowUI crash
  • f98d858 Roll Chrome Android ARM64 Orderfile from ewq35ccriFz5NeuT9... to xf_badXqSkDpzdRVm...
  • 97912ad Fix Task Manager "End Process" on Android by using Shutdown/ForceShutdown
  • c1cbe49 [discard] Set single_outermost_main_frame for WebContentsDiscard
  • 25de8d3 Roll Chrome Linux PGO Profile
  • b8547fa Roll BoringSSL from 098d5baf008f to 20b18aef7c1a (1 revision)
  • a8451d9 Roll clank/internal/apps from 61ab2281d0b9 to fd0874391732 (1 revision)
  • 3f7759f Roll Chrome Win ARM64 PGO Profile
  • 92a95cb Roll Chrome Android Desktop x64 PGO Profile
  • c2d5696 Roll Depot Tools from 360ca0918027 to f8cc59a94be9 (1 revision)
  • c63dc34 Roll Skia from 4830855b6f84 to 3c5f9e0c9269 (1 revision)
  • 482a3a6 Add Clank and Webview flags for PK autocorrect underline UI
  • 472c837 Roll ios_internal from 18fa97d50b64 to 84e7b24b7a68
  • 6c62deb Roll Chrome Mac Arm PGO Profile
  • a20a7bb siso: update to version 1.4.20
  • facfb66 Roll Chrome Android ARM64 Orderfile from OzRiMRNkcwJPtaL2C... to ewq35ccriFz5NeuT9...
← Back to all summaries