OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 | 206 |
207 // Enable shared workers. Functionality not yet complete. | 207 // Enable shared workers. Functionality not yet complete. |
208 const char kDisableSharedWorkers[] = "disable-shared-workers"; | 208 const char kDisableSharedWorkers[] = "disable-shared-workers"; |
209 | 209 |
210 // Disable site-specific tailoring to compatibility issues in WebKit. | 210 // Disable site-specific tailoring to compatibility issues in WebKit. |
211 const char kDisableSiteSpecificQuirks[] = "disable-site-specific-quirks"; | 211 const char kDisableSiteSpecificQuirks[] = "disable-site-specific-quirks"; |
212 | 212 |
213 // Disable syncing browser data to a Google Account. | 213 // Disable syncing browser data to a Google Account. |
214 const char kDisableSync[] = "disable-sync"; | 214 const char kDisableSync[] = "disable-sync"; |
215 | 215 |
| 216 // Disable syncing of apps. |
| 217 const char kDisableSyncApps[] = "disable-sync-apps"; |
| 218 |
216 // Disable syncing of autofill. | 219 // Disable syncing of autofill. |
217 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 220 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
218 | 221 |
219 // Disable syncing of bookmarks. | 222 // Disable syncing of bookmarks. |
220 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 223 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
221 | 224 |
222 // Disable syncing of extensions. | 225 // Disable syncing of extensions. |
223 const char kDisableSyncExtensions[] = "disable-sync-extensions"; | 226 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
224 | 227 |
225 // Disable syncing of passwords. | 228 // Disable syncing of passwords. |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 | 394 |
392 // Enables speech input. | 395 // Enables speech input. |
393 const char kEnableSpeechInput[] = "enable-speech-input"; | 396 const char kEnableSpeechInput[] = "enable-speech-input"; |
394 | 397 |
395 // Enables StatsTable, logging statistics to a global named shared memory table. | 398 // Enables StatsTable, logging statistics to a global named shared memory table. |
396 const char kEnableStatsTable[] = "enable-stats-table"; | 399 const char kEnableStatsTable[] = "enable-stats-table"; |
397 | 400 |
398 // Enable syncing browser data to a Google Account. | 401 // Enable syncing browser data to a Google Account. |
399 const char kEnableSync[] = "enable-sync"; | 402 const char kEnableSync[] = "enable-sync"; |
400 | 403 |
| 404 // Enable syncing browser apps. |
| 405 const char kEnableSyncApps[] = "enable-sync-apps"; |
| 406 |
401 // Enable syncing browser autofill. | 407 // Enable syncing browser autofill. |
402 const char kEnableSyncAutofill[] = "enable-sync-autofill"; | 408 const char kEnableSyncAutofill[] = "enable-sync-autofill"; |
403 | 409 |
404 // Enable syncing browser bookmarks. | 410 // Enable syncing browser bookmarks. |
405 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; | 411 const char kEnableSyncBookmarks[] = "enable-sync-bookmarks"; |
406 | 412 |
407 // Enable syncing browser extensions. | 413 // Enable syncing browser extensions. |
408 const char kEnableSyncExtensions[] = "enable-sync-extensions"; | 414 const char kEnableSyncExtensions[] = "enable-sync-extensions"; |
409 | 415 |
410 // Enable syncing browser passwords. | 416 // Enable syncing browser passwords. |
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 | 1146 |
1141 // ----------------------------------------------------------------------------- | 1147 // ----------------------------------------------------------------------------- |
1142 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1148 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1143 // | 1149 // |
1144 // You were going to just dump your switches here, weren't you? Instead, | 1150 // You were going to just dump your switches here, weren't you? Instead, |
1145 // please put them in alphabetical order above, or in order inside the | 1151 // please put them in alphabetical order above, or in order inside the |
1146 // appropriate ifdef at the bottom. The order should match the header. | 1152 // appropriate ifdef at the bottom. The order should match the header. |
1147 // ----------------------------------------------------------------------------- | 1153 // ----------------------------------------------------------------------------- |
1148 | 1154 |
1149 } // namespace switches | 1155 } // namespace switches |
OLD | NEW |