| 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 <stddef.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/macros.h" |
| 11 #include "components/omnibox/browser/autocomplete_input.h" | 14 #include "components/omnibox/browser/autocomplete_input.h" |
| 12 #include "components/omnibox/browser/autocomplete_match.h" | 15 #include "components/omnibox/browser/autocomplete_match.h" |
| 13 #include "components/omnibox/browser/autocomplete_provider.h" | 16 #include "components/omnibox/browser/autocomplete_provider.h" |
| 14 #include "components/query_parser/snippet.h" | 17 #include "components/query_parser/snippet.h" |
| 15 | 18 |
| 16 class AutocompleteProviderClient; | 19 class AutocompleteProviderClient; |
| 17 | 20 |
| 18 namespace bookmarks { | 21 namespace bookmarks { |
| 19 class BookmarkModel; | 22 class BookmarkModel; |
| 20 struct BookmarkMatch; | 23 struct BookmarkMatch; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 AutocompleteProviderClient* client_; | 77 AutocompleteProviderClient* client_; |
| 75 bookmarks::BookmarkModel* bookmark_model_; | 78 bookmarks::BookmarkModel* bookmark_model_; |
| 76 | 79 |
| 77 // Languages used during the URL formatting. | 80 // Languages used during the URL formatting. |
| 78 std::string languages_; | 81 std::string languages_; |
| 79 | 82 |
| 80 DISALLOW_COPY_AND_ASSIGN(BookmarkProvider); | 83 DISALLOW_COPY_AND_ASSIGN(BookmarkProvider); |
| 81 }; | 84 }; |
| 82 | 85 |
| 83 #endif // COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ | 86 #endif // COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ |
| OLD | NEW |