OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "android_webview/renderer/aw_print_web_view_helper_delegate.h" |
| 6 |
| 7 #include "content/public/renderer/render_view.h" |
| 8 #include "third_party/WebKit/public/web/WebElement.h" |
| 9 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
| 10 |
| 11 AwPrintWebViewHelperDelegate::~AwPrintWebViewHelperDelegate() { |
| 12 } |
| 13 |
| 14 bool AwPrintWebViewHelperDelegate::CancelPrerender( |
| 15 content::RenderView* render_view, int routing_id) { |
| 16 return false; |
| 17 } |
| 18 |
| 19 blink::WebElement AwPrintWebViewHelperDelegate::GetPdfElement( |
| 20 blink::WebLocalFrame* frame) { |
| 21 return blink::WebElement(); |
| 22 } |
OLD | NEW |