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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 // open captive portal authentication pages in a separate window under | 812 // open captive portal authentication pages in a separate window under |
813 // a temporary incognito profile ("signin profile" is used for this purpose), | 813 // a temporary incognito profile ("signin profile" is used for this purpose), |
814 // which allows to bypass the user's proxy for captive portal authentication. | 814 // which allows to bypass the user's proxy for captive portal authentication. |
815 const char kCaptivePortalAuthenticationIgnoresProxy[] = | 815 const char kCaptivePortalAuthenticationIgnoresProxy[] = |
816 "proxy.captive_portal_ignores_proxy"; | 816 "proxy.captive_portal_ignores_proxy"; |
817 | 817 |
818 // This boolean controls whether the first window shown on first run should be | 818 // This boolean controls whether the first window shown on first run should be |
819 // unconditionally maximized, overriding the heuristic that normally chooses the | 819 // unconditionally maximized, overriding the heuristic that normally chooses the |
820 // window size. | 820 // window size. |
821 const char kForceMaximizeOnFirstRun[] = "ui.force_maximize_on_first_run"; | 821 const char kForceMaximizeOnFirstRun[] = "ui.force_maximize_on_first_run"; |
| 822 |
| 823 // A dictionary pref mapping public keys that identify platform keys to its |
| 824 // properties like whether it's meant for corporate usage. |
| 825 const char kPlatformKeys[] = "platform_keys"; |
822 #endif // defined(OS_CHROMEOS) | 826 #endif // defined(OS_CHROMEOS) |
823 | 827 |
824 // A boolean pref set to true if a Home button to open the Home pages should be | 828 // A boolean pref set to true if a Home button to open the Home pages should be |
825 // visible on the toolbar. | 829 // visible on the toolbar. |
826 const char kShowHomeButton[] = "browser.show_home_button"; | 830 const char kShowHomeButton[] = "browser.show_home_button"; |
827 | 831 |
828 // A string value which saves short list of recently user selected encodings | 832 // A string value which saves short list of recently user selected encodings |
829 // separated with comma punctuation mark. | 833 // separated with comma punctuation mark. |
830 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; | 834 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; |
831 | 835 |
(...skipping 1443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2275 "supervised_users.whitelists"; | 2279 "supervised_users.whitelists"; |
2276 | 2280 |
2277 #if defined(ENABLE_EXTENSIONS) | 2281 #if defined(ENABLE_EXTENSIONS) |
2278 // Policy that indicates how to handle animated images. | 2282 // Policy that indicates how to handle animated images. |
2279 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2283 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2280 #endif | 2284 #endif |
2281 | 2285 |
2282 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2286 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2283 | 2287 |
2284 } // namespace prefs | 2288 } // namespace prefs |
OLD | NEW |