Chromium Code Reviews| 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" | |
|
sgurun-gerrit only
2015/01/16 21:22:04
I don't think you need to include this, just a for
Bernhard Bauer
2015/01/19 10:05:25
Not even that is necessary; WebLocalFrame is alrea
dgn
2015/01/23 15:21:09
Done.
| |
| 10 | |
|
sgurun-gerrit only
2015/01/16 21:22:04
scope to android_webview namespace
dgn
2015/01/23 15:21:09
Done.
| |
| 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 |