2017-04-26 21:59:52 -04: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 01:34:16 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
{
|
2016-06-23 13:42:00 -04:00
|
|
|
# Necessary for grit integration.
|
2012-04-03 01:34:16 +00:00
|
|
|
'name': 'gritsettings',
|
|
|
|
},
|
2016-06-23 13:42:00 -04:00
|
|
|
{
|
|
|
|
# Necessary for GN integration.
|
|
|
|
#
|
2020-07-06 14:14:57 -04: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 13:42:00 -04:00
|
|
|
#
|
2016-08-05 13:24:27 +03:00
|
|
|
# Write environment.* files with the correct SDK version on Windows.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=634788
|
2018-05-21 15:54:08 +03:00
|
|
|
#
|
|
|
|
# Windows: Add cc_wrapper support for sccache builds.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2432
|
2016-06-23 13:42:00 -04:00
|
|
|
'name': 'gn_config',
|
|
|
|
},
|
2020-03-04 15:00:17 -05: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 13:46:15 +03:00
|
|
|
#
|
|
|
|
# Don't copy dbghelp.dll/dbgcore.dll from the Windows SDK.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3356
|
2020-03-04 15:00:17 -05:00
|
|
|
'name': 'runhooks',
|
|
|
|
},
|
2017-07-06 16:39:37 -04:00
|
|
|
{
|
|
|
|
# Support component builds (GN is_component_build=true).
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1617
|
2019-02-20 19:42:36 -05:00
|
|
|
'name': 'component_build',
|
2017-07-06 16:39:37 -04:00
|
|
|
},
|
2013-02-23 01:46:13 +00:00
|
|
|
{
|
2016-06-20 18:59:23 -04:00
|
|
|
# Revert change on Windows that removes MessageLoop::os_modal_loop().
|
|
|
|
# https://codereview.chromium.org/1992243003
|
2018-07-13 15:29:20 -04: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 15:29:20 -04:00
|
|
|
'name': 'message_loop',
|
2013-02-23 01:46:13 +00:00
|
|
|
},
|
2018-11-30 17:21:07 -05:00
|
|
|
{
|
|
|
|
# Add builtin trace event categories for CEF.
|
|
|
|
# Required due to https://crrev.com/331266377d.
|
|
|
|
'name': 'trace_event',
|
|
|
|
},
|
2014-06-30 22:30:29 +00:00
|
|
|
{
|
2021-07-23 12:40:13 -04:00
|
|
|
# Enable popups in offscreen rendering on MacOS.
|
|
|
|
'name': 'webkit_popups',
|
2014-06-30 22:30:29 +00:00
|
|
|
},
|
2021-04-20 18:52:34 -04:00
|
|
|
{
|
|
|
|
# Give AlloyContentRendererClient access to protected
|
|
|
|
# RuntimeEnabledFeatures methods.
|
|
|
|
'name': 'webkit_runtime_enabled_features',
|
|
|
|
},
|
2013-08-14 22:15:28 +00:00
|
|
|
{
|
2021-07-23 12:40:13 -04:00
|
|
|
# Fix export of UnderlayOpenGLHostingWindow for 64-bit MacOS builds.
|
2016-04-27 16:38:52 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1051
|
2013-08-14 22:15:28 +00:00
|
|
|
'name': 'underlay_1051',
|
|
|
|
},
|
2013-12-07 01:55:22 +00:00
|
|
|
{
|
|
|
|
# Allow specification of a parent window handle for Widget creation.
|
2016-04-27 16:38:52 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/180
|
2016-01-19 15:09:01 -05:00
|
|
|
#
|
|
|
|
# Fix multiple handling of WM_MOUSEWHEEL messages on Windows.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1481
|
|
|
|
#
|
2017-02-10 17:44:11 -05:00
|
|
|
# Support custom RenderWidgetHostViewOSR for BrowserPluginGuest.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1565
|
|
|
|
#
|
2015-10-26 14:23:08 -04:00
|
|
|
# Fix focus/activation handling and keyboard input on Windows and Linux.
|
2015-08-04 13:53:59 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1677
|
2015-10-26 14:23:08 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1679
|
2015-08-27 17:55:48 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1700
|
2022-06-02 12:49:50 +03:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3316
|
2016-01-19 15:09:01 -05:00
|
|
|
#
|
|
|
|
# Support creation of captionless windows with resizable borders.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1749
|
2017-06-30 16:30:30 -04:00
|
|
|
#
|
2017-08-03 18:55:19 -04: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 14:41:30 -07:00
|
|
|
# Linux: Support CefWindowDelegate::CanResize restriction by specifying
|
|
|
|
# min/max Widget size values.
|
2017-08-03 18:55:19 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1947
|
|
|
|
#
|
2017-06-30 16:30:30 -04:00
|
|
|
# Support configuration of RWHVGuest device scale factor.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2078
|
2020-10-27 14:43:10 -04:00
|
|
|
#
|
|
|
|
# Windows: Fix focus assignment when clicking WebView with external parent.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3031
|
2021-09-07 17:04:55 +03:00
|
|
|
#
|
|
|
|
# Fix minimize & fullscreen behavior on initial Widget creation.
|
2021-11-10 16:57:31 -05: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-24 19:47:04 -04:00
|
|
|
#
|
|
|
|
# Windows: Fix incorrect DIPToScreenRect usage in DesktopWindowTreeHostWin
|
|
|
|
# when |has_external_parent_| is true.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3359
|
2020-10-27 14:43:10 -04:00
|
|
|
'name': 'views_widget',
|
2015-10-14 09:46:42 -07:00
|
|
|
},
|
2014-04-15 19:02:30 +00:00
|
|
|
{
|
2014-06-30 22:30:29 +00:00
|
|
|
# Allow specification of a custom WebContentsView.
|
2016-04-27 16:38:52 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1257
|
2017-02-10 17:44:11 -05:00
|
|
|
#
|
|
|
|
# Support custom RenderWidgetHostViewOSR for BrowserPluginGuest.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1565
|
2020-02-10 12:10:17 -05:00
|
|
|
#
|
|
|
|
# Add WebContentsObserver::OnFrameFocused.
|
2022-04-13 19:35:46 -04:00
|
|
|
#
|
|
|
|
# Add WebContentsObserver::RenderWidgetCreated.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3308
|
2017-02-10 17:44:11 -05:00
|
|
|
'name': 'web_contents_1257_1565',
|
2014-04-15 19:02:30 +00:00
|
|
|
},
|
2015-07-16 17:40:01 -04:00
|
|
|
{
|
2020-01-23 16:58:01 -05:00
|
|
|
# Support custom RenderWidgetHostViewOSR for MimeHandlerViewGuest and
|
|
|
|
# expose OnGuestAttached/Detached notifications.
|
2015-07-16 17:40:01 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1565
|
2020-01-23 16:58:01 -05:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2727
|
|
|
|
'name': 'mime_handler_view_guest_1565_2727',
|
2015-07-16 17:40:01 -04:00
|
|
|
},
|
2014-07-08 22:37:06 +00: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 12:04:19 -04:00
|
|
|
{
|
2020-10-08 15:54:42 -04:00
|
|
|
# Split content::ContentMain into the separate steps required by CEF.
|
2017-04-20 15:28:17 -04:00
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=654986#c17
|
|
|
|
#
|
2015-07-29 12:04:19 -04:00
|
|
|
# Remove DCHECK on Linux when initialized CEF from a non-main thread.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issue/1639
|
2020-10-08 15:54:42 -04: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 12:04:19 -04:00
|
|
|
},
|
2015-10-16 20:44:00 -04:00
|
|
|
{
|
|
|
|
# Expose the FontFamilyCache UserData key.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1501
|
|
|
|
'name': 'font_family_cache_1501',
|
|
|
|
},
|
2016-01-19 15:09:01 -05:00
|
|
|
{
|
|
|
|
# Modify views::View to extend SupportsUserData.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1749
|
2017-04-20 15:28:17 -04:00
|
|
|
#
|
2022-06-17 16:28:55 +03: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 15:28:17 -04: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 14:38:41 +03: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 15:09:01 -05:00
|
|
|
},
|
2017-12-07 16:44:24 -05:00
|
|
|
{
|
|
|
|
# Support CEF changes in chrome/browser.
|
2022-09-26 15:30:45 -04:00
|
|
|
#
|
|
|
|
# Fix duplicate symbols for enterprise_connectors::ContentAnalysisSdkManager
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1368633
|
2017-12-07 16:44:24 -05:00
|
|
|
'name': 'chrome_browser',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# Support CEF changes in chrome/renderer.
|
|
|
|
'name': 'chrome_renderer',
|
|
|
|
},
|
2020-06-24 22:34:12 -04:00
|
|
|
{
|
|
|
|
# Changes to support the Chrome runtime in CEF.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_runtime',
|
|
|
|
},
|
2021-02-17 20:58:25 -05: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-17 18:24:08 -04:00
|
|
|
{
|
|
|
|
# Changes to support the Chrome runtime in CEF.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
2022-04-15 15:55:23 -04: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-17 18:24:08 -04:00
|
|
|
'name': 'chrome_browser_browser',
|
|
|
|
},
|
2018-02-02 17:43:33 -05:00
|
|
|
{
|
|
|
|
# Don't initialize ExtensionSystemFactory when extensions are disabled.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2359
|
2020-09-24 21:40:47 -04:00
|
|
|
#
|
|
|
|
# Remove NOTREACHED() in GetContentSettingFromRulesImpl triggered by
|
|
|
|
# NavigationTest.LoadCrossOriginLoadURL with the chrome runtime.
|
2018-02-02 17:43:33 -05:00
|
|
|
'name': 'chrome_browser_content_settings',
|
|
|
|
},
|
2021-04-08 19:15:51 -04:00
|
|
|
{
|
|
|
|
# chrome: Support custom handling of context menus.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_browser_context_menus',
|
|
|
|
},
|
2022-04-15 15:55:23 -04:00
|
|
|
{
|
2022-06-02 12:49:50 +03:00
|
|
|
# Support use of chrome native dialogs with CEF runtimes.
|
2022-04-15 15:55:23 -04: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 12:49:50 +03: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 15:55:23 -04:00
|
|
|
},
|
2021-11-16 19:17:39 -05:00
|
|
|
{
|
|
|
|
# chrome: Support override of ChromeMimeHandlerViewGuestDelegate.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
|
|
|
'name': 'chrome_browser_extensions',
|
|
|
|
},
|
2020-01-06 14:20:26 +02:00
|
|
|
{
|
2022-05-13 12:03:50 +03:00
|
|
|
# alloy: Disable ProxyErrorClient callbacks when extensions are disabled.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2830
|
|
|
|
'name': 'chrome_browser_net_proxy',
|
|
|
|
},
|
2022-07-07 10:01:24 +00:00
|
|
|
{
|
|
|
|
# Support override of CreatePermissionPrompt.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3352
|
|
|
|
'name': 'chrome_browser_permission_prompt',
|
|
|
|
},
|
2022-05-13 12:03:50 +03:00
|
|
|
{
|
|
|
|
# alloy: Don't initialize ExtensionSystemFactory when extensions are
|
|
|
|
# disabled.
|
2020-01-06 14:20:26 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2852
|
|
|
|
'name': 'chrome_browser_themes',
|
|
|
|
},
|
2016-07-18 17:22:22 -04:00
|
|
|
{
|
|
|
|
# Make some methods of ProfileManager virtual.
|
2019-09-25 16:59:51 +03:00
|
|
|
#
|
|
|
|
# Don't create IdentityManager in RendererUpdater.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1917
|
2021-04-06 18:09:45 -04:00
|
|
|
#
|
|
|
|
# chrome: Support CEF incognito Profiles that allow Browser creation.
|
2021-04-09 14:34:45 -04:00
|
|
|
# chrome: Allow CEF to delay OffTheRecordProfileImpl initialization.
|
2021-04-06 18:09:45 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
2017-12-07 16:44:24 -05:00
|
|
|
'name': 'chrome_browser_profiles',
|
|
|
|
},
|
2021-04-11 15:48:07 -04: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 13:26:10 -04: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 14:06:48 -04:00
|
|
|
{
|
|
|
|
# Support override of the User-Agent product component when NetworkService
|
|
|
|
# is enabled.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2622
|
2021-03-04 17:36:57 -05:00
|
|
|
'name': 'embedder_product_override',
|
2019-05-02 14:06:48 -04:00
|
|
|
},
|
2019-10-14 17:29:55 +02:00
|
|
|
{
|
|
|
|
# Fix Jumbo/component build dependency issue.
|
|
|
|
'name': 'chrome_browser_safe_browsing',
|
|
|
|
},
|
2017-12-07 16:44:24 -05:00
|
|
|
{
|
|
|
|
# Allow CEF to share Chrome plugin loading code.
|
2020-08-28 18:39:23 -04:00
|
|
|
#
|
2020-10-08 15:54:42 -04:00
|
|
|
# Add BrowserPluginGuest::owner_web_contents() method.
|
2017-12-07 16:44:24 -05:00
|
|
|
'name': 'chrome_plugins',
|
2016-07-18 17:22:22 -04:00
|
|
|
},
|
2016-08-24 12:28:52 +03:00
|
|
|
{
|
2019-03-12 10:49:00 +02:00
|
|
|
# Don't create databases, blob_storage or VideoDecodeStats directories when
|
|
|
|
# cache_path is empty.
|
2017-10-30 16:52:39 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2289
|
2019-03-23 20:39:54 -04:00
|
|
|
'name': 'storage_incognito_2289',
|
2016-08-24 12:28:52 +03:00
|
|
|
},
|
2016-11-07 14:14:09 -05:00
|
|
|
{
|
2019-03-23 20:39:54 -04:00
|
|
|
# Support WebUI by removing dependency on non-NULL IOThread* object.
|
2016-11-07 14:14:09 -05: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 16:35:26 -05:00
|
|
|
{
|
|
|
|
# Fix white flash during browser creation.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1984
|
2017-09-05 11:41:34 -04:00
|
|
|
#
|
|
|
|
# Windows: Fix crash during window creation.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=761389
|
2017-01-13 16:35:26 -05:00
|
|
|
'name': 'rwh_background_color_1984',
|
|
|
|
},
|
2017-01-18 18:37:56 -05:00
|
|
|
{
|
2017-04-20 15:28:17 -04: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 16:44:24 -05:00
|
|
|
# Add ContentRendererClient::DevToolsAgent[Attached|Detached] methods.
|
2019-04-24 02:50:25 +00: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-18 18:17:16 -04: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-12 18:01:43 -05:00
|
|
|
'name': 'content_2015',
|
2017-01-18 18:37:56 -05:00
|
|
|
},
|
|
|
|
{
|
2018-02-14 19:12:09 -05:00
|
|
|
# Add ContentRendererClient::DevToolsAgent[Attached|Detached] methods.
|
2017-04-20 15:28:17 -04:00
|
|
|
'name': 'webkit_plugin_info_2015',
|
2017-01-18 18:37:56 -05:00
|
|
|
},
|
2017-06-15 08:27:56 -07:00
|
|
|
{
|
|
|
|
# Linux: Attach routing IDs to PrintingContext.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2196
|
|
|
|
'name': 'printing_context_2196',
|
|
|
|
},
|
2017-06-23 18:37:49 -04:00
|
|
|
{
|
2020-06-09 13:48:00 -04: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-26 19:19:27 -04:00
|
|
|
},
|
2017-08-03 18:55:19 -04:00
|
|
|
{
|
2023-01-05 13:55:00 -05:00
|
|
|
# Changes necessary to support chrome extensions. Add a new
|
2019-03-23 20:39:54 -04:00
|
|
|
# ExtensionHost constructor that allows CEF to create the WebContents.
|
2017-08-03 18:55:19 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1947
|
2018-04-19 11:44:42 -04:00
|
|
|
#
|
|
|
|
# Don't initialize PrerenderContents object in StreamsPrivateAPI.
|
2023-01-05 13:55:00 -05:00
|
|
|
#
|
|
|
|
# Return nullptr from ExtensionsClient::Get and ExtensionRegistry::Get
|
|
|
|
# when extensions are disabled.
|
2017-08-03 18:55:19 -04:00
|
|
|
'name': 'extensions_1947',
|
|
|
|
},
|
2018-03-16 14:03:45 -04:00
|
|
|
{
|
|
|
|
# macOS: Fix undesirable switch to discrete GPU during startup.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2398
|
2018-07-25 14:58:25 -04: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 14:03:45 -04:00
|
|
|
},
|
2018-11-06 13:51:02 -05:00
|
|
|
{
|
|
|
|
# macOS: Make the NativeEventProcessor protocol dependency optional.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2539
|
|
|
|
'name': 'mac_event_observer_2539',
|
|
|
|
},
|
2018-11-06 17:27:26 -05:00
|
|
|
{
|
|
|
|
# macOS: Fix crash when scrolling in OSR mode.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2540
|
|
|
|
'name': 'mac_fling_scheduler_2540',
|
|
|
|
},
|
2018-09-20 06:00:14 -07: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 21:27:37 +00:00
|
|
|
},
|
2019-03-20 12:48:05 -04:00
|
|
|
{
|
|
|
|
# Linux: Load binaries from DIR_ASSETS.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/1936
|
|
|
|
'name': 'linux_assets_path_1936',
|
|
|
|
},
|
2021-08-24 17:33:27 -04: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 17:18:43 -04: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 02:50:25 +00:00
|
|
|
{
|
|
|
|
# Enhancements to NetworkService:
|
|
|
|
# - Add support for calling CookieMonster::SetCookieableSchemes.
|
2019-05-02 14:50:59 -04:00
|
|
|
# - Fix cache directory structure ("C:\temp\cache\cache\Cache" should be
|
|
|
|
# "C:\temp\cache\Cache").
|
2019-04-24 02:50:25 +00:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2622
|
2023-01-06 12:06:46 -05:00
|
|
|
#
|
|
|
|
# alloy: Avoid initialization of privacy sandbox and identity manager.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3434
|
2019-04-24 02:50:25 +00:00
|
|
|
'name': 'services_network_2622',
|
|
|
|
},
|
2019-07-12 16:44:43 -04:00
|
|
|
{
|
|
|
|
# Enhancements to NetworkService:
|
|
|
|
# - Remove the non-nullptr WebContents requirement from
|
|
|
|
# NetworkServiceClient::OnAuthRequired.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2718
|
2019-11-26 16:26:48 -05:00
|
|
|
#
|
2021-10-18 18:17:16 -04:00
|
|
|
# Change ContentBrowserClient::ConfigureNetworkContextParams return type to
|
|
|
|
# bool to support cancellation of NetworkContext creation during shutdown.
|
2020-07-20 13:49:16 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2985
|
2020-03-03 19:29:39 -05:00
|
|
|
#
|
|
|
|
# Compute correct default quota when cache_path is unspecified.
|
|
|
|
'name': 'services_network_2718',
|
2019-07-12 16:44:43 -04:00
|
|
|
},
|
2020-10-08 15:54:42 -04: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 14:39:35 -04:00
|
|
|
{
|
2019-04-16 14:38:48 +00: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 13:59:21 -04: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-16 18:19:56 -05: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 14:58:48 -04:00
|
|
|
#
|
|
|
|
# Add accessor for WebUIConfigMap::webui_controller_factory_.
|
2022-02-16 18:19:56 -05:00
|
|
|
'name': 'browser_web_ui_controller_factory',
|
|
|
|
},
|
2019-07-16 13:59:21 -04: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 16:09:04 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# Add support for OSR rendering with Viz.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2575
|
|
|
|
'name': 'viz_osr_2575',
|
2019-07-17 14:47:27 -04: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 12:10:17 -05:00
|
|
|
# - macOS: Fix error: no member named 'kCloudPrinterHandler' in namespace
|
|
|
|
# 'printing::features',
|
2019-07-17 14:47:27 -04:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/123
|
|
|
|
'name': 'print_preview_123',
|
2019-10-01 14:30:07 +03:00
|
|
|
},
|
2021-09-27 13:36:08 +03: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 14:30:07 +03:00
|
|
|
{
|
2022-09-26 15:30:45 -04:00
|
|
|
# Remove cef_sandbox dependency on boringssl functions.
|
2019-10-01 14:30:07 +03:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2743
|
2019-11-06 16:29:34 -05:00
|
|
|
#
|
2020-10-08 15:54:42 -04:00
|
|
|
# Enable the VS 2015 Update 2 fix when building with the MSVC standard
|
|
|
|
# library.
|
2022-08-22 21:37:40 -04:00
|
|
|
#
|
|
|
|
# Avoid usage of std::atomic_flag::test() added in C++20.
|
|
|
|
# https://github.com/llvm/llvm-project/issues/57364
|
2022-11-15 12:50:53 -05:00
|
|
|
#
|
|
|
|
# Avoid usage of PartitionAlloc assertions (PA_BASE_CHECK) in raw_ptr.h.
|
2020-10-08 15:54:42 -04:00
|
|
|
'name': 'base_sandbox_2743',
|
2019-11-26 19:04:19 +00: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 15:07:03 +02:00
|
|
|
{
|
2020-02-18 20:18:35 -05: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 15:07:03 +02:00
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2819
|
2020-02-18 20:18:35 -05:00
|
|
|
'name': 'win_cpp17_msvc_sandbox_2819',
|
2020-02-10 12:10:17 -05: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 15:41:07 -04:00
|
|
|
{
|
|
|
|
# Fix unbound AssociatedRemote error in SetBackgroundOpaque.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1070713
|
|
|
|
'name': 'renderer_host_1070713',
|
2020-05-11 18:12:20 -04: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 13:55:48 -04: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-11 18:12:20 -04:00
|
|
|
'name': 'browser_security_policy_1081397',
|
2020-05-22 14:56:02 -04:00
|
|
|
},
|
2020-06-27 16:43:23 -04:00
|
|
|
{
|
|
|
|
# Fix build errors with enable_background_mode=false.
|
|
|
|
# https://bugs.chromium.org/p/chromium/issues/detail?id=1100085
|
2021-02-23 15:08:33 -05:00
|
|
|
#
|
|
|
|
# Changes to support the Chrome runtime in CEF (app_controller_mac.mm).
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/2969
|
2020-06-27 16:43:23 -04:00
|
|
|
'name': 'chrome_browser_background_mode_1100085',
|
2020-08-28 18:39:23 -04:00
|
|
|
},
|
2020-11-18 15:52:37 -05: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 12:06:23 +03:00
|
|
|
},
|
2021-11-08 14:18:25 -05:00
|
|
|
{
|
|
|
|
# Windows: Fix crash when |sandbox_info| parameter is nullptr.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3210
|
|
|
|
'name': 'win_sandbox_3210',
|
2022-01-28 12:13:26 -05:00
|
|
|
},
|
2022-04-08 16:48:56 -04: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 14:58:48 -04: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 13:26:10 -04:00
|
|
|
# Linux: Support chaining of PrintingContextLinux callbacks.
|
|
|
|
# https://bitbucket.org/chromiumembedded/cef/issues/3314
|
2022-07-25 13:49:32 -04:00
|
|
|
# Also reverts the changes from https://crrev.com/db245883e1
|
2022-07-21 13:26:10 -04:00
|
|
|
'name': 'linux_printing_context',
|
2022-07-26 10:10:12 -07:00
|
|
|
},
|
2022-07-29 12:34:30 -04:00
|
|
|
{
|
|
|
|
# Fix deadlock in EmbeddedTestServer::ShutdownAndWaitUntilComplete.
|
|
|
|
# https://chromium-review.googlesource.com/c/chromium/src/+/3798752
|
|
|
|
'name': 'net_test_server_3798752'
|
2022-10-17 18:42:58 -07: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'
|
2019-12-31 18:50:40 +02:00
|
|
|
}
|
2012-04-03 01:34:16 +00:00
|
|
|
]
|