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

Side by Side Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 1889053003: Fix InputConnection.deleteSurroundingText() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "web/WebRemoteFrameImpl.h" 5 #include "web/WebRemoteFrameImpl.h"
6 6
7 #include "core/frame/FrameView.h" 7 #include "core/frame/FrameView.h"
8 #include "core/frame/Settings.h" 8 #include "core/frame/Settings.h"
9 #include "core/html/HTMLFrameOwnerElement.h" 9 #include "core/html/HTMLFrameOwnerElement.h"
10 #include "core/layout/LayoutObject.h" 10 #include "core/layout/LayoutObject.h"
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 { 464 {
465 NOTREACHED(); 465 NOTREACHED();
466 return false; 466 return false;
467 } 467 }
468 468
469 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) 469 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after)
470 { 470 {
471 NOTREACHED(); 471 NOTREACHED();
472 } 472 }
473 473
474 void WebRemoteFrameImpl::deleteSurroundingText(int before, int after)
475 {
476 NOTREACHED();
477 }
478
474 void WebRemoteFrameImpl::setCaretVisible(bool) 479 void WebRemoteFrameImpl::setCaretVisible(bool)
475 { 480 {
476 NOTREACHED(); 481 NOTREACHED();
477 } 482 }
478 483
479 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra inToNode) 484 int WebRemoteFrameImpl::printBegin(const WebPrintParams&, const WebNode& constra inToNode)
480 { 485 {
481 NOTREACHED(); 486 NOTREACHED();
482 return 0; 487 return 0;
483 } 488 }
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 697
693 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client) 698 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client)
694 : WebRemoteFrame(scope) 699 : WebRemoteFrame(scope)
695 , m_frameClient(RemoteFrameClientImpl::create(this)) 700 , m_frameClient(RemoteFrameClientImpl::create(this))
696 , m_client(client) 701 , m_client(client)
697 , m_selfKeepAlive(this) 702 , m_selfKeepAlive(this)
698 { 703 {
699 } 704 }
700 705
701 } // namespace blink 706 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698