| 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 | 303 |
| 304 // Disable syncing browser data to a Google Account. | 304 // Disable syncing browser data to a Google Account. |
| 305 const char kDisableSync[] = "disable-sync"; | 305 const char kDisableSync[] = "disable-sync"; |
| 306 | 306 |
| 307 // Disable syncing of apps. | 307 // Disable syncing of apps. |
| 308 const char kDisableSyncApps[] = "disable-sync-apps"; | 308 const char kDisableSyncApps[] = "disable-sync-apps"; |
| 309 | 309 |
| 310 // Disable syncing of autofill. | 310 // Disable syncing of autofill. |
| 311 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 311 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
| 312 | 312 |
| 313 // Disable syncing of autofill Profile. |
| 314 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; |
| 315 |
| 313 // Disable syncing of bookmarks. | 316 // Disable syncing of bookmarks. |
| 314 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 317 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
| 315 | 318 |
| 316 // Disable syncing of extensions. | 319 // Disable syncing of extensions. |
| 317 const char kDisableSyncExtensions[] = "disable-sync-extensions"; | 320 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
| 318 | 321 |
| 319 // Disable syncing of preferences. | 322 // Disable syncing of preferences. |
| 320 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 323 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
| 321 | 324 |
| 322 // Disable syncing of themes. | 325 // Disable syncing of themes. |
| (...skipping 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 | 1338 |
| 1336 // ----------------------------------------------------------------------------- | 1339 // ----------------------------------------------------------------------------- |
| 1337 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1340 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1338 // | 1341 // |
| 1339 // You were going to just dump your switches here, weren't you? Instead, | 1342 // You were going to just dump your switches here, weren't you? Instead, |
| 1340 // please put them in alphabetical order above, or in order inside the | 1343 // please put them in alphabetical order above, or in order inside the |
| 1341 // appropriate ifdef at the bottom. The order should match the header. | 1344 // appropriate ifdef at the bottom. The order should match the header. |
| 1342 // ----------------------------------------------------------------------------- | 1345 // ----------------------------------------------------------------------------- |
| 1343 | 1346 |
| 1344 } // namespace switches | 1347 } // namespace switches |
| OLD | NEW |