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

Unified Diff: webkit/glue/plugins/pepper_file_ref.h

Issue 3255003: Pull new PPAPI, rename non-P0 interfaces to Dev, rename DeviceContext2D to Gr... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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/glue/plugins/pepper_file_io.cc ('k') | webkit/glue/plugins/pepper_file_ref.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_file_ref.h
===================================================================
--- webkit/glue/plugins/pepper_file_ref.h (revision 57791)
+++ webkit/glue/plugins/pepper_file_ref.h (working copy)
@@ -8,7 +8,7 @@
#include <string>
#include "base/file_path.h"
-#include "third_party/ppapi/c/ppb_file_ref.h"
+#include "third_party/ppapi/c/dev/ppb_file_ref_dev.h"
#include "webkit/glue/plugins/pepper_resource.h"
namespace pepper {
@@ -18,7 +18,7 @@
class FileRef : public Resource {
public:
FileRef(PluginModule* module,
- PP_FileSystemType file_system_type,
+ PP_FileSystemType_Dev file_system_type,
const std::string& validated_path,
const std::string& origin);
FileRef(PluginModule* module,
@@ -27,7 +27,7 @@
// Returns a pointer to the interface implementing PPB_FileRef that is
// exposed to the plugin.
- static const PPB_FileRef* GetInterface();
+ static const PPB_FileRef_Dev* GetInterface();
// Resource overrides.
FileRef* AsFileRef() { return this; }
@@ -36,7 +36,7 @@
std::string GetName() const;
scoped_refptr<FileRef> GetParent();
- PP_FileSystemType file_system_type() const { return fs_type_; }
+ PP_FileSystemType_Dev file_system_type() const { return fs_type_; }
// Returns the virtual path (i.e., the path that the pepper plugin sees)
// corresponding to this file.
@@ -47,7 +47,7 @@
private:
FilePath system_path_;
- PP_FileSystemType fs_type_;
+ PP_FileSystemType_Dev fs_type_;
std::string path_; // UTF-8 encoded.
std::string origin_;
};
« no previous file with comments | « webkit/glue/plugins/pepper_file_io.cc ('k') | webkit/glue/plugins/pepper_file_ref.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698