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_UI_WEBUI_OMNIBOX_OMNIBOX_UI_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OMNIBOX_OMNIBOX_UI_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_OMNIBOX_OMNIBOX_UI_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OMNIBOX_OMNIBOX_UI_HANDLER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 | 31 |
32 // AutocompleteControllerDelegate overrides: | 32 // AutocompleteControllerDelegate overrides: |
33 virtual void OnResultChanged(bool default_match_changed) OVERRIDE; | 33 virtual void OnResultChanged(bool default_match_changed) OVERRIDE; |
34 | 34 |
35 // ErrorHandler overrides: | 35 // ErrorHandler overrides: |
36 virtual void OnConnectionError() OVERRIDE { | 36 virtual void OnConnectionError() OVERRIDE { |
37 // TODO(darin): How should we handle connection error? | 37 // TODO(darin): How should we handle connection error? |
38 } | 38 } |
39 | 39 |
40 // OmniboxUIHandlerMojo overrides: | 40 // OmniboxUIHandlerMojo overrides: |
41 virtual void SetClient(OmniboxPage* page) OVERRIDE; | |
42 virtual void StartOmniboxQuery(const mojo::String& input_string, | 41 virtual void StartOmniboxQuery(const mojo::String& input_string, |
43 int32_t cursor_position, | 42 int32_t cursor_position, |
44 bool prevent_inline_autocomplete, | 43 bool prevent_inline_autocomplete, |
45 bool prefer_keyword, | 44 bool prefer_keyword, |
46 int32_t page_classification) OVERRIDE; | 45 int32_t page_classification) OVERRIDE; |
47 | 46 |
48 private: | 47 private: |
49 // Looks up whether the hostname is a typed host (i.e., has received | 48 // Looks up whether the hostname is a typed host (i.e., has received |
50 // typed visits). Return true if the lookup succeeded; if so, the | 49 // typed visits). Return true if the lookup succeeded; if so, the |
51 // value of |is_typed_host| is set appropriately. | 50 // value of |is_typed_host| is set appropriately. |
52 bool LookupIsTypedHost(const base::string16& host, bool* is_typed_host) const; | 51 bool LookupIsTypedHost(const base::string16& host, bool* is_typed_host) const; |
53 | 52 |
54 // Re-initializes the AutocompleteController in preparation for the | 53 // Re-initializes the AutocompleteController in preparation for the |
55 // next query. | 54 // next query. |
56 void ResetController(); | 55 void ResetController(); |
57 | 56 |
58 OmniboxPage* page_; | |
59 | |
60 // The omnibox AutocompleteController that collects/sorts/dup- | 57 // The omnibox AutocompleteController that collects/sorts/dup- |
61 // eliminates the results as they come in. | 58 // eliminates the results as they come in. |
62 scoped_ptr<AutocompleteController> controller_; | 59 scoped_ptr<AutocompleteController> controller_; |
63 | 60 |
64 // Time the user's input was sent to the omnibox to start searching. | 61 // Time the user's input was sent to the omnibox to start searching. |
65 // Needed because we also pass timing information in the object we | 62 // Needed because we also pass timing information in the object we |
66 // hand back to the javascript. | 63 // hand back to the javascript. |
67 base::Time time_omnibox_started_; | 64 base::Time time_omnibox_started_; |
68 | 65 |
69 // The input used when starting the AutocompleteController. | 66 // The input used when starting the AutocompleteController. |
70 AutocompleteInput input_; | 67 AutocompleteInput input_; |
71 | 68 |
72 // The Profile* handed to us in our constructor. | 69 // The Profile* handed to us in our constructor. |
73 Profile* profile_; | 70 Profile* profile_; |
74 | 71 |
75 DISALLOW_COPY_AND_ASSIGN(OmniboxUIHandler); | 72 DISALLOW_COPY_AND_ASSIGN(OmniboxUIHandler); |
76 }; | 73 }; |
77 | 74 |
78 #endif // CHROME_BROWSER_UI_WEBUI_OMNIBOX_OMNIBOX_UI_HANDLER_H_ | 75 #endif // CHROME_BROWSER_UI_WEBUI_OMNIBOX_OMNIBOX_UI_HANDLER_H_ |
OLD | NEW |