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

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: sync Created 4 years, 6 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/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();

Powered by Google App Engine
This is Rietveld 408576698