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 CHROME_BROWSER_AUTOCOMPLETE_HISTORY_CONTENTS_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_HISTORY_CONTENTS_PROVIDER_H_ |
6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_CONTENTS_PROVIDER_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_CONTENTS_PROVIDER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
11 #include "chrome/browser/autocomplete/autocomplete_input.h" | 10 #include "chrome/browser/autocomplete/autocomplete_input.h" |
12 #include "chrome/browser/autocomplete/history_provider.h" | 11 #include "chrome/browser/autocomplete/history_provider.h" |
13 #include "chrome/browser/history/history.h" | 12 #include "chrome/browser/history/history.h" |
14 | 13 |
15 namespace bookmark_utils { | 14 namespace bookmark_utils { |
16 struct TitleMatch; | 15 struct TitleMatch; |
17 } | 16 } |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 // Whether results_ is valid (so we can tell invalid apart from empty). | 111 // Whether results_ is valid (so we can tell invalid apart from empty). |
113 bool have_results_; | 112 bool have_results_; |
114 | 113 |
115 // Current query string. | 114 // Current query string. |
116 string16 query_; | 115 string16 query_; |
117 | 116 |
118 DISALLOW_COPY_AND_ASSIGN(HistoryContentsProvider); | 117 DISALLOW_COPY_AND_ASSIGN(HistoryContentsProvider); |
119 }; | 118 }; |
120 | 119 |
121 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_CONTENTS_PROVIDER_H_ | 120 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_CONTENTS_PROVIDER_H_ |
OLD | NEW |