| 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 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 // Boolean specifying whether to automatically sync all data types (including | 1367 // Boolean specifying whether to automatically sync all data types (including |
| 1368 // future ones, as they're added). If this is true, the following preferences | 1368 // future ones, as they're added). If this is true, the following preferences |
| 1369 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. | 1369 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. |
| 1370 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; | 1370 const char kSyncKeepEverythingSynced[] = "sync.keep_everything_synced"; |
| 1371 | 1371 |
| 1372 // Booleans specifying whether the user has selected to sync the following | 1372 // Booleans specifying whether the user has selected to sync the following |
| 1373 // datatypes. | 1373 // datatypes. |
| 1374 const char kSyncBookmarks[] = "sync.bookmarks"; | 1374 const char kSyncBookmarks[] = "sync.bookmarks"; |
| 1375 const char kSyncPasswords[] = "sync.passwords"; | 1375 const char kSyncPasswords[] = "sync.passwords"; |
| 1376 const char kSyncPreferences[] = "sync.preferences"; | 1376 const char kSyncPreferences[] = "sync.preferences"; |
| 1377 const char kSyncAppNotifications[] = "sync.app_notifications"; |
| 1378 const char kSyncAppSettings[] = "sync.app_settings"; |
| 1377 const char kSyncApps[] = "sync.apps"; | 1379 const char kSyncApps[] = "sync.apps"; |
| 1378 const char kSyncAppNotifications[] = "sync.app_notifications"; | |
| 1379 const char kSyncAutofill[] = "sync.autofill"; | 1380 const char kSyncAutofill[] = "sync.autofill"; |
| 1380 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1381 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
| 1381 const char kSyncThemes[] = "sync.themes"; | 1382 const char kSyncThemes[] = "sync.themes"; |
| 1382 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1383 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 1383 const char kSyncExtensions[] = "sync.extensions"; | 1384 const char kSyncExtensions[] = "sync.extensions"; |
| 1384 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1385 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
| 1385 const char kSyncSearchEngines[] = "sync.search_engines"; | 1386 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 1386 const char kSyncSessions[] = "sync.sessions"; | 1387 const char kSyncSessions[] = "sync.sessions"; |
| 1387 | 1388 |
| 1388 // Boolean used by enterprise configuration management in order to lock down | 1389 // Boolean used by enterprise configuration management in order to lock down |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1625 | 1626 |
| 1626 // String that represents the recovery component last downloaded version. This | 1627 // String that represents the recovery component last downloaded version. This |
| 1627 // takes the usual 'a.b.c.d' notation. | 1628 // takes the usual 'a.b.c.d' notation. |
| 1628 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1629 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
| 1629 | 1630 |
| 1630 // String that stores the component updater last known state. This is used for | 1631 // String that stores the component updater last known state. This is used for |
| 1631 // troubleshooting. | 1632 // troubleshooting. |
| 1632 const char kComponentUpdaterState[] = "component_updater.state"; | 1633 const char kComponentUpdaterState[] = "component_updater.state"; |
| 1633 | 1634 |
| 1634 } // namespace prefs | 1635 } // namespace prefs |
| OLD | NEW |