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_PROXY_FLASH_FILE_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_FLASH_FILE_RESOURCE_H_ |
6 #define PPAPI_PROXY_FLASH_FILE_RESOURCE_H_ | 6 #define PPAPI_PROXY_FLASH_FILE_RESOURCE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ppapi/proxy/connection.h" | 10 #include "ppapi/proxy/connection.h" |
11 #include "ppapi/proxy/plugin_resource.h" | 11 #include "ppapi/proxy/plugin_resource.h" |
12 #include "ppapi/shared_impl/file_path.h" | 12 #include "ppapi/shared_impl/file_path.h" |
13 #include "ppapi/thunk/ppb_flash_file_api.h" | 13 #include "ppapi/thunk/ppb_flash_file_api.h" |
14 | 14 |
15 namespace ppapi { | 15 namespace ppapi { |
16 namespace proxy { | 16 namespace proxy { |
17 | 17 |
18 class FlashFileResource | 18 class FlashFileResource |
19 : public PluginResource, | 19 : public PluginResource, |
20 public thunk::PPB_Flash_File_API { | 20 public thunk::PPB_Flash_File_API { |
21 public: | 21 public: |
22 FlashFileResource(Connection connection, PP_Instance instance); | 22 FlashFileResource(Connection connection, PP_Instance instance); |
23 virtual ~FlashFileResource(); | 23 virtual ~FlashFileResource(); |
24 | 24 |
25 // Resource overrides. | 25 // Resource overrides. |
26 virtual thunk::PPB_Flash_File_API* AsPPB_Flash_File_API() OVERRIDE; | 26 virtual thunk::PPB_Flash_File_API* AsPPB_Flash_File_API() override; |
27 | 27 |
28 // PPB_Flash_Functions_API. | 28 // PPB_Flash_Functions_API. |
29 virtual int32_t OpenFile(PP_Instance instance, | 29 virtual int32_t OpenFile(PP_Instance instance, |
30 const char* path, | 30 const char* path, |
31 int32_t mode, | 31 int32_t mode, |
32 PP_FileHandle* file) OVERRIDE; | 32 PP_FileHandle* file) override; |
33 virtual int32_t RenameFile(PP_Instance instance, | 33 virtual int32_t RenameFile(PP_Instance instance, |
34 const char* path_from, | 34 const char* path_from, |
35 const char* path_to) OVERRIDE; | 35 const char* path_to) override; |
36 virtual int32_t DeleteFileOrDir(PP_Instance instance, | 36 virtual int32_t DeleteFileOrDir(PP_Instance instance, |
37 const char* path, | 37 const char* path, |
38 PP_Bool recursive) OVERRIDE; | 38 PP_Bool recursive) override; |
39 virtual int32_t CreateDir(PP_Instance instance, const char* path) OVERRIDE; | 39 virtual int32_t CreateDir(PP_Instance instance, const char* path) override; |
40 virtual int32_t QueryFile(PP_Instance instance, | 40 virtual int32_t QueryFile(PP_Instance instance, |
41 const char* path, | 41 const char* path, |
42 PP_FileInfo* info) OVERRIDE; | 42 PP_FileInfo* info) override; |
43 virtual int32_t GetDirContents(PP_Instance instance, | 43 virtual int32_t GetDirContents(PP_Instance instance, |
44 const char* path, | 44 const char* path, |
45 PP_DirContents_Dev** contents) OVERRIDE; | 45 PP_DirContents_Dev** contents) override; |
46 virtual void FreeDirContents(PP_Instance instance, | 46 virtual void FreeDirContents(PP_Instance instance, |
47 PP_DirContents_Dev* contents) OVERRIDE; | 47 PP_DirContents_Dev* contents) override; |
48 virtual int32_t CreateTemporaryFile(PP_Instance instance, | 48 virtual int32_t CreateTemporaryFile(PP_Instance instance, |
49 PP_FileHandle* file) OVERRIDE; | 49 PP_FileHandle* file) override; |
50 virtual int32_t OpenFileRef(PP_Instance instance, | 50 virtual int32_t OpenFileRef(PP_Instance instance, |
51 PP_Resource file_ref, | 51 PP_Resource file_ref, |
52 int32_t mode, | 52 int32_t mode, |
53 PP_FileHandle* file) OVERRIDE; | 53 PP_FileHandle* file) override; |
54 virtual int32_t QueryFileRef(PP_Instance instance, | 54 virtual int32_t QueryFileRef(PP_Instance instance, |
55 PP_Resource file_ref, | 55 PP_Resource file_ref, |
56 PP_FileInfo* info) OVERRIDE; | 56 PP_FileInfo* info) override; |
57 | 57 |
58 private: | 58 private: |
59 int32_t OpenFileHelper(const std::string& path, | 59 int32_t OpenFileHelper(const std::string& path, |
60 PepperFilePath::Domain domain_type, | 60 PepperFilePath::Domain domain_type, |
61 int32_t mode, | 61 int32_t mode, |
62 PP_FileHandle* file); | 62 PP_FileHandle* file); |
63 int32_t QueryFileHelper(const std::string& path, | 63 int32_t QueryFileHelper(const std::string& path, |
64 PepperFilePath::Domain domain_type, | 64 PepperFilePath::Domain domain_type, |
65 PP_FileInfo* info); | 65 PP_FileInfo* info); |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(FlashFileResource); | 67 DISALLOW_COPY_AND_ASSIGN(FlashFileResource); |
68 }; | 68 }; |
69 | 69 |
70 } // namespace proxy | 70 } // namespace proxy |
71 } // namespace ppapi | 71 } // namespace ppapi |
72 | 72 |
73 #endif // PPAPI_PROXY_FLASH_FILE_RESOURCE_H_ | 73 #endif // PPAPI_PROXY_FLASH_FILE_RESOURCE_H_ |
OLD | NEW |