diff options
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index ef26499..e91f5d1 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -203,6 +203,9 @@ const char kEnableMonitorProfile[] = "enable-monitor-profile"; // Enable Native Web Worker support const char kEnableNativeWebWorkers[] = "enable-native-web-workers"; +// Enable AutoFill++. +const char kEnableNewAutoFill[] = "enable-new-autofill"; + // Enable remote web font support. SVG font should always work whether // this option is specified or not. const char kEnableRemoteFonts[] = "enable-remote-fonts"; @@ -304,6 +307,11 @@ const char kInternalNaCl[] = "internal-nacl"; // Specifies the flags passed to JS engine const char kJavaScriptFlags[] = "js-flags"; +#if !defined(OS_MACOSX) +// Enable Kiosk mode. +const char kKioskMode[] = "kiosk"; +#endif + // Load an extension from the specified directory. const char kLoadExtension[] = "load-extension"; @@ -692,7 +700,4 @@ const char kGearsPluginPathOverride[] = "gears-plugin-path"; // appropriate ifdef at the bottom. The order should match the header. // ----------------------------------------------------------------------------- -// Enable AutoFill++. -const char kEnableNewAutoFill[] = "enable-new-autofill"; - } // namespace switches |