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

Unified Diff: third_party/WebKit/Source/web/WebInputEventConversion.h

Issue 2729543002: Rename platform/Widget to platform/FrameViewBase in web. (Closed)
Patch Set: Created 3 years, 10 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/WebInputEventConversion.h
diff --git a/third_party/WebKit/Source/web/WebInputEventConversion.h b/third_party/WebKit/Source/web/WebInputEventConversion.h
index 182e58102b3eab259194af10f16e5c6499e49281..546b8417e0cb388800bfdfbf48f79b94eb372eab 100644
--- a/third_party/WebKit/Source/web/WebInputEventConversion.h
+++ b/third_party/WebKit/Source/web/WebInputEventConversion.h
@@ -61,8 +61,12 @@ class WEB_EXPORT WebMouseEventBuilder
// NOTE: This is only implemented for mousemove, mouseover, mouseout,
// mousedown and mouseup. If the event mapping fails, the event type will
// be set to Undefined.
- WebMouseEventBuilder(const FrameViewBase*, const LayoutItem, const MouseEvent&);
- WebMouseEventBuilder(const FrameViewBase*, const LayoutItem, const TouchEvent&);
+ WebMouseEventBuilder(const FrameViewBase*,
+ const LayoutItem,
+ const MouseEvent&);
+ WebMouseEventBuilder(const FrameViewBase*,
+ const LayoutItem,
+ const TouchEvent&);
};
// Converts a KeyboardEvent to a corresponding WebKeyboardEvent.
@@ -88,17 +92,21 @@ class WEB_EXPORT WebTouchEventBuilder
// and translation.
WEB_EXPORT WebGestureEvent TransformWebGestureEvent(FrameViewBase*,
const WebGestureEvent&);
-WEB_EXPORT WebMouseEvent TransformWebMouseEvent(FrameViewBase*, const WebMouseEvent&);
+WEB_EXPORT WebMouseEvent TransformWebMouseEvent(FrameViewBase*,
+ const WebMouseEvent&);
WEB_EXPORT WebMouseWheelEvent
TransformWebMouseWheelEvent(FrameViewBase*, const WebMouseWheelEvent&);
-WEB_EXPORT WebTouchEvent TransformWebTouchEvent(FrameViewBase*, const WebTouchEvent&);
+WEB_EXPORT WebTouchEvent TransformWebTouchEvent(FrameViewBase*,
+ const WebTouchEvent&);
Vector<WebMouseEvent> WEB_EXPORT
-TransformWebMouseEventVector(FrameViewBase*, const std::vector<const WebInputEvent*>&);
+TransformWebMouseEventVector(FrameViewBase*,
+ const std::vector<const WebInputEvent*>&);
Vector<WebTouchEvent> WEB_EXPORT
-TransformWebTouchEventVector(FrameViewBase*, const std::vector<const WebInputEvent*>&);
+TransformWebTouchEventVector(FrameViewBase*,
+ const std::vector<const WebInputEvent*>&);
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/web/LocalFrameClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698