Chromium Digest: 2025-12-12
Overview
This digest covers 584 commits, with 443 deemed relevant to developers, from commit (b529a0b)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((b529a0b)) to (871472b)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((871472b)). The day was marked by a significant number of breaking API changes across core, networking, sync, and UI components, requiring developer action. Other notable changes include progress on the Reading Mode immersive UI, fixes for extension stability, and the removal of several feature flags and obsolete metrics.
Breaking Changes
-
⚠️ BREAKING
The generic network error
net::ERR_DNS_SERVER_FAILEDhas been removed and replaced by more specific codes (ERR_DNS_FORMAT_ERROR,ERR_DNS_SERVER_FAILURE, etc.). Embedders must update error handling logic to check for the new set of errors. (0b88079) -
⚠️ BREAKING
The return types for
base::SysInfo::AmountOfAvailablePhysicalMemory()andAmountOfVirtualMemory()were changed fromByteCounttoByteSize. This core API signature change requires updating call sites. (c7e3442) -
⚠️ BREAKING
Multiple
syncer::Observerinterfaces, includingSyncManager::ObserverandSyncServiceObserver, now inherit frombase::CheckedObserver. Implementations must be updated to add this base class. (702d4ff) (3c26603) -
⚠️ BREAKING
The signature of
ChildProcessSecurityPolicy::RegisterWebSafeIsolatedScheme()was changed, removing thealways_allow_in_origin_headersparameter. Callers must be updated. (7f200a7) -
⚠️ BREAKING
The public static method
DataDecoder::ParseCborIsolatedhas been removed fromservices/data_decoder/public/cpp/data_decoder.h. Embedders must find an alternative for out-of-process CBOR parsing. (4a34e8f) -
⚠️ BREAKING
Signatures for
PerformSnapping(),SnapAtCurrentPosition(), andSnapForEndPosition()in the public Blink headerscrollable_area.hwere changed by removing default arguments. (e8436cc) -
⚠️ BREAKING
The public struct
gfx::HdrMetadataAgtmand its header have been removed. Theagtmmember was also removed from the publicgfx::HDRMetadatainterface. (932ca1c) -
⚠️ BREAKING
The public mojo enum
gfx::mojom::BufferPlanehas been removed fromui/gfx/mojom/buffer_types.mojom. (d3967e3) -
⚠️ BREAKING
Several public Java APIs were refactored, including
CurrentTabPriceTrackingStateSupplierandEdgeToEdgeStateProvider, changing their inheritance and public methods. The static methodgetDividerLineBgColor()was also removed fromSemanticColorUtils. (3a9a291) (2fa9a9c) (f22164e) -
⚠️ BREAKING
The public method
ContextualSearchContextController::CreateSearchUrlwas made asynchronous. It now takes a callback instead of returning aGURLdirectly. (d81d122) -
⚠️ BREAKING
Obsolete Tracking Protection preferences, including
kFingerprintingProtectionEnabledandkIpProtectionEnabled, and their associated enterprise policy handler have been removed from public headers. (55cc993) -
⚠️ BREAKING
The
MakeMemoryPressureListenerSyncexperiment was removed, consolidatingSyncMemoryPressureListenerRegistrationintoMemoryPressureListenerRegistration. This changes public class names inbase/memory/. (b930199) -
⚠️ BREAKING
The recently added public functions
Base64EncodeEarlyStartup()andBase64UrlEncodeEarlyStartup()were removed frombase/base64.handbase/base64url.has part of a revert. (07dd31c)
Core & Services
-
The
cryptointerface was refactored to use aWindowOrWorkerGlobalScopepartial mixin to better align with web specifications. (ccf1d94) - For WebNN, tracing was added for tensor creation and an exception was added to allow blocking behavior on its dedicated thread. (bcd9a1a) (df519c4)
-
The public method
ShowEvaluationSurvey()was removed from theMerchantTrustServiceDelegateinterface as the associated feature was disabled. (fbb2ad7)
Networking
- For Local Network Access (LNA), requests for cached resources that would be blocked by LNA will now bypass the cache and be sent to the network. This prevents incorrect security prompts when network configurations change. (a9b4054)
-
New permission types for Local Network Access were added to prepare for splitting the permission into
localandloopbackaddress spaces. (3830753)
Blink & Rendering
-
A large-scale refactoring to remove the
Supplementablepattern from core Blink classes (Document,Page, etc.) was reverted, indicating a significant internal architecture change is on hold. (926943c) (c9da8ad) (e574821) -
The internal implementation of CSS Masonry layout has been renamed to
grid-lanes, affecting numerous file and class names. (818e01c) (bdbbcf8) -
Support was added for
"unframed"as an alias for the"borderless"display mode in web app manifests. (60ef84e) - Content extraction logic was improved to correctly traverse into SVG subtrees. (308e2ca)
Features & UI
- The "Reading Mode" feature received significant updates for an immersive mode, including a new header, line focus that follows text-to-speech, and UI lifecycle logic. (b84a4d7) (eaacdb3) (e16d3e8)
- "Contextual Tasks" can now be used by signed-out users and received several UI polish updates. (e2e40d5) (f57ba02)
-
For Isolated Web Apps (IWAs), the notification for
window.openusage was simplified to a persistent notification shown once per session, rather than counting open tabs. (876c5a2) (fe5b839) -
The
kSideBySidefeature flag was removed, making the feature always enabled. (1b9e069)
Android & iOS
-
The
desktopCaptureAPI is now enabled for desktop Android, allowing screen sharing. (4ab565d) - The "Magic Recall" feature was updated to cache content capture metadata and pipe language details to the service. (d2cd413) (e10f157)
- On iOS, backward compatibility code for iOS 16 scroll handling in the TabStrip was removed. (baf563b)
Extensions
Developer Tools
-
The
Target.getBrowserContextsDevTools protocol method was updated to expose thedefaultBrowserContextId. (b84b90a)
Metrics & Telemetry
-
The
ThirdPartyCookieDeprecationMetricsObserverand its associated histograms and UKM features were removed to simplify TPCD metrics collection. (b4ebd2e)
Infrastructure & Flag Removals
-
A new feature flag,
DisableH264SEIRecoveryPointAsKeyframe, was added to fix a parser state issue affecting Netflix playback by changing how H.264 SEI recovery points are handled. (b2b2d45) - The segment heap was disabled for the Windows updater due to crashes in a third-party DLL. (eb14a8a)
-
Warmup of
dbghelp.dllin child processes on Windows has been removed; the DLL will now be loaded on-demand to improve performance. (b1ee8d0) -
The
FluentScrollbarsfeature was un-shipped fromRuntimeEnabledFeatures, simplifying its implementation. (c77cdd0)
All Commits (584)
- 871472b Add A11y description to the Send button
- 710ed45 Roll Perfetto from 0ea3169e963d to 5805ccc7f863 (1 revision)
- 6bc2c53 Revert "flags: remove page-visibility-page-content-annotations"
- a2495ad Add field trial experiment for Menu Shuffle experiment
- 08531af [Android] Rename ViewFinder to InternalViewFinder
- ce902a6 Enable MeetEffects tests on Win/Qualcomm
- c54d473 Roll ios_internal from 8753408d4a12 to 9cdf16c98382
- 9f78957 Roll vulkan-deps from cc35b4b885ad to 93cff38c318b (7 revisions)
- 49f8274 Roll ANGLE from c77c36a1fef2 to aaebda1c5a40 (2 revisions)
- b84a4d7 [Reading mode] Use internationalized strings for line focus
- a218947 [Vertical Tabs] Wrap top container buttons around caption buttons
- f22164e [clank-q4-fixit] Remove deprecated SemanticColorUtils.getDividerLineBgColor method
- b90201c Add IPH_GlicTryIt to field trial testing config
- 5f63184 [TreesInViz] Fix LegacySWPictureLayerImplTest.SnappedTilingDuringZoom.
- 1b9e069 [SxS] Clean up references to kSideBySide flag
- ca60187 Roll androidx from LXyg2qPeJb59Pw9uj... to kaRsWkJ8hoL2CkTHA...
- e979d73 [ntp-next] Adding fade to simplified view chip text
- 4886a46 Adding a field to ChannelOpenStruct
- e8436cc Forward declare base::ScopedClosureRunner in some Blink headers
- 9f75a13 Roll earl_grey2 from df685be0513a to 41df141f1c8c (1 revision)
- f638c1c Roll clank/internal/apps from ae06d6a9d038 to c6988268199b (1 revision)
- 4c511d6 [RWM][RecentlyClosed] Update max entries persisted by TabRestoreService
- f820d00 Roll Chrome Win64 PGO Profile
- 6f16290 [VerticalTabs] VerticalTabStripRegionViewTest Overrides Test Mixin
- 93a8c6b Roll Chrome Mac Arm PGO Profile
- 323b6c6 [location_rewriter] Handle all AsyncTask execution variants
- e2e40d5 [Contextual Tasks] Allow url interception if user is signed out
- 7f200a7 Remove unused schemes_okay_to_appear_as_origin_headers_ map
- c5bc723 [Extensions] Disallow NTP overrides for split mode extensions
- 6c9c22e Revert "[rust bmp] Add UMA for tracking BMP `CompressionType`."
- 1feea6c Remove Win11 gles3 suppression
- 4dac4fb [Icons] Update volume_off vector drawable
- d907093 Remove `generate_py_runtime` from metrics protos
- 932ca1c gfx::HDRMetadata: Remove gfx::HdrMetadataAgtm
- 412b656 Update metrics protos with proto_export
- caddefe Add semantic label plumbing
- 72f0169 Forward declare in location_icon_view.h
- de722d5 Roll src-internal from 615e7e96022e to a647ff2b051e (1 revision)
- 7f0eda6 Separate check failure message parts more clearly.
- e1f3f3e Remove use of BodyAsStringCallbackDeprecated (ash/ambient)
- 342a1fd [Gardener] Disable flaky blink test
- eaacdb3 [Reading mode] Follow along with speech with line focus
- ae8d673 Update DEPS after adding new settings_internal icon.
- 0dcaced [Cast Streaming] Improve OpenscreenSessionHost tests
- 7afec0b [AIAE] Stop the BNPL flow once non-USD currency is returned
- 955f04c [Vertical Tabs] New Tab Button Opens Tab in Wrong Window Bug Fix
- e0cd4f7 Roll Chrome Win32 PGO Profile
- e16d3e8 [Reading Mode] Add header component for immersive mode
- 0d260fc [AIAE][UKM] Add extraction result metric
- ac2705c [layout] Split merging/reparenting logic in LayoutBlockFlow::RemoveChild
- a6e742a [TBHSP] Use TabStripLikeBackground and a background view in main_background_region
- ae48093 Update CBB autoroll for the builds refs
- f9a8c6e Ensure notifications are shown even if animation is cancelled
- 877ea4f [AF] Remove iOS WebView PaymentsInterface reliance on VCN flag
- 273c4f9 [Frameworks roll] Roll to 843778507 piper revision
- 6949ed5 Revert "[Gardener] Disable failing test in WebXrVrCardboardPermissionTest"
- 3254576 Revert "[GPU] Add Android & WebView to fieldtrial for legacy IPC removal"
- f9fc143 [ColorRename] Update semantic color name: bottom_sheet_bg_color
- 769f00b [DC] Add use counters for Digital Credential protocols.
- 6635159 [gestures] Chain overscroll to overscroll-area-parent pseudos
- 5bbb3e5 Settings: remove unused icons
- 02aa8fc [NtpCustomizationV2] Adds feature flag parameter
- b4ebd2e Remove ThirdPartyCookieDeprecationMetricsObserver
- 43e7558 [TreesInViz] Fix a few cc_unittests expectations.
- 3fb7721 [TDR] Remove TODOs linked to issue 40263971.
- db69b22 [Contextual Tasks] Upload tab context before sending Lens side panel queries
- d42bc19 Roll clank/internal/apps from 9b2f44873d13 to ae06d6a9d038 (1 revision)
- dc180c2 [Theme] Use NTP customization v2 flag for creating NtpBackgroundImageCoordinator.
- f0550a7 Roll ANGLE from be0fc3dbc3f9 to c77c36a1fef2 (1 revision)
- 0e529ac [iOS] Migrate ContextualPanelEntrypoint Metric Helpers to LBB
- f803b7b [CodeHealth] Rename channel_span() to channel()
- 24e830d [contextual_tasks] Underline tabs when associtation changes
- 56b605b [iOS][CX] Fix issues with UV in conflict resolution
- f0ab7d7 Automated Commit: LKGM 16520.0.0-1073776 for chromeos.
- ff9e5d2 Roll Chrome Win ARM64 PGO Profile
- 000116f Add a test for using DOMParser output with XSLTProcessor.
- cb4373a Roll src-internal from d591a6ebd08e to 615e7e96022e (1 revision)
- ae15760 Also log credit card from telemetry after URL deduplication.
- 2fa9a9c Android: Convert EdgeToEdgeStateProvider -> SettableNonNullObservableSupplier
- d72af3b Shift away from isIncognitoAsWindowEnabled() to using IncognitoUtils
- dd334bf Reland "Remove insignificant trailing spaces from the output of testRunner.log()"
- 59b3b4d Fix BackgroundLoaderOffliner crash when terminating after completion callback
- 9bd91af Roll Chrome Mac Arm PGO Profile
- 6237f3a Roll Chromium Variations from kKQwK-Db2CAUbYkYW... to kDf43maDxOhMVt4ak...
- f57ba02 [contextual-tasks] Enable multi tab and ensure carousel grows to fit
- cb35acc Roll Perfetto from b1bf22a6501e to 0ea3169e963d (1 revision)
- e9f3cd0 [Settings Search] Set the required bundle args for AutofillOptions
- 88372d8 Roll glic-test-internal from e347e3ebc532 to 50d243bda4e2 (2 revisions)
- df519c4 WebNN: allow ImportTensor to block WebNN thread
- 201a50b Fix issue where delegated_ink_metadata is not synced in TreesInViz
- 877eac2 [iOS] Replace manually localized strings with generated strings in the CPE
- c5efa43 [ios][fixit] Sunset IOSAutofillBottomSheetNewBlur
- 026614b tracing: pass file I/O opcodes to Perfetto
- 538594a [iOS] Add script to help adding strings in the CPE
- 37d98f2 Android: Convert KeyboardInsetObservableSupplier -> SettableNonNullObservableSupplier
- 26e5380 Roll clank/internal/apps from fbcf23edf28c to 9b2f44873d13 (1 revision)
- 703b316 [Gardener] Disable failing test in WebXrVrCardboardPermissionTest
- 49c20b2 IDB: remove kIdbPrioritizeForegroundClients part 1
- 7b11362 [Default Browser] Fixes for ProgId based default client checks
- 61855b7 [composebox] Add logging for context addition method.
- d2cd413 [Magic Recall] Adding cache for ContentCaptureMetadata and clearing on DidFinishNavigation.
- 6fc8489 Fold remaining `components/subresource_filter/content/shared/*` directories into `c/s_f/content/`
- e10f157 [Magic Recall] Pipe language details to content capture data share.
- 31394ab Move metric recording logic out of DefaultBrowserInfoBarDelegate
- ecfc7f3 Implement closing for Immersive Reading Mode.
- 82f08df Roll DevTools Frontend from ce85394953f0 to 4e9be9402d63 (1 revision)
- b8f19a5 [CADisplayLink #3] Add ExternalDisplayLinkMac and VSyncProviderMac to support CADisplayLink in the Browser process
- af42655 Remove out-of-date comments in performance_class.cc
- 005b371 Add SyncedSetUpUtilsBridge
- bc12851 [iOS] Add Function For Chip Shown in LBBMediator
- bcd9a1a WebNN: Add ScopedTrace for tensor creation and export
- eebe8d3 [MtbCct] Update field trial json
- 49711ae [Gardener] Disable failing test in SiteSettingsTest
- 8245d4b Android: Convert ArchivedTabCountSupplier -> SettableNonNullObservableSupplier
- 400e1a7 Roll androidx from dXzA3ykf41z-AR1PP... to LXyg2qPeJb59Pw9uj...
- eb14a8a Revert "updater: enable the segment heap for Windows"
- 364ea64 [Reading mode] Follow the cursor with line focus
- 504e535 Update ENTERPRISE_POLICY_OWNERS
- aa8b65a Sub ASCII numerals for Arabic-Indic for Arabic input on Windows Pt 2
- 039c60e Disable flaky vertical tabs tests for windows.
- 35c606e Add GeminiActOnWebSettings policy to ChromeOS
- 5681902 Adding myself to relevant OWNERS files
- 238b011 [iOS] Add flag for enabling refactored FRE path through the BrowserAgent
- 6f6f7d4 [iOS] Fix smart sorting enabled status being lost
- d574887 [Settings Search] Index dynamic settings config for Card Benefits
- 1ad280b update_client: replace base::OnceCallback<void()> with base::OnceClosure
- b135fd9 Fix and enable some flaky tests on Windows
- c2cc1fc Update docs for using espeak MV3 on Desktop Linux
- 154215e Roll Chrome Android ARM32 PGO Profile
- 79b2f64 [Clean up] Remove view change requests
- baed557 Roll Chrome Android Desktop x64 PGO Profile
- 00ccd4b Fix warnings in gnrt after new unstable feature exact_length_collection
- f44aba8 Roll PDFium from e11956eeb406 to 801ef71fadf8 (12 revisions)
- c7d9c02 [Save and Fill] Update the Save and Fill dialog result metric
- bb2d186 [iOS][PSF] Add accessibility labels to Page Action Menu.
- 5790d4a Change base::BindOnce() to CrossThreadBindOnce()
- 175dfae [WAConsent] Update icon to arrow selector spark.
- b585f1c Roll Depot Tools from 4244c7085585 to 883e6b91c09a (1 revision)
- 308e2ca Extract content nodes from within SVG subtrees.
- 9734569 Remove artificial 2-3 second delay from Translator API
- 7ed4c5c Create ShowImmersiveUI to add Reading Mode to the overlay view.
- dc010d7 [iOS] Fix the Animated Default Browser Promo in the FRE
- ad81340 [NTP Theme] Add a metric for theme collection daily refresh.
- 2d324e8 [iOS] Mark testCancelDeletionInDetailView as flaky
- 58f16d2 Roll llvm-libc from 378f0c39fb57 to 779a1494d221 (4 revisions)
- f0cf4bc Handle empty conversation IDs as new conversations
- c629677 [iOS][PriceInsights] Remove todo for the Chart
- 7cba838 Workaround rustc's Call to GetFinalPathNameByHandle() on Windows
- 3dcb221 Make Page Zoom Reset button height wrap content.
- 022ce91 [Extensions] Fix webRequest hang when active worker lacks listener
- 23870ac bump MessagePumpTimekeeper histogram expiry
- ade5835 a11y: paper over unexpected call to AXObjectCacheImpl::HandleScrolledToAnchor
- c779530 [iOS] Post to correct sequence in Safari Importer
- 1147365 Roll Chrome Mac Arm PGO Profile
- de7afd8 [ntp] Emit NewTabPage.VoiceActions for AIM
- c1d57e3 Roll Updater chromium_mac_arm64 from 2@1552006 to 2@1553016
- f4ac755 Refactor `ExtensionUsageAction` into common class.
- 07dd31c Revert "Add the ability to use do base64 encoding in //base with simdutf"
- e203610 [contextual_tasks] Handle UpdateThreadContextLibrary from AIM
- 249301a [contextual_tasks] Roll context library Silk API
- ed1ac51 Clean up web_app::test::CreateRandomWebApp()
- 568e44a [NTP Theme] Implement In-Product Help for NTP theme customization.
- 89b64d6 [ChromeAndroidTask] skip deactivating if there only exists one task
- b76696e Roll glic-test-internal from 5f452cd5b953 to e347e3ebc532 (1 revision)
- a227b79 Update description for Immersive Reading Mode flag.
- 0361657 Roll Updater chromium_mac_amd64 from 2@1552010 to 2@1553014
- 25a75ab Roll Enterprise Companion chromium_mac_arm64 from etz7N1Ngf1uV0sZT5... to SPlhUgz-sSywBMcnt...
- f913999 Add kill switch for CCT multiple parallel requests
- ec091ad Add the ability to use do base64 encoding in //base with simdutf
- ec9f01c Roll Updater chromium_linux64 from 2@1552004 to 2@1553002
- b1a3e47 [Drag and Drop] Update dragging UI
- 0435894 [iOS] Migrate ContextualPanelEntrypoint IPH Logic to LBBMediator
- fb96f0b Android: Convert FormFieldFocusedSupplier -> SettableNonNullObservableSupplier
- efc6903 Update the VSyncParamsMac for CADisplayLink
- 9fdabc1 [iOS] Migrate setEntrypointConfig from ContextualPanelEntrypoint
- c06c2a5 Disable scrollbar in Incognito NTP omnibox autofocus render tests.
- ebd22a9 Roll Enterprise Companion chromium_linux64 from SJF9m_hvylrsrfFYV... to Nlvosf-Tq06nAg_6w...
- 0eade2a [lensoverlay] Add feature param to cap impressions of non-blocking privacy notice
- 0110309 [contextual_tasks] Sources menu polish
- d88992b Add metrics for side panel clobbering between types.
- 4ab565d extensions: Enable desktopCapture API on desktop Android, part 1
- 003ead1 Using DeleteSoon for async registrations in memory pressure observers
- 105f355 [iOS] Fix Edit button appearance on the Tab Grid
- ecb34e5 [iOS] Mark testShareGroupAndManageGroupUsingFacePile as flaky
- 126138c Rename BWGConfiguration to GeminiConfiguration
- 3a9a291 Android: Convert CurrentTabPriceTrackingStateSupplier -> SettableNonNullObservableSupplier
- 6220255 Add module_prefix to version script files
- 106b7c3 [Reading mode] Add strings for Line Focus
- 9603e9b [context-input] Change context_id type from uint64 to int64.
- 2f056b5 Roll Enterprise Companion chromium_mac_amd64 from xP84xuH8Kvufi_xIL... to LexFoY9OXV3yQucDi...
- 026b924 [PDF] Use pre-multiplied bitmaps when rendering with Skia
- 9c55941 [context-input][Android] Disable separate request IDs for multi-context viewport images in Composebox.
- 6e19247 Sync feature protos.
- ddb8123 [Contextual Tasks] Queue search request if awaiting cluster info
- 2a7b5d0 [omnibox-next] Suppress voice animation in AIM popup.
- 58afbe6 [omnibox][next] Clean up `kNtpSearchboxComposeEntrypoint`
- 27d4d03 Roll ios_internal from e7243e9b76b6 to 8753408d4a12
- 8fa97ce Roll Perfetto from b521c077f343 to b1bf22a6501e (2 revisions)
- 1633f40 Fix DnsProbe parsing for proxy override rules
- 167d787 Roll src/chrome/app/theme/default_200_percent/google_chrome/ ff9817fe7..22338720b (1 commit)
- 0fc0517 [SxS] Remove chrome://flags for split view
- ca59c85 FaceGaze: Remove FaceGazeBubbleCloseView
- fbb2ad7 Disable Merchant Trust HATS and remove code
- f634518 Fix dangling pointer in DbusAppmenu
- a430778 Roll Chrome Win64 PGO Profile
- 53a15d2 Clean up unused tab search position flag
- b2eb594 WebUI: Fix errors happening with future TypeScript versions v6 and v7.
- 986cf2a Roll glic-test-internal from 020ed786a816 to 5f452cd5b953 (1 revision)
- 20283cf Roll src/chrome/app/theme/default_100_percent/google_chrome/ 662d6ea16..e972ea67e (1 commit)
- a92c936 [ChromeVox] Fixes for punctuation echo settings
- 18889dd Prevent exposing UA shadow-DOM in KeyframeEffect constructor
- 610acfa [Extensions] Change MenuItemInfo to use ControlState in menu model
- 864e5a9 [Extensions] Remove unnecessary params from a windows.create() helper
- 9cdabc4 [TreesInViz] Add deserialization test coverage
- 1459190 [omnibox][next] Fix crash when typing after @tabs mode.
- 9c3d5c3 legion: Refactor client impl unittests
- f811530 Roll clank/internal/apps from 128871049e70 to fbcf23edf28c (1 revision)
- 45e2412 [ntp-simplification] Implement staleness detection and increment staleness for all modules on module load
- 3c7ac02 Add support for Dawn's GLES backend to Skia/Graphite
- 14b2d79 Remove references to base:: namespace in memory pressure files
- 7b17ab0 Reduce webauthn/authenticator.mojom.h includes in headers
- 7f7f2ff [TreesInViz] Set different shared image count test expectations
- 778b38e Fix duplicate tab search button
- a17c68b Migrating blink test to front-end repository
- b930199 Clean up the MakeMemoryPressureListenerSync experiment
- e5e49f0 Require secure origin for IsIframeUrlAllowlistedForActor
- 1574f58 [wv][metrics] Log foreground/background state for unhandled WebView renderer terminations.
- 6757269 Avoid duplicate Multiwindow mode change notifications
- 7a5962a [fieldtrial_testing_config] Update experiment params
- 40be44a Fix a static initializer in an aggregation_service_network_fetcher test
- 60ef84e manifest: Accept "unframed" as an alias to the borderless display mode
- c122384 Fix a static initializer in password_autofill_manager_unittest.cc
- baf563b [iOS] Remove iOS 16 scroll handling in TabStrip
- 6f92485 Android: Convert FrameRequestSupplier -> SettableNonNullObservableSupplier
- 9df68e4 Android: Convert KeyboardAccessoryStateSupplier -> SettableNonNullObservableSupplier
- 07249d4 Android: Convert XrSessionTypeSupplier -> SettableNonNullObservableSupplier
- f3c0ad8 Reanchor UrlBar size constraints in expanded fusebox.
- dee18f8 [DBSC] Notify observers if session created by calling `AddSession`
- 2f8a1cc Roll vulkan-deps from 19e77f45335c to cc35b4b885ad (1 revision)
- eb48ba2 Roll Chrome Mac Arm PGO Profile
- d0e0d0f [clank-q4-fixit] Update naming for drag_handle_color and divider_color
- 315ea6f [omnibox][next] Restore the popup on cancelling a file upload.
- 0bb6693 Fold subresource filter `content/shared/browser` directory into `content/browser`
- 4a94228 [Desktop Android] Separate window init logic in WindowsCreateFunction
- c7e3442 Convert ByteCount to ByteSize in SysInfo, except AmountOfPhysicalMemory
- ba75c45 [Search Settings] Request index when sign in account info receives updates
- aa1a7cb Roll Chrome Win32 PGO Profile
- 13691bb [contextual-tasks] Update ClientAimMessage with tool selections
- 612a928 Roll Chromite from 4ef8028ba44c to f40131e42966 (1 revision)
- e43116b Revert "Remove insignificant trailing spaces from the output of testRunner.log()"
- 8da4337 [base] Add missing comment in ThreadController
- abd2589 Fix disabled testCreditCardControllerKeepsRightSize
- 1f230f3 Roll V8 from 00317f6e1ad1 to 213a9d187a3d (3 revisions)
- 5ebb991 Revert "[ContextualTask] Fix an issue that automated chip is not shown when opening side panel"
- 92bbe00 Add unit tests for values_test_utils utilities
- 82ce4ff [DBSC] Enable oaml std cookie binding in field trial testing config
- 0eba55b Roll Perfetto from c2f15bc57681 to b521c077f343 (1 revision)
- 2498871 [IWA] Add missing check for Shutdown() in IWAOpenedTabsCounterService
- b5ca5fe Reland "Add Leak Canary tests"
- 2ae7051 blob_generator.py: add support for *-extension-install policies
- 4f6f6b2 Roll DevTools Frontend from 48959a96c9bb to ce85394953f0 (2 revisions)
- 6d1bcec [AIM] Tint attachment chips based on scheme.
- 44d7995 Add ViewTransition::ActivateFromSnapshot trace
- 740682c Use base/memory/advanced_memory_safety_checks.h directly
- 4d60d12 legion: Clean-up client.h file
- 80e5cd3 Enable EnforceManagementDisclaimer by default.
- ca89bf1 fake_dmserver_unittest: move to components_unittests
- 486ae26 Roll libcxxabi from ad354a108725 to 7a8c5a0cbf61 (1 revision)
- 42d6309 Replace iterator usage with base::FindOrNull() in ASG
- 7d39e1b Roll Media App from 0SR2nXBZmxmrGi-Br... to 5qYNt2ZdEtpGXewlO...
- 7deecff Revert "Convert to UNSAFE_TODO in base 6/9-base/profiler"
- bd356d0 Disable THSP open/close animations on windows due to jank.
- 8d14d43 [iOS] Mark testOpenPasswordManagerWithFailedAuth as flaky
- 4b4e355 fake_dmserver: fix machine-level policy fetching
- 2ad762e Android: Convert CustomTabCount -> SettableNonNullObservableSupplier
- 55cc993 Clean up obsolete Tracking Protection prefs
- 43e7139 [GPU] Add Android & WebView to fieldtrial for legacy IPC removal
- c960778 [CodeHealth] Rename channel_span() to channel()
- fa5c602 Filter WebView orderfile profiles
- bc249f3 Refactor `SyncPresenter` to `SyncPresenterCommands`
- 63a0bda [Autofill] Remove obsolete comments from contact_info.cc
- 2ac3096 Convert to UNSAFE_TODO in base 6/9-base/profiler
- f1a196b Convert to UNSAFE_TODO in base 8/9- base/trace_event
- 5e7c435 Convert to UNSAFE_TODO in base 4/9-allocator
- 0b1a09e [iOS][autofill] Update renderer_id.ts functions
- 44769c8 Convert to UNSAFE_TODO in base 3/9
- 674c8d1 Updating trunk VERSION from 7577.0 to 7578.0
- e6488fd Convert to UNSAFE_TODO in base 9/9-windows
- e03c177 Roll src-internal from b5a13c8ce465 to d591a6ebd08e (2 revisions)
- 7caac9f TldCleanup: propagate error from failure to read input file
- 1e22c1e Cleanup `kReloadPasswordsOnTrustedVaultEncryptionChange`
- 7e30e4f Rewrite tld_cleanup internals to avoid out-parameters
- dca16e0 [iOS] Mark testBulkUploadForBookmarksAndReadingList as flaky
- 84c3c30 Roll Dawn from ff25e3c6c1b4 to bb2fc0a5a259 (2 revisions)
- f3291c7 [ios] Migrate QRScannerViewControllerTestCase to isolated UI tests
- 6ef4479 Roll WebRTC from 4487720ec13f to 682fc133642e (5 revisions)
- b9a12f3 Disable TransientKeepAlivePolicyTest.EvictsOldestProcessWhenLimitExceeded on Windows.
- 28120b1 Add HistorySyncState to HistoryIdentityState.
- cd17e39 [Autofill] Add AutofillAgent::RequestRefill()
- 66d363a Roll ios_internal from 7c7e38f0675c to e7243e9b76b6
- becda69 Reland "Prevent AwaitQuiescence from being used in E2E tests"
- cdaf69e Roll libunwind from 634b5977998d to 80473997f824 (1 revision)
- f270ffb Pass TabCreator to PageInfoController from PermissionBlockedDialog.
- 4aedb62 viz: Remove outdated comments
- b46c69c Roll FreeType from 30e45abe939d to 23b6cd27ff19 (1 revision)
- f71df5a [cleanup] Remove unreachable code from continuations.
- d46237b Reland "fake_dmserver: port to Linux"
- 3146cea [iOS] Do not block UI when images are loading
- db3a7e6 Roll Chrome Mac PGO Profile
- 1429008 [iOS][AIM] Add accessibility labels for toolbar buttons
- ea4b1a4 Enable ForcedDiceMigration by default
- 1edcf6a legion: Add metrics to sandbox process crashes
- 20d4daa Reland "iwa: Simplify window.open notification service"
- 3e46dab Roll Chrome Mac Arm PGO Profile
- 29a15c0 Roll V8 from 429434d50729 to 00317f6e1ad1 (2 revisions)
- 4983d34 Roll DevTools Frontend from 6e959f399f75 to 48959a96c9bb (2 revisions)
- 22475bd Move actor tools off of old MayActOnUrl implementation
- f877cdd Roll Crossbench from f2f10370da75 to ec64613645cb (1 revision)
- 29a5412 Roll Help App from dduuaLCqeP7abJ637... to 5E9Sf0DpXyiPzaOWQ...
- ad948d7 [iOS]Remove Flaky Marker for Tests in PasswordControllerEGTest
- cf70b49 Fix setIdleConnectionTimeout using an Android >=31 API
- bdc4507 [AutofillAi - M4] Create java version of an EntityInstance
- ce69862 [signin][fix] Wait for gaia login tab to load before signing in
- 8d76f08 [dbsc] Refactor UnexportableKeyProvider config generation
- 15133a2 Clean up ComputeInterpolationQuality()
- 2d5f1b0 Add a WebCodecs perf test for drawing VideoFrame at 0.5x scale
- f1969cd [iOS] Mark SafeBrowsingPasswordLeakCheckToggleMoveDisabled test as flaky
- 2f0bafc Change `rust_bindgen` to accommodate for https://crrev.com/c/7240187
- 1e63eaf Add UMA for recording preferred congestion control algorithm
- 0bc3ed3 Roll ios_internal from 98d29301f9ec to 7c7e38f0675c
- c77cdd0 Remove FluentScrollbars from RuntimeEnabledFeatures.
- 7371a3a Set newer_was_more_recently_used arg correctly when merging names
- 3bbce24 Rename blur-value accessors on ShadowData
- d50bfd3 [FPF] Deprecate enterprise policy
- 4450249 [iOS] Migrate activeTabHasNewData from ContextualPanelEntrypoint
- ccf1d94 Reland "Refactor crypto to use WindowOrWorkerGlobalScope partial mixin"
- 8ce2faf [iOS][Composebox] Check Lens availability
- 133f2ed Roll WebRTC from 57de06825b33 to 4487720ec13f (2 revisions)
- 5fa5f06 Add needed feature override in failing test
- 66a1bdf WebGPU: Prevent canvas textures to be transient
- b5b11af Roll V8 from 29eede382a0d to 429434d50729 (4 revisions)
- edf8d7c [testing] Enable LowerPriorityForCompositorGestures on bots
- a1aff0a Roll Chrome Linux PGO Profile
- b84b90a Expose `defaultBrowserContextId` in `Target.getBrowserContexts`
- cae6ce0 Roll DevTools Frontend from ffa0d3fe95b8 to 6e959f399f75 (4 revisions)
- 31fb4e2 Extend Android.WebView.SaveState histogram
- 4c5d3a4 Move on-device-translation features to components/<> directory
- 10b207e [CT] Automatic update from google3
- 3830753 [LNA] Add Local Network Access (LNA) split permissions type
- 8046584 Roll ANGLE from e7b7916c3626 to be0fc3dbc3f9 (1 revision)
- 78c0caa Updating XTBs based on .GRDs from branch main
- 4c3ce49 Roll libc++ from b4596f1d2b9d to f48ac93bb382 (14 revisions)
- e736feb Add CanvasRenderingContext2DState::ShadowBlurAsSigma()
- 96f3213 Revert "[Blink] Have CRPExternalBitmap inherit from CanvasSnapshotProvider"
- 1061dd2 Fix teardown of PrintContentAnalysisUtilsTest
- b4c03ea Roll clank/internal/apps from 2431e9946ef9 to 128871049e70 (1 revision)
- 4916fe3 Roll ios_internal from 56767ab18189 to 98d29301f9ec
- 51c3009 [iOS][Composebox] Force multiline compact mode when aim is not available
- 9743654 Revert "iwa: Simplify window.open notification service"
- 4690f3c Revert changes to webp_image_decoder_test to preserve base::ThreadPool usage
- 08eaf8a Roll Chrome Android Desktop x64 PGO Profile
- d81d122 [contextual tasks] Make CreateSearchUrl asynchronous.
- b733448 Roll Chrome Win64 PGO Profile
- ba3fc00 Roll Chrome Win32 PGO Profile
- fa96c48 [fieldtrial_testing_config] Update experiment params
- a97fb63 [iOS] Remove obsolete todo about sync state
- 8075636 Roll DevTools Frontend from 2ef5101a203c to ffa0d3fe95b8 (1 revision)
- 1f606e0 [iOS][AIM] Fix crash when deselecting tabs from the tab picker
- a14874a [DevTools] Remove obsolete `text-prompt.js` test.
- c2bd42c Automated Commit: LKGM 16520.0.0-1073769 for chromeos.
- 6282f11 Roll Chrome Mac Arm PGO Profile
- 07f1f29 rcaps: Re-target TODOs to clean up histograms
- f7920b8 Revert "iwa: Rename IsolatedWebAppsOpenedTabsCounterService to IsolatedWebAppsWindowOpenPermissionService"
- c570fbb legion: Move google_rpc_code files to proto_utils
- cc38fce legion: Strengthen checks for empty content in GenerateContentResponse
- 79a81f6 Roll compiler-rt from 2c376ec98440 to be50fd991ac7 (8 revisions)
- ee8c700 Triage css-highlight-api failures
- 5418cc3 YourSavedInfo: Add HaTS survey configs
- f62daea Run CSS multicol tests in headless shell
- d03515a updater: use the prod_id prefix when finding files to cleanup
- 54f527e Fixes for nodiscard std::optional, std::set operations
- 66607de Triage failing @custom-media test
- 58d6920 Check valid pattern upon storing website settings
- a71ae5d [gardening] Disable most TabStripActionContainerTest tests on ChromeOS
- cee9220 Roll Perfetto from 1e9c6644a5e4 to c2f15bc57681 (2 revisions)
- 5bf2395 Remove devtools/unit/soft-drop-down.js
- 95d7dd7 [Autofill AI - M4] Add C++ representation of AttributeInstance.java
- b724d16 [AutofillAi - Re-auth] Introduce feature flag
- 21b8789 Snapshot UKM `source_id` early into `PermissionRequest`
- 702d4ff Migrate SyncManager::Observer to CheckedObserver
- 9a2d9fc Wait for click listeners to be attached before clicking
- 0e85114 Roll V8 from 0f981a356329 to 29eede382a0d (4 revisions)
- dee82c4 Add Omnibox Autofocus Experiment flags to chrome://flags.
- 3c26603 Migrate Sync observers to base::CheckedObserver.
- 8b1ae77 Fix Crash in FullscreenController::EnterFullscreenModeInternal
- 73aa907 Roll ios_internal from 1c07e39a87ca to 56767ab18189
- a8341c8 Cleanup flag UseHeuristicForWindowsFullScreenPowerPoint
- 2528eef Roll Projector App from Llg_5O1Tu5NpCUGzO... to aHO4XZyVxgUBRxfYA...
- 585edec Update meet_effects hash in DEPS file.
- 8d77b48 Roll Chrome Mac Arm PGO Profile
- 991eb9c Roll ANGLE from fe3c8640fe8d to e7b7916c3626 (1 revision)
- 61d84b2 [IOS][AIM] Update the used lens entrypoint in composebox
- 0533353 [HybridInAutofill] Use new title for entry point
- b5bf61e Take over some metrics
- c25b531 Add missing nullptr check for GetPage() in accentcolor handling
- 54fd518 Rename ScrollSnapshotClient to PostLayoutSnapshotClient
- 63dcc76 [Code Health] Auto format code
- 44711f2 WTF: Change the value type of TextEncodingNameMap from `const char*` to AtomicString
- 55755f5 Roll Dawn from 83072ee716dc to ff25e3c6c1b4 (1 revision)
- 696be87 Automated Commit: LKGM 16518.0.0-1073763 for chromeos.
- e0f8f03 [AutofillAi - M4] Create save/update flow manager for entities.
- a66b13a Roll Boca App from vhw2mR0FFFkewCdAg... to sUx12tWUGlmt8otxo...
- f980c7b Change the interface for blocklisting queries
- ed6bd83 Roll Boca Receiver App from mPIpjgxnf-5IurRGA... to b-oREP9QNh6M1bE86...
- f54cc37 Roll Skia from 4251aa7454da to ee08571bbf67 (1 revision)
- b06011f [Frameworks roll] Roll to 843549086 piper revision
- 926943c Revert "Make Supplementable array-based."
- d07ba78 Don't install extensions for soon-to-be-destroyed profiles
- 147149a Roll Perfetto from 15fe37485df9 to 1e9c6644a5e4 (1 revision)
- ecac5a8 Roll Chrome Mac PGO Profile
- ad737b3 Update omnibox popup egtests to use `waitForWebStateVisibleURL`
- 0328bbe [Fuzzing] Add test for check failure stacktraces.
- 7238a4c [ios][fixit] Re-enable testShareGroupAndManageGroupUsingFacePile
- 71d6a7a Revert "Roll Platform Experience Win from 0a84e3a5546a to f1c4971313f0 (2 revisions)"
- 32be51d Roll Chrome Mac Arm PGO Profile
- 3c7c37a Roll WebRTC from a5e9b3bd6fe2 to 57de06825b33 (2 revisions)
- e7254c3 Roll WebView ARM Orderfile from uNu4Bj5sdwH84RO4x... to I2sl1qTAtDErAh8UF...
- 0f6eaab Roll Chrome Win64 PGO Profile
- c9da8ad Revert "Make HTMLVideoElement not Supplementable."
- e574821 Revert "Implement ForwardDeclaredMember<T> to replace Supplement<T>."
- dbcaeff Roll DevTools Frontend from 29cf54bf9b8e to 2ef5101a203c (1 revision)
- ec6c8bd Roll Chrome Linux PGO Profile
- d053544 [WaaP] Fix crash caused by empty presentation time
- f52ee50 ash: Remove a dependency on chrome/browser/ui/browser_commands.h
- 3f5c6ba [iOS] Refactor storing page context logic
- 838333c Roll Chromium Variations from RuwJD5d2LDcy98YGQ... to kKQwK-Db2CAUbYkYW...
- fe5b839 iwa: Rename IsolatedWebAppsOpenedTabsCounterService to IsolatedWebAppsWindowOpenPermissionService
- 876c5a2 iwa: Simplify window.open notification service
- 64cc1e9 Revert "Make Agent not Supplementable."
- 0999a8b Revert "Make Mojo not Supplementable."
- a3664b4 Revert "Make HTMLMediaElement not Supplementable."
- dae33e3 Revert "Remove unused Mojo ex-Supplementable members."
- 47a9447 Revert "Remove unused HTMLMediaElement ex-Supplementable members."
- 59dd8ef Revert "Make TrackBase not Supplementable."
- 73a7693 Revert "Make Screen not Supplementable."
- d1e4f88 Revert "Remove unused TrackBase ex-Supplementable members."
- a83a55a Specifies a null TimeTicks for input_start time when unsure
- cc5734a Roll clank/internal/apps from 168cf0948010 to 2431e9946ef9 (1 revision)
- 082b5cb Revert "Remove unused Screen ex-Supplementable members."
- c9a1642 Revert "Make Page less Supplementable."
- ec1c9f9 Revert "Make Document not Supplementable."
- 28b4334 Add proto for SaaS domain usage reporting.
- c16282a Simplify WillCreateAcceleratedImagesFromVideoFrame()
- 0e25488 [Blink] Have CRPExternalBitmap inherit from CanvasSnapshotProvider
- 377cd4d [Blink] Dedupe CRPExternalBitmap code
- b69c121 [//media] Simplify VideoFrame::IsStorageTypeMappable()
- a124690 [//media] Have video_util.cc check HasMappableSharedImage()
- b959709 [v8] Pass info by reference to V8DOMActivityLogger::LogMethod(..)
- e6b80d2 Roll ChromeOS Arm AFDO profile from 145-7559.4-1765165096-benchmark-145.0.7574.0_pre1557090-r1 to 145-7559.4-1765165096-benchmark-145.0.7575.0_pre1557201-r1
- ce59437 [//media] Eliminate redundant check in video_util.cc
- c834dfc fix auto spanification for ct_log_verifier_unittest
- 0e1c85f [Blink] Eliminate CRPExternalBitmap call of CreateSkSurface()
- 1d1fd7a [Blink] Eliminate unneeded local var in CRPExternalBitmap
- 72dfd44 [Blink] Remove GetSkiaImageInfo() call from CRPExternalBitmap
- 22f9eba [Blink] Remove Canvas() call in CRPExternalBitmap
- d3967e3 [//ui] Remove BufferPlane Mojo type
- 4acd6bc [//ui] Remove BufferPlane IPC trait
- c2022af Cache the input texture and upload buffer in D3D12VideoEncodeAccelerator
- 23d2a87 Reland "Remove callback_helpers.h include from is_callback.h (try 5)"
- e54e6c8 Roll Chrome Android Desktop x64 PGO Profile
- b1ee8d0 Stop warmup of dbghelp.dll
- dec5658 Roll Chrome Android ARM32 PGO Profile
- 12ead8c Add feature flag for initial WebUI sync nav start -> commit
- a1ab41f [a11y] Update clearing extended selection API on Android.
- 109a8e0 Roll vulkan-deps from 7e86dc9a0b34 to 19e77f45335c (2 revisions)
- 563e061 [gardener] Update expected file for auto-attach-wait-for-debugger-2-sessions-worker
- b5ba194 Roll Chrome Mac Arm PGO Profile
- 3842df9 Optimize execution time for ETC1 decoder by using bit shuffle
- 43fb316 Roll Skia from 228003cd7104 to 4251aa7454da (1 revision)
- a473236 Roll DevTools Frontend from 812f909f1aa7 to 29cf54bf9b8e (1 revision)
- 4a34e8f Remove DataDecoder::ParseCborIsolated and related tests.
- 357690c Roll WebRTC from 33736837c9ec to a5e9b3bd6fe2 (2 revisions)
- 448561d [Contextual tasks] Do not disassociate task when moving tabs
- 0fd696d ash: Make more use of BrowserDelegate in boca/on_task
- 256efee Roll clank/internal/apps from eb61ca8b3571 to 168cf0948010 (1 revision)
- 41b44e5 WebNN: Limit int32 input for dequantizeLinear on ORT backend
- 1149bf4 Roll Skia from c4669bfc05d8 to 228003cd7104 (3 revisions)
- 227f058 Do IWYU for callback_helpers.h in async_dom_storage_database.cc
- 4c8e8b9 Avoid calling GetMixFormat for process loopback capture
- 0243db5 Roll Chrome Win64 PGO Profile
- 20cc9f1 Roll Chrome Mac Arm PGO Profile
- 9d51c49 [iOS][mvt-customization] Add variable for maximum non-pinned sites
- 6f11666 [media] Cleanup Robosushi documentation
- 5b2f31c [AF] Create kAutofillEnableWalletBranding flag
- 9943df4 Roll Dawn from b45658f69c1d to 83072ee716dc (4 revisions)
- 395a184 Fix metadata for LevelDB
- 4c18ccb Automated Commit: LKGM 16518.0.0-1073757 for chromeos.
- af3b401 Roll androidx from nJ29H15TiQabAnFD0... to dXzA3ykf41z-AR1PP...
- 33cdd8e [TreesInViz]: Add crash keys to LayerTreeHostImpl::CalculateRenderPasses().
- 409a2f3 [Extensions] Fix TypeError in DragAndDropHandler on chrome://extensions.
- 456540d [iOS] Add Updates To Dismiss IPH and Respective IPH Colors
- f787c76 [syntheticresponse] Do not set special CSPs in dry-run mode
- 9b89b4a [webui omnibox] Notify keyword changes only when entering or exiting
- 9b98537 [Desktop android] Implement MoveGroupTo 2/2
- b2b2d45 Disable H.264 SEI recovery points as keyframes
- 5e3c36d Introduce //extensions/UI_OWNERS
- e90894c Roll Catapult from ea58ca8d0f72 to f4e9846e84ee (3 revisions)
- cdebcc1 Roll ANGLE from e7d198e19870 to fe3c8640fe8d (4 revisions)
- 12117bc Introduce V8<GeneratedCallbackFunction>::InvokeAndCatch()
- 0b88079 Refactor ERR_DNS_SERVER_FAILED into more specific error codes
- 093eba0 Revert "Fix jank when resizing browser window"
- 19cc119 Add oka@ to extension webUI-related OWNERS
- f042e4d Roll WebRTC from f5b8acf862b6 to 33736837c9ec (2 revisions)
- 5fb2266 Roll Chrome Mac PGO Profile
- 1998547 Roll Depot Tools from cd4db8fd7f03 to 4244c7085585 (1 revision)
- 8619c32 Updating trunk VERSION from 7576.0 to 7577.0
- 5e287ec Roll vulkan-deps from 63f49739609f to 7e86dc9a0b34 (1 revision)
- b9b7c52 Roll Skia from d8b3e61dee91 to c4669bfc05d8 (1 revision)
- e140e25 Add owner for ios.md prompt
- b5fd8ed [Android]Fix: xxxActivity cannot be cast to ModalDialogManagerHolder
- 50b2931 Roll Chrome Win ARM64 PGO Profile
- 7cbfc48 Roll Chrome Mac Arm PGO Profile
- 6110a2a [lensoverlay] Add accept/dismiss buttons to non-blocking privacy notice.
- 10f59b7 [CodeHealth] Rename channel_span() to channel()
- dc1a827 Switch include in browser_context.h to advanced_memory_safety_checks.h
- 7c18460 [Icons] Update speed vector drawable
- f99d68d Roll Arm AFDO from 145.0.7574.0_pre1557090_rc-r1-merged to 145.0.7575.0_pre1557201_rc-r1-merged
- 7a4a185 [CodeHealth] Rename channel_span() to channel()
- 60b16b5 Roll Chrome Linux PGO Profile
- 6259b12 [Vertical Tabs] Ensure pinned border shows for split tabs
- a7f6d2c Reload crashed tab pre-PerformActions
- 818e01c [Masonry] Update masonry directory name to grid_lanes
- 55ad25a Roll V8 from 5d7acbf2b002 to 0f981a356329 (2 revisions)
- 29d07f3 Store the presentational state of Reading Mode webui in ReadAnythingController
- 5d7b46d [CodeHealth] Use AlignedHeapArray
- ae80113 [ios] Fix build failures in Xcode 26.1.1 caused by weak let
- c6c1e2d [AdTracker] Only scan the v8 stack for ads where necessary
- bc0cc21 WebNN: Enable fuzz test for ORT backend
- a9b4054 [LNA] Retry requests for cached local resources
- b05ce45 WTF: Add IgnoringAsciiCaseHashTraits
- 3c703f5 Roll Perfetto from bd045cc077b8 to 15fe37485df9 (1 revision)
- 2fbfad4 Roll Chrome Android Desktop x64 PGO Profile
- d68ba9c Correct contact info
- 0d39256 [Icons] Remove ic_history_googblue_24dp
- 028de5c Roll vulkan-deps from e8a6d5aa82b7 to 63f49739609f (1 revision)
- d9ac2d2 [CodeHealth] Rename channel_span() to channel()
- bdbbcf8 [Masonry] Update MasonryLayoutAlgorithm to use GridLanes naming
- e4445b0 [ntp-next] Add Deep Dive variant of row UI
- c517dab Roll Chrome Android ARM32 PGO Profile
- fd1c738 [CodeHealth] Rename channel_span() to channel()
- 9845e7a [CodeHealth] Rename channel_span() to channel()
- dc164cb Roll Skia from 925c77603d00 to d8b3e61dee91 (1 revision)
- fa897e4 Deduplicate Deb/RPM signing key and remove expired keys
- f8ab075 Roll ANGLE from 9caf5b96cd3c to e7d198e19870 (3 revisions)
- 9b9ccb0 Roll clank/internal/apps from 1b6af5fc7f13 to eb61ca8b3571 (1 revision)
- d80c7ae Reland "Refactor chrome/installer/linux"
- 6807baf [css-highlight-api] Fix crash when overlapping with aria-invalid
- 853a7d2 [glic] Get drag region calculated by blink based on "-app-region" property
- 04e8ff3 [glic] Add ChromeOS GlicActorRolloutControl to the fieldtrial config
- 6a3a155 Bugfix: Disable GetWebGPUFeatureStatus when webgpu is disabled
- 39ae5a9 Roll Chrome Mac Arm PGO Profile
- 6173885 Roll cpuinfo from ff24ffee8340 to e8b4def4e6e6 (1 revision)
- ef82ff1 glicmi: Add memory footprint metrics for Glic
- 60a30a1 [PWA App Migration] Make update dialog ready for migration
- 9564eae GLContext: Convert total_gl_contexts_ -> std::atomic
- 63fb0f5 [ToolbarRefactor] Trigger allocateAvailableToolbarWidth when zoom indicator is added to omnibox.
- fcbed66 Standardize test creation of WebApps in preparation for stricter construction constraints
- 91d3dcc [Icons] Update ic_history_24dp
- 55c4bf5 Make Durable Message storage lifetime tied to DevToolsRootSession
- c0b8ade [Vertical Tabs] Move immersive mode background logic to top container
- f6da733 [Vertical Tabs] Check visible when hit testing tab container impl
- 9f2f586 text-justify: Introduce `JustificationContext`
- f072c86 Reland "[glic] Add support to enable glic on non-CBX 8Gb (or higher) ChromeOS devices"
- 82949a3 Revert "[AIM] Current tab input type is not eligible when SRP."
- 87b3ddd Roll Perfetto from 876b3a4ee9ed to bd045cc077b8 (1 revision)
- 5d50deb Fix GNOME session suspend type based on WakeLockType
- 98b780b Roll ios_internal from 06bab173c13b to 1c07e39a87ca
- bcad66c Improve LocalStorage shutdown [2/2]
- 43a54ed [Community Contributions] Clean up sAndroidTabDeclutterRescueKillSwitch
- 26d382b [Cleanup] Clean up GlicActorUiNudgeRedesign flag
- 7cb9993 Revert "[Tabs] Re-enable testCreateIncognitoGroupAndCloseAllTabsInDialogTwice"
- 39b5b05 [Extensions] Add structured cloning support to messaging utils.
- 57c792c [iOS][Gardener] Disable flaky tests in NTPHomeTestCase.
- b529a0b Allow access to paths for Corsola for Landlock GPU policy