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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 11 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "ui/base/events/event.h" | 13 #include "ui/base/events/event.h" |
14 #include "ui/base/gestures/gesture_recognizer.h" | 14 #include "ui/base/gestures/gesture_recognizer.h" |
15 #include "ui/base/gestures/gesture_types.h" | 15 #include "ui/base/gestures/gesture_types.h" |
16 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
17 #include "ui/gfx/rect.h" | 17 #include "ui/gfx/rect.h" |
18 #include "ui/gfx/vector2d_f.h" | 18 #include "ui/gfx/vector2d_f.h" |
19 #include "webkit/glue/webcursor.h" | 19 #include "webkit/common/cursors/webcursor.h" |
20 | 20 |
21 #if defined(TOOLKIT_GTK) | 21 #if defined(TOOLKIT_GTK) |
22 #include "webkit/plugins/npapi/gtk_plugin_container_manager.h" | 22 #include "webkit/plugins/npapi/gtk_plugin_container_manager.h" |
23 #endif // defined(TOOLKIT_GTK) | 23 #endif // defined(TOOLKIT_GTK) |
24 | 24 |
25 namespace content { | 25 namespace content { |
26 class RenderWidgetHost; | 26 class RenderWidgetHost; |
27 class RenderWidgetHostImpl; | 27 class RenderWidgetHostImpl; |
28 class BrowserPluginGuest; | 28 class BrowserPluginGuest; |
29 struct NativeWebKeyboardEvent; | 29 struct NativeWebKeyboardEvent; |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 RenderWidgetHostViewPort* platform_view_; | 209 RenderWidgetHostViewPort* platform_view_; |
210 #if defined(OS_WIN) || defined(USE_AURA) | 210 #if defined(OS_WIN) || defined(USE_AURA) |
211 scoped_ptr<ui::GestureRecognizer> gesture_recognizer_; | 211 scoped_ptr<ui::GestureRecognizer> gesture_recognizer_; |
212 #endif // defined(OS_WIN) || defined(USE_AURA) | 212 #endif // defined(OS_WIN) || defined(USE_AURA) |
213 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); | 213 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); |
214 }; | 214 }; |
215 | 215 |
216 } // namespace content | 216 } // namespace content |
217 | 217 |
218 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 218 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
OLD | NEW |