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_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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 size_t selection_start_; | 77 size_t selection_start_; |
78 size_t selection_end_; | 78 size_t selection_end_; |
79 size_t results_base_; | 79 size_t results_base_; |
80 gfx::Rect rect_; | 80 gfx::Rect rect_; |
81 std::vector<InstantAutocompleteResult> autocomplete_results_; | 81 std::vector<InstantAutocompleteResult> autocomplete_results_; |
82 size_t last_results_base_; | 82 size_t last_results_base_; |
83 std::vector<InstantAutocompleteResult> last_autocomplete_results_; | 83 std::vector<InstantAutocompleteResult> last_autocomplete_results_; |
84 bool is_focused_; | 84 bool is_focused_; |
85 bool active_tab_is_ntp_; | 85 bool active_tab_is_ntp_; |
86 | 86 |
87 DISALLOW_IMPLICIT_CONSTRUCTORS(SearchBox); | 87 DISALLOW_COPY_AND_ASSIGN(SearchBox); |
88 }; | 88 }; |
89 | 89 |
90 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ | 90 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ |
OLD | NEW |