OLD | NEW |
---|---|
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_RENDERER_SEARCHBOX_SEARCHBOX_H_ | 5 #ifndef CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ |
6 #define CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ | 6 #define CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 21 matching lines...) Expand all Loading... | |
32 void ShowInstantPreview(InstantShownReason reason, | 32 void ShowInstantPreview(InstantShownReason reason, |
33 int height, | 33 int height, |
34 InstantSizeUnits units); | 34 InstantSizeUnits units); |
35 | 35 |
36 // Sends ViewHostMsg_StartCapturingKeyStrokes to the browser. | 36 // Sends ViewHostMsg_StartCapturingKeyStrokes to the browser. |
37 void StartCapturingKeyStrokes(); | 37 void StartCapturingKeyStrokes(); |
38 | 38 |
39 // Sends ViewHostMsg_StopCapturingKeyStrokes to the browser. | 39 // Sends ViewHostMsg_StopCapturingKeyStrokes to the browser. |
40 void StopCapturingKeyStrokes(); | 40 void StopCapturingKeyStrokes(); |
41 | 41 |
42 // Send ChromeViewHostMsg_SearchBoxNavigate to the browser. | |
samarth
2012/12/07 02:01:35
nit: Sends ViewHostMsg (or fix the other ViewHostM
Shishir
2012/12/10 20:40:39
Done.
| |
43 void NavigateToURL(const GURL& url); | |
44 | |
42 const string16& query() const { return query_; } | 45 const string16& query() const { return query_; } |
43 bool verbatim() const { return verbatim_; } | 46 bool verbatim() const { return verbatim_; } |
44 size_t selection_start() const { return selection_start_; } | 47 size_t selection_start() const { return selection_start_; } |
45 size_t selection_end() const { return selection_end_; } | 48 size_t selection_end() const { return selection_end_; } |
46 int results_base() const { return results_base_; } | 49 int results_base() const { return results_base_; } |
47 const chrome::search::Mode& mode() const { return mode_; } | 50 const chrome::search::Mode& mode() const { return mode_; } |
48 bool display_instant_results() const { return display_instant_results_; } | 51 bool display_instant_results() const { return display_instant_results_; } |
49 | 52 |
50 gfx::Rect GetRect(); | 53 gfx::Rect GetRect(); |
51 const std::vector<InstantAutocompleteResult>& GetAutocompleteResults(); | 54 const std::vector<InstantAutocompleteResult>& GetAutocompleteResults(); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
89 std::vector<InstantAutocompleteResult> last_autocomplete_results_; | 92 std::vector<InstantAutocompleteResult> last_autocomplete_results_; |
90 chrome::search::Mode mode_; | 93 chrome::search::Mode mode_; |
91 ThemeBackgroundInfo theme_info_; | 94 ThemeBackgroundInfo theme_info_; |
92 int theme_area_height_; | 95 int theme_area_height_; |
93 bool display_instant_results_; | 96 bool display_instant_results_; |
94 | 97 |
95 DISALLOW_COPY_AND_ASSIGN(SearchBox); | 98 DISALLOW_COPY_AND_ASSIGN(SearchBox); |
96 }; | 99 }; |
97 | 100 |
98 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ | 101 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ |
OLD | NEW |