Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(826)

Side by Side Diff: chrome/common/pref_names.cc

Issue 1226643002: Welcome page changes for Windows 10 and over. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: partial comments Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1640 matching lines...) Expand 10 before | Expand all | Expand 10 after
1651 1651
1652 // The last used printer and its settings. 1652 // The last used printer and its settings.
1653 const char kPrintPreviewStickySettings[] = 1653 const char kPrintPreviewStickySettings[] =
1654 "printing.print_preview_sticky_settings"; 1654 "printing.print_preview_sticky_settings";
1655 1655
1656 // The list of BackgroundContents that should be loaded when the browser 1656 // The list of BackgroundContents that should be loaded when the browser
1657 // launches. 1657 // launches.
1658 const char kRegisteredBackgroundContents[] = "background_contents.registered"; 1658 const char kRegisteredBackgroundContents[] = "background_contents.registered";
1659 1659
1660 #if defined(OS_WIN) 1660 #if defined(OS_WIN)
1661 // The "major.minor" OS version for which the welcome page was last shown.
1662 const char kLastWelcomedOSVersion[] = "browser.last_welcomed_os_version";
1663
1661 // An int that stores how often we've shown the "Chrome is configured to 1664 // An int that stores how often we've shown the "Chrome is configured to
1662 // auto-launch" infobar. 1665 // auto-launch" infobar.
1663 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar"; 1666 const char kShownAutoLaunchInfobar[] = "browser.shown_autolaunch_infobar";
1667
1668 // Boolean that specifies whether or not showing the welcome page following an
1669 // OS upgrade is enabled. True by default. May be overridden by the
1670 // WelcomePageOnOSUpgradeEnabled policy setting or by master_preferences.
1671 const char kWelcomePageOnOSUpgradeEnabled[] =
1672 "browser.welcome_page_on_os_upgrade_enabled";
1664 #endif 1673 #endif
1665 1674
1666 // String that lists supported HTTP authentication schemes. 1675 // String that lists supported HTTP authentication schemes.
1667 const char kAuthSchemes[] = "auth.schemes"; 1676 const char kAuthSchemes[] = "auth.schemes";
1668 1677
1669 // Boolean that specifies whether to disable CNAME lookups when generating 1678 // Boolean that specifies whether to disable CNAME lookups when generating
1670 // Kerberos SPN. 1679 // Kerberos SPN.
1671 const char kDisableAuthNegotiateCnameLookup[] = 1680 const char kDisableAuthNegotiateCnameLookup[] =
1672 "auth.disable_negotiate_cname_lookup"; 1681 "auth.disable_negotiate_cname_lookup";
1673 1682
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
2250 "supervised_users.whitelists"; 2259 "supervised_users.whitelists";
2251 2260
2252 #if defined(ENABLE_EXTENSIONS) 2261 #if defined(ENABLE_EXTENSIONS)
2253 // Policy that indicates how to handle animated images. 2262 // Policy that indicates how to handle animated images.
2254 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2263 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2255 #endif 2264 #endif
2256 2265
2257 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2266 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2258 2267
2259 } // namespace prefs 2268 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698