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" |
11 #include "base/string16.h" | 11 #include "base/strings/string16.h" |
12 #include "chrome/common/instant_restricted_id_cache.h" | 12 #include "chrome/common/instant_restricted_id_cache.h" |
13 #include "chrome/common/instant_types.h" | 13 #include "chrome/common/instant_types.h" |
14 #include "chrome/common/omnibox_focus_state.h" | 14 #include "chrome/common/omnibox_focus_state.h" |
15 #include "chrome/common/search_types.h" | 15 #include "chrome/common/search_types.h" |
16 #include "content/public/common/page_transition_types.h" | 16 #include "content/public/common/page_transition_types.h" |
17 #include "content/public/renderer/render_view_observer.h" | 17 #include "content/public/renderer/render_view_observer.h" |
18 #include "content/public/renderer/render_view_observer_tracker.h" | 18 #include "content/public/renderer/render_view_observer_tracker.h" |
19 #include "ui/base/window_open_disposition.h" | 19 #include "ui/base/window_open_disposition.h" |
20 #include "ui/gfx/rect.h" | 20 #include "ui/gfx/rect.h" |
21 | 21 |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 string16 omnibox_font_; | 193 string16 omnibox_font_; |
194 size_t omnibox_font_size_; | 194 size_t omnibox_font_size_; |
195 InstantRestrictedIDCache<InstantAutocompleteResult> | 195 InstantRestrictedIDCache<InstantAutocompleteResult> |
196 autocomplete_results_cache_; | 196 autocomplete_results_cache_; |
197 InstantRestrictedIDCache<InstantMostVisitedItem> most_visited_items_cache_; | 197 InstantRestrictedIDCache<InstantMostVisitedItem> most_visited_items_cache_; |
198 | 198 |
199 DISALLOW_COPY_AND_ASSIGN(SearchBox); | 199 DISALLOW_COPY_AND_ASSIGN(SearchBox); |
200 }; | 200 }; |
201 | 201 |
202 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ | 202 #endif // CHROME_RENDERER_SEARCHBOX_SEARCHBOX_H_ |
OLD | NEW |