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

Unified Diff: webkit/plugins/ppapi/ppapi_webplugin_impl.cc

Issue 8051018: Add ppapi implementation of IsScalingDisabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win compile Created 9 years, 2 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
« no previous file with comments | « webkit/plugins/ppapi/ppapi_webplugin_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppapi_webplugin_impl.cc
diff --git a/webkit/plugins/ppapi/ppapi_webplugin_impl.cc b/webkit/plugins/ppapi/ppapi_webplugin_impl.cc
index b2b5b213adca5aa975d769e1a463a796109ac13e..1416780bc888b66e4870034b7baf9d2fb087a4a6 100644
--- a/webkit/plugins/ppapi/ppapi_webplugin_impl.cc
+++ b/webkit/plugins/ppapi/ppapi_webplugin_impl.cc
@@ -238,6 +238,10 @@ bool WebPluginImpl::supportsPaginatedPrint() {
return instance_->SupportsPrintInterface();
}
+bool WebPluginImpl::isPrintScalingDisabled() {
+ return instance_->IsPrintScalingDisabled();
+}
+
int WebPluginImpl::printBegin(const WebKit::WebRect& printable_area,
int printer_dpi) {
return instance_->PrintBegin(printable_area, printer_dpi);
« no previous file with comments | « webkit/plugins/ppapi/ppapi_webplugin_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698