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

Unified Diff: webkit/plugins/ppapi/ppb_file_ref_impl.h

Issue 7669055: Remove webkit::ppapi::Resource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nulls auditeed Created 9 years, 4 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 | « webkit/plugins/ppapi/ppb_file_io_impl.cc ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_file_ref_impl.h
diff --git a/webkit/plugins/ppapi/ppb_file_ref_impl.h b/webkit/plugins/ppapi/ppb_file_ref_impl.h
index 7823c50dc49bbb794c5464e623dd6bd8ca94db8e..1bd264c843277f4b62ae63d8fab7904b2eb8038d 100644
--- a/webkit/plugins/ppapi/ppb_file_ref_impl.h
+++ b/webkit/plugins/ppapi/ppb_file_ref_impl.h
@@ -10,24 +10,24 @@
#include "base/file_path.h"
#include "googleurl/src/gurl.h"
#include "ppapi/c/ppb_file_ref.h"
+#include "ppapi/shared_impl/resource.h"
#include "ppapi/thunk/ppb_file_ref_api.h"
-#include "webkit/plugins/ppapi/resource.h"
namespace webkit {
namespace ppapi {
class PPB_FileSystem_Impl;
-class PluginInstance;
+class PluginDelegate;
class PluginModule;
-class PPB_FileRef_Impl : public Resource,
+class PPB_FileRef_Impl : public ::ppapi::Resource,
public ::ppapi::thunk::PPB_FileRef_API {
public:
PPB_FileRef_Impl();
- PPB_FileRef_Impl(PluginInstance* instance,
+ PPB_FileRef_Impl(PP_Instance instance,
scoped_refptr<PPB_FileSystem_Impl> file_system,
const std::string& validated_path);
- PPB_FileRef_Impl(PluginInstance* instance,
+ PPB_FileRef_Impl(PP_Instance instance,
const FilePath& external_file_path);
virtual ~PPB_FileRef_Impl();
« no previous file with comments | « webkit/plugins/ppapi/ppb_file_io_impl.cc ('k') | webkit/plugins/ppapi/ppb_file_ref_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698