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

Unified Diff: Source/web/WebFrameImpl.cpp

Issue 26237004: Remove unused editing related member functions from WebViewClient (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 2013-10-09T17:59:14 Created 7 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/web/EditorClientImpl.cpp ('k') | public/testing/WebTestProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebFrameImpl.cpp
diff --git a/Source/web/WebFrameImpl.cpp b/Source/web/WebFrameImpl.cpp
index d6fc518d2e315e84cf4ea1cc5bbabc53985118f4..8b3349095f9e2a452f2986423ca43cf6c0e1da5a 100644
--- a/Source/web/WebFrameImpl.cpp
+++ b/Source/web/WebFrameImpl.cpp
@@ -1243,8 +1243,6 @@ void WebFrameImpl::replaceMisspelledRange(const WebString& text)
RefPtr<Range> markerRange = Range::create(caretRange->ownerDocument(), caretRange->startContainer(), markers[0]->startOffset(), caretRange->endContainer(), markers[0]->endOffset());
if (!markerRange)
return;
- if (!frame()->selection().shouldChangeSelection(markerRange.get()))
- return;
frame()->selection().setSelection(markerRange.get(), CharacterGranularity);
frame()->editor().replaceSelectionWithText(text, false, false);
}
@@ -1305,10 +1303,8 @@ void WebFrameImpl::selectWordAroundPosition(Frame* frame, VisiblePosition positi
VisibleSelection selection(position);
selection.expandUsingGranularity(WordGranularity);
- if (frame->selection().shouldChangeSelection(selection)) {
- TextGranularity granularity = selection.isRange() ? WordGranularity : CharacterGranularity;
- frame->selection().setSelection(selection, granularity);
- }
+ TextGranularity granularity = selection.isRange() ? WordGranularity : CharacterGranularity;
+ frame->selection().setSelection(selection, granularity);
}
bool WebFrameImpl::selectWordAroundCaret()
@@ -1342,8 +1338,7 @@ void WebFrameImpl::moveRangeSelection(const WebPoint& base, const WebPoint& exte
VisiblePosition basePosition = visiblePositionForWindowPoint(base);
VisiblePosition extentPosition = visiblePositionForWindowPoint(extent);
VisibleSelection newSelection = VisibleSelection(basePosition, extentPosition);
- if (frame()->selection().shouldChangeSelection(newSelection))
- frame()->selection().setSelection(newSelection, CharacterGranularity);
+ frame()->selection().setSelection(newSelection, CharacterGranularity);
}
void WebFrameImpl::moveCaretSelection(const WebPoint& point)
@@ -1353,8 +1348,7 @@ void WebFrameImpl::moveCaretSelection(const WebPoint& point)
return;
VisiblePosition position = visiblePositionForWindowPoint(point);
- if (frame()->selection().shouldChangeSelection(position))
- frame()->selection().moveTo(position, UserTriggered);
+ frame()->selection().moveTo(position, UserTriggered);
}
void WebFrameImpl::setCaretVisible(bool visible)
« no previous file with comments | « Source/web/EditorClientImpl.cpp ('k') | public/testing/WebTestProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698