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

Unified Diff: chrome/common/chrome_switches.cc

Issue 1300763002: Add a flag to enable open in window for hosted apps on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@disable-new-bookmark-apps
Patch Set: Launch logic in app info summary panel Created 5 years, 4 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 a18553e675126281e253c1584f94deba0a3c41ab..3bfc3a12c60ff62225f9bebbb2b573fb6b8e0a89 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -269,6 +269,9 @@ const char kDisableExtensionsHttpThrottling[] =
// Disable field trial tests configured in fieldtrial_testing_config.json.
const char kDisableFieldTrialTestingConfig[] = "disable-field-trial-config";
+// Prevents hosted apps from being opened in windows on Mac.
+const char kDisableHostedAppsInWindows[] = "disable-hosted-apps-in-windows";
+
// Disable the behavior that the second click on a launcher item (the click when
// the item is already active) minimizes the item.
const char kDisableMinimizeOnSecondLauncherItemClick[] =
@@ -436,6 +439,9 @@ const char kEnableExtensionActivityLogTesting[] =
// crbug.com/142458 .
const char kEnableFastUnload[] = "enable-fast-unload";
+// Allows hosted apps to be opened in windows on Mac.
+const char kEnableHostedAppsInWindows[] = "enable-hosted-apps-in-windows";
+
// Enables support for the QUIC protocol for insecure schemes (http://).
// This is a temporary testing flag.
const char kEnableInsecureQuic[] = "enable-insecure-quic";

Powered by Google App Engine
This is Rietveld 408576698