| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ppapi/c/dev/ppb_file_ref_dev.h" | 8 #include "ppapi/c/dev/ppb_file_ref_dev.h" |
| 9 | 9 |
| 10 namespace ppapi { | 10 namespace ppapi { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 PP_CompletionCallback callback) = 0; | 23 PP_CompletionCallback callback) = 0; |
| 24 virtual int32_t Delete(PP_CompletionCallback callback) = 0; | 24 virtual int32_t Delete(PP_CompletionCallback callback) = 0; |
| 25 virtual int32_t Rename(PP_Resource new_file_ref, | 25 virtual int32_t Rename(PP_Resource new_file_ref, |
| 26 PP_CompletionCallback callback) = 0; | 26 PP_CompletionCallback callback) = 0; |
| 27 }; | 27 }; |
| 28 | 28 |
| 29 } // namespace thunk | 29 } // namespace thunk |
| 30 } // namespace ppapi | 30 } // namespace ppapi |
| 31 | 31 |
| 32 #endif // PPAPI_THUNK_PPB_FILE_REF_API_H_ | 32 #endif // PPAPI_THUNK_PPB_FILE_REF_API_H_ |
| OLD | NEW |