Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: content/browser/frame_host/render_widget_host_view_guest.h

Issue 2497033002: Break apart WebGestureEvent from WebInputEvent. (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <memory> 11 #include <memory>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "build/build_config.h" 15 #include "build/build_config.h"
16 #include "content/browser/frame_host/render_widget_host_view_child_frame.h" 16 #include "content/browser/frame_host/render_widget_host_view_child_frame.h"
17 #include "content/common/content_export.h" 17 #include "content/common/content_export.h"
18 #include "content/common/cursors/webcursor.h" 18 #include "content/common/cursors/webcursor.h"
19 #include "third_party/WebKit/public/web/WebInputEvent.h" 19 #include "third_party/WebKit/public/platform/WebInputEvent.h"
20 #include "ui/events/event.h" 20 #include "ui/events/event.h"
21 #include "ui/events/gestures/gesture_recognizer.h" 21 #include "ui/events/gestures/gesture_recognizer.h"
22 #include "ui/events/gestures/gesture_types.h" 22 #include "ui/events/gestures/gesture_types.h"
23 #include "ui/gfx/geometry/rect.h" 23 #include "ui/gfx/geometry/rect.h"
24 #include "ui/gfx/geometry/vector2d_f.h" 24 #include "ui/gfx/geometry/vector2d_f.h"
25 #include "ui/gfx/native_widget_types.h" 25 #include "ui/gfx/native_widget_types.h"
26 26
27 namespace content { 27 namespace content {
28 class BrowserPluginGuest; 28 class BrowserPluginGuest;
29 class RenderWidgetHost; 29 class RenderWidgetHost;
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 // The platform view for this RenderWidgetHostView. 159 // The platform view for this RenderWidgetHostView.
160 // RenderWidgetHostViewGuest mostly only cares about stuff related to 160 // RenderWidgetHostViewGuest mostly only cares about stuff related to
161 // compositing, the rest are directly forwarded to this |platform_view_|. 161 // compositing, the rest are directly forwarded to this |platform_view_|.
162 base::WeakPtr<RenderWidgetHostViewBase> platform_view_; 162 base::WeakPtr<RenderWidgetHostViewBase> platform_view_;
163 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); 163 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest);
164 }; 164 };
165 165
166 } // namespace content 166 } // namespace content
167 167
168 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ 168 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698