| Index: chrome/browser/autocomplete/bookmark_provider.h
|
| diff --git a/chrome/browser/autocomplete/bookmark_provider.h b/chrome/browser/autocomplete/bookmark_provider.h
|
| index ecd7b705c3c01fcfbe7fc930cc2c21ac13e6b1f2..1ef59e9412a560a00e61ed140955124c5ddfd431 100644
|
| --- a/chrome/browser/autocomplete/bookmark_provider.h
|
| +++ b/chrome/browser/autocomplete/bookmark_provider.h
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/browser/history/snippet.h"
|
|
|
| class BookmarkModel;
|
| -struct BookmarkTitleMatch;
|
| +struct BookmarkMatch;
|
| class Profile;
|
|
|
| // This class is an autocomplete provider which quickly (and synchronously)
|
| @@ -47,10 +47,10 @@ class BookmarkProvider : public AutocompleteProvider {
|
| // otherwise suggest the top |kMaxMatches| matches.
|
| void DoAutocomplete(const AutocompleteInput& input, bool best_match);
|
|
|
| - // Compose an AutocompleteMatch based on |title_match| that has 1) the URL of
|
| + // Compose an AutocompleteMatch based on |match| that has 1) the URL of
|
| // title_match's bookmark, and 2) the bookmark's title, not the URL's page
|
| // title, as the description.
|
| - AutocompleteMatch TitleMatchToACMatch(const BookmarkTitleMatch& title_match);
|
| + AutocompleteMatch BookmarkMatchToACMatch(const BookmarkMatch& match);
|
|
|
| // Converts |positions| into ACMatchClassifications and returns the
|
| // classifications. |text_length| is used to determine the need to add an
|
|
|