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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1034 // Setting this switch also causes Sync to be set up for a supervised user. | 1034 // Setting this switch also causes Sync to be set up for a supervised user. |
1035 const char kSupervisedUserSyncToken[] = "managed-user-sync-token"; | 1035 const char kSupervisedUserSyncToken[] = "managed-user-sync-token"; |
1036 | 1036 |
1037 // Frequency in Milliseconds for system log uploads. Should only be used for | 1037 // Frequency in Milliseconds for system log uploads. Should only be used for |
1038 // testing purposes. | 1038 // testing purposes. |
1039 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency"; | 1039 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency"; |
1040 | 1040 |
1041 // Passes the name of the current running automated test to Chrome. | 1041 // Passes the name of the current running automated test to Chrome. |
1042 const char kTestName[] = "test-name"; | 1042 const char kTestName[] = "test-name"; |
1043 | 1043 |
1044 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. | |
1045 // The value is the host:port of the trusted proxy. | |
1046 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; | |
1047 | |
1048 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1044 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
1049 // be used only by the upgrade process. | 1045 // be used only by the upgrade process. |
1050 const char kTryChromeAgain[] = "try-chrome-again"; | 1046 const char kTryChromeAgain[] = "try-chrome-again"; |
1051 | 1047 |
1052 // Overrides per-origin quota settings to unlimited storage for any | 1048 // Overrides per-origin quota settings to unlimited storage for any |
1053 // apps/origins. This should be used only for testing purpose. | 1049 // apps/origins. This should be used only for testing purpose. |
1054 const char kUnlimitedStorage[] = "unlimited-storage"; | 1050 const char kUnlimitedStorage[] = "unlimited-storage"; |
1055 | 1051 |
1056 // Treat given (insecure) origins as secure origins. Multiple origins can be | 1052 // Treat given (insecure) origins as secure origins. Multiple origins can be |
1057 // supplied. Has no effect unless --user-data-dir is also supplied. | 1053 // supplied. Has no effect unless --user-data-dir is also supplied. |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1396 | 1392 |
1397 // ----------------------------------------------------------------------------- | 1393 // ----------------------------------------------------------------------------- |
1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1394 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1399 // | 1395 // |
1400 // You were going to just dump your switches here, weren't you? Instead, please | 1396 // You were going to just dump your switches here, weren't you? Instead, please |
1401 // put them in alphabetical order above, or in order inside the appropriate | 1397 // put them in alphabetical order above, or in order inside the appropriate |
1402 // ifdef at the bottom. The order should match the header. | 1398 // ifdef at the bottom. The order should match the header. |
1403 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
1404 | 1400 |
1405 } // namespace switches | 1401 } // namespace switches |
OLD | NEW |