| 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 9e4b630214cf67fe66321f99d5fbdf262205ffff..c0454de3fd232e197c900acc9519b475c8831d62 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();
|
|
|