Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2025-12-01

Overview

This summary covers 589 commits to the Chromium main branch on December 1st, 2025, with 419 of them being particularly relevant to developers. The day saw a significant number of breaking changes to core APIs, continued feature work on mobile platforms, and the removal of the "Identifiability Study" feature. The first commit of the day was (377f5e8)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((377f5e8)) and the last was (cc49735)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((cc49735)).

Breaking Changes

  • ⚠️ BREAKING The public field AccountInfo::hosted_domain has been removed. Embedders must migrate to the GetHostedDomain() accessor method and use AccountInfo::Builder for modifications. (0cc5bbc)
  • ⚠️ BREAKING The virtual method ContentBrowserClient::IsInitialWebUIScheme has been renamed to ContentBrowserClient::IsInitialWebUIURL. Embedders who subclass ContentBrowserClient must update their implementations to override the new method name. (f9d507d)
  • ⚠️ BREAKING The MonochromePublic APK and Bundle build targets for Android have been removed. Downstream build systems relying on monochrome_public_apk or monochrome_public_bundle will break and should migrate to targets like chrome_public_bundle. (53d2c26)
  • ⚠️ BREAKING The public method overload File::ReadNoBestEffort(int64_t offset, char* data, int size) has been removed from base/files/file.h. Code must be updated to use the base::span-based overload. (9cdc48c)
  • ⚠️ BREAKING Callback signatures for several google_apis components, including GaiaAuthFetcher and GCM requests, have changed from std::unique_ptr<std::string> to std::optional<std::string>. Embedders using these APIs must update their callback function signatures. (5711954)
  • ⚠️ BREAKING The signature of the public static method content::MidiHost::BindReceiver has changed from using int to the strongly-typed ChildProcessId for the renderer process ID. Direct callers will need to update. (cee62ba)
  • ⚠️ BREAKING The url::StringViewReplacements class has been removed and its functionality merged into url::Replacements. Code directly referencing the old class will break. (d170193)
  • ⚠️ BREAKING Legacy IPC serialization traits IPC::ParamTraits for gfx::ColorSpace and gfx::DisplayColorSpaces have been removed. Embedders using these for custom IPC will need to migrate. (37a959e) (d3701e0)
  • ⚠️ BREAKING The IP Protection feature has been removed from //chrome/browser, which includes the deletion of the public method GetIpProtectionProxyBypassPolicy from ChromeContentBrowserClient, affecting embedders. (a402ef2)

Public APIs & Core Internals

  • The "Identifiability Study" (Privacy Budget) feature has been removed from the codebase. This large-scale cleanup deletes the IdentifiabilityStudyState, related metrics providers, tests, and the IdentifiabilityStudyConfigurator mojo interface. (db00ab2) (0d71dc3) (52c1810) (c0d2d38) (a09eb88)
  • The GpuPersistentCache has been refactored to use scoped_refptr instead of std::unique_ptr, preparing it to be shared across multiple GPU channels. (65c4309)
  • The UnexportableKeyService mojom interface was expanded with new methods for key management, including GetWrappedKey, GenerateKey, and FromWrappedKey, along with garbage collection logic. (29309e9)
  • The AccountInfoSerializer class has been removed and replaced with free functions, simplifying how account information is serialized within the identity manager. (f9960cf)

Blink & Web Platform

  • New CSS shorthands timeline-trigger-range and timeline-trigger-exit-range have been added for scroll-driven animations. The parsing order for the timeline-trigger shorthand was also updated to match the specification. (956f0e4) (93ee429)
  • Support was added for reversed() in the counter-reset CSS property, allowing counters to be initialized and decremented. This is available behind the CSSCounterResetReversed feature flag. (8ebbbfe)
  • A bug in CanvasRenderingContext2D.restore() that would fail on a zero-size canvas has been fixed. (7a42154)
  • View Transitions hit testing logic was updated to correctly treat the ::view-transition pseudo-element as an overlay, aligning with recent paint order changes. (81a10c2)
  • The @contents mixin parameter, which is no longer in the CSS mixins specification, has been removed from the parser. (817b6ec)

Android

  • Significant refactoring of the TabStateStore was performed to align its restore logic with the legacy path and ensure current tabs are saved correctly during saveState() calls. (af3a437) (88e54d6)
  • The HeadlessTabModelOrchestrator logic was changed to ensure the active tab is loaded synchronously, preventing state loss on shutdown. (ea04751)
  • UI updates were made to the Omnibox for selected/hovered states and incognito styling, and to the Page Zoom Indicator. (b9a6dca) (702a6a9) (1ea3458) (a962ac0)
  • A fix was implemented for moving tabs between incognito windows. (3be7c01)

iOS

  • Continued development on the new AI-powered Composebox feature, including UI updates to fade suggestions and the addition of a "create image" button. (10d7f06) (08e8621) (5d427e8)
  • The file upload panel was updated to use a PHPickerViewController for photo and video selection, improving the user experience. (929f329) (ce07328)
  • The IOSChromePasskeyClient was updated with basic key fetching capabilities and a new RequestInfo structure to handle bottom sheet requests. (e424d9b) (04b47a7)
  • Keychain access for password storage was migrated to kSecAttrAccessibleAfterFirstUnlock to improve compatibility with background app launches. (085fdc7)
  • Sync support was added for the "Enhanced Safe Browsing" setting, allowing it to propagate to iOS clients. (7ba0327)

Autofill & Passwords

  • A major internal refactoring moved form submission detection logic and related state from AutofillAgent to FormTracker. This simplifies the AutofillAgent and centralizes submission handling. (883f9b6) (689db02) (b3ab533) (b65e653)
  • Logic for address profile deduplication and refills was improved to better handle similar profiles. (1ed45bd) (39ce161)

Security

  • The kEnableEncryptedTrackedPrefOnEnterprise feature was enabled by default for Windows enterprise devices, activating an app-bound tracked preferences system to enhance security. (a6d5573)
  • Unsafe buffer usage was fixed in several places by replacing raw pointer operations with safer alternatives like std::wstring_view and std::ranges::fill. (f5253a7) (dc87c82)
  • In the Windows sandbox, token handles are now properly closed after being passed to system APIs, preventing potential resource leaks. (e4c8cd2)

ChromeOS & Remoting

  • Significant progress was made on supporting Wayland for Chrome Remote Desktop on Linux, with the addition of a PortalInteractionStrategy and initial support for KDE Plasma sessions. (0cd9256) (a8abd33) (dff1223)
  • The Ash shelf controller logic was heavily refactored to use BrowserDelegate and BrowserController abstractions instead of direct dependencies, improving architectural separation. (f161211) (e4aac7b) (ef51986)

Build & Infrastructure

  • Node.js dependencies for WebUI development, Mocha and Chai, were updated to modern versions. (703c3ac)
  • Sized deallocation (use_sized_deallocation) was enabled for non-optimize_for_size builds to improve memory allocator performance. (1cc2ec3)
  • The Siso build tool was updated to version 1.4.19. (5ce6a1e)
All Commits (589)
  • cc49735 extensions: Add more WebAccessibleResources tests to desktop Android
  • bce93e3 Add new icon for contextual tasks
  • b9a6dca [omnibox] Draw action button differently per selected and hovered state
  • 80cc1a0 Make sure GlicEntrypointVariations:disabled is tested
  • 42e9dcf glicmi: Add browser tests for switch conversation api
  • 99cc107 Allow OAT to operate in the presence of PEH
  • a402ef2 [IPP] Remove references from //chrome/browser and //services/network
  • dbb817b [TDR] Remove TODOs linked to issue 259178547.
  • 39ba6dc Expect `oes-element-index-uint.html` flake on Pixel 6
  • 2c7e395 Disable InvokeUi_multiple_infobars on Win
  • 38b01bd [TDR] Remove TODOs linked to issue 332926512.
  • bec7ca6 Roll optimization-guide from 85d5d4718d45 to 5cf82d706280
  • 0a306a6 [on_device_model] Fix build with build_with_tflite_lib=false
  • 1e8a915 [AIM] WebContents may not be null for backgrounded tabs
  • 0b94406 [WebAudio] Refactor codec-tests to use a standard test suite
  • 45943a4 [AIM] Polish fix for tab filter and profile in incognito
  • 72830ea Fix lint error: namespace comment
  • 4a68dfe Roll Chrome Win32 PGO Profile
  • cee62ba Switch MidiHost to ChildProcessId
  • a11d2f9 Roll DevTools Frontend from b1c8402b2e0c to 8bc2b2270bdc (2 revisions)
  • ae219d5 Reland "[WebAudio] Add AudioDecoderAudioFileReader fieldtrial, fix tests"
  • 1f256b3 Remove unused include in associated_receiver.h
  • 344b8ff PartitionAlloc: Remove RawPtrTraits::kDisableBRP
  • 0c97b93 Removing TODOs pointing to resolved issues
  • 8c60a0f Roll Chrome Mac Arm PGO Profile
  • 21c9808 [iOS] iOS 16 deprecation code cleanup
  • f7c982c [AIM] Renames Tab Picker Toolbar Text
  • 0ecca37 Roll clank/internal/apps from e5f6650a4094 to 4648de8c6b98 (1 revision)
  • cb9fb50 [Cleanup] Remove no longer existent class from bubble dialog delegate
  • 354ebbc [TBHSP] Manually drive animation to deflake test
  • 07a1ab4 Enable GlicAppendModelQualityClientId by default.
  • beeff72 Roll ANGLE from a6c4431f9917 to 78f1066e993d (1 revision)
  • 2fbb8e3 Revert latest R8 roll-up to fix deterministic android bot
  • 12ff8c3 Roll WebGPU CTS from ef27c0b88b80 to e7cad0143f13 (1 revision)
  • fdaab51 Roll llvm-libc from f950018bf8a8 to fe97633934c2 (1 revision)
  • e9e873e Roll ios_internal from 697336ed8df2 to f1c20ae43d64
  • b810520 [tips] Update quick delete feature promo detail page title
  • 1de3dd7 Disable consistently flaky AutofillUploadTest tests on fuchsia bots
  • 6ba47c2 Change enum_type_name argument to ReportInvalidEnumSetToAttribute
  • 7309ebe Roll chrome/updater/internal
  • 01312da [Extensions] Change construction of install dialog on Desktop Android
  • 702a6a9 [AIM] Style popup menu for incog.
  • 85163ae [iOS] iOS 16 deprecation code cleanup
  • d004a33 Roll Chrome Android ARM64 Orderfile from PpqnSjgLun1C8ETVk... to gxAmD0zLdoH-_L7Sl...
  • 0c2002c [TDR] Remove TODOs linked to issue 397669819.
  • 53d2c26 android: Remove MonochromePublic targets
  • 9530837 [spc][bbk] Fix Tests in Preparation for SPC BBK Launch on Desktop
  • 69fff81 Roll metrics and omnibox protos.
  • 36654b5 Webium: Fix browser crash in DocumentAssociatedData::RunPostPrerenderingActivationSteps
  • e7ff1fb [iOS] iOS 16 deprecation code cleanup
  • 0119f43 Roll Perfetto Trace Processor Win from 5fba796da3fb to fdb95badca57
  • 0340814 Extend Media Router metrics expiry
  • 825ee0f [tips] Remove unused not implemented calls for notifications
  • f804fb4 Revert "Run GPU TSAN tests on SwiftShader"
  • dff1223 [crd host][wayland] Add KDE session support
  • 4360df4 [LNA] port PNA use counter tests
  • b58c09d [DomStorage] Update StorageAreaImpl::OnMapLoaded parameters.
  • dd48a8c [TDR] Remove TODOs linked to issue 268196299.
  • 6ad190b Remove all observers registered by the Side Panel
  • a955ba2 Roll DevTools Frontend from 6d73baf67ef3 to b1c8402b2e0c (2 revisions)
  • 120e700 Roll Skia from a0de596ec9d5 to fd5ad9dbfac6 (3 revisions)
  • 5d1a891 Roll optimization-guide from fb463d9b6404 to 85d5d4718d45
  • fe91ad5 Roll Chrome Android ARM32 Orderfile from Cd6R3y_NZDV18Dfx1... to AkxesWEFFxC2Z1mEb...
  • 1bfa9bc Upload quality logs for contextual tasks context
  • 0fdc478 Roll TFLite to Next Green Version
  • f73d333 fix arm64 is_running_in_vm_ value
  • 2f3aa55 [tips] Scale the image logo for tips bottom sheets based on width
  • 4b650d1 [FedCM] Temporarily disable ML model for multi-idp
  • 2b37396 Roll Perfetto Trace Processor Linux from a55ca8aac81b to fdb95badca57
  • 7ba0327 Support kSafeBrowsingEnhanced as a synced pref on iOS.
  • 4732aef [TDR] Remove TODOs linked to issue 40613129.
  • 712c0d2 [TDR] Remove TODOs linked to issue 392612108.
  • 6eb1349 Import wpt@638e3323132fc6f469ffe83535d36c200b52f61a
  • 31e4703 Roll vulkan-deps from bb0f420085e9 to 327bc9dec2a4 (2 revisions)
  • 4510031 Extend lifetime of Media.VideoEncoder.* UMAs
  • 37c82b7 [TDR] Remove TODOs linked to issue 368634445.
  • 27568b1 [Persist] Fix TabStateStore init
  • 580e3a1 Extend expiration of Ash.Shelf.DefaultApps.Pinned histogram.
  • 6316d1c [TDR] Remove TODOs linked to issue 408801109.
  • 7b13a37 Show snackbar when attachment upload fails
  • a40b970 [TDR] Remove TODOs linked to issue 40205026.
  • 0cd9256 [crd host][wayland] PortalInteractionStrategy
  • 8f46eb7 [TDR] Remove TODOs linked to issue 40213759.
  • 36d5952 Roll Chrome Mac PGO Profile
  • 08591e5 [TDR] Remove TODOs linked to issue 370559961.
  • 2d8d503 Remove references to --force-overlay-fullscreen-enabled
  • 44c6cb6 Actor: Ensure act callback is always fired before state change
  • d8e0544 [Frameworks roll] Roll to 838873934 piper revision
  • 41bfe9a [IPP] Delete last few references in DevTools
  • d7658e4 Fix flakiness for PageStabilityMetricsTest.Paint and PageStabilityMetricsTest.PaintDelayed
  • d9375a8 Reland "[Omnibox WebUI] Restart popup content renderer on crash"
  • b4e2284 Roll libunwind from 7ff36f1e358f to c65639bf7929 (1 revision)
  • 38bc868 [Extensions] Ensure no duplicates in webRequest's persisted listeners
  • 955c9ff Roll Chrome Win64 PGO Profile
  • 48ac238 Roll WebView ARM Orderfile from YlmM_2rHDlVRSm6s4... to _4uvw-BnNaJItX2a3...
  • ffeb3b8 Roll clank/internal/apps from 99f48b1c318c to e5f6650a4094 (1 revision)
  • aad3b34 webnn: relax cos and sin tolerance
  • 801d671 Gemini CLI command to extend a histogram
  • 5b5075a Roll Chrome Mac Arm PGO Profile
  • a8abd33 [crd host][wayland] PortalRemoteDesktopSession
  • 1db3e33 infra: Remove android-chromium-monochrome refs
  • 2e5d27f Roll src-internal from 7dfea0b6b4f4 to 20987331c080 (2 revisions)
  • 55e6aba Roll DevTools Frontend from d962481a57f0 to 6d73baf67ef3 (1 revision)
  • 0e9f592 Roll Chrome Android ARM64 Orderfile from Uk7g2ZVG-QONBfs-d... to PpqnSjgLun1C8ETVk...
  • 1935b5c Make the Fusebox popup scroll when space is constrained.
  • 3b9fc5d Roll SwiftShader from 498a6f760dea to 04fbb7daf5a5 (1 revision)
  • 34a428e [ActorUi] Record TaskNudge.Shown histogram
  • 8b0f28a Fix actor nudge with contextual cueing in the glic icon
  • 5135143 Adjust infobar height
  • 95971a1 Enable ProcessSelectionDeferringConditions by default
  • b9c6c24 Fix unsafe buffer usage in HistoryMenuBridgeTest
  • 8b05fce Roll clank/internal/apps from 0072ba49c188 to 99f48b1c318c (1 revision)
  • 5c8cb56 [RWS] Revive RWS virtual test suite for 6 mo
  • 67e54e0 Roll Perfetto Trace Processor Linux from 988808bde39d to a55ca8aac81b
  • 4d82f87 Use `flushTasks()` instead of `microtasksFinished()` in tests
  • c28f30a Disable Incognito windows for HubLayoutPublicTransitTest test case
  • 54c8143 Fix crash in ActorTaskListBubbleController when toggling Glic UI
  • 3333d25 [bedrock] Add browsertests for global and profile BrowserCollections
  • e4c8cd2 Close Token handles after passing to Windows APIs
  • de9366e Roll Chrome Linux PGO Profile
  • b9d8ae4 Extend the expiry of the histograms related to input-suppression
  • 921bdcf [bedrock] Support iteration in activation order on BrowserCollections
  • 32167c6 [AF] Rename function used for cleaning up crbug.com/411681430
  • 200eae3 [a11y] Fixes AXBlockFlowIterator accessing missing LayoutObject
  • c2b093b Remove unneeded mojom include from glic_button_controller
  • 2d1d3db Roll Perfetto from a55ca8aac81b to fdb95badca57 (1 revision)
  • 65c4309 GpuPersistentCache: Use ref counting instead of unique_ptr
  • 5f80f56 Use range-based for loop in apple_event_util_unittest
  • fe64b45 Fix deformed favicons on certain Linux machines.
  • 902dfdb [iOS] Simplify StartPasskeyAssertion signature with credential ID
  • 3dfdc85 IDB: unexpire some histograms logging LevelDB errors during DB open.
  • 7d8a0c7 cros-geo-caching: Enable field-testing of the Cache Eviction Options
  • b05b958 Optimize LockFreeAddressHashSet's bloom filter [2/2]
  • b152d0d Make test APK the default browser app if it has APP_BROWSER category
  • 9918fb1 Handle synthetic scroll updates in ScrollJankV4Decider
  • 3ebdebf Roll Depot Tools from c81b50d23457 to 2e88a3f08bd8 (1 revision)
  • e66681c [PWA] Save web app logs to disk, behind flag.
  • f2e7965 Roll ios_internal from a445486b0f35 to 697336ed8df2
  • db2cd6f extensions: Port desktopCaptureAPI to desktop Android, part 1
  • fb95d33 Revert "[iOS] Fixed AutoDeletionService file hashing"
  • 4d6a109 [VideoStack] Update method of launching Chrome/driver on Windows
  • afe7683 mojo: Fix transport leak in MojoSendInvitation failure path
  • 703c3ac WebUI: Update Mocha to v11.7.5, Chai to v6.2.1 in third_party/node.
  • 918d4ee [TreesInViz] Add the feature to fieldtrial_testing_config.
  • 66465ce [Settings Search] Onboard PrivacySandboxSettings* Fragments
  • 0f25c42 [x-plat promos] Update triggering logic for desktop-to-ios promos
  • 9bdc68b Fix unsafe buffer usage in history menu cocoa tests
  • 61e5bfe Reduce volume of unnecessary Lens Proto copies on Android
  • 913f6da Roll Skia from fe16e0299236 to a0de596ec9d5 (4 revisions)
  • 9d3dbc2 CrOS PrintPreview fork: Remove non-CrOS code.
  • ebb6ac0 [iOS][WhatsNew] Update Bling Enterprise Lean more link
  • a48b6dd Extend expiration of HoldingSpace.* histograms.
  • 9ea8d38 Only mark the focused tab for zss suggestions behind a flag
  • 15de768 [SyncTests] simplify SingleClientStandaloneTransportSyncTest
  • d94168a Roll clank/internal/apps from 7c7f28cda175 to 0072ba49c188 (1 revision)
  • 7d6149c [BNPL][Clank] Fix BNPL VCN not showing on snackbar
  • 69ac5ba [RWM] Support clearing custom name on name window dialog
  • 00a72dc Extend the ChromeOS.Settings.Keyboard.UserInitiated.AmbientLightSensorDisabledCause
  • 8f844e2 [iOS] Move FirstRunProfileAgent Private Methods
  • 9ca0faa Roll src-internal from 1dfa01bb8815 to 7dfea0b6b4f4 (1 revision)
  • e2fdf6b CAA-Policy] Browsertests for policy change trigger
  • c9156c1 Roll Chrome Android ARM32 PGO Profile
  • bb411f7 Roll DevTools Frontend from 7d26bddc0d06 to d962481a57f0 (4 revisions)
  • 47c286e Roll Chrome Android Desktop x64 PGO Profile
  • bf8671e [ios] Add kIOSAutoOpenRemoteTabGroupsSettings to field trial config
  • 81f36ad [Chrome Next] When not laying out, use ideal visual area for layout
  • 2cf4cc2 Increase `updater_tests` shards to 2 to avoid test runner timeout.
  • 2509ce1 Disable ondevice_model_benchmark_tests_gpu_submodel on Mac
  • 417743a [Omnibox Next] Add metricsPrivate to omnibox_popup
  • 990255c [iOS] Add timing metrics to background refresh.
  • 343eef6 Flag point-mapping/3d-point-mapping-deep.html as failing
  • c0be60d [glic] Add Side Panel Fieldtrial Config for CrOS
  • d5b72cd Roll Perfetto Trace Processor Linux from 5fba796da3fb to 988808bde39d
  • 82ed3c0 Set retval in Network.emulateNetworkConditionsByRule renderer path
  • a0ec61f Fix WPT canvas test comment indentation and punctuation
  • b33920c Extend expiration for ChromeOS.Keyboard.Startup.AmbientLightSensorEnabled.
  • c100da4 Run GPU TSAN tests on SwiftShader
  • 193e81a [bedrock] Add BrowserCollection::ForEach()
  • 3be7c01 [Incognito Windowing] Fix moving tabs on tabstrip long press
  • 34138cf Roll Perfetto from 988808bde39d to a55ca8aac81b (3 revisions)
  • e5ffbad [Extensions] Fix crash when window.browser is not an object.
  • e3fdbaa [Android] Wait for NTP to show in IncognitoTabLauncherTest
  • aa88a22 spanification: Clean up unneeded parameters in components
  • 86a5117 Roll clank/internal/apps from 2b96da5b68bb to 7c7f28cda175 (1 revision)
  • 8c38795 Reduce "audio_buffer.h" header inclusion on webcodecs module
  • ede0e5f Roll Chrome Mac Arm PGO Profile
  • d831d6a [GlicMI] Fix incorrect delegate clearing when removing Glic embedder
  • 5dc610d [Extensions] Remove DumpWithoutCrashing from LoadPersistedLazyListeners
  • 18945f8 Transfer WebUI ownership from Side Panel on close
  • 0c754b2 [DCSI] Refactor clear rect tracking in CompoundImageBacking.
  • 308e1c5 [iOS] Add adamta to bwg settings owners
  • 3147bab [WebGLOnWebGPU] Fix incorrect count passed to glUniform* entry points
  • 7a57251 Add field trial config for InfobarPrioritization
  • 9ea704d Roll ios_internal from 9c67dd7f5aa0 to a445486b0f35
  • 1cb0262 [crd host] Remove bad DCHECK in PollingDesktopDisplayInfoMonitor
  • 69839d6 Roll Chrome Android ARM64 Orderfile from BDczURCT8F9kaEFME... to Uk7g2ZVG-QONBfs-d...
  • 085fdc7 [iOS] Extend keychain access migration to all use cases.
  • 01c2675 Roll Perfetto Trace Processor Win from 4874bcc0303d to 5fba796da3fb
  • 6164dce [Bundled Security Settings] Add "Account and network protection" section
  • a5182da Add a test for hit testing with perspective, clipping, and border radius
  • 3a14741 [iOS] Remove the showDismissBarButton property from ConfirmationAlertVC
  • 6a06030 [iOS] Add navigation bar to generic error
  • 92e669a [ntp-next] New strings for setting variant and IPH
  • f6b8b45 [iOS] Add navbar to stale credentials
  • ea04751 Load the active tab for the HeadlessTabModelOrchestrator
  • 2d0a56b Limit #infobar-refresh about flag to desktop only
  • bc8cda8 [iOS] Add navigation bar to passkey errors
  • daa783c Store V8EnumType::Enum not V8EnumType in TextCluster
  • a6d5573 Enable kEnableEncryptedTrackedPrefOnEnterprise by default
  • dfb52f6 Roll Crossbench from e9f6ef199f64 to 77240be1ccd1 (1 revision)
  • 4bed51f [iOS] Add navigation bar to empty credentials
  • cafdb2e Roll compiler-rt from f28e701c2714 to cb2de163a470 (1 revision)
  • 83749fe Cache visibility score for the tab in the web contents observer
  • d70e959 Prefetch: Reduce the case of unblock with OnDeterminedHead()
  • bb44c20 Fix the test reviver config for test-only builders.
  • ac0bea2 Fix crash: [DCHECK] IOSChromePaymentsAutofillClient::ShowSaveCreditCardLocally
  • 57711cf Roll Perfetto Trace Processor Linux from d84e9332f765 to 5fba796da3fb
  • 283e52d [Settings Search] c/b/settings:search_java is now public_deps
  • 1d9c45c [Extensions] Remove unused includes in extension install dialog view
  • 008d980 Revert "[Mac] Application audio sharing in getDisplayMedia behind a flag."
  • a6e52e7 [ntp-next] Fix the crash happening when a tab is discarded
  • d6cca88 Add timestamp to policy log messages
  • 4e05a6c [ColorChangeHandler]: Add TODO with link to tracking issue to WebUI check
  • 4cc13ab Split real/synthetic inputs in ScrollJankV4FrameStage::CalculateStages()
  • 3e55494 [iOS] Disable FileUploadPanelTestCase/testDirectCameraPresentationAndSubmit
  • 6802d89 Update visibility logic for Shadow Overlay view
  • 7990b0a [Masonry] Update remaining refs to masonry in wpt tests
  • 14defcb [Gemini in Chrome Gardener] Add sanaakbani to glic e2e_test OWNERS
  • 1f71802 [BNPL][Clank] Get icon from resource provider
  • 7d3c6ea [TDR] Remove TODOs linked to issue 40233408.
  • 2221951 Remove redundant Mac/555X testing
  • 5b15283 [iOS] Add NavigationController to SearchWhatYouSee promo
  • 0abb090 [UNO-FF] Integrate prefs in history page history sync promo
  • 13be206 Roll PDFium from bcde4e76fa05 to 66c6bc409661 (3 revisions)
  • c86af8a Reland "[Actor] Move HandoffButtonController ownership to ActorUiContentsContainerController"
  • 9cdc48c Remove File::ReadNoBestEffort overload that takes pointers
  • 15c768e [soft navs] Emit SoftNavigationCount for navs started in background
  • e09c7a3 [BNPL][Clank] Always show footer for some BNPL screens
  • b2dbfb1 Roll Chrome Win32 PGO Profile
  • 15348b3 Roll Perfetto from 5fba796da3fb to 988808bde39d (4 revisions)
  • 54ff3a0 Android: Disable Robolectric timeouts when debugger is attached.
  • 3767d39 [ios] Use raw_ptr in C++/Swift interop tests
  • b479929 Add test for thread-unsafe refcounted types in cross-thread callbacks
  • 6cb24f9 [Persist] Fix assert if destroyed before loaded
  • 2abd2e7 Correct glic-related features exclusions
  • 368c4c2 [omnibox] Reload multiple tabs when multiple tabs are selected
  • 0938d52 [iOS][AIM] Decouple close button background color from input plate
  • 73179dd Roll Chrome Android ARM64 Orderfile from BjDx36FYEhZYCHw-V... to BDczURCT8F9kaEFME...
  • 5cc6a21 Add birnie to metrics review owners
  • 8b15078 Add DEFINE_JNI macro to the end of every file (part 5)
  • 31bc7ee Roll Dawn from e8e7e883eff1 to 0223916e3a57 (1 revision)
  • f5253a7 Fix unsafe buffer usage in base/win/win_util.cc
  • 7467a5c Fix lint error: namespace comment
  • 4f40a17 [GlicMI] Add user actions for pinned tab navigation
  • e457429 Fix lint error: namespace comment
  • 1ea3458 [Zoom Indicator] Adjust the horizontal offset of the Page Zoom Indicator popup.
  • a962ac0 [Zoom Indicator] Set tint for the zoom button in the location bar.
  • 08e8621 [iOS][Composebox] Skip omnibox revert with the composebox
  • d4c5ab6 Actor: Remove simple flags
  • 8161a17 [TDR] Remove TODOs linked to issue 40488637.
  • 76a64da Roll clank/internal/apps from 92f017a93163 to 2b96da5b68bb (1 revision)
  • b22e2dc Add the contact information type to the attempt form filling tool.
  • a1618cf Roll Skia from 7e7c2bf6619d to fe16e0299236 (1 revision)
  • 956f0e4 [animation-trigger] Add timeline-trigger-{exit}-range shorthands
  • 9573220 Roll DevTools Frontend from 55fe7260215f to 7d26bddc0d06 (2 revisions)
  • 85f0c95 [Frameworks roll] Roll to 838629929 piper revision
  • 5711954 Remove uses of BodyAsStringCallbackDeprecated (google_apis/)
  • 993d8d5 [Growth] Add string for Profile name Customization title
  • 57ca3bb Store V8EnumType::Enum not V8EnumType in CanvasRenderingContext2DState
  • 1412e45 [bedrock] Track browsers in creation order in GlobalBrowserCollection
  • 607cf70 [x-plat promos] Open URL for accept button for kQRCode promos
  • 14191ba Move OneTimeTokenRetrievalError enum to its own file
  • b2315e5 [SyncTests] Clean up passwords_helper.h/cc
  • 2c639e2 Move glic_actor_task_icon_manager.h include into ENABLE_GLIC block
  • 714f3f5 [actor] Add a new return code from PageTool for renderer crash
  • 0c8bb0e Reland "rcaps: Add histograms to monitor the outcome of pending display data"
  • fde9fba [omnibox] Restore focus traversal tests.
  • dc87c82 Fix unsafe buffer usage in udif.cc
  • c7a6d89 [iOS][components] getFormElementFromRendererId as util
  • 1911bdc Roll Chrome Mac Arm PGO Profile
  • 0a6bba2 Roll Chrome Win64 PGO Profile
  • ac7b3a2 Roll ios_internal from 5790db9a6457 to 9c67dd7f5aa0
  • 9ebe996 Reland [APC] Virtual test suite that auto builds ContentNode tree
  • 37865ec Add DEFINE_JNI macro to the end of every file (part 1)
  • 6391236 kiosk: remove Kiosk.Extensions.InstallError.*
  • 10d7f06 [iOS][AIM] Fade suggestions behind the input plate
  • eba1f6e Remove obsolete BFCache disablement in Observation Delay tests
  • b67eeec Disable CaptivePortalBrowserTest.SlowLoadSecureDnsErrorAfterLogin on Mac
  • fbb1053 Remove DanglingUntriaged from raw_ref in ProfileTokenQuality
  • 19a2c93 Store WebFrame ID instead of raw pointer in NewFrameCatcher
  • 2034df1 Roll Chrome Android ARM64 Orderfile from np_gCsDaIs4uVTOqs... to BjDx36FYEhZYCHw-V...
  • 8b60168 [Android][Settings] Fixes a crash when restoring EmptyFragments
  • f23f37e [A11y] Add kAccessibilitySequentialFocus to content feature map
  • e347914 [Android][Settings] Update state to search when tapping the title
  • 4e5e36c Roll Updater chromium_mac_arm64 from 2@1546016 to 2@1547010
  • 93ee429 [animation-trigger] Enforce timeline-trigger shorthand order
  • e05e23a [IOS][AIM] Use the contextual search session handle
  • 76580b3 Update experation date of `InputToFirstContentfulPaint` histogram
  • 8850f0c [TDR] Remove TODOs linked to issue 40872531.
  • 5f3c09d Roll Perfetto from d84e9332f765 to 5fba796da3fb (3 revisions)
  • 4a4e2d0 [iOS][Composebox] Prevent re-entrance in compact mode update
  • 21d2824 [Persist] Make StorageUpdateUnits public
  • d3e6e22 [bedrock] Migrate profile_activity_metrics_recorder.cc away from BrowserListObserver.
  • fee0338 [Desktop Zoom] Update web content scaling for high density displays
  • d0d1861 [Zoom Indicator] Adjust layout and dimensions of the page zoom indicator.
  • 19240e3 [SyncTests] Parameterize SingleClientReadingListSyncTest
  • 931ed35 Roll Perfetto Trace Processor Linux from 4874bcc0303d to d84e9332f765
  • 9132411 [docs] Fix a broken link
  • 0b3457f [Task List Bubble] Only show the bubble in the active window
  • 9f40bb4 Roll Help App from W3Qfr5v8t9DlFEmXH... to TFem2taXy7hamrLkb...
  • bb1cb37 Roll clank/internal/apps from 84105f24fd11 to 92f017a93163 (18 revisions)
  • 1f58efc Roll DevTools Frontend from 5ad8a5f4fbdb to 55fe7260215f (2 revisions)
  • 88e54d6 [Persist] On saveState() save the current tabs
  • af3a437 [Persist] Follow restoreTabs path
  • 7a42154 Fix CanvasRenderingContext2D.restore() on zero-size canvas
  • 81a10c2 ScopedVT: Make PaintLayer::HitTest treat ::v-t as an overlay.
  • 9e6143e [TDR] Remove TODOs linked to issue 277180533.
  • f11d956 Roll libc++ from fa224989fd9c to 07572e7b1692 (1 revision)
  • 40bc276 Updating trunk VERSION from 7558.0 to 7559.0
  • cc2756e puma: Add histograms for monitoring PumaService
  • a09eb88 [identifiability] Remove IdentifiabilityStudyConfigurator mojo interface
  • c5e2ffe [flags] Push back expiration of throttle-main-thread-to-60hz to M150
  • 9d39dff Use base::AlignedHeapArray and updated file API in io_benchmark
  • b725359 Run base_unittests_android_death_tests on bots
  • 5d427e8 [iOS] Add create image button in the compose box
  • 312a700 [IOS][AIM] Introduce a contextual search service factory for IOS
  • db00ab2 [identifiability] Remove dead code in //chrome/browser/privacy_budget
  • 0d71dc3 [identifiability] Remove IdentifiabilityStudyState
  • 52c1810 [identifiability] Remove privacy_budget browsertests
  • c0d2d38 [identifiability] Remove PrivacyBudgetMetricsProvider
  • e9e7851 Roll Media App from sqAEULdcGXL0pSEfM... to key8nOr2PMvllg54S...
  • a690f8b Roll FreeType from 6d4977d66033 to 32fc0af22206 (10 revisions)
  • 28589c6 [Chrome Next] New layout for popup, devtools browsers.
  • e3089a7 Use span-based file API in screen_ai_service_impl.cc
  • e424d9b [iOS] Basic key fetching for IOSChromePasskeyClient
  • 0065453 [iOS] Add FileUploadPanelPickerResultLoader to file upload panel
  • 7d388e8 [iOS] Refactor Content Suggestions Shortcuts
  • bf91c9f Roll Updater chromium_win_arm64 from 2@1546073 to 2@1547010
  • 1295fad Roll Chrome Win ARM64 PGO Profile
  • 3d1bfc5 Use span-based file API in UserPoliciesManager
  • 05815c4 Roll Chrome Mac PGO Profile
  • 6062a10 Roll vulkan-deps from 84949a3e6598 to bb0f420085e9 (1 revision)
  • 07250cb [SyncTests] Modernize SingleClientHistorySyncTest
  • e3c767d Revert "[UNO] Add batch upload promo to account settings page"
  • 455fee6 Crash: Enforce initialization length of bytes
  • 3895425 puma: Display PUMA histograms in the internal histograms UI
  • 7e11421 Remove kActorLoginFillingHeuristics flag
  • 5d8a050 Roll Perfetto Trace Processor Win from 24492b575e9a to 4874bcc0303d
  • 71e87a9 [Mac] Application audio sharing in getDisplayMedia behind a flag.
  • ef879b4 [iOS] Add metrics for search engine logo in the NTP
  • dac2353 Extend Conversions.SentVerboseDebugReportType4 metric
  • a3fe949 Avoid duplicate logic in GetSerializedAnchor().
  • 4cd194f [iOS] Introduce the composebox mode and its holder
  • 44874da Roll Chrome Android ARM64 Orderfile from F6Ib0MWHlsTMo0JME... to np_gCsDaIs4uVTOqs...
  • 07cc430 Revert "Migrate users out of sync setup incomplete state"
  • 54d35d5 Roll Enterprise Companion chromium_win_x86_64 from dU1_tkLowkvyYVkJP... to NltCbQGxKGfWjGdxH...
  • 7a1071c Sync feature protos.
  • 9c4be84 Roll Perfetto Trace Processor Linux from 27e4ec5a262b to 4874bcc0303d
  • 5d16516 Extend ContentCapture histogram end date
  • 2aaae42 Remove Mozc-to-CrOS-Prefs migration of Japanese IME settings data.
  • 2608b26 Roll Turbine from Gl4akWHMtp73SMuAV... to DV_E8eKAtXx3kTD4a...
  • 6a991a0 Load the classification model on startup except for android
  • e455f6a Roll Perfetto from 4874bcc0303d to d84e9332f765 (2 revisions)
  • bc01a3e [iOS] Update PromoStyleViewController safe area handling
  • e291751 [Growth] Record how many times Open All Profiles button was shown.
  • ae3fb0e [iOS] Fix missing padding in AnimatedPromoViewController
  • 5db4369 Roll Updater chromium_win_x86 from 2@1546054 to 2@1547012
  • 7641b8b Roll Updater chromium_win_x86_64 from 2@1546050 to 2@1547012
  • 9a773c5 Roll Updater chromium_mac_amd64 from 2@1546009 to 2@1547005
  • 1dfe9a0 Add grt@ to histograms/metadata/chrome/OWNERs
  • 10b93f0 Roll SearchEnginesData from ac5bba00f4d9 to 97355b69daee (1 revision)
  • b0dbc8a Roll DevTools Frontend from cbfd010a854e to 5ad8a5f4fbdb (3 revisions)
  • e985678 [SyncTests] Modernize SingleClientBookmarksSyncTest
  • 1c00e32 [iOS] Add imgn parameter when sending text
  • 91a6a3e Roll Chrome Mac Arm PGO Profile
  • 4f27ba2 Roll Enterprise Companion chromium_linux64 from 7OX2VpuETWszaRZtq... to NxIkkz9XJclsf2Gpd...
  • a87f61a Roll Enterprise Companion chromium_mac_amd64 from PUp-lZrld0UE1wapu... to WzohMKXPVTnDmnDB2...
  • 6a41d7a [spc][bbk] Post GetOrCreateBrowserBoundKeyForCredentialId as a task
  • 35a3ea8 Roll Enterprise Companion chromium_mac_arm64 from Z4psy5uOk_vWERg1e... to n6okUU0EoCb-M-qLP...
  • f9960cf [signin] Overhaul AccountInfo serializer
  • e822fb1 Do not add confirmation bubble to BubbleManager
  • 544c09c [iOS] Refactor ButtonStackViewController navigation bar handling
  • 3a46e77 Make IWA-KDIP an implementation of an abstract interface
  • aeefb68 [Uno] Record history sync promo show count on AvatarPill when successful
  • ab0b6d5 History: Enable BrowsingHistoryActorIntegrationM2 in field trials
  • a63297a Roll Enterprise Companion chromium_win_x86 from 589Z7exjQKHhBXjfH... to 8L9TsPBHUsBEo6wOu...
  • 48b43e4 [iOS] Update string id for payment sync type
  • a9b3470 Roll ANGLE from 543b9fb74a54 to a6c4431f9917 (1 revision)
  • 3fd1895 Roll Updater chromium_linux64 from 2@1546003 to 2@1547006
  • 9b98f03 [iOS] Display Translate badge after Reading Mode if it is eligible.
  • 3932a93 Roll Chrome Win32 PGO Profile
  • 3e05de6 Extend backface-visibility-interop virtual test suite
  • efcc39a [CT] Automatic update from google3
  • 7cc3482 Use base::checked_cast and byte spans in ClientBase::ReadFile
  • 3abf4dc [ios] Allow EG tests to start with a minimal app UI
  • 04b47a7 [iOS] New RequestInfo structure for passkey related bottom sheets
  • 4b38dca Final cleanups of moving logic from AutofillAgent to FormTracker
  • 7c8e4b0 Roll Chrome Android ARM64 Orderfile from 2yQYRJ53jlrScUwKa... to F6Ib0MWHlsTMo0JME...
  • ce07328 [iOS] Move util functions out of file_upload_panel_mediator.mm
  • 46381c5 [KP] Automatic update from google3
  • 6657f99 History: Make HistoryTaskTagBrowserTest work for M2 codepaths
  • 3ae5bf3 Add JS-surface test coverage for modules
  • d151e17 Fix not printing in chrome_main_delegate
  • c569ac3 Roll Perfetto from 27e4ec5a262b to 4874bcc0303d (1 revision)
  • aced692 [Okta SSO] ProxyingURLLoaderFactory unit tests
  • 624ef50 Change the ldflags allowlist to a denylist
  • 569e62d Add not supported error when picker cannot be created
  • f7d6fb9 Roll DevTools Frontend from 8ad565def7e3 to cbfd010a854e (1 revision)
  • fea5cde Updating XTBs based on .GRDs from branch main
  • 0b7caaa Roll Chrome Android Desktop x64 PGO Profile
  • d57eae9 Roll Chromium Variations from MYIz5xgtd4qgl3vei... to 4EF7YmLI1HGTj3vn3...
  • d51ddaf Sheriff: Disable fenced frame test
  • fb60555 webrtc-internals: fix rtcstats implicit SLD and error handling
  • fb5973b Inline AutofillAgent::OnFormSubmission() in FormTracker
  • 1f65690 Roll Skia from 5d5d2cbd14d1 to 7e7c2bf6619d (1 revision)
  • 78b5eeb [SyncTests] Modernize PasswordsSyncPerfTest
  • 6c457da Roll ios_internal from 893942e811e6 to 5790db9a6457
  • bea43ea kiosk: remove Kiosk.SecondaryApps.InstallSuccessful
  • 8c44914 Roll Perfetto Trace Processor Linux from 24492b575e9a to 27e4ec5a262b
  • 2a7fdaf kiosk: remove Kiosk.Extensions.InstallDuration
  • 59505ad Roll Chrome Mac Arm PGO Profile
  • 73d8faf Migrate users out of sync setup incomplete state
  • a273396 Move AutofillAgent::FireHostSubmitEvents() to FormTracker
  • b3ab533 Move AutofillAgent::GetSubmittedForm() to FormTracker
  • 15239d3 Don't include style_engine.h so much where not needed.
  • c672b5a [ClapperLoud] Resolve the permission request from PageInfo
  • 354039c Disable prefix matching for address suggestions on <select> fields
  • dbf0c56 [blink] Fix race condition in blink paint test
  • cb4ef45 legion: Add UMA histogram for Legion feature names
  • 554191f legion: Add UMA metrics for SecureChannel session duration and requests
  • 29309e9 [dbsc] Finish proxy implementation
  • 1ed45bd Keep better use_date and use_count during subset deduplication
  • c1dfea9 Roll Chrome Win64 PGO Profile
  • bbc2609 Add test for form filling triggered by a select element
  • 89e779a Clean up AutofillConsiderServerOnlyFormsInKeyMetrics
  • 9fdfeb9 Roll DevTools Frontend from f91b02357cdf to 8ad565def7e3 (6 revisions)
  • 689db02 Move submission logic in AA::JavaScriptChangedValue() to FormTracker
  • 883f9b6 Move some submission states/methods from AutofillAgent to FormTracker
  • b65e653 Remove AutfillAgent::OnProvisionallySaveForm()
  • ff1df3f Remove SaveFormReason::kWillSendSubmitEvent
  • f1a4b7f [viewport units] Respond to dynamic changes to :root's scrollbars
  • 3705bea Roll Perfetto from 24492b575e9a to 27e4ec5a262b (1 revision)
  • f8052a1 Cleanup AutofillImproveSubmissionDetectionV2 feature flags
  • 2607233 Roll Chrome Android ARM64 Orderfile from U3IAB9wLCoxTJwwu7... to 2yQYRJ53jlrScUwKa...
  • 03ad7b6 webrtc: unmute tracks when a packet arrives after a receptiveness change
  • 44e4f31 Roll Perfetto Trace Processor Win from a8060b7bea06 to 24492b575e9a
  • deb1ac0 Add specific error for when request cannot be verified by registry
  • d9b824b Refactor Wallet code to use wallet::WalletablePass struct instead of proto
  • 9ce314e Better populate RefillContext::type_groups_originally_filled
  • 817b6ec Remove the @contents mixin parameter.
  • 39ce161 Avoid refills on irrelevant select option changes
  • 2fd8e9c [PEPC] Ignore geolocation requests when in-progress
  • 0cc5bbc Reland "[signin] Stop using AccountInfo::hosted_domain"
  • 3d6d07b [iOS][CX] Ensure import starts after successful UV
  • b9dfcc3 Roll Perfetto Trace Processor Linux from a8060b7bea06 to 24492b575e9a
  • 4467749 Roll ANGLE from 871a8eed7188 to 543b9fb74a54 (1 revision)
  • 98b637f Roll WebRTC from f4f5d9af2a1d to f680c1893f3b (2 revisions)
  • 09be3c3 Roll Dawn from 6acf6ef3fe23 to e8e7e883eff1 (3 revisions)
  • c892adf [UNO] Add batch upload promo to account settings page
  • 22a5f0d Roll ios_internal from 8bae906889d7 to 893942e811e6
  • db39927 [TDR] Remove TODOs linked to issue 386385415.
  • 0f0a825 Remove obsolete OptIn histograms
  • aa8fa50 [TDR] Remove TODOs linked to issue 41385006.
  • 4d27436 Roll vulkan-deps from 050e2b2ab08b to 84949a3e6598 (1 revision)
  • 1903ca2 Roll DevTools Frontend from ffca1231ce17 to f91b02357cdf (4 revisions)
  • 545cc0c [History] Add kBrowsingHistoryActorIntegrationM2 flag
  • e140471 Enable synthetic select metrics logging by default.
  • a8effe3 Roll Projector App from xCFPn-QWCx9iCNLZ6... to cNbjxl70Rv2wHiWRP...
  • e48c18f Apply blink::StrCat() in renderer/bindings/
  • 7c7f80d Roll src-internal from fbe981653741 to 1dfa01bb8815 (1 revision)
  • 90e13f6 [TDR] Remove TODOs linked to issue 237066325.
  • a072372 Roll Chrome Mac Arm PGO Profile
  • cd4296d [iOS] Fix gradient view visibility in ButtonStackViewController
  • 6809b93 Renew audio-related UMA histograms.
  • fb8f4b3 [Signin] Fix potential use-after-free in reconcilor callback
  • a9cf6d5 Remove int-returning CascadeLayerMap::CompareLayerOrder()
  • 2be1203 Roll Perfetto from a8060b7bea06 to 24492b575e9a (3 revisions)
  • 62b6ee5 Set form data in filling result in MQLS logs
  • 8ebbbfe [css-lists] Support for parsing counter-reset: reversed(counter-name)
  • 1de0226 [css-lists] Rename CSSCounterValue to CSSCounterContentValue
  • 57f9afc Fix DCHECK when parsing invalid :is()/:where().
  • 929f329 [iOS] Add photo picker to file upload panel
  • 82ffb90 [iOS Blink] Add a dummy GetInitialGeolocationAccuracySelection()
  • 36de4cd Add specific error for when permission is not allowed by dlp
  • e147687 Roll Crossbench from aac006fd9958 to e9f6ef199f64 (1 revision)
  • 4eb61eb [Signin][Android] Redirect accounts once added via ADD_SESSION header
  • 44cda3f Add metric for residual echo estimation model availability
  • 65a7773 Roll Chrome Android ARM64 Orderfile from baDF014XDFsDYj7cS... to U3IAB9wLCoxTJwwu7...
  • aedfe2d Roll DevTools Frontend from d591e6b30bc8 to ffca1231ce17 (5 revisions)
  • 2be79d8 [//gpu] Remove last RasterDecoder dep on `enable_gpu_rasterization`
  • b8b049d [//gpu] Move setting gpu_raster cap from RasterDecoder to client side
  • ccce6c8 Roll src-internal from 5f97cf2898c8 to fbe981653741 (1 revision)
  • 2fa65ae Roll Chrome Android ARM32 Orderfile from GaS65syhixf48MgZK... to Cd6R3y_NZDV18Dfx1...
  • 92ef10d Roll Chrome Win ARM64 PGO Profile
  • caaf065 [//ui] Remove unneeded header comment on GBMSupportX11
  • 9b48c65 Autoshard chromium/src test suites
  • e58cc44 [//media] Remove BufferFormat references in vaapi_wrapper*
  • 7958eae [//ui] Have WaylandScreen use SharedImageFormat internally
  • 37a959e [//ui] Remove ColorSpace legacy IPC param
  • 37f24fb [iOS] Fix and reenable CredentialProviderServiceTest.AddPasskeys
  • 02e581e [Blink] Make CRPExternalBitmap::RasterRecord() NOTREACHED
  • 5e790a1 [Blink] Eliminate CanvasResourceProvider::OnFlushForImage()
  • d8e1390 [Blink] Have FlushForImageListener be CRPSI-only
  • dd634e2 Roll Skia from f410419fe688 to 5d5d2cbd14d1 (4 revisions)
  • 571b3ba Roll Chrome Mac PGO Profile
  • 49e9487 [Blink] Remove ShouldInitialize param to CreateExternalBitmapProvider
  • da4128c Roll Chrome Win32 PGO Profile
  • b0b4921 Roll DevTools Frontend from 3a61dbb0db51 to d591e6b30bc8 (1 revision)
  • f9d507d Rename IsInitialWebUIScheme -> IsInitialWebUIURL
  • 21bed0d Roll Chrome Win64 PGO Profile
  • c567416 Roll Chrome Mac Arm PGO Profile
  • d3701e0 [//ui] Remove DisplayColorSpaces legacy IPC param
  • c698b99 Roll WebView ARM Orderfile from FEqGA9SbC-258vIg_... to YlmM_2rHDlVRSm6s4...
  • 8c27642 [TDR] Remove TODOs linked to issue 417786079.
  • ab3a2a6 Reenable GlicPolicyTest for ChromeOS
  • f161211 ash: Even more use of BrowserDelegate in shelf controller code
  • f89dbd8 bench: List up .json.N trace files in build/bench/ftime.py
  • 83c1c2e Roll Chrome Android ARM64 Orderfile from VaCTsiioB8ZDL-OLw... to baDF014XDFsDYj7cS...
  • de0b578 Disable OpenAllProfilesAfterSimulatingButtonClick.
  • fbc5684 Make a heavy include conditional in script_forbidden_scope.h
  • e4aac7b ash: More use of BrowserDelegate in shelf controller code
  • b8add10 Roll Chrome Android Desktop x64 PGO Profile
  • 41c9b0e Revert "Convert to UNSAFE_TODO in partition_alloc in mac_linux_pkey_asm"
  • abab1ef [Signin][Android] Fix sign-in promo layout update after adding account to the device
  • 27c1a28 Roll Chrome Mac Arm PGO Profile
  • 4b44ddf Add config for FluidResize
  • 924f6be Fix fragment stack behavior on "Delete browser data..." clicking
  • 08d8a17 Roll Chrome Android ARM32 PGO Profile
  • 7946b06 Roll src-internal from fb452e591a6e to 5f97cf2898c8 (1 revision)
  • eceb59b Reland "Reland "Update fieldtrial_testing_config for multi column mode.""
  • 6f209b7 Roll Chrome Android ARM64 Orderfile from Pf6nUoETTKqhqgZRC... to VaCTsiioB8ZDL-OLw...
  • 6246044 3pp: use luci.chromium.packager.ci pool
  • 3c5e671 Convert to UNSAFE_TODO in partition_alloc in mac_linux_pkey_asm
  • 0477afd Convert to UNSAFE_TODO in partition_alloc in partition_alloc_base_2
  • e6d0cc8 Convert to UNSAFE_TODO in partition_alloc in windows
  • ee84d0a Roll Depot Tools from 8efa575d754b to c81b50d23457 (1 revision)
  • 2b461ad Roll Infra from f1d8bd5336c2 to 808a00437f24
  • 011bf17 Roll DevTools Frontend from 5f73b7f117ec to 3a61dbb0db51 (1 revision)
  • 46132eb Roll goldctl (win) from nSaaRu-IJVLSNJwml... to Da5Ya6mYbLxKhrtip...
  • 1f08ac1 Remove always off feature kImeUsEnglishExperimentalModel
  • 2609c1f Roll goldctl (mac) from nPA_611Q7RCdi4a2t... to 1EbFABRLnKXjSwrQy...
  • 5cbd8b5 Roll goldctl (linux) from 8BaGVdmf90Ps7gF4-... to yTR-Js4FbeTvqObew...
  • fa1a575 Roll goldctl (mac arm64) from PZOut7PwJPGaOA70L... to R_blxv41vyVuvXG6g...
  • ed47826 Convert to UNSAFE_TODO in partition_alloc in fuchsia
  • 36b8671 Roll Chrome Android ARM64 Orderfile from Z-5NP13Vpx_FXEna-... to Pf6nUoETTKqhqgZRC...
  • 4dfdbe1 Convert to UNSAFE_TODO in partition_alloc in partition_alloc_base_1
  • 70bd4d5 Roll Chrome Win32 PGO Profile
  • 9e00111 Convert to UNSAFE_TODO in partition_alloc in shim
  • 834c688 Roll Chrome Mac Arm PGO Profile
  • 2d1e068 Expect timeout for inspect-pointer-events-none.js.
  • 4aed365 [ozone/wayland] Update pointer position during dragging
  • 8a95128 Roll gn from 4619125bd337 to 6e0b557db44b
  • cbb2aa0 Fix `PrivateMetricsFeature has multiple definitions`
  • f4ebc25 Move ScopedAnimationDurationScaleMode to ui/gfx : part 4
  • a80f85d wallet: Move country_type.h and wallet_barcode.h to data_models
  • 39fec68 [gpu] Put the buildflag for DrmModifiersFilterVulkan
  • 1b5758c Roll Chrome Android ARM64 Orderfile from RdZU7WeL86TCUkVdk... to Z-5NP13Vpx_FXEna-...
  • 06091dc Roll Chrome Win64 PGO Profile
  • 2699aa9 Updating trunk VERSION from 7557.0 to 7558.0
  • 419e322 Move ScopedAnimationDurationScaleMode to ui/gfx : part 3
  • 0f61a37 Roll WebRTC from d1ddb574ba35 to f4f5d9af2a1d (1 revision)
  • 1e0ba09 Prerender: Rename virtual test suite for cross-origin iframes
  • 160dcba Disable DevToolsExtensionFileAccessTest.CanGetFileResourceWithFileAccess
  • c4f8c61 Roll Chrome Mac Arm PGO Profile
  • 396129c language_packs: Extend histogram expiries
  • ba5dbda Roll Chrome Mac PGO Profile
  • 6fe385e Move ScopedAnimationDurationScaleMode to ui/gfx : part 2
  • e3b880e [wallet] Add walletable pass data model struct.
  • 2927965 Check save bubble strike before extraction.
  • ef51986 ash: Refactor shelf controllers to observe BrowserController
  • ae7370a Roll Chrome Android ARM64 Orderfile from s6KFcHFaezLBLvZjF... to RdZU7WeL86TCUkVdk...
  • f7f5dbd ash: More use of BrowserDelegate for shelf controller logic
  • 5b92628 ash: Add tests for tablet mode tab drag (non-WebUI)
  • c725d1d Roll WebView ARM Orderfile from BTmWcTK9peO_7l_Cx... to FEqGA9SbC-258vIg_...
  • 0cc4433 Roll Crossbench from dbf8e3068d58 to aac006fd9958 (1 revision)
  • d170193 url: Merge StringViewReplacements into Replacements
  • fbe5e7a Update ProcStatFile::IsPidAlive to use base::File::Read with span
  • 1cc2ec3 PA: Enable use_sized_deallocation if not optimize_for_size
  • f8a10e3 Roll Chrome Linux PGO Profile
  • c551605 Roll Chrome Android ARM64 Orderfile from zgzFFSX2i1tuUJWiu... to s6KFcHFaezLBLvZjF...
  • 33b6e7d [PA/AC] Support IO thread configuration
  • 9520b96 Roll Chrome Android ARM32 PGO Profile
  • 506e0c1 Roll Chrome Android Desktop x64 PGO Profile
  • e19bce7 Roll Chrome Mac Arm PGO Profile
  • 4263a5e Roll Chrome Win32 PGO Profile
  • 5ce6a1e siso: update to version 1.4.19
  • 377f5e8 cc: Introduce ScrollUtils::CalculateScrollbarThumbLength()
  • 4736477 Roll Dawn from 2173460a5558 to 6acf6ef3fe23 (1 revision)
  • dd64a1b Automated Commit: LKGM 16502.0.0-1073499 for chromeos.
← Back to all summaries