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 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1012 // Override the default host used for sync notifications. Can be either | 1012 // Override the default host used for sync notifications. Can be either |
1013 // "host" or "host:port". | 1013 // "host" or "host:port". |
1014 const char kSyncNotificationHost[] = "sync-notification-host"; | 1014 const char kSyncNotificationHost[] = "sync-notification-host"; |
1015 | 1015 |
1016 // Override the default server used for profile sync. | 1016 // Override the default server used for profile sync. |
1017 const char kSyncServiceURL[] = "sync-url"; | 1017 const char kSyncServiceURL[] = "sync-url"; |
1018 | 1018 |
1019 // Try to connect to XMPP using SSLTCP first (for testing). | 1019 // Try to connect to XMPP using SSLTCP first (for testing). |
1020 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 1020 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
1021 | 1021 |
1022 // Use new experimental SyncerThread implementation and friends. | |
1023 const char kNewSyncerThread[] = "new-syncer-thread"; | |
1024 | |
1025 // Pass the name of the current running automated test to Chrome. | 1022 // Pass the name of the current running automated test to Chrome. |
1026 const char kTestName[] = "test-name"; | 1023 const char kTestName[] = "test-name"; |
1027 | 1024 |
1028 // Runs the security test for the NaCl loader sandbox. | 1025 // Runs the security test for the NaCl loader sandbox. |
1029 const char kTestNaClSandbox[] = "test-nacl-sandbox"; | 1026 const char kTestNaClSandbox[] = "test-nacl-sandbox"; |
1030 | 1027 |
1031 // Pass the type of the current test harness ("browser" or "ui") | 1028 // Pass the type of the current test harness ("browser" or "ui") |
1032 const char kTestType[] = "test-type"; | 1029 const char kTestType[] = "test-type"; |
1033 | 1030 |
1034 // The value of this switch tells the app to listen for and broadcast | 1031 // The value of this switch tells the app to listen for and broadcast |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1239 | 1236 |
1240 // ----------------------------------------------------------------------------- | 1237 // ----------------------------------------------------------------------------- |
1241 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1238 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1242 // | 1239 // |
1243 // You were going to just dump your switches here, weren't you? Instead, | 1240 // You were going to just dump your switches here, weren't you? Instead, |
1244 // please put them in alphabetical order above, or in order inside the | 1241 // please put them in alphabetical order above, or in order inside the |
1245 // appropriate ifdef at the bottom. The order should match the header. | 1242 // appropriate ifdef at the bottom. The order should match the header. |
1246 // ----------------------------------------------------------------------------- | 1243 // ----------------------------------------------------------------------------- |
1247 | 1244 |
1248 } // namespace switches | 1245 } // namespace switches |
OLD | NEW |