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 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1290 const char kCarrierDealPromoShown[] = | 1290 const char kCarrierDealPromoShown[] = |
1291 "settings.internet.mobile.carrier_deal_promo_shown"; | 1291 "settings.internet.mobile.carrier_deal_promo_shown"; |
1292 #endif | 1292 #endif |
1293 | 1293 |
1294 // Whether there is a Flash version installed that supports clearing LSO data. | 1294 // Whether there is a Flash version installed that supports clearing LSO data. |
1295 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 1295 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
1296 | 1296 |
1297 // String which specifies where to store the disk cache. | 1297 // String which specifies where to store the disk cache. |
1298 const char kDiskCacheDir[] = "browser.disk_cache_dir"; | 1298 const char kDiskCacheDir[] = "browser.disk_cache_dir"; |
1299 | 1299 |
1300 // Boolean that specifies whether to import bookmarks from the default browser | |
1301 // on first run. | |
1302 const char kImportBookmarks[] = "import_bookmarks"; | |
Mattias Nissler (ping if slow)
2011/07/18 15:02:30
These are in the wrong section (this is LOCAL_STAT
| |
1303 | |
1304 // Boolean that specifies whether to import the browsing history from the | |
1305 // default browser on first run. | |
1306 const char kImportHistory[] = "import_history"; | |
1307 | |
1308 // Boolean that specifies whether to import the homepage from the default | |
1309 // browser on first run. | |
1310 const char kImportHomepage[] = "import_home_page"; | |
1311 | |
1312 // Boolean that specifies whether to import the search engine from the default | |
1313 // browser on first run. | |
1314 const char kImportSearchEngine[] = "import_search_engine"; | |
1315 | |
1316 // Boolean that specifies whether to import the saved passwords from the default | |
1317 // browser on first run. | |
1318 const char kImportSavedPasswords[] = "import_saved_passwords"; | |
1319 | |
1320 | |
1300 // *************** SERVICE PREFS *************** | 1321 // *************** SERVICE PREFS *************** |
1301 // These are attached to the service process. | 1322 // These are attached to the service process. |
1302 | 1323 |
1303 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; | 1324 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
1304 // The unique id for this instance of the cloud print proxy. | 1325 // The unique id for this instance of the cloud print proxy. |
1305 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 1326 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
1306 // The GAIA auth token for Cloud Print | 1327 // The GAIA auth token for Cloud Print |
1307 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 1328 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
1308 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 1329 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
1309 // This should eventually go away because the above token should work for both. | 1330 // This should eventually go away because the above token should work for both. |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1379 // Whether user-specified handlers for protocols and content types can be | 1400 // Whether user-specified handlers for protocols and content types can be |
1380 // specified. | 1401 // specified. |
1381 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1402 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1382 | 1403 |
1383 // Integers that specify the policy refresh rate for device- and user-policy in | 1404 // Integers that specify the policy refresh rate for device- and user-policy in |
1384 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1405 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1385 // by the cloud policy subsystem. | 1406 // by the cloud policy subsystem. |
1386 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1407 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1387 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1408 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1388 } // namespace prefs | 1409 } // namespace prefs |
OLD | NEW |