| 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 | 393 |
| 394 // Disables syncing of dictionary. | 394 // Disables syncing of dictionary. |
| 395 const char kDisableSyncDictionary[] = "disable-sync-dictionary"; | 395 const char kDisableSyncDictionary[] = "disable-sync-dictionary"; |
| 396 | 396 |
| 397 // Disables syncing extension settings. | 397 // Disables syncing extension settings. |
| 398 const char kDisableSyncExtensionSettings[] = "disable-sync-extension-settings"; | 398 const char kDisableSyncExtensionSettings[] = "disable-sync-extension-settings"; |
| 399 | 399 |
| 400 // Disables syncing of extensions. | 400 // Disables syncing of extensions. |
| 401 const char kDisableSyncExtensions[] = "disable-sync-extensions"; | 401 const char kDisableSyncExtensions[] = "disable-sync-extensions"; |
| 402 | 402 |
| 403 // Disables syncing of history delete directives. | |
| 404 const char kDisableSyncHistoryDeleteDirectives[] = | |
| 405 "disable-sync-history-delete-directives"; | |
| 406 | |
| 407 // Disables syncing browser passwords. | 403 // Disables syncing browser passwords. |
| 408 const char kDisableSyncPasswords[] = "disable-sync-passwords"; | 404 const char kDisableSyncPasswords[] = "disable-sync-passwords"; |
| 409 | 405 |
| 410 // Disables syncing of preferences. | 406 // Disables syncing of preferences. |
| 411 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 407 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
| 412 | 408 |
| 413 // Disables syncing of priority preferences. | 409 // Disables syncing of priority preferences. |
| 414 const char kDisableSyncPriorityPreferences[] = | 410 const char kDisableSyncPriorityPreferences[] = |
| 415 "disable-sync-priority-preferences"; | 411 "disable-sync-priority-preferences"; |
| 416 | 412 |
| (...skipping 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1685 | 1681 |
| 1686 // ----------------------------------------------------------------------------- | 1682 // ----------------------------------------------------------------------------- |
| 1687 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1683 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1688 // | 1684 // |
| 1689 // You were going to just dump your switches here, weren't you? Instead, please | 1685 // You were going to just dump your switches here, weren't you? Instead, please |
| 1690 // put them in alphabetical order above, or in order inside the appropriate | 1686 // put them in alphabetical order above, or in order inside the appropriate |
| 1691 // ifdef at the bottom. The order should match the header. | 1687 // ifdef at the bottom. The order should match the header. |
| 1692 // ----------------------------------------------------------------------------- | 1688 // ----------------------------------------------------------------------------- |
| 1693 | 1689 |
| 1694 } // namespace switches | 1690 } // namespace switches |
| OLD | NEW |