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

Unified Diff: Source/web/WebInputEventConversion.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
« no previous file with comments | « Source/web/WebHitTestResult.cpp ('k') | Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebInputEventConversion.h
diff --git a/Source/web/WebInputEventConversion.h b/Source/web/WebInputEventConversion.h
index 196b58e82c2d268ee5bcebad2bd5af14dbebc08e..4537f2c29b3f922e2701324db1496b2744cb239c 100644
--- a/Source/web/WebInputEventConversion.h
+++ b/Source/web/WebInputEventConversion.h
@@ -43,7 +43,7 @@ namespace blink {
class GestureEvent;
class KeyboardEvent;
class MouseEvent;
-class RenderObject;
+class LayoutObject;
class TouchEvent;
class WebMouseEvent;
class WebMouseWheelEvent;
@@ -96,8 +96,8 @@ public:
// 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 Widget*, const RenderObject*, const MouseEvent&);
- WebMouseEventBuilder(const Widget*, const RenderObject*, const TouchEvent&);
+ WebMouseEventBuilder(const Widget*, const LayoutObject*, const MouseEvent&);
+ WebMouseEventBuilder(const Widget*, const LayoutObject*, const TouchEvent&);
// Converts a PlatformMouseEvent to a corresponding WebMouseEvent.
// NOTE: This is only implemented for mousepressed, mousereleased, and
@@ -110,7 +110,7 @@ public:
// If the event mapping fails, the event type will be set to Undefined.
class WebMouseWheelEventBuilder : public WebMouseWheelEvent {
public:
- WebMouseWheelEventBuilder(const Widget*, const RenderObject*, const WheelEvent&);
+ WebMouseWheelEventBuilder(const Widget*, const LayoutObject*, const WheelEvent&);
};
// Converts a KeyboardEvent or PlatformKeyboardEvent to a
@@ -129,14 +129,14 @@ public:
// exceeding that cap will be dropped.
class WebTouchEventBuilder : public WebTouchEvent {
public:
- WebTouchEventBuilder(const Widget*, const RenderObject*, const TouchEvent&);
+ WebTouchEventBuilder(const Widget*, const LayoutObject*, const TouchEvent&);
};
// Converts GestureEvent to a corresponding WebGestureEvent.
// NOTE: If event mapping fails, the type will be set to Undefined.
class WebGestureEventBuilder : public WebGestureEvent {
public:
- WebGestureEventBuilder(const Widget*, const RenderObject*, const GestureEvent&);
+ WebGestureEventBuilder(const Widget*, const LayoutObject*, const GestureEvent&);
};
} // namespace blink
« no previous file with comments | « Source/web/WebHitTestResult.cpp ('k') | Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698