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

Unified Diff: Source/web/WebPluginContainerImpl.cpp

Issue 1196433005: Change return type of the printPage (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed printPage extra parameter changes from WebPluginContainerTest.cpp 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 | Source/web/tests/WebPluginContainerTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPluginContainerImpl.cpp
diff --git a/Source/web/WebPluginContainerImpl.cpp b/Source/web/WebPluginContainerImpl.cpp
index 2a8430cfc0e88d50b7d71cedcb2a1f0ed3789391..40a701310f852752b35d2165eaf5d6a8f1370216 100644
--- a/Source/web/WebPluginContainerImpl.cpp
+++ b/Source/web/WebPluginContainerImpl.cpp
@@ -359,8 +359,6 @@ void WebPluginContainerImpl::printPage(int pageNumber, GraphicsContext* gc, cons
return;
gc->save();
WebCanvas* canvas = gc->canvas();
- // TODO: Remove third parameter when both blink and chromium changes land for bug496765
- m_webPlugin->printPage(pageNumber, canvas, false);
m_webPlugin->printPage(pageNumber, canvas);
gc->restore();
}
« no previous file with comments | « no previous file | Source/web/tests/WebPluginContainerTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698