OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1375 // Boolean specifying whether to automatically sync all data types (including | 1375 // Boolean specifying whether to automatically sync all data types (including |
1376 // future ones, as they're added). If this is true, the following preferences | 1376 // future ones, as they're added). If this is true, the following preferences |
1377 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. | 1377 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. |
1378 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; | 1378 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; |
1379 | 1379 |
1380 // Booleans specifying whether the user has selected to sync the following | 1380 // Booleans specifying whether the user has selected to sync the following |
1381 // datatypes. | 1381 // datatypes. |
1382 const char kSyncBookmarks[] = "sync.bookmarks"; | 1382 const char kSyncBookmarks[] = "sync.bookmarks"; |
1383 const char kSyncPasswords[] = "sync.passwords"; | 1383 const char kSyncPasswords[] = "sync.passwords"; |
1384 const char kSyncPreferences[] = "sync.preferences"; | 1384 const char kSyncPreferences[] = "sync.preferences"; |
| 1385 const char kSyncAppNotifications[] = "sync.app_notifications"; |
| 1386 const char kSyncAppSettings[] = "sync.app_settings"; |
1385 const char kSyncApps[] = "sync.apps"; | 1387 const char kSyncApps[] = "sync.apps"; |
1386 const char kSyncAppNotifications[] = "sync.app_notifications"; | |
1387 const char kSyncAutofill[] = "sync.autofill"; | 1388 const char kSyncAutofill[] = "sync.autofill"; |
1388 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1389 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
1389 const char kSyncThemes[] = "sync.themes"; | 1390 const char kSyncThemes[] = "sync.themes"; |
1390 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1391 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1391 const char kSyncExtensions[] = "sync.extensions"; | 1392 const char kSyncExtensions[] = "sync.extensions"; |
1392 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1393 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
1393 const char kSyncSearchEngines[] = "sync.search_engines"; | 1394 const char kSyncSearchEngines[] = "sync.search_engines"; |
1394 const char kSyncSessions[] = "sync.sessions"; | 1395 const char kSyncSessions[] = "sync.sessions"; |
1395 | 1396 |
1396 // Boolean used by enterprise configuration management in order to lock down | 1397 // Boolean used by enterprise configuration management in order to lock down |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1633 | 1634 |
1634 // String that represents the recovery component last downloaded version. This | 1635 // String that represents the recovery component last downloaded version. This |
1635 // takes the usual 'a.b.c.d' notation. | 1636 // takes the usual 'a.b.c.d' notation. |
1636 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1637 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1637 | 1638 |
1638 // String that stores the component updater last known state. This is used for | 1639 // String that stores the component updater last known state. This is used for |
1639 // troubleshooting. | 1640 // troubleshooting. |
1640 const char kComponentUpdaterState[] = "component_updater.state"; | 1641 const char kComponentUpdaterState[] = "component_updater.state"; |
1641 | 1642 |
1642 } // namespace prefs | 1643 } // namespace prefs |
OLD | NEW |