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

Unified Diff: chrome/common/instant_types.h

Issue 1260113002: Adds an experiment that enabled SuggestionsService suggestions (MostLikely) on LocalNTP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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/search/instant_service.cc ('k') | chrome/common/instant_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/instant_types.h
diff --git a/chrome/common/instant_types.h b/chrome/common/instant_types.h
index f30cde3656efae8a544d734bf1da3df9453387e6..d8672b137c7f1d2aa1011c0aee4064db7661c73f 100644
--- a/chrome/common/instant_types.h
+++ b/chrome/common/instant_types.h
@@ -123,12 +123,21 @@ struct ThemeBackgroundInfo {
};
struct InstantMostVisitedItem {
+ InstantMostVisitedItem();
+ ~InstantMostVisitedItem();
+
// The URL of the Most Visited item.
GURL url;
// The title of the Most Visited page. May be empty, in which case the |url|
// is used as the title.
base::string16 title;
+
+ // The external URL of the thumbnail associated with this page.
+ GURL thumbnail;
+
+ // The external URL of the favicon associated with this page.
+ GURL favicon;
};
// An InstantMostVisitedItem along with its assigned restricted ID.
« no previous file with comments | « chrome/browser/search/instant_service.cc ('k') | chrome/common/instant_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698