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

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

Issue 2773923002: Remove unused LayoutView::selectionStatrt/End functions (Closed)
Patch Set: Created 3 years, 9 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 | « third_party/WebKit/Source/core/layout/LayoutView.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutView.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
index f52868eec17e7cfbe52c5954ba997a98553bfc24..b84d3ecc58a913302b327dec36d660c346fc8185 100644
--- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
@@ -867,16 +867,6 @@ void LayoutView::commitPendingSelection() {
m_frameView->frame().selection().commitAppearanceIfNeeded(*this);
}
-LayoutObject* LayoutView::selectionStart() {
- commitPendingSelection();
- return m_selectionStart;
-}
-
-LayoutObject* LayoutView::selectionEnd() {
- commitPendingSelection();
- return m_selectionEnd;
-}
-
void LayoutView::selectionStartEnd(int& startPos, int& endPos) {
commitPendingSelection();
startPos = m_selectionStartPos;
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutView.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698