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

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

Issue 1578013002: Reset browser.check_default_browser on update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 // Dictionary holding plugins metadata. 939 // Dictionary holding plugins metadata.
940 const char kPluginsMetadata[] = "plugins.metadata"; 940 const char kPluginsMetadata[] = "plugins.metadata";
941 941
942 // Last update time of plugins resource cache. 942 // Last update time of plugins resource cache.
943 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; 943 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update";
944 #endif 944 #endif
945 945
946 // Boolean that indicates whether we should check if we are the default browser 946 // Boolean that indicates whether we should check if we are the default browser
947 // on start-up. 947 // on start-up.
948 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; 948 const char kCheckDefaultBrowser[] = "browser.check_default_browser";
949 // Boolean that indicates whether the kCheckDefaultBrowser preference should be
950 // reset on start-up.
Peter Kasting 2016/01/11 22:49:57 This is a bit misleading as-is, because the actual
Patrick Monette 2016/01/11 23:24:02 Done.
951 const char kResetCheckDefaultBrowser[] =
952 "browser.should_reset_check_default_browser";
949 953
950 // Policy setting whether default browser check should be disabled and default 954 // Policy setting whether default browser check should be disabled and default
951 // browser registration should take place. 955 // browser registration should take place.
952 const char kDefaultBrowserSettingEnabled[] = 956 const char kDefaultBrowserSettingEnabled[] =
953 "browser.default_browser_setting_enabled"; 957 "browser.default_browser_setting_enabled";
954 958
955 #if defined(OS_MACOSX) 959 #if defined(OS_MACOSX)
956 // Boolean that indicates whether the application should show the info bar 960 // Boolean that indicates whether the application should show the info bar
957 // asking the user to set up automatic updates when Keystone promotion is 961 // asking the user to set up automatic updates when Keystone promotion is
958 // required. 962 // required.
(...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after
2176 #endif 2180 #endif
2177 2181
2178 #if defined(ENABLE_MEDIA_ROUTER) 2182 #if defined(ENABLE_MEDIA_ROUTER)
2179 // Whether or not the Media Router first run flow has been acknowledged by the 2183 // Whether or not the Media Router first run flow has been acknowledged by the
2180 // user. 2184 // user.
2181 const char kMediaRouterFirstRunFlowAcknowledged[] = 2185 const char kMediaRouterFirstRunFlowAcknowledged[] =
2182 "media_router.firstrunflow.acknowledged"; 2186 "media_router.firstrunflow.acknowledged";
2183 #endif 2187 #endif
2184 2188
2185 } // namespace prefs 2189 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698