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

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

Issue 24278008: [oilpan] Handlify Nodes in htmlediting (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 3 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: Source/core/page/Frame.cpp
diff --git a/Source/core/page/Frame.cpp b/Source/core/page/Frame.cpp
index 0ba5cc99c0cbe47d88989ca6d1e075dcd04dceb5..4fb183dc0ab49d0988c4e6ff6867c4da3b81fb85 100644
--- a/Source/core/page/Frame.cpp
+++ b/Source/core/page/Frame.cpp
@@ -507,7 +507,7 @@ VisiblePosition Frame::visiblePositionForPoint(const IntPoint& framePoint)
return VisiblePosition();
VisiblePosition visiblePos = renderer->positionForPoint(result.localPoint());
if (visiblePos.isNull())
- visiblePos = firstPositionInOrBeforeNode(node.raw());
+ visiblePos = firstPositionInOrBeforeNode(node);
return visiblePos;
}

Powered by Google App Engine
This is Rietveld 408576698