Chromium Code Reviews| 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 1580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1591 | 1591 |
| 1592 // The list of BackgroundContents that should be loaded when the browser | 1592 // The list of BackgroundContents that should be loaded when the browser |
| 1593 // launches. | 1593 // launches. |
| 1594 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 1594 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 1595 | 1595 |
| 1596 #if defined(OS_WIN) | 1596 #if defined(OS_WIN) |
| 1597 // The "major.minor" OS version for which the welcome page was last shown. | 1597 // The "major.minor" OS version for which the welcome page was last shown. |
| 1598 const char kLastWelcomedOSVersion[] = "browser.last_welcomed_os_version"; | 1598 const char kLastWelcomedOSVersion[] = "browser.last_welcomed_os_version"; |
| 1599 | 1599 |
| 1600 // An int that stores how often we've shown the "Chrome is configured to | 1600 // An int that stores how often we've shown the "Chrome is configured to |
| 1601 // auto-launch" infobar. | 1601 // auto-launch" infobar. |
|
Alexei Svitkine (slow)
2015/11/10 16:17:05
Delete the comment too.
gab
2015/11/10 16:29:03
Oops, good catch, thanks
| |
| 1602 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; | |
| 1603 | 1602 |
| 1604 // Boolean that specifies whether or not showing the welcome page following an | 1603 // Boolean that specifies whether or not showing the welcome page following an |
| 1605 // OS upgrade is enabled. True by default. May be set by master_preferences or | 1604 // OS upgrade is enabled. True by default. May be set by master_preferences or |
| 1606 // overridden by the WelcomePageOnOSUpgradeEnabled policy setting. | 1605 // overridden by the WelcomePageOnOSUpgradeEnabled policy setting. |
| 1607 const char kWelcomePageOnOSUpgradeEnabled[] = | 1606 const char kWelcomePageOnOSUpgradeEnabled[] = |
| 1608 "browser.welcome_page_on_os_upgrade_enabled"; | 1607 "browser.welcome_page_on_os_upgrade_enabled"; |
| 1609 #endif | 1608 #endif |
| 1610 | 1609 |
| 1611 // String that lists supported HTTP authentication schemes. | 1610 // String that lists supported HTTP authentication schemes. |
| 1612 const char kAuthSchemes[] = "auth.schemes"; | 1611 const char kAuthSchemes[] = "auth.schemes"; |
| (...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2184 // Policy that indicates how to handle animated images. | 2183 // Policy that indicates how to handle animated images. |
| 2185 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2184 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2186 #endif | 2185 #endif |
| 2187 | 2186 |
| 2188 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2187 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2189 | 2188 |
| 2190 const char kAllowDinosaurEasterEgg[] = | 2189 const char kAllowDinosaurEasterEgg[] = |
| 2191 "allow_dinosaur_easter_egg"; | 2190 "allow_dinosaur_easter_egg"; |
| 2192 | 2191 |
| 2193 } // namespace prefs | 2192 } // namespace prefs |
| OLD | NEW |