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

Unified Diff: ppapi/proxy/ppb_pdf_proxy.cc

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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
Index: ppapi/proxy/ppb_pdf_proxy.cc
===================================================================
--- ppapi/proxy/ppb_pdf_proxy.cc (revision 69282)
+++ ppapi/proxy/ppb_pdf_proxy.cc (working copy)
@@ -14,7 +14,7 @@
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/plugin_resource.h"
#include "ppapi/proxy/ppapi_messages.h"
-#include "webkit/glue/plugins/ppb_private.h"
+#include "webkit/plugins/ppapi/ppb_pdf.h"
namespace pp {
namespace proxy {
@@ -100,7 +100,7 @@
return true;
}
-const PPB_Private ppb_private = {
+const PPB_Pdf ppb_pdf = {
NULL, // &GetLocalizedString,
NULL, // &GetResourceImage,
&GetFontFileWithFallback,
@@ -118,7 +118,7 @@
}
const void* PPB_Pdf_Proxy::GetSourceInterface() const {
- return &ppb_private;
+ return &ppb_pdf;
}
InterfaceID PPB_Pdf_Proxy::GetInterfaceId() const {

Powered by Google App Engine
This is Rietveld 408576698