| 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 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1167 const char kGpuBlacklistUpdate[] = "gpu_blacklist_update"; | 1167 const char kGpuBlacklistUpdate[] = "gpu_blacklist_update"; |
| 1168 | 1168 |
| 1169 const char kDevToolsDisabled[] = "devtools.disabled"; | 1169 const char kDevToolsDisabled[] = "devtools.disabled"; |
| 1170 | 1170 |
| 1171 // A boolean specifying whether dev tools window should be opened docked. | 1171 // A boolean specifying whether dev tools window should be opened docked. |
| 1172 const char kDevToolsOpenDocked[] = "devtools.open_docked"; | 1172 const char kDevToolsOpenDocked[] = "devtools.open_docked"; |
| 1173 | 1173 |
| 1174 // Integer location of the split bar in the browser view. | 1174 // Integer location of the split bar in the browser view. |
| 1175 const char kDevToolsSplitLocation[] = "devtools.split_location"; | 1175 const char kDevToolsSplitLocation[] = "devtools.split_location"; |
| 1176 | 1176 |
| 1177 // Integer height of the devtools widget in the browser view. |
| 1178 const char kDevToolsWidgetHeight[] = "devtools.widget_height"; |
| 1179 |
| 1177 // 64-bit integer serialization of the base::Time when the last sync occurred. | 1180 // 64-bit integer serialization of the base::Time when the last sync occurred. |
| 1178 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; | 1181 const char kSyncLastSyncedTime[] = "sync.last_synced_time"; |
| 1179 | 1182 |
| 1180 // Boolean specifying whether the user finished setting up sync. | 1183 // Boolean specifying whether the user finished setting up sync. |
| 1181 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; | 1184 const char kSyncHasSetupCompleted[] = "sync.has_setup_completed"; |
| 1182 | 1185 |
| 1183 // Boolean specifying whether to automatically sync all data types (including | 1186 // Boolean specifying whether to automatically sync all data types (including |
| 1184 // future ones, as they're added). If this is true, the following preferences | 1187 // future ones, as they're added). If this is true, the following preferences |
| 1185 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. | 1188 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. |
| 1186 const char kKeepEverythingSynced[] = "sync.keep_everything_synced"; | 1189 const char kKeepEverythingSynced[] = "sync.keep_everything_synced"; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 // Whether user-specified handlers for protocols and content types can be | 1375 // Whether user-specified handlers for protocols and content types can be |
| 1373 // specified. | 1376 // specified. |
| 1374 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1377 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1375 | 1378 |
| 1376 // Integers that specify the policy refresh rate for device- and user-policy in | 1379 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1377 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1380 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1378 // by the cloud policy subsystem. | 1381 // by the cloud policy subsystem. |
| 1379 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1382 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1380 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1383 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1381 } // namespace prefs | 1384 } // namespace prefs |
| OLD | NEW |