| 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 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1348 // datatypes. | 1348 // datatypes. |
| 1349 const char kSyncBookmarks[] = "sync.bookmarks"; | 1349 const char kSyncBookmarks[] = "sync.bookmarks"; |
| 1350 const char kSyncPasswords[] = "sync.passwords"; | 1350 const char kSyncPasswords[] = "sync.passwords"; |
| 1351 const char kSyncPreferences[] = "sync.preferences"; | 1351 const char kSyncPreferences[] = "sync.preferences"; |
| 1352 const char kSyncApps[] = "sync.apps"; | 1352 const char kSyncApps[] = "sync.apps"; |
| 1353 const char kSyncAutofill[] = "sync.autofill"; | 1353 const char kSyncAutofill[] = "sync.autofill"; |
| 1354 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1354 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
| 1355 const char kSyncThemes[] = "sync.themes"; | 1355 const char kSyncThemes[] = "sync.themes"; |
| 1356 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1356 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 1357 const char kSyncExtensions[] = "sync.extensions"; | 1357 const char kSyncExtensions[] = "sync.extensions"; |
| 1358 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 1358 const char kSyncSessions[] = "sync.sessions"; | 1359 const char kSyncSessions[] = "sync.sessions"; |
| 1359 | 1360 |
| 1360 // Boolean used by enterprise configuration management in order to lock down | 1361 // Boolean used by enterprise configuration management in order to lock down |
| 1361 // sync. | 1362 // sync. |
| 1362 const char kSyncManaged[] = "sync.managed"; | 1363 const char kSyncManaged[] = "sync.managed"; |
| 1363 | 1364 |
| 1364 // Boolean to prevent sync from automatically starting up. This is | 1365 // Boolean to prevent sync from automatically starting up. This is |
| 1365 // used when sync is disabled by the user via the privacy dashboard. | 1366 // used when sync is disabled by the user via the privacy dashboard. |
| 1366 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1367 const char kSyncSuppressStart[] = "sync.suppress_start"; |
| 1367 | 1368 |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 // specified. | 1573 // specified. |
| 1573 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1574 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1574 | 1575 |
| 1575 // Integers that specify the policy refresh rate for device- and user-policy in | 1576 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1576 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1577 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1577 // by the cloud policy subsystem. | 1578 // by the cloud policy subsystem. |
| 1578 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1579 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1579 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1580 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1580 | 1581 |
| 1581 } // namespace prefs | 1582 } // namespace prefs |
| OLD | NEW |