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

Unified Diff: third_party/WebKit/Source/web/WebViewImpl.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/web/WebViewImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
index f7013a5d4e0f4feddd2b386647f890922d744e57..e27add8eaaaff8ce8721bad67fda4327d1b64ef6 100644
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
@@ -2441,7 +2441,7 @@ bool WebViewImpl::SelectionTextDirection(WebTextDirection& start,
start = ToWebTextDirection(PrimaryDirectionOf(
*selection.ComputeVisibleSelectionInDOMTree().Start().AnchorNode()));
end = ToWebTextDirection(PrimaryDirectionOf(
- *selection.ComputeVisibleSelectionInDOMTree().end().AnchorNode()));
+ *selection.ComputeVisibleSelectionInDOMTree().End().AnchorNode()));
return true;
}

Powered by Google App Engine
This is Rietveld 408576698