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