diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-16 18:15:52 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-16 18:15:52 +0000 |
commit | 0bd753681a82634f322d4867b19148474c25566b (patch) | |
tree | 2f96cb4494c075ddee5a3e42e6b41c096a5357a9 /ppapi/proxy/ppb_pdf_proxy.h | |
parent | d1d0afe664ff43825a4585f88ee8ce412eab0194 (diff) | |
download | chromium_src-0bd753681a82634f322d4867b19148474c25566b.zip chromium_src-0bd753681a82634f322d4867b19148474c25566b.tar.gz chromium_src-0bd753681a82634f322d4867b19148474c25566b.tar.bz2 |
Move the Pepper implementation from webkit/glue/plugins/pepper_* to
webkit/plugins/ppapi/*. This renamed the files and interface implementation
classes from foo.cc/Foo to ppb_foo_impl/PPB_Foo_Impl to match the proxy
ppb_foo_proxy/PPB_Foo_Proxy.
This moves plugin_switches.* from webkit/glue/plugins to webkit/plugins.
Review URL: http://codereview.chromium.org/5828003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69424 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppb_pdf_proxy.h')
-rw-r--r-- | ppapi/proxy/ppb_pdf_proxy.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ppapi/proxy/ppb_pdf_proxy.h b/ppapi/proxy/ppb_pdf_proxy.h index 43b90d6..f229df2 100644 --- a/ppapi/proxy/ppb_pdf_proxy.h +++ b/ppapi/proxy/ppb_pdf_proxy.h @@ -8,20 +8,20 @@ #include "ppapi/c/pp_module.h" #include "ppapi/proxy/interface_proxy.h" -struct PPB_Private; +struct PPB_PDF; namespace pp { namespace proxy { struct SerializedFontDescription; -class PPB_Pdf_Proxy : public InterfaceProxy { +class PPB_PDF_Proxy : public InterfaceProxy { public: - PPB_Pdf_Proxy(Dispatcher* dispatcher, const void* target_interface); - virtual ~PPB_Pdf_Proxy(); + PPB_PDF_Proxy(Dispatcher* dispatcher, const void* target_interface); + virtual ~PPB_PDF_Proxy(); - const PPB_Private* ppb_pdf_target() const { - return static_cast<const PPB_Private*>(target_interface()); + const PPB_PDF* ppb_pdf_target() const { + return static_cast<const PPB_PDF*>(target_interface()); } // InterfaceProxy implementation. |