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

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

Issue 330613002: Copying text closes the keyboard and the text input gets unfocused, forcing virtual keyboard is get… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed FrameSelection changes and making use of existing APIs for serving the requirement. Created 6 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 unified diff | Download patch
« no previous file with comments | « Source/web/WebRemoteFrameImpl.h ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "config.h" 5 #include "config.h"
6 #include "web/WebRemoteFrameImpl.h" 6 #include "web/WebRemoteFrameImpl.h"
7 7
8 #include "core/frame/RemoteFrame.h" 8 #include "core/frame/RemoteFrame.h"
9 #include "public/platform/WebFloatRect.h" 9 #include "public/platform/WebFloatRect.h"
10 #include "public/platform/WebRect.h" 10 #include "public/platform/WebRect.h"
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 { 457 {
458 ASSERT_NOT_REACHED(); 458 ASSERT_NOT_REACHED();
459 return 0; 459 return 0;
460 } 460 }
461 461
462 void WebRemoteFrameImpl::replaceSelection(const WebString&) 462 void WebRemoteFrameImpl::replaceSelection(const WebString&)
463 { 463 {
464 ASSERT_NOT_REACHED(); 464 ASSERT_NOT_REACHED();
465 } 465 }
466 466
467 bool WebRemoteFrameImpl::setCaretSelectionFromRangeSelection()
468 {
469 ASSERT_NOT_REACHED();
470 return false;
471 }
472
467 void WebRemoteFrameImpl::insertText(const WebString&) 473 void WebRemoteFrameImpl::insertText(const WebString&)
468 { 474 {
469 ASSERT_NOT_REACHED(); 475 ASSERT_NOT_REACHED();
470 } 476 }
471 477
472 void WebRemoteFrameImpl::setMarkedText(const WebString&, unsigned location, unsi gned length) 478 void WebRemoteFrameImpl::setMarkedText(const WebString&, unsigned location, unsi gned length)
473 { 479 {
474 ASSERT_NOT_REACHED(); 480 ASSERT_NOT_REACHED();
475 } 481 }
476 482
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 return child; 844 return child;
839 } 845 }
840 846
841 void WebRemoteFrameImpl::setWebCoreFrame(PassRefPtr<RemoteFrame> frame) 847 void WebRemoteFrameImpl::setWebCoreFrame(PassRefPtr<RemoteFrame> frame)
842 { 848 {
843 m_frame = frame; 849 m_frame = frame;
844 } 850 }
845 851
846 } // namespace blink 852 } // namespace blink
847 853
OLDNEW
« no previous file with comments | « Source/web/WebRemoteFrameImpl.h ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698