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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 | 628 |
629 // Boolean that is true when the tabstrip is to be laid out vertically down the | 629 // Boolean that is true when the tabstrip is to be laid out vertically down the |
630 // side of the browser window. | 630 // side of the browser window. |
631 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; | 631 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; |
632 | 632 |
633 // Boolean that is true when the translate feature is enabled. | 633 // Boolean that is true when the translate feature is enabled. |
634 const char kEnableTranslate[] = "translate.enabled"; | 634 const char kEnableTranslate[] = "translate.enabled"; |
635 | 635 |
636 const char kPinnedTabs[] = "pinned_tabs"; | 636 const char kPinnedTabs[] = "pinned_tabs"; |
637 | 637 |
| 638 // Integer that specifies the policy refresh rate in milliseconds. Not all |
| 639 // values are meaningful, so it is clamped to a sane range by the policy |
| 640 // provider. |
| 641 const char kPolicyRefreshRate[] = "policy.refresh_rate"; |
| 642 |
638 // Integer containing the default Geolocation content setting. | 643 // Integer containing the default Geolocation content setting. |
639 const char kGeolocationDefaultContentSetting[] = | 644 const char kGeolocationDefaultContentSetting[] = |
640 "geolocation.default_content_setting"; | 645 "geolocation.default_content_setting"; |
641 | 646 |
642 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. | 647 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. |
643 const char kGeolocationContentSettings[] = "geolocation.content_settings"; | 648 const char kGeolocationContentSettings[] = "geolocation.content_settings"; |
644 | 649 |
645 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 650 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
646 const char kDisable3DAPIs[] = "disable_3d_apis"; | 651 const char kDisable3DAPIs[] = "disable_3d_apis"; |
647 | 652 |
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1170 const char kManagedDefaultPluginsSetting[] = | 1175 const char kManagedDefaultPluginsSetting[] = |
1171 "profile.managed_default_content_settings.plugins"; | 1176 "profile.managed_default_content_settings.plugins"; |
1172 const char kManagedDefaultPopupsSetting[] = | 1177 const char kManagedDefaultPopupsSetting[] = |
1173 "profile.managed_default_content_settings.popups"; | 1178 "profile.managed_default_content_settings.popups"; |
1174 | 1179 |
1175 // Dictionary for storing the set of known background pages (keys are extension | 1180 // Dictionary for storing the set of known background pages (keys are extension |
1176 // IDs of background page owners, value is a boolean that is true if the user | 1181 // IDs of background page owners, value is a boolean that is true if the user |
1177 // needs to acknowledge this page. | 1182 // needs to acknowledge this page. |
1178 const char kKnownBackgroundPages[] = "background_pages.known"; | 1183 const char kKnownBackgroundPages[] = "background_pages.known"; |
1179 } // namespace prefs | 1184 } // namespace prefs |
OLD | NEW |