| 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 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1594 "printing.print_preview_sticky_settings"; | 1594 "printing.print_preview_sticky_settings"; |
| 1595 | 1595 |
| 1596 // The list of BackgroundContents that should be loaded when the browser | 1596 // The list of BackgroundContents that should be loaded when the browser |
| 1597 // launches. | 1597 // launches. |
| 1598 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1598 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1599 | 1599 |
| 1600 #if defined(OS_WIN) | 1600 #if defined(OS_WIN) |
| 1601 // The "major.minor" OS version for which the welcome page was last shown. | 1601 // The "major.minor" OS version for which the welcome page was last shown. |
| 1602 const char kLastWelcomedOSVersion[] = "browser.last_welcomed_os_version"; | 1602 const char kLastWelcomedOSVersion[] = "browser.last_welcomed_os_version"; |
| 1603 | 1603 |
| 1604 // An int that stores how often we've shown the "Chrome is configured to | |
| 1605 // auto-launch" infobar. | |
| 1606 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | |
| 1607 | |
| 1608 // Boolean that specifies whether or not showing the welcome page following an | 1604 // Boolean that specifies whether or not showing the welcome page following an |
| 1609 // OS upgrade is enabled. True by default. May be set by master_preferences or | 1605 // OS upgrade is enabled. True by default. May be set by master_preferences or |
| 1610 // overridden by the WelcomePageOnOSUpgradeEnabled policy setting. | 1606 // overridden by the WelcomePageOnOSUpgradeEnabled policy setting. |
| 1611 const char kWelcomePageOnOSUpgradeEnabled[] = | 1607 const char kWelcomePageOnOSUpgradeEnabled[] = |
| 1612 "browser.welcome_page_on_os_upgrade_enabled"; | 1608 "browser.welcome_page_on_os_upgrade_enabled"; |
| 1613 #endif | 1609 #endif |
| 1614 | 1610 |
| 1615 // String that lists supported HTTP authentication schemes. | 1611 // String that lists supported HTTP authentication schemes. |
| 1616 const char kAuthSchemes[] = "auth.schemes"; | 1612 const char kAuthSchemes[] = "auth.schemes"; |
| 1617 | 1613 |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2188 // Policy that indicates how to handle animated images. | 2184 // Policy that indicates how to handle animated images. |
| 2189 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2185 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2190 #endif | 2186 #endif |
| 2191 | 2187 |
| 2192 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2188 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2193 | 2189 |
| 2194 const char kAllowDinosaurEasterEgg[] = | 2190 const char kAllowDinosaurEasterEgg[] = |
| 2195 "allow_dinosaur_easter_egg"; | 2191 "allow_dinosaur_easter_egg"; |
| 2196 | 2192 |
| 2197 } // namespace prefs | 2193 } // namespace prefs |
| OLD | NEW |