| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 int32_t* result); | 180 int32_t* result); |
| 181 void OnHostMsgOpenFileRef(PP_Instance instance, | 181 void OnHostMsgOpenFileRef(PP_Instance instance, |
| 182 const ppapi::HostResource& host_resource, | 182 const ppapi::HostResource& host_resource, |
| 183 int32_t mode, | 183 int32_t mode, |
| 184 IPC::PlatformFileForTransit* file_handle, | 184 IPC::PlatformFileForTransit* file_handle, |
| 185 int32_t* result); | 185 int32_t* result); |
| 186 void OnHostMsgQueryFileRef(PP_Instance instance, | 186 void OnHostMsgQueryFileRef(PP_Instance instance, |
| 187 const ppapi::HostResource& host_resource, | 187 const ppapi::HostResource& host_resource, |
| 188 PP_FileInfo* info, | 188 PP_FileInfo* info, |
| 189 int32_t* result); | 189 int32_t* result); |
| 190 void OnHostMsgGetDeviceID(PP_Instance instance, |
| 191 SerializedVarReturnValue id); |
| 190 | 192 |
| 191 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); | 193 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); |
| 192 }; | 194 }; |
| 193 | 195 |
| 194 } // namespace proxy | 196 } // namespace proxy |
| 195 } // namespace ppapi | 197 } // namespace ppapi |
| 196 | 198 |
| 197 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 199 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
| OLD | NEW |