Iridium is a free, open, and libre browser modification of the Chromium code base, with privacy being enhanced in several key areas. Automatic transmission of partial queries, keywords, metrics to central services is inhibited and only occurs with consent. WWW: https://iridiumbrowser.de/
20 lines
876 B
C++
20 lines
876 B
C++
--- chrome/common/url_constants.cc.orig 2017-04-24 14:40:29 UTC
|
|
+++ chrome/common/url_constants.cc
|
|
@@ -143,7 +143,7 @@ const char kChromeUIMdCupsSettingsURL[]
|
|
const char kChromeUIMetroFlowURL[] = "chrome://make-metro/";
|
|
#endif
|
|
|
|
-#if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
|
|
+#if ((defined(OS_BSD) || defined(OS_LINUX)) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
|
|
const char kChromeUITabModalConfirmDialogURL[] =
|
|
"chrome://tab-modal-confirm-dialog/";
|
|
#endif
|
|
@@ -337,7 +337,7 @@ const char kChromeOSAssetPath[] = "/usr/
|
|
const char kChromeUIMetroFlowHost[] = "make-metro";
|
|
#endif
|
|
|
|
-#if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
|
|
+#if ((defined(OS_BSD) || defined(OS_LINUX)) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
|
|
const char kChromeUITabModalConfirmDialogHost[] = "tab-modal-confirm-dialog";
|
|
#endif
|
|
|