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

Unified Diff: webkit/plugins/ppapi/ppb_file_system_impl.cc

Issue 7248047: Migrating PPB_FileIO_Dev, PPB_FileRef_Dev, and PPB_FileSystem_Dev dependencies to PPB_FileIO, PPB... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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_system_impl.h ('k') | webkit/plugins/ppapi/ppb_flash_file_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_system_impl.cc
===================================================================
--- webkit/plugins/ppapi/ppb_file_system_impl.cc (revision 91558)
+++ webkit/plugins/ppapi/ppb_file_system_impl.cc (working copy)
@@ -5,8 +5,8 @@
#include "webkit/plugins/ppapi/ppb_file_system_impl.h"
#include "base/memory/ref_counted.h"
-#include "ppapi/c/dev/ppb_file_system_dev.h"
#include "ppapi/c/pp_completion_callback.h"
+#include "ppapi/c/ppb_file_system.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
@@ -27,7 +27,7 @@
namespace ppapi {
PPB_FileSystem_Impl::PPB_FileSystem_Impl(PluginInstance* instance,
- PP_FileSystemType_Dev type)
+ PP_FileSystemType type)
: Resource(instance),
instance_(instance),
type_(type),
@@ -41,7 +41,7 @@
// static
PP_Resource PPB_FileSystem_Impl::Create(PluginInstance* instance,
- PP_FileSystemType_Dev type) {
+ PP_FileSystemType type) {
if (type != PP_FILESYSTEMTYPE_EXTERNAL &&
type != PP_FILESYSTEMTYPE_LOCALPERSISTENT &&
type != PP_FILESYSTEMTYPE_LOCALTEMPORARY)
@@ -81,10 +81,9 @@
return PP_OK_COMPLETIONPENDING;
}
-PP_FileSystemType_Dev PPB_FileSystem_Impl::GetType() {
+PP_FileSystemType PPB_FileSystem_Impl::GetType() {
return type_;
}
} // namespace ppapi
} // namespace webkit
-
« no previous file with comments | « webkit/plugins/ppapi/ppb_file_system_impl.h ('k') | webkit/plugins/ppapi/ppb_flash_file_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698