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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 1275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1286 // datatypes. | 1286 // datatypes. |
1287 const char kSyncBookmarks[] = "sync.bookmarks"; | 1287 const char kSyncBookmarks[] = "sync.bookmarks"; |
1288 const char kSyncPasswords[] = "sync.passwords"; | 1288 const char kSyncPasswords[] = "sync.passwords"; |
1289 const char kSyncPreferences[] = "sync.preferences"; | 1289 const char kSyncPreferences[] = "sync.preferences"; |
1290 const char kSyncApps[] = "sync.apps"; | 1290 const char kSyncApps[] = "sync.apps"; |
1291 const char kSyncAutofill[] = "sync.autofill"; | 1291 const char kSyncAutofill[] = "sync.autofill"; |
1292 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1292 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
1293 const char kSyncThemes[] = "sync.themes"; | 1293 const char kSyncThemes[] = "sync.themes"; |
1294 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1294 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1295 const char kSyncExtensions[] = "sync.extensions"; | 1295 const char kSyncExtensions[] = "sync.extensions"; |
| 1296 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
1296 const char kSyncSessions[] = "sync.sessions"; | 1297 const char kSyncSessions[] = "sync.sessions"; |
1297 | 1298 |
1298 // Boolean used by enterprise configuration management in order to lock down | 1299 // Boolean used by enterprise configuration management in order to lock down |
1299 // sync. | 1300 // sync. |
1300 const char kSyncManaged[] = "sync.managed"; | 1301 const char kSyncManaged[] = "sync.managed"; |
1301 | 1302 |
1302 // Boolean to prevent sync from automatically starting up. This is | 1303 // Boolean to prevent sync from automatically starting up. This is |
1303 // used when sync is disabled by the user via the privacy dashboard. | 1304 // used when sync is disabled by the user via the privacy dashboard. |
1304 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1305 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1305 | 1306 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1499 // specified. | 1500 // specified. |
1500 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1501 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1501 | 1502 |
1502 // Integers that specify the policy refresh rate for device- and user-policy in | 1503 // Integers that specify the policy refresh rate for device- and user-policy in |
1503 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1504 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1504 // by the cloud policy subsystem. | 1505 // by the cloud policy subsystem. |
1505 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1506 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1506 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1507 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1507 | 1508 |
1508 } // namespace prefs | 1509 } // namespace prefs |
OLD | NEW |