OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
800 // open captive portal authentication pages in a separate window under | 800 // open captive portal authentication pages in a separate window under |
801 // a temporary incognito profile ("signin profile" is used for this purpose), | 801 // a temporary incognito profile ("signin profile" is used for this purpose), |
802 // which allows to bypass the user's proxy for captive portal authentication. | 802 // which allows to bypass the user's proxy for captive portal authentication. |
803 const char kCaptivePortalAuthenticationIgnoresProxy[] = | 803 const char kCaptivePortalAuthenticationIgnoresProxy[] = |
804 "proxy.captive_portal_ignores_proxy"; | 804 "proxy.captive_portal_ignores_proxy"; |
805 | 805 |
806 // This boolean controls whether the first window shown on first run should be | 806 // This boolean controls whether the first window shown on first run should be |
807 // unconditionally maximized, overriding the heuristic that normally chooses the | 807 // unconditionally maximized, overriding the heuristic that normally chooses the |
808 // window size. | 808 // window size. |
809 const char kForceMaximizeOnFirstRun[] = "ui.force_maximize_on_first_run"; | 809 const char kForceMaximizeOnFirstRun[] = "ui.force_maximize_on_first_run"; |
| 810 |
| 811 // A dictionary pref mapping public keys that identify platform keys to its |
| 812 // properties like whether it's meant for corporate usage. |
| 813 const char kPlatformKeys[] = "platform_keys"; |
810 #endif // defined(OS_CHROMEOS) | 814 #endif // defined(OS_CHROMEOS) |
811 | 815 |
812 // A boolean pref set to true if a Home button to open the Home pages should be | 816 // A boolean pref set to true if a Home button to open the Home pages should be |
813 // visible on the toolbar. | 817 // visible on the toolbar. |
814 const char kShowHomeButton[] = "browser.show_home_button"; | 818 const char kShowHomeButton[] = "browser.show_home_button"; |
815 | 819 |
816 // A string value which saves short list of recently user selected encodings | 820 // A string value which saves short list of recently user selected encodings |
817 // separated with comma punctuation mark. | 821 // separated with comma punctuation mark. |
818 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; | 822 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; |
819 | 823 |
(...skipping 1443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2263 "supervised_users.whitelists"; | 2267 "supervised_users.whitelists"; |
2264 | 2268 |
2265 #if defined(ENABLE_EXTENSIONS) | 2269 #if defined(ENABLE_EXTENSIONS) |
2266 // Policy that indicates how to handle animated images. | 2270 // Policy that indicates how to handle animated images. |
2267 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2271 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2268 #endif | 2272 #endif |
2269 | 2273 |
2270 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2274 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2271 | 2275 |
2272 } // namespace prefs | 2276 } // namespace prefs |
OLD | NEW |