Chromium Daily Digest Logo

Chromium Changes Summarizer

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

Chromium Digest: 2026-02-11

Overview

This digest covers 731 commits from the Chromium main branch on February 11, 2026, with 551 deemed relevant to developers. The day's changes span from (64691e8)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((64691e8)) to (5bd6aa3)" target="_blank" rel="noopener noreferrer" class="text-sky-500 hover:text-sky-300 font-mono">((5bd6aa3)) and include an unusually high number of breaking API changes across core, media, UI, and Android components, requiring significant attention from embedders.

Breaking Changes: Core & C++ APIs

  • ⚠️ BREAKING The public mojo::EnumTraits::FromMojom method signature has been updated to return the value directly or via std::optional, replacing the boolean return and out-parameter pattern. Custom trait implementations must be updated. (beab4f6)
  • ⚠️ BREAKING Thread priority management has been refactored to a lease-based system via PlatformThread::RaiseThreadTypeLease. The public method PlatformThread::SetCurrentThreadType now only sets a thread's *base* priority, which can be temporarily overridden by leases. (612357b)
  • ⚠️ BREAKING The public member fields full_name and given_name in the AccountInfo struct have been made private. Code must be updated to use the GetFullName() and GetGivenName() accessor methods. (79c150b)
  • ⚠️ BREAKING The public method SiteInstance::IsSandboxed() has been removed. Callers must now use site_instance->GetSecurityPrincipal().IsSandboxed(). (6d9a124)
  • ⚠️ BREAKING The TabStripModel::SetOpenerOfWebContentsAt method was renamed to SetOpenerOfTabAt, and its signature was changed to accept a tabs::TabInterface* instead of content::WebContents*. (023d799)
  • ⚠️ BREAKING The signature for TabListInterface::DiscardTab has been changed to return the discarded WebContents*. (fe82665)
  • ⚠️ BREAKING The signature of the public delegate method RenderFrameHostDelegate::UpdateTitle() has changed, removing the title_direction parameter. (df35cb4)
  • ⚠️ BREAKING The public class media::ChannelLayoutConfig has been moved from media/base/audio_parameters.h to media/base/channel_layout.h, which will require embedders to update their #include directives. (103fb04)
  • ⚠️ BREAKING The public method media::VideoFrame::IsStorageTypeMappable() has been renamed to HasDirectCpuAccess(). (9405179)
  • ⚠️ BREAKING The autofill::Suggestion constructors have been updated to accept std::u16string_view instead of std::string_view. (273197d)
  • ⚠️ BREAKING The data structure for HistoryEntry.all_timestamps in the public browsing_history_service.h and history.mojom has changed from a std::set to an absl::flat_hash_map. (15784bc)
  • ⚠️ BREAKING The public test utility function HasSandboxedSiteInstance has been removed from content/public/test/browser_test_utils.h. (854324a)

Breaking Changes: Blink & Web Platform

  • ⚠️ BREAKING The public mojom interface RestrictedCookieManager::SetCanonicalCookie signature has changed. It now takes a network::mojom::RestrictedCanonicalCookieParamsPtr, moving cookie creation logic from the renderer to the browser process. (c91ac9d)
  • ⚠️ BREAKING In Blink's WTF library, public functions CharactersToInt() and CharactersToUInt() were renamed to StringToInt() and StringToUint() and now return a std::optional. A public overload of String::Split() was also removed. (f817b33) (7ac52ac)
  • ⚠️ BREAKING A revert has removed the public methods WebSerializedScriptValue::Create(base::span<const uint8_t> data) and WireData(). Code should use CreateFromCloneableMessage() and GetCloneableMessage() instead. (9b0a0e7)
  • ⚠️ BREAKING The navigation_id field in public performance-related APIs like PerformanceEntry has been changed from uint32_t to uint64_t. (0034804)
  • ⚠️ BREAKING The public enum value blink::mojom::DisplayMode::kBorderless has been renamed to kUnframed. (3a77577)

Breaking Changes: Android & Headless

  • ⚠️ BREAKING On Android, org.chromium.base.Promise will now throw a synchronous UnhandledRejectionException if a promise is rejected without an error handler attached. This can cause previously non-crashing code to crash. (8eee606)
  • ⚠️ BREAKING The public Java observer method ProfileDataCache.Observer#onProfileDataUpdated now passes a DisplayableProfileData object directly instead of an account email String. (b939f51)
  • ⚠️ BREAKING The public Java method AccountManagerFacade.updateCredentials now requires a CoreAccountInfo object instead of an android.accounts.Account. (7572152)
  • ⚠️ BREAKING The public Android utility SupplierUtils.waitForAll() will now always post its callback asynchronously to the UI thread, even if all suppliers are already available. Code relying on synchronous execution may break. (305ceb3)
  • ⚠️ BREAKING A recent behavioral change in SelectFileDialog on Android was reverted. It will now return a content:// URI instead of a virtual document path, breaking code that was updated to handle the temporary virtual path behavior. (9336fd6)
  • ⚠️ BREAKING The headless_shell build now disables policy support by default. Users relying on this feature must explicitly enable the headless_use_policy=true GN argument. (cedf821)

Blink & Web Platform

  • A new CSS pseudo-class, :animated-image, has been implemented to allow styling of elements containing animated images (e.g., animated GIFs, APNGs, WebPs). (37d35a3)
  • The extension messaging system now supports transferring Blob objects by switching the underlying transport to blink::CloneableMessage. (d9bea47)
  • The HTML parser was updated to recognize and create ProcessingInstruction nodes from <?target data> syntax, which were previously treated as bogus comments. (b49c4f2)
  • A bug was fixed where a combination of CSS clip-path and mask could cause an incorrectly expanded clip rectangle, affecting hit testing and intersection observers. (21b5890)
  • The ui::Layer class was updated to automatically compute backdrop-filter bounds, simplifying the implementation of background blur effects for developers. (e73ede1)
  • A bug in Android's DeleteSurroundingText IME handling was fixed to correctly respect selection changes made by JavaScript event listeners, improving behavior in custom input fields. (0896cbd)

Android

  • The DeviceInput.supportsKeyBoard() function was refactored to more accurately distinguish between alphabetic/numeric keyboards and other input types like TV remotes. (9db473d)
  • The PersistentStoreMigrationManager was decoupled from the TabModelSelector lifecycle, allowing for more flexible management of window state. (bb12392) (40c90d3)
  • The logic for background media capturing, previously controlled by IS_DESKTOP_ANDROID, has been refactored to use a new runtime feature flag, AndroidEnableBackgroundMediaCapturing. (0abd2db) (1bf115f)
  • The "Bookmark all tabs" option was added to the tablet tab strip context menu. (71d6281)
  • The Custom Chrome Tab (CCT) ToolbarRefactor and the ToolbarTabletResizeRefactor features were enabled by default. (649dad5) (e4e04b0)

iOS

  • A significant refactoring of the swift_source_set build rule was undertaken to improve modulemap and API notes generation, enabling better interoperability with C++. (e2d00cc) (0a0b838) (d163998)
  • The Gemini SDK integration was updated to receive the UIWindowScene. (6e9a70a)
  • The kHomeMemoryImprovements and kEnableClipboardDataControlsIOS feature flags were removed after their features were fully launched. (f343014) (4b1fb7c)

UI & Features

  • For Autofill, a new UI component, PasswordCombinedSelectorView, was added for choosing passwords during credentials.get() calls. (a9018b7)
  • In Reading Mode, the last used line focus mode is now stored in user preferences. (0675c60)
  • The DataTypeController for Sync was updated to allow metadata for Bookmarks to be cleared even when the data type is in a FAILED state, fixing recovery from certain persistent error states. (78bda4c)
  • A fix was implemented to prevent menu item icon colors (e.g., for tab groups) from being overridden when the item is selected in a menu. (28e4a25)
  • The TranslationDispatcher for Live Caption was refactored into an abstract base class to support multiple implementations, such as online and on-device translation. (ca406ec)

Security & Performance

  • A security bug in the Payment Request API was fixed by implementing a new URL loader that prevents localhost port scanning. (32a1e33)
  • A fix was implemented to prevent cookieStore.addEventListener("change",..) from causing a BadMessage crash in sandboxed frames with opaque origins. (a0c4b36)
  • A feature was added to enable ABOVE_NORMAL_PRIORITY_CLASS for important processes on Windows to improve overall browser responsiveness. (cad2568)
  • For on-device AI models, the component download now starts immediately upon registration to reduce latency on first use. (c156439)
  • The StrictHighRankProcessLRU feature was enabled by default to improve process lifecycle management and performance. (2265287)

Build & Infrastructure

  • A large dependency roll for SQLite was committed, updating it to version 3.51.2, which includes hundreds of upstream bug fixes and improvements. (b8e1904)
  • The C++ style guide was updated to formally ban several remaining C++20 features. (f61c419)
  • The unused third_party/alsa directory was removed from the codebase. (7817b46)
  • The build system was refactored to split linker flags from compiler flags for better dependency tracking and build correctness. (2045745)
All Commits (731)
  • 5bd6aa3 Bookmarks: Refactor power-bookmark-row to remove local variable use
  • b1df882 Rename CommandStorageBackend::IsValidFile to IsValidFileForTest
  • ca6f127 Revert "Add a fieldtrial testing entry for IOSUndoAutofill."
  • 33fca95 Prepare to remove the fuchsia-perf-shk and fuchsia-perf-nsn
  • a764c71 Migrate ash components to use ScopedObservation
  • c663d5a Use ScopedObservation in secure_channel 2/2
  • 197a7b7 Migrate ash/components registrations to ScopedObservation
  • dc026af Use ScopedObservation for observer management in dbus/ and ui/.
  • 364b9b4 [Extensions] Use ServiceWorkerHost::FactoryCallback in tests
  • dc1a5dc Roll Chrome Mac Arm PGO Profile
  • 52ef005 [Reading mode] Fix line focus padding
  • 5477ff0 Enable most Mac/MeetEffects tests
  • 8ce1473 Roll ios_internal from 83a50e21e050 to b9076401e3ae
  • 8999c5a add a flag for explain with gemini in edit menu
  • eab9ce6 [RWM] Fix use of openAdjacently fieldtrial param
  • 883237c Pass in `SkillsDialogType` as a param when creating a dialog.
  • a635d76 Fix typos for the word button
  • 5075693 spanification: migrate base::ReadUnicodeCharacter usage to string_view
  • ad46ceb [Settings Search] Do not update the query if it is null
  • 3b44865 Roll Perfetto Trace Processor Linux from 418ebc35810e to 7475cfd1038a
  • 98c4d9f [RR] Implement ReportToUser() with toast
  • 987338a [focusgroup] Consolidate focus utilities.
  • 7e018a8 Roll WebView ARM64 Orderfile from IYN5xxSNVdBBI29Hh... to OXdlk8J0CkOWabnz6...
  • fc79111 Use StringView in <meta> parsing
  • 3fcf648 [Contextual Tasks] Fix sharing from the embedded page on mac
  • 1c42956 Roll vulkan-deps from 196a50babcaa to 9a2bbd3ba53f (2 revisions)
  • 9f3a6a3 Move ExtractIban to PaymentsFormDataImporter
  • 0cb1550 Roll PDFium from 39a605d58dc5 to 182f77e026e8 (4 revisions)
  • 5046e99 [composebox] Move GlifAnimationState enum to common.ts
  • 9bbcb1f Fix typo in Privacy Sandbox confirmation comment
  • 7da06da [gap-decorations] Introduce rule-visibility-items: auto
  • 11efe7e Move ExtractIbanFromForm to PaymentsFormDataImporter
  • 82005d0 [Android] Re-enable tests skipped due to cleanup issues
  • 7fc7d08 Enable Vids preload for new unmanaged users
  • e55e4e0 Roll Chrome Android ARM64 Orderfile from xT9v9qSdevPy8QcBt... to mMhe4jDdtnZB-QNqM...
  • e505ba5 [TreesInViz] Remove extra logging
  • 75c3f4c Use StringView for value in HTMLInputElement::FilteredDataListOptions
  • 0e84202 UI tweaks to skills dialog.
  • 903d4d1 Roll Chrome Win32 PGO Profile
  • 28755e7 Bugfix: test failures from upstreaming OsAdditionalSecurityProvider
  • ec1d5d4 Optimize layout updates and drag-and-drop indexing
  • 046a488 spanification: migrate base::ReadUnicodeCharacter usage to string_view
  • c2c345a [ntp-next] Assert that 'clearFiles' is called on composebox close
  • 549f584 [Contextual Tasks] Send composebox size to embedded page
  • 38ff2df [Omnibox Next] Add min width to context menu
  • f09126b Set lower CRYPT5_KDF_LG2_COUNT_MAX to prevent ASAN timeouts
  • e1621ae Add more context for dates, plus better validation error message
  • 97f3d01 Roll src/third_party/libaom/source/libaom/ 37b2db433..0a996fc2a (3 commits)
  • 55ccb21 [glic] Refactor contents chaining to use instance GlicTabObserver
  • 023d799 Support opener for cross browser window link navigations
  • 7eecc19 [Skills] Update chrome://skills footer text
  • 2db0c41 [gpu] Don't set mappable_formats on GL decoders
  • 607020d Add feature flag for OnDemandBackgroundTabContextCapture
  • 7b31c13 Revert "JNI Zero: Emit a warning when DEFINE_JNI(ClassName) is forgotten."
  • dfc1283 Roll Dawn from e9770e7b996e to 43309d18eb12 (3 revisions)
  • 7d75158 Roll Chrome Mac PGO Profile
  • 0115b74 Roll WebRTC from cc688f55eb33 to 0ab329d6d010 (2 revisions)
  • ce4ef20 Remove uselss friend class StatementRef
  • b0e7488 Use absl::flat_hash_set instead of std::set in database.h
  • 19ff0e4 Roll Perfetto from 7475cfd1038a to 2353a9580ce0 (2 revisions)
  • c403cc4 Split the StreamingBlobHandle unit test into atomic tests
  • cc924e0 Simplify base::PickleIterator usage in UserScriptSet::UpdateUserScripts
  • 2f4f354 [iOS] Add the initial implementation of IOSContentAnalysisRequest.
  • 59c7030 Mark NullableObservableSupplier as @DoNotMock
  • ffc50c2 Update chrome://skills discover skill cards to show description instead of prompt.
  • 6c44e70 [ChromeOS] Fix WebUIBrowser crash on shutdown and enable tests
  • d5afa1a Roll ruy from 576e020f0633 to 8a21714c60bd
  • 300baab Remove unused include from glic_form_parsing_tracker_unittest.cc.
  • 0675c60 [Reading mode] Store the last enabled line focus mode in prefs
  • cc6d54f Add DCHECK for DumpWithDifferingPaintPropertiesIncluded
  • cf230cf media: Fix race condition in NDK VEA's temporal scalability parsing
  • f6709ed [builtin ai] On-Device AI setting reflects enterprise policy.
  • 2714ae7 Remove TabAlertController Check from TabAccessibility.
  • 567a753 [contextual tasks] zero state suggestions robustness
  • 05e5925 Update CBB autoroll for the builds refs
  • a1b621e [TabModel] Add test coverage for setTabGroupVisualData edge cases
  • 72fd9e2 Accessibility: Fix caret navigation over newlines in IA2 word boundary
  • f946d30 Roll Depot Tools from 6c6a6572eb0e to 425882d8c0ac (1 revision)
  • e82c6c9 [Build] Migrate Log usage.
  • 6072ce9 [Frameworks roll] Roll to 868779283 piper revision
  • cedf821 [headless] Disable policy support in headless shell by default
  • 3529dcf Add an "experimental_linker_path" GN arg
  • 950572d [Omnibox Next] Add flag to control presence of contextual group header
  • ae15fa8 Make Harfbuzz libfuzzer imports conditional
  • ca7be6c [tools/colabutils] Add helper to measure time to first contentful paint
  • 91a59ef Fix TabGroupMenuBridge::BuildMenu crash from dangling color provider
  • 33f8b41 [Omnibox] Prevent double logging of ContextualSearch.Tools histogram
  • e86d654 Increase timeout for browser_tests in Linux ASan LSan Chromium Builder
  • 08219e7 [input-state-model] Remove TOOL_MODE_IMAGE_GEN_UPLOAD in `allowed_tools`
  • e861084 Roll Open Screen from 67cac118873c to f8e2c010f73f (1 revision)
  • c529ebf Searchbox: remove most local variables
  • ee6b673 [//media] Add kHardwareVideoDevicePath to process switch propagation
  • 6c0b494 Roll ANGLE from 20c23cfe3ea8 to 13b704fa6198 (4 revisions)
  • 4b2c44c Roll V8 from 6f0799f5ef34 to 5329636c7a78 (2 revisions)
  • cabe765 Roll Perfetto Trace Processor Win from 785457deb383 to 418ebc35810e
  • 6569b16 WebUI: Remove if statements in HTML templates, part 1
  • 56e7334 [iOS] Remove potential dangling pointers from MostVisitedTilesMediator
  • 39aa1b5 Create bit for share image in ProfileEnablement
  • fda042c Roll Chrome Mac Arm PGO Profile
  • 1bcd014 Enable AvoidCloneArgsOnExtensionFunctionDispatch feature by default
  • 6f112e5 extensions: Sessions API window restore for desktop Android, #3
  • 0819cd7 WebNN: Fix BatchNormalization dimension mismatches for 1D tensors
  • 8c9e031 [FedCM] Add a timeout to FederatedActorLoginRequest.
  • 0034804 [event-timing] InteractionID generation merged with navigationId.
  • 6f7cbee [SEH] Change parameter fetching to download dialog icons directly
  • 7817b46 Remove unused third_party/alsa directory
  • 0e24595 [Vertical Tabs] Log UMA when collapse button is pressed
  • cabebc0 [Reading mode] Ensure line focus shortcut updates menu
  • d049a76 [ntp-next] Retrieve action chips when enabled via cc toggle.
  • afb98db [SettingsSearch] Fix local search being visible
  • 6d2abd6 Remove @Mock of ObservableSuppliers 5/5
  • f51f265 Enables `kAvoidUnnecessaryGetMinimizeButtonOffset` by default.
  • b045795 Roll Perfetto Trace Processor Linux from 785457deb383 to 418ebc35810e
  • beab4f6 [mojo] Support idiomatic return types in Mojo EnumTraits::FromMojom
  • 1520990 Roll optimization-guide from 510fda652d99 to aff93789ea76
  • 6e9a70a [iOS] Pass UIWindowScene To Gemini SDK
  • eace4ad webnn: Add more HRESULTS from WinAppRuntime installation
  • 33b286f Roll clank/internal/apps from 921e385fcf03 to 68c9e78e12de (1 revision)
  • 881ebd3 [CustomizationV2] Fix crash when switching theme collections rapidly
  • a79c042 Removing the test restriction on the desktop form factor
  • cab0db8 [Vertical Tabs] Adjusting Based on Button Width
  • 59348e7 [Cookies] Record more detailed metrics on nameless cookies
  • d3b4598 [ios] Remove flake bug links in PageContextExtractorJavaScriptFeatureTest
  • 0b0ef0e [tools/autotest] Add option to run tests without building
  • 607d78c Revert "[WebAudio] Fix OfflineAudioContext flakes"
  • d163998 [iOS] Add partial build of swift's CxxStdlib
  • ab598d1 Revert "Modify supportsKeyboard function to reflect the correct logic"
  • 7f8e3d9 media: Enable AV1 support for PlayReady SL3000
  • 9a4b5e0 [Prompt API WPTs] Refactor Language Model multimodal prompt tests.
  • 0a0b838 [iOS] swift_source_set refactor part 4: generate apinotes
  • 845bba3 Sync feature protos.
  • 19cf330 Add a fieldtrial testing entry for IOSUndoAutofill.
  • 0c87257 [Gamepad] Add chrome://flag for GamepadRawInputChangeEvent
  • fd7cbfc [iOS] Remove TraitCollectionSetForTraits invocations in the Magic Stack
  • 45f0ec9 [context-input] Make request_id optional in FileInfo struct
  • 5a392ca Inline ObservableSupplier.addObserver() (part 2)
  • 8053642 power: add metric to track fan speed
  • ae7d9a3 Rename CommandStorageBackend::inited to inited_for_testing.
  • 4711d0a Update protos from google3: model_mode and aim_eligibility_client_request
  • dbacf43 docs: fix outdated unittest filename in build_instructions.md files for Linux, Mac, and Windows
  • 653da52 [webview] Catch SecurityException when attempting startForeground in webview_service
  • cf0efc8 Make MAC_DEFAULT target mac-15 or mac-26
  • 04a91c8 [Theme] Disable Toolbar's context menu on NTP.
  • c2e0abe Roll Skia from 1c31b24a5773 to 894c7ca0eac4 (2 revisions)
  • a7759ac [iOS] Remove TraitCollectionSetForTraits invocations in NTP
  • 598be5b Show cookie controls IPH when page action becomes visible
  • b6cce4a Set baguette feature to default enabled
  • f990e47 Add fallback-to-sw-if-gles3-not-supported chrome://flags
  • 89a6e27 [SendTabToSelf] Improve test coverage for target device list generation
  • a39149a [WebMCP] Do not compute input schema for <input disabled>
  • 147b2f2 Roll WebRTC from 3d0277346241 to cc688f55eb33 (1 revision)
  • 1cc22e7 Roll Perfetto from 418ebc35810e to 7475cfd1038a (1 revision)
  • cd85f72 Remove underscores from search overridden dialog test names
  • 0c3d3b7 Remove future_browser_features: window activation events
  • 7b53ae4 [projects] Add panel shadow and fix background color
  • ecc8764 Roll Catapult from df226937732d to 4fe7ca3037f5 (1 revision)
  • 78bda4c Enable metadata clearing for Bookmarks in FAILED state
  • e2d00cc [iOS] swift_source_set refactor part 3: new modulemap generation
  • 76b4d44 Remove test data dirs from analyze exclusions
  • f602dc3 Roll Chrome Android Desktop x64 PGO Profile
  • 71d6281 Add "Bookmark all tabs" menu option to tab strip context menu
  • 4c62115 [Autofill] Split contact info from addresses for actor fills (2/N)
  • b85cf01 [SettingsSearch] Tooltips for buttons
  • 8391908 Roll androidx from us_8XGxuKdmIoJEbq... to Cl-ySzwc8_wt7xkWL...
  • a7effc8 [ios] Migrate ReportAnIssue SceneCommands to SceneCoordinator
  • 8eee606 Android: Make Promise.java fail synchronously when no error handler exists
  • f4a068b Roll Chrome Android ARM64 Orderfile from Eor3JTzXntfICP0wu... to xT9v9qSdevPy8QcBt...
  • 35a37f8 [iOS][Composebox] Add composebox inttest
  • 8d56067 [SyncTests] Remove default 'store' argument from PasswordFormsChecker
  • 5069b82 Remove recovery password filling flag metadata
  • 51e37ab Skip event dispatch capture phase if possible
  • ca7ea2e Roll clank/internal/apps from 03cabaf66520 to 921e385fcf03 (1 revision)
  • 9ed043e Roll V8 from b5daf74d984f to 6f0799f5ef34 (25 revisions)
  • 273197d Update Suggestion constructors to use std::u16string_view
  • 70ccd0a Fix UNSAFE_BUFFER in file_path_reparse_point_win.cc
  • 7cd06a5 Reland 'Reland "[contextual tasks] delay submission when uploading"'
  • bd2c4e7 Add histograms to Safety List parsing
  • 01d0087 android: Fix FullscreenHtmlApiHandlerCompatUnitTest for SDK 30+
  • f131e45 stability: Extend expiry of Stability.Android.ProcessedRealMinidumps
  • bf8f78b Roll WebView ARM64 Orderfile from W-f8VJnO7f252gHdt... to IYN5xxSNVdBBI29Hh...
  • 47a1acf android: Fix TabSwitcherPane unit tests for SDK 36
  • 9aadd78 add GlicClearCookiesOnFirstSync
  • 8b74eeb [Mac] Use specified deadline 0 when resizing.
  • d6c82d6 tab-strip: Fix StripLayoutHelperManagerTest for SDK 36
  • 2cc0351 Delete obsolete pref reference in site_settings_list
  • 35ae76f [Wi-Fi LAN] Fix race condition with TCP Server Socket in unit tests
  • c730365 [x-plat promos] Register Tab Groups with the FET
  • 32a1e33 Implement a new url loader for the payment request
  • e4c5f0e Skills UI: Auto pop name and emoji in skills dialog
  • 0a78b90 Roll clank/internal/apps from ab31fe998cd8 to 03cabaf66520 (1 revision)
  • c2f9140 [Media][Clank] Allow delayed audio focus gain
  • 8267b80 [rustmojo] Split out remotes and receivers into their own file
  • 71cc8cf [Reading mode] Add domains to omnibox denylist
  • ec5609a Roll Chrome Win64 PGO Profile
  • a8ea504 [perf] Add jetstream3.telemetry
  • c5ba566 Enable fieldtrial testing of SelectivePermissionsIntervention
  • bb31e8a Implements logic to store language result.
  • f0a6820 Implement ContentAnnotatorTabHelper
  • 45dd5c8 Fix UNSAFE_TODO in skcolorspace_primaries_unittest.cc.
  • edf5514 [owners] Remove jianli@chromium.org from components/neterror/OWNERS
  • 16120b3 [ios] A IOSMagicStackRemoteTabKillSwitch FieldTrial config
  • bb12392 [Persist] Implement PersistentStoreMigrationManagerImpl
  • 2591ee3 [RR] Add page action icon
  • f343014 [ios] Remove kHomeMemoryImprovements
  • 133c67d Roll ANGLE from 2c07b13173f8 to 20c23cfe3ea8 (1 revision)
  • 83d5a87 [RR] Handle LevelDB race condition in data manager
  • c4b284d Prevent use-after-free in HandlePostMessage
  • 85f76c3 [gamepad] macOS: Add haptic support via GameController
  • a711baf Roll Chromium Variations from YPtkxSNkVVnjxt3a8... to h-FUlFvwqmNT3kMHc...
  • 9e1ac32 [Perf] Increase shards for win-arm64-snapdragon-elite-perf
  • 8adac14 [TabBottomSheet] Relocated tab_bottom_sheet directory
  • ca406ec Refactor TranslationDispatcher into an abstract base class.
  • 0916c89 Roll Chrome Mac Arm PGO Profile
  • 5118ddd Disable kCompressParkableStrings on Mac and Windows
  • 03d0b09 Cleanup obsolete comments for CommandStorageManager::Init() and CommandStorageBackend::DoInit().
  • 7fc501e Extend expiration dates for FamilyUser histograms.
  • 1c0fab8 [TabStripDebugUI] Update WebUI when it is visible
  • 9f3f4db Roll vulkan-deps from 561b38476f3d to 196a50babcaa (15 revisions)
  • 0639f95 Extend Sync.TrustedVault* histograms
  • f4c23ef Revert "Enable Actor's attempt_login_tool and related files on Android."
  • 6ecad7c Revert "[iOS] Upload JavascriptError type reports instead of relying on DWC"
  • 2381710 Roll Skia from 67c11c6611d6 to 1c31b24a5773 (5 revisions)
  • 5f5058e Roll WebRTC from 7ce221014c9c to 3d0277346241 (4 revisions)
  • 9afa5ca Enable Actor's attempt_login_tool and related files on Android.
  • daa6ae5 Reland "Add a remote command to query device location."
  • 05389a7 [BackdropFilter] Fix backdrop-filter + mask-image double-masking with border-radius
  • dc83034 Add API to create origins from nonces for sandboxed frames
  • a0c4b36 Fix cookieStore.addEventListener("change",..) in no-cookie frames.
  • 305ceb3 Android: Make SupplierUtils.waitForAll() not run callback synchronously
  • 23751c4 Roll Perfetto Trace Processor Linux from 7bd423a987a4 to 785457deb383
  • 7f3a732 Enable kAvoidUnnecessaryShouldRenderRichAnimation by default
  • 48b18cb [Built-In AI APIs WPTs] Add timeout expectation for several AI API tests.
  • 8f51103 Roll Perfetto Trace Processor Win from ab1d624455b2 to 785457deb383
  • eacfe42 Roll ios_internal from abc0caa94d9d to 83a50e21e050
  • 911efbe [owners] Remove hsuregan@google.com from tools/metrics/histograms/metadata/METRIC_REVIEWER_OWNERS
  • 71e7655 [omnibox][aim-tools-models] Add metrics for Omnibox context menu.
  • 31fc00e Update celab version for e2e test bed
  • 8af84ba Roll Perfetto from 785457deb383 to 418ebc35810e (2 revisions)
  • eb0d494 Fix overstretching bug in flex fragmentation
  • ae066c9 Site Search: Init site search section under manager search engine
  • 3ffe773 Roll BoringSSL from 738fe6abe82c to 932fb7389fbd (4 revisions)
  • d0f2bd4 WebUI: Enforce definition order of CrLitElement lifecycle methods.
  • 536c496 [hub] Launch hub search for tab groups to stable 100
  • 40348b4 [reader mode] Use Mockito annotation instead of initMocks
  • 152332a move kNestedDeclarationsRule out of the CSSGroupingRule section
  • 09342d9 [Vertical Tabs] Clamp hovercard show delay for very wide vertical tabs
  • b25dcb5 Roll src-internal from 5e0f82d50877 to 77a7e57b6f55 (1 revision)
  • 90e2217 Roll Catapult from a476f554f886 to df226937732d (1 revision)
  • b49c4f2 Support processing instructions in the HTML parser
  • cd42760 [Vertical tabs] Check hover card showing for tab before hiding it.
  • 1c519fb Reland "[Android] Improve ForgivingClickAction to mirror GeneralClickAction"
  • e09d277 Roll FuzzTest from 54b2ccd59262 to fb29fbd0058c (1 revision)
  • 7231b10 Replace some pointer-based HexEncode calls with span-based HexEncode
  • 3a03608 Move OSCrypt metrics to the security metadata directory.
  • a8ff906 [contextual tasks] Rename tab auto-chip feature.
  • 6875000 [Gap Decorations]: Add wpts for collapsed tracks and gap decorations
  • 21d1e59 Implement glif animation for tablets
  • a77ad4b [Vertical Tabs] Reposition bubble dialogs on anchor move
  • f77d255 Remove WebUITabStrip.* histograms
  • 9b0a0e7 Revert "[Blink] Add Create() and WireData() to WebSerializedScriptValue."
  • d9bea47 [Extensions] Add Blob support to extension messaging.
  • 2ffc19b Explicitly allow reentrancy for ObserverList in ui/compositor
  • e452e34 Remove mac-15 or from MAC_BETA
  • bcdb2b1 Extend AutoDeletion flags to M150
  • 5e5c6bd Re-add sequence checking to structured metrics' proto manipulation.
  • c8dac06 Add skeleton ThemeSyncableServiceIOS
  • 0896cbd Fix DeleteSurroundingText to respect JS event listener selection changes
  • bb9b429 [Extensions] Introduce ExtensionsMenuTypes for Android extensions menu
  • 667e77e Add a watchlist for Android Side Panel.
  • 35107a6 [Reading mode] Add metrics for line focus toggle
  • f52b72b Update TargetAutoAttacher::Client's reentrancy
  • 3441637 Roll clank/internal/apps from 0c3a0a96ace8 to ab31fe998cd8 (1 revision)
  • f3f5c82 [iOS] Updates TabGroupColorPalette after group update
  • f003c33 Update Crashpad to d47b05a2a8f96908504f8f182d29e59dd6facad6
  • 1c6d956 Add hook to start edit_monitor
  • 80e46b3 [headless] Remove unused BUILD.gn variable
  • fc0571a [Tab Strip Glic Button] Only initialize in regular StripLayoutHelper
  • 645bca6 [composebox] Refactor context menu to use server allowed tools/models.
  • 0e921f7 [Vertical Tabs] Fix ntb double click maximizing on Windows
  • d5074df [Actor] Adds renderer resolved target member to ActorTabData.
  • faaf2b9 Send Chrome platform as part of the zero state suggestions request
  • 5c73611 Reland "Add labels to getDisplayMedia browser tests"
  • d96e388 [owners] Remove jianli@chromium.org from components/feed/OWNERS
  • 08a6f17 [owners] Remove jianli@chromium.org from components/offline_pages/OWNERS
  • 00bb338 Add unit tests for TabStripModelAdapterImpl
  • 457257a [ios] Add TaskUpdaterSceneAgentTest test class
  • 91effda EventForwarder remove ScopedJavaGlobalRef
  • d5747d0 Fix compact mode animation
  • 7b05db2 [iOS] Add default icons for entity suggestions
  • 1321721 Fix unsafe buffer usage in ui/events/ozone/device/udev/device_manager_udev.cc
  • af48922 Roll js-sys: 0.3.83 => 0.3.85 in //third_party/rust.
  • 40c90d3 [Persist] Move PersistentStoreMigrationManager out of TabWindow module
  • 9db473d Modify supportsKeyboard function to reflect the correct logic
  • 4155b70 [WebMCP] Add parameter schema for <input type=week>
  • 1aadfdf Roll llguidance: 1.4.0 => 1.5.0 in //third_party/rust.
  • d61e194 [WebMCP] Add parameter schema for <input type=month>
  • eb705a4 [WebMCP] Add parameter schema for <input type=datetime-local>
  • ea230a1 Roll clap: 4.5.56 => 4.5.57 in //third_party/rust.
  • 294927a [owners] Remove hsuregan@chromium.org from tools/metrics/histograms/metadata/bluetooth/OWNERS
  • 7ff08c2 Roll cc: 1.2.54 => 1.2.55 in //third_party/rust.
  • 1061814 Roll Chrome Win32 PGO Profile
  • 06227c0 Roll zmij: 1.0.17 => 1.0.19 in //third_party/rust.
  • 0313979 [owners] Remove hsuregan@chromium.org from ash/webui/common/resources/cellular_setup/OWNERS
  • a2a2892 Roll zip: 7.2.0 => 7.3.0 in //third_party/rust.
  • 97bdbc0 [owners] Remove hsuregan@chromium.org from chrome/browser/ui/ash/network/OWNERS
  • fc5c680 [owners] Remove jianli@chromium.org from ios/chrome/browser/webui/ui_bundled/gcm/OWNERS
  • 3733e4e Enable kAssertOnJavaScriptErrors for basic page load cases
  • b33eaa1 [iOS][Composebox] Implement reduced transparency
  • caef6ee Update bottom_sheet_tab_helper to support showing scan card flow
  • 285a64a SlimWebView: create guest, attach to iframe and navigate
  • 1e6716b [Windows] Directly initialize Windows sandbox IPC calls.
  • 9370530 [SettingsSearch] Reset to default state when resizing/rotating
  • d3a4a2f Add Android Chrome to ProbeStylusWritingInBackground field trial config
  • e2b97d7 [CCT] Remove the usage of a remove annotation
  • df37131 [owners] Remove hsuregan@google.com from tools/metrics/histograms/metadata/network/OWNERS
  • 2947f20 android: pin ContextMenuCoordinatorTest#testFocusAfterSubmenuNavigation to SDK 29
  • 47b3f83 Revert "Build with _FORTIFY_SOURCE=3 when use_sysroot=true"
  • 17bcef3 [SetupList] Implement reactive reordering and completion UI logic
  • 15784bc [History] Update all_timestamps to include timestamps for similar urls
  • 9511053 [owners] Remove jianli@chromium.org from chrome/browser/gcm/OWNERS
  • ef57a0e [owners] Remove jianli@chromium.org from chrome/browser/extensions/api/instance_id/OWNERS
  • 79c150b [signin] Mark AccountInfo::{given,full}_name as private
  • 3a01a28 [iOSPasskeysM3] Select passkey suggestion in PasskeySuggestionBSMediator
  • a9f7c29 Roll Chrome Mac Arm PGO Profile
  • 67c3294 Roll ios_internal from 4405501e7042 to abc0caa94d9d
  • a8847d3 [owners] Remove jianli@chromium.org from chrome/browser/extensions/api/gcm/OWNERS
  • a372010 Update RLZ brand codes map for M146+
  • 0f56f0a [AIAE] Update the AI terms of the LLM based amount extraction
  • 3336815 [Autofill] Split contact info from addresses for actor fills (1/N)
  • 93977e0 Replace `std::unordered_set` with `absl::flat_hash_set`.
  • b8f0900 Roll toktrie: 1.4.0 => 1.5.0 in //third_party/rust.
  • cdabaef Restrict Desktop Android Extensions feature flag to corp users.
  • 6650d9d Build with _FORTIFY_SOURCE=3 when use_sysroot=true
  • 01699ae code health: Replace base::RunLoop for base::test::TestFuture
  • 7fa9f74 [Blink] Add CloneableMessage support to WebSerializedScriptValue
  • ef827fb Roll JetStream main from 1323d9df7091 to 6588e89fd812 (1 revision)
  • 5d220ec [NtpCustomizationV2] Preserve background image center during window resizing
  • 264b90f Create dedicated worker work type leases when permitted.
  • 4b1fb7c Clean up the kEnableClipboardDataControlsIOS feature flag
  • 2bd635c [iOS] swift_source_set refactor part 2: rename swift_modulemap
  • 6b5443c Add XplatSyncedSetup flag to CrossDevicePrefTracker field trial
  • 7c79042 [XR]Update ProGuard/R8 flags for androidx_xr.
  • 371d14f Add a fieldtrial testing entry for IOSTabGroupColorOnSurface.
  • 4caa670 Android: Add Log.* overrides for logging exceptions with no messages
  • 4f319cf Roll WebGPU CTS from eb9091d141e1 to 93cb942bc519 (1 revision)
  • 0afc61e Revert "[accessibility] Mark UiAutomationProviderEnabled as deprecated"
  • 4f13371 [RR] Create RecordingDataManagerFactory
  • d6535c6 Roll Media App from TOU_tZa15Prsm5RXh... to _J4Ck-Ig6SYrjyiCM...
  • 46e383d Enable seed file experiment on Stable 1%.
  • f61c419 Update remaining TBD C++20 features
  • 19b12eb Upstreaming Clank OsAdditionalSecurityPermissionProviderImpl
  • 7629434 [blink] Update CRP to use IsScanoutSupportedForCanvasWithFormat
  • d345c49 [Extensions] Collapse DevicePermissionsPrompt
  • 00f1bf7 [ios] Remove code cleaning prefs deprecated on 03/2025
  • d3fe17b [iOS]Hide Floaty For Snackbar And Download Banner Appearances
  • 5eaa390 Remove unused class IncrementTimeDelta
  • 0cbb71b Actor: Remove ActorKeyedService::StopAllTasks
  • 90d23cb [Memory Coordinator] Handle race in renderer process shutdown
  • 12f9329 Ensure the previous complete fbo is not deleted on IMG.
  • 153e363 [WTF] Implement cache for small AtomicStrings
  • b8e1904 Roll src/third_party/sqlite/src/ 7d348fc79..727f7c899 (642 commits)
  • 27f57c3 Add EXTENSION, THEME to SyncDataTypeForSyncToSigninMigration variants
  • 52c5a83 [iOS] Add car symbol
  • dedcba4 Activate a no-op feature to test sticky activation.
  • 7f34f5a Implement shortened latency for frequent content analysis dialogs
  • 32d9786 Modularize //chrome/browser/origin_trials
  • edfe9f4 [SEH] Disable closing settings overridden dialog on escape
  • 481b097 Roll Perfetto from 7bd423a987a4 to 785457deb383 (1 revision)
  • c91ac9d Move cookie creation from blink::CookieStore to RestrictedCookieManager
  • 252a633 Extend Platform.Memory metrics
  • 83bb9e9 [accessibility] Mark UiAutomationProviderEnabled as deprecated
  • 9fc82f7 clank-input: flag-guard commitContent
  • d26d191 Update TrackedElementManager to detect element movement
  • bfcddbc Add a new AutofillAiAction for Wallet data sharing promotion
  • 101b083 IDB: SQLite - index overflow_blob_chunks by blob_row_id
  • 79a5ca2 Reland "Enable WebGPU on NVIDIA on modern drivers (2024-05)"
  • ac0a905 Roll BoringSSL from ae830b196326 to 738fe6abe82c (2 revisions)
  • 7efeab2 WebUI: Remove local variable use in template files, part 1
  • 443f034 Subsample DumpWithoutCrashing when storing screenshot
  • f83e11f [Start Chrome with Windows] Update fieldtrial testing params
  • 661b720 Roll Perfetto Trace Processor Linux from ab1d624455b2 to 7bd423a987a4
  • 004899d Add brackets to single-line if statements and loops.
  • 2211924 Roll Help App from jr-a4lETfyq-M79ud... to -NDKijWu54vQTq8c2...
  • be6c486 [iOS][MagicStack] Remove ShopCardFaviconConsumer
  • a50ecd5 Refactor delegate swap test to use queued test future.
  • 6b943d8 Add browser-controls-scroll-snap-animation to chrome://flags
  • 7cec077 Roll src-internal from c2ba24a1bd1d to 5e0f82d50877 (1 revision)
  • 25ada09 Roll DevTools Frontend from 68d381641e2a to 3358b3cef1ad (3 revisions)
  • b6e8f88 Extend various DBSC chrome://flags entries
  • d35845c [iOS] Update TabGroupColorOnSurface flag
  • 59a19d9 Add a new error code for missing seed files.
  • 36af313 Roll Chrome Mac Arm PGO Profile
  • 1059558 Roll WebRTC from 964afe58c8ef to 7ce221014c9c (3 revisions)
  • c665117 Automated Commit: LKGM 16584.0.0-1075226 for chromeos.
  • 162e6f9 Wrap mixin contents in @result.
  • b0fb7c9 Updating trunk VERSION from 7682.0 to 7683.0
  • fc4cb18 fetch_all_autorolled.py: Fix when it's run from non-src cwd
  • f1017cc [metrics] Extend Media.GPU.* histograms
  • f8cb44e Enable AutofillPrioritizeSaveCardOverMandatoryReauth by default
  • f0b58c8 [Connection-Allowlist] Enforce network restriction on preconnect in
  • d86e036 Update and reenable webtest
  • d2ac7c2 [Cookies] Remove v21 -> v22 Migration Path
  • b691a4b Actor: Clean up task-tracking from state change callback
  • 29c8646 Roll Skia from 8abaabb0855a to 67c11c6611d6 (1 revision)
  • 7f4a304 [rust bmp] Add image crate patch for streamed BMP decoding support
  • a532927 [iOS] swift_source_set refactor part 1: order swap
  • cd1f466 [iOS][PRDBD] Adds QuickDeleteOtherDataMediator
  • ef1573a Clarify disabled features for WebViewEarlyTracingInit
  • 5516321 Roll Chrome Linux PGO Profile
  • 68e5f74 [Passwords] Add single click upload to passwords details card
  • 180a085 Roll Perfetto from ab1d624455b2 to 7bd423a987a4 (1 revision)
  • 857ecbd [Extensions] Remove outdated comment from ServiceWorkerTaskQueue
  • 89d51fc Roll V8 from 5056402ad7a3 to b5daf74d984f (2 revisions)
  • 7d5eb7b [RR] Add replay mechanism in RecordReplayManager
  • 7cd7d1a Revert "Reland "[views-ax] Fix broken event filter system and add regression tests""
  • 729a7ed Revert "[views-ax] Enable dump a11y events tests for interactive_ui_tests"
  • 8182f8a [IOS][AIM] Return correct page classification for all model modes
  • 4f22c9c [Signin][Android] Migrate NTP Avatar to the activity-less sign-in flow.
  • efb27aa [cc] Add feature to make browser controls animate by snapping
  • 60d3e47 Remove foolip from web_tests/external/OWNERS
  • f455e3d [Autofill AI - DA] Some actions should not depend on policy when DA
  • 008cace [signin] Remove flag web-signin-leads-to-implicitly-signed-in-state
  • 391970f Roll BoringSSL from 3bfa06780dbe to ae830b196326 (2 revisions)
  • 9982528 [WebOTP] Remove unused histograms
  • 612357b PlatformThread: implement a lease system for thread types
  • 2e37b70 [RR] Add TestRecordReplayAgent
  • d2cefa6 Revert "[Clapper Loud] Fix missing permission entry on OS-level denial"
  • 86dd8e1 [RR] Add recording mechanism in RecordReplayManager
  • ac61b8e [KP] Automatic update from google3
  • 3a54c33 [RR] Add data manager
  • 07288a0 [RR] Strip credentials off URLs
  • 0e79a5e [CT] Automatic update from google3
  • a01923d [Passwords] Fix screen reader for password list items
  • 04ee49e Roll DevTools Frontend from 370cb4a977f9 to 68d381641e2a (6 revisions)
  • 7572152 [Android] Remove android Account from AccountManagerFacade
  • b6e767a Updating XTBs based on .GRDs from branch main
  • 318bf5f Add timeout to GlicFormParsingTracker::Wait
  • 62e373c Roll ios_internal from f670b2b9db6d to 4405501e7042
  • 8aa5d9f fieldtrials: Fix experiment name for V8MemoryReducerDelay
  • ecd4387 Roll clank/internal/apps from 9116a128a811 to 0c3a0a96ace8 (1 revision)
  • f2f8dc7 Roll WebRTC from a5e2e7b8d4cf to 964afe58c8ef (1 revision)
  • 6b8aff7 Fix typo in lock-controls-on-tablets description
  • 18c30d9 Roll Chrome Android Desktop x64 PGO Profile
  • 5205f53 Delegate bubble reshow decision to controllers
  • a98f3d5 Roll Chrome Win64 PGO Profile
  • a1e12a8 Remove redundant CSSParserLocalContext constructor for @media queries
  • 90198b1 [GreenDevFloaty]: Increase the Floaty window height just a bit.
  • 3e8df77 cct: Pin NavigationControllerTest to pre-SDK 36
  • fd45797 Roll Updater chromium_win_x86_64 from 2@1577006 to 2@1578023
  • 59efebe Re-add google_play_services_apk_version_name to DeletionOrigin
  • 7158d07 Roll Dawn from c20ab4b1a2ca to e9770e7b996e (2 revisions)
  • eae2aa0 Roll Chrome Android ARM64 Orderfile from GtGUBzxWdqj_m_qaX... to Eor3JTzXntfICP0wu...
  • a17abd0 Roll ANGLE from 153afe7b29c4 to 2c07b13173f8 (1 revision)
  • d1b5ec0 Roll Chrome Mac Arm PGO Profile
  • 57094b6 [APC] Allow setting the screenshot redaction color for testing
  • 9161b62 Refactor GetTargetDeviceInfoSortedList for readability
  • bf5386f Roll Chrome Win32 PGO Profile
  • 6185876 Remove redundant StyleCascade::ValidateFallback
  • f7ebd03 Roll Updater chromium_mac_amd64 from 2@1577002 to 2@1578008
  • b838ffa Add a fieldtrial testing entry for WebHistoryUseNewApi.
  • 692d2e1 Roll Updater chromium_win_x86 from 2@1577003 to 2@1578019
  • 70d767d Roll DevTools Frontend from 69c3e3e6e647 to 370cb4a977f9 (3 revisions)
  • 9f3b8b4 Fix Incognito NTP touch listener to unfocus omnibox.
  • 2c6d9cc Roll BoringSSL from ec1c593db0ef to 3bfa06780dbe (1 revision)
  • 19dc176 Roll Updater chromium_win_arm64 from 2@1577003 to 2@1578023
  • 5fef752 Roll Enterprise Companion chromium_mac_arm64 from dTRCZ92e3lLNi1dqR... to VrnYiyHmJ_1xepd2I...
  • b3e3008 Roll V8 from 80dbaa041e54 to 5056402ad7a3 (4 revisions)
  • fb1d279 Roll Updater chromium_mac_arm64 from 2@1577006 to 2@1578012
  • bd9d55a Roll Enterprise Companion chromium_mac_amd64 from mG7CbuvrOB1eJf6Hh... to YSkOtM8-dHGOsFcEj...
  • 8385931 Roll WebRTC from b3bdddbbc11c to a5e2e7b8d4cf (4 revisions)
  • 3c151aa Roll Enterprise Companion chromium_win_x86_64 from PtMnBN9TwEVyIX5Kf... to d3t2OfMNPjNPE4ben...
  • d017464 Roll R8 from TozMGRBtGJuZp31wJ... to YvVZKKYTZDYMrvAXw...
  • 974282c Roll Enterprise Companion chromium_win_x86 from ldJISx7Pdn6y2DAKd... to yT949uBQzS5GSyu6r...
  • dd7d60b Revert "ukm: Remove force checkpointing in UKM database"
  • 92b17bb [WPT] Fix connect-src-webtransport-allowed.sub.https.html
  • de202c6 Roll ios_internal from a61f080f312b to f670b2b9db6d
  • bce2922 Roll Chrome Android ARM64 Orderfile from FmxRzL3iQSmbNt9Ha... to GtGUBzxWdqj_m_qaX...
  • f195b51 [WebMCP] Add parameter schema for <input type=hidden>
  • f14f7e2 [Autofill Ai - M4] Render entities list
  • 9bca721 Roll Chrome Mac Arm PGO Profile
  • 270a0f1 Roll Chromium-BiDi
  • 9e34865 Roll Website from 3cf8e6b8b232 to 0d561e32d81e (1 revision)
  • 06f0e9d [installer] Improve diagnostics for dir creation errors
  • 8b578a7 Roll WebView ARM64 Orderfile from 7L2RcZXG4v_zpooZt... to W-f8VJnO7f252gHdt...
  • b939f51 [Signin][Android] Replace account email parameter with DisplayableProfileData in ProfileDataCache.Observer#onProfileDataUpdated callback
  • ab54dd4 Tidy empty #if sections in gin
  • 4013479 Roll Perfetto Trace Processor Win from d08a6050dadb to ab1d624455b2
  • 86bdf61 Roll Perfetto Trace Processor Linux from d08a6050dadb to ab1d624455b2
  • b397956 Roll ios_internal from a1919d48a728 to a61f080f312b
  • 8f07675 Override GetSetupSyncMode() under chrome/browser/sync/test/integration/
  • 581af85 [iOS][WebAuthn] Refactor fetched keys callback
  • b9c1b8c Roll BoringSSL from ac86a8b497b1 to ec1c593db0ef (4 revisions)
  • 22c1e1e Roll Projector App from 6l5dx9aCMvSrIMLSO... to CFV5vw8blzFoXnxDU...
  • 28ac7d4 [Wallet] Add latency metrics for network requests.
  • 657e452 Roll V8 from a0fd7c916bcb to 80dbaa041e54 (3 revisions)
  • a9018b7 Reland "Passwords: Add PasswordCombinedSelectorView prototype"
  • de56d59 Require user affiliation for webauthn.remote_desktop_allowed_origins on ChromeOS
  • 0dfab46 Group virtual/fragmented-oof-in-cb failures together
  • 64a4c2d Roll DevTools Frontend from a46bcb072eff to 69c3e3e6e647 (4 revisions)
  • f10e63e Remove expired Boarding Pass Detector flag configuration
  • 24a18f9 Extend Profile.PercentageOfManagedProfiles histogram
  • 32a5e2f Reland "[bedrock] Migrate BrowserListObserver to BrowserCollectionObserver - part 8/n"
  • a3d3076 [Signin][Android] Change ProfileDataCache#setBadge account email parameter with account id
  • 18aecf3 [iOS][AIM] Differentiate allowed and disabled modes and tools
  • 8588079 Update FakeWebHistoryService for feature kWebHistoryUseNewApi
  • e3758c9 [ApproxLocation] Quiet prompt on Android
  • 99ddf81 [AutofillAi - M4] Show text attributes.
  • f817b33 WTF: Rename CharactersToInt() and CharactersToUInt()
  • 8f2a84a Roll Boca App from tU-tPyqDWwxgbpqcY... to _OFTiSb7wy1twNBBL...
  • 6c41c2a Roll Perfetto from d08a6050dadb to ab1d624455b2 (1 revision)
  • adc5236 [gardener] Disable ContextualTasksBrowserTest.Composebox.
  • 46cff21 Remove unused last_received_otp_ member
  • a59d677 Fix devtools window attempting to open and failing when blocked
  • 2d14ccb Reorder new failing css/CSS2/pagination/ tests.
  • 9336fd6 Update SelectFileDialog to return Content URI
  • 64e2dcf Roll WebView ARM64 Orderfile from Pw8gRagAGglZdoB5R... to 7L2RcZXG4v_zpooZt...
  • 9e5efb2 Roll clank/internal/apps from 260fc3a444f7 to 9116a128a811 (1 revision)
  • 459e2ad Roll ANGLE from ae81efc63a03 to 153afe7b29c4 (1 revision)
  • 277e033 WTF: Add String::contains(StringView)
  • 7ac52ac Improve String::Split(UChar, Vector) API
  • d2c9aba Add GlicFormParsingTracker::Wait
  • c67b809 Correct table-page-break-inside-avoid-8-print.html expectation.
  • 4e4b2c2 Refactor NormalizeLineEndingsToLF()
  • 3a77577 Rename DisplayMode::kBorderless to kUnframed
  • 9108d49 Roll Boca Receiver App from kPhpr1B6bj2rP1-Ke... to Y2Ws-3gQKfF_wINIy...
  • 15c2bda android: Fix ChromeBackupAgentTest for SDK 36
  • 369b8d8 [contextual_tasks] Unit tests and more for ActiveTaskContextProvider
  • c35600e Roll BoringSSL from 1c8b5caaa97e to ac86a8b497b1 (1 revision)
  • bb5f1ea Roll Chrome Android ARM64 Orderfile from XRwRjRwIO0QMzZxbn... to FmxRzL3iQSmbNt9Ha...
  • 4e3ce39 [Frameworks roll] Roll to 868514982 piper revision
  • 8bfb9c7 avoid DCHECK in style engine with moveBefore
  • 1882f2b Test ChooseFileTabHelper existence before using it.
  • a52da42 Roll Skia from 60d627b4b6af to 8abaabb0855a (1 revision)
  • 5fdfc96 Roll Chrome Mac PGO Profile
  • 1ea18f6 [Document PiP] Handle Activity recreation
  • 3deb886 [Document PiP] Pass the correct display when calculating bounds
  • d41f91e Prefer PHONE_COUNTRY heuristic type over HTML 'country'
  • 0e11d30 Roll WebView ARM64 Orderfile from P4mEsmfWF5_V67uQN... to Pw8gRagAGglZdoB5R...
  • 69a33da Show failure notification if fetching a Wallet server entity failed
  • ccb5ef8 Change CAST OS to use AGC2 adaptive mode
  • ed44a45 Graphite: mark context lost for kOutOfOrderRecording error
  • a280e3a Roll Chrome Android ARM64 Orderfile from CG2muiM3U-q1G9Rea... to XRwRjRwIO0QMzZxbn...
  • cb48257 android: Fix InstalledWebappPermissionManagerTest for SDK 36
  • c61fde3 Roll Chrome Mac Arm PGO Profile
  • 54f9013 Roll Chrome Linux PGO Profile
  • 489a812 Remove fieldtrial entries for expired/launched experiments
  • defb3ba [//cc] Update OOP-R refs in layer_tree_host_pixeltest_masks.cc
  • 9793336 [//gpu] Update OOP-R reference in context_support.h
  • 9c77939 Roll DevTools Frontend from 2c976d197e21 to a46bcb072eff (1 revision)
  • ae7984c [iOS][CX] Fix error in handling keys fetched in import
  • fc7fa85 Implement WalletPassAccessManagerImpl::GetUnmaskedWalletEntityInstance
  • 1c9dc6a [base] Enforce header traits via static_assert
  • 2625845 Roll Perfetto Trace Processor Win from 12399ea74cc9 to d08a6050dadb
  • f37b9fb Roll Chrome Win32 PGO Profile
  • 6291db4 [//media] Update logs/comments in video_frame_gl_surface_renderer.cc
  • 9eadecd Add a toast entry for Autofill Ai Wallet error messages
  • 874fad2 [//media] Update log message in cdm_video_decoder.cc
  • 7886d9d [Blink] Fork CRPSI::EndExternalWrite() for Non2D/2D use cases
  • cd831e1 [//media] Update comments in performance_metrics_overlay.cc
  • 0a35369 [Blink] Eliminate Non2DSnapshotProviderBitmap::recorder_ ivar
  • 9405179 [//media] Rename VideoFrame::IsStorageTypeMappable
  • b5ee49a [Blink] Eliminate Non2DSnapshotProviderBitmap::image_provider_impl_ ivar
  • 760638d [Blink] Add OWNERS to renderer/core/imagebitmap
  • 3be9142 [//media] Streamline VideoFrameResource::HasDirectCpuAccess()
  • 74594ba [Blink] Rename CanvasNon2DRPSI::GetBackingClientSharedImage()
  • 46f11a0 [Blink] Simplify CanvasResourceProviderSI::WritePixels()
  • e9224a8 [Blink] Simplify CRPSI tracking of content preservation on CopyOnWrite
  • 1d867c9 Roll Dawn from 1e7bfc3a35c4 to c20ab4b1a2ca (4 revisions)
  • 1094c52 Roll Chrome Win ARM64 PGO Profile
  • 00149ef Roll Skia from 792d10a48cb6 to 60d627b4b6af (3 revisions)
  • eb5dceb Roll Chrome Win64 PGO Profile
  • a1a52a0 IDB: SQLite - add/update some blob indexes
  • 39030a8 Roll Chrome Android Desktop x64 PGO Profile
  • 1d5e195 IWA: Only route primary page navigation to the default browser
  • 28e4a25 Preserve menu item icon colors during selection
  • d3b7c54 Roll WebView ARM64 Orderfile from BNUdL-4ntKqdRXRBG... to P4mEsmfWF5_V67uQN...
  • 801a7db Fix ImageButton icons invisible on hover in Windows high contrast mode
  • 5eaa9ba [SVG] Fix SVG path `d` attribute animation with command mismatches
  • 3d48983 [Clipboard][Windows] Use async ReadHTML with ThreadPool offloading
  • cef6b3f Roll Chrome Mac Arm PGO Profile
  • f0d135e Roll Skia from bf71153c9976 to 792d10a48cb6 (1 revision)
  • 3afa2d8 Roll optimization-guide from 6d793ba69ab4 to 510fda652d99
  • d03b4f4 Roll Updater chromium_linux64 from 2@1577002 to 2@1578005
  • 566efa4 Automated Commit: LKGM 16583.0.0-1075219 for chromeos.
  • 2c55b24 Roll Enterprise Companion chromium_linux64 from N33L_Paar3E14WaKP... to GXR-J0mUp4eZ160R8...
  • fa3f7f1 Roll Chromium Variations from Sq5ro2ereZI6ISJXO... to YPtkxSNkVVnjxt3a8...
  • d492cd6 Roll Perfetto Trace Processor Linux from 12399ea74cc9 to d08a6050dadb
  • cfffa3a Roll optimization-guide from f0884743c853 to 6d793ba69ab4
  • a594763 Roll clank/internal/apps from 403887499ca1 to 260fc3a444f7 (1 revision)
  • 51f60e5 Roll Perfetto Trace Processor Win from 159e2d6cce57 to 12399ea74cc9
  • cd7a56a [Realbox] Un-skip a couple of test cases
  • 04ceadd [views-ax] Ignore kRowCollapsed/kRowExpanded events
  • b719385 Roll Chrome Mac Arm PGO Profile
  • e7e070d Revert "Reland "Clean up LocationBar focus and UrlBar management.""
  • b8b4703 [Actor] Refactors Validate to return a ValidationResult struct
  • 69d5657 Roll Depot Tools from a81989a9550c to 6c6a6572eb0e (1 revision)
  • 5293966 Roll Perfetto Trace Processor Linux from 159e2d6cce57 to 12399ea74cc9
  • b777147 Enhance Test Coverage for Autotest Discovery and Targeting
  • 3429086 Add consistency checks for deserializing ml::AudioBuffer
  • 608d612 [aim-tools-models] Update default item labels in Omnibox context menu.
  • cad2568 Add features for using ABOVE_NORMAL_PRIORITY_CLASS on Windows
  • a36e117 Roll Perfetto from 12399ea74cc9 to d08a6050dadb (2 revisions)
  • ef5da97 Remove expectations for missing tests in webrtc-extensions and web-locks
  • 5b375a5 [Extensions] Start service worker if it has not fully started
  • 5a06580 Roll llvm-libc from 4f89a98f364a to 2f7df07563d9 (13 revisions)
  • 449d11f [contextual tasks] clear input after entering new thread
  • f4e7dc8 Roll ios_internal from b0b61af622fe to a1919d48a728
  • c1f3700 Updating trunk VERSION from 7681.0 to 7682.0
  • 2045745 Split ldflags in build/config/compiler:compiler into a :linker config
  • bc0c390 Roll Skia from 443203135326 to bf71153c9976 (2 revisions)
  • 8c854de [iOS][mvt-customization] Earl grey tests (2/2)
  • 715a413 [aim-tools-models] Reorder Omnibox context menu items in Tools section.
  • 3b67143 Add PaintImageForCurrentFrameWithInfo and apply nit on optional
  • 403d131 Fix device vendor query for D3D12VideoDecoder.
  • f092e7c Roll Chrome Win32 PGO Profile
  • c156439 [builtin ai] Start download on background immediately after registration
  • 0e7fd6b Roll Perfetto Trace Processor Linux from 4d0f63f0824b to 159e2d6cce57
  • 1879468 Roll Chrome Win ARM64 PGO Profile
  • 9d68161 [Read Anything] Fix not showing figures when image flag is disabled test.
  • 9c78a2f [Agent] clarify shared skills multiple usage
  • f08b6ce Roll Chrome Mac PGO Profile
  • 6785819 [ComboButton] Refactor callers of HasTabSearchToolbarButton
  • 5fcf127 Tidy some repeated if() blocks in mojo build.gn files
  • ad355a3 [Signin] Fully clean up extensions explicit signin feature flag
  • 0bfa4a3 Implement URL matcher classifier in content annotator.
  • e4e2872 Implement rule-based classifier in content annotator
  • 4698f62 [composebox-simplification] Simplify handling of hideEntrypointButton
  • 3c8eaae Roll BoringSSL from ea52bc3f7558 to 1c8b5caaa97e (1 revision)
  • 36c3273 [aim-tools-models] Hide "checked state" for model picker items (Omnibox)
  • 95ebb06 Roll WebRTC from dc0041e35ea3 to b3bdddbbc11c (3 revisions)
  • 649dad5 [CCT][ToolbarRefactor] Enable by default
  • ed7b4b0 [Extensions] Make ServiceWorkerHost swappable via a Factory
  • f936827 Relabel "More options" to "Settings" in Immersive Reading Mode.
  • ca4c920 Replace `std::unordered_map` with `absl::flat_hash_map`.
  • 78f0e1b Roll Chrome Mac Arm PGO Profile
  • b42b58a Roll Perfetto Trace Processor Win from 4d0f63f0824b to 159e2d6cce57
  • 742739f [Omnibox Next] Fix match truncation
  • feeda12 [composebox] Fix accessibility for entries in context menu
  • 6c7c9ad [Gardening] Disable IOSPromoBubbleBrowserTest.ShowReminder on Windows
  • 4e6de90 Roll Chrome Win64 PGO Profile
  • 27824e5 [views-ax] Fix kNativeAPIs check in WidgetAXManager
  • 45b79c9 [AF] Move RemoveInaccessibleProfileValues(~) into AddressFDI
  • 15552fc [views-ax] Unify AXVirtualView children storage with ViewAccessibility
  • 3cad7dd [AF] Move address_data_manager() into AddressFDI
  • 1e7060a [AF] Add AddressFormDataImporter skeleton and test infra
  • 642a82a [rust] Fix and document how `visibility` interacts with Clippy targets.
  • 175a0ca [E2E] Fix toolbar height glitch when opening tab from Omnibox
  • 512348f Roll src-internal from d8798c17bb35 to c2ba24a1bd1d (3 revisions)
  • 18f3892 [Gap Decorations]: Add test for gap suppression with spanning item
  • 834aae0 [Gardening] Add timeout expectation for geolocation wpt test
  • 3fec25a Roll Chrome Android ARM64 Orderfile from o78trZ-rUk-eQuerE... to CG2muiM3U-q1G9Rea...
  • ff4407d Use base::ScopedObservation in multidevice_setup
  • cecb7df Roll src/third_party/libaom/source/libaom/ 4018d3b63..37b2db433 (3 commits)
  • 7273d64 Use ScopedObservation in secure_channel pending requests.
  • 37d35a3 Implement animated-image pseudo class for CSS Image Animation
  • a2d3cf7 [DCSI] Add UMA metrics for CompoundImageBacking content sync.
  • a93287b Roll WebView ARM64 Orderfile from y5tNUIdSIbfVHoPDi... to BNUdL-4ntKqdRXRBG...
  • 4727659 Migrate android-bfcache-rel to Android 15.
  • f0663a6 Notify searchbox only for specific kinds of tab strip model change
  • fcf52d0 [crd host][linux] Finish implementation of LinuxWorkerProcessLauncherDelegate
  • 8ed3f0a Roll Chrome Android Desktop x64 PGO Profile
  • d241a19 Roll Dawn from 59301e0f4e9e to 1e7bfc3a35c4 (6 revisions)
  • 7234769 [iOS] Upload JavascriptError type reports instead of relying on DWC
  • 124696a Roll Perfetto from 159e2d6cce57 to 12399ea74cc9 (1 revision)
  • 343f5bd [crd host][linux] Launching the network process
  • fe82665 [TabListInterface] Return discarded WebContents
  • e4e04b0 Default enable ToolbarTabletResizeRefactor flag
  • eeb82d4 Roll Chrome Mac Arm PGO Profile
  • d2357d1 [Report-unsafe-site] Hook up app menu with stub WebUI 4/X
  • 00b7276 Roll ios_internal from bce5c9232d01 to b0b61af622fe
  • fff860b Fix some UNSAFE_TODOs in //sql
  • 9e14a85 Roll Depot Tools from 42786f6e46c2 to a81989a9550c (1 revision)
  • 493483b [Android] Re-enable ChromeCachedFlagsTest on Desktop Android
  • 44968c5 [Immersive Reading Mode]: Adjust audio controls pill border radius
  • 3d0fc77 Reland "Clean up LocationBar focus and UrlBar management."
  • 854324a Remove redundant HasSandboxedSiteInstance utility function
  • 70c7174 Roll Skia from 8e65bcbd892b to 443203135326 (3 revisions)
  • 4051b51 [contextual tasks] fix flakey tests
  • 21b5890 Fix bug where ordinary clip path + css mask have expanded clip rect
  • f4f4a9f [Vertical Tabs] Log vertical tabstrip resize metrics
  • 40be84d [aim-tools-models] Add "adaptive icons" support for model picker items.
  • 9517679 [Gardening] Disable ClosingTabWillNotCrash on macOS
  • 6d9a124 Move IsSandboxed to SecurityPrincipal interface
  • da25d0d Simplify GLibLogHandler()
  • 52e5b3b [contextual tasks] chrome-side updates for silk composebox resize
  • eb59016 [composebox] Set default model for Composebox if not specified.
  • 103fb04 Move ChannelLayoutConfig and mark it constexpr
  • e552065 Roll Perfetto Trace Processor Linux from 5fb9e804a7a2 to 4d0f63f0824b
  • ac1d534 [composebox] Focus input after context menu closes in Composebox.
  • 1758692 Add Top Chrome owner to SettingsOverridden histograms
  • 80432f7 Roll clank/internal/apps from 5b8984d16783 to 403887499ca1 (1 revision)
  • e73ede1 Set backdrop-filter bounds automatically in ui::Layer
  • 1bf115f Replace IS_DESKTOP_ANDROID with AndroidEnableBackgroundMediaCapturing
  • 0abd2db Replace IS_DESKTOP_ANDROID with AndroidEnableBackgroundMediaCapturing
  • b477cf3 Add test to verify Omnibox heuristics aren't run during automated tests.
  • cd55cb2 Revert "Use checked math in AudioTimestampHelper"
  • 392f708 [Contextual tasks] Preserve full URL for aim page
  • df0e0fe Remove is_desktop_android from AndroidManifest
  • 45ae469 add TODOs for b:483455896
  • 2aac08f Extend Android.DragDrop.Image.OpenFileTime.*
  • e35475d ukm: Remove force checkpointing in UKM database
  • d6d907d [tips] Add the UI and testing logic for the pw autofill tip
  • 1bf29b4 Add a test for active tab state to GlicActivePinnedFocusedTabManager.
  • df35cb4 Remove title direction parameter from LocalFrameHost.UpdateTitle() IPC
  • 3398a86 Fix UNSAFE_TODO in bluetooth_socket_win.cc.
  • e510ce7 [Realbox]: Split searchbox_test.ts into separate suites
  • df15873 Revert "[Composebox] Add tests for dynamic input placeholder `hint_text`"
  • c812edb Roll BoringSSL from 73cd946964c5 to ea52bc3f7558 (1 revision)
  • 33b1562 Clean up glic theme use on android
  • 28ffa03 [NTP-Real_Box]: Close the menu and stop
  • 2265287 Enable StrictHighRankProcessLRU by default.
  • 963edc9 Replace AccessPoint::kUnknown by AccessPoint::kStartPage in unittests
  • 7399d8b [Clarity] Add histogram for number of active Suggestion Chips
  • f2bf4b3 [AIM] Bring back updateUrl on scheme change, different dedupe.
  • 1be1ff5 Automated Commit: LKGM 16583.0.0-1075213 for chromeos.
  • 826d70e Explicitly allow reentrancy for TextInputManager::Observer
  • fb588a7 Roll Chrome Mac Arm PGO Profile
  • ba59dc7 [ObserverList] Explicitly allow reentrancy for MessageCenterObserver
  • 56617f3 Roll ANGLE from c398ae4ce1c6 to ae81efc63a03 (2 revisions)
  • 1af8430 [contextual tasks] fix misalignment of header
  • e3e3162 Extensions: Protocols: Remove redundant early exit that existed earlier
  • 867b4e4 [Frameworks roll] Roll to 868254200 piper revision
  • 583ece2 Revert "Use the OnDeviceTranslationInstaller::Observer in ServiceController"
  • 73f1a0e [DCSI]: UMA metrics for CompoundImageBacking's dynamic behaviour.
  • 7f82cfc Roll src-internal from 08a94a94fac6 to d8798c17bb35 (1 revision)
  • b2b51b8 [Sidepanel Animation] Update ShowFrom to optimize for resizes
  • 367d35e [Read aloud] Remove remaining usages of read aloud flag in reading mode
  • e8e10bf Remove os_crypt sync dependency from components/sync
  • 5fbe4d6 [Vertical Tabs] STG Everything Menu Vertical Button Click Metric
  • d9e6809 [Realbox Next] Fix showing context menu description in compact mode
  • 64691e8 [Extensions] Rename ExtensionBrowserNamespaceAlternative in fieldtrial.
← Back to all summaries