OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_AUTOFILL_POPUP_CONTROLLER_COMMON_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_POPUP_CONTROLLER_COMMON_H_ |
6 #define CHROME_BROWSER_UI_AUTOFILL_POPUP_CONTROLLER_COMMON_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_POPUP_CONTROLLER_COMMON_H_ |
7 | 7 |
8 #include "content/public/browser/render_widget_host.h" | 8 #include "content/public/browser/render_widget_host.h" |
| 9 #include "ui/gfx/geometry/rect.h" |
| 10 #include "ui/gfx/geometry/rect_f.h" |
9 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
10 #include "ui/gfx/rect.h" | |
11 #include "ui/gfx/rect_f.h" | |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 struct NativeWebKeyboardEvent; | 14 struct NativeWebKeyboardEvent; |
15 class RenderViewHost; | 15 class RenderViewHost; |
16 class WebContents; | 16 class WebContents; |
17 } | 17 } |
18 | 18 |
19 namespace gfx { | 19 namespace gfx { |
20 class Display; | 20 class Display; |
21 } | 21 } |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 content::RenderViewHost* key_press_event_target_; | 96 content::RenderViewHost* key_press_event_target_; |
97 | 97 |
98 content::RenderWidgetHost::KeyPressEventCallback key_press_event_callback_; | 98 content::RenderWidgetHost::KeyPressEventCallback key_press_event_callback_; |
99 | 99 |
100 DISALLOW_COPY_AND_ASSIGN(PopupControllerCommon); | 100 DISALLOW_COPY_AND_ASSIGN(PopupControllerCommon); |
101 }; | 101 }; |
102 | 102 |
103 } // namespace autofill | 103 } // namespace autofill |
104 | 104 |
105 #endif // CHROME_BROWSER_UI_AUTOFILL_POPUP_CONTROLLER_COMMON_H_ | 105 #endif // CHROME_BROWSER_UI_AUTOFILL_POPUP_CONTROLLER_COMMON_H_ |
OLD | NEW |