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

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: Clean up and add test. Created 5 years, 9 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 3edff1d9c49408b5aa8df4567f33a49fdf4583ca..4b3eb9fd7acbfdad0d9e27ebb93ae98257236028 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -276,6 +276,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