OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
617 | 617 |
618 // Boolean that is true when the tabstrip is to be laid out vertically down the | 618 // Boolean that is true when the tabstrip is to be laid out vertically down the |
619 // side of the browser window. | 619 // side of the browser window. |
620 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; | 620 const char kUseVerticalTabs[] = "tabs.use_vertical_tabs"; |
621 | 621 |
622 // Boolean that is true when the translate feature is enabled. | 622 // Boolean that is true when the translate feature is enabled. |
623 const char kEnableTranslate[] = "translate.enabled"; | 623 const char kEnableTranslate[] = "translate.enabled"; |
624 | 624 |
625 const char kPinnedTabs[] = "pinned_tabs"; | 625 const char kPinnedTabs[] = "pinned_tabs"; |
626 | 626 |
627 // Integer that gives the policy refresh rate in milliseconds. Not all values | |
danno
2011/01/06 19:16:26
s/gives/specifies
Mattias Nissler (ping if slow)
2011/01/07 11:15:33
Done.
| |
628 // are meaningful, so it is clamped to a sane range by the policy provider. | |
629 const char kPolicyRefreshRate[] = "policy.refresh_rate"; | |
630 | |
627 // Integer containing the default Geolocation content setting. | 631 // Integer containing the default Geolocation content setting. |
628 const char kGeolocationDefaultContentSetting[] = | 632 const char kGeolocationDefaultContentSetting[] = |
629 "geolocation.default_content_setting"; | 633 "geolocation.default_content_setting"; |
630 | 634 |
631 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. | 635 // Dictionary that maps [frame, toplevel] to their Geolocation content setting. |
632 const char kGeolocationContentSettings[] = "geolocation.content_settings"; | 636 const char kGeolocationContentSettings[] = "geolocation.content_settings"; |
633 | 637 |
634 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 638 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
635 const char kDisable3DAPIs[] = "disable_3d_apis"; | 639 const char kDisable3DAPIs[] = "disable_3d_apis"; |
636 | 640 |
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1159 const char kManagedDefaultPluginsSetting[] = | 1163 const char kManagedDefaultPluginsSetting[] = |
1160 "profile.managed_default_content_settings.plugins"; | 1164 "profile.managed_default_content_settings.plugins"; |
1161 const char kManagedDefaultPopupsSetting[] = | 1165 const char kManagedDefaultPopupsSetting[] = |
1162 "profile.managed_default_content_settings.popups"; | 1166 "profile.managed_default_content_settings.popups"; |
1163 | 1167 |
1164 // Dictionary for storing the set of known background pages (keys are extension | 1168 // Dictionary for storing the set of known background pages (keys are extension |
1165 // IDs of background page owners, value is a boolean that is true if the user | 1169 // IDs of background page owners, value is a boolean that is true if the user |
1166 // needs to acknowledge this page. | 1170 // needs to acknowledge this page. |
1167 const char kKnownBackgroundPages[] = "background_pages.known"; | 1171 const char kKnownBackgroundPages[] = "background_pages.known"; |
1168 } // namespace prefs | 1172 } // namespace prefs |
OLD | NEW |