OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ | 5 #ifndef COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ |
6 #define COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ | 6 #define COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
| 10 #include "base/gtest_prod_util.h" |
10 #include "components/omnibox/browser/autocomplete_input.h" | 11 #include "components/omnibox/browser/autocomplete_input.h" |
11 #include "components/omnibox/browser/autocomplete_match.h" | 12 #include "components/omnibox/browser/autocomplete_match.h" |
12 #include "components/omnibox/browser/autocomplete_provider.h" | 13 #include "components/omnibox/browser/autocomplete_provider.h" |
13 #include "components/query_parser/snippet.h" | 14 #include "components/query_parser/snippet.h" |
14 | 15 |
15 class AutocompleteProviderClient; | 16 class AutocompleteProviderClient; |
16 | 17 |
17 namespace bookmarks { | 18 namespace bookmarks { |
18 class BookmarkModel; | 19 class BookmarkModel; |
19 struct BookmarkMatch; | 20 struct BookmarkMatch; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 AutocompleteProviderClient* client_; | 74 AutocompleteProviderClient* client_; |
74 bookmarks::BookmarkModel* bookmark_model_; | 75 bookmarks::BookmarkModel* bookmark_model_; |
75 | 76 |
76 // Languages used during the URL formatting. | 77 // Languages used during the URL formatting. |
77 std::string languages_; | 78 std::string languages_; |
78 | 79 |
79 DISALLOW_COPY_AND_ASSIGN(BookmarkProvider); | 80 DISALLOW_COPY_AND_ASSIGN(BookmarkProvider); |
80 }; | 81 }; |
81 | 82 |
82 #endif // COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ | 83 #endif // COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ |
OLD | NEW |