diff options
author | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 18:34:40 +0000 |
---|---|---|
committer | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 18:34:40 +0000 |
commit | ea505a9d49ef9770557423d2e4525d8fb91eab69 (patch) | |
tree | 7ace0236f95b3d101fd0e392d0506845c23d8223 /webkit/plugins/ppapi/ppb_file_ref_impl.h | |
parent | 054498a7c3951d4047812ed918c06d46b3daa6ee (diff) | |
download | chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.zip chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.gz chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.bz2 |
Migrating PPB_FileIO_Dev, PPB_FileRef_Dev, and PPB_FileSystem_Dev dependencies to PPB_FileIO, PPB_FileRef, and PPB_FileSystem.
Also fixed some lint errors.
Review URL: http://codereview.chromium.org/7248047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91733 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/ppapi/ppb_file_ref_impl.h')
-rw-r--r-- | webkit/plugins/ppapi/ppb_file_ref_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/plugins/ppapi/ppb_file_ref_impl.h b/webkit/plugins/ppapi/ppb_file_ref_impl.h index a1406a3..b1b4d95 100644 --- a/webkit/plugins/ppapi/ppb_file_ref_impl.h +++ b/webkit/plugins/ppapi/ppb_file_ref_impl.h @@ -9,7 +9,7 @@ #include "base/file_path.h" #include "googleurl/src/gurl.h" -#include "ppapi/c/dev/ppb_file_ref_dev.h" +#include "ppapi/c/ppb_file_ref.h" #include "ppapi/thunk/ppb_file_ref_api.h" #include "webkit/plugins/ppapi/resource.h" @@ -40,7 +40,7 @@ class PPB_FileRef_Impl : public Resource, virtual ::ppapi::thunk::PPB_FileRef_API* AsPPB_FileRef_API() OVERRIDE; // PPB_FileRef_API implementation. - virtual PP_FileSystemType_Dev GetFileSystemType() const OVERRIDE; + virtual PP_FileSystemType GetFileSystemType() const OVERRIDE; virtual PP_Var GetName() const OVERRIDE; virtual PP_Var GetPath() const OVERRIDE; virtual PP_Resource GetParent() OVERRIDE; |