| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_NACL_IRT_IRT_MANIFEST_H_ | 5 #ifndef PPAPI_NACL_IRT_IRT_MANIFEST_H_ |
| 6 #define PPAPI_NACL_IRT_IRT_MANIFEST_H_ | 6 #define PPAPI_NACL_IRT_IRT_MANIFEST_H_ |
| 7 | 7 |
| 8 #include <map> |
| 9 #include <string> |
| 10 |
| 8 #include "ppapi/proxy/ppapi_proxy_export.h" | 11 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 9 | 12 |
| 10 namespace ppapi { | 13 namespace ppapi { |
| 11 | 14 |
| 12 // The implementation of irt_open_resource() based on ManifestService. | 15 // The implementation of irt_open_resource() based on ManifestService. |
| 13 // This communicates with the renderer process via Chrome IPC to obtain the | 16 // This communicates with the renderer process via Chrome IPC to obtain the |
| 14 // read-only file descriptor of the resource specified in the manifest file | 17 // read-only file descriptor of the resource specified in the manifest file |
| 15 // with the key |file| in files section. Returns 0 on success, or error number | 18 // with the key |file| in files section. Returns 0 on success, or error number |
| 16 // on failure. See also irt_open_resource()'s comment. | 19 // on failure. See also irt_open_resource()'s comment. |
| 17 PPAPI_PROXY_EXPORT int IrtOpenResource(const char* file, int* fd); | 20 PPAPI_PROXY_EXPORT int IrtOpenResource(const char* file, int* fd); |
| 18 | 21 |
| 22 #if !defined(OS_NACL_SFI) |
| 23 PPAPI_PROXY_EXPORT void RegisterPreopenedDescriptorsNonSfi( |
| 24 const std::map<std::string, int>& key_fd_map); |
| 25 #endif |
| 26 |
| 19 } // namespace ppapi | 27 } // namespace ppapi |
| 20 | 28 |
| 21 #endif // PPAPI_NACL_IRT_IRT_MANIFEST_H_ | 29 #endif // PPAPI_NACL_IRT_IRT_MANIFEST_H_ |
| OLD | NEW |