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

Unified Diff: chrome/common/instant_types.cc

Issue 12386019: Instant: Use only one hidden WebContents per profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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/instant_types.cc
diff --git a/chrome/common/instant_types.cc b/chrome/common/instant_types.cc
index fd2849d1a81e66613a7add4a4ac06393f4eb8b3f..94faceffdaed98cd8e3cd8a5a8590352345b6805 100644
--- a/chrome/common/instant_types.cc
+++ b/chrome/common/instant_types.cc
@@ -41,3 +41,14 @@ ThemeBackgroundInfo::ThemeBackgroundInfo()
ThemeBackgroundInfo::~ThemeBackgroundInfo() {
}
+
+MostVisitedItem::MostVisitedItem() {
+}
+
+MostVisitedItem::MostVisitedItem(const GURL& in_url, const string16& in_title)
+ : url(in_url),
+ title(in_title) {
+}
+
+MostVisitedItem::~MostVisitedItem() {
+}

Powered by Google App Engine
This is Rietveld 408576698