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_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 #if defined(OS_CHROMEOS) | 22 #if defined(OS_CHROMEOS) |
23 #include "ui/base/ime/chromeos/input_method_manager.h" | 23 #include "ui/base/ime/chromeos/input_method_manager.h" |
24 #endif | 24 #endif |
25 | 25 |
26 class CommandUpdater; | 26 class CommandUpdater; |
27 class LocationBarView; | 27 class LocationBarView; |
28 class OmniboxPopupView; | 28 class OmniboxPopupView; |
29 class Profile; | 29 class Profile; |
30 | 30 |
| 31 namespace content { |
| 32 class WebContents; |
| 33 } |
| 34 |
31 namespace gfx { | 35 namespace gfx { |
32 class RenderText; | 36 class RenderText; |
33 } | 37 } |
34 | 38 |
35 namespace ui { | 39 namespace ui { |
36 class OSExchangeData; | 40 class OSExchangeData; |
37 } // namespace ui | 41 } // namespace ui |
38 | 42 |
39 // Views-implementation of OmniboxView. | 43 // Views-implementation of OmniboxView. |
40 class OmniboxViewViews | 44 class OmniboxViewViews |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 // painted. Used to measure omnibox responsiveness with a histogram. | 250 // painted. Used to measure omnibox responsiveness with a histogram. |
247 base::TimeTicks insert_char_time_; | 251 base::TimeTicks insert_char_time_; |
248 | 252 |
249 // Used to bind callback functions to this object. | 253 // Used to bind callback functions to this object. |
250 base::WeakPtrFactory<OmniboxViewViews> weak_ptr_factory_; | 254 base::WeakPtrFactory<OmniboxViewViews> weak_ptr_factory_; |
251 | 255 |
252 DISALLOW_COPY_AND_ASSIGN(OmniboxViewViews); | 256 DISALLOW_COPY_AND_ASSIGN(OmniboxViewViews); |
253 }; | 257 }; |
254 | 258 |
255 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ | 259 #endif // CHROME_BROWSER_UI_VIEWS_OMNIBOX_OMNIBOX_VIEW_VIEWS_H_ |
OLD | NEW |