| Index: components/bookmarks/browser/bookmark_model.h
|
| diff --git a/components/bookmarks/browser/bookmark_model.h b/components/bookmarks/browser/bookmark_model.h
|
| index 0a2d9643c89ccf84d3604de102340a0e8b2b61e2..e8c743cbbd28276f7a96ed06271f02d29f71445f 100644
|
| --- a/components/bookmarks/browser/bookmark_model.h
|
| +++ b/components/bookmarks/browser/bookmark_model.h
|
| @@ -167,6 +167,13 @@ class BookmarkModel : public KeyedService {
|
| // Returns the set of nodes with the |url|.
|
| void GetNodesByURL(const GURL& url, std::vector<const BookmarkNode*>* nodes);
|
|
|
| + // Return the set of nodes and titles with the |url| and |title|.
|
| + void GetNodesByURLAndTitle(const GURL& url,
|
| + const base::string16& title,
|
| + const BookmarkNode* parent,
|
| + std::vector<const BookmarkNode*>* nodes,
|
| + std::vector<base::string16>* titles);
|
| +
|
| // Returns the most recently added user node for the |url|; urls from any
|
| // nodes that are not editable by the user are never returned by this call.
|
| // Returns NULL if |url| is not bookmarked.
|
|
|