| 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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1405 const char kManagedDefaultImagesSetting[] = | 1405 const char kManagedDefaultImagesSetting[] = |
| 1406 "profile.managed_default_content_settings.images"; | 1406 "profile.managed_default_content_settings.images"; |
| 1407 const char kManagedDefaultJavaScriptSetting[] = | 1407 const char kManagedDefaultJavaScriptSetting[] = |
| 1408 "profile.managed_default_content_settings.javascript"; | 1408 "profile.managed_default_content_settings.javascript"; |
| 1409 const char kManagedDefaultPluginsSetting[] = | 1409 const char kManagedDefaultPluginsSetting[] = |
| 1410 "profile.managed_default_content_settings.plugins"; | 1410 "profile.managed_default_content_settings.plugins"; |
| 1411 const char kManagedDefaultPopupsSetting[] = | 1411 const char kManagedDefaultPopupsSetting[] = |
| 1412 "profile.managed_default_content_settings.popups"; | 1412 "profile.managed_default_content_settings.popups"; |
| 1413 const char kManagedDefaultGeolocationSetting[] = | 1413 const char kManagedDefaultGeolocationSetting[] = |
| 1414 "profile.managed_default_content_settings.geolocation"; | 1414 "profile.managed_default_content_settings.geolocation"; |
| 1415 const char kManagedDefaultNotificationsSetting[] = |
| 1416 "profile.managed_default_content_settings.notifications"; |
| 1415 | 1417 |
| 1416 // Preferences that are exclusively used to store managed | 1418 // Preferences that are exclusively used to store managed |
| 1417 // content settings patterns. | 1419 // content settings patterns. |
| 1418 const char kManagedCookiesAllowedForUrls[] = | 1420 const char kManagedCookiesAllowedForUrls[] = |
| 1419 "profile.managed_cookies_allowed_for_urls"; | 1421 "profile.managed_cookies_allowed_for_urls"; |
| 1420 const char kManagedCookiesBlockedForUrls[] = | 1422 const char kManagedCookiesBlockedForUrls[] = |
| 1421 "profile.managed_cookies_blocked_for_urls"; | 1423 "profile.managed_cookies_blocked_for_urls"; |
| 1422 const char kManagedCookiesSessionOnlyForUrls[] = | 1424 const char kManagedCookiesSessionOnlyForUrls[] = |
| 1423 "profile.managed_cookies_sessiononly_for_urls"; | 1425 "profile.managed_cookies_sessiononly_for_urls"; |
| 1424 const char kManagedImagesAllowedForUrls[] = | 1426 const char kManagedImagesAllowedForUrls[] = |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1456 // Whether user-specified handlers for protocols and content types can be | 1458 // Whether user-specified handlers for protocols and content types can be |
| 1457 // specified. | 1459 // specified. |
| 1458 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1460 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1459 | 1461 |
| 1460 // Integers that specify the policy refresh rate for device- and user-policy in | 1462 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1461 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1463 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1462 // by the cloud policy subsystem. | 1464 // by the cloud policy subsystem. |
| 1463 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1465 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1464 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1466 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1465 } // namespace prefs | 1467 } // namespace prefs |
| OLD | NEW |