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

Unified Diff: chrome/browser/extensions/api/discovery/suggested_link.h

Issue 10647003: Discovery API supports specifying a tile in a URL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed nits Created 8 years, 5 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/browser/extensions/api/discovery/suggested_link.h
diff --git a/chrome/browser/extensions/api/discovery/suggested_link.h b/chrome/browser/extensions/api/discovery/suggested_link.h
index 4888b668070af6c7b49ff118fd433cfedc8fe2cb..30eaf9ca29d580fa666b522e4b1c5d06bf5a0048 100644
--- a/chrome/browser/extensions/api/discovery/suggested_link.h
+++ b/chrome/browser/extensions/api/discovery/suggested_link.h
@@ -16,17 +16,19 @@ namespace extensions {
// wants to inject in the NTP's recommended pane.
class SuggestedLink {
public:
- SuggestedLink(const std::string& link_url_, const std::string& link_text_,
- double score);
+ SuggestedLink(const std::string& link_url, const std::string& link_text,
+ const std::string& url_image, double score);
~SuggestedLink();
const std::string& link_url() const { return link_url_; }
const std::string& link_text() const { return link_text_; }
+ const std::string& url_image() const { return url_image_; }
double score() const { return score_; }
private:
std::string link_url_;
std::string link_text_;
+ std::string url_image_;
// |score_| is a value between 0 and 1 indicating the relative importance of
// this suggested link. A link with score 1 is twice as likely to be presented
« no previous file with comments | « chrome/browser/extensions/api/discovery/discovery_api.cc ('k') | chrome/browser/extensions/api/discovery/suggested_link.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698