aboutsummaryrefslogtreecommitdiff
path: root/devel/electron32/files/patch-chrome_browser_global__desktop__features.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron32/files/patch-chrome_browser_global__desktop__features.h')
-rw-r--r--devel/electron32/files/patch-chrome_browser_global__desktop__features.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/devel/electron32/files/patch-chrome_browser_global__desktop__features.h b/devel/electron32/files/patch-chrome_browser_global__desktop__features.h
deleted file mode 100644
index 6f4640052de5..000000000000
--- a/devel/electron32/files/patch-chrome_browser_global__desktop__features.h
+++ /dev/null
@@ -1,38 +0,0 @@
---- chrome/browser/global_desktop_features.h.orig 2024-08-14 20:54:35 UTC
-+++ chrome/browser/global_desktop_features.h
-@@ -9,7 +9,7 @@ namespace whats_new {
- #include "build/build_config.h"
-
- namespace whats_new {
--#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
-+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- class WhatsNewRegistry;
- #endif
- } // namespace whats_new
-@@ -37,7 +37,7 @@ class GlobalDesktopFeatures {
- // Public accessors for features, e.g.
- // FooFeature* foo_feature() { return foo_feature_.get(); }
-
--#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
-+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- whats_new::WhatsNewRegistry* whats_new_registry() {
- return whats_new_registry_.get();
- }
-@@ -50,7 +50,7 @@ class GlobalDesktopFeatures {
- // testing. e.g.
- // virtual std::unique_ptr<FooFeature> CreateFooFeature();
-
--#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
-+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- virtual std::unique_ptr<whats_new::WhatsNewRegistry> CreateWhatsNewRegistry();
- #endif
-
-@@ -58,7 +58,7 @@ class GlobalDesktopFeatures {
- // Features will each have a controller. e.g.
- // std::unique_ptr<FooFeature> foo_feature_;
-
--#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
-+#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
- std::unique_ptr<whats_new::WhatsNewRegistry> whats_new_registry_;
- #endif
- };