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

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: Missing line 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 // Dictionary holding plugins metadata. 942 // Dictionary holding plugins metadata.
943 const char kPluginsMetadata[] = "plugins.metadata"; 943 const char kPluginsMetadata[] = "plugins.metadata";
944 944
945 // Last update time of plugins resource cache. 945 // Last update time of plugins resource cache.
946 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; 946 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update";
947 #endif 947 #endif
948 948
949 // Boolean that indicates whether we should check if we are the default browser 949 // Boolean that indicates whether we should check if we are the default browser
950 // on start-up. 950 // on start-up.
951 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; 951 const char kCheckDefaultBrowser[] = "browser.check_default_browser";
952 // Boolean that indicates whether the kCheckDefaultBrowser preference should be
953 // reset on start-up.
954 const char kResetCheckDefaultBrowser[] =
955 "browser.should_reset_check_default_browser";
952 956
953 // Policy setting whether default browser check should be disabled and default 957 // Policy setting whether default browser check should be disabled and default
954 // browser registration should take place. 958 // browser registration should take place.
955 const char kDefaultBrowserSettingEnabled[] = 959 const char kDefaultBrowserSettingEnabled[] =
956 "browser.default_browser_setting_enabled"; 960 "browser.default_browser_setting_enabled";
957 961
958 #if defined(OS_MACOSX) 962 #if defined(OS_MACOSX)
959 // Boolean that indicates whether the application should show the info bar 963 // Boolean that indicates whether the application should show the info bar
960 // asking the user to set up automatic updates when Keystone promotion is 964 // asking the user to set up automatic updates when Keystone promotion is
961 // required. 965 // required.
(...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after
2179 #endif 2183 #endif
2180 2184
2181 #if defined(ENABLE_MEDIA_ROUTER) 2185 #if defined(ENABLE_MEDIA_ROUTER)
2182 // Whether or not the Media Router first run flow has been acknowledged by the 2186 // Whether or not the Media Router first run flow has been acknowledged by the
2183 // user. 2187 // user.
2184 const char kMediaRouterFirstRunFlowAcknowledged[] = 2188 const char kMediaRouterFirstRunFlowAcknowledged[] =
2185 "media_router.firstrunflow.acknowledged"; 2189 "media_router.firstrunflow.acknowledged";
2186 #endif 2190 #endif
2187 2191
2188 } // namespace prefs 2192 } // 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