| 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_PPB_FLASH_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
| 6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 virtual int32_t DeleteFileOrDir(PP_Instance instance, | 100 virtual int32_t DeleteFileOrDir(PP_Instance instance, |
| 101 const char* path, | 101 const char* path, |
| 102 PP_Bool recursive) OVERRIDE; | 102 PP_Bool recursive) OVERRIDE; |
| 103 virtual int32_t CreateDir(PP_Instance instance, const char* path) OVERRIDE; | 103 virtual int32_t CreateDir(PP_Instance instance, const char* path) OVERRIDE; |
| 104 virtual int32_t QueryFile(PP_Instance instance, | 104 virtual int32_t QueryFile(PP_Instance instance, |
| 105 const char* path, | 105 const char* path, |
| 106 PP_FileInfo* info) OVERRIDE; | 106 PP_FileInfo* info) OVERRIDE; |
| 107 virtual int32_t GetDirContents(PP_Instance instance, | 107 virtual int32_t GetDirContents(PP_Instance instance, |
| 108 const char* path, | 108 const char* path, |
| 109 PP_DirContents_Dev** contents) OVERRIDE; | 109 PP_DirContents_Dev** contents) OVERRIDE; |
| 110 virtual int32_t CreateTemporaryFile(PP_Instance instance, |
| 111 PP_FileHandle* file) OVERRIDE; |
| 110 virtual int32_t OpenFileRef(PP_Instance instance, | 112 virtual int32_t OpenFileRef(PP_Instance instance, |
| 111 PP_Resource file_ref, | 113 PP_Resource file_ref, |
| 112 int32_t mode, | 114 int32_t mode, |
| 113 PP_FileHandle* file) OVERRIDE; | 115 PP_FileHandle* file) OVERRIDE; |
| 114 virtual int32_t QueryFileRef(PP_Instance instance, | 116 virtual int32_t QueryFileRef(PP_Instance instance, |
| 115 PP_Resource file_ref, | 117 PP_Resource file_ref, |
| 116 PP_FileInfo* info) OVERRIDE; | 118 PP_FileInfo* info) OVERRIDE; |
| 117 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; | 119 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; |
| 118 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, | 120 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, |
| 119 PP_Bool fullscreen) OVERRIDE; | 121 PP_Bool fullscreen) OVERRIDE; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 SerializedVarReturnValue id); | 177 SerializedVarReturnValue id); |
| 176 void OnHostMsgInvokePrinting(PP_Instance instance); | 178 void OnHostMsgInvokePrinting(PP_Instance instance); |
| 177 | 179 |
| 178 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); | 180 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); |
| 179 }; | 181 }; |
| 180 | 182 |
| 181 } // namespace proxy | 183 } // namespace proxy |
| 182 } // namespace ppapi | 184 } // namespace ppapi |
| 183 | 185 |
| 184 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 186 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
| OLD | NEW |