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

Unified Diff: ppapi/thunk/ppb_pdf_thunk.cc

Issue 554893002: [WORK_IN_PROGRESS] PDF::Save() fix for out-of-process-pdf. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: better fix for constrained windows 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/thunk/ppb_pdf_api.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_pdf_thunk.cc
diff --git a/ppapi/thunk/ppb_pdf_thunk.cc b/ppapi/thunk/ppb_pdf_thunk.cc
index a8aa0806b17be012637640ca30eb0af095b3a202..8f2b46b2b92f5953dd47398ae18fb4fedc959394 100644
--- a/ppapi/thunk/ppb_pdf_thunk.cc
+++ b/ppapi/thunk/ppb_pdf_thunk.cc
@@ -105,10 +105,10 @@ void HasUnsupportedFeature(PP_Instance instance) {
enter.functions()->HasUnsupportedFeature();
}
-void SaveAs(PP_Instance instance) {
+void SaveAs(PP_Instance instance, PP_Var url) {
EnterInstanceAPI<PPB_PDF_API> enter(instance);
if (enter.succeeded())
- enter.functions()->SaveAs();
+ enter.functions()->SaveAs(url);
}
void Print(PP_Instance instance) {
« no previous file with comments | « ppapi/thunk/ppb_pdf_api.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698