| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1242 // Attempts to perform Chrome OS offline and online login in parallel. | 1242 // Attempts to perform Chrome OS offline and online login in parallel. |
| 1243 const char kParallelAuth[] = "parallel-auth"; | 1243 const char kParallelAuth[] = "parallel-auth"; |
| 1244 | 1244 |
| 1245 // Uses the given language for UI in the input method candidate window. | 1245 // Uses the given language for UI in the input method candidate window. |
| 1246 const char kCandidateWindowLang[] = "lang"; | 1246 const char kCandidateWindowLang[] = "lang"; |
| 1247 | 1247 |
| 1248 // Indicates that the browser is in "browse without sign-in" (Guest session) | 1248 // Indicates that the browser is in "browse without sign-in" (Guest session) |
| 1249 // mode. Should completely disable extensions, sync and bookmarks. | 1249 // mode. Should completely disable extensions, sync and bookmarks. |
| 1250 const char kGuestSession[] = "bwsi"; | 1250 const char kGuestSession[] = "bwsi"; |
| 1251 | 1251 |
| 1252 // Show volume controls in status bar on ChromeOS. |
| 1253 const char kShowVolumeStatus[] = "show-volume-status"; |
| 1254 |
| 1252 // Indicates that stub implementations of the libcros library should be used. | 1255 // Indicates that stub implementations of the libcros library should be used. |
| 1253 // This is typically used to test the chromeos build of chrome on the desktop. | 1256 // This is typically used to test the chromeos build of chrome on the desktop. |
| 1254 const char kStubCros[] = "stub-cros"; | 1257 const char kStubCros[] = "stub-cros"; |
| 1255 | 1258 |
| 1256 // Indicates that a stub implementation of CrosSettings that stores settings in | 1259 // Indicates that a stub implementation of CrosSettings that stores settings in |
| 1257 // memory without signing should be used, treating current user as the owner. | 1260 // memory without signing should be used, treating current user as the owner. |
| 1258 // This option is for testing the chromeos build of chrome on the desktop only. | 1261 // This option is for testing the chromeos build of chrome on the desktop only. |
| 1259 const char kStubCrosSettings[] = "stub-cros-settings"; | 1262 const char kStubCrosSettings[] = "stub-cros-settings"; |
| 1260 | 1263 |
| 1261 // URL of the html page for Screen Saver. | 1264 // URL of the html page for Screen Saver. |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 | 1370 |
| 1368 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
| 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1370 // | 1373 // |
| 1371 // You were going to just dump your switches here, weren't you? Instead, please | 1374 // You were going to just dump your switches here, weren't you? Instead, please |
| 1372 // put them in alphabetical order above, or in order inside the appropriate | 1375 // put them in alphabetical order above, or in order inside the appropriate |
| 1373 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
| 1374 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
| 1375 | 1378 |
| 1376 } // namespace switches | 1379 } // namespace switches |
| OLD | NEW |