| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index 3bf87a329d212d91fe7e6057a4f04ab6180ce2e3..477eedd483d3a13532f17e2f273861ed8144e70f 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -792,6 +792,13 @@ const char kInstantURL[] = "instant-url";
|
| // Used for testing - keeps browser alive after last browser window closes.
|
| const char kKeepAliveForTest[] = "keep-alive-for-test";
|
|
|
| +// Enable Kiosk mode.
|
| +const char kKioskMode[] = "kiosk";
|
| +
|
| +// Print automatically in kiosk mode. |kKioskMode| must be set as well.
|
| +// See http://crbug.com/31395.
|
| +const char kKioskModePrinting[] = "kiosk-printing";
|
| +
|
| // Comma-separated list of directories with component extensions to load.
|
| const char kLoadComponentExtension[] = "load-component-extension";
|
|
|
| @@ -1438,15 +1445,6 @@ const char kRelauncherProcess[] = "relauncher";
|
| const char kUseMockKeychain[] = "use-mock-keychain";
|
| #endif
|
|
|
| -#if !defined(OS_MACOSX)
|
| -// Enables Kiosk mode.
|
| -const char kKioskMode[] = "kiosk";
|
| -
|
| -// Print automatically in kiosk mode. |kKioskMode| must be set as well.
|
| -// See http://crbug.com/31395.
|
| -const char kKioskModePrinting[] = "kiosk-printing";
|
| -#endif
|
| -
|
| #if defined(OS_WIN)
|
| // Disables profile desktop shortcuts handling, preventing their creation,
|
| // modification or removal.
|
|
|