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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2432
|
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
|
2022-07-13 12:46:15 +02:00
|
|
|
#
|
|
|
|
# Don't copy dbghelp.dll/dbgcore.dll from the Windows SDK.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3356
|
2020-03-04 21:00:17 +01:00
|
|
|
'name': 'runhooks',
|
|
|
|
},
|
2017-07-06 22:39:37 +02:00
|
|
|
{
|
|
|
|
# Support component builds (GN is_component_build=true).
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/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
|
|
|
},
|
2021-04-21 00:52:34 +02:00
|
|
|
{
|
|
|
|
# Give AlloyContentRendererClient access to protected
|
|
|
|
# RuntimeEnabledFeatures methods.
|
|
|
|
'name': 'webkit_runtime_enabled_features',
|
|
|
|
},
|
2013-08-15 00:15:28 +02:00
|
|
|
{
|
2021-07-23 18:40:13 +02:00
|
|
|
# Fix export of UnderlayOpenGLHostingWindow for 64-bit MacOS builds.
|
2016-04-27 22:38:52 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1051
|
2013-08-15 00:15:28 +02:00
|
|
|
'name': 'underlay_1051',
|
|
|
|
},
|
2013-12-07 02:55:22 +01:00
|
|
|
{
|
|
|
|
# Allow specification of a parent window handle for Widget creation.
|
2016-04-27 22:38:52 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/180
|
2016-01-19 21:09:01 +01:00
|
|
|
#
|
|
|
|
# Fix multiple handling of WM_MOUSEWHEEL messages on Windows.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1481
|
|
|
|
#
|
2017-02-10 23:44:11 +01:00
|
|
|
# Support custom RenderWidgetHostViewOSR for BrowserPluginGuest.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1565
|
|
|
|
#
|
2015-10-26 19:23:08 +01:00
|
|
|
# Fix focus/activation handling and keyboard input on Windows and Linux.
|
2015-08-04 19:53:59 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1677
|
2015-10-26 19:23:08 +01:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1679
|
2015-08-27 23:55:48 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1700
|
2022-06-02 11:49:50 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3316
|
2016-01-19 21:09:01 +01:00
|
|
|
#
|
|
|
|
# Support creation of captionless windows with resizable borders.
|
|
|
|
# https://bitbucket.org/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.
|
2017-08-04 00:55:19 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1947
|
|
|
|
#
|
2017-06-30 22:30:30 +02:00
|
|
|
# Support configuration of RWHVGuest device scale factor.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2078
|
2020-10-27 19:43:10 +01:00
|
|
|
#
|
|
|
|
# Windows: Fix focus assignment when clicking WebView with external parent.
|
|
|
|
# https://bitbucket.org/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.
|
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.
|
2016-04-27 22:38:52 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1257
|
2017-02-10 23:44:11 +01:00
|
|
|
#
|
|
|
|
# Support custom RenderWidgetHostViewOSR for BrowserPluginGuest.
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/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
|
|
|
{
|
2020-01-23 22:58:01 +01:00
|
|
|
# Support custom RenderWidgetHostViewOSR for MimeHandlerViewGuest and
|
|
|
|
# expose OnGuestAttached/Detached notifications.
|
2015-07-16 23:40:01 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1565
|
2020-01-23 22:58:01 +01:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2727
|
|
|
|
'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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issue/1639
|
2020-10-08 21:54:42 +02:00
|
|
|
#
|
|
|
|
# Fix DiscardableSharedMemoryManager crash on shutdown with multi-threaded
|
|
|
|
# message loop.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2798
|
|
|
|
'name': 'content_main_654986',
|
2015-07-29 18:04:19 +02:00
|
|
|
},
|
2015-10-17 02:44:00 +02:00
|
|
|
{
|
|
|
|
# Expose the FontFamilyCache UserData key.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1501
|
|
|
|
'name': 'font_family_cache_1501',
|
|
|
|
},
|
2016-01-19 21:09:01 +01:00
|
|
|
{
|
|
|
|
# Modify views::View to extend SupportsUserData.
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2102
|
2022-05-13 13:38:41 +02:00
|
|
|
#
|
|
|
|
# Route |parent_widget| to MenuHost for OSR context menu Widget creation.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3330
|
|
|
|
'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',
|
|
|
|
},
|
2020-06-25 04:34:12 +02:00
|
|
|
{
|
|
|
|
# Changes to support the Chrome runtime in CEF.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_runtime_views',
|
|
|
|
},
|
2020-09-18 00:24:08 +02:00
|
|
|
{
|
|
|
|
# Changes to support the Chrome runtime in CEF.
|
|
|
|
# https://bitbucket.org/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
|
2020-09-18 00:24:08 +02:00
|
|
|
'name': 'chrome_browser_browser',
|
|
|
|
},
|
2018-02-02 23:43:33 +01:00
|
|
|
{
|
|
|
|
# Don't initialize ExtensionSystemFactory when extensions are disabled.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2359
|
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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_browser_context_menus',
|
|
|
|
},
|
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.
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3316
|
|
|
|
'name': 'chrome_browser_dialogs_widget',
|
2022-04-15 21:55:23 +02:00
|
|
|
},
|
2021-11-17 01:17:39 +01:00
|
|
|
{
|
|
|
|
# chrome: Support override of ChromeMimeHandlerViewGuestDelegate.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_browser_extensions',
|
|
|
|
},
|
2020-01-06 13:20:26 +01:00
|
|
|
{
|
2022-05-13 11:03:50 +02:00
|
|
|
# alloy: Disable ProxyErrorClient callbacks when extensions are disabled.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2830
|
|
|
|
'name': 'chrome_browser_net_proxy',
|
|
|
|
},
|
2022-07-07 12:01:24 +02:00
|
|
|
{
|
|
|
|
# Support override of CreatePermissionPrompt.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3352
|
|
|
|
'name': 'chrome_browser_permission_prompt',
|
|
|
|
},
|
2022-05-13 11:03:50 +02:00
|
|
|
{
|
|
|
|
# alloy: Don't initialize ExtensionSystemFactory when extensions are
|
|
|
|
# disabled.
|
2020-01-06 13:20:26 +01:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2852
|
|
|
|
'name': 'chrome_browser_themes',
|
|
|
|
},
|
2016-07-18 23:22:22 +02:00
|
|
|
{
|
|
|
|
# Make some methods of ProfileManager virtual.
|
2019-09-25 15:59:51 +02:00
|
|
|
#
|
|
|
|
# Don't create IdentityManager in RendererUpdater.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1917
|
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.
|
2021-04-07 00:09:45 +02:00
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_browser_profile_menu',
|
|
|
|
},
|
2022-07-21 19:26:10 +02:00
|
|
|
{
|
|
|
|
# alloy: Don't require heap profiler for utility processes.
|
|
|
|
# Avoids a DCHECK added in https://crrev.com/c21e9f71d1f2e
|
|
|
|
'name': 'chrome_utility_client',
|
|
|
|
},
|
2019-05-02 20:06:48 +02:00
|
|
|
{
|
|
|
|
# Support override of the User-Agent product component when NetworkService
|
|
|
|
# is enabled.
|
|
|
|
# https://bitbucket.org/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',
|
|
|
|
},
|
2017-12-07 22:44:24 +01:00
|
|
|
{
|
|
|
|
# Allow CEF to share Chrome plugin loading code.
|
2020-08-29 00:39:23 +02: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
|
|
|
},
|
2016-08-24 11:28:52 +02:00
|
|
|
{
|
2019-03-12 09:49:00 +01:00
|
|
|
# Don't create databases, blob_storage or VideoDecodeStats directories when
|
|
|
|
# cache_path is empty.
|
2017-10-30 21:52:39 +01:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2289
|
2019-03-24 01:39:54 +01:00
|
|
|
'name': 'storage_incognito_2289',
|
2016-08-24 11:28:52 +02:00
|
|
|
},
|
2016-11-07 20:14:09 +01:00
|
|
|
{
|
2019-03-24 01:39:54 +01:00
|
|
|
# Support WebUI by removing dependency on non-NULL IOThread* object.
|
2016-11-07 20:14:09 +01:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2037
|
|
|
|
'name': 'webui_2037',
|
|
|
|
},
|
2016-12-12 11:05:29 +01:00
|
|
|
{
|
|
|
|
# Implement breakpad/crashpad customization required by CEF.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1995
|
|
|
|
'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.
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2300
|
|
|
|
#
|
|
|
|
# Add new ContentBrowserClient::HandleExternalProtocol variant for use with
|
|
|
|
# the NetworkService.
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2196
|
|
|
|
'name': 'printing_context_2196',
|
|
|
|
},
|
2022-02-18 17:33:40 +01:00
|
|
|
{
|
|
|
|
# Expose the printing::GetRenderFrameHostToUse() method.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3057
|
|
|
|
'name': 'printing_pdf_3047',
|
|
|
|
},
|
2017-06-24 00:37:49 +02:00
|
|
|
{
|
2020-06-09 19:48:00 +02:00
|
|
|
# Windows: Remove llvmlibthin as the combine_libs.py can't handle those.
|
2019-01-17 10:56:52 +01:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2470
|
|
|
|
'name': 'build',
|
2017-07-27 01:19:27 +02:00
|
|
|
},
|
2017-08-04 00:55:19 +02:00
|
|
|
{
|
2019-03-24 01:39:54 +01:00
|
|
|
# Changes necessary to support for chrome extensions. Add a new
|
|
|
|
# ExtensionHost constructor that allows CEF to create the WebContents.
|
2017-08-04 00:55:19 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1947
|
2018-04-19 17:44:42 +02:00
|
|
|
#
|
|
|
|
# Don't initialize PrerenderContents object in StreamsPrivateAPI.
|
2017-08-04 00:55:19 +02:00
|
|
|
'name': 'extensions_1947',
|
|
|
|
},
|
2018-03-16 19:03:45 +01:00
|
|
|
{
|
|
|
|
# macOS: Fix undesirable switch to discrete GPU during startup.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2398
|
2018-07-25 20:58:25 +02:00
|
|
|
#
|
|
|
|
# macOS: Rely on symlinks to find the Libraries directory.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=757974#c23
|
|
|
|
'name': 'mac_gpu',
|
2018-03-16 19:03:45 +01:00
|
|
|
},
|
2018-11-06 19:51:02 +01:00
|
|
|
{
|
|
|
|
# macOS: Make the NativeEventProcessor protocol dependency optional.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2539
|
|
|
|
'name': 'mac_event_observer_2539',
|
|
|
|
},
|
2018-11-06 23:27:26 +01:00
|
|
|
{
|
|
|
|
# macOS: Fix crash when scrolling in OSR mode.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2540
|
|
|
|
'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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2398
|
|
|
|
'name': 'resource_bundle_2512',
|
|
|
|
},
|
2018-09-28 16:27:09 +02:00
|
|
|
{
|
|
|
|
# macOS: Fix crash when showing a select popup with CefDoMessageLoopWork.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2495
|
|
|
|
'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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1936
|
|
|
|
'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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3149
|
|
|
|
'name': 'linux_chrome_widevine_3149',
|
|
|
|
},
|
2019-04-24 04:50:25 +02:00
|
|
|
{
|
|
|
|
# Enhancements to NetworkService:
|
|
|
|
# - Add support for calling CookieMonster::SetCookieableSchemes.
|
2019-05-02 20:50:59 +02:00
|
|
|
# - Fix cache directory structure ("C:\temp\cache\cache\Cache" should be
|
|
|
|
# "C:\temp\cache\Cache").
|
2019-04-24 04:50:25 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2622
|
|
|
|
'name': 'services_network_2622',
|
|
|
|
},
|
2019-07-12 22:44:43 +02:00
|
|
|
{
|
|
|
|
# Enhancements to NetworkService:
|
|
|
|
# - Remove the non-nullptr WebContents requirement from
|
|
|
|
# NetworkServiceClient::OnAuthRequired.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2718
|
2019-11-26 22:26:48 +01:00
|
|
|
#
|
2021-10-19 00:17:16 +02:00
|
|
|
# Change ContentBrowserClient::ConfigureNetworkContextParams return type to
|
|
|
|
# bool to support cancellation of NetworkContext creation during shutdown.
|
2020-07-20 19:49:16 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2985
|
2020-03-04 01:29:39 +01:00
|
|
|
#
|
|
|
|
# Compute correct default quota when cache_path is unspecified.
|
|
|
|
'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-06-05 16:15:45 +02:00
|
|
|
{
|
2019-07-16 19:59:21 +02:00
|
|
|
# Restore WebUrlLoader Cancel method.
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/1617042
|
|
|
|
'name': 'web_url_loader_cancel_1617042',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# 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',
|
|
|
|
},
|
2022-02-17 00:19:56 +01:00
|
|
|
{
|
|
|
|
# Restore access to WebUIControllerFactory::UnregisterFactoryForTesting
|
|
|
|
# which was removed in https://crrev.com/5f183d6636. We can't use
|
|
|
|
# ScopedWebUIControllerFactoryRegistration because it pulls in GTest
|
|
|
|
# dependencies.
|
2022-04-21 20:58:48 +02:00
|
|
|
#
|
|
|
|
# Add accessor for WebUIConfigMap::webui_controller_factory_.
|
2022-02-17 00:19:56 +01:00
|
|
|
'name': 'browser_web_ui_controller_factory',
|
|
|
|
},
|
2019-07-16 19:59:21 +02:00
|
|
|
{
|
|
|
|
# Avoid a shutdown crash caused by PrefWatcher holding a reference to
|
|
|
|
# |g_browser_process->local_state()|, and the local_state being deleted
|
|
|
|
# before the PrefWatcher object (which is associated with a Profile).
|
|
|
|
# PrefWatcher::Shutdown will now be called from ChromeBrowserProcessStub::
|
|
|
|
# Shutdown for all Profiles before local_state deletion.
|
|
|
|
# This crash was introduced by https://crrev.com/7d032b378c.
|
|
|
|
'name': 'chrome_pref_watcher',
|
2019-07-16 22:09:04 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Add support for OSR rendering with Viz.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2575
|
|
|
|
'name': 'viz_osr_2575',
|
2019-07-17 20:47:27 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Changes for print preview support:
|
|
|
|
# - Don't attach unnecessary Chrome-related handlers to constrained window.
|
|
|
|
# - Create file dialogs using the CEF code path.
|
|
|
|
# - Remove unsupported print preview UI options.
|
2020-02-10 18:10:17 +01:00
|
|
|
# - macOS: Fix error: no member named 'kCloudPrinterHandler' in namespace
|
|
|
|
# 'printing::features',
|
2019-07-17 20:47:27 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/123
|
|
|
|
'name': 'print_preview_123',
|
2019-10-01 13:30:07 +02:00
|
|
|
},
|
2021-09-27 12:36:08 +02:00
|
|
|
{
|
|
|
|
# Store command-line switch names as lower-case ASCII on all platforms.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1872
|
|
|
|
'name': 'base_command_line_1872',
|
|
|
|
},
|
2019-10-01 13:30:07 +02:00
|
|
|
{
|
|
|
|
# Remove cef_sandbox dependency on boringssl MD5/SHA1 functions.
|
|
|
|
# https://bitbucket.org/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
|
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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2745
|
|
|
|
'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.
|
2020-01-07 14:07:03 +01:00
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/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).
|
|
|
|
# https://bitbucket.org/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.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3210
|
|
|
|
'name': 'win_sandbox_3210',
|
2022-01-28 18:13:26 +01:00
|
|
|
},
|
2022-04-08 22:48:56 +02:00
|
|
|
{
|
|
|
|
# Windows: Always use the root window as the owner for shell dialogs.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3294
|
|
|
|
'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.
|
|
|
|
# https://bitbucket.org/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
|
|
|
},
|
|
|
|
{
|
|
|
|
# Linux: Fix implicit conversion error on ARM.
|
|
|
|
# https://chromium-review.googlesource.com/c/linux-syscall-support/+/3786946/
|
|
|
|
'name': 'linux_arm_1292951',
|
|
|
|
'path': 'third_party/lss',
|
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'
|
2019-12-31 17:50:40 +01:00
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
]
|