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

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

Issue 1977633003: Remove RenderFrameImpl::GetFocusedElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes the right click + blur + copy case. Created 4 years, 7 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 NOTREACHED(); 360 NOTREACHED();
361 return false; 361 return false;
362 } 362 }
363 363
364 size_t WebRemoteFrameImpl::characterIndexForPoint(const WebPoint&) const 364 size_t WebRemoteFrameImpl::characterIndexForPoint(const WebPoint&) const
365 { 365 {
366 NOTREACHED(); 366 NOTREACHED();
367 return 0; 367 return 0;
368 } 368 }
369 369
370 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebNode&) 370 bool WebRemoteFrameImpl::executeCommand(const WebString&)
371 { 371 {
372 NOTREACHED(); 372 NOTREACHED();
373 return false; 373 return false;
374 } 374 }
375 375
376 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebString& value , const WebNode&) 376 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebString& value )
377 { 377 {
378 NOTREACHED(); 378 NOTREACHED();
379 return false; 379 return false;
380 } 380 }
381 381
382 bool WebRemoteFrameImpl::isCommandEnabled(const WebString&) const 382 bool WebRemoteFrameImpl::isCommandEnabled(const WebString&) const
383 { 383 {
384 NOTREACHED(); 384 NOTREACHED();
385 return false; 385 return false;
386 } 386 }
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 692
693 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client) 693 WebRemoteFrameImpl::WebRemoteFrameImpl(WebTreeScopeType scope, WebRemoteFrameCli ent* client)
694 : WebRemoteFrame(scope) 694 : WebRemoteFrame(scope)
695 , m_frameClient(RemoteFrameClientImpl::create(this)) 695 , m_frameClient(RemoteFrameClientImpl::create(this))
696 , m_client(client) 696 , m_client(client)
697 , m_selfKeepAlive(this) 697 , m_selfKeepAlive(this)
698 { 698 {
699 } 699 }
700 700
701 } // namespace blink 701 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698