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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp

Issue 2920733002: Rename VisibleSelection::end() to End() (Closed)
Patch Set: 2017-06-01T18:31:38 Created 3 years, 7 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/core/layout/LayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
index e26e12c40ce5e6cc972111a69b0f389ad2c9cce8..dded3745ff11bce938f7d2027af6f36d0bba8534 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTreeAsText.cpp
@@ -788,8 +788,8 @@ static void WriteSelection(TextStream& ts, const LayoutObject* o) {
ts << "selection start: position "
<< selection.Start().ComputeEditingOffset() << " of "
<< NodePosition(selection.Start().AnchorNode()) << "\n"
- << "selection end: position " << selection.end().ComputeEditingOffset()
- << " of " << NodePosition(selection.end().AnchorNode()) << "\n";
+ << "selection end: position " << selection.End().ComputeEditingOffset()
+ << " of " << NodePosition(selection.End().AnchorNode()) << "\n";
}
}

Powered by Google App Engine
This is Rietveld 408576698