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