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 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
963 // Override the default notification method for sync. | 963 // Override the default notification method for sync. |
964 const char kSyncNotificationMethod[] = "sync-notification-method"; | 964 const char kSyncNotificationMethod[] = "sync-notification-method"; |
965 | 965 |
966 // Override the default host used for sync notifications. Can be either | 966 // Override the default host used for sync notifications. Can be either |
967 // "host" or "host:port". | 967 // "host" or "host:port". |
968 const char kSyncNotificationHost[] = "sync-notification-host"; | 968 const char kSyncNotificationHost[] = "sync-notification-host"; |
969 | 969 |
970 // Override the default server used for profile sync. | 970 // Override the default server used for profile sync. |
971 const char kSyncServiceURL[] = "sync-url"; | 971 const char kSyncServiceURL[] = "sync-url"; |
972 | 972 |
| 973 // Show the sync promo on the new tab page. |
| 974 const char kSyncShowPromo[] = "sync-show-promo"; |
| 975 |
973 // Try to connect to XMPP using SSLTCP first (for testing). | 976 // Try to connect to XMPP using SSLTCP first (for testing). |
974 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 977 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
975 | 978 |
976 // Pass the name of the current running automated test to Chrome. | 979 // Pass the name of the current running automated test to Chrome. |
977 const char kTestName[] = "test-name"; | 980 const char kTestName[] = "test-name"; |
978 | 981 |
979 // Runs the security test for the NaCl loader sandbox. | 982 // Runs the security test for the NaCl loader sandbox. |
980 const char kTestNaClSandbox[] = "test-nacl-sandbox"; | 983 const char kTestNaClSandbox[] = "test-nacl-sandbox"; |
981 | 984 |
982 // Pass the type of the current test harness ("browser" or "ui") | 985 // Pass the type of the current test harness ("browser" or "ui") |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1219 | 1222 |
1220 // ----------------------------------------------------------------------------- | 1223 // ----------------------------------------------------------------------------- |
1221 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1224 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1222 // | 1225 // |
1223 // You were going to just dump your switches here, weren't you? Instead, | 1226 // You were going to just dump your switches here, weren't you? Instead, |
1224 // please put them in alphabetical order above, or in order inside the | 1227 // please put them in alphabetical order above, or in order inside the |
1225 // appropriate ifdef at the bottom. The order should match the header. | 1228 // appropriate ifdef at the bottom. The order should match the header. |
1226 // ----------------------------------------------------------------------------- | 1229 // ----------------------------------------------------------------------------- |
1227 | 1230 |
1228 } // namespace switches | 1231 } // namespace switches |
OLD | NEW |