summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-27 17:18:23 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-27 17:18:23 +0000
commit69ca222ea3b6a77e470de61fee4ea767641d9ace (patch)
tree44280108b6e8e9e736ae17695d2c4b6a3f674c6e
parent16e85862216223188c536a0412322cc6d40d6216 (diff)
downloadchromium_src-69ca222ea3b6a77e470de61fee4ea767641d9ace.zip
chromium_src-69ca222ea3b6a77e470de61fee4ea767641d9ace.tar.gz
chromium_src-69ca222ea3b6a77e470de61fee4ea767641d9ace.tar.bz2
Mac: Add flag for expose-for-tabs
BUG=50307 TEST=none Review URL: http://codereview.chromium.org/3020034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53798 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/common/chrome_switches.cc11
-rw-r--r--chrome/common/chrome_switches.h1
2 files changed, 8 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index e4f818d..ff73e13 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -1065,13 +1065,16 @@ const char kPasswordStore[] = "password-store";
#endif
#if defined(OS_MACOSX)
-// Cause the OS X sandbox write to syslog every time an access to a resource
-// is denied by the sandbox.
-const char kEnableSandboxLogging[] = "enable-sandbox-logging";
-
// Temporary flag to prevent Flash from negotiating the Core Animation drawing
// model. This will be removed once the last issues have been resolved.
const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation";
+
+// Enables the tabs expose feature ( http://crbug.com/50307 ).
+const char kEnableExposeForTabs[] = "enable-expose-for-tabs";
+
+// Cause the OS X sandbox write to syslog every time an access to a resource
+// is denied by the sandbox.
+const char kEnableSandboxLogging[] = "enable-sandbox-logging";
#else
// Enable Kiosk mode.
const char kKioskMode[] = "kiosk";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index d77ed2c..e84a675 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -320,6 +320,7 @@ extern const char kPasswordStore[];
#if defined(OS_MACOSX)
extern const char kDisableFlashCoreAnimation[];
+extern const char kEnableExposeForTabs[];
extern const char kEnableSandboxLogging[];
#else
extern const char kKioskMode[];