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

Unified Diff: content/renderer/pepper/pepper_webplugin_impl.h

Issue 1169263003: Change return type of PrintPage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bool printPage removal Created 5 years, 6 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 | « no previous file | content/renderer/pepper/pepper_webplugin_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_webplugin_impl.h
diff --git a/content/renderer/pepper/pepper_webplugin_impl.h b/content/renderer/pepper/pepper_webplugin_impl.h
index 6840b5ee0f70bfd2de953739df67f837ac584ae9..3d821c68c0cf3e8f9f8d64a06327ed09658ad6c9 100644
--- a/content/renderer/pepper/pepper_webplugin_impl.h
+++ b/content/renderer/pepper/pepper_webplugin_impl.h
@@ -83,9 +83,8 @@ class PepperWebPluginImpl : public blink::WebPlugin {
virtual bool isPrintScalingDisabled() override;
virtual int printBegin(const blink::WebPrintParams& print_params) override;
- virtual bool printPage(int page_number, blink::WebCanvas* canvas) override;
- virtual void printPage(int page_number, blink::WebCanvas* canvas,
- bool unused);
+ void printPage(int page_number, blink::WebCanvas* canvas,
+ bool unused) override;
virtual void printEnd() override;
virtual bool canRotateView() override;
« no previous file with comments | « no previous file | content/renderer/pepper/pepper_webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698