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

Unified Diff: chrome/browser/history/history_types.cc

Issue 39053005: Adding last_forced column to thumbnails database. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Answered Brett's comments. Created 7 years, 2 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
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/top_sites_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history_types.cc
diff --git a/chrome/browser/history/history_types.cc b/chrome/browser/history/history_types.cc
index f766a0b1d90fe2b41b2e76b1e12f378432b608ba..959d118a839a0373884b7dd66a19060aa1ad2d42 100644
--- a/chrome/browser/history/history_types.cc
+++ b/chrome/browser/history/history_types.cc
@@ -287,6 +287,14 @@ MostVisitedURL::MostVisitedURL(const GURL& url,
title(title) {
}
+MostVisitedURL::MostVisitedURL(const GURL& url,
+ const string16& title,
+ const base::Time& last_forced_time)
+ : url(url),
+ title(title),
+ last_forced_time(last_forced_time) {
+}
+
MostVisitedURL::~MostVisitedURL() {}
// FilteredURL -----------------------------------------------------------------
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/top_sites_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698