| 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
|
|
|