| 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 1372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1383 // The value is the host:port of the trusted proxy. | 1383 // The value is the host:port of the trusted proxy. |
| 1384 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; | 1384 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; |
| 1385 | 1385 |
| 1386 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1386 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
| 1387 // be used only by the upgrade process. | 1387 // be used only by the upgrade process. |
| 1388 const char kTryChromeAgain[] = "try-chrome-again"; | 1388 const char kTryChromeAgain[] = "try-chrome-again"; |
| 1389 | 1389 |
| 1390 // Runs un-installation steps that were done by chrome first-run. | 1390 // Runs un-installation steps that were done by chrome first-run. |
| 1391 const char kUninstall[] = "uninstall"; | 1391 const char kUninstall[] = "uninstall"; |
| 1392 | 1392 |
| 1393 // Overrides per-origin quota settings to unlimited storage for any |
| 1394 // apps/origins. This should be used only for testing purpose. |
| 1395 const char kUnlimitedStorage[] = "unlimited-storage"; |
| 1396 |
| 1393 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary | 1397 // Uses Spdy for the transport protocol instead of HTTP. This is a temporary |
| 1394 // testing flag. | 1398 // testing flag. |
| 1395 const char kUseSpdy[] = "use-spdy"; | 1399 const char kUseSpdy[] = "use-spdy"; |
| 1396 | 1400 |
| 1397 // Disables use of the spelling web service and only provides suggestions. | 1401 // Disables use of the spelling web service and only provides suggestions. |
| 1398 // This will only work if asynchronous spell checking is not disabled. | 1402 // This will only work if asynchronous spell checking is not disabled. |
| 1399 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; | 1403 const char kUseSpellingSuggestions[] = "use-spelling-suggestions"; |
| 1400 | 1404 |
| 1401 // Sets the maximum SPDY sessions per domain. | 1405 // Sets the maximum SPDY sessions per domain. |
| 1402 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; | 1406 const char kMaxSpdySessionsPerDomain[] = "max-spdy-sessions-per-domain"; |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1701 | 1705 |
| 1702 // ----------------------------------------------------------------------------- | 1706 // ----------------------------------------------------------------------------- |
| 1703 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1707 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1704 // | 1708 // |
| 1705 // You were going to just dump your switches here, weren't you? Instead, please | 1709 // You were going to just dump your switches here, weren't you? Instead, please |
| 1706 // put them in alphabetical order above, or in order inside the appropriate | 1710 // put them in alphabetical order above, or in order inside the appropriate |
| 1707 // ifdef at the bottom. The order should match the header. | 1711 // ifdef at the bottom. The order should match the header. |
| 1708 // ----------------------------------------------------------------------------- | 1712 // ----------------------------------------------------------------------------- |
| 1709 | 1713 |
| 1710 } // namespace switches | 1714 } // namespace switches |
| OLD | NEW |