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 1348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1359 // datatypes. | 1359 // datatypes. |
1360 const char kSyncBookmarks[] = "sync.bookmarks"; | 1360 const char kSyncBookmarks[] = "sync.bookmarks"; |
1361 const char kSyncPasswords[] = "sync.passwords"; | 1361 const char kSyncPasswords[] = "sync.passwords"; |
1362 const char kSyncPreferences[] = "sync.preferences"; | 1362 const char kSyncPreferences[] = "sync.preferences"; |
1363 const char kSyncApps[] = "sync.apps"; | 1363 const char kSyncApps[] = "sync.apps"; |
1364 const char kSyncAutofill[] = "sync.autofill"; | 1364 const char kSyncAutofill[] = "sync.autofill"; |
1365 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1365 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
1366 const char kSyncThemes[] = "sync.themes"; | 1366 const char kSyncThemes[] = "sync.themes"; |
1367 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1367 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1368 const char kSyncExtensions[] = "sync.extensions"; | 1368 const char kSyncExtensions[] = "sync.extensions"; |
| 1369 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
1369 const char kSyncSearchEngines[] = "sync.search_engines"; | 1370 const char kSyncSearchEngines[] = "sync.search_engines"; |
1370 const char kSyncSessions[] = "sync.sessions"; | 1371 const char kSyncSessions[] = "sync.sessions"; |
1371 | 1372 |
1372 // Boolean used by enterprise configuration management in order to lock down | 1373 // Boolean used by enterprise configuration management in order to lock down |
1373 // sync. | 1374 // sync. |
1374 const char kSyncManaged[] = "sync.managed"; | 1375 const char kSyncManaged[] = "sync.managed"; |
1375 | 1376 |
1376 // Boolean to prevent sync from automatically starting up. This is | 1377 // Boolean to prevent sync from automatically starting up. This is |
1377 // used when sync is disabled by the user via the privacy dashboard. | 1378 // used when sync is disabled by the user via the privacy dashboard. |
1378 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1379 const char kSyncSuppressStart[] = "sync.suppress_start"; |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1586 // specified. | 1587 // specified. |
1587 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1588 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1588 | 1589 |
1589 // Integers that specify the policy refresh rate for device- and user-policy in | 1590 // Integers that specify the policy refresh rate for device- and user-policy in |
1590 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1591 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1591 // by the cloud policy subsystem. | 1592 // by the cloud policy subsystem. |
1592 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1593 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1593 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1594 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1594 | 1595 |
1595 } // namespace prefs | 1596 } // namespace prefs |
OLD | NEW |