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

Unified Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 2923343005: Move printing-related methods from WebFrame to WebLocalFrame. (Closed)
Patch Set: . Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
index c2c3be357d0634d7b95cd9706656550b6c57d855..13d2d3a26983a9132d13089f52a7c5d563bbf508 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
@@ -236,46 +236,12 @@ unsigned WebRemoteFrameImpl::UnloadListenerCount() const {
return 0;
}
-int WebRemoteFrameImpl::PrintBegin(const WebPrintParams&,
- const WebNode& constrain_to_node) {
- NOTREACHED();
- return 0;
-}
-
-float WebRemoteFrameImpl::PrintPage(int page_to_print, WebCanvas*) {
- NOTREACHED();
- return 0.0;
-}
-
-float WebRemoteFrameImpl::GetPrintPageShrink(int page) {
- NOTREACHED();
- return 0.0;
-}
-
-void WebRemoteFrameImpl::PrintEnd() {
- NOTREACHED();
-}
-
-bool WebRemoteFrameImpl::IsPrintScalingDisabledForPlugin(const WebNode&) {
- NOTREACHED();
- return false;
-}
-
-void WebRemoteFrameImpl::PrintPagesWithBoundaries(WebCanvas*, const WebSize&) {
- NOTREACHED();
-}
-
void WebRemoteFrameImpl::DispatchMessageEventWithOriginCheck(
const WebSecurityOrigin& intended_target_origin,
const WebDOMEvent&) {
NOTREACHED();
}
-WebRect WebRemoteFrameImpl::SelectionBoundsRect() const {
- NOTREACHED();
- return WebRect();
-}
-
WebLocalFrame* WebRemoteFrameImpl::CreateLocalChild(
WebTreeScopeType scope,
const WebString& name,

Powered by Google App Engine
This is Rietveld 408576698