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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
894 // Override the default host used for sync notifications. Can be either | 894 // Override the default host used for sync notifications. Can be either |
895 // "host" or "host:port". | 895 // "host" or "host:port". |
896 const char kSyncNotificationHost[] = "sync-notification-host"; | 896 const char kSyncNotificationHost[] = "sync-notification-host"; |
897 | 897 |
898 // Override the default server used for profile sync. | 898 // Override the default server used for profile sync. |
899 const char kSyncServiceURL[] = "sync-url"; | 899 const char kSyncServiceURL[] = "sync-url"; |
900 | 900 |
901 // Try to connect to XMPP using SSLTCP first (for testing). | 901 // Try to connect to XMPP using SSLTCP first (for testing). |
902 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 902 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
903 | 903 |
904 // Use new experimental SyncerThread implementation and friends. | |
905 const char kNewSyncerThread[] = "new-syncer-thread"; | |
906 | |
907 // Pass the name of the current running automated test to Chrome. | 904 // Pass the name of the current running automated test to Chrome. |
908 const char kTestName[] = "test-name"; | 905 const char kTestName[] = "test-name"; |
909 | 906 |
910 // Runs the security test for the NaCl loader sandbox. | 907 // Runs the security test for the NaCl loader sandbox. |
911 const char kTestNaClSandbox[] = "test-nacl-sandbox"; | 908 const char kTestNaClSandbox[] = "test-nacl-sandbox"; |
912 | 909 |
913 // Pass the type of the current test harness ("browser" or "ui") | 910 // Pass the type of the current test harness ("browser" or "ui") |
914 const char kTestType[] = "test-type"; | 911 const char kTestType[] = "test-type"; |
915 | 912 |
916 // The value of this switch tells the app to listen for and broadcast | 913 // The value of this switch tells the app to listen for and broadcast |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1125 | 1122 |
1126 // ----------------------------------------------------------------------------- | 1123 // ----------------------------------------------------------------------------- |
1127 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1124 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1128 // | 1125 // |
1129 // You were going to just dump your switches here, weren't you? Instead, | 1126 // You were going to just dump your switches here, weren't you? Instead, |
1130 // please put them in alphabetical order above, or in order inside the | 1127 // please put them in alphabetical order above, or in order inside the |
1131 // appropriate ifdef at the bottom. The order should match the header. | 1128 // appropriate ifdef at the bottom. The order should match the header. |
1132 // ----------------------------------------------------------------------------- | 1129 // ----------------------------------------------------------------------------- |
1133 | 1130 |
1134 } // namespace switches | 1131 } // namespace switches |
OLD | NEW |