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

Unified Diff: Source/core/page/EventHandler.cpp

Issue 648913002: Clean up vestiges of ScrollView. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/core/frame/FrameView.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/EventHandler.cpp
diff --git a/Source/core/page/EventHandler.cpp b/Source/core/page/EventHandler.cpp
index f9975092a9176d0a4a643cffd6b0030ab48e6c80..b64bb3ddb1a62545933febf604a9c0a50eb4c8d6 100644
--- a/Source/core/page/EventHandler.cpp
+++ b/Source/core/page/EventHandler.cpp
@@ -579,8 +579,8 @@ bool EventHandler::handleMousePressEvent(const MouseEventWithHitTestResults& eve
m_frame->document()->updateLayoutIgnorePendingStylesheets();
- if (FrameView* scrollView = m_frame->view()) {
- if (scrollView->isPointInScrollbarCorner(event.event().position()))
+ if (FrameView* frameView = m_frame->view()) {
+ if (frameView->isPointInScrollbarCorner(event.event().position()))
return false;
}
« no previous file with comments | « Source/core/frame/FrameView.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698