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

Unified Diff: chrome/browser/autocomplete/history_contents_provider.h

Issue 1912: Renames BoomarkBarModel to BookmarkModel. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 3 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/autocomplete/history_contents_provider.h
===================================================================
--- chrome/browser/autocomplete/history_contents_provider.h (revision 1988)
+++ chrome/browser/autocomplete/history_contents_provider.h (working copy)
@@ -6,7 +6,7 @@
#define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_CONTENTS_PROVIDER_H__
#include "chrome/browser/autocomplete/autocomplete.h"
-#include "chrome/browser/bookmarks/bookmark_bar_model.h"
+#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/history/history.h"
// HistoryContentsProvider is an AutocompleteProvider that provides results from
@@ -14,7 +14,7 @@
// HistoryContentsProvider gets results from two sources:
// . HistoryService: this provides results for matches in the body/title of
// previously viewed pages. This is asynchronous.
-// . BookmarkBarModel: provides results for matches in the titles of bookmarks.
+// . BookmarkModel: provides results for matches in the titles of bookmarks.
// This is synchronous.
class HistoryContentsProvider : public AutocompleteProvider {
public:
@@ -66,10 +66,9 @@
// matches are added directly to results_.
void QueryBookmarks(const AutocompleteInput& input);
- // Converts a BookmarkBarModel::TitleMatch to a QueryResult and adds it
- // to results_.
- void AddBookmarkTitleMatchToResults(
- const BookmarkBarModel::TitleMatch& match);
+ // Converts a BookmarkModel::TitleMatch to a QueryResult and adds it to
+ // results_.
+ void AddBookmarkTitleMatchToResults(const BookmarkModel::TitleMatch& match);
CancelableRequestConsumerT<int, 0> request_consumer_;

Powered by Google App Engine
This is Rietveld 408576698