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 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1275 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; | 1275 const char kSignedSettingsTempStorage[] = "signed_settings_temp_storage"; |
1276 | 1276 |
1277 // The hardware keyboard layout of the device. This should look like | 1277 // The hardware keyboard layout of the device. This should look like |
1278 // "xkb:us::eng". | 1278 // "xkb:us::eng". |
1279 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; | 1279 const char kHardwareKeyboardLayout[] = "intl.hardware_keyboard"; |
1280 #endif | 1280 #endif |
1281 | 1281 |
1282 // Whether there is a Flash version installed that supports clearing LSO data. | 1282 // Whether there is a Flash version installed that supports clearing LSO data. |
1283 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1283 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1284 | 1284 |
| 1285 // String which specifies where to store the disk cache. |
| 1286 const char kDiskCacheDir[] = "browser.disk_cache_dir"; |
| 1287 |
1285 // *************** SERVICE PREFS *************** | 1288 // *************** SERVICE PREFS *************** |
1286 // These are attached to the service process. | 1289 // These are attached to the service process. |
1287 | 1290 |
1288 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 1291 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
1289 // The unique id for this instance of the cloud print proxy. | 1292 // The unique id for this instance of the cloud print proxy. |
1290 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 1293 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
1291 // The GAIA auth token for Cloud Print | 1294 // The GAIA auth token for Cloud Print |
1292 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 1295 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
1293 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 1296 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
1294 // This should eventually go away because the above token should work for both. | 1297 // This should eventually go away because the above token should work for both. |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1358 "custom_handlers.registered_protocol_handlers"; | 1361 "custom_handlers.registered_protocol_handlers"; |
1359 | 1362 |
1360 // List of protocol handlers the user has requested not to be asked about again. | 1363 // List of protocol handlers the user has requested not to be asked about again. |
1361 const char kIgnoredProtocolHandlers[] = | 1364 const char kIgnoredProtocolHandlers[] = |
1362 "custom_handlers.ignored_protocol_handlers"; | 1365 "custom_handlers.ignored_protocol_handlers"; |
1363 | 1366 |
1364 // Whether user-specified handlers for protocols and content types can be | 1367 // Whether user-specified handlers for protocols and content types can be |
1365 // specified. | 1368 // specified. |
1366 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1369 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1367 } // namespace prefs | 1370 } // namespace prefs |
OLD | NEW |