OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1106 | 1106 |
1107 // URL of the html page for Screen Saver. | 1107 // URL of the html page for Screen Saver. |
1108 const char kScreenSaverUrl[] = "screen-saver-url"; | 1108 const char kScreenSaverUrl[] = "screen-saver-url"; |
1109 | 1109 |
1110 // Flag to trigger ChromeOS system log compression during feedback submit. | 1110 // Flag to trigger ChromeOS system log compression during feedback submit. |
1111 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1111 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
1112 | 1112 |
1113 // Enables overriding the path for the default authentication extension. | 1113 // Enables overriding the path for the default authentication extension. |
1114 const char kAuthExtensionPath[] = "auth-ext-path"; | 1114 const char kAuthExtensionPath[] = "auth-ext-path"; |
1115 | 1115 |
| 1116 // Enables archive file (zip) handling in file manager. |
| 1117 const char kEnableArchives[] = "enable-archives"; |
| 1118 |
1116 #ifndef NDEBUG | 1119 #ifndef NDEBUG |
1117 // Skips all other OOBE pages after user login. | 1120 // Skips all other OOBE pages after user login. |
1118 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 1121 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
1119 | 1122 |
1120 // Enables overriding the path off file manager extension. | 1123 // Enables overriding the path off file manager extension. |
1121 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; | 1124 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; |
1122 #endif | 1125 #endif |
1123 #endif | 1126 #endif |
1124 | 1127 |
1125 #if defined(OS_MACOSX) || defined(OS_WIN) | 1128 #if defined(OS_MACOSX) || defined(OS_WIN) |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1237 | 1240 |
1238 // ----------------------------------------------------------------------------- | 1241 // ----------------------------------------------------------------------------- |
1239 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1242 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1240 // | 1243 // |
1241 // You were going to just dump your switches here, weren't you? Instead, | 1244 // You were going to just dump your switches here, weren't you? Instead, |
1242 // please put them in alphabetical order above, or in order inside the | 1245 // please put them in alphabetical order above, or in order inside the |
1243 // appropriate ifdef at the bottom. The order should match the header. | 1246 // appropriate ifdef at the bottom. The order should match the header. |
1244 // ----------------------------------------------------------------------------- | 1247 // ----------------------------------------------------------------------------- |
1245 | 1248 |
1246 } // namespace switches | 1249 } // namespace switches |
OLD | NEW |