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

Unified Diff: Source/web/WebInputEventConversion.cpp

Issue 641733004: Merge FrameView and ScrollView. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline. Created 6 years, 2 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/WebInputEventConversion.h ('k') | Source/web/WebPluginContainerImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebInputEventConversion.cpp
diff --git a/Source/web/WebInputEventConversion.cpp b/Source/web/WebInputEventConversion.cpp
index 362b99b254876736cbb944ee74d105b86e6a2732..a8675776f56d935c1f4c178537301aeb26ed95e4 100644
--- a/Source/web/WebInputEventConversion.cpp
+++ b/Source/web/WebInputEventConversion.cpp
@@ -45,7 +45,6 @@
#include "core/rendering/RenderObject.h"
#include "platform/KeyboardCodes.h"
#include "platform/Widget.h"
-#include "platform/scroll/ScrollView.h"
namespace blink {
@@ -56,7 +55,7 @@ static float widgetInputEventsScaleFactor(const Widget* widget)
if (!widget)
return 1;
- ScrollView* rootView = toScrollView(widget->root());
+ FrameView* rootView = toFrameView(widget->root());
if (!rootView)
return 1;
@@ -67,7 +66,7 @@ static IntSize widgetInputEventsOffset(const Widget* widget)
{
if (!widget)
return IntSize();
- ScrollView* rootView = toScrollView(widget->root());
+ FrameView* rootView = toFrameView(widget->root());
if (!rootView)
return IntSize();
@@ -489,7 +488,7 @@ static void updateWebMouseEventFromCoreMouseEvent(const MouseRelatedEvent& event
webEvent.timeStampSeconds = event.timeStamp() / millisPerSecond;
webEvent.modifiers = getWebInputModifiers(event);
- ScrollView* view = toScrollView(widget.parent());
+ FrameView* view = toFrameView(widget.parent());
IntPoint windowPoint = IntPoint(event.absoluteLocation().x(), event.absoluteLocation().y());
if (view)
windowPoint = view->contentsToWindow(windowPoint);
@@ -579,7 +578,7 @@ WebMouseEventBuilder::WebMouseEventBuilder(const Widget* widget, const RenderObj
modifiers = getWebInputModifiers(event);
// The mouse event co-ordinates should be generated from the co-ordinates of the touch point.
- ScrollView* view = toScrollView(widget->parent());
+ FrameView* view = toFrameView(widget->parent());
IntPoint windowPoint = roundedIntPoint(touch->absoluteLocation());
if (view)
windowPoint = view->contentsToWindow(windowPoint);
« no previous file with comments | « Source/web/WebInputEventConversion.h ('k') | Source/web/WebPluginContainerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698