| 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 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 // Indicates that stub implementations of the libcros library should be used. | 1095 // Indicates that stub implementations of the libcros library should be used. |
| 1096 // This is typically used to test the chromeos build of chrome on the desktop. | 1096 // This is typically used to test the chromeos build of chrome on the desktop. |
| 1097 const char kStubCros[] = "stub-cros"; | 1097 const char kStubCros[] = "stub-cros"; |
| 1098 | 1098 |
| 1099 // URL of the html page for Screen Saver. | 1099 // URL of the html page for Screen Saver. |
| 1100 const char kScreenSaverUrl[] = "screen-saver-url"; | 1100 const char kScreenSaverUrl[] = "screen-saver-url"; |
| 1101 | 1101 |
| 1102 // Flag to trigger ChromeOS system log compression during feedback submit. | 1102 // Flag to trigger ChromeOS system log compression during feedback submit. |
| 1103 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1103 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
| 1104 | 1104 |
| 1105 // Enables Advanced File System. | |
| 1106 const char kEnableAdvancedFileSystem[] = "enable-advanced-fs"; | |
| 1107 | |
| 1108 // Enables overriding the path for the default authentication extension. | 1105 // Enables overriding the path for the default authentication extension. |
| 1109 const char kAuthExtensionPath[] = "auth-ext-path"; | 1106 const char kAuthExtensionPath[] = "auth-ext-path"; |
| 1110 | 1107 |
| 1111 #ifndef NDEBUG | 1108 #ifndef NDEBUG |
| 1112 // Skips all other OOBE pages after user login. | 1109 // Skips all other OOBE pages after user login. |
| 1113 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; | 1110 const char kOobeSkipPostLogin[] = "oobe-skip-postlogin"; |
| 1114 | 1111 |
| 1115 // Enables overriding the path off file manager extension. | 1112 // Enables overriding the path off file manager extension. |
| 1116 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; | 1113 const char kFileManagerExtensionPath[] = "filemgr-ext-path"; |
| 1117 #endif | 1114 #endif |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 | 1237 |
| 1241 // ----------------------------------------------------------------------------- | 1238 // ----------------------------------------------------------------------------- |
| 1242 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1239 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1243 // | 1240 // |
| 1244 // You were going to just dump your switches here, weren't you? Instead, | 1241 // You were going to just dump your switches here, weren't you? Instead, |
| 1245 // please put them in alphabetical order above, or in order inside the | 1242 // please put them in alphabetical order above, or in order inside the |
| 1246 // appropriate ifdef at the bottom. The order should match the header. | 1243 // appropriate ifdef at the bottom. The order should match the header. |
| 1247 // ----------------------------------------------------------------------------- | 1244 // ----------------------------------------------------------------------------- |
| 1248 | 1245 |
| 1249 } // namespace switches | 1246 } // namespace switches |
| OLD | NEW |