| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 311 |
| 312 // Disable syncing browser data to a Google Account. | 312 // Disable syncing browser data to a Google Account. |
| 313 const char kDisableSync[] = "disable-sync"; | 313 const char kDisableSync[] = "disable-sync"; |
| 314 | 314 |
| 315 // Disable syncing of apps. | 315 // Disable syncing of apps. |
| 316 const char kDisableSyncApps[] = "disable-sync-apps"; | 316 const char kDisableSyncApps[] = "disable-sync-apps"; |
| 317 | 317 |
| 318 // Disable syncing of autofill. | 318 // Disable syncing of autofill. |
| 319 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 319 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
| 320 | 320 |
| 321 // Disable syncing of autofill Profile. |
| 322 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; |
| 323 |
| 321 // Disable syncing of bookmarks. | 324 // Disable syncing of bookmarks. |
| 322 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 325 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
| 323 | 326 |
| 324 // Disable syncing of extensions. | 327 // Disable syncing of extensions. |
| 325 const char kDisableSyncExtensions[] = "disable-sync-extensions"; | 328 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
| 326 | 329 |
| 327 // Disable syncing of preferences. | 330 // Disable syncing of preferences. |
| 328 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 331 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
| 329 | 332 |
| 330 // Disable syncing of themes. | 333 // Disable syncing of themes. |
| (...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1377 | 1380 |
| 1378 // ----------------------------------------------------------------------------- | 1381 // ----------------------------------------------------------------------------- |
| 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1380 // | 1383 // |
| 1381 // You were going to just dump your switches here, weren't you? Instead, | 1384 // You were going to just dump your switches here, weren't you? Instead, |
| 1382 // please put them in alphabetical order above, or in order inside the | 1385 // please put them in alphabetical order above, or in order inside the |
| 1383 // appropriate ifdef at the bottom. The order should match the header. | 1386 // appropriate ifdef at the bottom. The order should match the header. |
| 1384 // ----------------------------------------------------------------------------- | 1387 // ----------------------------------------------------------------------------- |
| 1385 | 1388 |
| 1386 } // namespace switches | 1389 } // namespace switches |
| OLD | NEW |