| 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 1381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1392 const char kManagedDefaultImagesSetting[] = | 1392 const char kManagedDefaultImagesSetting[] = |
| 1393 "profile.managed_default_content_settings.images"; | 1393 "profile.managed_default_content_settings.images"; |
| 1394 const char kManagedDefaultJavaScriptSetting[] = | 1394 const char kManagedDefaultJavaScriptSetting[] = |
| 1395 "profile.managed_default_content_settings.javascript"; | 1395 "profile.managed_default_content_settings.javascript"; |
| 1396 const char kManagedDefaultPluginsSetting[] = | 1396 const char kManagedDefaultPluginsSetting[] = |
| 1397 "profile.managed_default_content_settings.plugins"; | 1397 "profile.managed_default_content_settings.plugins"; |
| 1398 const char kManagedDefaultPopupsSetting[] = | 1398 const char kManagedDefaultPopupsSetting[] = |
| 1399 "profile.managed_default_content_settings.popups"; | 1399 "profile.managed_default_content_settings.popups"; |
| 1400 const char kManagedDefaultGeolocationSetting[] = | 1400 const char kManagedDefaultGeolocationSetting[] = |
| 1401 "profile.managed_default_content_settings.geolocation"; | 1401 "profile.managed_default_content_settings.geolocation"; |
| 1402 const char kManagedDefaultAutoSubmitCertificateSetting[] = |
| 1403 "profile.managed_default_content_settings.auto_submit_certificate"; |
| 1402 | 1404 |
| 1403 // Preferences that are exclusively used to store managed | 1405 // Preferences that are exclusively used to store managed |
| 1404 // content settings patterns. | 1406 // content settings patterns. |
| 1407 const char kManagedAutoSubmitCertificateForUrls[] = |
| 1408 "profile.managed_auto_submit_certificate_for_urls"; |
| 1405 const char kManagedCookiesAllowedForUrls[] = | 1409 const char kManagedCookiesAllowedForUrls[] = |
| 1406 "profile.managed_cookies_allowed_for_urls"; | 1410 "profile.managed_cookies_allowed_for_urls"; |
| 1407 const char kManagedCookiesBlockedForUrls[] = | 1411 const char kManagedCookiesBlockedForUrls[] = |
| 1408 "profile.managed_cookies_blocked_for_urls"; | 1412 "profile.managed_cookies_blocked_for_urls"; |
| 1409 const char kManagedCookiesSessionOnlyForUrls[] = | 1413 const char kManagedCookiesSessionOnlyForUrls[] = |
| 1410 "profile.managed_cookies_sessiononly_for_urls"; | 1414 "profile.managed_cookies_sessiononly_for_urls"; |
| 1411 const char kManagedImagesAllowedForUrls[] = | 1415 const char kManagedImagesAllowedForUrls[] = |
| 1412 "profile.managed_images_allowed_for_urls"; | 1416 "profile.managed_images_allowed_for_urls"; |
| 1413 const char kManagedImagesBlockedForUrls[] = | 1417 const char kManagedImagesBlockedForUrls[] = |
| 1414 "profile.managed_images_blocked_for_urls"; | 1418 "profile.managed_images_blocked_for_urls"; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1443 // Whether user-specified handlers for protocols and content types can be | 1447 // Whether user-specified handlers for protocols and content types can be |
| 1444 // specified. | 1448 // specified. |
| 1445 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1449 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1446 | 1450 |
| 1447 // Integers that specify the policy refresh rate for device- and user-policy in | 1451 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1448 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1452 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1449 // by the cloud policy subsystem. | 1453 // by the cloud policy subsystem. |
| 1450 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1454 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1451 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1455 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1452 } // namespace prefs | 1456 } // namespace prefs |
| OLD | NEW |