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

Side by Side Diff: chrome/renderer/pepper/chrome_pdf_print_delegate.cc

Issue 505243003: pdf: Move PepperPDFHost into the pdf component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pdf-component
Patch Set: Created 6 years, 3 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
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 "chrome/renderer/pepper/chrome_pdf_print_delegate.h" 5 #include "chrome/renderer/pepper/chrome_pdf_print_delegate.h"
6 6
7 #include "chrome/renderer/printing/print_web_view_helper.h" 7 #include "chrome/renderer/printing/print_web_view_helper.h"
8 #include "content/public/renderer/pepper_plugin_instance.h" 8 #include "content/public/renderer/pepper_plugin_instance.h"
9 #include "content/public/renderer/render_view.h" 9 #include "content/public/renderer/render_view.h"
10 #include "third_party/WebKit/public/web/WebDocument.h" 10 #include "third_party/WebKit/public/web/WebDocument.h"
(...skipping 24 matching lines...) Expand all
35 35
36 ChromePDFPrintDelegate::ChromePDFPrintDelegate() {} 36 ChromePDFPrintDelegate::ChromePDFPrintDelegate() {}
37 ChromePDFPrintDelegate::~ChromePDFPrintDelegate() {} 37 ChromePDFPrintDelegate::~ChromePDFPrintDelegate() {}
38 38
39 bool ChromePDFPrintDelegate::IsPrintingEnabled(PP_Instance instance_id) { 39 bool ChromePDFPrintDelegate::IsPrintingEnabled(PP_Instance instance_id) {
40 blink::WebElement element = GetWebElement(instance_id); 40 blink::WebElement element = GetWebElement(instance_id);
41 printing::PrintWebViewHelper* helper = GetPrintWebViewHelper(element); 41 printing::PrintWebViewHelper* helper = GetPrintWebViewHelper(element);
42 return helper && helper->IsPrintingEnabled(); 42 return helper && helper->IsPrintingEnabled();
43 } 43 }
44 44
45 void ChromePDFPrintDelegate::Print(PP_Instance instance_id) { 45 bool ChromePDFPrintDelegate::Print(PP_Instance instance_id) {
46 blink::WebElement element = GetWebElement(instance_id); 46 blink::WebElement element = GetWebElement(instance_id);
47 printing::PrintWebViewHelper* helper = GetPrintWebViewHelper(element); 47 printing::PrintWebViewHelper* helper = GetPrintWebViewHelper(element);
48 if (helper) 48 if (helper) {
49 helper->PrintNode(element); 49 helper->PrintNode(element);
50 return true;
51 }
52 return false;
50 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698