| 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 CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 6 #define CONTENT_BROWSER_FRAME_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/frame_host/render_widget_host_view_child_frame.h" | 11 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "content/common/cursors/webcursor.h" |
| 13 #include "ui/events/event.h" | 14 #include "ui/events/event.h" |
| 14 #include "ui/events/gestures/gesture_recognizer.h" | 15 #include "ui/events/gestures/gesture_recognizer.h" |
| 15 #include "ui/events/gestures/gesture_types.h" | 16 #include "ui/events/gestures/gesture_types.h" |
| 16 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
| 17 #include "ui/gfx/rect.h" | 18 #include "ui/gfx/rect.h" |
| 18 #include "ui/gfx/vector2d_f.h" | 19 #include "ui/gfx/vector2d_f.h" |
| 19 #include "webkit/common/cursors/webcursor.h" | |
| 20 | 20 |
| 21 #if defined(TOOLKIT_GTK) | 21 #if defined(TOOLKIT_GTK) |
| 22 #include "content/browser/renderer_host/gtk_plugin_container_manager.h" | 22 #include "content/browser/renderer_host/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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 RenderWidgetHostViewPort* platform_view_; | 190 RenderWidgetHostViewPort* platform_view_; |
| 191 #if defined(OS_WIN) || defined(USE_AURA) | 191 #if defined(OS_WIN) || defined(USE_AURA) |
| 192 scoped_ptr<ui::GestureRecognizer> gesture_recognizer_; | 192 scoped_ptr<ui::GestureRecognizer> gesture_recognizer_; |
| 193 #endif // defined(OS_WIN) || defined(USE_AURA) | 193 #endif // defined(OS_WIN) || defined(USE_AURA) |
| 194 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); | 194 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); |
| 195 }; | 195 }; |
| 196 | 196 |
| 197 } // namespace content | 197 } // namespace content |
| 198 | 198 |
| 199 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 199 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
| OLD | NEW |