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

Side by Side Diff: android_webview/renderer/aw_print_web_view_helper_delegate.cc

Issue 822133003: Refactor webview to use //components/printing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698