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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 | 395 |
396 // Disables syncing browser passwords. | 396 // Disables syncing browser passwords. |
397 const char kDisableSyncPasswords[] = "disable-sync-passwords"; | 397 const char kDisableSyncPasswords[] = "disable-sync-passwords"; |
398 | 398 |
399 // Disables syncing of preferences. | 399 // Disables syncing of preferences. |
400 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 400 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
401 | 401 |
402 // Disable syncing custom search engines. | 402 // Disable syncing custom search engines. |
403 const char kDisableSyncSearchEngines[] = "disable-sync-search-engines"; | 403 const char kDisableSyncSearchEngines[] = "disable-sync-search-engines"; |
404 | 404 |
| 405 // Disables synched notifications. |
| 406 const char kDisableSyncSyncedNotifications[] = |
| 407 "disable-sync-synced-notifications"; |
| 408 |
405 // Disables syncing browser sessions. Will override kEnableSyncTabs. | 409 // Disables syncing browser sessions. Will override kEnableSyncTabs. |
406 const char kDisableSyncTabs[] = "disable-sync-tabs"; | 410 const char kDisableSyncTabs[] = "disable-sync-tabs"; |
407 | 411 |
408 // Disables syncing of themes. | 412 // Disables syncing of themes. |
409 const char kDisableSyncThemes[] = "disable-sync-themes"; | 413 const char kDisableSyncThemes[] = "disable-sync-themes"; |
410 | 414 |
411 // Disables syncing browser typed urls. | 415 // Disables syncing browser typed urls. |
412 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; | 416 const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; |
413 | 417 |
414 // Allows disabling of translate from the command line to assist with automated | 418 // Allows disabling of translate from the command line to assist with automated |
(...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1614 | 1618 |
1615 // ----------------------------------------------------------------------------- | 1619 // ----------------------------------------------------------------------------- |
1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1620 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1617 // | 1621 // |
1618 // You were going to just dump your switches here, weren't you? Instead, please | 1622 // You were going to just dump your switches here, weren't you? Instead, please |
1619 // put them in alphabetical order above, or in order inside the appropriate | 1623 // put them in alphabetical order above, or in order inside the appropriate |
1620 // ifdef at the bottom. The order should match the header. | 1624 // ifdef at the bottom. The order should match the header. |
1621 // ----------------------------------------------------------------------------- | 1625 // ----------------------------------------------------------------------------- |
1622 | 1626 |
1623 } // namespace switches | 1627 } // namespace switches |
OLD | NEW |