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

Unified Diff: chrome/common/pref_names.cc

Issue 1748773002: Simplify the default browser infobar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync to position 379825 Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index 32c892f975a2f81cb10eb4de62bf56f3ffa9a894..843c39a058e28e959c952e9a8b204b11d837a049 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -956,11 +956,12 @@ const char kPluginsMetadata[] = "plugins.metadata";
const char kPluginsResourceCacheUpdate[] = "plugins.resource_cache_update";
#endif
-// Boolean that indicates whether we should check if we are the default browser
-// on start-up.
-const char kCheckDefaultBrowser[] = "browser.check_default_browser";
-// Boolean that indicates whether the kCheckDefaultBrowser preference should be
-// reset on start-up.
+// Int64 containing the internal value of the time at which the default browser
+// infobar was last dismissed by the user.
+const char kDefaultBrowserLastDismissed[] =
+ "browser.default_browser_infobar_last_dismissed";
+// Boolean that indicates whether the kDefaultBrowserLastDismissed preference
+// should be reset on start-up.
const char kResetCheckDefaultBrowser[] =
"browser.should_reset_check_default_browser";

Powered by Google App Engine
This is Rietveld 408576698