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