| 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 1236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1247 const char kUninstall[] = "uninstall"; | 1247 const char kUninstall[] = "uninstall"; |
| 1248 | 1248 |
| 1249 // Overrides per-origin quota settings to unlimited storage for any | 1249 // Overrides per-origin quota settings to unlimited storage for any |
| 1250 // apps/origins. This should be used only for testing purpose. | 1250 // apps/origins. This should be used only for testing purpose. |
| 1251 const char kUnlimitedStorage[] = "unlimited-storage"; | 1251 const char kUnlimitedStorage[] = "unlimited-storage"; |
| 1252 | 1252 |
| 1253 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary | 1253 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary |
| 1254 // testing flag. | 1254 // testing flag. |
| 1255 const char kUseSpdy[] = "use-spdy"; | 1255 const char kUseSpdy[] = "use-spdy"; |
| 1256 | 1256 |
| 1257 // Disables use of the spelling web service and only provides suggestions. | |
| 1258 // This will only work if asynchronous spell checking is not disabled. | |
| 1259 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; | |
| 1260 | |
| 1261 // A string used to override the default user agent with a custom one. | 1257 // A string used to override the default user agent with a custom one. |
| 1262 const char kUserAgent[] = "user-agent"; | 1258 const char kUserAgent[] = "user-agent"; |
| 1263 | 1259 |
| 1264 // Specifies the user data directory, which is where the browser will look for | 1260 // Specifies the user data directory, which is where the browser will look for |
| 1265 // all of its state. | 1261 // all of its state. |
| 1266 const char kUserDataDir[] = "user-data-dir"; | 1262 const char kUserDataDir[] = "user-data-dir"; |
| 1267 | 1263 |
| 1268 // Examines a .crx for validity and prints the result. | 1264 // Examines a .crx for validity and prints the result. |
| 1269 const char kValidateCrx[] = "validate-crx"; | 1265 const char kValidateCrx[] = "validate-crx"; |
| 1270 | 1266 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 | 1437 |
| 1442 // ----------------------------------------------------------------------------- | 1438 // ----------------------------------------------------------------------------- |
| 1443 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1439 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1444 // | 1440 // |
| 1445 // You were going to just dump your switches here, weren't you? Instead, please | 1441 // You were going to just dump your switches here, weren't you? Instead, please |
| 1446 // put them in alphabetical order above, or in order inside the appropriate | 1442 // put them in alphabetical order above, or in order inside the appropriate |
| 1447 // ifdef at the bottom. The order should match the header. | 1443 // ifdef at the bottom. The order should match the header. |
| 1448 // ----------------------------------------------------------------------------- | 1444 // ----------------------------------------------------------------------------- |
| 1449 | 1445 |
| 1450 } // namespace switches | 1446 } // namespace switches |
| OLD | NEW |