Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Unified Diff: chrome/common/chrome_switches.cc

Issue 1028543002: Turn the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Type converter arg change. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index c452036fb5d6b8f84a0fc66e04e3afdef5dfdabd..70a139667d0a5bc9bacf2595e00fb0974f7b556b 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -282,6 +282,9 @@ const char kDisableIPv6[] = "disable-ipv6";
const char kDisableMinimizeOnSecondLauncherItemClick[] =
"disable-minimize-on-second-launcher-item-click";
+// Disable using Mojo for utility process services.
+const char kDisableMojoUtilityServices[] = "disable-mojo-utility-services";
+
// Disables the new bookmark app system.
const char kDisableNewBookmarkApps[] = "disable-new-bookmark-apps";
@@ -1393,6 +1396,15 @@ bool PdfMaterialUIEnabled() {
return false;
}
+bool MojoUtilityServicesEnabled() {
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+ kDisableMojoUtilityServices)) {
+ return false;
+ }
+
+ return true;
+}
+
bool SettingsWindowEnabled() {
#if defined(OS_CHROMEOS)
return !base::CommandLine::ForCurrentProcess()->HasSwitch(

Powered by Google App Engine
This is Rietveld 408576698