| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index ef26499b427593a2ddaafa766c43471374bd5d6c..e91f5d12f2a6020cef6018d81326d30688be80a7 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
|
|
|