diff options
-rw-r--r-- | chrome/common/chrome_switches.cc | 11 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
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[]; |