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

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

Issue 1577173003: Reset browser.check_default_browser on browser update. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2564
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/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 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 // Dictionary holding plugins metadata. 946 // Dictionary holding plugins metadata.
947 const char kPluginsMetadata[] = "plugins.metadata"; 947 const char kPluginsMetadata[] = "plugins.metadata";
948 948
949 // Last update time of plugins resource cache. 949 // Last update time of plugins resource cache.
950 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update"; 950 const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update";
951 #endif 951 #endif
952 952
953 // Boolean that indicates whether we should check if we are the default browser 953 // Boolean that indicates whether we should check if we are the default browser
954 // on start-up. 954 // on start-up.
955 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; 955 const char kCheckDefaultBrowser[] = "browser.check_default_browser";
956 // Boolean that indicates whether the kCheckDefaultBrowser preference should be
957 // reset on start-up.
958 const char kResetCheckDefaultBrowser[] =
959 "browser.should_reset_check_default_browser";
956 960
957 // Policy setting whether default browser check should be disabled and default 961 // Policy setting whether default browser check should be disabled and default
958 // browser registration should take place. 962 // browser registration should take place.
959 const char kDefaultBrowserSettingEnabled[] = 963 const char kDefaultBrowserSettingEnabled[] =
960 "browser.default_browser_setting_enabled"; 964 "browser.default_browser_setting_enabled";
961 965
962 #if defined(OS_MACOSX) 966 #if defined(OS_MACOSX)
963 // Boolean that indicates whether the application should show the info bar 967 // Boolean that indicates whether the application should show the info bar
964 // asking the user to set up automatic updates when Keystone promotion is 968 // asking the user to set up automatic updates when Keystone promotion is
965 // required. 969 // required.
(...skipping 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
2193 // Policy that indicates how to handle animated images. 2197 // Policy that indicates how to handle animated images.
2194 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; 2198 const char kAnimationPolicy[] = "settings.a11y.animation_policy";
2195 #endif 2199 #endif
2196 2200
2197 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; 2201 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload";
2198 2202
2199 const char kAllowDinosaurEasterEgg[] = 2203 const char kAllowDinosaurEasterEgg[] =
2200 "allow_dinosaur_easter_egg"; 2204 "allow_dinosaur_easter_egg";
2201 2205
2202 } // namespace prefs 2206 } // 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