summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/common/chrome_switches.cc14
-rw-r--r--chrome/common/chrome_switches.h2
2 files changed, 7 insertions, 9 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index d1bd254..e5068ba 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -249,9 +249,6 @@ const char kDebugEnableFrameToggle[] = "debug-enable-frame-toggle";
// apps.
const char kDebugPackedApps[] = "debug-packed-apps";
-// Enables support to debug printing subsystem.
-const char kDebugPrint[] = "debug-print";
-
// Triggers a plethora of diagnostic modes.
const char kDiagnostics[] = "diagnostics";
@@ -1189,11 +1186,6 @@ const char kPrerenderModeSwitchValueDisabled[] = "disabled";
// enabled: Prerendering.
const char kPrerenderModeSwitchValueEnabled[] = "enabled";
-#if defined(OS_WIN)
-// Enable conversion from vector to raster for any page.
-const char kPrintRaster[] = "print-raster";
-#endif
-
// Use IPv6 only for privet HTTP.
const char kPrivetIPv6Only[] = "privet-ipv6-only";
@@ -1625,6 +1617,9 @@ const char kUseMockKeychain[] = "use-mock-keychain";
const char kEnablePermissionsBubbles[] = "enable-permissions-bubbles";
#if defined(OS_WIN)
+// Enables support to debug printing subsystem.
+const char kDebugPrint[] = "debug-print";
+
// Force-enables the profile shortcut manager. This is needed for tests since
// they use a custom-user-data-dir which disables this.
const char kEnableProfileShortcutManager[] = "enable-profile-shortcut-manager";
@@ -1637,6 +1632,9 @@ const char kForceImmersive[] = "force-immersive";
// Windows 8 and higher. Used when relaunching metro Chrome.
const char kForceDesktop[] = "force-desktop";
+// Enable conversion from vector to raster for any page.
+const char kPrintRaster[] = "print-raster";
+
// Relaunches metro Chrome on Windows 8 and higher using a given shortcut.
const char kRelaunchShortcut[] = "relaunch-shortcut";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index 05ff656..dad72cd 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -79,7 +79,6 @@ extern const char kDataReductionProxyProbeURL[];
#endif
extern const char kDebugEnableFrameToggle[];
extern const char kDebugPackedApps[];
-extern const char kDebugPrint[];
extern const char kDiagnostics[];
extern const char kDiagnosticsFormat[];
extern const char kDiagnosticsRecovery[];
@@ -454,6 +453,7 @@ extern const char kUseMockKeychain[];
#endif
#if defined(OS_WIN)
+extern const char kDebugPrint[];
extern const char kEnableProfileShortcutManager[];
extern const char kForceImmersive[];
extern const char kForceDesktop[];