| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 | 935 |
| 936 // Override the default server used for profile sync. | 936 // Override the default server used for profile sync. |
| 937 const char kSyncServiceURL[] = "sync-url"; | 937 const char kSyncServiceURL[] = "sync-url"; |
| 938 | 938 |
| 939 // Try to connect to XMPP using SSLTCP first (for testing). | 939 // Try to connect to XMPP using SSLTCP first (for testing). |
| 940 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 940 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
| 941 | 941 |
| 942 // Pass the name of the current running automated test to Chrome. | 942 // Pass the name of the current running automated test to Chrome. |
| 943 const char kTestName[] = "test-name"; | 943 const char kTestName[] = "test-name"; |
| 944 | 944 |
| 945 // Decay coefficient for estimatad cwnd based on idle time. |
| 946 const char kTcpSocketEstimatedCwndDecayCoef[] = |
| 947 "tcp-socket-estimated-cwnd-decay-coef"; |
| 948 |
| 945 // Runs the security test for the NaCl loader sandbox. | 949 // Runs the security test for the NaCl loader sandbox. |
| 946 const char kTestNaClSandbox[] = "test-nacl-sandbox"; | 950 const char kTestNaClSandbox[] = "test-nacl-sandbox"; |
| 947 | 951 |
| 948 // Pass the type of the current test harness ("browser" or "ui") | 952 // Pass the type of the current test harness ("browser" or "ui") |
| 949 const char kTestType[] = "test-type"; | 953 const char kTestType[] = "test-type"; |
| 950 | 954 |
| 951 // The value of this switch tells the app to listen for and broadcast | 955 // The value of this switch tells the app to listen for and broadcast |
| 952 // testing-related messages on IPC channel with the given ID. | 956 // testing-related messages on IPC channel with the given ID. |
| 953 const char kTestingChannelID[] = "testing-channel"; | 957 const char kTestingChannelID[] = "testing-channel"; |
| 954 | 958 |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1171 | 1175 |
| 1172 // ----------------------------------------------------------------------------- | 1176 // ----------------------------------------------------------------------------- |
| 1173 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1177 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1174 // | 1178 // |
| 1175 // You were going to just dump your switches here, weren't you? Instead, | 1179 // You were going to just dump your switches here, weren't you? Instead, |
| 1176 // please put them in alphabetical order above, or in order inside the | 1180 // please put them in alphabetical order above, or in order inside the |
| 1177 // appropriate ifdef at the bottom. The order should match the header. | 1181 // appropriate ifdef at the bottom. The order should match the header. |
| 1178 // ----------------------------------------------------------------------------- | 1182 // ----------------------------------------------------------------------------- |
| 1179 | 1183 |
| 1180 } // namespace switches | 1184 } // namespace switches |
| OLD | NEW |