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

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

Issue 1605863002: Restart search in page when new text is found. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: small clean up Created 4 years, 10 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/page/Page.h" 10 #include "core/page/Page.h"
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 return WebString(); 576 return WebString();
577 } 577 }
578 578
579 void WebRemoteFrameImpl::printPagesWithBoundaries(WebCanvas*, const WebSize&) 579 void WebRemoteFrameImpl::printPagesWithBoundaries(WebCanvas*, const WebSize&)
580 { 580 {
581 ASSERT_NOT_REACHED(); 581 ASSERT_NOT_REACHED();
582 } 582 }
583 583
584 bool WebRemoteFrameImpl::find( 584 bool WebRemoteFrameImpl::find(
585 int identifier, const WebString& searchText, const WebFindOptions&, 585 int identifier, const WebString& searchText, const WebFindOptions&,
586 bool wrapWithinFrame, WebRect* selectionRect) 586 bool wrapWithinFrame, WebRect* selectionRect, bool* activeNow)
587 { 587 {
588 ASSERT_NOT_REACHED(); 588 ASSERT_NOT_REACHED();
589 return false; 589 return false;
590 } 590 }
591 591
592 void WebRemoteFrameImpl::stopFinding(bool clearSelection) 592 void WebRemoteFrameImpl::stopFinding(bool clearSelection)
593 { 593 {
594 ASSERT_NOT_REACHED(); 594 ASSERT_NOT_REACHED();
595 } 595 }
596 596
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 : WebRemoteFrame(scope) 813 : WebRemoteFrame(scope)
814 , m_frameClient(RemoteFrameClientImpl::create(this)) 814 , m_frameClient(RemoteFrameClientImpl::create(this))
815 , m_client(client) 815 , m_client(client)
816 #if ENABLE(OILPAN) 816 #if ENABLE(OILPAN)
817 , m_selfKeepAlive(this) 817 , m_selfKeepAlive(this)
818 #endif 818 #endif
819 { 819 {
820 } 820 }
821 821
822 } // namespace blink 822 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698