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 // This file contains the zero-suggest autocomplete provider. This experimental | 5 // This file contains the zero-suggest autocomplete provider. This experimental |
6 // provider is invoked when the user focuses in the omnibox prior to editing, | 6 // provider is invoked when the user focuses in the omnibox prior to editing, |
7 // and generates search query suggestions based on the current URL. To enable | 7 // and generates search query suggestions based on the current URL. To enable |
8 // this provider, point --experimental-zero-suggest-url-prefix at an | 8 // this provider, point --experimental-zero-suggest-url-prefix at an |
9 // appropriate suggestion service. | 9 // appropriate suggestion service. |
10 // | 10 // |
11 // HUGE DISCLAIMER: This is just here for experimenting and will probably be | 11 // HUGE DISCLAIMER: This is just here for experimenting and will probably be |
12 // deleted entirely as we revise how suggestions work with the omnibox. | 12 // deleted entirely as we revise how suggestions work with the omnibox. |
13 | 13 |
14 #ifndef CHROME_BROWSER_AUTOCOMPLETE_ZERO_SUGGEST_PROVIDER_H_ | 14 #ifndef CHROME_BROWSER_AUTOCOMPLETE_ZERO_SUGGEST_PROVIDER_H_ |
15 #define CHROME_BROWSER_AUTOCOMPLETE_ZERO_SUGGEST_PROVIDER_H_ | 15 #define CHROME_BROWSER_AUTOCOMPLETE_ZERO_SUGGEST_PROVIDER_H_ |
16 | 16 |
17 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
18 #include "base/compiler_specific.h" | 18 #include "base/compiler_specific.h" |
19 #include "base/memory/scoped_ptr.h" | 19 #include "base/memory/scoped_ptr.h" |
20 #include "chrome/browser/autocomplete/base_search_provider.h" | 20 #include "chrome/browser/autocomplete/base_search_provider.h" |
21 #include "chrome/browser/autocomplete/search_provider.h" | 21 #include "chrome/browser/autocomplete/search_provider.h" |
| 22 #include "chrome/browser/history/history_types.h" |
22 #include "components/metrics/proto/omnibox_event.pb.h" | 23 #include "components/metrics/proto/omnibox_event.pb.h" |
23 | 24 |
24 class TemplateURLService; | 25 class TemplateURLService; |
25 | 26 |
26 namespace base { | 27 namespace base { |
27 class ListValue; | 28 class ListValue; |
28 class Value; | 29 class Value; |
29 } | 30 } |
30 | 31 |
31 namespace net { | 32 namespace net { |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 156 |
156 history::MostVisitedURLList most_visited_urls_; | 157 history::MostVisitedURLList most_visited_urls_; |
157 | 158 |
158 // For callbacks that may be run after destruction. | 159 // For callbacks that may be run after destruction. |
159 base::WeakPtrFactory<ZeroSuggestProvider> weak_ptr_factory_; | 160 base::WeakPtrFactory<ZeroSuggestProvider> weak_ptr_factory_; |
160 | 161 |
161 DISALLOW_COPY_AND_ASSIGN(ZeroSuggestProvider); | 162 DISALLOW_COPY_AND_ASSIGN(ZeroSuggestProvider); |
162 }; | 163 }; |
163 | 164 |
164 #endif // CHROME_BROWSER_AUTOCOMPLETE_ZERO_SUGGEST_PROVIDER_H_ | 165 #endif // CHROME_BROWSER_AUTOCOMPLETE_ZERO_SUGGEST_PROVIDER_H_ |
OLD | NEW |