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 1405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1416 const char kManagedDefaultJavaScriptSetting[] = | 1416 const char kManagedDefaultJavaScriptSetting[] = |
1417 "profile.managed_default_content_settings.javascript"; | 1417 "profile.managed_default_content_settings.javascript"; |
1418 const char kManagedDefaultPluginsSetting[] = | 1418 const char kManagedDefaultPluginsSetting[] = |
1419 "profile.managed_default_content_settings.plugins"; | 1419 "profile.managed_default_content_settings.plugins"; |
1420 const char kManagedDefaultPopupsSetting[] = | 1420 const char kManagedDefaultPopupsSetting[] = |
1421 "profile.managed_default_content_settings.popups"; | 1421 "profile.managed_default_content_settings.popups"; |
1422 const char kManagedDefaultGeolocationSetting[] = | 1422 const char kManagedDefaultGeolocationSetting[] = |
1423 "profile.managed_default_content_settings.geolocation"; | 1423 "profile.managed_default_content_settings.geolocation"; |
1424 const char kManagedDefaultNotificationsSetting[] = | 1424 const char kManagedDefaultNotificationsSetting[] = |
1425 "profile.managed_default_content_settings.notifications"; | 1425 "profile.managed_default_content_settings.notifications"; |
| 1426 const char kManagedDefaultAutoSubmitCertificateSetting[] = |
| 1427 "profile.managed_default_content_settings.auto_submit_certificate"; |
1426 | 1428 |
1427 // Preferences that are exclusively used to store managed | 1429 // Preferences that are exclusively used to store managed |
1428 // content settings patterns. | 1430 // content settings patterns. |
| 1431 const char kManagedAutoSubmitCertificateForUrls[] = |
| 1432 "profile.managed_auto_submit_certificate_for_urls"; |
1429 const char kManagedCookiesAllowedForUrls[] = | 1433 const char kManagedCookiesAllowedForUrls[] = |
1430 "profile.managed_cookies_allowed_for_urls"; | 1434 "profile.managed_cookies_allowed_for_urls"; |
1431 const char kManagedCookiesBlockedForUrls[] = | 1435 const char kManagedCookiesBlockedForUrls[] = |
1432 "profile.managed_cookies_blocked_for_urls"; | 1436 "profile.managed_cookies_blocked_for_urls"; |
1433 const char kManagedCookiesSessionOnlyForUrls[] = | 1437 const char kManagedCookiesSessionOnlyForUrls[] = |
1434 "profile.managed_cookies_sessiononly_for_urls"; | 1438 "profile.managed_cookies_sessiononly_for_urls"; |
1435 const char kManagedImagesAllowedForUrls[] = | 1439 const char kManagedImagesAllowedForUrls[] = |
1436 "profile.managed_images_allowed_for_urls"; | 1440 "profile.managed_images_allowed_for_urls"; |
1437 const char kManagedImagesBlockedForUrls[] = | 1441 const char kManagedImagesBlockedForUrls[] = |
1438 "profile.managed_images_blocked_for_urls"; | 1442 "profile.managed_images_blocked_for_urls"; |
(...skipping 28 matching lines...) Expand all Loading... |
1467 // Whether user-specified handlers for protocols and content types can be | 1471 // Whether user-specified handlers for protocols and content types can be |
1468 // specified. | 1472 // specified. |
1469 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1473 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1470 | 1474 |
1471 // Integers that specify the policy refresh rate for device- and user-policy in | 1475 // Integers that specify the policy refresh rate for device- and user-policy in |
1472 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1476 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1473 // by the cloud policy subsystem. | 1477 // by the cloud policy subsystem. |
1474 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1478 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1475 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1479 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1476 } // namespace prefs | 1480 } // namespace prefs |
OLD | NEW |