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 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 | 1093 |
1094 // Invalidates any login info passed into sync's XMPP connection. | 1094 // Invalidates any login info passed into sync's XMPP connection. |
1095 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; | 1095 const char kSyncInvalidateXmppLogin[] = "sync-invalidate-xmpp-login"; |
1096 | 1096 |
1097 // Overrides the default notification method for sync. | 1097 // Overrides the default notification method for sync. |
1098 const char kSyncNotificationMethod[] = "sync-notification-method"; | 1098 const char kSyncNotificationMethod[] = "sync-notification-method"; |
1099 | 1099 |
1100 // Overrides the default host:port used for sync notifications. | 1100 // Overrides the default host:port used for sync notifications. |
1101 const char kSyncNotificationHostPort[] = "sync-notification-host-port"; | 1101 const char kSyncNotificationHostPort[] = "sync-notification-host-port"; |
1102 | 1102 |
1103 // Specifies the sync promo version to display. | |
1104 const char kSyncPromoVersion[] = "sync-promo-version"; | |
1105 | |
1106 // Overrides the default server used for profile sync. | 1103 // Overrides the default server used for profile sync. |
1107 const char kSyncServiceURL[] = "sync-url"; | 1104 const char kSyncServiceURL[] = "sync-url"; |
1108 | 1105 |
1109 // Makes the sync code to throw an unrecoverable error after initialization. | 1106 // Makes the sync code to throw an unrecoverable error after initialization. |
1110 // Useful for testing unrecoverable error scenarios. | 1107 // Useful for testing unrecoverable error scenarios. |
1111 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; | 1108 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; |
1112 | 1109 |
1113 | 1110 |
1114 // Tries to connect to XMPP using SSLTCP first (for testing). | 1111 // Tries to connect to XMPP using SSLTCP first (for testing). |
1115 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 1112 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1355 | 1352 |
1356 // ----------------------------------------------------------------------------- | 1353 // ----------------------------------------------------------------------------- |
1357 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1354 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1358 // | 1355 // |
1359 // You were going to just dump your switches here, weren't you? Instead, please | 1356 // You were going to just dump your switches here, weren't you? Instead, please |
1360 // put them in alphabetical order above, or in order inside the appropriate | 1357 // put them in alphabetical order above, or in order inside the appropriate |
1361 // ifdef at the bottom. The order should match the header. | 1358 // ifdef at the bottom. The order should match the header. |
1362 // ----------------------------------------------------------------------------- | 1359 // ----------------------------------------------------------------------------- |
1363 | 1360 |
1364 } // namespace switches | 1361 } // namespace switches |
OLD | NEW |