Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SUGGESTED_LINK_H_ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SUGGESTED_LINK_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include <string> | |
| 10 #include <vector> | |
| 11 | |
| 12 #include "base/memory/linked_ptr.h" | |
| 13 | |
| 14 // ExtensionSuggestedLinks contains a list of scored links that the extension | |
| 15 // wants to inject in the NTP's recommended pane. | |
|
Aaron Boodman
2012/05/11 21:06:46
This and related classes should all be in the c/b/
beaudoin
2012/05/12 03:16:29
I was strongly inspired by c/b/e/app_notification*
beaudoin
2012/05/14 23:28:02
Done.
| |
| 16 class ExtensionSuggestedLink { | |
| 17 | |
|
Aaron Boodman
2012/05/11 21:06:46
Nit: extraneous blank line.
beaudoin
2012/05/12 03:16:29
Done.
| |
| 18 public: | |
| 19 ExtensionSuggestedLink(const std::string& link_url_, | |
| 20 const std::string& link_text_, double score); | |
| 21 ~ExtensionSuggestedLink(); | |
| 22 | |
| 23 std::string link_url() const { return link_url_; } | |
| 24 std::string link_text() const { return link_text_; } | |
| 25 double score() const { return score_; } | |
| 26 | |
| 27 private: | |
| 28 std::string link_url_; | |
| 29 std::string link_text_; | |
| 30 double score_; | |
| 31 | |
| 32 DISALLOW_COPY_AND_ASSIGN(ExtensionSuggestedLink); | |
| 33 }; | |
| 34 | |
| 35 // A list of ExtensionSuggestedLink's. | |
| 36 typedef std::vector<linked_ptr<ExtensionSuggestedLink> > | |
| 37 ExtensionSuggestedLinkList; | |
| 38 | |
| 39 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SUGGESTED_LINK_H_ | |
| OLD | NEW |