2017-04-27 03:59:52 +02:00
|
|
|
# Patch configuration file. See the README.txt file in the patch directory for
|
|
|
|
# information on how this configuration is used.
|
|
|
|
#
|
|
|
|
# Each dictionary entry in the "patches" map represents a single patch file.
|
|
|
|
# Supported key/value pairs are as follows:
|
|
|
|
#
|
|
|
|
# - 'name' Required. The name of the patch file without the .patch
|
|
|
|
# extension that will be read from the patches subdirectory.
|
|
|
|
# - 'path' Optional. The repository root for the patch file. Defaults to
|
|
|
|
# the Chromium "src" root. All patch file contents must be
|
|
|
|
# relative to this repository root.
|
|
|
|
# - 'condition' Optional. The patch file will only be applied if an environment
|
|
|
|
# variable with this name exists.
|
|
|
|
#
|
|
|
|
# Each entry should also include a comment linking to the code review or bug
|
|
|
|
# report that the patch relates to.
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
{
|
2016-06-23 19:42:00 +02:00
|
|
|
# Necessary for grit integration.
|
2012-04-03 03:34:16 +02:00
|
|
|
'name': 'gritsettings',
|
|
|
|
},
|
2016-06-23 19:42:00 +02:00
|
|
|
{
|
|
|
|
# Necessary for GN integration.
|
|
|
|
#
|
2020-07-06 20:14:57 +02:00
|
|
|
# Exclude the //chrome:packed_resources_locales target from the CEF build
|
|
|
|
# due to conflicting outputs with the //cef:repack_locales_pack target.
|
2016-06-23 19:42:00 +02:00
|
|
|
#
|
2016-08-05 12:24:27 +02:00
|
|
|
# Write environment.* files with the correct SDK version on Windows.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=634788
|
2018-05-21 14:54:08 +02:00
|
|
|
#
|
|
|
|
# Windows: Add cc_wrapper support for sccache builds.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2432
|
2023-03-02 18:12:02 +01:00
|
|
|
#
|
|
|
|
# Windows: Add GN arg windows_sdk_version.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1420723
|
2016-06-23 19:42:00 +02:00
|
|
|
'name': 'gn_config',
|
|
|
|
},
|
2020-03-04 21:00:17 +01:00
|
|
|
{
|
|
|
|
# Patches that must be applied after `gclient sync --nohooks` and before
|
|
|
|
# `gclient runhooks`.
|
|
|
|
#
|
|
|
|
# Support custom VS toolchain on Windows.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=623342
|
|
|
|
'name': 'runhooks',
|
|
|
|
},
|
2017-07-06 22:39:37 +02:00
|
|
|
{
|
|
|
|
# Support component builds (GN is_component_build=true).
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1617
|
2019-02-21 01:42:36 +01:00
|
|
|
'name': 'component_build',
|
2017-07-06 22:39:37 +02:00
|
|
|
},
|
2013-02-23 02:46:13 +01:00
|
|
|
{
|
2016-06-21 00:59:23 +02:00
|
|
|
# Revert change on Windows that removes MessageLoop::os_modal_loop().
|
|
|
|
# https://codereview.chromium.org/1992243003
|
2018-07-13 21:29:20 +02:00
|
|
|
#
|
|
|
|
# Revert change that removes MessageLoopForUI constructor.
|
|
|
|
# https://chromium-review.googlesource.com/751322
|
2018-09-06 17:32:01 +02:00
|
|
|
#
|
|
|
|
# Add MessageLoop::ReleasePump to fix crashes during shutdown with multi-
|
|
|
|
# threaded message loop mode.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2362
|
2018-07-13 21:29:20 +02:00
|
|
|
'name': 'message_loop',
|
2013-02-23 02:46:13 +01:00
|
|
|
},
|
2018-11-30 23:21:07 +01:00
|
|
|
{
|
|
|
|
# Add builtin trace event categories for CEF.
|
|
|
|
# Required due to https://crrev.com/331266377d.
|
|
|
|
'name': 'trace_event',
|
|
|
|
},
|
2014-07-01 00:30:29 +02:00
|
|
|
{
|
2021-07-23 18:40:13 +02:00
|
|
|
# Enable popups in offscreen rendering on MacOS.
|
|
|
|
'name': 'webkit_popups',
|
2014-07-01 00:30:29 +02:00
|
|
|
},
|
2013-12-07 02:55:22 +01:00
|
|
|
{
|
|
|
|
# Allow specification of a parent window handle for Widget creation.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/180
|
2016-01-19 21:09:01 +01:00
|
|
|
#
|
|
|
|
# Fix multiple handling of WM_MOUSEWHEEL messages on Windows.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1481
|
2016-01-19 21:09:01 +01:00
|
|
|
#
|
2017-02-10 23:44:11 +01:00
|
|
|
# Support custom RenderWidgetHostViewOSR for BrowserPluginGuest.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1565
|
2017-02-10 23:44:11 +01:00
|
|
|
#
|
2015-10-26 19:23:08 +01:00
|
|
|
# Fix focus/activation handling and keyboard input on Windows and Linux.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1677
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/1679
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/1700
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3316
|
2016-01-19 21:09:01 +01:00
|
|
|
#
|
|
|
|
# Support creation of captionless windows with resizable borders.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1749
|
2017-06-30 22:30:30 +02:00
|
|
|
#
|
2017-08-04 00:55:19 +02:00
|
|
|
# Windows: When |params.remove_standard_frame| is true remove WS_CAPTION
|
|
|
|
# and WS_SYSMENU styles. Otherwise Windows 10 enforces a minimum window
|
|
|
|
# width of ~116 units that cannot be overridden.
|
|
|
|
# Linux: Allow creation of activatable menu windows.
|
2017-08-25 23:41:30 +02:00
|
|
|
# Linux: Support CefWindowDelegate::CanResize restriction by specifying
|
|
|
|
# min/max Widget size values.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1947
|
2017-08-04 00:55:19 +02:00
|
|
|
#
|
2017-06-30 22:30:30 +02:00
|
|
|
# Support configuration of RWHVGuest device scale factor.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2078
|
2020-10-27 19:43:10 +01:00
|
|
|
#
|
|
|
|
# Windows: Fix focus assignment when clicking WebView with external parent.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3031
|
2021-09-07 16:04:55 +02:00
|
|
|
#
|
|
|
|
# Fix minimize & fullscreen behavior on initial Widget creation.
|
2021-11-10 22:57:31 +01:00
|
|
|
#
|
|
|
|
# Allow override of RWHVBase::GetNewScreenInfosForUpdate() which is now
|
|
|
|
# required due to https://crrev.com/96938eb36e in order to use
|
|
|
|
# RWHVBase::UpdateScreenInfo() with OSR.
|
2022-10-25 01:47:04 +02:00
|
|
|
#
|
|
|
|
# Windows: Fix incorrect DIPToScreenRect usage in DesktopWindowTreeHostWin
|
|
|
|
# when |has_external_parent_| is true.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3359
|
2023-11-14 18:16:43 +01:00
|
|
|
#
|
|
|
|
# chrome: Allow override of Widget::Activate() to support activation of
|
|
|
|
# DevTools windows with external parent.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3282
|
2024-01-29 19:38:25 +01:00
|
|
|
#
|
|
|
|
# mac: Add support for ui::SHOW_STATE_HIDDEN.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3630
|
2024-02-05 22:24:27 +01:00
|
|
|
#
|
|
|
|
# win: Delay enablement of native occlusion tracking until the initially-
|
|
|
|
# minimized window is restored for the first time.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3638
|
2020-10-27 19:43:10 +01:00
|
|
|
'name': 'views_widget',
|
2015-10-14 18:46:42 +02:00
|
|
|
},
|
2014-04-15 21:02:30 +02:00
|
|
|
{
|
2014-07-01 00:30:29 +02:00
|
|
|
# Allow specification of a custom WebContentsView.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1257
|
2017-02-10 23:44:11 +01:00
|
|
|
#
|
|
|
|
# Support custom RenderWidgetHostViewOSR for BrowserPluginGuest.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1565
|
2020-02-10 18:10:17 +01:00
|
|
|
#
|
|
|
|
# Add WebContentsObserver::OnFrameFocused.
|
2022-04-14 01:35:46 +02:00
|
|
|
#
|
|
|
|
# Add WebContentsObserver::RenderWidgetCreated.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3308
|
2017-02-10 23:44:11 +01:00
|
|
|
'name': 'web_contents_1257_1565',
|
2014-04-15 21:02:30 +02:00
|
|
|
},
|
2015-07-16 23:40:01 +02:00
|
|
|
{
|
2024-04-24 23:23:47 +02:00
|
|
|
# Support custom RenderWidgetHostViewOSR for MimeHandlerViewGuest.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1565
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/2727
|
2020-01-23 22:58:01 +01:00
|
|
|
'name': 'mime_handler_view_guest_1565_2727',
|
2015-07-16 23:40:01 +02:00
|
|
|
},
|
2014-07-09 00:37:06 +02:00
|
|
|
{
|
|
|
|
# Fix drag&drop of combined text and URL data on Linux/Aura.
|
|
|
|
# https://codereview.chromium.org/208313009
|
|
|
|
'name': 'ui_dragdrop_355390',
|
|
|
|
},
|
2015-07-29 18:04:19 +02:00
|
|
|
{
|
2020-10-08 21:54:42 +02:00
|
|
|
# Split content::ContentMain into the separate steps required by CEF.
|
2017-04-20 21:28:17 +02:00
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=654986#c17
|
|
|
|
#
|
2015-07-29 18:04:19 +02:00
|
|
|
# Remove DCHECK on Linux when initialized CEF from a non-main thread.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1639
|
2020-10-08 21:54:42 +02:00
|
|
|
#
|
|
|
|
# Fix DiscardableSharedMemoryManager crash on shutdown with multi-threaded
|
|
|
|
# message loop.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2798
|
2020-10-08 21:54:42 +02:00
|
|
|
'name': 'content_main_654986',
|
2015-07-29 18:04:19 +02:00
|
|
|
},
|
2016-01-19 21:09:01 +01:00
|
|
|
{
|
|
|
|
# Modify views::View to extend SupportsUserData.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1749
|
2017-04-20 21:28:17 +02:00
|
|
|
#
|
2022-06-17 15:28:55 +02:00
|
|
|
# Don't add TestDesktopScreenOzone dependency on Linux.
|
|
|
|
# Reverts ui_controls_factory_desktop_aurax11.cc (now
|
|
|
|
# ui_controls_factory_desktop_aura_ozone.cc) changes from
|
2017-04-20 21:28:17 +02:00
|
|
|
# https://codereview.chromium.org/2327623002
|
|
|
|
#
|
|
|
|
# Add InkDropHostView::ink_drop_mode method.
|
|
|
|
# Reverts ink_drop_host_view.h changes from
|
|
|
|
# https://codereview.chromium.org/2723843002
|
|
|
|
#
|
2017-05-31 17:33:30 +02:00
|
|
|
# Add LabelButton::SetFontList method.
|
|
|
|
# Reverts label_button.[cc|h] changes from
|
|
|
|
# https://codereview.chromium.org/2801583002
|
|
|
|
#
|
|
|
|
# Expose callbacks for mouse/keyboard events that trigger menu switching.
|
|
|
|
# Add accelerator display support to Label.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2102
|
2022-05-13 13:38:41 +02:00
|
|
|
#
|
|
|
|
# Route |parent_widget| to MenuHost for OSR context menu Widget creation.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3330
|
2022-05-13 13:38:41 +02:00
|
|
|
'name': 'views_1749_2102_3330',
|
2016-01-19 21:09:01 +01:00
|
|
|
},
|
2017-12-07 22:44:24 +01:00
|
|
|
{
|
|
|
|
# Support CEF changes in chrome/browser.
|
|
|
|
'name': 'chrome_browser',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# Support CEF changes in chrome/renderer.
|
|
|
|
'name': 'chrome_renderer',
|
|
|
|
},
|
2024-04-17 18:01:26 +02:00
|
|
|
{
|
|
|
|
# Add per-RenderFrame configuration of print preview support.
|
|
|
|
'name': 'chrome_renderer_print_preview',
|
|
|
|
},
|
2020-06-25 04:34:12 +02:00
|
|
|
{
|
|
|
|
# Changes to support the Chrome runtime in CEF.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2024-03-29 17:48:33 +01:00
|
|
|
#
|
|
|
|
# Apply dynamic light/dark theme changes to web content.
|
|
|
|
# https://issues.chromium.org/issues/332328864#comment3
|
2024-05-03 18:50:23 +02:00
|
|
|
#
|
|
|
|
# Pass ui::ResourceBundle::Delegate to InitSharedInstanceWithLocale.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3685
|
2020-06-25 04:34:12 +02:00
|
|
|
'name': 'chrome_runtime',
|
|
|
|
},
|
2021-02-18 02:58:25 +01:00
|
|
|
{
|
|
|
|
# Changes to support Chrome runtime integration with CEF Views.
|
|
|
|
# See related documentation in
|
|
|
|
# libcef/browser/chrome/views/chrome_browser_frame.h.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2021-02-18 02:58:25 +01:00
|
|
|
'name': 'chrome_runtime_views',
|
|
|
|
},
|
2020-09-18 00:24:08 +02:00
|
|
|
{
|
|
|
|
# Changes to support the Chrome runtime in CEF.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2022-04-15 21:55:23 +02:00
|
|
|
#
|
|
|
|
# Fix fatal error: 'components/printing/common/print.mojom.h' file not found
|
|
|
|
# From chrome/browser/ui/browser_commands.cc via
|
|
|
|
# chrome/browser/printing/print_view_manager_common.h
|
2024-06-14 19:01:45 +02:00
|
|
|
#
|
|
|
|
# Linux: Fix duplicate symbol error for window_frame_util.cc
|
|
|
|
# https://issuetracker.google.com/issues/343037853#comment3
|
2024-07-11 20:13:40 +02:00
|
|
|
#
|
|
|
|
# Avoid duplicate window from DevTools when CEF handles the open via
|
|
|
|
# OnOpenURLFromTab.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3735
|
2020-09-18 00:24:08 +02:00
|
|
|
'name': 'chrome_browser_browser',
|
|
|
|
},
|
2018-02-02 23:43:33 +01:00
|
|
|
{
|
2020-09-25 03:40:47 +02:00
|
|
|
# Remove NOTREACHED() in GetContentSettingFromRulesImpl triggered by
|
|
|
|
# NavigationTest.LoadCrossOriginLoadURL with the chrome runtime.
|
2018-02-02 23:43:33 +01:00
|
|
|
'name': 'chrome_browser_content_settings',
|
|
|
|
},
|
2021-04-09 01:15:51 +02:00
|
|
|
{
|
|
|
|
# chrome: Support custom handling of context menus.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2021-04-09 01:15:51 +02:00
|
|
|
'name': 'chrome_browser_context_menus',
|
|
|
|
},
|
2024-05-20 22:21:37 +02:00
|
|
|
{
|
|
|
|
# Support DevTools windows with Chrome runtime Alloy style OSR.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3681
|
|
|
|
'name': 'chrome_browser_devtools_osr',
|
|
|
|
},
|
2022-04-15 21:55:23 +02:00
|
|
|
{
|
2022-06-02 11:49:50 +02:00
|
|
|
# Support use of chrome native dialogs with CEF runtimes.
|
2022-04-15 21:55:23 +02:00
|
|
|
# - Adds support for FileSelectHelper and SelectFileDialog interception.
|
|
|
|
# - Adds additional type filters for dialogs created via FileSelectHelper.
|
|
|
|
# - Adds support for chaining PrintingContextLinux callbacks.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3314
|
2022-06-02 11:49:50 +02:00
|
|
|
'name': 'chrome_browser_dialogs_native',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# Support use of chrome Widget dialogs with CEF runtimes.
|
|
|
|
# - Add gfx::AcceleratedWidget dialog parent argument to
|
|
|
|
# DialogDelegate::CreateDialogWidget for CEF windowless rendering.
|
|
|
|
# - Support nullptr gfx::NativeWindow/gfx::NativeView dialog parent for CEF
|
|
|
|
# windowless rendering.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3316
|
2023-06-14 10:20:02 +02:00
|
|
|
#
|
|
|
|
# Fix NativeWebContentsModalDialogManagerViews::HostChanged to not reparent
|
|
|
|
# between different root windows.
|
2024-01-17 20:33:52 +01:00
|
|
|
#
|
|
|
|
# Fix incorrect movement of parent window when showing modal dialog.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3629
|
|
|
|
# Partially reverts
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/5006355
|
2022-06-02 11:49:50 +02:00
|
|
|
'name': 'chrome_browser_dialogs_widget',
|
2022-04-15 21:55:23 +02:00
|
|
|
},
|
2024-04-26 21:21:33 +02:00
|
|
|
{
|
|
|
|
# chrome: Support custom DownloadManagerDelegate handling.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3681
|
|
|
|
'name': 'chrome_browser_download',
|
|
|
|
},
|
2021-11-17 01:17:39 +01:00
|
|
|
{
|
|
|
|
# chrome: Support override of ChromeMimeHandlerViewGuestDelegate.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2024-04-27 03:21:18 +02:00
|
|
|
#
|
|
|
|
# chrome: Add minimal support for tabs API with Alloy style browsers.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3681
|
2021-11-17 01:17:39 +01:00
|
|
|
'name': 'chrome_browser_extensions',
|
|
|
|
},
|
2023-04-18 23:20:44 +02:00
|
|
|
{
|
|
|
|
# chrome: Expose static access to BrowserFrameMac methods.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3462
|
|
|
|
'name': 'chrome_browser_frame_mac',
|
|
|
|
},
|
2022-07-07 12:01:24 +02:00
|
|
|
{
|
|
|
|
# Support override of CreatePermissionPrompt.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3352
|
2022-07-07 12:01:24 +02:00
|
|
|
'name': 'chrome_browser_permission_prompt',
|
|
|
|
},
|
2023-10-11 01:26:37 +02:00
|
|
|
{
|
|
|
|
# Support configuration of Chrome policy management.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3581
|
|
|
|
'name': 'chrome_browser_policy',
|
|
|
|
},
|
2024-04-17 18:01:26 +02:00
|
|
|
{
|
|
|
|
# Support OOP printing with Chrome runtime Alloy style OSR.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3681
|
|
|
|
'name': 'chrome_browser_printing_oop_osr',
|
|
|
|
},
|
2023-11-29 02:33:44 +01:00
|
|
|
{
|
|
|
|
# Support override of Chrome process singleton behavior.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3609
|
|
|
|
'name': 'chrome_browser_startup',
|
|
|
|
},
|
2022-05-13 11:03:50 +02:00
|
|
|
{
|
2021-04-07 00:09:45 +02:00
|
|
|
# chrome: Support CEF incognito Profiles that allow Browser creation.
|
2021-04-09 20:34:45 +02:00
|
|
|
# chrome: Allow CEF to delay OffTheRecordProfileImpl initialization.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2017-12-07 22:44:24 +01:00
|
|
|
'name': 'chrome_browser_profiles',
|
|
|
|
},
|
2021-04-11 21:48:07 +02:00
|
|
|
{
|
|
|
|
# chrome: Fix assertion when clicking the incognito profile button.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2021-04-11 21:48:07 +02:00
|
|
|
'name': 'chrome_browser_profile_menu',
|
|
|
|
},
|
2024-05-02 21:36:20 +02:00
|
|
|
{
|
|
|
|
# chrome: Enable logging by default for Release builds.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_common_logging',
|
|
|
|
},
|
2019-05-02 20:06:48 +02:00
|
|
|
{
|
|
|
|
# Support override of the User-Agent product component when NetworkService
|
|
|
|
# is enabled.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2622
|
2021-03-04 23:36:57 +01:00
|
|
|
'name': 'embedder_product_override',
|
2019-05-02 20:06:48 +02:00
|
|
|
},
|
2019-10-14 17:29:55 +02:00
|
|
|
{
|
|
|
|
# Fix Jumbo/component build dependency issue.
|
|
|
|
'name': 'chrome_browser_safe_browsing',
|
|
|
|
},
|
2024-07-03 19:07:46 +02:00
|
|
|
{
|
|
|
|
# Support loading of chrome://license via WebUI.
|
|
|
|
'name': 'chrome_browser_webui_license',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# Support customization of chrome://version WebUI.
|
|
|
|
'name': 'chrome_browser_webui_version',
|
|
|
|
},
|
2017-12-07 22:44:24 +01:00
|
|
|
{
|
2020-10-08 21:54:42 +02:00
|
|
|
# Add BrowserPluginGuest::owner_web_contents() method.
|
2017-12-07 22:44:24 +01:00
|
|
|
'name': 'chrome_plugins',
|
2016-07-18 23:22:22 +02:00
|
|
|
},
|
2024-03-12 20:47:10 +01:00
|
|
|
{
|
|
|
|
# Expose sad tab error strings.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3661
|
|
|
|
'name': 'chrome_sad_tab_error',
|
|
|
|
},
|
2016-12-12 11:05:29 +01:00
|
|
|
{
|
|
|
|
# Implement breakpad/crashpad customization required by CEF.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1995
|
2016-12-12 11:05:29 +01:00
|
|
|
'name': 'crashpad_1995',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# Support customization of crash report pruning limits.
|
|
|
|
# https://bugs.chromium.org/p/crashpad/issues/detail?id=142
|
|
|
|
#
|
|
|
|
# Implement better rate-limiting/retry logic.
|
|
|
|
# https://bugs.chromium.org/p/crashpad/issues/detail?id=23
|
|
|
|
'name': 'crashpad_tp_1995',
|
|
|
|
},
|
2017-01-13 22:35:26 +01:00
|
|
|
{
|
|
|
|
# Fix white flash during browser creation.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1984
|
2017-09-05 17:41:34 +02:00
|
|
|
#
|
|
|
|
# Windows: Fix crash during window creation.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=761389
|
2017-01-13 22:35:26 +01:00
|
|
|
'name': 'rwh_background_color_1984',
|
|
|
|
},
|
2017-01-19 00:37:56 +01:00
|
|
|
{
|
2017-04-20 21:28:17 +02:00
|
|
|
# Expose RFH via NavigationHandle for retrieval in DidFinishNavigation on
|
|
|
|
# network error.
|
|
|
|
# https://groups.google.com/a/chromium.org/d/msg/chromium-dev/6iAQPx_hwh8/gaTR5f1GAQAJ
|
2017-05-31 17:33:30 +02:00
|
|
|
#
|
|
|
|
# Add ContentRendererClient::RenderThreadConnected to fix sync IPC issue.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=728195
|
|
|
|
#
|
2017-12-07 22:44:24 +01:00
|
|
|
# Add ContentRendererClient::DevToolsAgent[Attached|Detached] methods.
|
2019-04-24 04:50:25 +02:00
|
|
|
#
|
|
|
|
# Always return the Chrome product value for DevTools.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2300
|
2019-04-24 04:50:25 +02:00
|
|
|
#
|
|
|
|
# Add new ContentBrowserClient::HandleExternalProtocol variant for use with
|
|
|
|
# the NetworkService.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2622
|
2021-10-19 00:17:16 +02:00
|
|
|
#
|
|
|
|
# Change ContentBrowserClient::ConfigureNetworkContextParams return type to
|
|
|
|
# bool to support cancellation of NetworkContext creation during shutdown.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2985
|
2018-02-13 00:01:43 +01:00
|
|
|
'name': 'content_2015',
|
2017-01-19 00:37:56 +01:00
|
|
|
},
|
|
|
|
{
|
2018-02-15 01:12:09 +01:00
|
|
|
# Add ContentRendererClient::DevToolsAgent[Attached|Detached] methods.
|
2017-04-20 21:28:17 +02:00
|
|
|
'name': 'webkit_plugin_info_2015',
|
2017-01-19 00:37:56 +01:00
|
|
|
},
|
2017-06-15 17:27:56 +02:00
|
|
|
{
|
|
|
|
# Linux: Attach routing IDs to PrintingContext.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2196
|
2017-06-15 17:27:56 +02:00
|
|
|
'name': 'printing_context_2196',
|
|
|
|
},
|
2017-06-24 00:37:49 +02:00
|
|
|
{
|
2024-03-27 19:39:07 +01:00
|
|
|
# Disable thin archives with cef_sandbox builds.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3674
|
2019-01-17 10:56:52 +01:00
|
|
|
'name': 'build',
|
2017-07-27 01:19:27 +02:00
|
|
|
},
|
2018-11-06 19:51:02 +01:00
|
|
|
{
|
|
|
|
# macOS: Make the NativeEventProcessor protocol dependency optional.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2539
|
2018-11-06 19:51:02 +01:00
|
|
|
'name': 'mac_event_observer_2539',
|
|
|
|
},
|
2018-11-06 23:27:26 +01:00
|
|
|
{
|
|
|
|
# macOS: Fix crash when scrolling in OSR mode.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2540
|
2018-11-06 23:27:26 +01:00
|
|
|
'name': 'mac_fling_scheduler_2540',
|
|
|
|
},
|
2018-09-20 15:00:14 +02:00
|
|
|
{
|
|
|
|
# Allow ResourceBundle creation/destruction on the main thread and usage on
|
|
|
|
# the UI thread.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2398
|
2018-09-20 15:00:14 +02:00
|
|
|
'name': 'resource_bundle_2512',
|
|
|
|
},
|
2018-09-28 16:27:09 +02:00
|
|
|
{
|
|
|
|
# macOS: Fix crash when showing a select popup with CefDoMessageLoopWork.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2495
|
2018-09-28 16:27:09 +02:00
|
|
|
'name': 'message_pump_mac_2495',
|
2019-03-13 22:27:37 +01:00
|
|
|
},
|
2019-03-20 17:48:05 +01:00
|
|
|
{
|
|
|
|
# Linux: Load binaries from DIR_ASSETS.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1936
|
2019-03-20 17:48:05 +01:00
|
|
|
'name': 'linux_assets_path_1936',
|
|
|
|
},
|
2021-08-24 23:33:27 +02:00
|
|
|
{
|
|
|
|
# Linux: Fix ld.lld: error: relocation R_X86_64_TPOFF32 against
|
|
|
|
# blink::g_thread_specific_ cannot be used with -shared
|
|
|
|
# https://groups.google.com/a/chromium.org/g/blink-dev/c/wx0gZFCY3p4/m/iLBHRi0ZAQAJ
|
|
|
|
'name': 'linux_blink_thread_local',
|
|
|
|
},
|
2021-08-09 23:18:43 +02:00
|
|
|
{
|
|
|
|
# Linux: Avoid usage of chrome::FILE_COMPONENT_WIDEVINE_CDM_HINT.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3149
|
2021-08-09 23:18:43 +02:00
|
|
|
'name': 'linux_chrome_widevine_3149',
|
|
|
|
},
|
2019-04-24 04:50:25 +02:00
|
|
|
{
|
|
|
|
# Enhancements to NetworkService:
|
|
|
|
# - Add support for calling CookieMonster::SetCookieableSchemes.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2622
|
2019-04-24 04:50:25 +02:00
|
|
|
'name': 'services_network_2622',
|
|
|
|
},
|
2019-07-12 22:44:43 +02:00
|
|
|
{
|
2021-10-19 00:17:16 +02:00
|
|
|
# Change ContentBrowserClient::ConfigureNetworkContextParams return type to
|
|
|
|
# bool to support cancellation of NetworkContext creation during shutdown.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2985
|
2020-03-04 01:29:39 +01:00
|
|
|
'name': 'services_network_2718',
|
2019-07-12 22:44:43 +02:00
|
|
|
},
|
2020-10-08 21:54:42 +02:00
|
|
|
{
|
|
|
|
# Restore the net::LOAD_DO_NOT_SEND_COOKIES flag to support disabling of
|
|
|
|
# cookie load/save on a per-request basis.
|
|
|
|
# Partially reverts the changes from
|
|
|
|
# https://chromium.googlesource.com/chromium/src/+/25eaa43022
|
|
|
|
'name': 'net_cookie_flags',
|
|
|
|
},
|
2019-03-27 19:39:35 +01:00
|
|
|
{
|
2019-04-16 16:38:48 +02:00
|
|
|
# Restore WebView::SetResizeBackgroundColor() that was removed.
|
|
|
|
# http://crrev.com/3955c9f9eb
|
|
|
|
'name': 'set_resize_background_color',
|
|
|
|
},
|
2019-07-16 19:59:21 +02:00
|
|
|
{
|
|
|
|
# Avoid a shutdown crash with multi-threaded message loop caused by
|
|
|
|
# |g_browser_task_executor->browser_ui_thread_scheduler_| being null when
|
|
|
|
# BrowserTaskExecutor::Shutdown is called via CefContext::FinalizeShutdown.
|
|
|
|
# This crash was introduced by https://crrev.com/5f6212babf.
|
|
|
|
'name': 'browser_scheduler',
|
|
|
|
},
|
2019-07-16 22:09:04 +02:00
|
|
|
{
|
|
|
|
# Add support for OSR rendering with Viz.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2575
|
2019-07-16 22:09:04 +02:00
|
|
|
'name': 'viz_osr_2575',
|
2019-07-17 20:47:27 +02:00
|
|
|
},
|
2021-09-27 12:36:08 +02:00
|
|
|
{
|
|
|
|
# Store command-line switch names as lower-case ASCII on all platforms.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/1872
|
2021-09-27 12:36:08 +02:00
|
|
|
'name': 'base_command_line_1872',
|
|
|
|
},
|
2019-10-01 13:30:07 +02:00
|
|
|
{
|
2022-09-26 21:30:45 +02:00
|
|
|
# Remove cef_sandbox dependency on boringssl functions.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2743
|
2019-11-06 22:29:34 +01:00
|
|
|
#
|
2020-10-08 21:54:42 +02:00
|
|
|
# Enable the VS 2015 Update 2 fix when building with the MSVC standard
|
|
|
|
# library.
|
2022-08-23 03:37:40 +02:00
|
|
|
#
|
|
|
|
# Avoid usage of std::atomic_flag::test() added in C++20.
|
|
|
|
# https://github.com/llvm/llvm-project/issues/57364
|
2022-11-15 18:50:53 +01:00
|
|
|
#
|
|
|
|
# Avoid usage of PartitionAlloc assertions (PA_BASE_CHECK) in raw_ptr.h.
|
2020-10-08 21:54:42 +02:00
|
|
|
'name': 'base_sandbox_2743',
|
2019-11-26 20:04:19 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Add RenderWidgetHostImpl::SetCompositorForFlingScheduler to fix fling
|
|
|
|
# scrolling in OSR mode.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2745
|
2019-11-26 20:04:19 +01:00
|
|
|
'name': 'osr_fling_2745',
|
|
|
|
},
|
2020-01-07 14:07:03 +01:00
|
|
|
{
|
2020-02-19 02:18:35 +01:00
|
|
|
# Windows: Build targets as C++17 to avoid export of std::is_integral
|
|
|
|
# templates in cef_sandbox that should be inlined.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2819
|
2020-02-19 02:18:35 +01:00
|
|
|
'name': 'win_cpp17_msvc_sandbox_2819',
|
2020-02-10 18:10:17 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# libxml access is now limited to targets audited by the Security Team.
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/1884750
|
|
|
|
'name': 'libxml_visibility',
|
|
|
|
},
|
2020-04-24 21:41:07 +02:00
|
|
|
{
|
|
|
|
# Fix unbound AssociatedRemote error in SetBackgroundOpaque.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1070713
|
|
|
|
'name': 'renderer_host_1070713',
|
2020-05-12 00:12:20 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Allow the loading of non-standard non-local WebSafe custom schemes in
|
|
|
|
# iframes.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1081397#c9
|
2021-04-12 19:55:48 +02:00
|
|
|
#
|
|
|
|
# Fix crash in NavigationRequest::GetOriginForURLLoaderFactory() when
|
|
|
|
# navigating to an unregistered (e.g. non-standard) scheme.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3105
|
2020-05-12 00:12:20 +02:00
|
|
|
'name': 'browser_security_policy_1081397',
|
2020-05-22 20:56:02 +02:00
|
|
|
},
|
2020-06-27 22:43:23 +02:00
|
|
|
{
|
|
|
|
# Fix build errors with enable_background_mode=false.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1100085
|
2021-02-23 21:08:33 +01:00
|
|
|
#
|
|
|
|
# Changes to support the Chrome runtime in CEF (app_controller_mac.mm).
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/2969
|
2020-06-27 22:43:23 +02:00
|
|
|
'name': 'chrome_browser_background_mode_1100085',
|
2020-08-29 00:39:23 +02:00
|
|
|
},
|
2020-11-18 21:52:37 +01:00
|
|
|
{
|
|
|
|
# Linux: Fix ATK assertion error when generating ARM build config.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1123214
|
|
|
|
'name': 'linux_atk_1123214',
|
2021-09-20 11:06:23 +02:00
|
|
|
},
|
2021-11-08 20:18:25 +01:00
|
|
|
{
|
|
|
|
# Windows: Fix crash when |sandbox_info| parameter is nullptr.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3210
|
2021-11-08 20:18:25 +01:00
|
|
|
'name': 'win_sandbox_3210',
|
2022-01-28 18:13:26 +01:00
|
|
|
},
|
2023-05-30 10:55:32 +02:00
|
|
|
{
|
|
|
|
# Windows: Fix MSVC compile error with sandbox target.
|
|
|
|
# error: static assertion failed due to requirement
|
|
|
|
# '!is_const_v<const unsigned char>': The C++ Standard forbids
|
|
|
|
# containers of const elements because allocator<const T> is ill-formed.
|
|
|
|
'name': 'win_sandbox_policy',
|
|
|
|
},
|
2022-04-08 22:48:56 +02:00
|
|
|
{
|
|
|
|
# Windows: Always use the root window as the owner for shell dialogs.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3294
|
2022-04-08 22:48:56 +02:00
|
|
|
'name': 'win_shell_dialogs_3294',
|
2022-04-21 20:58:48 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Linux: Fix duplicate symbol error due to bluez/metrics_recorder.cc.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1319006
|
|
|
|
'name': 'linux_bluetooth_1319006',
|
|
|
|
},
|
|
|
|
{
|
2022-07-21 19:26:10 +02:00
|
|
|
# Linux: Support chaining of PrintingContextLinux callbacks.
|
2023-03-13 18:45:20 +01:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3314
|
2022-07-25 19:49:32 +02:00
|
|
|
# Also reverts the changes from https://crrev.com/db245883e1
|
2022-07-21 19:26:10 +02:00
|
|
|
'name': 'linux_printing_context',
|
2022-07-26 19:10:12 +02:00
|
|
|
},
|
2022-07-29 18:34:30 +02:00
|
|
|
{
|
|
|
|
# Fix deadlock in EmbeddedTestServer::ShutdownAndWaitUntilComplete.
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/3798752
|
|
|
|
'name': 'net_test_server_3798752'
|
2022-10-18 03:42:58 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Linux: Fix "error: use of result of assignment to object of volatile-
|
|
|
|
# qualified type 'volatile gsize' (aka 'volatile unsigned long') is
|
|
|
|
# deprecated [-Werror,-Wdeprecated-volatile]" when building with
|
|
|
|
# use_sysroot=false on Ubuntu 18.04.
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/3960017
|
|
|
|
'name': 'linux_glib_deprecated_volatile'
|
2023-01-30 18:43:54 +01:00
|
|
|
},
|
|
|
|
{
|
2023-02-27 19:52:38 +01:00
|
|
|
# Restore low-level attribute access from WebElement which was removed in
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/4200240
|
|
|
|
'name': 'blink_web_element_4200240'
|
2023-01-30 18:43:54 +01:00
|
|
|
},
|
2023-02-27 19:52:38 +01:00
|
|
|
{
|
2023-04-04 20:00:13 +02:00
|
|
|
# Fix ThreadChecker crash on startup with Chrome runtime + multi-threaded
|
|
|
|
# message loop.
|
|
|
|
'name': 'metrics_system_profile'
|
2023-05-05 12:53:00 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# macOS: Remove run-time dependency on libtest_trace_processor.dylib
|
|
|
|
# Reverts the changes from https://crrev.com/8b18bd125d
|
|
|
|
'name': 'base_test_4396276'
|
2023-06-14 10:20:02 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Create top-level widget type when Widget::InitParams::child is false.
|
|
|
|
'name': 'ui_views_widget_type'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# win/linux: Fix rounding errors with Screen[Win] DIP/pixel conversions.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1443650#c18
|
|
|
|
'name': 'screen_1443650'
|
2023-06-30 15:53:17 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# mac: Keep bubble popups on-screen.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=893292#c10
|
|
|
|
'name': 'mac_platform_style_bubble_893292'
|
2023-07-24 22:03:39 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# mac: Fix NOTREACHED with ViewsTextfieldTest.TextfieldKeyEvent.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1467329
|
|
|
|
'name': 'mac_keyboard_conversion_1467329'
|
2023-07-25 18:30:43 +02:00
|
|
|
},
|
2023-08-09 21:14:52 +02:00
|
|
|
{
|
|
|
|
# win: Add support for "force-light-mode" command-line option.
|
2023-08-29 20:20:37 +02:00
|
|
|
# mac: Add support for "force-light-mode" and "force-dark-mode".
|
2023-08-09 21:14:52 +02:00
|
|
|
# https://github.com/chromiumembedded/cef/issues/3534
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/4766248
|
2023-08-29 20:20:37 +02:00
|
|
|
'name': 'light_mode_3534'
|
2023-10-19 20:08:48 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Fix NOTREACHED() in RenderFrameHostImpl::CommitNavigation() with
|
|
|
|
# CorsTest.IframeNoneServerToCustomUnregisteredScheme.
|
|
|
|
# Partially reverts the below changes.
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/4829483
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1470837#c22
|
|
|
|
'name': 'rfh_navigation_4829483'
|
2023-11-17 00:19:27 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Fix Referrer & Origin calculation for secure referrer (custom standard
|
|
|
|
# scheme) with insecure destination.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3596
|
|
|
|
'name': 'net_url_request_3596'
|
2023-11-21 01:35:05 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# chrome: win: Fix loading of default app icon.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3606
|
|
|
|
'name': 'win_app_icon_3606'
|
2023-12-06 18:27:08 +01:00
|
|
|
},
|
2024-01-03 20:00:39 +01:00
|
|
|
{
|
|
|
|
# chrome: mac: Support locale configuration.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3623
|
2024-02-20 19:15:25 +01:00
|
|
|
#
|
|
|
|
# mac: Add fallback for unsupported --lang values.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3653
|
2024-05-03 18:50:23 +02:00
|
|
|
#
|
|
|
|
# Pass ui::ResourceBundle::Delegate to InitSharedInstanceWithLocale.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3685
|
2024-01-03 20:00:39 +01:00
|
|
|
'name': 'mac_chrome_locale_3623'
|
2024-01-18 03:33:27 +01:00
|
|
|
},
|
2024-02-06 19:55:01 +01:00
|
|
|
{
|
|
|
|
# chrome: win: Fix taskbar grouping of PiP and DevTools windows.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3641
|
|
|
|
'name': 'win_taskbar_group_3641'
|
|
|
|
},
|
2024-02-15 20:17:59 +01:00
|
|
|
{
|
|
|
|
# chrome: win: Disable taskbar decoration for PiP and DevTools windows.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3645
|
|
|
|
'name': 'win_taskbar_decorator_3645'
|
|
|
|
},
|
2024-03-26 22:48:23 +01:00
|
|
|
{
|
|
|
|
# views: Update textfield colors when enabled state changes
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/5399416
|
|
|
|
'name': 'views_textfield_5399416'
|
2024-03-29 17:48:33 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# views: Add ColorProviderManagerObserver.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3610
|
|
|
|
'name': 'color_provider_manager_3610'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# linux: Disable GtkUi with multi-threaded-message-loop to avoid crashes.
|
|
|
|
# linux: Disable GTK theme change notifications due to performance issues.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3610
|
|
|
|
# https://issues.chromium.org/issues/40280130#comment7
|
|
|
|
'name': 'linux_gtk_theme_3610'
|
2024-04-12 17:49:31 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# views: mac: Add customization point to acceptsFirstMouse.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3680
|
|
|
|
'name': 'mac_render_widget_3680'
|
2024-03-08 13:44:56 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# win: Remove keyed mutex with OSR for better performace and to avoid
|
|
|
|
# potential vendor driver bugs.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/pull-requests/734
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/2575
|
|
|
|
# It is a bit hacky, not suitable for merging into upstream.
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/5302103
|
|
|
|
'name': 'osr_win_remove_keyed_mutex_2575'
|
2024-04-26 19:46:24 +02:00
|
|
|
},
|
2024-05-13 23:36:09 +02:00
|
|
|
{
|
|
|
|
# Fix dangling raw_ptr errors.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3239
|
|
|
|
'name': 'raw_ptr_3239'
|
2024-05-23 03:52:35 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Fix DCHECK(initiator_policy_container_host) failure when running
|
|
|
|
# RequestContextTest.PopupNavDestroyParentAfterCreationRCGlobal.
|
|
|
|
# https://issues.chromium.org/issues/323753235#comment11
|
|
|
|
'name': 'content_initiator_policy_323753235'
|
2024-06-03 19:49:31 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# win: Fix undefined std::_Literal_zero_is_expected() when building
|
|
|
|
# cef_sandbox with VS 17.9.2 version of MSVC STL.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3708
|
|
|
|
'name': 'win_sandbox_op3way_3708'
|
2024-06-14 19:01:45 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Fix ThreadPool DCHECK during startup when using multi-threaded message
|
|
|
|
# loop. Related to the following CL:
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/5548577
|
|
|
|
'name': 'base_thread_pool_5548577'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# Linux: Fix ARM build broken by build_tflite_with_xnnpack change.
|
|
|
|
# https://issues.chromium.org/issues/348117454
|
|
|
|
'name': 'linux_tflite_348117454'
|
2024-07-12 20:13:10 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Fix DCHECK in SimpleMenuModel::AddSeparator when adding a separator with
|
|
|
|
# hidden menu items.
|
|
|
|
# https://github.com/chromiumembedded/cef/issues/3577
|
|
|
|
'name': 'ui_menu_model_3577'
|
2024-03-26 22:48:23 +01:00
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
]
|