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

Unified Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 2012823003: Move IME related functions from WebFrame to WebLocalFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add CHECK in TextInputController::HasMarkedText() Created 4 years, 5 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/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
index b02db91e0497ac9de0e6b7de59b1da716d2676bf..17e6630a533fff482cd823dd21f20d87a4a897eb 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
@@ -326,154 +326,6 @@ unsigned WebRemoteFrameImpl::unloadListenerCount() const
return 0;
}
-void WebRemoteFrameImpl::insertText(const WebString&)
-{
- NOTREACHED();
-}
-
-void WebRemoteFrameImpl::setMarkedText(const WebString&, unsigned location, unsigned length)
-{
- NOTREACHED();
-}
-
-void WebRemoteFrameImpl::unmarkText()
-{
- NOTREACHED();
-}
-
-bool WebRemoteFrameImpl::hasMarkedText() const
-{
- NOTREACHED();
- return false;
-}
-
-WebRange WebRemoteFrameImpl::markedRange() const
-{
- NOTREACHED();
- return WebRange();
-}
-
-bool WebRemoteFrameImpl::firstRectForCharacterRange(unsigned location, unsigned length, WebRect&) const
-{
- NOTREACHED();
- return false;
-}
-
-size_t WebRemoteFrameImpl::characterIndexForPoint(const WebPoint&) const
-{
- NOTREACHED();
- return 0;
-}
-
-bool WebRemoteFrameImpl::executeCommand(const WebString&)
-{
- NOTREACHED();
- return false;
-}
-
-bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebString& value)
-{
- NOTREACHED();
- return false;
-}
-
-bool WebRemoteFrameImpl::isCommandEnabled(const WebString&) const
-{
- NOTREACHED();
- return false;
-}
-
-void WebRemoteFrameImpl::enableContinuousSpellChecking(bool)
-{
-}
-
-bool WebRemoteFrameImpl::isContinuousSpellCheckingEnabled() const
-{
- return false;
-}
-
-void WebRemoteFrameImpl::requestTextChecking(const WebElement&)
-{
- NOTREACHED();
-}
-
-void WebRemoteFrameImpl::removeSpellingMarkers()
-{
- NOTREACHED();
-}
-
-bool WebRemoteFrameImpl::hasSelection() const
-{
- NOTREACHED();
- return false;
-}
-
-WebRange WebRemoteFrameImpl::selectionRange() const
-{
- NOTREACHED();
- return WebRange();
-}
-
-WebString WebRemoteFrameImpl::selectionAsText() const
-{
- NOTREACHED();
- return WebString();
-}
-
-WebString WebRemoteFrameImpl::selectionAsMarkup() const
-{
- NOTREACHED();
- return WebString();
-}
-
-bool WebRemoteFrameImpl::selectWordAroundCaret()
-{
- NOTREACHED();
- return false;
-}
-
-void WebRemoteFrameImpl::selectRange(const WebPoint& base, const WebPoint& extent)
-{
- NOTREACHED();
-}
-
-void WebRemoteFrameImpl::selectRange(const WebRange&)
-{
- NOTREACHED();
-}
-
-void WebRemoteFrameImpl::moveRangeSelection(const WebPoint& base, const WebPoint& extent, WebFrame::TextGranularity granularity)
-{
- NOTREACHED();
-}
-
-void WebRemoteFrameImpl::moveCaretSelection(const WebPoint&)
-{
- NOTREACHED();
-}
-
-bool WebRemoteFrameImpl::setEditableSelectionOffsets(int start, int end)
-{
- NOTREACHED();
- return false;
-}
-
-bool WebRemoteFrameImpl::setCompositionFromExistingText(int compositionStart, int compositionEnd, const WebVector<WebCompositionUnderline>& underlines)
-{
- NOTREACHED();
- return false;
-}
-
-void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after)
-{
- NOTREACHED();
-}
-
-void WebRemoteFrameImpl::setCaretVisible(bool)
-{
- NOTREACHED();
-}
-
int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constrainToNode)
{
NOTREACHED();
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698