| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_THUNK_PPB_FILE_REF_API_H_ | 5 #ifndef PPAPI_THUNK_PPB_FILE_REF_API_H_ |
| 6 #define PPAPI_THUNK_PPB_FILE_REF_API_H_ | 6 #define PPAPI_THUNK_PPB_FILE_REF_API_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/linked_ptr.h" | 10 #include "base/memory/linked_ptr.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 namespace thunk { | 21 namespace thunk { |
| 22 | 22 |
| 23 class PPAPI_THUNK_EXPORT PPB_FileRef_API { | 23 class PPAPI_THUNK_EXPORT PPB_FileRef_API { |
| 24 public: | 24 public: |
| 25 virtual ~PPB_FileRef_API() {} | 25 virtual ~PPB_FileRef_API() {} |
| 26 | 26 |
| 27 virtual PP_FileSystemType GetFileSystemType() const = 0; | 27 virtual PP_FileSystemType GetFileSystemType() const = 0; |
| 28 virtual PP_Var GetName() const = 0; | 28 virtual PP_Var GetName() const = 0; |
| 29 virtual PP_Var GetPath() const = 0; | 29 virtual PP_Var GetPath() const = 0; |
| 30 virtual PP_Resource GetParent() = 0; | 30 virtual PP_Resource GetParent() = 0; |
| 31 virtual int32_t MakeDirectory(int32_t make_directory_flags, | 31 virtual int32_t MakeDirectory(PP_Bool make_ancestors, |
| 32 scoped_refptr<TrackedCallback> callback) = 0; | 32 scoped_refptr<TrackedCallback> callback) = 0; |
| 33 virtual int32_t Touch(PP_Time last_access_time, | 33 virtual int32_t Touch(PP_Time last_access_time, |
| 34 PP_Time last_modified_time, | 34 PP_Time last_modified_time, |
| 35 scoped_refptr<TrackedCallback> callback) = 0; | 35 scoped_refptr<TrackedCallback> callback) = 0; |
| 36 virtual int32_t Delete(scoped_refptr<TrackedCallback> callback) = 0; | 36 virtual int32_t Delete(scoped_refptr<TrackedCallback> callback) = 0; |
| 37 virtual int32_t Rename(PP_Resource new_file_ref, | 37 virtual int32_t Rename(PP_Resource new_file_ref, |
| 38 scoped_refptr<TrackedCallback> callback) = 0; | 38 scoped_refptr<TrackedCallback> callback) = 0; |
| 39 virtual int32_t Query(PP_FileInfo* info, | 39 virtual int32_t Query(PP_FileInfo* info, |
| 40 scoped_refptr<TrackedCallback> callback) = 0; | 40 scoped_refptr<TrackedCallback> callback) = 0; |
| 41 virtual int32_t ReadDirectoryEntries( | 41 virtual int32_t ReadDirectoryEntries( |
| 42 const PP_ArrayOutput& output, | 42 const PP_ArrayOutput& output, |
| 43 scoped_refptr<TrackedCallback> callback) = 0; | 43 scoped_refptr<TrackedCallback> callback) = 0; |
| 44 | 44 |
| 45 // Internal function for use in proxying. Returns the internal CreateInfo | 45 // Internal function for use in proxying. Returns the internal CreateInfo |
| 46 // (the contained resource does not carry a ref on behalf of the caller). | 46 // (the contained resource does not carry a ref on behalf of the caller). |
| 47 virtual const FileRefCreateInfo& GetCreateInfo() const = 0; | 47 virtual const FileRefCreateInfo& GetCreateInfo() const = 0; |
| 48 | 48 |
| 49 // Private API | 49 // Private API |
| 50 virtual PP_Var GetAbsolutePath() = 0; | 50 virtual PP_Var GetAbsolutePath() = 0; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace thunk | 53 } // namespace thunk |
| 54 } // namespace ppapi | 54 } // namespace ppapi |
| 55 | 55 |
| 56 #endif // PPAPI_THUNK_PPB_FILE_REF_API_H_ | 56 #endif // PPAPI_THUNK_PPB_FILE_REF_API_H_ |
| OLD | NEW |