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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 return WebString(); | 582 return WebString(); |
583 } | 583 } |
584 | 584 |
585 void WebRemoteFrameImpl::printPagesWithBoundaries(WebCanvas*, const WebSize&) | 585 void WebRemoteFrameImpl::printPagesWithBoundaries(WebCanvas*, const WebSize&) |
586 { | 586 { |
587 ASSERT_NOT_REACHED(); | 587 ASSERT_NOT_REACHED(); |
588 } | 588 } |
589 | 589 |
590 bool WebRemoteFrameImpl::find( | 590 bool WebRemoteFrameImpl::find( |
591 int identifier, const WebString& searchText, const WebFindOptions&, | 591 int identifier, const WebString& searchText, const WebFindOptions&, |
592 bool wrapWithinFrame, WebRect* selectionRect) | 592 bool wrapWithinFrame, WebRect* selectionRect, bool& newTextFound) |
593 { | 593 { |
594 ASSERT_NOT_REACHED(); | 594 ASSERT_NOT_REACHED(); |
595 return false; | 595 return false; |
596 } | 596 } |
597 | 597 |
598 void WebRemoteFrameImpl::stopFinding(bool clearSelection) | 598 void WebRemoteFrameImpl::stopFinding(bool clearSelection) |
599 { | 599 { |
600 ASSERT_NOT_REACHED(); | 600 ASSERT_NOT_REACHED(); |
601 } | 601 } |
602 | 602 |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 : WebRemoteFrame(scope) | 819 : WebRemoteFrame(scope) |
820 , m_frameClient(RemoteFrameClientImpl::create(this)) | 820 , m_frameClient(RemoteFrameClientImpl::create(this)) |
821 , m_client(client) | 821 , m_client(client) |
822 #if ENABLE(OILPAN) | 822 #if ENABLE(OILPAN) |
823 , m_selfKeepAlive(this) | 823 , m_selfKeepAlive(this) |
824 #endif | 824 #endif |
825 { | 825 { |
826 } | 826 } |
827 | 827 |
828 } // namespace blink | 828 } // namespace blink |
OLD | NEW |