OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |